You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 24, 2026. It is now read-only.
HI
could you help check whether there is a path error in the script of install_amd.sh ?
I made the below change to avoid the issue of wrong path
Thanks
diff --git a/install_amd.sh b/install_amd.sh
index dec3dedcf..8d2707792 100755
--- a/install_amd.sh
+++ b/install_amd.sh
@@ -60,10 +60,10 @@ cp cmake/config.cmake build
cd build
echo "set(USE_LLVM llvm-config-16)" >> config.cmake && echo "set(USE_ROCM /opt/rocm)" >> config.cmake
-cmake .. && make -j && cd ../../..
+cmake .. && make -j
TVM_PREBUILD_PATH=$(realpath .)
+echo $TVM_PREBUILD_PATH
cd ../..