History log of /petsc/include/petscsf.h (Results 26 – 50 of 215)
Revision Date Author Comments
# fbc7033f 30-Dec-2022 Jed Brown <jed@jedbrown.org>

PetscSFMerge: merge two SFs with possibly overlapping leaves


# 1081f165 09-Nov-2022 Satish Balay <balay@mcs.anl.gov>

Merge branch 'haplav/petscsfconcatenate-add-global-renumbering' into 'main'

PetscSFConcatenate: add global rootmode

See merge request petsc/petsc!5726


# 1f40158d 09-May-2022 Vaclav Hapla <vaclav.hapla@erdw.ethz.ch>

PetscSFConcatenate: add global rootmode


# 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


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

Transform all header-guards into ifndefs to make clang-format ignore them for preprocessor indentation


# 5ea1ee88 16-Sep-2022 Satish Balay <balay@mcs.anl.gov>

Merge branch 'haplav/add-petscsfgetgraphlayout' into 'main'

add PetscSFGetGraphLayout()

See merge request petsc/petsc!5629


# eb58282a 16-Sep-2022 Vaclav Hapla <vaclav.hapla@erdw.ethz.ch>

add PetscSFGetGraphLayout(),

enable fortran interface for PetscSFSetGraphLayout(),
reformat zsfutilsf.c


# 3822b603 15-Sep-2022 Satish Balay <balay@mcs.anl.gov>

Merge branch 'jacobf/2022-09-14/mpi-datatype-type-checking' into 'main'

Re-enable MPI_Datatype compiler type checking attributes

See merge request petsc/petsc!5636


# 93d501b3 14-Sep-2022 Jacob Faibussowitsch <jacob.fai@gmail.com>

Re-enable MPI_Datatype compiler type checking attributes, and add them to a few more places


# 1173efad 13-Sep-2022 Satish Balay <balay@mcs.anl.gov>

Merge branch 'haplav/remove-petsclayoutscreatesf' into 'main'

remove deprecated PetscLayoutsCreateSF() -> PetscSFCreateFromLayouts()

See merge request petsc/petsc!5624


# 4c0930d8 04-Apr-2022 Vaclav Hapla <vaclav.hapla@erdw.ethz.ch>

remove deprecated PetscLayoutsCreateSF() -> PetscSFCreateFromLayouts()


# 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


# 32105407 17-Aug-2022 Satish Balay <balay@mcs.anl.gov>

Merge branch 'barry/2022-08-13/fix-man-include' into 'main'

Fix up manual pages in include/ including adding tick marks

See merge request petsc/petsc!5528


# 87497f52 14-Aug-2022 Barry Smith <bsmith@mcs.anl.gov>

Fix up manual pages in include/ including adding tick marks

Commit-type: documentation
/spend 4h


# 6ffe77ea 12-May-2022 Satish Balay <balay@mcs.anl.gov>

Merge branch 'barry/2022-05-03/cleanup-makefiles' into 'main'

remove unneeded stuff from makefiles

See merge request petsc/petsc!5211


# ac09b921 05-May-2022 Barry Smith <bsmith@mcs.anl.gov>

Get values of makefile SOURCE etc from the file system instead of makefiles

Use SUBMANSEC from include files for manual sections instead of the makefile

Unfortunately this has to be one large commi

Get values of makefile SOURCE etc from the file system instead of makefiles

Use SUBMANSEC from include files for manual sections instead of the makefile

Unfortunately this has to be one large commit since the changes all have to be done at once

Commit-type: docs
/spend 10m

show more ...


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


# 3b459f25 18-Mar-2022 Satish Balay <balay@mcs.anl.gov>

Merge branch 'haplav/feature-petscsfconcatenate' into 'main'

add PetscSFConcatenate()

See merge request petsc/petsc!4876


# 157edd7a 17-Feb-2022 Vaclav Hapla <vaclav.hapla@erdw.ethz.ch>

add PetscSFConcatenate()


# f5213b1d 16-Mar-2022 Satish Balay <balay@mcs.anl.gov>

Merge branch 'haplav/sf-control-multileaves' into 'main'

SF: check for multileaves

See merge request petsc/petsc!4888


# db2b9530 24-Feb-2022 Vaclav Hapla <vaclav.hapla@erdw.ethz.ch>

PetscSFSetGraph: sort ilocal, check for duplicates


# 1241a243 13-Feb-2022 Satish Balay <balay@mcs.anl.gov>

Merge branch 'jacobf/2022-01-05/c99' into 'main'

Feature: C99 and C++11

See merge request petsc/petsc!4700


123456789