mirror of
https://github.com/paboyle/Grid.git
synced 2025-04-03 02:35:55 +01:00
additional fixed in slice functions
This commit is contained in:
parent
0c66719210
commit
3789e3f31c
@ -374,7 +374,7 @@ void InsertSlice(Lattice<vobj> &lowDim,Lattice<vobj> & higherDim,int slice, int
|
|||||||
assert(nl+1 == nh);
|
assert(nl+1 == nh);
|
||||||
assert(orthog<nh);
|
assert(orthog<nh);
|
||||||
assert(orthog>=0);
|
assert(orthog>=0);
|
||||||
assert(hg->_processors[orthog]==0);
|
assert(hg->_processors[orthog]==1);
|
||||||
|
|
||||||
int dl; dl = 0;
|
int dl; dl = 0;
|
||||||
for(int d=0;d<nh;d++){
|
for(int d=0;d<nh;d++){
|
||||||
@ -398,8 +398,8 @@ PARALLEL_FOR_LOOP
|
|||||||
hcoor[d]=lcoor[dl++];
|
hcoor[d]=lcoor[dl++];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
peekLocalSite(s,higherDim,hcoor);
|
peekLocalSite(s,lowDim,lcoor);
|
||||||
pokeLocalSite(s,lowDim,lcoor);
|
pokeLocalSite(s,higherDim,hcoor);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -417,7 +417,7 @@ void ExtractSlice(Lattice<vobj> &lowDim, Lattice<vobj> & higherDim,int slice, in
|
|||||||
assert(nl+1 == nh);
|
assert(nl+1 == nh);
|
||||||
assert(orthog<nh);
|
assert(orthog<nh);
|
||||||
assert(orthog>=0);
|
assert(orthog>=0);
|
||||||
assert(hg->_processors[orthog]==0);
|
assert(hg->_processors[orthog]==1);
|
||||||
|
|
||||||
int dl; dl = 0;
|
int dl; dl = 0;
|
||||||
for(int d=0;d<nh;d++){
|
for(int d=0;d<nh;d++){
|
||||||
@ -440,8 +440,8 @@ PARALLEL_FOR_LOOP
|
|||||||
hcoor[d]=lcoor[dl++];
|
hcoor[d]=lcoor[dl++];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
peekLocalSite(s,lowDim,lcoor);
|
peekLocalSite(s,higherDim,hcoor);
|
||||||
pokeLocalSite(s,higherDim,hcoor);
|
pokeLocalSite(s,lowDim,lcoor);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user