Lines Matching refs:view
38 PetscViewer view; in main() local
65 PetscCall(PetscViewerBinaryOpen(PETSC_COMM_WORLD, "matrix.dat", FILE_MODE_WRITE, &view)); in main()
66 for (i = 0; i < 3; i++) PetscCall(MatView(A, view)); in main()
67 PetscCall(PetscViewerDestroy(&view)); in main()
73 PetscCall(PetscViewerBinaryOpen(PETSC_COMM_WORLD, "matrix.dat", FILE_MODE_READ, &view)); in main()
78 PetscCall(MatLoad(A, view)); in main()
81 PetscCall(PetscViewerDestroy(&view)); in main()
88 PetscCall(PetscViewerBinaryOpen(PETSC_COMM_SELF, "matrix.dat", FILE_MODE_READ, &view)); in main()
93 PetscCall(MatLoad(A, view)); in main()
96 PetscCall(PetscViewerDestroy(&view)); in main()
102 PetscCall(PetscViewerBinaryOpen(PETSC_COMM_WORLD, "matrix.dat", FILE_MODE_READ, &view)); in main()
107 PetscCall(MatLoad(A, view)); in main()
110 PetscCall(PetscViewerDestroy(&view)); in main()