Commit 1000312b authored by 3PO's avatar 3PO Committed by Vladislav Yarmak

Update patch.sh

Find Path to nvidia-smi. 
For example on gentoo is: "/opt/bin/nvidia-smi"
parent 6f533954
...@@ -73,8 +73,9 @@ declare -A object_list=( ...@@ -73,8 +73,9 @@ declare -A object_list=(
["415.27"]='libnvcuvid.so' ["415.27"]='libnvcuvid.so'
) )
NVIDIA_SMI="$(which nvidia-smi)"
if ! driver_version=$(/usr/bin/nvidia-smi --query-gpu=driver_version --format=csv,noheader,nounits | head -n 1) ; then if ! driver_version=$($NVIDIA_SMI --query-gpu=driver_version --format=csv,noheader,nounits | head -n 1) ; then
echo 'Something went wrong. Check nvidia driver' echo 'Something went wrong. Check nvidia driver'
exit 1; exit 1;
fi fi
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment