facebookresearch / MCC

Multiview Compressive Coding for 3D Reconstruction
Other
631 stars 48 forks source link

RuntimeError: No shared folder available #9

Closed Tangshitao closed 1 year ago

Tangshitao commented 1 year ago

Traceback (most recent call last): File "submitit_mcc.py", line 133, in main() File "submitit_mcc.py", line 123, in main args.dist_url = get_init_file().as_uri() File "submitit_mcc.py", line 48, in get_init_file os.makedirs(str(get_shared_folder()), exist_ok=True) File "submitit_mcc.py", line 43, in get_shared_folder raise RuntimeError("No shared folder available") RuntimeError: No shared folder available

chaoyuaw commented 1 year ago

Hi @Tangshitao ,

Can you try changing these two lines to use a folder that exists and works conveniently for you?

Tangshitao commented 1 year ago

Does the codes only work for slurm? How to run the codes on a server?

chaoyuaw commented 1 year ago

Submitit is mainly for multi-node slurm training. If you don't want to use it, simply "python main_mcc.py" would work too!

Tangshitao commented 1 year ago

Thanks, it works.