Spaces:
Sleeping
Sleeping
File size: 340 Bytes
518afb1 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | import time
import gradio as gr
import spaces
import torch
zero = torch.Tensor([0]).cuda()
print(zero.device) # <-- 'cpu' 🤔
@spaces.GPU(duration=10)
def greet(n):
time.sleep(9)
print(zero.device) # <-- 'cuda:0' 🤗
return f"Hello {zero + n} Tensor"
gr.Interface(fn=greet, inputs=gr.Number(), outputs=gr.Text()).launch()
|