History log of /petsc/src/mat/tests/output/ex23_9.out (Results 1 – 15 of 15)
Revision Date Author Comments
# e8c0849a 20-Nov-2025 Satish Balay <balay@mcs.anl.gov>

Merge branch 'barry/2025-10-18/optimize-aij-ops' into 'main'

Refactor handling of diagonal marking in *AIJ and SELL matrices

See merge request petsc/petsc!8797


# 421480d9 19-Oct-2025 Barry Smith <bsmith@mcs.anl.gov>

- Replace MatMissingDiagonal() and MatMarkDiagonals_SeqXXX() with MatGetDiagonalMarkers_SeqXXX()

- Mat_SeqXXX->diag is not automatically created during MatAssemblyEnd() saving memory and time

- Replace MatMissingDiagonal() and MatMarkDiagonals_SeqXXX() with MatGetDiagonalMarkers_SeqXXX()

- Mat_SeqXXX->diag is not automatically created during MatAssemblyEnd() saving memory and time

- Accessing Mat_SeqXXX->diag now requires the use of MatGetDiagonalMarkers_SeqXXX() except when the current values are known to be correct; for example during numerical factorizations and solves

- Mat_SeqXXX->diag is now never shared among matrices; hence the free_diag flag is gone. That was always a risky proposition since any of the owning matrices could chang the values thus making them incorrect for other owners.

show more ...


# 0b46e949 22-Sep-2025 Satish Balay <balay@mcs.anl.gov>

Merge branch 'stefanozampini/submat-zerorows' into 'main'

implement ZeroRowsLocal and ZeroRowsColumnsLocal for local references

See merge request petsc/petsc!8705


# 0d2733ad 14-Sep-2025 Stefano Zampini <stefano.zampini@gmail.com>

MATIS: implement ZeroRowsLocal and ZeroRowsColumnsLocal local reference

add tests


# 8754fef1 19-Mar-2024 Satish Balay <balay@mcs.anl.gov>

Merge branch 'stefanozampini/matis-improvements' into 'main'

MATIS: repeated global entries in local part of l2g map and binary dump/load

See merge request petsc/petsc!7383


# 5042aa92 13-Mar-2024 Stefano Zampini <stefano.zampini@gmail.com>

MATIS: implement binary view and load

Added tests


# 4f58015e 01-Mar-2024 Stefano Zampini <stefano.zampini@gmail.com>

MATIS: allow repeated entries

deprecate old matis_ options, the correct way is mat_is_...
fix nonzerostate

add multielement code path in ex71


# fe98ec71 11-Jun-2022 Satish Balay <balay@mcs.anl.gov>

Merge branch 'stefanozampini/gdsw-mg' into 'main'

Implement AGDSW coarse spaces for PCMG

See merge request petsc/petsc!5256


# d0dbe9f7 12-May-2022 Stefano Zampini <stefano.zampini@gmail.com>

MATIS: implement ASM operations

move headers


# a686821c 04-May-2022 Satish Balay <balay@mcs.anl.gov>

Merge branch 'jolivet/feature-rm-spaces-plurals' into 'main'

Remove unneeded spaces/plurals

See merge request petsc/petsc!5193


# 8cc725e6 01-May-2022 Pierre Jolivet <pierre@joliv.et>

Remove extra spaces and unwanted plurals


# 6584f52a 11-Mar-2022 Satish Balay <balay@mcs.anl.gov>

Merge branch 'stefanozampini/matis-negative-indices' into 'main'

matis negative indices

See merge request petsc/petsc!4923


# e432b41d 02-Mar-2022 Stefano Zampini <stefano.zampini@gmail.com>

MATIS: support negative indices in l2maps


# c20d7725 22-Mar-2020 Jed Brown <jed@jedbrown.org>

Merge branch 'jed/promote-examples-tests-tutorials' [petsc/petsc!2610]

* jed/promote-examples-tests-tutorials:
Promote examples/{tests,tutorials}/ to {tests,tutorials}/


# c4762a1b 18-Mar-2020 Jed Brown <jed@jedbrown.org>

Promote examples/{tests,tutorials}/ to {tests,tutorials}/

This shortens paths and improves consistency between test target names
and paths to the source and output files. Most of the work was
compl

Promote examples/{tests,tutorials}/ to {tests,tutorials}/

This shortens paths and improves consistency between test target names
and paths to the source and output files. Most of the work was
completed by this script, followed by mild cleanup of nonconforming
cases.

for makefile in `git ls-files 'src/*makefile'`; do
if rg -q 'DIRS.*\bexamples\b' $makefile; then
base=$(dirname $makefile)
dirs=$(cd $base/examples && ls -d tests tutorials 2>/dev/null | xargs echo)
perl -pi -e "s#^(DIRS.*)\bexamples\b#\1${dirs}#" $makefile
git rm $base/examples/makefile
for t in $dirs; do
git mv $base/examples/$t $base/
perl -pi -e "s#^(LOCDIR[[:space:]]*=).*#\1 $base/$t/#" $base/$t
done
fi
done

git grep -l -E -z 'examples/(tutorials|tests)' | xargs -0 perl -pi -e 's#examples/(tutorials|tests)#\1#g'
git checkout @ \
src/docs/website/documentation/changes/ \
src/benchmarks/results/

show more ...