Lines Matching refs:view
38 PetscViewer view; in main() local
64 PetscCall(PetscViewerBinaryOpen(PETSC_COMM_WORLD, "matrix.dat", FILE_MODE_WRITE, &view)); in main()
65 for (i = 0; i < 3; i++) PetscCall(MatView(A, view)); in main()
66 PetscCall(PetscViewerDestroy(&view)); in main()
72 PetscCall(PetscViewerBinaryOpen(PETSC_COMM_WORLD, "matrix.dat", FILE_MODE_READ, &view)); in main()
77 PetscCall(MatLoad(A, view)); in main()
80 PetscCall(PetscViewerDestroy(&view)); in main()
87 PetscCall(PetscViewerBinaryOpen(PETSC_COMM_SELF, "matrix.dat", FILE_MODE_READ, &view)); in main()
92 PetscCall(MatLoad(A, view)); in main()
95 PetscCall(PetscViewerDestroy(&view)); in main()
101 PetscCall(PetscViewerBinaryOpen(PETSC_COMM_WORLD, "matrix.dat", FILE_MODE_READ, &view)); in main()
106 PetscCall(MatLoad(A, view)); in main()
109 PetscCall(PetscViewerDestroy(&view)); in main()