1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-06-10 19:36:56 +01:00
This commit is contained in:
Peter Boyle
2016-12-01 12:42:53 +00:00
parent f7a6b8e5ed
commit e27c6b217c
3 changed files with 10 additions and 5 deletions

View File

@ -124,7 +124,10 @@ PARALLEL_FOR_LOOP
}
#else
for(int v=0;v<LLs;v++){
vprefetch(psi[ss+v+LLs]);
// vprefetch(phi[ss+v+LLs]);
int vp= (v==LLs-1) ? 0 : v+1;
int vm= (v==0 ) ? LLs-1 : v-1;