Lines Matching refs:nCols
1267 PetscInt nCols; in MatricesMerge() local
1268 PetscCall(MatGetRow(matA, i, &nCols, &cols, &vals)); in MatricesMerge()
1269 for (j = 0; j < nCols / Nk; j++) { in MatricesMerge()
1273 PetscCall(MatSetValuesBlocked(M, 1, &i, nCols, work, vals, INSERT_VALUES)); in MatricesMerge()
1274 PetscCall(MatRestoreRow(matA, i, &nCols, &cols, &vals)); in MatricesMerge()
1281 PetscInt nCols; in MatricesMerge() local
1282 PetscCall(MatGetRow(matB, i, &nCols, &cols, &vals)); in MatricesMerge()
1283 for (j = 0; j < nCols / Nk; j++) { in MatricesMerge()
1287 PetscCall(MatSetValuesBlocked(M, 1, &row, nCols, work, vals, INSERT_VALUES)); in MatricesMerge()
1288 PetscCall(MatRestoreRow(matB, i, &nCols, &cols, &vals)); in MatricesMerge()
2264 PetscInt nCols, nRows; in PetscDualSpaceSetUp_Lagrange() local
2268 PetscCall(MatGetSize(intMat, &nRows, &nCols)); in PetscDualSpaceSetUp_Lagrange()
2269 PetscCall(PetscMalloc2(Nk * Nk, &T, nCols, &work)); in PetscDualSpaceSetUp_Lagrange()