| #
834855d6
|
| 27-Aug-2025 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'jolivet/clang-format-21' into 'main'
clang-format-21
See merge request petsc/petsc!8202
|
| #
3a7d0413
|
| 12-May-2025 |
Pierre Jolivet <pierre@joliv.et> |
One-liners from petsc/petsc!5344 and petsc/petsc!5557
Slightly reworked regular expression
git ls-files -z -- '*.c' '*.cxx' '*.cu' '*.h' '*.hpp' '*.cpp' | while IFS= read -r -d '' file; do cat
One-liners from petsc/petsc!5344 and petsc/petsc!5557
Slightly reworked regular expression
git ls-files -z -- '*.c' '*.cxx' '*.cu' '*.h' '*.hpp' '*.cpp' | while IFS= read -r -d '' file; do cat $file | tr '\n' '\r' | sed -E 's/\r([ ]*)(for|if|while|else) ([^\r]*)\{\r[ ]*Petsc([a-zA-Z]*)\(([^\r]*)\);\r[ ]*\}\r/\r\1\2 \3Petsc\4(\5);\r/g' | tr '\r' '\n' > ${file}.joe; mv ${file}.joe ${file} done
show more ...
|
| #
3fbf2391
|
| 30-Jul-2024 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'origin/release' with a revert of !7720
|
| #
a2c3d5cd
|
| 29-Jul-2024 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'jolivet/consolidate-error-checking-shell' into 'release'
MatShell and derivatives: bug fixing and code consolidation
See merge request petsc/petsc!7721
|
| #
239f794e
|
| 26-Jul-2024 |
Pierre Jolivet <pierre@joliv.et> |
Minor visibility redundancy
|
| #
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
|
| #
2c733ebd
|
| 07-Mar-2024 |
Stefano Zampini <stefano.zampini@gmail.com> |
Add MatCreateFromISLocalToGlobalMapping
Now is a private symbols since the matrix-free implementation is not yet complete
|