1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-06-12 20:27:06 +01:00

Fix for AVXFMA

This commit is contained in:
Guido Cossu
2016-10-10 14:43:37 +01:00
parent 70c32fa49b
commit b56c9ffa52
3 changed files with 13 additions and 5 deletions

View File

@ -186,10 +186,10 @@ namespace Grid {
inline void InsertForce5D(GaugeField &mat, FermionField &Btilde, FermionField &Atilde,int mu){
int Ls=Btilde._grid->_fdimensions[0];
GaugeLinkField tmp(mat._grid);
tmp = zero;
PARALLEL_FOR_LOOP
PARALLEL_FOR_LOOP
for(int sss=0;sss<tmp._grid->oSites();sss++){
int sU=sss;
for(int s=0;s<Ls;s++){
@ -198,7 +198,7 @@ namespace Grid {
}
}
PokeIndex<LorentzIndex>(mat,tmp,mu);
}
};