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

Added streaming stores

This commit is contained in:
Peter Boyle
2015-05-05 18:09:28 +01:00
parent b720222d98
commit 249165d1b2
5 changed files with 71 additions and 7 deletions

View File

@ -186,6 +186,10 @@ namespace Grid {
#endif
}
friend inline void vstream(vInteger & out,const vInteger &in){
out=in;
}
friend inline void vprefetch(const vInteger &v)
{
_mm_prefetch((const char*)&v.v,_MM_HINT_T0);