Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Gregory Ashton
PyFstat
Commits
b86bcac9
Commit
b86bcac9
authored
Jan 12, 2018
by
David Keitel
Browse files
GPU device selection: default when no env variable set
parent
95487807
Changes
1
Show whitespace changes
Inline
Side-by-side
pyfstat/tcw_fstat_map_funcs.py
View file @
b86bcac9
...
...
@@ -129,7 +129,10 @@ def init_transient_fstat_map_features ( ):
for
n
,
devn
in
enumerate
(
devices
):
logging
.
debug
(
'device {} model: {}, RAM: {}MB'
.
format
(
n
,
devn
.
name
(),
devn
.
total_memory
()
/
(
2.
**
20
)
))
if
'CUDA_DEVICE'
in
os
.
environ
:
devnum
=
int
(
os
.
environ
[
'CUDA_DEVICE'
])
else
:
devnum
=
0
devn
=
drv
.
Device
(
devnum
)
logging
.
info
(
'Choosing CUDA device {}, of {} devices present: {}... (Can be changed through environment variable $CUDA_DEVICE.)'
.
format
(
devnum
,
num_gpus
,
devn
.
name
()))
logging
.
debug
(
'Available GPU memory: {}/{} MB free'
.
format
(
drv
.
mem_get_info
()[
0
]
/
(
2.
**
20
),
drv
.
mem_get_info
()[
1
]
/
(
2.
**
20
)))
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment