Skip to content

Commit 59a2f92

Browse files
Do not uninstall MIOpen if skipping build-from-source (#1544)
1 parent cbc95ff commit 59a2f92

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

common/install_miopen.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,6 @@ if [[ $ROCM_INT -lt 40001 ]]; then
3333
exit 0
3434
fi
3535

36-
yum remove -y miopen-hip
37-
3836
# Function to retry functions that sometimes timeout or have flaky failures
3937
retry () {
4038
$* || (sleep 1 && $*) || (sleep 2 && $*) || (sleep 4 && $*) || (sleep 8 && $*)
@@ -85,6 +83,8 @@ else
8583
exit 1
8684
fi
8785

86+
yum remove -y miopen-hip
87+
8888
git clone https://github.com/ROCmSoftwarePlatform/MIOpen -b ${MIOPEN_BRANCH}
8989
pushd MIOpen
9090
# remove .git to save disk space since CI runner was running out

0 commit comments

Comments
 (0)