Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

set specific gpu_id for inference, but still use gpu 0 #82

Open
Amoko opened this issue Sep 26, 2021 · 0 comments
Open

set specific gpu_id for inference, but still use gpu 0 #82

Amoko opened this issue Sep 26, 2021 · 0 comments

Comments

@Amoko
Copy link

Amoko commented Sep 26, 2021

First, I set gpu_id in file: tools/inference.py
deploy_cfg['gpu_id'] = '2'

Then, I check the gpu device in file: vedastr/runners/inference_runner.py

    def load_checkpoint(self, filename, map_location='default', strict=True):
        self.logger.info('Load checkpoint from {}'.format(filename))

        if map_location == 'default':
            if self.use_gpu:
                device_id = torch.cuda.current_device()
                print('recog true used gpu:', device_id)
                map_location = lambda storage, loc: storage.cuda(device_id)

But I got print like this.

recog true used gpu: 0

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant