Skip to content
Snippets Groups Projects
Commit 0edfb5a9 authored by Neta Zmora's avatar Neta Zmora
Browse files

compress_classifier.py: fix handling of --cpu application argument

parent 5222da58
No related branches found
No related tags found
No related merge requests found
......@@ -142,7 +142,7 @@ parser.add_argument('--deterministic', '--det', action='store_true',
help='Ensure deterministic execution for re-producible results.')
parser.add_argument('--gpus', metavar='DEV_ID', default=None,
help='Comma-separated list of GPU device IDs to be used (default is to use all available devices)')
parser.add_argument('--cpu', action='store_true',
parser.add_argument('--cpu', action='store_true', default=False,
help='Use CPU only. \n'
'Flag not set => uses GPUs according to the --gpus flag value.'
'Flag set => overrides the --gpus flag')
......@@ -294,7 +294,7 @@ def main():
# results are not re-produced when benchmark is set. So enabling only if deterministic mode disabled.
cudnn.benchmark = True
if args.cpu is not None or not torch.cuda.is_available():
if args.cpu or not torch.cuda.is_available():
# Set GPU index to -1 if using CPU
args.device = 'cpu'
else:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment