History log of /petsc/src/ksp/pc/impls/telescope/telescope.c (Results 126 – 150 of 276)
Revision Date Author Comments
# 58a6a8f1 26-Sep-2019 Satish Balay <balay@mcs.anl.gov>

Merge branch 'stefanozampini/fix-int-occurencies' into 'master'

Remove wrong usage of int datatype from PETSc code

See merge request petsc/petsc!2101


# 5bd1e576 25-Sep-2019 Stefano Zampini <stefano.zampini@gmail.com>

Remove wrong usage of int datatype from PETSc code


# 0a6a86df 17-Aug-2019 Karl Rupp <me@karlrupp.net>

Merge branch 'jolivet/typos' [PR #1970]

* jolivet/typos:
Some typos in the range T--Z
Pierre Jolivet doesn't know why, but had the splendid idea to type in
find . -name "*.c" -exec cat {} ; | aspel

Merge branch 'jolivet/typos' [PR #1970]

* jolivet/typos:
Some typos in the range T--Z
Pierre Jolivet doesn't know why, but had the splendid idea to type in
find . -name "*.c" -exec cat {} ; | aspell list | sort -u

show more ...


# 4c500f23 15-Aug-2019 Pierre Jolivet <pierre.jolivet@enseeiht.fr>

Typos.


# 613bfe33 02-Jun-2019 BarryFSmith <bsmith@mcs.anl.gov>

Merged in barry/update-collective-on (pull request #1744)

Update the use of Collective on in the manual pages to reflect the new style


# d083f849 01-Jun-2019 Barry Smith <bsmith@mcs.anl.gov>

Update the use of Collective on in the manual pages to reflect the new style

Commit-type: style-fix, documentation
Thanks-to: Patrick Sanan <patrick.sanan@gmail.com>


# 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 ...


# b80933c8 26-Mar-2019 Satish Balay <balay@mcs.anl.gov>

doc: fixes


# 9a09376b 24-Mar-2019 Barry Smith <bsmith@mcs.anl.gov>

Merge branch 'master' of bitbucket.org:petsc/petsc


# c5a7d6e0 20-Mar-2019 Satish Balay <balay@mcs.anl.gov>

Merge remote-tracking branch 'origin/jczhang/fix-vecscattercreate-api'


# 9448b7f1 18-Mar-2019 Junchao Zhang <jczhang@mcs.anl.gov>

Revert the function name where it is referenced


# 8000f006 15-Mar-2019 Barry Smith <bsmith@mcs.anl.gov>

Merge branch 'master' of bitbucket.org:petsc/petsc


# d2f69238 12-Mar-2019 Dave May <dave.mayhem23@gmail.com>

Merged in dmay/feature-telescope-dmcoarse/next (pull request #1402)

PCTelescope feature: Support setup from a coarse DM

Approved-by: BarryFSmith <bsmith@mcs.anl.gov>


# 66b79024 06-Mar-2019 Dave May <dave.mayhem23@gmail.com>

PCTelescope: Group translate rank
* Since I do not want to check the error, code, I cast the function to void to shut of the static analyser (good tip from BarryFSmith)


# 57f12427 04-Mar-2019 Dave May <dave.mayhem23@gmail.com>

PCTelescope: Code formatting and name spacing
* Aligned variable declarations
* Removed unnecessary blank lines
* Name spaced private function isActiveRank()
* Use PETSC_STATIC_INLINE for the privat

PCTelescope: Code formatting and name spacing
* Aligned variable declarations
* Removed unnecessary blank lines
* Name spaced private function isActiveRank()
* Use PETSC_STATIC_INLINE for the private functions PCTelescope_isActiveRank() and PetscSubcomm_isActiveRank()

show more ...


# aaa7a805 02-Mar-2019 Dave May <dave.mayhem23@gmail.com>

Telescope: Bug fix
* Fixed doc typo
* Fixed memory leak occurring on successive calls to PCSetUp.


# c5083d92 28-Feb-2019 Dave May <dave.mayhem23@gmail.com>

Telescope: Resolve build failures


# 514db83a 28-Feb-2019 Dave May <dave.mayhem23@gmail.com>

Telescope: Man page update
* This will render in a more readable html page


# 00fea0eb 28-Feb-2019 Dave May <dave.mayhem23@gmail.com>

Telescope: man page updates


# 8d9f7141 27-Feb-2019 Dave May <dave.mayhem23@gmail.com>

PCTelescope: Added support to define setup via the communicator associated with a coarse DM
* The implementation is general and works with any DM type
* The coarse DM must reside on a sub-communicato

PCTelescope: Added support to define setup via the communicator associated with a coarse DM
* The implementation is general and works with any DM type
* The coarse DM must reside on a sub-communicator of the parent (fine) DM. This is checked during setup.
* Support for using coarse DMs requires the user compose methods for the field scatter between two topologically identical DMs defined on different communicators.
* Currently only works with KSPSetComputeOperators, although it is straightforward to add the extra hooks to support assembled operators

show more ...


# 2a22aa42 26-Feb-2019 Dave May <dave.mayhem23@gmail.com>

Telescope refactor: Preparing for support of user supplied MPI_Comm
* Store the sub-communicator
* Generalised the isActiveRank() method
* Updated calling of isActiveRank()


# b0f52d29 28-Jan-2019 Joseph Pusztay <josephpusztay@Josephs-MacBook-Pro.local>

Merge branch 'master' into jpusztay/feature-swarm-symplectic-example


12345678910>>...12