Home
last modified time | relevance | path

Searched refs:TestMatrix (Results 1 – 3 of 3) sorted by relevance

/petsc/src/mat/tests/
H A Dex267.c5 PetscErrorCode TestMatrix(const char *test, Mat A, PetscInt nrhs, PetscBool inplace, PetscBool chol) in TestMatrix() function
156 PetscCall(TestMatrix("LU T", At, nrhs, inplace, PETSC_FALSE)); in main()
157 PetscCall(TestMatrix("LU HT", Aht, nrhs, inplace, PETSC_FALSE)); in main()
159 PetscCall(TestMatrix("Chol T", At, nrhs, inplace, PETSC_TRUE)); in main()
160 PetscCall(TestMatrix("Chol HT", Aht, nrhs, inplace, PETSC_TRUE)); in main()
173 PetscCall(TestMatrix("LU T nonsym", At, nrhs, inplace, PETSC_FALSE)); in main()
174 PetscCall(TestMatrix("LU HT nonsym", Aht, nrhs, inplace, PETSC_FALSE)); in main()
H A Dex88.c50 static PetscErrorCode TestMatrix(Mat A, Vec X, Vec Y, Vec Z) in TestMatrix() function
234 PetscCall(TestMatrix(S, X, Y, Z)); in main()
235 PetscCall(TestMatrix(A, X, Y, Z)); in main()
236 PetscCall(TestMatrix(N, X, Y, Z)); in main()
/petsc/src/binding/petsc4py/test/
H A Dtest_mat_py.py295 class TestMatrix(unittest.TestCase): class
440 class TestScaledIdentity(TestMatrix):
556 class TestDiagonal(TestMatrix):