mirror of
https://github.com/paboyle/Grid.git
synced 2025-04-04 19:25:56 +01:00
fix bug in HISQSmearing; move benchmark b/c i don't understand how makefiles work
This commit is contained in:
parent
9015c229dc
commit
9d263d9a7d
@ -62,6 +62,7 @@ inline int Back(const int dir) {
|
|||||||
|
|
||||||
|
|
||||||
/*! @brief shift one unit in direction dir */
|
/*! @brief shift one unit in direction dir */
|
||||||
|
template<typename... Args>
|
||||||
void generalShift(Coordinate& shift, int dir) {
|
void generalShift(Coordinate& shift, int dir) {
|
||||||
if (dir >= BACKWARD_CONST) {
|
if (dir >= BACKWARD_CONST) {
|
||||||
dir -= BACKWARD_CONST;
|
dir -= BACKWARD_CONST;
|
||||||
@ -101,7 +102,7 @@ void appendShift(std::vector<Coordinate>& shifts, int dir, Args... args) {
|
|||||||
|
|
||||||
|
|
||||||
/*! @brief structure holding the link treatment */
|
/*! @brief structure holding the link treatment */
|
||||||
struct SmearingParameters {
|
struct SmearingParameters{
|
||||||
SmearingParameters(){}
|
SmearingParameters(){}
|
||||||
Real c_1; // 1 link
|
Real c_1; // 1 link
|
||||||
Real c_naik; // Naik term
|
Real c_naik; // Naik term
|
||||||
@ -149,10 +150,8 @@ public:
|
|||||||
|
|
||||||
SmearingParameters lt = this->_linkTreatment;
|
SmearingParameters lt = this->_linkTreatment;
|
||||||
|
|
||||||
// We create a cell with extra padding 2. This allows us to capture the LePage
|
// Create a padded cell of extra padding depth=1
|
||||||
// term without needing to save intermediate gauge fields or extra halo exchanges.
|
int depth = 1;
|
||||||
// The tradeoff is that we compute extra constructs in the padding.
|
|
||||||
int depth = 2;
|
|
||||||
PaddedCell Ghost(depth,this->_grid);
|
PaddedCell Ghost(depth,this->_grid);
|
||||||
LGF Ughost = Ghost.Exchange(u_thin);
|
LGF Ughost = Ghost.Exchange(u_thin);
|
||||||
|
|
||||||
@ -163,7 +162,9 @@ public:
|
|||||||
// This is where the 3-link constructs will be stored
|
// This is where the 3-link constructs will be stored
|
||||||
LGF Ughost_fat(Ughost.Grid());
|
LGF Ughost_fat(Ughost.Grid());
|
||||||
|
|
||||||
// Create a stencil, which is a collection of sites neighboring some initial site.
|
// Create 3-link stencil. Writing your own stencil, you're hard-coding the
|
||||||
|
// periodic BCs, so you don't need the policy-based stuff, at least for now.
|
||||||
|
// Loop over all orientations, i.e. demand mu != nu.
|
||||||
std::vector<Coordinate> shifts;
|
std::vector<Coordinate> shifts;
|
||||||
for(int mu=0;mu<Nd;mu++)
|
for(int mu=0;mu<Nd;mu++)
|
||||||
for(int nu=0;nu<Nd;nu++) {
|
for(int nu=0;nu<Nd;nu++) {
|
||||||
@ -174,6 +175,7 @@ public:
|
|||||||
appendShift(shifts,mu,Back(nu));
|
appendShift(shifts,mu,Back(nu));
|
||||||
appendShift(shifts,Back(nu));
|
appendShift(shifts,Back(nu));
|
||||||
}
|
}
|
||||||
|
|
||||||
GeneralLocalStencil gStencil(GhostGrid,shifts);
|
GeneralLocalStencil gStencil(GhostGrid,shifts);
|
||||||
|
|
||||||
Ughost_fat=Zero();
|
Ughost_fat=Zero();
|
||||||
@ -204,23 +206,15 @@ public:
|
|||||||
// stored link oriented compared to the one you want? If I imagine myself travelling
|
// stored link oriented compared to the one you want? If I imagine myself travelling
|
||||||
// with the to-be-updated link, I have two possible, alternative 3-link paths I can
|
// with the to-be-updated link, I have two possible, alternative 3-link paths I can
|
||||||
// take, one starting by going to the left, the other starting by going to the right.
|
// take, one starting by going to the left, the other starting by going to the right.
|
||||||
auto U0 = adj(U_v[x_p_mu](nu));
|
auto U0 = U_v[x_p_mu ](nu); gpermute(U0,SE0->_permute);
|
||||||
auto U1 = U_v[x_p_nu](mu) ;
|
auto U1 = U_v[x_p_nu ](mu); gpermute(U1,SE1->_permute);
|
||||||
auto U2 = U_v[x ](nu) ;
|
auto U2 = U_v[x ](nu); gpermute(U2,SE2->_permute);
|
||||||
|
auto U3 = U_v[x_p_mu_m_nu](nu); gpermute(U3,SE3->_permute);
|
||||||
|
auto U4 = U_v[x_m_nu ](mu); gpermute(U4,SE4->_permute);
|
||||||
|
auto U5 = U_v[x_m_nu ](nu); gpermute(U5,SE4->_permute);
|
||||||
|
|
||||||
gpermute(U0,SE0->_permute);
|
// "left" "right"
|
||||||
gpermute(U1,SE1->_permute);
|
auto W = U2*U1*adj(U0) + adj(U5)*U4*U3;
|
||||||
gpermute(U2,SE2->_permute);
|
|
||||||
|
|
||||||
auto U3 = U_v[x_p_mu_m_nu](nu) ;
|
|
||||||
auto U4 = U_v[x_m_nu ](mu) ;
|
|
||||||
auto U5 = adj(U_v[x_m_nu ](nu));
|
|
||||||
|
|
||||||
gpermute(U3,SE3->_permute);
|
|
||||||
gpermute(U4,SE4->_permute);
|
|
||||||
|
|
||||||
// "left" "right"
|
|
||||||
auto W = U2*U1*U0 + U5*U4*U3;
|
|
||||||
U_fat_v[ss](mu) = U_fat_v[ss](mu) + W;
|
U_fat_v[ss](mu) = U_fat_v[ss](mu) + W;
|
||||||
|
|
||||||
s=s+5;
|
s=s+5;
|
||||||
@ -235,8 +229,6 @@ public:
|
|||||||
// };
|
// };
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/*! @brief create long links from link variables. */
|
/*! @brief create long links from link variables. */
|
||||||
template<class LGF>
|
template<class LGF>
|
||||||
class Smear_HISQ_Naik {
|
class Smear_HISQ_Naik {
|
||||||
@ -261,4 +253,4 @@ public:
|
|||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
NAMESPACE_END(Grid);
|
NAMESPACE_END(Grid);
|
@ -98,7 +98,7 @@ int main (int argc, char** argv) {
|
|||||||
LatticeGaugeField diff(&GRID);
|
LatticeGaugeField diff(&GRID);
|
||||||
diff = Umu-U_smr;
|
diff = Umu-U_smr;
|
||||||
auto absDiff = norm2(diff)/norm2(Umu);
|
auto absDiff = norm2(diff)/norm2(Umu);
|
||||||
Grid_log(" |Umu-U|/|Umu| =",absDiff);
|
Grid_log(" |Umu-U|/|Umu| = ",absDiff);
|
||||||
|
|
||||||
Grid_finalize();
|
Grid_finalize();
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user