bharatcoder commited on
Commit
26d582c
·
verified ·
1 Parent(s): 88de128

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -11
app.py CHANGED
@@ -1,18 +1,14 @@
1
  import gradio as gr
 
2
  import torch
3
 
4
- # Initialize a tensor on the GPU
5
- zero = torch.Tensor([0]).cuda()
6
- print(f"Outside function: {zero.device}") # Should print 'cuda:0'
7
 
8
- # Define the function to greet and perform a tensor operation on the GPU
9
- @spaces.GPU
10
  def greet(n):
11
- result = zero_gpu + torch.Tensor([n]).cuda() # Perform operation on GPU
12
- return f"Hello, result: {result.item()}"
13
 
14
- # Create Gradio interface
15
- demo = gr.Interface(fn=greet, inputs=gr.Number(), outputs=gr.Text())
16
-
17
- # Launch the Gradio demo
18
  demo.launch()
 
1
  import gradio as gr
2
+ import spaces
3
  import torch
4
 
5
+ zero = torch.Tensor([0]).cuda()
6
+ print(zero.device) # <-- 'cpu' 🤔
 
7
 
8
+ @spaces.GPU
 
9
  def greet(n):
10
+ print(zero.device) # <-- 'cuda:0' 🤗
11
+ return f"Hello {zero + n} Tensor"
12
 
13
+ demo = gr.Interface(fn=greet, inputs=gr.Number(), outputs=gr.Text())
 
 
 
14
  demo.launch()