1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-06-16 23:07:05 +01:00

Timing reports in benchmarks now reflect the asynch comms thread statistics

This commit is contained in:
paboyle
2016-01-04 14:42:16 +00:00
parent 02452afd36
commit c99d748da6
3 changed files with 10 additions and 5 deletions

View File

@ -465,8 +465,6 @@ namespace Grid {
std::thread HaloExchangeBegin(const Lattice<vobj> &source,std::vector<cobj,alignedAllocator<cobj> > & u_comm_buf,compressor &compress) {
return std::thread([&] { this->HaloExchangeBlocking(source,u_comm_buf,compress); });
// std::thread t(&HaloExchangeBlocking,this,source,u_comm_buf,compress);
// return t;
}
void HaloExchangeBlocking(const Lattice<vobj> &source,std::vector<cobj,alignedAllocator<cobj> > &u_comm_buf,compressor &compress)