From 81d88d9f4df1c9944c8b33db6dd123c36560757d Mon Sep 17 00:00:00 2001 From: Felix Erben Date: Wed, 27 Jan 2021 21:09:51 +0000 Subject: [PATCH] fixes --- Grid/qcd/utils/BaryonUtils.h | 63 ++++++++++++++++++------------------ 1 file changed, 32 insertions(+), 31 deletions(-) diff --git a/Grid/qcd/utils/BaryonUtils.h b/Grid/qcd/utils/BaryonUtils.h index 7393c232..d6b48ba0 100644 --- a/Grid/qcd/utils/BaryonUtils.h +++ b/Grid/qcd/utils/BaryonUtils.h @@ -52,7 +52,7 @@ public: const Gamma GammaA_right, const Gamma GammaB_right, const int parity, - const bool * wick_contractions, + const int wick_contractions, robj &result); template accelerator_inline static void BaryonSiteMatrix(const mobj &D1, @@ -62,12 +62,12 @@ public: const Gamma GammaB_left, const Gamma GammaA_right, const Gamma GammaB_right, - const bool * wick_contractions, + const int wick_contractions, robj &result); public: static void WickContractions(std::string qi, std::string qf, - bool* wick_contractions); + int &wick_contractions); static void ContractBaryons(const PropagatorField &q1_left, const PropagatorField &q2_left, const PropagatorField &q3_left, @@ -75,7 +75,7 @@ public: const Gamma GammaB_left, const Gamma GammaA_right, const Gamma GammaB_right, - const bool* wick_contractions, + const int wick_contractions, const int parity, ComplexField &baryon_corr); static void ContractBaryonsMatrix(const PropagatorField &q1_left, @@ -85,7 +85,7 @@ public: const Gamma GammaB_left, const Gamma GammaA_right, const Gamma GammaB_right, - const bool* wick_contractions, + const int wick_contractions, SpinMatrixField &baryon_corr); template static void ContractBaryonsSliced(const mobj &D1, @@ -95,7 +95,7 @@ public: const Gamma GammaB_left, const Gamma GammaA_right, const Gamma GammaB_right, - const bool* wick_contractions, + const int wick_contractions, const int parity, const int nt, robj &result); @@ -107,7 +107,7 @@ public: const Gamma GammaB_left, const Gamma GammaA_right, const Gamma GammaB_right, - const bool* wick_contractions, + const int wick_contractions, const int nt, robj &result); private: @@ -234,7 +234,7 @@ void BaryonUtils::BaryonSite(const mobj &D1, const Gamma GammaA_f, const Gamma GammaB_f, const int parity, - const bool * wick_contraction, + const int wick_contraction, robj &result) { @@ -268,7 +268,7 @@ void BaryonUtils::BaryonSite(const mobj &D1, ee = Real(eSgn_f * eSgn_i); //epsilon_sgn[ie_n] * epsilon_sgn[ie_s]; //This is the \delta_{456}^{123} part - if (wick_contraction[0]){ + if (wick_contraction & 1){ for (int rho=0; rho::BaryonSite(const mobj &D1, } } //This is the \delta_{456}^{231} part - if (wick_contraction[1]){ + if (wick_contraction & 2){ for (int rho=0; rho::BaryonSite(const mobj &D1, }} } //This is the \delta_{456}^{312} part - if (wick_contraction[2]){ + if (wick_contraction & 4){ for (int rho=0; rho::BaryonSite(const mobj &D1, }} } //This is the \delta_{456}^{132} part - if (wick_contraction[3]){ + if (wick_contraction & 8){ for (int rho=0; rho::BaryonSite(const mobj &D1, } } //This is the \delta_{456}^{321} part - if (wick_contraction[4]){ + if (wick_contraction & 16){ for (int rho=0; rho::BaryonSite(const mobj &D1, }} } //This is the \delta_{456}^{213} part - if (wick_contraction[5]){ + if (wick_contraction & 32){ for (int rho=0; rho::BaryonSiteMatrix(const mobj &D1, const Gamma GammaB_i, const Gamma GammaA_f, const Gamma GammaB_f, - const bool * wick_contraction, + const int wick_contraction, robj &result) { @@ -383,7 +383,7 @@ void BaryonUtils::BaryonSiteMatrix(const mobj &D1, ee = Real(eSgn_f * eSgn_i); //epsilon_sgn[ie_n] * epsilon_sgn[ie_s]; //This is the \delta_{456}^{123} part - if (wick_contraction[0]){ + if (wick_contraction & 1){ for (int rho_i=0; rho_i::BaryonSiteMatrix(const mobj &D1, }} } //This is the \delta_{456}^{231} part - if (wick_contraction[1]){ + if (wick_contraction & 2){ for (int rho_i=0; rho_i::BaryonSiteMatrix(const mobj &D1, }} } //This is the \delta_{456}^{312} part - if (wick_contraction[2]){ + if (wick_contraction & 4){ for (int rho_i=0; rho_i::BaryonSiteMatrix(const mobj &D1, }} } //This is the \delta_{456}^{132} part - if (wick_contraction[3]){ + if (wick_contraction & 8){ for (int rho_i=0; rho_i::BaryonSiteMatrix(const mobj &D1, }} } //This is the \delta_{456}^{321} part - if (wick_contraction[4]){ + if (wick_contraction & 16){ for (int rho_i=0; rho_i::BaryonSiteMatrix(const mobj &D1, }} } //This is the \delta_{456}^{213} part - if (wick_contraction[5]){ + if (wick_contraction & 32){ for (int rho_i=0; rho_i::BaryonSiteMatrix(const mobj &D1, * flavours. * * The array wick_contractions must be of length 6 */ template -void BaryonUtils::WickContractions(std::string qi, std::string qf, bool* wick_contractions) { +void BaryonUtils::WickContractions(std::string qi, std::string qf, int &wick_contractions) { + assert(qi.size() == 3 && qf.size() == 3 && "Only sets of 3 quarks accepted."); const int epsilon[6][3] = {{0,1,2},{1,2,0},{2,0,1},{0,2,1},{2,1,0},{1,0,2}}; + wick_contractions=0; for (int ie=0; ie < 6 ; ie++) { - wick_contractions[ie] = (qi.size() == 3 && qf.size() == 3 - && qi[0] == qf[epsilon[ie][0]] + wick_contractions += ( ( qi[0] == qf[epsilon[ie][0]] && qi[1] == qf[epsilon[ie][1]] - && qi[2] == qf[epsilon[ie][2]]); + && qi[2] == qf[epsilon[ie][2]]) ? 1 : 0) << ie; } } @@ -500,7 +501,7 @@ void BaryonUtils::ContractBaryons(const PropagatorField &q1_left, const Gamma GammaB_left, const Gamma GammaA_right, const Gamma GammaB_right, - const bool* wick_contractions, + const int wick_contractions, const int parity, ComplexField &baryon_corr) { @@ -522,9 +523,9 @@ void BaryonUtils::ContractBaryons(const PropagatorField &q1_left, bytes += grid->oSites() * (432.*sizeof(vComplex) + 126.*sizeof(int) + 36.*sizeof(Real)); for (int ie=0; ie < 6 ; ie++){ if(ie==0 or ie==3){ - bytes += grid->oSites() * (4.*sizeof(int) + 4752.*sizeof(vComplex)) * wick_contractions[ie]; + //bytes += grid->oSites() * (4.*sizeof(int) + 4752.*sizeof(vComplex)) * wick_contractions[ie]; } else{ - bytes += grid->oSites() * (64.*sizeof(int) + 5184.*sizeof(vComplex)) * wick_contractions[ie]; + //bytes += grid->oSites() * (64.*sizeof(int) + 5184.*sizeof(vComplex)) * wick_contractions[ie]; } } Real t=0.; @@ -554,7 +555,7 @@ void BaryonUtils::ContractBaryonsMatrix(const PropagatorField &q1_left, const Gamma GammaB_left, const Gamma GammaA_right, const Gamma GammaB_right, - const bool* wick_contractions, + const int wick_contractions, SpinMatrixField &baryon_corr) { @@ -595,7 +596,7 @@ void BaryonUtils::ContractBaryonsSliced(const mobj &D1, const Gamma GammaB_left, const Gamma GammaA_right, const Gamma GammaB_right, - const bool* wick_contractions, + const int wick_contractions, const int parity, const int nt, robj &result) @@ -620,7 +621,7 @@ void BaryonUtils::ContractBaryonsSlicedMatrix(const mobj &D1, const Gamma GammaB_left, const Gamma GammaA_right, const Gamma GammaB_right, - const bool* wick_contractions, + const int wick_contractions, const int nt, robj &result) {