| #
2e956fe4
|
| 24-May-2022 |
Stefano Zampini <stefano.zampini@gmail.com> |
PetscObjectFunctionCompose: clean up composed functions at Destroy time
|
| #
9f77afae
|
| 13-Jun-2022 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'jolivet/feature-tile-matdensegetsubmatrix' into 'main'
MatDenseGetSubMatrix(): allow selection of rows
See merge request petsc/petsc!5337
|
| #
a2748737
|
| 29-Apr-2022 |
Pierre Jolivet <pierre@joliv.et> |
MatDenseGetSubMatrix(): allow selection of rows
|
| #
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
|
| #
9e70506f
|
| 10-Jun-2022 |
Satish Balay <balay@mcs.anl.gov> |
Merge remote-tracking branch 'origin/release'
|
| #
1ca2173e
|
| 10-Jun-2022 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'jose/release/fix-matconjugate-lda' into 'release'
MATSEQDENSE: fix three operations that were not considering LDA
See merge request petsc/petsc!5325
|
| #
05fcb23e
|
| 23-May-2022 |
Stefano Zampini <stefano.zampini@gmail.com> |
MATSEQDENSE: realloc QR workspace if needed during solve
Add info printing on errors to ease debugging
|
| #
bcd8d3a4
|
| 10-Jun-2022 |
Jose E. Roman <jroman@dsic.upv.es> |
MATSEQDENSE: fix ascii view() in complex scalars when lda!=m
|
| #
06c5243a
|
| 09-Jun-2022 |
Jose E. Roman <jroman@dsic.upv.es> |
MATSEQDENSE: fix three operations that were not considering LDA
|
| #
97a91c33
|
| 06-May-2022 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'jose/mat-dense-shift' into 'main'
Mat: implement MatShift() for dense matrices
See merge request petsc/petsc!5191
|
| #
04cbc005
|
| 29-Apr-2022 |
Jose E. Roman <jroman@dsic.upv.es> |
Fix flops logged in MatScale_SeqDense() in case LDA!=M
|
| #
2f605a99
|
| 29-Apr-2022 |
Jose E. Roman <jroman@dsic.upv.es> |
Mat: implement MatShift() for dense matrices
|
| #
89669be4
|
| 02-May-2022 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'psanan/docs-sphinx-man-pages' into 'main'
Integrate Man Pages into Sphinx Docs
Closes #1132 and #1015
See merge request petsc/petsc!4989
|
| #
76b1de3d
|
| 01-May-2022 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'jolivet/housekeeping' into 'main'
General housekeeping
See merge request petsc/petsc!5192
|
| #
2cf15c64
|
| 30-Apr-2022 |
Pierre Jolivet <pierre@joliv.et> |
MatDense: proper checks and cleanup
|
| #
e63c167f
|
| 30-Apr-2022 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'barry/2022-04-28/rm-petsccheckfalse-mat' into 'main'
Remove the rest of the PetscCheckFalse() from the mat directory
See merge request petsc/petsc!5184
|
| #
db781477
|
| 25-Apr-2022 |
Patrick Sanan <patrick.sanan@gmail.com> |
Docs: bulk add backticks to .seealso man page fields
```python import os import re import fileinput
def _process_word(word): comma = "," if word.endswith(",") else "" return "`%s`%s" % (wor
Docs: bulk add backticks to .seealso man page fields
```python import os import re import fileinput
def _process_word(word): comma = "," if word.endswith(",") else "" return "`%s`%s" % (word.rstrip(","), comma)
def _process_stripped_line(line): return " ".join(map(_process_word, line.split()))
start_pattern = re.compile(r"^( *\.seealso:? )(.*$)")
def process_file(filename_full): with fileinput.FileInput(filename_full, inplace=True) as f: in_block = False for line in f: line_stripped = line.strip() # end ".seealso blocks" on a blank line or C-style comment close line_modified = None if not line_stripped: in_block = False elif line_stripped.endswith("*/"): in_block = False else: match = re.match(start_pattern, line) # not stripped line if match: indent = " " * len(match.group(1)) in_block = True line_modified = match.group( 1) + _process_stripped_line( match.group(2).strip()) elif in_block: line_modified = indent + _process_stripped_line( line_stripped) if line_modified: print(line_modified) # prints to the file else: print(line, end="") # prints to the file
BASE_DIRS = ["src", "include"] EXT = [".c", ".cxx", ".cpp", ".cu", ".h", ".hpp", ".hxx"] EXCLUDE_DIRS = ["tests", "tutorials", "ftn-auto", "ftn-custom", "benchmarks"]
def main(): """ Process everything """ for base in BASE_DIRS: for root, dirs, files in os.walk(base): for filename in files: if os.path.splitext(filename)[1] in EXT: filename_full = os.path.join(root, filename) print("FILE ---", filename_full) process_file(filename_full) for exclude_dir in EXCLUDE_DIRS: if exclude_dir in dirs: dirs.remove(exclude_dir)
if __name__ == "__main__": main() ```
show more ...
|
| #
aed4548f
|
| 29-Apr-2022 |
Barry Smith <bsmith@mcs.anl.gov> |
Remove the rest of the PetscCheckFalse() from the mat directory
Commit-type: housekeeping /spend 45m
|
| #
6af5b3cd
|
| 28-Apr-2022 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'barry/2020-10-08/invert-block-diagonal-aij' into 'main'
add MatInvertVariableBlockEnvelope
See merge request petsc/petsc!3544
|
| #
8a9c020e
|
| 09-Oct-2020 |
Barry Smith <bsmith@mcs.anl.gov> |
Implement MatInvertVariableBlockEnvelope() with test example
Commit-type: feature, example /spend 12h Reported-by: Olivier Jamond <olivier.jamond@cea.fr>
|
| #
527ad957
|
| 11-Apr-2022 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'barry/2022-04-01/fix-petsc-options-begin-end/release' into 'main'
Remove bogus error returns from Begin/End() macros
See merge request petsc/petsc!5069
|
| #
d0609ced
|
| 02-Apr-2022 |
Barry Smith <bsmith@mcs.anl.gov> |
Cleanup of introduction of PetscCall()
* remove bogus error flags from XXXBegin()/End() macros such as PetscOptionsBegin()/End()
* rename for consistency certain XXXBegin()/End() macros such as Mat
Cleanup of introduction of PetscCall()
* remove bogus error flags from XXXBegin()/End() macros such as PetscOptionsBegin()/End()
* rename for consistency certain XXXBegin()/End() macros such as MatPreallocateInitialize()/Finalize()
* fix many lingering ierr = XXX that arose from multiline function calls
* sync slepc/hpddm - to use snapshots with the same changes
Commit-type: error-checking, style-fix /spend 8h
show more ...
|
| #
b33f4bec
|
| 05-Apr-2022 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'jolivet/feature-less-checkfalse' into 'main'
Dividing by four the number of PetscCheckFalse()
See merge request petsc/petsc!5072
|
| #
08401ef6
|
| 04-Apr-2022 |
Pierre Jolivet <pierre@joliv.et> |
Remove some PetscCheckFalse()
|
| #
30dfb562
|
| 31-Mar-2022 |
Satish Balay <balay@mcs.anl.gov> |
Merge branch 'barry/2022-03-30/strip-petscall-petsctrymethod' into 'main'
Do not wrap PetscTryMethod() PetscUseMethod() in PetscCall
See merge request petsc/petsc!5051
|