Skip to content
Draft
Show file tree
Hide file tree
Changes from 2 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 .github/actions/palace-ci/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ runs:
MPI_IMPL="openmpi"
C_CXX_COMPILER="${{ inputs.toolchain }}"
fi
PALACE_SPEC="local.palace@develop+superlu-dist+mumps+sundials+strumpack+slepc+arpack${{ inputs.variant }} ${CUDA_ARGS}"
PALACE_SPEC="local.palace@develop+libxsmm+superlu-dist+mumps+sundials+strumpack+slepc+arpack${{ inputs.variant }} ${CUDA_ARGS}"

cat << EOF > spack.yaml
spack:
Expand Down
1 change: 1 addition & 0 deletions spack_repo/local/packages/palace/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ class Palace(CMakePackage, CudaPackage, ROCmPackage):
maintainers("hughcars", "simlap", "cameronrutherford", "sbozzolo", "phdum")

version("develop", branch="main")
version("0.16.0", tag="v0.16.0", commit="869ee5ced4850384410a7aeebc7c25f4c01be161")
version("0.15.0", tag="v0.15.0", commit="b6762777d85a06072fdf4cc96e8a365da73df170")
version("0.14.0", tag="v0.14.0", commit="a428a3a32dbbd6a2a6013b3b577016c3e9425abc")
version("0.13.0", tag="v0.13.0", commit="a61c8cbe0cacf496cde3c62e93085fae0d6299ac")
Expand Down
162 changes: 0 additions & 162 deletions spack_repo/patches/pr3292_mfem.diff

This file was deleted.

13 changes: 13 additions & 0 deletions spack_repo/patches/pr3778_libxsmm.diff
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
diff --git a/repos/spack_repo/builtin/packages/libxsmm/package.py b/repos/spack_repo/builtin/packages/libxsmm/package.py
index dcd4f38782..f07d7c9731 100644
--- a/repos/spack_repo/builtin/packages/libxsmm/package.py
+++ b/repos/spack_repo/builtin/packages/libxsmm/package.py
@@ -120,7 +120,7 @@ class Libxsmm(MakefilePackage):
"FC={0}".format(spack_fc),
"PREFIX=%s" % prefix,
]
- if spec.target.family == "aarch64":
+ if spec.satisfies("@1.17-cp2k") and spec.target.family == "aarch64":
make_args += ["PLATFORM=1"]
else:
make_args += ["SYM=1"]
Loading