History log of /libCEED/doc/ (Results 151 – 175 of 313)
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
9a1d351130-Sep-2021 Jeremy L Thompson <jeremy@jeremylt.org>

minor - remove deprecated headers

dcc1e3ec30-Sep-2021 Jeremy L Thompson <jeremy@jeremylt.org>

occa - add warning, OCCA backend is experimental

4db537f916-Sep-2021 Jeremy L Thompson <jeremy@jeremylt.org>

op - move CeedOperatorCheckReady to public API

70a7ffb314-Sep-2021 Jeremy L Thompson <jeremy@jeremylt.org>

op - add CeedOperatorLinearAssembleQFunctionBuildOrUpdate to reduce kernel calls in diagonal/full/fdm assembly

ce4822f614-Sep-2021 Jeremy L Thompson <jeremy@jeremylt.org>

doc - update release notes

Co-authored-by: Jed Brown <jed@jedbrown.org>

f479eb2309-Sep-2021 Jeremy L Thompson <jeremy@jeremylt.org>

doc - add single precision release note

f04ea55209-Sep-2021 Jeremy L Thompson <jeremy@jeremylt.org>

qf/op - make immutability conditions explicit

43bbe13809-Sep-2021 Jeremy L Thompson <jeremy@jeremylt.org>

interface - promote field getters to public API

7e7773b509-Sep-2021 Jeremy L Thompson <jeremy@jeremylt.org>

interface - refactor *GetFields to include number of fields


/libCEED/backends/blocked/ceed-blocked-operator.c
/libCEED/backends/cuda-gen/ceed-cuda-gen-operator-build.cpp
/libCEED/backends/cuda-gen/ceed-cuda-gen-operator.c
/libCEED/backends/cuda/ceed-cuda-operator.c
/libCEED/backends/cuda/ceed-cuda-qfunction-load.cpp
/libCEED/backends/cuda/ceed-cuda-qfunction.c
/libCEED/backends/cuda/ceed-cuda.c
/libCEED/backends/cuda/ceed-cuda.h
/libCEED/backends/hip-gen/ceed-hip-gen-operator-build.cpp
/libCEED/backends/hip-gen/ceed-hip-gen-operator.c
/libCEED/backends/hip/ceed-hip-operator.c
/libCEED/backends/hip/ceed-hip-qfunction-load.cpp
/libCEED/backends/occa/ceed-occa-basis.cpp
/libCEED/backends/occa/ceed-occa-basis.hpp
/libCEED/backends/occa/ceed-occa-elem-restriction.cpp
/libCEED/backends/occa/ceed-occa-elem-restriction.hpp
/libCEED/backends/occa/ceed-occa-operator-args.cpp
/libCEED/backends/occa/ceed-occa-operator.cpp
/libCEED/backends/occa/ceed-occa-operator.hpp
/libCEED/backends/occa/ceed-occa-qfunction-args.cpp
/libCEED/backends/occa/ceed-occa-qfunction.cpp
/libCEED/backends/occa/ceed-occa-qfunction.hpp
/libCEED/backends/occa/ceed-occa-qfunctioncontext.cpp
/libCEED/backends/occa/ceed-occa-qfunctioncontext.hpp
/libCEED/backends/occa/ceed-occa-vector.cpp
/libCEED/backends/occa/ceed-occa-vector.hpp
/libCEED/backends/opt/ceed-opt-operator.c
/libCEED/backends/ref/ceed-ref-operator.c
sphinx/source/releasenotes.md
/libCEED/include/ceed/backend.h
/libCEED/interface/ceed-operator.c
/libCEED/interface/ceed-preconditioning.c
/libCEED/interface/ceed-qfunction.c
/libCEED/julia/LibCEED.jl/src/QFunction.jl
/libCEED/julia/LibCEED.jl/src/generated/libceed_bindings.jl
80a9ef0502-Sep-2021 Natalie Beams <246972+nbeams@users.noreply.github.com>

