Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
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 checkout-versions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
versions:
ramble: 6b4ecac # develop on 5/06/2025 (newer than 0.6.0 release)
spack: a85ec51 # Dec. 1 2025 v1.1.0
spack-packages: d13c881 # Dec. 3 2025
spack-packages: 7746ad9 # Jan. 12 2026
3 changes: 3 additions & 0 deletions repo/lammps/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ class Lammps(BuiltinLammps):

depends_on("kokkos+openmp cxxstd=17", when="+openmp")
depends_on("kokkos+wrapper", when="+cuda")

# Kokkos 5 not building
depends_on("kokkos@:4", when="@:20250722 +kokkos")
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@rfhaque Is this expected to be necessary?


flag_handler = build_system_flags

Expand Down
4 changes: 3 additions & 1 deletion repo/sparta-snl/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,9 @@ class SpartaSnl(CMakePackage, CudaPackage, ROCmPackage):
depends_on("kokkos+openmp cxxstd=17", when="+openmp")
depends_on("kokkos+rocm", when="+rocm")
depends_on("kokkos+wrapper+cuda cxxstd=17", when="+cuda")

# Kokkos 5 not building
depends_on("kokkos@:4", when="+kokkos")
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@rfhaque Is this expected to be necessary?


depends_on("jpeg", when="+jpeg")
depends_on("libpng", when="+png")

Expand Down
2 changes: 1 addition & 1 deletion systems/llnl-elcapitan/system.py
Original file line number Diff line number Diff line change
Expand Up @@ -770,7 +770,7 @@ def rocm_cce_compiler_cfg(self):
},
flags={
"cflags": "-g -O2",
"cxxflags": "-g -O2 -std=c++14",
"cxxflags": "-g -O2 -std=c++17",
"fflags": "-g -O2 -hnopattern",
"ldflags": "-ldl",
},
Expand Down
Loading