mirror of
https://github.com/paboyle/Grid.git
synced 2025-04-04 19:25:56 +01:00
GET not put has kinder barrier sequence for NVLINK type access as when
GET is done, I can use it without barrier. Moves a barrier to a nicer place, overlapped with DtoH DMA
This commit is contained in:
parent
382e0abefd
commit
a7a16df9d0
@ -501,6 +501,9 @@ public:
|
|||||||
void HaloGather(const Lattice<vobj> &source,compressor &compress)
|
void HaloGather(const Lattice<vobj> &source,compressor &compress)
|
||||||
{
|
{
|
||||||
// accelerator_barrier();
|
// accelerator_barrier();
|
||||||
|
//////////////////////////////////
|
||||||
|
// I will overwrite my send buffers
|
||||||
|
//////////////////////////////////
|
||||||
_grid->StencilBarrier();// Synch shared memory on a single nodes
|
_grid->StencilBarrier();// Synch shared memory on a single nodes
|
||||||
|
|
||||||
assert(source.Grid()==_grid);
|
assert(source.Grid()==_grid);
|
||||||
@ -514,7 +517,12 @@ public:
|
|||||||
HaloGatherDir(source,compress,point,face_idx);
|
HaloGatherDir(source,compress,point,face_idx);
|
||||||
}
|
}
|
||||||
accelerator_barrier(); // All my local gathers are complete
|
accelerator_barrier(); // All my local gathers are complete
|
||||||
// _grid->StencilBarrier();// Synch shared memory on a single nodes
|
#ifdef NVLINK_GET
|
||||||
|
#warning "NVLINK_GET"
|
||||||
|
_grid->StencilBarrier(); // He can now get mu local gather, I can get his
|
||||||
|
// Synch shared memory on a single nodes; could use an asynchronous barrier here and defer check
|
||||||
|
// Or issue barrier AFTER the DMA is running
|
||||||
|
#endif
|
||||||
face_table_computed=1;
|
face_table_computed=1;
|
||||||
assert(u_comm_offset==_unified_buffer_size);
|
assert(u_comm_offset==_unified_buffer_size);
|
||||||
}
|
}
|
||||||
@ -553,6 +561,7 @@ public:
|
|||||||
coalescedWrite(to[j] ,coalescedRead(from [j]));
|
coalescedWrite(to[j] ,coalescedRead(from [j]));
|
||||||
});
|
});
|
||||||
acceleratorFenceComputeStream();
|
acceleratorFenceComputeStream();
|
||||||
|
// Also fenced in WilsonKernels
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user