Spaces:
Runtime error
Runtime error
File size: 294 Bytes
a543549 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
import streamlit as st
import torch
st.title("Hugging Face Space GPU Info")
# Check if GPU is available
gpu_available = torch.cuda.is_available()
if gpu_available:
gpu_name = torch.cuda.get_device_name(0)
st.write(f"GPU available: {gpu_name}")
else:
st.write("No GPU available")
|