Kevin Fink commited on
Commit
f72ef0e
·
1 Parent(s): 3da092f
Files changed (1) hide show
  1. app.py +15 -0
app.py ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ import gradio as gr
3
+ import spaces
4
+ import torch
5
+
6
+ zero = torch.Tensor([0]).cuda()
7
+ print(zero.device) # <-- 'cpu' 🤔
8
+
9
+ @spaces.GPU
10
+ def greet(n):
11
+ print(zero.device) # <-- 'cuda:0' 🤗
12
+ return f"Hello {zero + n} Tensor"
13
+
14
+ demo = gr.Interface(fn=greet, inputs=gr.Number(), outputs=gr.Text())
15
+ demo.launch()