Update app.py
Browse files
app.py
CHANGED
@@ -23,7 +23,11 @@ print('after spaces', zero.device)
|
|
23 |
@spaces.GPU
|
24 |
def test(n):
|
25 |
print(n)
|
26 |
-
|
|
|
|
|
|
|
|
|
27 |
# device = zero.device
|
28 |
print('1 ',torch.Tensor([1]).cuda())
|
29 |
return 0
|
|
|
23 |
@spaces.GPU
|
24 |
def test(n):
|
25 |
print(n)
|
26 |
+
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
|
27 |
+
print('intest device', device)
|
28 |
+
print('inside zero old', zero.device)
|
29 |
+
zero = zero.to(device)
|
30 |
+
print('inside zero new', zero.device)
|
31 |
# device = zero.device
|
32 |
print('1 ',torch.Tensor([1]).cuda())
|
33 |
return 0
|