Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
davanstrien
/
synthetic-data-workshop
like
18
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
f0c2c24
synthetic-data-workshop
/
check_gpu.sh
davanstrien
HF Staff
Update GPU detection method in check_gpu.sh
f0c2c24
11 months ago
raw
Copy download link
history
blame
Safe
103 Bytes
#!/bin/bash
if
command
-v nvidia-smi &> /dev/null && nvidia-smi -L;
then
exit
0
else
exit
1
fi