Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
55 commits
Select commit Hold shift + click to select a range
d52e573
initial commit, added an algorithm to fixedSizeSquareMatrixOps that c…
povolny1 Jan 24, 2023
6d4875e
implementation of polar decomposition complete, still need to test
povolny1 Jan 25, 2023
02e0e1c
Fixed cmake so that GEOSX TPLs work and also updated spack.
corbett5 Jan 26, 2023
63a85d1
Merge branch 'corbett/tpl-fix-spack-update' into feature/povolny1/pol…
povolny1 Jan 27, 2023
943b300
implemented unit test for polar decomposition
povolny1 Mar 9, 2023
ddcd7b4
made error message in polar decomposition GPU-compatible
povolny1 May 4, 2023
f591570
Merge branch 'develop' into feature/povolny1/polarDecomposition
povolny1 May 5, 2023
ab63869
merge from develop
povolny1 May 18, 2023
1339ea7
Added device math functions for ceil, floor, and power
Oct 30, 2024
82f1ce3
Merge branch 'develop' into feature/crook5/math
Nov 16, 2024
1e0127a
Corrected host only function inside of checkIndices preventing device…
Dec 5, 2024
343432d
Merge branch 'develop' into feature/crook5/math
rrsettgast Jan 9, 2025
bf73593
Added debugging flags to host configs
Jan 14, 2025
8e86706
wip: trying to fix build error on Lassen.
CusiniM Jan 17, 2025
c021cc5
use fold expression to do index checks
rrsettgast Jan 22, 2025
efc221d
revert changes to typeManipulation.
CusiniM Jan 22, 2025
9275fe7
use bool return value.
CusiniM Jan 22, 2025
882b587
use fold expression.
CusiniM Jan 23, 2025
e599472
fix function name
CusiniM Jan 23, 2025
00e117d
doxygen.
CusiniM Jan 23, 2025
1ccdce5
fix typo.
CusiniM Jan 23, 2025
956aa7c
add other integral types.
CusiniM Jan 23, 2025
8eb4727
add debug assert.
CusiniM Jan 23, 2025
2fa2667
add all integral types.
CusiniM Jan 23, 2025
2343b7d
add char types
CusiniM Jan 23, 2025
ddc611e
add decay type.
CusiniM Jan 23, 2025
52c1d5e
add a static cast option
CusiniM Jan 23, 2025
58fc69d
remove assert.
CusiniM Jan 23, 2025
d89ed76
clean up.
CusiniM Jan 23, 2025
ac6c0fd
remove chars.
CusiniM Jan 24, 2025
c2efd00
just always cast to long long.
CusiniM Jan 24, 2025
e60fa8f
forgotten one.
CusiniM Jan 24, 2025
4194bc9
Merged cusini/fix-lassen-error
Feb 3, 2025
65c00ec
aoa and aoav traits
wrtobin Apr 8, 2025
cff7f1b
just a typo fix
wrtobin Apr 8, 2025
1ada56a
Committing changes to pull from remote
Apr 10, 2025
2522acf
Merge branch 'feature/crook5/math' of github.com:GEOS-DEV/LvArray int…
Apr 10, 2025
557f07c
Merge branch 'develop' into feature/crook5/math
Apr 17, 2025
6a90517
Merged develop
Jun 2, 2025
c3fcf1f
Merge branch 'feature/povolny1/polarDecomposition' into feature/crook…
Jun 2, 2025
fead905
Updated branch with current versions from develop that were overriden…
Jun 3, 2025
00327f8
Fixed compilation error related to polarDecomposition
Jun 17, 2025
95aa41e
Removed wrong namespace
Jun 17, 2025
85136be
Fixed incorrect type
Jun 17, 2025
34a4ea5
Added round to math and cofactor to square tensor ops for 2x2 and 3x3…
Jul 6, 2025
fa06984
Updated formatting
Jul 6, 2025
ebf14c8
Merge branch 'feature/crook5/math' of github.com:GEOS-DEV/LvArray int…
Jul 6, 2025
7d4a46b
Fixed bug in unit tests for cofactors
Jul 6, 2025
a1f3c56
Fixed typo in unittests
Jul 6, 2025
bed5b66
Removed unused variable
Jul 6, 2025
8aebaa5
Added invert for 4x4 matrices
Aug 22, 2025
d452637
Added determinant and inverse operations for square 4x4 matrices
Sep 17, 2025
cd4a94d
Added host config for MPM solver
Nov 11, 2025
c485354
Minor formatting changes
Dec 1, 2025
53da4ed
Removed host-configs for machines that no longer exist
Jan 7, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cmake/Config.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
set( PREPROCESSOR_DEFINES UMPIRE
CHAI
CUDA
HIP
HIP
TOTALVIEW_OUTPUT
CALIPER )

Expand Down
5 changes: 5 additions & 0 deletions host-configs/LLNL/dane-clang-14-mpm.cmake
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
set(CONFIG_NAME "dane-clang-14-mpm" CACHE PATH "")

set(GEOS_TPL_DIR /usr/WS1/crook5/thirdPartyLibs/install-dane-clang-14-mpm-release CACHE PATH "")

include(${CMAKE_CURRENT_LIST_DIR}/llnl-cpu-clang-14.cmake)
5 changes: 5 additions & 0 deletions host-configs/LLNL/dane-gcc-12-mpm.cmake
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
set(CONFIG_NAME "dane-gcc-12-mpm" CACHE PATH "")

set(GEOS_TPL_DIR /usr/WS1/crook5/thirdPartyLibs/install-dane-gcc-12-mpm-release CACHE PATH "")

include(${CMAKE_CURRENT_LIST_DIR}/llnl-cpu-gcc-12.cmake)

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Loading