Skip to content
Open
Show file tree
Hide file tree
Changes from 45 commits
Commits
Show all changes
48 commits
Select commit Hold shift + click to select a range
825c5f4
Add rummy as submodule and build it
May 2, 2026
89779e0
Update to latest rummy
May 3, 2026
56d898d
Add initial Rummy input deck support. This will detect an input file …
May 3, 2026
92ab333
Add a set of unit tests for Rummy inputs
May 3, 2026
2c3454c
Update rummy
May 3, 2026
61c201e
Update Rummy
May 3, 2026
8c928e4
Update Rummy again
May 3, 2026
637481b
Update Rummy again
May 3, 2026
708fb88
Support for multiple input decks and introduces the InputFormat enum.…
May 3, 2026
3895bdb
Set the format in the rummy tests
May 3, 2026
4d3c9f8
Rummy deck is a unique_ptr now
May 4, 2026
3ac8149
Update Rummy
May 4, 2026
c34a1a3
update rummy
May 5, 2026
1d54e02
Expand command line args and get restarts working with rummy
May 5, 2026
c9b9381
Add a rummy driven sparse_advection regression test
May 5, 2026
a8b9744
Add docs for rummy
May 5, 2026
0a5da2b
Update rummy
adamdempsey90 May 5, 2026
9115290
Just add_subdirectory rummy
adamdempsey90 May 5, 2026
a526c9f
format
adamdempsey90 May 5, 2026
a365946
IsRummyFormat needs to know if this was a command line input
adamdempsey90 May 5, 2026
c0314bd
Format
adamdempsey90 May 6, 2026
7fbd914
Update rummy docs
adamdempsey90 May 6, 2026
85f3328
strip comments before determining if a value is rummyable
adamdempsey90 May 6, 2026
ad93b5c
Fix some issues with rummy test
adamdempsey90 May 6, 2026
5a4a2f8
Fix compiler warning
adamdempsey90 May 6, 2026
5796f43
format
adamdempsey90 May 6, 2026
d03daf6
Update rummy
adamdempsey90 May 6, 2026
01f05c5
Update rummy
adamdempsey90 May 6, 2026
bac544e
docs for env vars
adamdempsey90 May 6, 2026
5ed7d48
Update rummy
May 7, 2026
49315c6
linter
May 7, 2026
46d69ca
format
May 7, 2026
fb73642
Upate rummy
May 7, 2026
b144a9c
Update rummy again
May 7, 2026
c07162f
don't install pipslib
May 7, 2026
c207ab7
Update rummy
May 7, 2026
9ee69c0
Update rummy for the last time?
May 7, 2026
1d80fed
Add from command line comment to those params, but then strip it if u…
adamdempsey90 May 7, 2026
44b9212
Update rummy
adamdempsey90 May 7, 2026
74dfa9b
Syntax...
adamdempsey90 May 7, 2026
babac00
Refactor the rummy interaction to it's own file in paramter_parsers/.…
May 16, 2026
5f8ff15
cpplint
May 16, 2026
5699cd4
add unistd header
May 16, 2026
f403c40
don't try to capture stdout not very portable
May 17, 2026
9aefb03
Actually transfer the parameters before reading them
May 17, 2026
7c5b1be
Merge remote-tracking branch 'origin/develop' into dempsey/rummy2
Jul 27, 2026
f08690b
Don't rely on % to auto detect rummy decks
adamdempsey90 Jul 28, 2026
69bd829
Merge remote-tracking branch 'origin/develop' into dempsey/rummy2
adamdempsey90 Jul 30, 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
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,6 @@
[submodule "external/kokkos"]
path = external/Kokkos
url = https://github.com/kokkos/kokkos.git
[submodule "external/rummy"]
path = external/rummy
url = https://github.com/lanl/rummy
11 changes: 11 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -440,6 +440,17 @@ set(CMAKE_INSTALL_INCLUDEDIR "${CMAKE_INSTALL_INCLUDEDIR}/parthenon")
set(DOC_GEN_PATH "${CMAKE_SOURCE_DIR}/doc/sphinx/src/generated" CACHE STRING
"Path to save generated data for docs.")


find_package(Rummy QUIET)

if (NOT Rummy_FOUND)
# If Rummy is not found, instead use the git submodule
set(RUMMY_ENABLE_COVERAGE OFF CACHE BOOL "Disable Rummy coverage" FORCE)
set(RUMMY_ENABLE_UNIT_TESTS OFF CACHE BOOL "Disable Rummy unit tests" FORCE)
add_subdirectory(external/rummy)
endif()


add_subdirectory(src)
add_subdirectory(example)
add_subdirectory(benchmarks)
Expand Down
1 change: 1 addition & 0 deletions doc/sphinx/src/chapters/getting_started.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,5 @@ so you can run your first example quickly.
../README
../building
../inputs
../rummy_input
../outputs
Loading
Loading