Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -37,8 +37,11 @@ opts.save_dir = './'
|
|
37 |
os.makedirs(opts.save_dir,exist_ok=True)
|
38 |
test_tensor = torch.Tensor([0]).cuda()
|
39 |
opts.device = str(test_tensor.device)
|
40 |
-
# os.system('pip install iopath')
|
41 |
-
|
|
|
|
|
|
|
42 |
os.system("mkdir -p checkpoints/ && wget https://download.europe.naverlabs.com/ComputerVision/DUSt3R/DUSt3R_ViTLarge_BaseDecoder_512_dpt.pth -P checkpoints/")
|
43 |
|
44 |
print(f'>>> System info: CUDA: {torch.version.cuda}')
|
|
|
37 |
os.makedirs(opts.save_dir,exist_ok=True)
|
38 |
test_tensor = torch.Tensor([0]).cuda()
|
39 |
opts.device = str(test_tensor.device)
|
40 |
+
# os.system('pip install iopath') FORCE_CUDA=1
|
41 |
+
os.system('curl -LO https://github.com/NVIDIA/cub/archive/1.10.0.tar.gz')
|
42 |
+
os.system('tar xzf 1.10.0.tar.gz')
|
43 |
+
os.system('export CUB_HOME=$PWD/cub-1.10.0')
|
44 |
+
spaces.GPU(os.system("pip install 'git+https://github.com/facebookresearch/pytorch3d.git'"))
|
45 |
os.system("mkdir -p checkpoints/ && wget https://download.europe.naverlabs.com/ComputerVision/DUSt3R/DUSt3R_ViTLarge_BaseDecoder_512_dpt.pth -P checkpoints/")
|
46 |
|
47 |
print(f'>>> System info: CUDA: {torch.version.cuda}')
|