added pipeline and test for gpu

This commit is contained in:
Xavier Pillons 2020-05-04 17:50:36 +02:00
Родитель e2b4eb9b8d
Коммит 9d0cf3ba47
2 изменённых файлов: 20 добавлений и 0 удалений

10
ci/scripts/check_gpu.sh Executable file
Просмотреть файл

@ -0,0 +1,10 @@
#!/bin/bash
gpu_cards=$(/usr/sbin/lspci | grep -i NVIDIA | wc -l)
echo "$gpu_cards NVIDIA devices found"
if [ $gpu_cards -eq 0 ]; then
echo "ERROR : no NVIDIA devices found"
exit 1
fi
nvidia-smi || exit 1

10
scripts/check_gpu.sh Executable file
Просмотреть файл

@ -0,0 +1,10 @@
#!/bin/bash
gpu_cards=$(/usr/sbin/lspci | grep -i NVIDIA | wc -l)
echo "$gpu_cards NVIDIA devices found"
if [ $gpu_cards -eq 0 ]; then
echo "ERROR : no NVIDIA devices found"
exit 1
fi
nvidia-smi || exit 1