| #
970231d2
|
| 07-Mar-2024 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'jolivet/clang-format-18' into 'main'
clang-format version 18
See merge request petsc/petsc!6902
|
| #
f4f49eea
|
| 11-Feb-2024 |
Pierre Jolivet <pierre@joliv.et> |
Remove multiple parentheses and extra semicolon
git grep -l -E "\(\([a-zA-Z0-9_]+\)\(\*[a-zA-Z0-9_]+\)[, )]" | xargs sed -r -i'' 's#\(\(([a-zA-Z0-9_]+)\)\(\*([a-zA-Z0-9_]+)\)([, )])#\(\(\1\)\*\2\3#g
Remove multiple parentheses and extra semicolon
git grep -l -E "\(\([a-zA-Z0-9_]+\)\(\*[a-zA-Z0-9_]+\)[, )]" | xargs sed -r -i'' 's#\(\(([a-zA-Z0-9_]+)\)\(\*([a-zA-Z0-9_]+)\)([, )])#\(\(\1\)\*\2\3#g' git grep -l -E "Petsc(.)*\(\(\*[a-zA-Z0-9_]*\)," | xargs sed -r -i'' 's#Petsc([a-zA-Z0-9_]*)\(\(\*([a-zA-Z0-9_]*)\), #Petsc\1(*\2, #g' git grep -l -E "([\!\&\~\*\(]|\)\)|\([^,\*\(]+\**\))\(([a-zA-Z0-9_]+((\.|->)[a-zA-Z0-9_]+|\[[a-zA-Z0-9_ \%\+\*\-]+\])+)\)" | xargs sed -r -i'' 's#([\!\&\~\*\(]|\)\)|\([^,\*\(]+\**\))\(([a-zA-Z0-9_]+((\.|->)[a-zA-Z0-9_]+|\[[a-zA-Z0-9_ \%\+\*\-]+\])+)\)#\1\2#g'
show more ...
|
| #
e98d5aa1
|
| 12-Jan-2024 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'barry/2024-01-03/docs-c2html' into 'main'
Remove recursive build of c2html files; no longer uses classic makefiles
See merge request petsc/petsc!7167
|
| #
46233b44
|
| 11-Jan-2024 |
Barry Smith <bsmith@mcs.anl.gov> |
Use < instead of " for includes of PETSc include files
And Remove unneeded duplicate includes
Co-Authored-by: Jose Roman <jroman@dsic.upv.es>
|
| #
6c37f76f
|
| 27-Jul-2023 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'tisaac/feature-log-handler' into 'main'
Deglobalize logging into PetscLogHandler and PetscLogState
See merge request petsc/petsc!6709
|
| #
2611ad71
|
| 14-Jul-2023 |
Toby Isaac <toby.isaac@gmail.com> |
Profiling: Improve !defined(PETSC_USE_LOG) #defines
- If we cast macro arguments to void, we can avoid unused errors that have forced lots of conditionally included code like this:
```c #if def
Profiling: Improve !defined(PETSC_USE_LOG) #defines
- If we cast macro arguments to void, we can avoid unused errors that have forced lots of conditionally included code like this:
```c #if defined(PETSC_USE_LOG) PetscLogEvent event; #endif ```
- Having global counters like petsc_TotalFlops externed event if !PetscDefined(USE_LOG) helps to remove a lot of needless `#ifdef`s around code that can instead be placed in `if (PetscDefined(USE_LOG)) {}` blocks.
show more ...
|
| #
8c5b6b5e
|
| 04-Jun-2023 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'adams/bjkokkos-feature-lu' into 'main'
Kokkos batch solver updates
See merge request petsc/petsc!6529
|
| #
a4313204
|
| 04-Jun-2023 |
Mark Adams <524115-markadams4@users.noreply.gitlab.com> |
Kokkos batch solver updates
|
| #
91fdbe66
|
| 06-May-2023 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'jczhang/disable-landau-with-sycl' into 'main'
Temporarily disable Landau with SYCL due to link errors with Intel OneAPI
See merge request petsc/petsc!6412
|
| #
c36a59be
|
| 05-May-2023 |
Junchao Zhang <jczhang@anl.gov> |
Landau: temporarily disable it for SYCL due to link errors with Intel OneAPI
|
| #
592ea0f6
|
| 02-May-2023 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'adams/mat-remove-matsetvaluesdevice' into 'main'
remove MatSetValuesDevice
See merge request petsc/petsc!6378
|
| #
4c55d725
|
| 02-May-2023 |
Mark Adams <524115-markadams4@users.noreply.gitlab.com> |
remove MatSetValuesDevice
|
| #
e1804efc
|
| 10-Apr-2023 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'adams/landau-feature-simplex' into 'main'
Adams/landau feature simplex
See merge request petsc/petsc!6293
|
| #
cd27c6de
|
| 06-Apr-2023 |
markadams4 <mfadams@lbl.gov> |
added support for simplicies in Landau
|
| #
5a7a9864
|
| 14-Mar-2023 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'jeremy/less-strcpy-strcat' into 'main'
Use Petsc[Strncpy,Strlcat,Memcpy] over Petsc[Strcpy,Strcat]
Closes #1332
See merge request petsc/petsc!6115
|
| #
f6652e4d
|
| 13-Mar-2023 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'adams/landau-ex1-fix' into 'main'
Landau collision operator cleanup/release with paper, new verification test in ex1 and cleanup
See merge request petsc/petsc!6006
|
| #
c6a7a370
|
| 24-Feb-2023 |
Jeremy L Thompson <jeremy@jeremylt.org> |
Clean up PETSc str ops to use more secure implementations where possible. These include:
- Use PetscStrncpy()/PetscStrlcat()/PetscMemcpy() over PetscStrcpy()/PetscStrcat() - Use PetscArraycpy() over
Clean up PETSc str ops to use more secure implementations where possible. These include:
- Use PetscStrncpy()/PetscStrlcat()/PetscMemcpy() over PetscStrcpy()/PetscStrcat() - Use PetscArraycpy() over PetscMemcpy() as appropriate for string buffer copying - Use built in string from name over hardcoding - Use sizeof over hardcoded length - Replace some Strlcat with Strncpy when offset is known
show more ...
|
| #
ae6bf4a8
|
| 24-Feb-2023 |
markadams4 <mfadams@lbl.gov> |
adding NRL lambdas between grids and cleaning up
|
| #
6b664d00
|
| 03-Feb-2023 |
markadams4 <mfadams@lbl.gov> |
adding movie Monitor and verification to small Landau test remove ramp up of batches increase to Q5 and move batch solver data to global
|
| #
37d05b02
|
| 06-Feb-2023 |
Satish Balay <balay@mcs.anl.gov> |
Merge remote-tracking branch 'origin/release'
|
| #
b877537e
|
| 05-Feb-2023 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'jolivet/fix-typos' into 'release'
Fix Typos
See merge request petsc/petsc!6024
|
| #
da81f932
|
| 05-Feb-2023 |
Pierre Jolivet <pierre@joliv.et> |
Fix Typos
|
| #
995ec06f
|
| 03-Feb-2023 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'stefanozampini/nvhpc-and-clang-cuda' into 'main'
Clang support for CUDA
See merge request petsc/petsc!6015
|
| #
e0bd6ad4
|
| 01-Feb-2023 |
Stefano Zampini <stefano.zampini@gmail.com> |
Disable landau tests
|
| #
31d78bcd
|
| 02-Feb-2023 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'jacobf/2022-12-10/petscerrorcode-nodiscard' into 'main'
Feature: Non-discardable PetscErrorCode
See merge request petsc/petsc!5923
|