Skip to content

Commit

Permalink
Merge pull request #569 from boegel/2023.06-software.eessi.io_zen4-zen3
Browse files Browse the repository at this point in the history
stick to `x86_64/amd/zen3` when AMD Genoa (Zen4) is detected, until optimized software installations are available for Zen4
  • Loading branch information
trz42 authored May 7, 2024
2 parents 241bf13 + 59173ea commit 4afaecb
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions init/eessi_environment_variables
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,14 @@ if [ -d $EESSI_PREFIX ]; then
fi
if [ ! -z $EESSI_SOFTWARE_SUBDIR ]; then

# use x86_64/amd/zen3 for now when AMD Genoa (Zen4) CPU is detected,
# since optimized software installations for Zen4 are a work-in-progress,
# see https://gitlab.com/eessi/support/-/issues/37
if [[ "${EESSI_SOFTWARE_SUBDIR}" == "x86_64/amd/zen4" ]]; then
export EESSI_SOFTWARE_SUBDIR="x86_64/amd/zen3"
echo -e "\e[33mSticking to ${EESSI_SOFTWARE_SUBDIR} for now, since optimized installations for AMD Genoa (Zen4) are a work in progress, see https://gitlab.com/eessi/support/-/issues/37 for more information\e[0m"
fi

show_msg "Using ${EESSI_SOFTWARE_SUBDIR} as software subdirectory."
export EESSI_SOFTWARE_PATH=$EESSI_PREFIX/software/$EESSI_OS_TYPE/$EESSI_SOFTWARE_SUBDIR

Expand Down

0 comments on commit 4afaecb

Please sign in to comment.