1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-04-04 19:25:56 +01:00

Integer wrap problem fixed.

This commit is contained in:
Peter Boyle 2015-05-29 14:11:34 +01:00
parent 67fa5691e5
commit 59db857ad1

View File

@ -77,7 +77,8 @@ int main (int argc, char ** argv)
} }
double stop=usecond(); double stop=usecond();
double xbytes = Nloop*bytes*2*ncomm; double dbytes = bytes;
double xbytes = Nloop*dbytes*2.0*ncomm;
double rbytes = xbytes; double rbytes = xbytes;
double bidibytes = xbytes+rbytes; double bidibytes = xbytes+rbytes;
@ -152,7 +153,8 @@ int main (int argc, char ** argv)
double stop=usecond(); double stop=usecond();
double xbytes = Nloop*bytes*2*ncomm; double dbytes = bytes;
double xbytes = Nloop*dbytes*2.0*ncomm;
double rbytes = xbytes; double rbytes = xbytes;
double bidibytes = xbytes+rbytes; double bidibytes = xbytes+rbytes;