mirror of https://github.com/davisking/dlib.git
Make use of CMAKE_BUILD_PARALLEL_LEVEL (#2879)
This commit is contained in:
parent
13c6b7a5b1
commit
f7d99ae0dc
4
setup.py
4
setup.py
|
@ -173,7 +173,9 @@ def num_available_cpu_cores(ram_per_build_process_in_gb):
|
|||
if 'TRAVIS' in os.environ and os.environ['TRAVIS']=='true':
|
||||
# When building on travis-ci, just use 2 cores since travis-ci limits
|
||||
# you to that regardless of what the hardware might suggest.
|
||||
return 2
|
||||
return 2
|
||||
elif 'CMAKE_BUILD_PARALLEL_LEVEL' in os.environ and os.environ['CMAKE_BUILD_PARALLEL_LEVEL'].isnumeric():
|
||||
return int(os.environ['CMAKE_BUILD_PARALLEL_LEVEL'])
|
||||
try:
|
||||
mem_bytes = os.sysconf('SC_PAGE_SIZE') * os.sysconf('SC_PHYS_PAGES')
|
||||
mem_gib = mem_bytes/(1024.**3)
|
||||
|
|
Loading…
Reference in New Issue