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

Use llvm 18 with Arkouda release #26305

Merged
merged 1 commit into from
Nov 22, 2024
Merged
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
6 changes: 3 additions & 3 deletions util/cron/test-perf.chapcs.arkouda.release.bash
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ if [ -n "$CHPL_WHICH_RELEASE_FOR_ARKOUDA" ]; then
# Note: Add more cases to the following 'if' whenever we need to test a
# release that does not support our latest available LLVM. Cases can be
# removed when we no longer care about testing against that release.
if [ "$CHPL_WHICH_RELEASE_FOR_ARKOUDA" = "2.0.0" ]; then
# use LLVM 17, latest supported by 2.0.0
if [ "$CHPL_WHICH_RELEASE_FOR_ARKOUDA" = "2.2.0" ]; then
# use LLVM 18, latest supported by 2.2.0
if [ -f /data/cf/chapel/setup_system_llvm.bash ] ; then
# Hack to avoid build issues with GMP. Spack installed GMP is pulled in as
# a dependency of GDB. Then for some reason, it's (undesirably) linked
Expand All @@ -22,7 +22,7 @@ if [ -n "$CHPL_WHICH_RELEASE_FOR_ARKOUDA" ]; then
# Anna 2024-06-17
module unload gdb

source /data/cf/chapel/setup_system_llvm.bash 17
source /data/cf/chapel/setup_system_llvm.bash 18
fi
else
# Default to using latest LLVM.
Expand Down