Skip to content
Open
Show file tree
Hide file tree
Changes from all 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 repos/spack_repo/builtin/packages/axom/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ def initconfig_hardware_entries(self):

hip_link_flags = ""

rocm_root = spec["llvm-amdgpu"].prefix
rocm_root = os.path.dirname(spec["llvm-amdgpu"].prefix)
entries.append(cmake_cache_path("ROCM_ROOT_DIR", rocm_root))

# Recommended MPI flags
Expand Down
2 changes: 1 addition & 1 deletion repos/spack_repo/builtin/packages/mfem/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -767,7 +767,7 @@ def find_optional_library(name, prefix):
hypre_rocm_libs += hypre["rocsparse"].libs
if "^rocrand" in hypre:
hypre_rocm_libs += hypre["rocrand"].libs
if hypre.satisfies("@2.39.0:"):
if hypre.satisfies("@2.29.0:"):
if "^rocsolver" in hypre:
hypre_rocm_libs += hypre["rocsolver"].libs
if "^rocblas" in hypre:
Expand Down
Loading