From 1000312b62ca8880e791d0febb1e6612f62f7b38 Mon Sep 17 00:00:00 2001 From: 3PO Date: Sat, 19 Jan 2019 14:18:54 +0100 Subject: [PATCH] Update patch.sh Find Path to nvidia-smi. For example on gentoo is: "/opt/bin/nvidia-smi" --- patch.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/patch.sh b/patch.sh index 4b3d6db..a212f65 100755 --- a/patch.sh +++ b/patch.sh @@ -73,8 +73,9 @@ declare -A object_list=( ["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' exit 1; fi