We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
First, I set gpu_id in file: tools/inference.py deploy_cfg['gpu_id'] = '2'
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
The text was updated successfully, but these errors were encountered:
No branches or pull requests
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
But I got print like this.
The text was updated successfully, but these errors were encountered: