mirror of
https://github.com/paboyle/Grid.git
synced 2025-06-16 23:07:05 +01:00
Updated to have perfect prefetching for the s-vectorised kernel with any cache blocking.
This commit is contained in:
@ -272,6 +272,11 @@
|
||||
if (local) return base + _entries[ent]._byte_offset;
|
||||
else return _entries[ent]._byte_offset;
|
||||
}
|
||||
inline uint64_t GetPFInfo(int ent,uint64_t base) {
|
||||
int local = _entries[ent]._is_local;
|
||||
if (local) return base + _entries[ent]._byte_offset;
|
||||
else return _entries[ent]._byte_offset;
|
||||
}
|
||||
|
||||
// Comms buffers
|
||||
std::vector<Vector<scalar_object> > u_simd_send_buf;
|
||||
|
Reference in New Issue
Block a user