File size: 751 Bytes
d4f211f
 
 
 
e65f9d5
2f50e34
d4f211f
6e4178b
06acf20
 
6e4178b
d4f211f
4cf9cd7
404559e
 
5438a6b
 
 
d4f211f
 
404559e
 
 
5438a6b
d4f211f
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import gradio as gr
import spaces
import torch

print('cuda avaliable: ' + str(torch.cuda.is_available()))

zero = torch.Tensor([0]).cuda()
print('zero device: ' + str(zero.device))

one = torch.ones(2, 2, device='cuda')
print('one device: ' + str(one.device))

two = torch.matmul(one, one).cuda()
print('two device: ' + str(two.device))

tpu_res = torch.ones(2, 2, device='tpu')
print('tpu_res device: ' + str(tpu_res.device))

@spaces.GPU
def greet(n):
    print('zero device: ' + str(zero.device))
    print('one device: ' + str(one.device))
    print('two device: ' + str(two.device))
    print('tpu_res device: ' + str(tpu_res.device))
    return f"Hello {zero + n} Tensor"

gr.Interface(fn=greet, inputs=gr.Number(), outputs=gr.Text()).launch()