mirror of
https://github.com/paboyle/Grid.git
synced 2024-11-10 07:55:35 +00:00
Merge branch 'feature/distil' of github.com:mmphys/Grid into feature/distil
* 'feature/distil' of github.com:mmphys/Grid: bugfix
This commit is contained in:
commit
1d10a3b3de
@ -25,8 +25,7 @@ public:
|
||||
GRID_SERIALIZABLE_CLASS_MEMBERS(NoisesPar,
|
||||
std::string, UniqueIdentifier,
|
||||
int, nvec,
|
||||
DistilParameters, Distil,
|
||||
unsigned int, i);
|
||||
DistilParameters, Distil);
|
||||
};
|
||||
|
||||
template <typename FImpl>
|
||||
|
@ -19,7 +19,6 @@ class LoadPerambulatorPar: Serializable
|
||||
public:
|
||||
GRID_SERIALIZABLE_CLASS_MEMBERS(LoadPerambulatorPar,
|
||||
std::string, PerambFileName, //stem!!!
|
||||
std::string, UniqueIdentifier,
|
||||
int, nvec,
|
||||
MDistil::DistilParameters, Distil);
|
||||
};
|
||||
@ -81,7 +80,7 @@ void TLoadPerambulator<FImpl>::setup(void)
|
||||
const int Ns{Distil.Ns};
|
||||
std::array<std::string,6> sIndexNames{"Nt", "nvec", "LI", "nnoise", "Nt_inv", "SI"};
|
||||
|
||||
envCreate(MDistil::Perambulator<SpinVector COMMA 6 COMMA sizeof(Real)>, getName() + "_perambulator_light", 1,
|
||||
envCreate(MDistil::Perambulator<SpinVector COMMA 6 COMMA sizeof(Real)>, getName(), 1,
|
||||
sIndexNames,Distil.Nt,nvec,Distil.LI,Distil.nnoise,Distil.Nt_inv,Distil.SI);
|
||||
|
||||
}
|
||||
@ -91,7 +90,7 @@ template <typename FImpl>
|
||||
void TLoadPerambulator<FImpl>::execute(void)
|
||||
{
|
||||
auto &perambulator = envGet(MDistil::Perambulator<SpinVector COMMA 6 COMMA sizeof(Real)>,
|
||||
getName() + "_perambulator_light");
|
||||
getName());
|
||||
|
||||
|
||||
const std::string &PerambFileName{par().PerambFileName};
|
||||
|
Loading…
Reference in New Issue
Block a user