Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
IPDSnelting
spec.py
Commits
1a391f63
Commit
1a391f63
authored
Sep 08, 2010
by
Andreas Zwinkau
Browse files
cpu count backwards compatible to CPU2000
parent
bed5c511
Changes
1
Hide whitespace changes
Inline
Side-by-side
spec.py
View file @
1a391f63
...
...
@@ -250,7 +250,8 @@ def generate_spec_config(options):
cores_per_chip
=
int
(
cpuinfo
[
"cpu cores"
])
cores
=
cores_per_chip
*
chips
contents
.
append
(
"hw_nchips = %d"
%
chips
)
contents
.
append
(
"hw_ncores = %d"
%
cores
)
contents
.
append
(
"hw_ncores = %d"
%
cores
)
# CPU2006
contents
.
append
(
"hw_ncpu = %d"
%
cores
)
# CPU2000
contents
.
append
(
"hw_ncoresperchip = %d"
%
cores_per_chip
)
contents
.
append
(
"hw_vendor = %s"
%
cpuinfo
[
"vendor_id"
])
contents
.
append
(
"hw_memory = %s"
%
meminfo
[
"MemTotal"
])
...
...
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