History log of /petsc/src/dm/impls/plex/plex.c (Results 676 – 700 of 1780)
Revision Date Author Comments
# 695887e9 13-Jul-2019 Karl Rupp <me@karlrupp.net>

Merge branch 'jed/feature-plex-tensor-noninterpolated' [PR #1846]

* jed/feature-plex-tensor-noninterpolated:
DMPlexSetClosurePermutationTensor: add support for non-interpolated meshes.


# 9e8305c2 03-Jul-2019 Jed Brown <jed@jedbrown.org>

DMPlexSetClosurePermutationTensor: add support for vertex-only charts

This occurs for non-interpolated meshes, but is also the default for
coordinate DMs (sans high order geometry), for example. If

DMPlexSetClosurePermutationTensor: add support for vertex-only charts

This occurs for non-interpolated meshes, but is also the default for
coordinate DMs (sans high order geometry), for example. If the chart
does not match vertices only, we assume that the mesh is interpolated
and the chart covers all points.

show more ...


# 6210d0f3 10-Jul-2019 Stefano Zampini <stefano.zampini@gmail.com>

DMPlexCheckGeometry: skip hybrid cells


# fe1cc32d 10-Jul-2019 Stefano Zampini <stefano.zampini@gmail.com>

DMPlexView_ASCII_LATEX: add label filtering to show submeshes

this is very useful to debug wrong orientations etc


# 009f5131 07-Jul-2019 Barry Smith <bsmith@mcs.anl.gov>

Merge branch 'maint'


# e391d5d2 07-Jul-2019 Barry Smith <bsmith@mcs.anl.gov>

Merge branch 'haplav/revert-remove-remnants-of-nonexisting-dmplexrestores' into maint


# 922102d1 04-Jul-2019 Vaclav Hapla <vaclav.hapla@erdw.ethz.ch>

improve manpages of DMPlexRestore{Cone,ConeOrientation,Support}


# 3b12b3d8 04-Jul-2019 Vaclav Hapla <vaclav.hapla@erdw.ethz.ch>

Revert "remove remnants of non-existing DMPlexRestore{Cone,ConeOrientation,Support}"

This reverts commit 6d563f2afc7bcefff9dc7869193a6debf1d639a5.


# 57a5760d 02-Jul-2019 William Gropp <wgropp@illinois.edu>

Merge from doc-fixes branch


# 6707880c 30-Jun-2019 Karl Rupp <me@karlrupp.net>

Merge branch 'BarryFSmith/add-information-on-running-usrbinbash-lo-1561921668145' [PR #1831]

* BarryFSmith/add-information-on-running-usrbinbash-lo-1561921668145:
Add information on running /usr/bin

Merge branch 'BarryFSmith/add-information-on-running-usrbinbash-lo-1561921668145' [PR #1831]

* BarryFSmith/add-information-on-running-usrbinbash-lo-1561921668145:
Add information on running /usr/bin/bash --login after entering mintty.exe shell.

show more ...


# a2b725a8 27-Jun-2019 William Gropp <wgropp@illinois.edu>

Fixes for doctext update


# b0b6804e 27-Jun-2019 Václav Hapla <vaclav.hapla@erdw.ethz.ch>

Merged in haplav/remove-remnants-of-nonexisting-dmplexrestores (pull request #1822)

remove remnants of non-existing DMPlexRestore{Cone,ConeOrientation,Support}


# 6d563f2a 26-Jun-2019 Václav Hapla <vaclav.hapla@erdw.ethz.ch>

remove remnants of non-existing DMPlexRestore{Cone,ConeOrientation,Support}


# 89583661 21-Jun-2019 Satish Balay <balay@mcs.anl.gov>

Merge remote-tracking branch 'origin/barry/add-petscarrayxxx-ops' [PR #1771]


# 580bdb30 07-Jun-2019 Barry Smith <bsmith@mcs.anl.gov>

Add PetscArraycmp(), PetscArraycpy(), PetscArrayzero(), PetscArraymove(), update code to use new forms

Replace a couple multi-mallocs with a single malloc
Replace backwards loops in MatSetValues_*()

Add PetscArraycmp(), PetscArraycpy(), PetscArrayzero(), PetscArraymove(), update code to use new forms

Replace a couple multi-mallocs with a single malloc
Replace backwards loops in MatSetValues_*() with PetscArraymove()

Commit-type: style-fix, 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>


# 6dd80730 20-May-2019 Barry Smith <bsmith@mcs.anl.gov>

Fix http -> https for Hass diagram URL and remove stray a inside (

Commit-type: documentation
Reported-by: Junchao Zhang <jczhang@mcs.anl.gov>


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


# b67a4fc1 18-May-2019 Stefano Zampini <stefano.zampini@gmail.com>

Merged in stefano_zampini/dmplex-speedup (pull request #1665)

Last speedups to the PLEX code with large number of MPI processes

Approved-by: Matthew Knepley <knepley@gmail.com>


# 30b0ce1b 12-May-2019 Stefano Zampini <stefano.zampini@gmail.com>

DMPLEX: add few missing events to help optimizing the code


# c1c736b9 14-May-2019 Lisandro Dalcin <dalcinl@gmail.com>

Merged in dalcinl/plexpartitioner-parmetis (pull request #1648)

Reproducible ParMETIS & DMPlex repartition

Approved-by: Matthew Knepley <knepley@gmail.com>
Approved-by: BarryFSmith <bsmith@mcs.anl.

Merged in dalcinl/plexpartitioner-parmetis (pull request #1648)

Reproducible ParMETIS & DMPlex repartition

Approved-by: Matthew Knepley <knepley@gmail.com>
Approved-by: BarryFSmith <bsmith@mcs.anl.gov>

show more ...


# 0f7d6e4a 05-May-2019 Stefano Zampini <stefano.zampini@gmail.com>

DMPLEX: add support to compute some statistics for parallel meshes

compute edgeCut, node-aware edgeCut and owned cell balance


# 5065da2f 13-May-2019 Barry Smith <bsmith@mcs.anl.gov>

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


1...<<21222324252627282930>>...72