Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
N
Niflib
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
Container 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
Grant Kim
Niflib
Commits
86b03700
Commit
86b03700
authored
18 years ago
by
Amorilia
Browse files
Options
Downloads
Patches
Plain Diff
improved detection of number of processors
parent
7b19fafb
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
SConstruct
+1
-1
1 addition, 1 deletion
SConstruct
with
1 addition
and
1 deletion
SConstruct
+
1
−
1
View file @
86b03700
...
@@ -87,7 +87,7 @@ if arch == 'x86_64' and TUNE == 'yes':
...
@@ -87,7 +87,7 @@ if arch == 'x86_64' and TUNE == 'yes':
#We want to detect the number of jobs! Although some folks depending on sys load may want to set it more aggressively.
#We want to detect the number of jobs! Although some folks depending on sys load may want to set it more aggressively.
if
DETECT_JOBS
==
'
yes
'
and
OS
==
'
linux
'
:
if
DETECT_JOBS
==
'
yes
'
and
OS
==
'
linux
'
:
detected_jobs
=
commands
.
getoutput
(
'
cat /proc/cpuinfo | grep -c processor
'
)
detected_jobs
=
commands
.
getoutput
(
'
cat /proc/cpuinfo | grep -c
"
^
processor
"
'
)
if
detected_jobs
>=
'
1
'
:
if
detected_jobs
>=
'
1
'
:
print
"
Detected Jobs: %s
"
%
detected_jobs
print
"
Detected Jobs: %s
"
%
detected_jobs
JOBS
=
detected_jobs
JOBS
=
detected_jobs
...
...
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