| #
2a1887a7
|
| 11-Dec-2025 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'barry/2025-11-30/fix-bad-ts' into 'main'
Fix bad decisions made in writing TS.
See merge request petsc/petsc!8877
|
| #
188af4bf
|
| 01-Dec-2025 |
Barry Smith <bsmith@mcs.anl.gov> |
Fix bad decisions made in writing TS.
Fix -ts_dt to -ts_time_step and add initial time step to TSView output
commit a5a92c11fa9681148df375b257eda4e09909b74e Author: Barry Smith <bsmith@petsc.de
Fix bad decisions made in writing TS.
Fix -ts_dt to -ts_time_step and add initial time step to TSView output
commit a5a92c11fa9681148df375b257eda4e09909b74e Author: Barry Smith <bsmith@petsc.dev> Date: Mon Dec 1 14:51:27 2025 -0500
add max_snes_failures to TSView
commit 32d3e79f6fa743930b1bbf32d03b9181b5b5418a Author: Barry Smith <bsmith@petsc.dev> Fix wrongly named options and add to TSView
Wrong name for options database key -ts_max_reject should be -ts_max_step_rejections!
Add max_reject value to TSView
Add max_snes_failures to TSView
Add initial timestep to TSView
show more ...
|
| #
2286efdd
|
| 25-Sep-2025 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'barry/2025-07-30/fix-matshellsetoperationarg' into 'main'
Complete usage of PetscVoidFn and PetscErrorCodeFn and introduce PetscFortranCallbackFn
See merge request petsc/petsc!8615
|
| #
57d50842
|
| 31-Jul-2025 |
Barry Smith <bsmith@mcs.anl.gov> |
Change use of void (*)(void) and void (**)(void) in the PETSc API to PetscVoidFn * and PetscVoidFn ** or PetscErrorCodeFn * or PetscErrorCodeFn **
|
| #
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
|
| #
ac530a7e
|
| 03-Jun-2025 |
Pierre Jolivet <pierre@joliv.et> |
Remove unnecessary braces around one-liners
git grep -lE "[ ]*(if|for|while) \(.*\) {[^;]*;[^;]*}$" -- '*.c' '*.cxx' '*.cu' '*.h' '*.hpp' '*.cpp' | xargs sed -i '' -E 's#([ ]*)(if|for|while) \((.*)\
Remove unnecessary braces around one-liners
git grep -lE "[ ]*(if|for|while) \(.*\) {[^;]*;[^;]*}$" -- '*.c' '*.cxx' '*.cu' '*.h' '*.hpp' '*.cpp' | xargs sed -i '' -E 's#([ ]*)(if|for|while) \((.*)\) {([^;]*);([^;]*)}$#\1\2 \(\3\)\4;\5#'
show more ...
|
| #
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 ...
|
| #
4d1837e9
|
| 12-May-2025 |
Pierre Jolivet <pierre@joliv.et> |
Minor style fixes
See discussion at https://github.com/llvm/llvm-project/issues/139376
|
| #
a370cb8a
|
| 21-Oct-2024 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'knepley/feature-hamiltonian-ex2-opt' into 'main'
Fix Hamiltonian ex2 for Landau Damping
See merge request petsc/petsc!7937
|
| #
d52c2f21
|
| 02-Oct-2024 |
Matthew G. Knepley <knepley@gmail.com> |
DMSwarm: Allow multiple fields to define the DM field and multiple cellDM, allow different coordinate fields, and compute moments - Changed interface for DMSwarmVectorDefineField() and DMSwarmVectorG
DMSwarm: Allow multiple fields to define the DM field and multiple cellDM, allow different coordinate fields, and compute moments - Changed interface for DMSwarmVectorDefineField() and DMSwarmVectorGetField() to allow multiple fields - Add DMSwarmReplace_Internal() - Add coordinate name to Swarm - Add DMSwarmGetCoordinateField() and DMSwarmSetCoordinateField() - Add DMSwarmComputeMoments() - In DMLocatePoints_Plex(), ignore extra coordinates in input vector - Add CellDMInfo struct - Add DMSwarmPushCellDM() and DMSwarmPopCellDM()
show more ...
|
| #
a2dece7a
|
| 25-Sep-2024 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'jolivet/housekeeping-before-release-ci' into 'main'
Housekeeping before 3.22.0
See merge request petsc/petsc!7873
|
| #
bd158744
|
| 25-Sep-2024 |
Pierre Jolivet <pierre@joliv.et> |
Fix wrong PetscErrorCode
|
| #
d0e6bf2a
|
| 25-Sep-2024 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'jolivet/clang-format-19' into 'main'
clang-format-19
See merge request petsc/petsc!7644
|
| #
57508ece
|
| 17-Sep-2024 |
Pierre Jolivet <pierre@joliv.et> |
Remove unneeded parentheses
|
| #
d8e47b63
|
| 17-Sep-2024 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'barry/2024-09-02/rebased-fix-conversion-warnings' into 'main'
Compiler finds (and forbid) casts from higher precision integers to lower
See merge request petsc/petsc!7806
|
| #
6497c311
|
| 25-Aug-2024 |
Barry Smith <bsmith@mcs.anl.gov> |
Add to CI compilers flags '-Wconversion', '-Wno-sign-conversion', '-Wno-float-conversion', '-Wno-implicit-float-conversion']
Also fix the code to repository to compile cleanly with these flags in th
Add to CI compilers flags '-Wconversion', '-Wno-sign-conversion', '-Wno-float-conversion', '-Wno-implicit-float-conversion']
Also fix the code to repository to compile cleanly with these flags in the CI
show more ...
|
| #
fbed16d5
|
| 09-Sep-2024 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'adams/gamg-repart-opt' into 'main'
small optimzation for block repartitioning
See merge request petsc/petsc!7804
|
| #
3643261f
|
| 06-Sep-2024 |
Mark Adams <mfadams@lbl.gov> |
DMSwarm/TS: better comments on pseudo-inverse
|
| #
b8425d6e
|
| 24-Jul-2024 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'adams/landau-test-ex30-resampling' into 'main'
DMSwarm: add resampling to ts/tests/ex30; DMLandau: move parameter query, add 3D cubed-sphere
See merge request petsc/petsc!7311
|
| #
d043ef4c
|
| 24-Jul-2024 |
Mark Adams <524115-markadams4@users.noreply.gitlab.com> |
DMSwarm: add resampling to ts/tests/ex30; DMLandau: move parameter query, add 3D cubed-sphere
|
| #
ec42381f
|
| 20-Jul-2024 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'barry/2024-06-15/deprecate-petsc-current' into 'main'
Deprecate the use of PETSC_DEFAULT with PETSC_CURRENT since PETSC_DEFAULT is a...
See merge request petsc/petsc!7634
|
| #
09cb0f53
|
| 25-Jun-2024 |
Barry Smith <bsmith@mcs.anl.gov> |
Add support for PETSC_DETERMINE to revert to defaults TS parameters
|
| #
14e7b07e
|
| 21-Jun-2024 |
Satish Balay <balay@mcs.anl.gov> |
Merge remote-tracking branch 'origin/release'
|
| #
577be609
|
| 21-Jun-2024 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'jczhang/2024-06-18/fix-some-minor-issues' into 'release'
Fix some minor issues found on Sunspot
See merge request petsc/petsc!7636
|
| #
bbdffb7f
|
| 18-Jun-2024 |
Junchao Zhang <jczhang@anl.gov> |
Tests: disable tests for sycl
|