Answers for "check cudann"

0

check cudann

function lib_installed() { /sbin/ldconfig -N -v $(sed 's/:/ /' <<< $LD_LIBRARY_PATH) 2>/dev/null | grep $1; }
function check() { lib_installed $1 && echo "$1 is installed" || echo "ERROR: $1 is NOT installed"; }
check libcudnn
Posted by: Guest on May-20-2021

Python Answers by Framework

Browse Popular Code Answers by Language