Lines Matching refs:view
42 PetscViewer view; in main() local
69 PetscCall(PetscViewerBinaryOpen(PETSC_COMM_WORLD, "matrix.dat", FILE_MODE_WRITE, &view)); in main()
70 for (i = 0; i < 3; i++) PetscCall(MatView(A, view)); in main()
71 PetscCall(PetscViewerDestroy(&view)); in main()
77 PetscCall(PetscViewerBinaryOpen(PETSC_COMM_WORLD, "matrix.dat", FILE_MODE_READ, &view)); in main()
82 PetscCall(MatLoad(A, view)); in main()
85 PetscCall(PetscViewerDestroy(&view)); in main()
92 PetscCall(PetscViewerBinaryOpen(PETSC_COMM_SELF, "matrix.dat", FILE_MODE_READ, &view)); in main()
97 PetscCall(MatLoad(A, view)); in main()
100 PetscCall(PetscViewerDestroy(&view)); in main()
106 PetscCall(PetscViewerBinaryOpen(PETSC_COMM_WORLD, "matrix.dat", FILE_MODE_READ, &view)); in main()
111 PetscCall(MatLoad(A, view)); in main()
114 PetscCall(PetscViewerDestroy(&view)); in main()