Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
distiller
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
llvm
distiller
Commits
0edfb5a9
Commit
0edfb5a9
authored
6 years ago
by
Neta Zmora
Browse files
Options
Downloads
Patches
Plain Diff
compress_classifier.py: fix handling of --cpu application argument
parent
5222da58
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
examples/classifier_compression/compress_classifier.py
+2
-2
2 additions, 2 deletions
examples/classifier_compression/compress_classifier.py
with
2 additions
and
2 deletions
examples/classifier_compression/compress_classifier.py
+
2
−
2
View file @
0edfb5a9
...
...
@@ -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
:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment