Lines Matching refs:n1
539 PetscInt m1, M1, m2, M2, n1, N1, n2, N2, m3, M3, n3, N3; in PCMatApplyTranspose_Private() local
552 PetscCall(MatGetLocalSize(Y, &m1, &n1)); in PCMatApplyTranspose_Private()
556 …n1 == n2 && N1 == N2, PETSC_COMM_SELF, PETSC_ERR_ARG_SIZ, "Incompatible number of columns between … in PCMatApplyTranspose_Private()
574 for (n1 = 0; n1 < N1; ++n1) { in PCMatApplyTranspose_Private()
575 PetscCall(MatDenseGetColumnVecRead(X, n1, &cx)); in PCMatApplyTranspose_Private()
576 PetscCall(MatDenseGetColumnVecWrite(Y, n1, &cy)); in PCMatApplyTranspose_Private()
579 PetscCall(MatDenseRestoreColumnVecWrite(Y, n1, &cy)); in PCMatApplyTranspose_Private()
580 PetscCall(MatDenseRestoreColumnVecRead(X, n1, &cx)); in PCMatApplyTranspose_Private()
1271 PetscInt m1, n1, m2, n2; in PCSetOperators() local
1280 PetscCall(MatGetLocalSize(Amat, &m1, &n1)); in PCSetOperators()
1282 …n1 == n2, PETSC_COMM_SELF, PETSC_ERR_ARG_SIZ, "Cannot change local size of Amat after use old size… in PCSetOperators()
1283 PetscCall(MatGetLocalSize(Pmat, &m1, &n1)); in PCSetOperators()
1285 …n1 == n2, PETSC_COMM_SELF, PETSC_ERR_ARG_SIZ, "Cannot change local size of Pmat after use old size… in PCSetOperators()