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