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
7c8c842a
Commit
7c8c842a
authored
Sep 10, 2010
by
Andreas Zwinkau
Browse files
Changing defaults
parent
02c494c0
Changes
1
Hide whitespace changes
Inline
Side-by-side
spec.py
View file @
7c8c842a
...
...
@@ -52,8 +52,8 @@ parser.add_option("--no-large", action="store_true", default=False,
parser
.
add_option
(
"-i"
,
"--iterations"
,
metavar
=
"ITR"
,
default
=
3
,
help
=
"Evaluate ITR iterations per program, default=3"
)
parser
.
add_option
(
"--c-compiler"
,
metavar
=
"CC"
,
default
=
"
cparser
"
,
help
=
"Use CC to build benchmark programs, default=
cparser
"
)
parser
.
add_option
(
"--c-compiler"
,
metavar
=
"CC"
,
default
=
"
gcc
"
,
help
=
"Use CC to build benchmark programs, default=
gcc
"
)
parser
.
add_option
(
"--fortran-compiler"
,
metavar
=
"FC"
,
default
=
"gfortran"
,
help
=
"Use FC to build benchmark programs, default=gfortran"
)
parser
.
add_option
(
"--cpp-compiler"
,
metavar
=
"CXX"
,
default
=
"g++"
,
...
...
@@ -61,12 +61,12 @@ parser.add_option("--cpp-compiler", metavar="CXX", default="g++",
parser
.
add_option
(
"--compiler-args"
,
metavar
=
"FLAGS"
,
default
=
"-O3"
,
help
=
"Append FLAGS to build benchmark programs for all compilers, default=-O3"
)
parser
.
add_option
(
"--c-compiler-args"
,
metavar
=
"CFLAGS"
,
default
=
""
,
help
=
"Append CFLAGS to build benchmark programs for C compiler, default
empty
"
)
parser
.
add_option
(
"--c-compiler-args"
,
metavar
=
"CFLAGS"
,
default
=
"
-march=native
"
,
help
=
"Append CFLAGS to build benchmark programs for C compiler, default
march=native
"
)
parser
.
add_option
(
"--fortran-compiler-args"
,
metavar
=
"FFLAGS"
,
default
=
""
,
help
=
"Append FFLAGS to build benchmark programs for Fortran compiler, default empty"
)
parser
.
add_option
(
"--cpp-compiler-args"
,
metavar
=
"CFLAGS"
,
default
=
""
,
help
=
"Append CFLAGS to build benchmark programs for C++ compiler, default
empty
"
)
parser
.
add_option
(
"--cpp-compiler-args"
,
metavar
=
"CFLAGS"
,
default
=
"
-march=native
"
,
help
=
"Append CFLAGS to build benchmark programs for C++ compiler, default
march=native
"
)
# http://www.spec.org/cpu2006/Docs/config.html
...
...
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