[mvapich-discuss] OSU MPI one-sided micro-benchmark typo (?)

Sayan Ghosh sayandeep52 at gmail.com
Wed Dec 4 19:31:34 EST 2013


In the latest OSU Micro-benchmarks 4.2 (MPI one-sided), I notice a probable
typo, causing this to show up in stdout for some of the benchmarks:

# OSU One Sided MPI_Get latency Test
# Size            Latency (us)
*0*                         1.74
...

I guess size/count could be started from 1 and not 0

< for (count = 0; count <= MAX_SIZE / sizeof(int); count = (count ? count
<< 1 : 1)) {
>  for (count = 1; count <= MAX_SIZE / sizeof(int); count = count << 1) {


-- 
Regards,
Sayan
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mailman.cse.ohio-state.edu/pipermail/mvapich-discuss/attachments/20131204/1971ff13/attachment.html>


More information about the mvapich-discuss mailing list