yangfan
commited on
Commit
·
d73e9f0
1
Parent(s):
abc7a8b
feat(*): set space gpu
Browse files
app.py
CHANGED
@@ -5,6 +5,10 @@ import torch
|
|
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' 🤗
|
|
|
5 |
zero = torch.Tensor([0]).cuda()
|
6 |
print(zero.device) # <-- 'cpu' 🤔
|
7 |
|
8 |
+
testgpu= torch.device("cuda" if torch.cuda.is_available() else "cpu")
|
9 |
+
|
10 |
+
print(testgpu)
|
11 |
+
|
12 |
@spaces.GPU
|
13 |
def greet(n):
|
14 |
print(zero.device) # <-- 'cuda:0' 🤗
|
config.py
CHANGED
@@ -31,5 +31,5 @@ class Config(object):
|
|
31 |
self.weight_decay = 0.01
|
32 |
self.max_grad_norm = 1.0
|
33 |
self.learning_rate = 5e-5
|
34 |
-
self.device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
|
35 |
|
|
|
31 |
self.weight_decay = 0.01
|
32 |
self.max_grad_norm = 1.0
|
33 |
self.learning_rate = 5e-5
|
34 |
+
self.device = torch.device("cuda:0" if torch.cuda.is_available() else "cpu")
|
35 |
|
main.py
CHANGED
@@ -1,5 +1,6 @@
|
|
1 |
# coding: UTF-8
|
2 |
|
|
|
3 |
import os
|
4 |
import time
|
5 |
import torch
|
@@ -27,6 +28,7 @@ def set_seed(seed):
|
|
27 |
torch.cuda.manual_seed_all(seed)
|
28 |
torch.backends.cudnn.deterministic = True
|
29 |
|
|
|
30 |
def main():
|
31 |
set_seed(args.seed)
|
32 |
config = Config(args.data_dir)
|
|
|
1 |
# coding: UTF-8
|
2 |
|
3 |
+
import spaces
|
4 |
import os
|
5 |
import time
|
6 |
import torch
|
|
|
28 |
torch.cuda.manual_seed_all(seed)
|
29 |
torch.backends.cudnn.deterministic = True
|
30 |
|
31 |
+
@spaces.GPU
|
32 |
def main():
|
33 |
set_seed(args.seed)
|
34 |
config = Config(args.data_dir)
|