History log of /petsc/include/petscmath.h (Results 51 – 75 of 590)
Revision Date Author Comments
# 995ec06f 03-Feb-2023 Satish Balay <balay@mcs.anl.gov>

Merge branch 'stefanozampini/nvhpc-and-clang-cuda' into 'main'

Clang support for CUDA

See merge request petsc/petsc!6015


# a2498233 29-Nov-2022 Pierre Jolivet <pierre@joliv.et>

Add PETSC_SKIP_REAL___[FP16,FLOAT128]


# 7c7da2b8 23-Jan-2023 Satish Balay <balay@mcs.anl.gov>

Merge branch 'jacobf/2023-01-13/modernize-cleanup-petscsys-h' into 'main'

Modernize and clean up petscsys.h

See merge request petsc/petsc!5976


# bf491261 17-Jan-2023 Jacob Faibussowitsch <jacob.fai@gmail.com>

Move *_INT_MAX and *_INT_MIN to petscsystypes.h where the types themselves are defined


# a207d08e 30-Oct-2022 Satish Balay <balay@mcs.anl.gov>

Merge remote-tracking branch 'origin/release'


# ed31fb71 30-Oct-2022 Satish Balay <balay@mcs.anl.gov>

Merge branch 'jose/codespell-typos' into 'release'

A few more codespell fixes

See merge request petsc/petsc!5786


# d5b43468 29-Oct-2022 Jose E. Roman <jroman@dsic.upv.es>

A few more codespell fixes


# 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


# 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


# 5f2abdd3 25-Aug-2022 Satish Balay <balay@mcs.anl.gov>

Merge branch 'jolivet/feature-ksphpddm-fp16-ci' into 'main'

Partial support for __fp16 in KSPHPDDM

See merge request petsc/petsc!5543


# 9e517322 21-Aug-2022 Pierre Jolivet <pierre@joliv.et>

Sys: expose MPIU___FP16 to users


# 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


# f646d225 18-Aug-2022 Satish Balay <balay@mcs.anl.gov>

Merge branch 'jolivet/feature-expose-mpiu___float128' into 'main'

Sys: expose MPIU_SUM___FLOAT128 to users

See merge request petsc/petsc!5536


# 613bf2b2 17-Aug-2022 Pierre Jolivet <pierre@joliv.et>

Sys: expose MPIU_SUM___FLOAT128 to users


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


# 22760276 07-Mar-2022 Satish Balay <balay@mcs.anl.gov>

Merge branch 'knepley/feature-swarm-ks-test' into 'main'

Test Swarm particle distributions

See merge request petsc/petsc!4898


12345678910>>...24