Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

mpich 8.1.27 fixes #158

Merged
merged 2 commits into from
Jan 20, 2024
Merged
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
9 changes: 6 additions & 3 deletions stackinator/repo/packages/cray-gtl/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class CrayGtl(Package):
)
version(
"8.1.27",
sha256="c00836641c7d1f40300f8e4b068a1ba1ff4b0ca31af24b9507d768fc6fe5753c",
sha256="80c7e94d30b5a3573ac6b2cc5fb0373046760a0acdff44a178e723ab3c8fdfb9",
)
version(
"8.1.26",
Expand Down Expand Up @@ -59,8 +59,8 @@ class CrayGtl(Package):
conflicts("+cuda", when="+rocm", msg="Pick either CUDA or ROCM")

with when("+cuda"):
depends_on("[email protected]:11", type="link", when="@:8.1.27")
depends_on("cuda@12:", type="link", when="@8.1.28:")
depends_on("[email protected]:11", type="link", when="@:8.1.26")
depends_on("cuda@12.0:12", type="link", when="@8.1.27:")

with when("+rocm"):
# libamdhip64.so.5
Expand Down Expand Up @@ -109,3 +109,6 @@ def fixup_binaries(self):
# __gxx_personality_v0 but wasn't linked against libstdc++.
if "libmpi_gtl_cuda.so" in str(f):
patchelf("--add-needed", "libstdc++.so", f, fail_on_error=False)
if "@8.1.27" in self.spec:
patchelf("--add-needed", "libcudart.so", f, fail_on_error=False)
patchelf("--add-needed", "libcuda.so", f, fail_on_error=False)
2 changes: 1 addition & 1 deletion stackinator/repo/packages/cray-mpich/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class CrayMpich(Package):
)
version(
"8.1.27",
sha256="c555f180cbe7272acd76e3e55cd9150c2b20b8ec263228f64fe2b682eec1c612",
sha256="c7f2f5366aba9ff9781084a430b5b9462427ee8120069ff530d1965065ef220b",
)
version(
"8.1.26",
Expand Down
2 changes: 1 addition & 1 deletion stackinator/repo/packages/cray-pmi/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class CrayPmi(Package):
)
version(
"6.1.12",
sha256="0f1caa93c881e1a5a4b5a65d1cb3a04d9c549ffdb9524b53a6e7ca9317dd90ee",
sha256="d1a4bd929b73197823dd9b4bcb3c8ef06d80326297a07291b24e5996b60330a8",
)
version(
"6.1.11",
Expand Down