| #
9e29573d
|
| 01-Jun-2019 |
Matthew G. Knepley <knepley@gmail.com> |
Log: Have CSV writer add stage summary lines
|
| #
ef135d0e
|
| 01-Jun-2019 |
Satish Balay <balay@mcs.anl.gov> |
Merge remote-tracking branch 'origin/psanan/docs-remove-manconcepts' [PR #1733]
|
| #
0f5d826a
|
| 30-May-2019 |
Patrick Sanan <patrick.sanan@gmail.com> |
Man pages: remove Concepts: fields
These fields were previously stripped from the man pages by logic removed in 21a59cba2737d49dc2f0bd12c08db0d2a3f3f209
Remove these fields from all man pages (but
Man pages: remove Concepts: fields
These fields were previously stripped from the man pages by logic removed in 21a59cba2737d49dc2f0bd12c08db0d2a3f3f209
Remove these fields from all man pages (but not from examples).
This is accomplished with GNU sed (gsed on OS X), with the following commands. *Warning* that this type of command can corrupt a .git directory, so be cautious in reusing or modifying these commands. They first look for and delete matching lines with a following line consisting of only whitespace, and then delete any remaining matching lines.
find src -type f -not -path "*/examples/*" -not -name "*.html" -not -name "*.bib" -exec gsed -i '/Concepts:/ {N; /\n\s*$/d}' {} + find src -type f -not -path "*/examples/*" -not -name "*.html" -not -name "*.bib" -exec gsed -i '/Concepts:/d' {} + find include -type f -not -path "*/examples/*" -not -name "*.html" -not -name "*.bib" -exec gsed -i '/Concepts:/ {N; /\n\s*$/d}' {} + find include -type f -not -path "*/examples/*" -not -name "*.html" -not -name "*.bib" -exec gsed -i '/Concepts:/d' {} +
Hints on the sed command obtained from: https://unix.stackexchange.com/questions/100754/how-to-delete-a-specific-line-and-the-following-blank-line-using-gnu-sed
show more ...
|
| #
f90b075c
|
| 30-May-2019 |
Barry Smith <bsmith@mcs.anl.gov> |
Attempt to select and determine MKL libraries that use OpenMP
PetscLogView() now prints the number of OpenMP threads
Using ex43 -n 10000000 -log_view | grep VecDot On my Apple Mac using the free MK
Attempt to select and determine MKL libraries that use OpenMP
PetscLogView() now prints the number of OpenMP threads
Using ex43 -n 10000000 -log_view | grep VecDot On my Apple Mac using the free MKL installed from Intel I got speed down on vector operations Using the MKL that came with the Intel Fortran I also got speed down But using the MKL that comes with Matlab I got some speedup
Commit-type: feature
show more ...
|
| #
fa54792a
|
| 29-May-2019 |
Patrick Sanan <patrick.sanan@gmail.com> |
Merged in psanan/man-pages-remove-keywords (pull request #1717)
Man pages: Remove .keywords fields
Approved-by: BarryFSmith <bsmith@mcs.anl.gov>
|
| #
bfcb38ea
|
| 27-May-2019 |
Patrick Sanan <patrick.sanan@gmail.com> |
Man pages: remove .keywords: fields
This field is recognized by doctext from Sowing (http://wgropp.cs.illinois.edu/projects/software/sowing/doctext/node20.htm#Node20), but it doesn't seem to be unif
Man pages: remove .keywords: fields
This field is recognized by doctext from Sowing (http://wgropp.cs.illinois.edu/projects/software/sowing/doctext/node20.htm#Node20), but it doesn't seem to be uniformly used or maintained.
Thus, remove all .keywords: fields, and a following blank line, if present.
This is accomplished with GNU sed (gsed on OS X), with the following commands. *Warning* that this type of command can corrupt a .git directory, so be cautious in reusing or modifying these commands. They first look for and delete matching lines with a following line consisting of only whitespace, and then delete any remaining matching lines.
find src/ -type f -exec gsed -i '/keywords:/ {N; /\n\s*$/d}' {} + find src/ -type f -exec gsed -i '/keywords:/d' {} + find include/ -type f -exec gsed -i '/keywords:/ {N; /\n\s*$/d}' {} + find include/ -type f -exec gsed -i '/keywords:/d' {} +
Hints on the sed command obtained from: https://unix.stackexchange.com/questions/100754/how-to-delete-a-specific-line-and-the-following-blank-line-using-gnu-sed
show more ...
|
| #
391e3792
|
| 22-May-2019 |
BarryFSmith <bsmith@mcs.anl.gov> |
Merged in barry/check-bad-urls (pull request #1685)
Barry/check bad urls
Approved-by: Patrick Sanan <patrick.sanan@gmail.com> Approved-by: Junchao Zhang <junchao.zhang@gmail.com>
|
| #
a8d69d7b
|
| 19-May-2019 |
Barry Smith <bsmith@mcs.anl.gov> |
Fixed out-dated URLS using make checkbadURLS REPLACE=1
One manual fix of https://en.wikipedia.org/wiki/Buckingham_π_theorem since the automatic tool dropped the first _ for some reason Manual fix of
Fixed out-dated URLS using make checkbadURLS REPLACE=1
One manual fix of https://en.wikipedia.org/wiki/Buckingham_π_theorem since the automatic tool dropped the first _ for some reason Manual fix of //faq.html since the automatic tool incorrectly replaced /faq.html to //faq.html in some locations
These are largely updates of http to https but have a variety of other website location changes
Once this branch is in master individual developers can run make checkbadURLS and fix URLs related to their projects manually
Commit-type: bug-fix, documentation
show more ...
|
| #
24ac310b
|
| 18-May-2019 |
BarryFSmith <bsmith@mcs.anl.gov> |
Merged in barry/log-memory (pull request #1677)
Introduce logging of memory usage to the PETSc event logging infrastructure.
|
| #
e3ed9ee7
|
| 29-Apr-2019 |
Barry Smith <bsmith@mcs.anl.gov> |
Introduce logging of memory usage to the PETSc event logging infrastructure.
The logging can be turned on and viewed with the options -log_view -log_view_memory
The logging requires the use of the
Introduce logging of memory usage to the PETSc event logging infrastructure.
The logging can be turned on and viewed with the options -log_view -log_view_memory
The logging requires the use of the PETSc malloc so may slow the runs slightly but since it is not doing error checking of the memory it should not slow down the computations significently.
Four pieces of information about memory are logged and display in four additional columns in the table. They are documented in the output above the table. Each column provides a particular "view" of the memory usage in the event and they complement each other.
This should make it much easier for developers focusing on memory usage in their implementations to understand the usage in the code, where the memory is being utilized, how it scales with problem size and number of processes etc.
Commit-type: feature
show more ...
|
| #
5da1e361
|
| 11-May-2019 |
Matthew Knepley <knepley@gmail.com> |
Merged in abhishek/feature-log-csv (pull request #1646)
CSV print function definitions added
Approved-by: BarryFSmith <bsmith@mcs.anl.gov>
|
| #
669c5be0
|
| 10-May-2019 |
Satish Balay <balay@mcs.anl.gov> |
fix compile warnings
/usr/home/balay/petsc.next-tmp/src/sys/logging/plog.c:1262:42: warning: variable 'stageInfo' set but not used [-Wunused-but-set-variable]
|
| #
38144912
|
| 25-Nov-2018 |
deepblu2718 <a45@buffalo.edu> |
CSV print function definitions added
Added zlib compress and wrote csv to buffer instead of printing
|
| #
10682a7e
|
| 26-Mar-2019 |
Lisandro Dalcin <dalcinl@gmail.com> |
Merged in dalcinl/plex-distribute (pull request #1454)
DMPLEX: Speedup DMPlexDistribute[Overlap]()
Approved-by: Matthew Knepley <knepley@gmail.com>
|
| #
62872c28
|
| 13-Mar-2019 |
Lisandro Dalcin <dalcinl@gmail.com> |
Log: Add PetscLogEventSync()
This routine should be called only if there is not a PetscObject available to pass to PetscLogEventBegin(), but you rather have a MPI_Comm handle.
|
| #
b0f52d29
|
| 28-Jan-2019 |
Joseph Pusztay <josephpusztay@Josephs-MacBook-Pro.local> |
Merge branch 'master' into jpusztay/feature-swarm-symplectic-example
|
| #
a1a5ab92
|
| 28-Jan-2019 |
Joseph Pusztay <josephpusztay@Josephs-MacBook-Pro.local> |
Merge branch 'master' into jpusztay/feature-swarm-symplectic-example
|
| #
940dfb0a
|
| 28-Jan-2019 |
Joseph Pusztay <josephpu@buffalo.edu> |
Merged petsc/petsc into master
|
| #
30faf514
|
| 27-Jan-2019 |
m_diehl <m.diehl@mpie.de> |
Merged petsc/petsc into master
|
| #
ddad275a
|
| 21-Jan-2019 |
Patrick Farrell <patrick@pefarrell.org> |
Merge branch 'master' into knepley/feature-snes-patch
|
| #
df4be7ee
|
| 16-Jan-2019 |
Matthew G. Knepley <knepley@gmail.com> |
Merge branch 'master' into knepley/feature-multiple-ds
* master: (156 commits) Added missing CHKERRQ() KSP ex56: Added alt output file for ex56_2. Revert "KSP ex56: Updated test output and dom
Merge branch 'master' into knepley/feature-multiple-ds
* master: (156 commits) Added missing CHKERRQ() KSP ex56: Added alt output file for ex56_2. Revert "KSP ex56: Updated test output and domain size for test _2." DMStag tutorial ex4: fix stencil errors Hierarchical partitioner: added an alt output file Add support for DMGetMatrix() with periodic boundary conditions in one dimension for DMDA. Fixed incorrect 'ntext' argument in PetscOptionsEList call in SNES ex12.c ISCreateSubIS: Initialize variables owner and lidx to avoid compiler warnings metis: provide -download-metis-use-doubleprecision option KSP ex56: Updated test output and domain size for test _2. Hierarchical partitioner: add a bit documentation ISCreateSubIS: Added checkers for parameters Added a test for hierarchical partitioning vertex weights Plex+Doc: Document options for DMPlexCreateBoxMesh() Hierarchical partitioner supports vertex weights Create an API ISCreateSubIS that extracts Add an alt output file Plex: Can now give bounds to DMPlexCreateBoxMesh() from options - Use -dm_plex_box_lower and dm_plex_box_upper PCMG: These methods should be optional PCMG: Make PCMGGet/SetLevels() proper member functions - Also need to compose them in GAMG ...
Conflicts: src/dm/impls/plex/plexsection.c
show more ...
|
| #
6766dcbc
|
| 11-Jan-2019 |
Satish Balay <balay@mcs.anl.gov> |
Merge remote-tracking branch 'origin/pr1206/arcowie-rem/feature-error-logging/master'
|
| #
2c2595ff
|
| 20-Dec-2018 |
Matthew G. Knepley <knepley@gmail.com> |
Merge branch 'master' into knepley/fix-plex-partition-parallel
* master: (414 commits) very small updates to users manual syntax is define(XXX) in examples tests not defined(XXX) Increase patc
Merge branch 'master' into knepley/fix-plex-partition-parallel
* master: (414 commits) very small updates to users manual syntax is define(XXX) in examples tests not defined(XXX) Increase patchlevel to 3.10.3 petsc4py: updat to latest maint snapshot with SNESTEST updates Fix link for CUDA example in PETSc from GPUs.html page Minor fixes to installation instructions Mat: Fixed types in Pardiso interface Converted example comment to latex This example crashes (for unknown reasons, probably related to the handling of extended derived types passed as arguments) with the PGI Fortran compiler Remove outdated requires: from top of several examples remove outdated test requires: command from top of source file Fix the documentation for -ksp_gmres_cgs_refinement_type Commit f20c2d659b168217cb455989f28afe052d71a64c broke lex.py so the users manual was no longer being built. There reverted the changes to lex.py Plex: Add PetscPartitioner to fort list Suggested-by: Jiaoyan Li <Jiaoyan.Li@inl.gov> Doc: Fix spelling Suggested-by: Manuel Colera Rico <m.colera@upm.es> Mat ex88: check in double or quad precision only Fix error with PetscComplex when PETSc is compiled with C and used in C++ configure: fix typo endwith -> endswith Sys ex23: Migrated to ts_max_time in yaml file as well. AO ex5: Fixed missing CHKERRQ(); Mat test ex88: add tests for MatMultAdd and MatMultTranposeAdd ...
Conflicts: src/dm/impls/plex/examples/tests/ex12.c
show more ...
|
| #
34d8b122
|
| 09-Dec-2018 |
Patrick Farrell <patrick@pefarrell.org> |
Merge branch 'master' into knepley/feature-snes-patch
Not sure if this has done the right thing because there are no tests yet. Also, the fortran stubs break (it doesn't know what to do with SNESCo
Merge branch 'master' into knepley/feature-snes-patch
Not sure if this has done the right thing because there are no tests yet. Also, the fortran stubs break (it doesn't know what to do with SNESCompositeType), and I don't know how to fix it.
show more ...
|
| #
f35fe2a5
|
| 06-Dec-2018 |
Joseph Pusztay <josephpu@buffalo.edu> |
Merged petsc/petsc into master
|