Skip to content

Commit

Permalink
Reactivate block_transfer.
Browse files Browse the repository at this point in the history
  • Loading branch information
joudinet committed Jan 10, 2014
1 parent 7e1d77b commit 07394b0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test_lib.cc
Original file line number Diff line number Diff line change
Expand Up @@ -192,9 +192,9 @@ int main(int argc, char* argv[]) {
}
unsigned r = (std::rand() % public_size) + 1;
std::cerr << i << ": transferring " << r << " from " << c1 << " to " << c2 << std::endl;
// block_transfer (dmanagers, d, c1, c2, r, block_size, (argc > 9), i);
ptime before (microsec_clock::local_time());
dmanagers.transfer (d, r, c1, c2);
// dmanagers.transfer (d, r, c1, c2);
block_transfer (dmanagers, d, c1, c2, r, block_size, (argc > 9), i);
ptime after (microsec_clock::local_time());
time_duration td = after - before;
if (argc>9) ftime << i << ": " << td.total_microseconds () << std::endl;
Expand Down

0 comments on commit 07394b0

Please sign in to comment.