Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Rob Latham
mpich-CVS
Commits
af4c1263
Commit
af4c1263
authored
Oct 13, 2007
by
gropp
Browse files
Added device option for --with-timer
parent
f05dcd59
Changes
1
Hide whitespace changes
Inline
Side-by-side
configure.in
View file @
af4c1263
...
...
@@ -4608,6 +4608,7 @@ for MPI_Wtime and internal timestamps. name may be one of
linux86_cycle - Linux x86; returns cycle counts, not time in seconds
linuxalpha_cycle - Like linux86_cycle, but for Linux Alpha
gcc_ia64_cycle - IPF ar.itc timer
device - The timer is provided by the device
],timer_type=$enable_timer_type)
if test -z "$timer_type" ; then
...
...
@@ -4807,6 +4808,14 @@ pac_cv_linuxalpha_cycle,[
MPID_TIMER_TYPE="long"
;;
device)
# The device selected should export the datatype for the timer
# in MPID_DEVICE_TIMER_TYPE if something other than long is needed
if test -n "$MPID_DEVICE_TIMER_TYPE" ; then
MPID_TIMER_TYPE=$MPID_DEVICE_TIMER_TYPE
fi
;;
*)
AC_MSG_ERROR([Invalid timer type $timer_type])
;;
...
...
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