fxia22/kdnet.pytorch

How to explicity specify GPU# on code

saira05 opened this issue · 2 comments

Hi,
Your code is implemented in pytorch, i installed pytorch 0.4.0 on my account on server but server have 2 gpus and this code is by default select gpu0, which is already taken by another process can you tell me how can i specify in code then it will chose gpu 0 or 1 which is free at that time i am new to pytorch so having little trouble on this issue

thanx

Currently the code doesn't support multi GPUs so it will use the first visible GPU by default. You can select which GPU to use by setting CUDA_VISIBLE_DEVICES. For example if you run CUDA_VISIBLE_DEVICES=0 python train.py it will use GPU 0; if you run CUDA_VISIBLE_DEVICES=1 python train.py it will use GPU 1.

thanks alot