SLATE package: fix smoke test (#43425)

This commit is contained in:
G-Ragghianti 2024-03-29 20:17:48 -04:00 committed by GitHub
parent f062f1c5b3
commit 14edb55288
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -165,7 +165,7 @@ def test(self):
test_dir = join_path(self.test_suite.current_test_cache_dir, "examples", "build") test_dir = join_path(self.test_suite.current_test_cache_dir, "examples", "build")
with working_dir(test_dir, create=True): with working_dir(test_dir, create=True):
cmake_bin = join_path(self.spec["cmake"].prefix.bin, "cmake") cmake_bin = join_path(self.spec["cmake"].prefix.bin, "cmake")
deps = "blaspp lapackpp mpi" deps = "slate blaspp lapackpp mpi"
if self.spec.satisfies("+rocm"): if self.spec.satisfies("+rocm"):
deps += " rocblas hip llvm-amdgpu comgr hsa-rocr-dev rocsolver" deps += " rocblas hip llvm-amdgpu comgr hsa-rocr-dev rocsolver"
prefixes = ";".join([self.spec[x].prefix for x in deps.split()]) prefixes = ";".join([self.spec[x].prefix for x in deps.split()])