Skip to content

Commit

Permalink
Typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
arjunsuresh committed Sep 7, 2022
1 parent 5ce9f1b commit 63c1e6d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def preprocess(i):
if 'CM_NUM_THREADS' not in env:
if 'CM_MINIMIZE_THREADS' in env:
env['CM_NUM_THREADS'] = str(int(env['CM_HOST_CPU_TOTAL_CORES']) // \
(int(env.get('CM_HOST_CPU_SOCKETS', '1') * int(env.get('CM_HOST_CPU_TOTAL_CORES', '1'))))
(int(env.get('CM_HOST_CPU_SOCKETS', '1')) * int(env.get('CM_HOST_CPU_TOTAL_CORES', '1'))))
else:
env['CM_NUM_THREADS'] = env.get('CM_HOST_CPU_TOTAL_CORES', '1')

Expand Down

0 comments on commit 63c1e6d

Please sign in to comment.