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 ../..
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 ../..