Doubiiu commited on
Commit
387610d
1 Parent(s): 579479d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -2
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
- # spaces.GPU(os.system("FORCE_CUDA=1 pip install 'git+https://github.com/facebookresearch/pytorch3d.git'"))
 
 
 
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}')