1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-04-04 19:25:56 +01:00

Gparity 48ID tuning and exposure of trajectory length as input variable

This commit is contained in:
Christopher Kelly 2021-11-16 07:31:41 -08:00
parent f7e9621492
commit a1211cdcce
2 changed files with 7 additions and 3 deletions

View File

@ -166,8 +166,10 @@ std::vector<RealD> WilsonFlow<Gimpl>::flowMeasureEnergyDensityPlaquette(const Ga
std::vector<RealD> out; std::vector<RealD> out;
GaugeField V(U); GaugeField V(U);
for (unsigned int step = 0; step < Nstep; step++) { //bn tau = epsilon*(step+1) so tau after performing step=0 is epsilon for (unsigned int step = 0; step < Nstep; step++) { //bn tau = epsilon*(step+1) so tau after performing step=0 is epsilon
std::cout << GridLogMessage << "[WilsonFlow] Evolving step " << step << std::endl;
evolve_step(V); evolve_step(V);
if( step % measure_interval == 0){ if( step % measure_interval == 0){
std::cout << GridLogMessage << "[WilsonFlow] Computing energy density for step " << step << std::endl;
out.push_back( energyDensityPlaquette(step,V) ); out.push_back( energyDensityPlaquette(step,V) );
} }
} }

View File

@ -95,6 +95,7 @@ struct EvolParameters: Serializable {
Integer, Trajectories, Integer, Trajectories,
Integer, SaveInterval, Integer, SaveInterval,
Integer, Steps, Integer, Steps,
RealD, TrajectoryLength,
bool, MetropolisTest, bool, MetropolisTest,
std::string, StartingType, std::string, StartingType,
std::vector<Integer>, GparityDirs, std::vector<Integer>, GparityDirs,
@ -111,6 +112,7 @@ struct EvolParameters: Serializable {
StartingType = "ColdStart"; StartingType = "ColdStart";
GparityDirs.resize(3, 1); //1 for G-parity, 0 for periodic GparityDirs.resize(3, 1); //1 for G-parity, 0 for periodic
Steps = 5; Steps = 5;
TrajectoryLength = 1.0;
} }
}; };
@ -489,7 +491,7 @@ int main(int argc, char **argv) {
typedef HMCWrapper::ImplPolicy GaugeImplPolicy; typedef HMCWrapper::ImplPolicy GaugeImplPolicy;
MD.name = std::string("MinimumNorm2"); MD.name = std::string("MinimumNorm2");
MD.MDsteps = user_params.Steps; MD.MDsteps = user_params.Steps;
MD.trajL = 1.0; MD.trajL = user_params.TrajectoryLength;
HMCparameters HMCparams; HMCparameters HMCparams;
HMCparams.StartTrajectory = user_params.StartTrajectory; HMCparams.StartTrajectory = user_params.StartTrajectory;
@ -578,8 +580,8 @@ int main(int argc, char **argv) {
// Collect actions // Collect actions
//////////////////////////////////// ////////////////////////////////////
ActionLevel<HMCWrapper::Field> Level1(1); //light quark + strange quark ActionLevel<HMCWrapper::Field> Level1(1); //light quark + strange quark
ActionLevel<HMCWrapper::Field> Level2(2); //DSDR ActionLevel<HMCWrapper::Field> Level2(4); //DSDR
ActionLevel<HMCWrapper::Field> Level3(4); //gauge ActionLevel<HMCWrapper::Field> Level3(2); //gauge
///////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////