History log of /petsc/src/dm/impls/plex/plexceed.c (Results 26 – 50 of 71)
Revision Date Author Comments
# 60225df5 12-Jul-2023 Jacob Faibussowitsch <jacob.fai@gmail.com>

Lint apply: dm


# 8c38e02a 03-Jun-2023 Satish Balay <balay@mcs.anl.gov>

Merge remote-tracking branch 'origin/release'


# 4ff55f77 01-Jun-2023 Satish Balay <balay@mcs.anl.gov>

Merge branch 'barry/2023-05-27/improve-tutorials/release' into 'release'

Minor cleanup of website tutorials

See merge request petsc/petsc!6520


# 1cc06b55 27-May-2023 Barry Smith <bsmith@mcs.anl.gov>

change to consistent use of ch_xxx for chapter names in the docs, instead of a mix of ch_xx and chapter_xx


# a403f267 10-Apr-2023 Satish Balay <balay@mcs.anl.gov>

Merge branch 'jed/dmplex-events' into 'main'

DM: add events for plex creation, projection, transforms, offsets

See merge request petsc/petsc!6301


# 708be2fd 08-Apr-2023 Jed Brown <jed@jedbrown.org>

DM: add events for plex creation, projection, transforms, offsets

These often account for a lot of time, but were not captured in any
events, leading to mystery time in the overall log_view.


# b6b5caf9 27-Mar-2023 Satish Balay <balay@mcs.anl.gov>

Merge branch 'knepley/feature-hybrid-mass' into 'main'

Plex: Can now specify a mass weighting to hybrid residual

See merge request petsc/petsc!6210


# 07218a29 17-Mar-2023 Matthew G. Knepley <knepley@gmail.com>

Plex: Can now specify a mass weighting to hybrid residual
- This is not a complete fix. We need to match up quadrature points across the interface.


# 51eee583 16-Mar-2023 Satish Balay <balay@mcs.anl.gov>

Merge branch 'knepley/feature-ceed-fv' into 'main'

PetscFV: Adding CEED support

See merge request petsc/petsc!6175


# 52e7713a 15-Mar-2023 Matthew G. Knepley <knepley@gmail.com>

PetscFV: Adding CEED support
- Add DMPlexGetLocalOffsetsSupport()


# 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


# 3ba16761 10-Dec-2022 Jacob Faibussowitsch <jacob.fai@gmail.com>

Make PetscErrorCode a non-discardable enum


# 114237d5 09-Jan-2023 Satish Balay <balay@mcs.anl.gov>

Merge branch 'jed/dm-plex-box-sf' into 'main'

DM: parallel periodic box mesh with Z-order

See merge request petsc/petsc!5411


# 21066fe8 07-Jan-2023 Jed Brown <jed@jedbrown.org>

DM libCEED: fix analyzer lints


# 990be990 23-Nov-2022 Satish Balay <balay@mcs.anl.gov>

Merge remote-tracking branch 'origin/release'


# d9370626 21-Nov-2022 Satish Balay <balay@mcs.anl.gov>

Merge branch 'barry/2022-11-15/fix-more-dm-man-pages/release' into 'release'

fix more un-updated DMPLEX manual pages

See merge request petsc/petsc!5839


# a1cb98fa 16-Nov-2022 Barry Smith <bsmith@mcs.anl.gov>

fix more un-updated DMPLEX manual pages

Commit-type: documentation


# 061e922f 22-Sep-2022 Satish Balay <balay@mcs.anl.gov>

Merge branch 'jacobf/2022-09-21/2-bike-2-shed' into 'main'

Feature: Bicycle Storage Facility 2

See merge request petsc/petsc!5661


# d71ae5a4 21-Sep-2022 Jacob Faibussowitsch <jacob.fai@gmail.com>

source code format changes due to .clang-format changes


# 58d68138 23-Aug-2022 Satish Balay <balay@mcs.anl.gov>

Merge branch 'barry/2022-08-21/clang-format-source' into 'main'

format repository with clang-format

See merge request petsc/petsc!5541


# 9371c9d4 22-Aug-2022 Satish Balay <balay@mcs.anl.gov>

clang-format: convert PETSc sources to comply with clang-format


# 91e96481 28-Jun-2022 Satish Balay <balay@mcs.anl.gov>

Merge branch 'knepley/feature-plex-periodic-separation' into 'main'

Fix periodicity for higher order coordinates

See merge request petsc/petsc!5333


# 7c48043b 27-Jun-2022 Matthew G. Knepley <knepley@gmail.com>

DM+FE: Create DG coordinate DS and add PetscFECreateFromSpaces()
- Refactor FE creation
- Create DS for DG coordinates
- Error on DG face coordinates


# 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


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


123