We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8fb547c commit a794cecCopy full SHA for a794cec
common/install_miopen.sh
@@ -60,7 +60,10 @@ MIOPEN_CMAKE_COMMON_FLAGS="
60
-DMIOPEN_BUILD_DRIVER=OFF
61
"
62
# Pull MIOpen repo and set DMIOPEN_EMBED_DB based on ROCm version
63
-if [[ $ROCM_INT -ge 50300 ]] && [[ $ROCM_INT -lt 50400 ]]; then
+if [[ $ROCM_INT -ge 50400 ]] && [[ $ROCM_INT -lt 50500 ]]; then
64
+ MIOPEN_CMAKE_DB_FLAGS="-DMIOPEN_EMBED_DB=gfx900_56;gfx906_60;gfx90878;gfx90a6e;gfx1030_36 -DMIOPEN_USE_MLIR=Off"
65
+ MIOPEN_BRANCH="release/rocm-rel-5.4-staging"
66
+else if [[ $ROCM_INT -ge 50300 ]] && [[ $ROCM_INT -lt 50400 ]]; then
67
MIOPEN_CMAKE_DB_FLAGS="-DMIOPEN_EMBED_DB=gfx900_56;gfx906_60;gfx90878;gfx90a6e;gfx1030_36 -DMIOPEN_USE_MLIR=Off"
68
MIOPEN_BRANCH="release/rocm-rel-5.3-staging"
69
elif [[ $ROCM_INT -ge 50200 ]] && [[ $ROCM_INT -lt 50300 ]]; then
0 commit comments