Allow CeedScalar to be single precision (#788)

One can modify `ceed.h` to include `ceed-f32.h` and then use single precision. This is tested for C in CI and has been tested by developers with Rust,

Allow CeedScalar to be single precision (#788)

One can modify `ceed.h` to include `ceed-f32.h` and then use single precision. This is tested for C in CI and has been tested by developers with Rust, Julia, and Python. This interface is evolving and should be considered experimental at this time (thus lack of automated build support).

* Introduce CeedScalarType enum

* WIP changes to allow different definitions of CeedScalar

* Introduce new header files for float and double

* Only use avx tensor contract and MAGMA non-tensor basis if CeedScalar is double

* WIP changes to allow CeedScalar to be float

* WIP start trying to adjust test tolerances for float or double

* fix typos in comments

* install ceed-f32/64 headers

* Fix missing casts for hipMAGMA element restrictions

* make CeedQFunctionContextGetContextSize available for Python bindings

* Changes to Python bindings to allow CeedScalar to be float

* WIP adjust Python tests for float or double

* make style

* remove QFunctionContextGetContextSize from backend header

* Use quotes instead of <> in include statement

* Remove unncessary includes

* Update tolerances for tests

* [Julia] allow CeedScalar to be Float32

* [Julia] Use Preferences instead of custom build configuration

# Conflicts:
# julia/LibCEED.jl/src/C.jl

* [Makefile] Change definition of CC_VENDOR so it works with cross-compilation

* [Julia] Use Preferences in CI

# Conflicts:
# .github/workflows/julia-test-with-style.yml

* [Julia] Update docs about preferences

* [Julia] Add test/Project.toml workaround for Preferences

* Add CeedGetScalarType to get the type of CeedScalar at runtime

* [Julia] Move functions from Ceed.jl to LibCEED.jl

* [Julia] Add support for getting library path and scalar type at runtime

* [Julia] Minor change to checking if CUDA is loaded

* [Julia] Check correct CeedScalar types in basis functions

* [Julia] Fix tests comparing with output file

* [Julia] Change devtests to use CeedScalar instead of Float64

* Update test 402 so context will be same size in double or float

* Update tolerances for ceed examples

* [Julia] CUDA fixes

* remove unused variable in t208

* SchurDecomposition: do not compute tau on final iteration

* Update tolerances for some basis tests (for single precision)

* Make style

* Python style fixes for basis test

* Add single precision output for t300 and t320 and adjust checks; skip t541 in single

* Add LCOV exclusions after moving to new line

* fix spacing

* Python: make CEED_EPSILON available as libceed.EPSILON

* Python: optional parameter to specify different output file for test comparison

* Python: update tests' use of EPSILON and change test_300 output file for single precision

* Python: add convenience function for getting dtype corresponding to CeedScalar

* rust - add single precision support

* [Julia] Fall back on Float64 if CeedGetScalarType is not available

* [Julia] style

* Adjust tolerance for t301

* xsmm - add single precision support

* avx - add single precision support

* Add initial single precision support for MAGMA non-tensor basis

* Skip t300 and t320 in single precision; revert Python t300 changes

* Revert output changes for t300 and t320 in junit

* [Julia] Changes to autogenerated bindings for mixed precision

* [Julia] style

* [Julia] Check scalar type when changing libceed library path

The check is also performed when the package is loaded. This prevents having to
restart the Julia session twice

* [Julia] Require JLLWrappers version 1.3

This is needed to use Preferences to change the library path

* Add documentation page for precision development

Co-authored-by: Will Pazner <will.e.p@gmail.com>

* Cleanup from merge: remove old README

* Return CEED_ALIGN to backend.h

* Make Fortran compiler (FC) optional; empty skips Fortran tests

Use in Python and Rust builds, which may not have a Fortran compiler
installed and thus would produce confusing output.

* Add single precision CI test for Noether

Co-authored-by: Jeremy L Thompson <jeremy@jeremylt.org>

Co-authored-by: Will Pazner <will.e.p@gmail.com>
Co-authored-by: Jeremy L Thompson <jeremy@jeremylt.org>
Co-authored-by: Jed Brown <jed@jedbrown.org>

show more ...


/libCEED/.gitlab-ci.yml
/libCEED/Makefile
/libCEED/backends/avx/ceed-avx-blocked.c
/libCEED/backends/avx/ceed-avx-serial.c
/libCEED/backends/avx/ceed-avx-tensor-f32.c
/libCEED/backends/avx/ceed-avx-tensor-f64.c
/libCEED/backends/avx/ceed-avx.h
/libCEED/backends/cuda-gen/ceed-cuda-gen-operator-build.cpp
/libCEED/backends/cuda-shared/ceed-cuda-shared-basis.c
/libCEED/backends/cuda-shared/kernels/cuda-shared-basis.cu
/libCEED/backends/cuda/ceed-cuda-basis.c
/libCEED/backends/cuda/ceed-cuda-vector.c
/libCEED/backends/cuda/ceed-cuda.c
/libCEED/backends/hip-gen/ceed-hip-gen-operator-build.cpp
/libCEED/backends/hip-shared/ceed-hip-shared-basis.c
/libCEED/backends/hip/ceed-hip-basis.c
/libCEED/backends/hip/ceed-hip-compile.cpp
/libCEED/backends/hip/ceed-hip-vector.c
/libCEED/backends/magma/ceed-magma-basis.c
/libCEED/backends/magma/ceed-magma.h
/libCEED/backends/magma/kernels/common/elem_restriction.h
/libCEED/backends/magma/kernels/common/interp_device.h
/libCEED/backends/magma/kernels/common/magma_common_device.h
/libCEED/backends/magma/kernels/cuda/magma_drestrictApply.cu
/libCEED/backends/magma/kernels/hip/magma_drestrictApply.hip.cpp
/libCEED/backends/magma/magma_sgemm_nontensor.c
/libCEED/backends/xsmm/ceed-xsmm-blocked.c
/libCEED/backends/xsmm/ceed-xsmm-serial.c
/libCEED/backends/xsmm/ceed-xsmm-tensor_f32.c
/libCEED/backends/xsmm/ceed-xsmm-tensor_f64.c
/libCEED/backends/xsmm/ceed-xsmm.h
sphinx/source/index.md
sphinx/source/precision.md
/libCEED/examples/ceed/ex1-volume.c
/libCEED/examples/ceed/ex2-surface.c
/libCEED/examples/rust/ex1-volume/src/main.rs
/libCEED/examples/rust/ex1-volume/src/transform.rs
/libCEED/examples/rust/ex2-surface/src/main.rs
/libCEED/examples/rust/ex2-surface/src/transform.rs
/libCEED/examples/rust/mesh/src/lib.rs
/libCEED/include/ceed/backend.h
/libCEED/include/ceed/ceed-f32.h
/libCEED/include/ceed/ceed-f64.h
/libCEED/include/ceed/ceed.h
/libCEED/include/ceed/fortran.h
/libCEED/interface/ceed-basis.c
/libCEED/interface/ceed-qfunctioncontext.c
/libCEED/interface/ceed.c
/libCEED/julia/LibCEED.jl/Project.toml
/libCEED/julia/LibCEED.jl/gen/generator.toml
/libCEED/julia/LibCEED.jl/src/Basis.jl
/libCEED/julia/LibCEED.jl/src/C.jl
/libCEED/julia/LibCEED.jl/src/Cuda.jl
/libCEED/julia/LibCEED.jl/src/Globals.jl
/libCEED/julia/LibCEED.jl/src/LibCEED.jl
/libCEED/julia/LibCEED.jl/src/generated/libceed_bindings.jl
/libCEED/julia/LibCEED.jl/test/output/Float32/b1.out
/libCEED/julia/LibCEED.jl/test/output/Float32/b2.out
/libCEED/julia/LibCEED.jl/test/output/Float32/b3.out
/libCEED/julia/LibCEED.jl/test/output/Float64/b1.out
/libCEED/julia/LibCEED.jl/test/output/Float64/b2.out
/libCEED/julia/LibCEED.jl/test/output/Float64/b3.out
/libCEED/julia/LibCEED.jl/test/runtests.jl
/libCEED/python/__init__.py
/libCEED/python/build_ceed_cffi.py
/libCEED/python/ceed.py
/libCEED/python/ceed_basis.py
/libCEED/python/ceed_constants.py
/libCEED/python/ceed_qfunctioncontext.py
/libCEED/python/ceed_vector.py
/libCEED/python/tests/buildmats.py
/libCEED/python/tests/libceed-qfunctions.c
/libCEED/python/tests/test-1-vector.py
/libCEED/python/tests/test-2-elemrestriction.py
/libCEED/python/tests/test-3-basis.py
/libCEED/python/tests/test-4-qfunction.py
/libCEED/python/tests/test-5-operator.py
/libCEED/rust/libceed-sys/build.rs
/libCEED/rust/libceed/src/basis.rs
/libCEED/rust/libceed/src/elem_restriction.rs
/libCEED/rust/libceed/src/lib.rs
/libCEED/rust/libceed/src/operator.rs
/libCEED/rust/libceed/src/qfunction.rs
/libCEED/rust/libceed/src/vector.rs
/libCEED/setup.py
/libCEED/tests/junit.py
/libCEED/tests/t100-vector.c
/libCEED/tests/t101-vector.c
/libCEED/tests/t103-vector.c
/libCEED/tests/t104-vector.c
/libCEED/tests/t105-vector.c
/libCEED/tests/t106-vector.c
/libCEED/tests/t108-vector.c
/libCEED/tests/t109-vector.c
/libCEED/tests/t114-vector.c
/libCEED/tests/t119-vector.c
/libCEED/tests/t200-elemrestriction.c
/libCEED/tests/t201-elemrestriction.c
/libCEED/tests/t204-elemrestriction.c
/libCEED/tests/t205-elemrestriction.c
/libCEED/tests/t206-elemrestriction.c
/libCEED/tests/t207-elemrestriction.c
/libCEED/tests/t209-elemrestriction.c
/libCEED/tests/t300-basis.c
/libCEED/tests/t301-basis.c
/libCEED/tests/t303-basis.c
/libCEED/tests/t304-basis.c
/libCEED/tests/t305-basis.c
/libCEED/tests/t310-basis.c
/libCEED/tests/t311-basis.c
/libCEED/tests/t312-basis.c
/libCEED/tests/t314-basis.c
/libCEED/tests/t315-basis.c
/libCEED/tests/t316-basis.c
/libCEED/tests/t317-basis.c
/libCEED/tests/t320-basis.c
/libCEED/tests/t321-basis.c
/libCEED/tests/t322-basis.c
/libCEED/tests/t323-basis.c
/libCEED/tests/t324-basis.c
/libCEED/tests/t325-basis.c
/libCEED/tests/t401-qfunction.c
/libCEED/tests/t402-qfunction.c
/libCEED/tests/t501-operator.c
/libCEED/tests/t502-operator.c
/libCEED/tests/t503-operator.c
/libCEED/tests/t505-operator.c
/libCEED/tests/t506-operator.c
/libCEED/tests/t507-operator.c
/libCEED/tests/t511-operator.c
/libCEED/tests/t521-operator.c
/libCEED/tests/t522-operator.c
/libCEED/tests/t524-operator.c
/libCEED/tests/t530-operator.c
/libCEED/tests/t531-operator.c
/libCEED/tests/t532-operator.c
/libCEED/tests/t533-operator.c
/libCEED/tests/t534-operator.c
/libCEED/tests/t535-operator.c
/libCEED/tests/t536-operator.c
/libCEED/tests/t537-operator.c
/libCEED/tests/t538-operator.c
/libCEED/tests/t540-operator.c
/libCEED/tests/t541-operator.c
/libCEED/tests/t550-operator.c
/libCEED/tests/t551-operator.c
/libCEED/tests/t552-operator.c
/libCEED/tests/t553-operator.c
/libCEED/tests/t560-operator.c
/libCEED/tests/t561-operator.c
/libCEED/tests/t562-operator.c
/libCEED/tests/t563-operator.c
/libCEED/tests/t564-operator.c
/libCEED/tests/t565-operator.c
/libCEED/tests/tap.sh
ae718e2f02-Sep-2021 Jed Brown <jed@jedbrown.org>

doc: add note on restrict qualified semantics for QFunctions


/libCEED/.github/workflows/julia-test-with-style.yml
/libCEED/.gitlab-ci.yml
/libCEED/Makefile
/libCEED/README.md
/libCEED/backends/cuda/ceed-cuda-basis.c
sphinx/source/libCEEDdev.md
/libCEED/examples/fluids/navierstokes.c
/libCEED/examples/fluids/navierstokes.h
/libCEED/examples/fluids/problems/advection.c
/libCEED/examples/fluids/problems/advection2d.c
/libCEED/examples/fluids/problems/densitycurrent.c
/libCEED/examples/fluids/problems/eulervortex.c
/libCEED/examples/fluids/src/setupdm.c
/libCEED/examples/fluids/src/setuplibceed.c
/libCEED/examples/petsc/bpsraw.c
/libCEED/examples/solids/Makefile
/libCEED/examples/solids/elasticity.c
/libCEED/examples/solids/elasticity.h
/libCEED/examples/solids/include/boundary.h
/libCEED/examples/solids/include/cl-options.h
/libCEED/examples/solids/include/matops.h
/libCEED/examples/solids/include/misc.h
/libCEED/examples/solids/include/petsc-macros.h
/libCEED/examples/solids/include/setup-dm.h
/libCEED/examples/solids/include/setup-libceed.h
/libCEED/examples/solids/include/structs.h
/libCEED/examples/solids/include/utils.h
/libCEED/examples/solids/index.md
/libCEED/examples/solids/problems/cl-problems.h
/libCEED/examples/solids/problems/finite-strain-mooney-rivlin-initial-1.c
/libCEED/examples/solids/problems/finite-strain-neo-hookean-current-1.c
/libCEED/examples/solids/problems/finite-strain-neo-hookean-current-2.c
/libCEED/examples/solids/problems/finite-strain-neo-hookean-initial-1.c
/libCEED/examples/solids/problems/finite-strain-neo-hookean-initial-2.c
/libCEED/examples/solids/problems/linear.c
/libCEED/examples/solids/problems/mooney-rivlin.c
/libCEED/examples/solids/problems/mooney-rivlin.h
/libCEED/examples/solids/problems/neo-hookean.c
/libCEED/examples/solids/problems/neo-hookean.h
/libCEED/examples/solids/problems/problems.c
/libCEED/examples/solids/problems/problems.h
/libCEED/examples/solids/problems/small-strain-neo-hookean.c
/libCEED/examples/solids/qfunctions/common.h
/libCEED/examples/solids/qfunctions/constant-force.h
/libCEED/examples/solids/qfunctions/finite-strain-mooney-rivlin-initial-1.h
/libCEED/examples/solids/qfunctions/finite-strain-neo-hookean-current-1.h
/libCEED/examples/solids/qfunctions/finite-strain-neo-hookean-current-2.h
/libCEED/examples/solids/qfunctions/finite-strain-neo-hookean-initial-1.h
/libCEED/examples/solids/qfunctions/finite-strain-neo-hookean-initial-2.h
/libCEED/examples/solids/qfunctions/linear.h
/libCEED/examples/solids/qfunctions/manufactured-force.h
/libCEED/examples/solids/qfunctions/manufactured-true.h
/libCEED/examples/solids/qfunctions/small-strain-neo-hookean.h
/libCEED/examples/solids/qfunctions/traction-boundary.h
/libCEED/examples/solids/src/boundary.c
/libCEED/examples/solids/src/cl-options.c
/libCEED/examples/solids/src/matops.c
/libCEED/examples/solids/src/misc.c
/libCEED/examples/solids/src/setup-dm.c
/libCEED/examples/solids/src/setup-libceed.c
/libCEED/examples/solids/tests-output/MR-strain.csv
/libCEED/examples/solids/tests-output/MR-strain1.csv
/libCEED/examples/solids/tests-output/NH-strain.csv
/libCEED/include/ceed/backend.h
/libCEED/interface/ceed-basis.c
/libCEED/interface/ceed-fortran.c
/libCEED/interface/ceed-vector.c
/libCEED/julia/LibCEED.jl/.gitignore
/libCEED/julia/LibCEED.jl/.style/ceed_style.jl
/libCEED/julia/LibCEED.jl/Project.toml
/libCEED/julia/LibCEED.jl/README.md
/libCEED/julia/LibCEED.jl/docs/make.jl
/libCEED/julia/LibCEED.jl/docs/src/Ceed.md
/libCEED/julia/LibCEED.jl/docs/src/LibCEED.md
/libCEED/julia/LibCEED.jl/docs/src/index.md
/libCEED/julia/LibCEED.jl/gen/Project.toml
/libCEED/julia/LibCEED.jl/gen/generator.jl
/libCEED/julia/LibCEED.jl/gen/generator.toml
/libCEED/julia/LibCEED.jl/gen/prologue.jl
/libCEED/julia/LibCEED.jl/src/C.jl
/libCEED/julia/LibCEED.jl/src/Ceed.jl
/libCEED/julia/LibCEED.jl/src/Cuda.jl
/libCEED/julia/LibCEED.jl/src/LibCEED.jl
/libCEED/julia/LibCEED.jl/src/QFunction.jl
/libCEED/julia/LibCEED.jl/src/UserQFunction.jl
/libCEED/julia/LibCEED.jl/src/generated/libceed_bindings.jl
/libCEED/julia/LibCEED.jl/test/Project.toml
/libCEED/julia/LibCEED.jl/test/rundevtests.jl
/libCEED/julia/LibCEED.jl/test/runtests.jl
/libCEED/python/build_ceed_cffi.py
/libCEED/python/ceed_elemrestriction.py
/libCEED/python/tests/test-2-elemrestriction.py
/libCEED/python/tests/test-3-basis.py
/libCEED/tests/junit.py
/libCEED/tests/t201-elemrestriction-f.f90
/libCEED/tests/t201-elemrestriction.c
/libCEED/tests/t202-elemrestriction-f.f90
/libCEED/tests/t202-elemrestriction.c
/libCEED/tests/t203-elemrestriction.c
/libCEED/tests/t208-elemrestriction-f.f90
/libCEED/tests/t208-elemrestriction.c
/libCEED/tests/t213-elemrestriction.c
/libCEED/tests/t301-basis-f.f90
/libCEED/tests/t301-basis.c
/libCEED/tests/t302-basis-f.f90
/libCEED/tests/t302-basis.c
/libCEED/tests/t304-basis-f.f90
/libCEED/tests/t305-basis-f.f90
2d2e582712-Aug-2021 Jed Brown <jed@jedbrown.org>

doc: provide altair-plot.css for ReadTheDocs

b907a9e412-Aug-2021 Jed Brown <jed@jedbrown.org>

doc: skip CeedPragmaOptimizeOn/Off at Doxygen level

Sphinx does not understand the push/pop model, and this leads to
warnings. It's an idiosyncrasy that I don't think needs to be part of
the Sphinx

doc: skip CeedPragmaOptimizeOn/Off at Doxygen level

Sphinx does not understand the push/pop model, and this leads to
warnings. It's an idiosyncrasy that I don't think needs to be part of
the Sphinx site.

show more ...

e8aecbc803-Aug-2021 Jed Brown <jed@jedbrown.org>

bib: add DOI

8791656f03-Aug-2021 Jed Brown <jed@jedbrown.org>

doc: move from {math:numref} to {eq} (no visual change)

68e843ee03-Aug-2021 Jed Brown <jed@jedbrown.org>

doc: replace ReST tables/list-table with MyST

bcb2dfae04-Feb-2021 Jed Brown <jed@jedbrown.org>

doc: replace recommonmark with MyST and migrate ReST to MyST

This offers more familiar syntax for most writing, as well as natural
$\pi$ math (versus :math:`\pi`) and markdown syntax for all ReST
fe

doc: replace recommonmark with MyST and migrate ReST to MyST

This offers more familiar syntax for most writing, as well as natural
$\pi$ math (versus :math:`\pi`) and markdown syntax for all ReST
features.

The API doc stubs remain in ReST as recommended for autodoc.

https://myst-parser.readthedocs.io/en/latest/sphinx/use.html#use-sphinx-ext-autodoc-in-markdown-files

The change was largely implemented using
https://github.com/executablebooks/rst-to-myst/ with some manual
fix-ups. Tables (both ReST built-in tables and list-table) remain under
eval-rst until they can be manually updated.

show more ...

eaf62fff02-Aug-2021 Jeremy L Thompson <25011573+jeremylt@users.noreply.github.com>

Refactor Preconditioning Ingredients (#795)

* op - split preconditioning into separate file

* pc - move FDM to interface level

* pc - initial move of diagonal assembly to interface

* interf

Refactor Preconditioning Ingredients (#795)

* op - split preconditioning into separate file

* pc - move FDM to interface level

* pc - initial move of diagonal assembly to interface

* interface - only return error code or error

* doc - improve preconditioning helper function documentation

* pc - use qdata layout for interface diagonal assembly

* pc - update for consistency in naming, use of CeedChk, and static

* doc - spelling

* style - minor

* doc - add doc for CeedBuildMassLaplace

* doc - update release notes

Co-authored-by: Jed Brown <jed@jedbrown.org>

Co-authored-by: Jed Brown <jed@jedbrown.org>

show more ...

8355605f30-Jul-2021 Karen (Ren) Stengel <karenlstengel@gmail.com>

Mooney-Rivlin model (#794)

* refactored MR to work with current version of main. Updated doc with dS for MR

* fixed documentation formatting

* update dS for MR in documentation

* cleaning u

Mooney-Rivlin model (#794)

* refactored MR to work with current version of main. Updated doc with dS for MR

* fixed documentation formatting

* update dS for MR in documentation

* cleaning up MR dS equations and wording

* minor changes in doc

* MR dS draft 1"

* MR coded, jacobian diverging

* added FSInitial-MR1.h

* fixed call option

* NH no longer needs mu_1 option

* processphysics and upated naming scheme

* WIP: Notes on using finite differencing for dS

* added print strain at every increment cl option

* MR cleaned. started CSV file but not quite there

* examples/solids: write csv file

can be read using pandas:

In [2]: pd.read_csv('test.csv')
Out[2]:
increment energy
0 0.000000 0.000000
1 0.066667 0.002402
[...]

* examples/solids: add targets for CSV logging and Altair chart

The MR data is currently hacked because it isn't converging as I'd expect.

* fixed style

* solids/doc: added derivation of dS for MR

* added analytical dS in Jacobian evaluation

* fixed style

* updated doc and energy plot for MR

* MR almost done

* started removing integer division

* got rid of all integer divisions

* missed some 1/3

* remove extra print statement

* added coulped MR FSInitial-MRc qfunction

* MR coupled version doc update

* refactored MR to work with current version of main. Updated doc with dS for MR

* fixed documentation formatting

* update dS for MR in documentation

* cleaning up MR dS equations and wording

* minor changes in doc

* MR dS draft 1"

* MR coded, jacobian diverging

* added FSInitial-MR1.h

* fixed call option

* NH no longer needs mu_1 option

* processphysics and upated naming scheme

* added print strain at every increment cl option

* MR cleaned. started CSV file but not quite there

* examples/solids: write csv file

can be read using pandas:

In [2]: pd.read_csv('test.csv')
Out[2]:
increment energy
0 0.000000 0.000000
1 0.066667 0.002402
[...]

* examples/solids: add targets for CSV logging and Altair chart

The MR data is currently hacked because it isn't converging as I'd expect.

* fixed style

* solids/doc: added derivation of dS for MR

* added analytical dS in Jacobian evaluation

* fixed style

* updated doc and energy plot for MR

* MR almost done

* started removing integer division

* got rid of all integer divisions

* missed some 1/3

* fixed some typo

* rerunning plot files

* Mooney-Rivlin coupled model

* some minor changes

* Mooney-Rivlin coupled model

* some clean-up and update

* clean-up, rebased

* examples/solids: revise docs/derivation and fix Newton

The (fixed) Newton linearization yields an indefinite operator causing
Newton to fail (so output/MR-strain1.csv is broken). This can be handled
by switching to minres, but a better solution would be nice.

* format: added newlines and removed unused/commented code blocks

* doc: removed GP model dropdown.

* examples/solids: Mooney-Rivlin docs/notation

* examples/solids: Mooney-Rivlin notation and experimental configuration

* examples/solids: process -dm_plex_box_faces with PETSc main

* make style

* examples/solids: syntax fix and minor cleanup

* make style

* doc: fixing Holzapfel ref in Mooney-Rivlin

* added TESTARGS for Mooney-Rivlin

* fixed TESTARGS for MR

* tests/tap.sh: make test for solids examples with names

* WIP: adding test option. added -expect_final_strain_energy and RegressionTests_solids function but not sure how to actually pull the reference strain energy from the reference file

* examples/solids: add regression tests using expected strain energy

* examples/solids: error on MMS with model that does not provide manufactured solutions

* examples/solids: fix HIP via CEED_QFUNCTION_HELPER

* update in-line comments

* changed as Jeremy suggested

* examples/solids: make style

Co-authored-by: Rezgar Shakeri <Rezgar.Shakeri@colorado.edu>
Co-authored-by: Jed Brown <jed@jedbrown.org>

show more ...

5ed5e63220-Jul-2021 Jed Brown <jed@jedbrown.org>

Merge branch 'release'

fef31cba17-Jul-2021 Valeria Barra <39932030+valeriabarra@users.noreply.github.com>

Add JOSS paper citation (#790)

* Add JOSS paper link to README and update How-to-cite

* Add JOSS paper to User Manual and references

* Docs: bib format

Co-authored-by: Jed Brown <jed@jedbro

Add JOSS paper citation (#790)

* Add JOSS paper link to README and update How-to-cite

* Add JOSS paper to User Manual and references

* Docs: bib format

Co-authored-by: Jed Brown <jed@jedbrown.org>

* Bib: Remove url field

Co-authored-by: Jed Brown <jed@jedbrown.org>

show more ...

9e9158cb09-Jul-2021 Jed Brown <jed@jedbrown.org>

Merge branch 'release'

* release:
Joss paper (#530)

b4cdc43d09-Jul-2021 Valeria Barra <39932030+valeriabarra@users.noreply.github.com>

Joss paper (#530)

* [JOSS paper] Initial commit

* Remove double colon in authors field leading to formatting error

* Remove double colon in date field leading to format error

* WIP: Update

Joss paper (#530)

* [JOSS paper] Initial commit

* Remove double colon in authors field leading to formatting error

* Remove double colon in date field leading to format error

* WIP: Update affiliation of other authors

* Remove displaymath mode around align environment

* JOSS: move images in img subdirectory and make some edits

* JOSS: Use pdf image instead of svg

* Update doc/papers/joss/paper.md

Co-authored-by: Valeria Barra <39932030+valeriabarra@users.noreply.github.com>

* JOSS: Mention F77 & Python interfaces - Describe briefly the Python interface

* Add Orszag's citation

* Insert ; between multiple citations

* Update Authors according to user-manual authorship

* Use "University of Colorado at Boulder" as affiliation

* add ORCID for Natalie

* add Jeremy orcid

* Leila orcid

* Update paper.md

Stan orcid

* Add information for Ahmad. I assumed that the names are alphabetically ordered by last names.

* In doc/papers/joss/paper.md, add my orcid id.

* Tzanio

* Orcid update

* Put @jedbrown frist author :)

* Change @dmed256 affiliation

* update orcid for Yohann Dudouit.

* Add some citations

* Typo fix. Thanks-to @tzanio

Co-authored-by: Tzanio Kolev <tzanio@llnl.gov>

* Mention Numba for the Python interface and add related references

* Review feedback: Add CEED website and BP paper citations

* Acknowledgements: Add the full ECP disclaimer

* Update CEED BP paper info now that it's available online

* Use BP1 & BP3 results from Noether

* Update BP figure captions

* Update BP figures with new data

These were run by @jedbrown after he updated Noether's NPS4 BIOS setting

* Add libCEED's SciPy reference

* Add HIP backend

* Add HIP backend

* Update backends image and resize

* [JOSS paper] Initial commit

* Remove double colon in authors field leading to formatting error

* Remove double colon in date field leading to format error

* WIP: Update affiliation of other authors

* Remove displaymath mode around align environment

* JOSS: move images in img subdirectory and make some edits

* JOSS: Use pdf image instead of svg

* Update doc/papers/joss/paper.md

Co-authored-by: Valeria Barra <39932030+valeriabarra@users.noreply.github.com>

* JOSS: Mention F77 & Python interfaces - Describe briefly the Python interface

* Add Orszag's citation

* Insert ; between multiple citations

* Update Authors according to user-manual authorship

* Use "University of Colorado at Boulder" as affiliation

* add ORCID for Natalie

* add Jeremy orcid

* Leila orcid

* Update paper.md

Stan orcid

* Add information for Ahmad. I assumed that the names are alphabetically ordered by last names.

* In doc/papers/joss/paper.md, add my orcid id.

* Tzanio

* Orcid update

* Put @jedbrown frist author :)

* Change @dmed256 affiliation

* update orcid for Yohann Dudouit.

* Add some citations

* Typo fix. Thanks-to @tzanio

Co-authored-by: Tzanio Kolev <tzanio@llnl.gov>

* Mention Numba for the Python interface and add related references

* Review feedback: Add CEED website and BP paper citations

* Acknowledgements: Add the full ECP disclaimer

* Update CEED BP paper info now that it's available online

* Use BP1 & BP3 results from Noether

* Update BP figure captions

* Update BP figures with new data

These were run by @jedbrown after he updated Noether's NPS4 BIOS setting

* Add libCEED's SciPy reference

* Add HIP backend

* Add HIP backend

* Update backends image and resize

* Undo resize because it does not render on their Markdown parser

* Add application examples

* Update latest pubs

* JOSS: Mention Julia interface. Add Will to authors.

* JOSS - add brief description of Rust interface

* JOSS - unify language references

* JOSS - fix bad copy-paste

* joss: fix Numba citation

https://numba.readthedocs.io/en/stable/user/faq.html?highlight=citing#how-do-i-reference-cite-acknowledge-numba-in-other-work

* joss: fix NumPy cite

https://numpy.org/citing-numpy/

* Update bib reference with user manual in place of dev site

* JOSS paper: substantial editing and figure adjustments

* JOSS paper: minor edits

* JOSS paper: fix DOI in bib

* joss - address some review comments

* joss - small wording improvement

* joss - add some preconditioner notes

* Fix Yohann's last name!

Co-authored-by: Yohann <dudouit1@llnl.gov>

* joss - minor updates

* Update libCEED User Manual citation

* joss: fix Thilina's name and add ORCID

* joss: copy edits and citation updates

* joss: fix bib entry

* joss: describe benchmark configuration

* joss: bib capitalization

* joss: adjust heading

Co-authored-by: Jeremy L Thompson <25011573+jeremylt@users.noreply.github.com>
Co-authored-by: nbeams <246972+nbeams@users.noreply.github.com>
Co-authored-by: Leila Ghaffari <Leila.Ghaffari@colorado.edu>
Co-authored-by: Stan Tomov <tomov@eecs.utk.edu>
Co-authored-by: Ahmad Abdelfattah <ahmad@icl.utk.edu>
Co-authored-by: Veselin Dobrev <dobrev@llnl.gov>
Co-authored-by: Tzanio Kolev <tzanio@llnl.gov>
Co-authored-by: camierjs <camier1@llnl.gov>
Co-authored-by: Yohann Dudouit <dudouit1@llnl.gov>
Co-authored-by: jeremylt <thompson.jeremy.luke@gmail.com>
Co-authored-by: Will Pazner <will.e.p@gmail.com>
Co-authored-by: Jed Brown <jed@jedbrown.org>

show more ...

a6fd1c4907-Jul-2021 Jed Brown <jed@jedbrown.org>

main: return to main development

007d01f707-Jul-2021 Jed Brown <jed@jedbrown.org>

post-release user manual citation update

12345678910>>...13