Spaces:
Sleeping
Sleeping
import gradio as gr | |
import spaces | |
import torch | |
zero = torch.Tensor([0]).cuda() | |
print(zero.device) # <-- 'cpu' π€ | |
def chat(prompt): | |
print(zero.device) # <-- 'cuda:0' π€ | |
return f"Hello {zero + n} Tensor" | |
gr.Interface( | |
fn=chat, | |
inputs=gr.Text(), | |
outputs=gr.Text() | |
).launch() |