Home
last modified time | relevance | path

Searched refs:tmpA (Results 1 – 2 of 2) sorted by relevance

/petsc/lib/petsc/bin/
H A Dpetscdiff130 tmpA=`mktemp -t petscdiffA.XXXXXX`
133 …| ${SED} "s/[-+ ]*[-]*[ 0-9][0-9]*\.[0-9]*/XXX/g" | ${SED} "s/ \*\*\*\*\*\*\*\*\* /XXX/g" > ${tmpA}
136 ${DIFF} ${tmpA} ${tmpB} > /dev/null
143 ${RM} -f ${tmpA} ${tmpB}
/petsc/src/mat/impls/blockmat/seq/
H A Dblockmat.c286 Mat tmpA; in MatLoad_BlockMat() local
297 PetscCall(MatCreate(PETSC_COMM_SELF, &tmpA)); in MatLoad_BlockMat()
298 PetscCall(MatSetType(tmpA, MATSEQAIJ)); in MatLoad_BlockMat()
299 PetscCall(MatLoad_SeqAIJ(tmpA, viewer)); in MatLoad_BlockMat()
301 PetscCall(MatGetLocalSize(tmpA, &m, &n)); in MatLoad_BlockMat()
308 a = (Mat_SeqAIJ *)tmpA->data; in MatLoad_BlockMat()
389 PetscCall(MatGetRow(tmpA, i, &ncols, &cols, &values)); in MatLoad_BlockMat()
391 PetscCall(MatRestoreRow(tmpA, i, &ncols, &cols, &values)); in MatLoad_BlockMat()