[mpich] MPICH primary repository branch, master, updated. v3.2b4-204-g0c218fb
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "MPICH primary repository". The branch, master has been updated via 0c218fbbfc236b1234bd839ff210255a5aa9ee43 (commit) via c59b7afed54104222b73b19e4d4f3018e1d03d2d (commit) from bca4f10ba6c42df71900da3c8ec1576db447877b (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- http://git.mpich.org/mpich.git/commitdiff/0c218fbbfc236b1234bd839ff210255a5a... commit 0c218fbbfc236b1234bd839ff210255a5aa9ee43 Author: Ken Raffenetti <[email protected]> Date: Thu Aug 27 15:13:56 2015 -0700 remove init_wtick from Solaris timer implementation On Solaris, we simply return the documented resolution of gethrtime. There is no need to measure in this case. Signed-off-by: Halim Amer <[email protected]> diff --git a/src/util/timers/mpiu_timer.c b/src/util/timers/mpiu_timer.c index 79a5c65..ad4760b 100644 --- a/src/util/timers/mpiu_timer.c +++ b/src/util/timers/mpiu_timer.c @@ -82,7 +82,6 @@ double MPIU_Wtick(void) int MPIU_Wtime_init(void) { - init_wtick(); return 0; } http://git.mpich.org/mpich.git/commitdiff/c59b7afed54104222b73b19e4d4f3018e1... commit c59b7afed54104222b73b19e4d4f3018e1d03d2d Author: Ken Raffenetti <[email protected]> Date: Thu Aug 27 11:41:00 2015 -0700 initialize tickval with gettimeofday timer Initialiazation was missing, leading to a bogus value returned from MPI_Wtick. Signed-off-by: Halim Amer <[email protected]> diff --git a/src/util/timers/mpiu_timer.c b/src/util/timers/mpiu_timer.c index 9ae6e8f..79a5c65 100644 --- a/src/util/timers/mpiu_timer.c +++ b/src/util/timers/mpiu_timer.c @@ -184,6 +184,7 @@ double MPIU_Wtick(void) int MPIU_Wtime_init(void) { + init_wtick(); return 0; } ----------------------------------------------------------------------- Summary of changes: src/util/timers/mpiu_timer.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) hooks/post-receive -- MPICH primary repository
participants (1)
-
noreply@mpich.org