* Update runtime.sh Stops searching your entire pc and speeds up the finding process by ALOT * Update runtime.sh --------- Co-authored-by: AlpinDale <52078762+AlpinDale@users.noreply.github.com>
@@ -7,5 +7,5 @@ if [ $# -eq 0 ]
bin/micromamba run -r conda -n aphrodite-runtime bash
exit
fi
-export CUDA_HOME=$(find / -type d -path "*/conda/envs/aphrodite-runtime" 2>/dev/null | head -n 1)
+export CUDA_HOME=$(realpath $(find ./ -type d -path "*/conda/envs/aphrodite-runtime" 2>/dev/null | head -n 1))
bin/micromamba run -r conda -n aphrodite-runtime $*