Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
dlib
Commits
54723def
Commit
54723def
authored
Jan 24, 2018
by
Davis King
Browse files
Tweaked the way we compute the number of threads to use when building.
parent
344165cd
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
setup.py
setup.py
+3
-4
No files found.
setup.py
View file @
54723def
...
@@ -137,7 +137,7 @@ class CMakeBuild(build_ext):
...
@@ -137,7 +137,7 @@ class CMakeBuild(build_ext):
else
:
else
:
cmake_args
+=
[
'-DCMAKE_BUILD_TYPE='
+
cfg
]
cmake_args
+=
[
'-DCMAKE_BUILD_TYPE='
+
cfg
]
# Do a parallel build
# Do a parallel build
build_args
+=
[
'--'
,
'-j'
+
str
(
num_available_cpu_cores
(
4
))]
build_args
+=
[
'--'
,
'-j'
+
str
(
num_available_cpu_cores
(
2
))]
build_folder
=
os
.
path
.
abspath
(
self
.
build_temp
)
build_folder
=
os
.
path
.
abspath
(
self
.
build_temp
)
...
@@ -162,9 +162,8 @@ def num_available_cpu_cores(ram_per_build_process_in_gb):
...
@@ -162,9 +162,8 @@ def num_available_cpu_cores(ram_per_build_process_in_gb):
try
:
try
:
mem_bytes
=
os
.
sysconf
(
'SC_PAGE_SIZE'
)
*
os
.
sysconf
(
'SC_PHYS_PAGES'
)
mem_bytes
=
os
.
sysconf
(
'SC_PAGE_SIZE'
)
*
os
.
sysconf
(
'SC_PHYS_PAGES'
)
mem_gib
=
mem_bytes
/
(
1024.
**
3
)
mem_gib
=
mem_bytes
/
(
1024.
**
3
)
# Assume hyperthreading so divide by 2
num_cores
=
multiprocessing
.
cpu_count
()
num_cores
=
int
(
ceil
(
multiprocessing
.
cpu_count
()
/
2.0
))
# make sure we have enough ram for each build process.
# Require 4gb of ram per build thread.
mem_cores
=
int
(
floor
(
mem_gib
/
float
(
ram_per_build_process_in_gb
)
+
0.5
));
mem_cores
=
int
(
floor
(
mem_gib
/
float
(
ram_per_build_process_in_gb
)
+
0.5
));
# We are limited either by RAM or CPU cores. So pick the limiting amount
# We are limited either by RAM or CPU cores. So pick the limiting amount
# and return that.
# and return that.
...
...
Write
Preview
Markdown
is supported
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