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
02881ff
synthetic-data-workshop
/
check_gpu.sh
davanstrien
HF staff
chore: Update Dockerfile to install pciutils for GPU detection
2cdedb8
5 months ago
raw
Copy download link
history
blame
Safe
74 Bytes
#!/bin/bash
if
lspci | grep -i nvidia;
then
exit
0
else
exit
1
fi