1
0
mirror of https://github.com/paboyle/Grid.git synced 2024-09-20 09:15:38 +01:00

Dirichlet fix

This commit is contained in:
Peter Boyle 2022-06-15 00:05:20 -04:00
parent 501bb117bf
commit fdef7a1a8c

View File

@ -92,6 +92,15 @@ WilsonFermion5D<Impl>::WilsonFermion5D(GaugeField &_Umu,
assert(FourDimRedBlackGrid._simd_layout[d] ==FourDimGrid._simd_layout[d]);
}
if ( p.dirichlet.size() ) {
Coordinate block = p.dirichlet;
assert(block.size()==Nd+1);
if ( block[0] || block[1] || block[2] || block[3] || block[4] ){
Dirichlet = 1;
Block = block;
}
}
if (Impl::LsVectorised) {
int nsimd = Simd::Nsimd();