Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
AGULLO Emmanuel
Chameleon
Commits
e49b76d4
Commit
e49b76d4
authored
Sep 29, 2015
by
PRUVOST Florent
Browse files
use warmup option by default for timings
parent
6f5abd11
Changes
2
Hide whitespace changes
Inline
Side-by-side
timing/CTestLists.cmake
View file @
e49b76d4
...
...
@@ -39,7 +39,7 @@ foreach(cat ${TEST_CATEGORIES})
if
(
CHAMELEON_PREC_
${
PREC
}
)
foreach
(
test
${
TESTLIST
}
)
add_test
(
time_
${
cat
}
_
${
prec
}${
test
}
${
MPI_CMD_
${
cat
}}
./time_
${
prec
}${
test
}
_tile
${
TEST_CMD_
${
cat
}}
--check --
no
warmup
)
add_test
(
time_
${
cat
}
_
${
prec
}${
test
}
${
MPI_CMD_
${
cat
}}
./time_
${
prec
}${
test
}
_tile
${
TEST_CMD_
${
cat
}}
--check --warmup
)
endforeach
()
endif
()
endforeach
()
...
...
@@ -48,7 +48,7 @@ foreach(cat ${TEST_CATEGORIES})
if
(
CHAMELEON_PREC_
${
PREC
}
)
foreach
(
test
${
TESTLIST_ZC
}
)
add_test
(
time_
${
cat
}
_
${
prec
}${
test
}
${
MPI_CMD_
${
cat
}}
./time_
${
prec
}${
test
}
_tile
${
TEST_CMD_
${
cat
}}
--check --
no
warmup
)
add_test
(
time_
${
cat
}
_
${
prec
}${
test
}
${
MPI_CMD_
${
cat
}}
./time_
${
prec
}${
test
}
_tile
${
TEST_CMD_
${
cat
}}
--check --warmup
)
endforeach
()
endif
()
endforeach
()
...
...
@@ -71,7 +71,7 @@ if (CHAMELEON_USE_MPI AND MPI_C_FOUND)
if
(
CHAMELEON_PREC_
${
PREC
}
)
foreach
(
test
${
TESTLIST_MPI
}
)
add_test
(
time_
${
cat
}
_
${
prec
}${
test
}
${
MPI_CMD_
${
cat
}}
./time_
${
prec
}${
test
}
_tile
${
TEST_CMD_
${
cat
}}
--check --
no
warmup
)
add_test
(
time_
${
cat
}
_
${
prec
}${
test
}
${
MPI_CMD_
${
cat
}}
./time_
${
prec
}${
test
}
_tile
${
TEST_CMD_
${
cat
}}
--check --warmup
)
endforeach
()
endif
()
endforeach
()
...
...
timing/timing.c
View file @
e49b76d4
...
...
@@ -346,7 +346,7 @@ show_help(char *prog_name) {
" --[a]sync Enable/Disable synchronous calls in wrapper function such as POTRI. (default: async)
\n
"
" --[no]check Check result (default: nocheck)
\n
"
" --[no]inv Check on inverse (default: noinv)
\n
"
" --[no]warmup Perform a warmup run to pre-load libraries (default:
no
warmup)
\n
"
" --[no]warmup Perform a warmup run to pre-load libraries (default: warmup)
\n
"
" --[no]trace Enable/Disable trace generation (default: notrace)
\n
"
" --[no]dag Enable/Disable DAG generation (default: nodag)
\n
"
" Generates a dot_dag_file.dot.
\n
"
...
...
@@ -461,7 +461,7 @@ main(int argc, char *argv[]) {
iparam
[
IPARAM_NB
]
=
128
;
iparam
[
IPARAM_IB
]
=
32
;
iparam
[
IPARAM_NITER
]
=
1
;
iparam
[
IPARAM_WARMUP
]
=
0
;
iparam
[
IPARAM_WARMUP
]
=
1
;
iparam
[
IPARAM_CHECK
]
=
0
;
iparam
[
IPARAM_VERBOSE
]
=
0
;
iparam
[
IPARAM_AUTOTUNING
]
=
0
;
...
...
Write
Preview
Supports
Markdown
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