diff --git a/Hadrons/Modules/MDistil/LapEvec.hpp b/Hadrons/Modules/MDistil/LapEvec.hpp index 829cfcf7..1e0f459b 100644 --- a/Hadrons/Modules/MDistil/LapEvec.hpp +++ b/Hadrons/Modules/MDistil/LapEvec.hpp @@ -335,7 +335,7 @@ void TLapEvec::execute(void) // Now write out the 4d eigenvectors eig4d.record.operatorXml = DefaultOperatorXml; eig4d.record.solverXml = DefaultsolverXml; - eig4d.write(sEigenPackName,false); + eig4d.write(sEigenPackName + "." + std::to_string(vm().getTrajectory()),false); // Close the local debugging log file if( ll ) { diff --git a/Hadrons/Modules/MDistil/PerambFromSolve.hpp b/Hadrons/Modules/MDistil/PerambFromSolve.hpp index 413a5d26..63a98af5 100644 --- a/Hadrons/Modules/MDistil/PerambFromSolve.hpp +++ b/Hadrons/Modules/MDistil/PerambFromSolve.hpp @@ -201,7 +201,7 @@ void TPerambFromSolve::execute(void) } if(PerambFileName.length()) - perambulator.WriteBinary(PerambFileName); + perambulator.WriteBinary(PerambFileName + "." + std::to_string(vm().getTrajectory())); } diff --git a/Hadrons/Modules/MDistil/PerambLight.hpp b/Hadrons/Modules/MDistil/PerambLight.hpp index 1d78b202..d7d599b9 100644 --- a/Hadrons/Modules/MDistil/PerambLight.hpp +++ b/Hadrons/Modules/MDistil/PerambLight.hpp @@ -184,7 +184,7 @@ void TPerambLight::execute(void) //Create Noises GridSerialRNG sRNG; - sRNG.SeedUniqueString(UniqueIdentifier); //maybe add trajectory number?? + sRNG.SeedUniqueString(UniqueIdentifier + std::to_string(vm().getTrajectory())); //maybe add more?? Real rn; for (int inoise=0;inoise::execute(void) } // Load perambulator if it exists on disk instead of creating it - const std::string &PerambFileName{par().PerambFileName}; + // Not sure this is how we want it - rather specify an input flag 'read' + // and assert that the file is there. +/* const std::string &PerambFileName{par().PerambFileName}; if( PerambFileName.length() ){ bool bExists = false; { @@ -217,7 +219,7 @@ void TPerambLight::execute(void) perambulator.ReadBinary(PerambFileName); return; } - } + }*/ envGetTmp(LatticeSpinColourVector, dist_source); envGetTmp(LatticeSpinColourVector, tmp2); @@ -231,10 +233,6 @@ void TPerambLight::execute(void) const int Ntlocal{grid4d->LocalDimensions()[3]}; const int Ntfirst{grid4d->LocalStarts()[3]}; - std::cout << "init RBG " << std::endl; - GridRedBlackCartesian RBGrid(grid4d); - std::cout << "init RBG done" << std::endl; - { int t_inv; @@ -262,7 +260,6 @@ void TPerambLight::execute(void) } } } - std::cout << "Inversion for noise " << inoise << " and dilution component (d_k,d_t,d_alpha) : (" << dk << ","<< dt << "," << ds << ")" << std::endl; result=zero; v4dtmp = dist_source; if (Ls_ == 1){ @@ -275,7 +272,6 @@ void TPerambLight::execute(void) } if ((1)) // comment out if unsmeared sink is too large??? unsmeared_sink[inoise+nnoise*(dk+LI*(dt+Nt_inv*ds))] = result; - std::cout << "Contraction of perambulator from noise " << inoise << " and dilution component (d_k,d_t,d_alpha) : (" << dk << ","<< dt << "," << ds << ")" << std::endl; for (int is = 0; is < Ns; is++) { result_nospin = peekSpin(result,is); for (int t = Ntfirst; t < Ntfirst + Ntlocal; t++) { @@ -283,7 +279,6 @@ void TPerambLight::execute(void) for (int ivec = 0; ivec < nvec; ivec++) { ExtractSliceLocal(evec3d,epack.evec[ivec],0,t,3); pokeSpin(perambulator(t, ivec, dk, inoise,dt,ds),innerProduct(evec3d, result_3d),is); - std::cout << "perambulator(t, ivec, dk, inoise,dt,ds)(is) = (" << t << "," << ivec << "," << dk << "," << inoise << "," << dt << "," << ds << ")(" << is << ") = " << perambulator(t, ivec, dk, inoise,dt,ds)()(is)() << std::endl; } } } @@ -296,7 +291,7 @@ void TPerambLight::execute(void) perambulator.SliceShare( grid3d, grid4d ); if(PerambFileName.length()) - perambulator.WriteBinary(PerambFileName); + perambulator.WriteBinary(PerambFileName + "." + std::to_string(vm().getTrajectory())); } END_MODULE_NAMESPACE