Lines Matching refs:fptr1

93   FILE                  *fptr, *fptr1;  in main()  local
164 fptr1 = fopen(part_name, "w"); in main()
165 PetscCheck(fptr1, PETSC_COMM_SELF, PETSC_ERR_FILE_OPEN, "Could no open output file"); in main()
167 PetscCall(PetscFPrintf(PETSC_COMM_SELF, fptr1, "Rank is %d\n", rank)); in main()
173 …PetscCall(PetscFPrintf(PETSC_COMM_SELF, fptr1, "Node %" PetscInt_FMT " belongs to processor %" Pet… in main()
178 …PetscCall(PetscFPrintf(PETSC_COMM_SELF, fptr1, "Number of neighbors for the vertex %" PetscInt_FMT… in main()
190 … PetscCall(PetscFPrintf(PETSC_COMM_SELF, fptr1, "%" PetscInt_FMT " ", user.AdjM[user.Nvlocal][i])); in main()
192 PetscCall(PetscFPrintf(PETSC_COMM_SELF, fptr1, "\n")); in main()
196 …PetscCall(PetscFPrintf(PETSC_COMM_SELF, fptr1, "Total # of Local Vertices is %" PetscInt_FMT " \n"… in main()
230 …PetscCall(PetscFPrintf(PETSC_COMM_SELF, fptr1, "Before AOApplicationToPetsc, local indices are : \… in main()
232 PetscCall(PetscFPrintf(PETSC_COMM_SELF, fptr1, " %" PetscInt_FMT " ", user.gloInd[i])); in main()
236 PetscCall(PetscFPrintf(PETSC_COMM_SELF, fptr1, "\n")); in main()
239 …PetscCall(PetscFPrintf(PETSC_COMM_SELF, fptr1, "Neghbors of local vertex %" PetscInt_FMT " are : "… in main()
241 PetscCall(PetscFPrintf(PETSC_COMM_SELF, fptr1, "%" PetscInt_FMT " ", user.AdjM[i][j])); in main()
246 PetscCall(PetscFPrintf(PETSC_COMM_SELF, fptr1, "\n")); in main()
256 …PetscCall(PetscFPrintf(PETSC_COMM_SELF, fptr1, "After AOApplicationToPetsc, local indices are : \n… in main()
257 …for (i = 0; i < user.Nvlocal; i++) PetscCall(PetscFPrintf(PETSC_COMM_SELF, fptr1, " %" PetscInt_FM… in main()
258 PetscCall(PetscFPrintf(PETSC_COMM_SELF, fptr1, "\n")); in main()
262 …PetscCall(PetscFPrintf(PETSC_COMM_SELF, fptr1, "Neghbors of local vertex %" PetscInt_FMT " are : "… in main()
266 PetscCall(PetscFPrintf(PETSC_COMM_SELF, fptr1, "%" PetscInt_FMT " ", user.AdjM[i][j])); in main()
269 PetscCall(PetscFPrintf(PETSC_COMM_SELF, fptr1, "\n")); in main()
316 PetscCall(PetscFPrintf(PETSC_COMM_SELF, fptr1, "\n")); in main()
317 PetscCall(PetscFPrintf(PETSC_COMM_SELF, fptr1, "The array vertices is :\n")); in main()
318 …for (i = 0; i < nvertices; i++) PetscCall(PetscFPrintf(PETSC_COMM_SELF, fptr1, "%" PetscInt_FMT " … in main()
319 PetscCall(PetscFPrintf(PETSC_COMM_SELF, fptr1, "\n")); in main()
325 PetscCall(PetscFPrintf(PETSC_COMM_SELF, fptr1, "\n")); in main()
326 …PetscCall(PetscFPrintf(PETSC_COMM_SELF, fptr1, "After mapping neighbors in the local contiguous or… in main()
328 …PetscCall(PetscFPrintf(PETSC_COMM_SELF, fptr1, "Neghbors of local vertex %" PetscInt_FMT " are :\n… in main()
333 PetscCall(PetscFPrintf(PETSC_COMM_SELF, fptr1, "%" PetscInt_FMT " ", user.AdjM[i][j])); in main()
335 PetscCall(PetscFPrintf(PETSC_COMM_SELF, fptr1, "\n")); in main()
438 …for (inode = 0; inode < user.Nvlocal; inode++) PetscCall(PetscFPrintf(PETSC_COMM_SELF, fptr1, "Ini… in main()
456 …for (inode = 0; inode < user.Nvlocal; inode++) PetscCall(PetscFPrintf(PETSC_COMM_SELF, fptr1, "Sol… in main()
458 fclose(fptr1); in main()