| #
3451ca54
|
| 27-Nov-2023 |
James Wright <james@jameswright.xyz> |
Merge pull request #1203 from CEED/jrwrigh/smartsim
fluids: SmartSim Online Data-Driven SGS training
|
| #
e17e35bb
|
| 29-Jul-2023 |
James Wright <james@jameswright.xyz> |
fluids: Add smartsim regression testing
Requires that the fluids code be built with SMARTREDIS_DIR set, and in an environment with SmartSim (Python library) installed as well.
Co-authored by: Zach
fluids: Add smartsim regression testing
Requires that the fluids code be built with SMARTREDIS_DIR set, and in an environment with SmartSim (Python library) installed as well.
Co-authored by: Zach Atkins <zach.atkins@colorado.edu>
show more ...
|
| #
fc818f1b
|
| 07-Jun-2023 |
James Wright <james@jameswright.xyz> |
fluids: Add SmartSim build to Makefile
|
| #
3830cccf
|
| 20-Oct-2023 |
Jeremy L Thompson <jeremy@jeremylt.org> |
Merge pull request #1384 from CEED/jeremy/vermin
Add Vermin in CI
|
| #
8c210c3e
|
| 20-Oct-2023 |
Jeremy L Thompson <jeremy@jeremylt.org> |
make - add vermin target
|
| #
db7ade31
|
| 17-Oct-2023 |
Jeremy L Thompson <jeremy@jeremylt.org> |
Merge pull request #1382 from CEED/sjg/magma-formatting-dev
Lazy RTC compilation of MAGMA basis kernels for small P, Q
|
| #
940a72f1
|
| 10-Aug-2023 |
Sebastian Grimberg <sjg@amazon.com> |
Formatting consistency for magma backend with cuda-ref and hip-ref
Includes JiT upgrades for Magma non-tensor basis to only compile for N values which are used at runtime. Adds JiT for Magma non-ten
Formatting consistency for magma backend with cuda-ref and hip-ref
Includes JiT upgrades for Magma non-tensor basis to only compile for N values which are used at runtime. Adds JiT for Magma non-tensor basis CEED_EVAL_WEIGHT mode.
show more ...
|
| #
36f34280
|
| 13-Oct-2023 |
Kenneth E. Jansen <Kenneth.Jansen@colorado.edu> |
Merge branch 'kjansen/DropPotentialFromEtot' of ssh://github.com/CEED/libCEED into kjansen/DropPotentialFromEtot
|
| #
19868e18
|
| 12-Oct-2023 |
Zach Atkins <zach.atkins@colorado.edu> |
Add parallelism within test files (#1372)
* Add parallelism within test files
* Remove NPROC_POOL from nek tests
* Fix formatting
|
| #
2bc64698
|
| 06-Oct-2023 |
Sebastian Grimberg <sebastiangrimb@gmail.com> |
Merge pull request #1368 from CEED/sjg/makefile-cc-fix
Fix compiler vendor detection for `cc`
|
| #
4c4eae0c
|
| 06-Oct-2023 |
Sebastian Grimberg <sjg@amazon.com> |
Fix compiler vendor detection for cc
|
| #
5ebf7cb8
|
| 06-Oct-2023 |
James Wright <james@jameswright.xyz> |
Merge pull request #1369 from CEED/jrwrigh/makefile
chore: make info returns actual flags
|
| #
4e62717c
|
| 06-Oct-2023 |
James Wright <james@jameswright.xyz> |
chore: make info returns actual flags
|
| #
25878d73
|
| 06-Oct-2023 |
Sebastian Grimberg <sebastiangrimb@gmail.com> |
Merge pull request #1365 from CEED/sjg/make-format-prep
|
| #
2fee3251
|
| 05-Oct-2023 |
Sebastian Grimberg <sjg@amazon.com> |
Expand Python formatting to tests/
|
| #
5cd6c1fb
|
| 04-Oct-2023 |
Sebastian Grimberg <sjg@amazon.com> |
Makefile updates for formatting
|
| #
533adc1e
|
| 05-Oct-2023 |
Sebastian Grimberg <sebastiangrimb@gmail.com> |
Merge pull request #1359 from CEED/sjg/full-assembly-tensor-opt
Improve CPU-based operator full assembly by using optimized backend tensor contraction
|
| #
0459ebd3
|
| 03-Oct-2023 |
Sebastian Grimberg <sjg@amazon.com> |
Use backend tensor contraction for CPU-based operator full assembly in place of naiive matrix-matrix multiplication implementation
|
| #
cfa6dc98
|
| 03-Oct-2023 |
James Wright <james@jameswright.xyz> |
Merge pull request #1358 from CEED/jrwrigh/make-format-fix
chore: Fix format.ch command to grab all files
|
| #
54936541
|
| 03-Oct-2023 |
James Wright <james@jameswright.xyz> |
chore: Fix format.ch command to grab all files
- For some reason, on my (James') system (zsh, Manjaro), `format-c` will only run on `backends/*` and `examples/mfem/*`. This change succesffully g
chore: Fix format.ch command to grab all files
- For some reason, on my (James') system (zsh, Manjaro), `format-c` will only run on `backends/*` and `examples/mfem/*`. This change succesffully globs all files now
show more ...
|
| #
ed5267d9
|
| 29-Sep-2023 |
Jeremy L Thompson <jeremy@jeremylt.org> |
Merge pull request #1351 from CEED/sjg/makefile-fixes
Makefile fixes
|
| #
7eaeb09a
|
| 28-Sep-2023 |
Sebastian Grimberg <sjg@amazon.com> |
Fix for consistent spacing
|
| #
ae93e896
|
| 28-Sep-2023 |
Sebastian Grimberg <sjg@amazon.com> |
Makefile fixes: Install JiT headers for magma and sycl backends and fix MAGMA HIP include flags
|
| #
58c07c4f
|
| 20-Sep-2023 |
Sebastian Grimberg <sebastiangrimb@gmail.com> |
Support CPU shared-memory parallelism with OpenMP (#1279)
* Updates for OpenMP thread safety (one Ceed per thread, potentially with shared output vector)
* Makefile tabs vs. spaces consistency
Support CPU shared-memory parallelism with OpenMP (#1279)
* Updates for OpenMP thread safety (one Ceed per thread, potentially with shared output vector)
* Makefile tabs vs. spaces consistency
* Fix unrelated pragma bug for Intel compilers in `backend.h`
* Address PR feedback: Use _OPENMP macro, simplify OpenMP pragma wrappers
* Address PR feedback: Add new statement macro CeedPragmaThreadPrivate to PREDEFINED entries in Doxyfile
* Add OpenMP support to Intel CI workflow for testing
* Add documentation for OPENMP option and Update releasenotes.md
* Revise OpenMP implementation: Rather than enforcing global variables to be threadprivate, just wrap potential race conditions in a critical block (during registration)
* Avoid returning from OpenMP blocks
* Early break on error when registering backends or QFunctions
* Formatting fixes after rebase, newline after variable declarations
* Address PR feedback: Revert some unintentional changes to debug output
* Update codecov exclusions
show more ...
|
| #
1b16049a
|
| 11-Aug-2023 |
Zach Atkins <zach.atkins@colorado.edu> |
refactor junit.py for parity with Ratel (#1285)
* refactor junit.py for parity with Ratel
* clean up list of backends for CLI input to junit
* Improve readability and add documentation
* cl
refactor junit.py for parity with Ratel (#1285)
* refactor junit.py for parity with Ratel
* clean up list of backends for CLI input to junit
* Improve readability and add documentation
* cleanup common code and CLI
* add JUnit batch to command line args
* Fix issue with JUnit output files
show more ...
|