From 529e78d43ff229cce75d966f4314b9b1a3f0834c Mon Sep 17 00:00:00 2001 From: paboyle Date: Mon, 8 May 2017 18:20:04 +0100 Subject: [PATCH 01/18] Restart the v0.7.0 release --- configure.ac | 4 ++-- lib/json/json.hpp | 2 +- lib/qcd/action/fermion/FermionOperatorImpl.h | 22 ++++++++++++++++---- 3 files changed, 21 insertions(+), 7 deletions(-) diff --git a/configure.ac b/configure.ac index a1139ee0..d75c0180 100644 --- a/configure.ac +++ b/configure.ac @@ -1,9 +1,9 @@ AC_PREREQ([2.63]) -AC_INIT([Grid], [0.6.0-dev], [https://github.com/paboyle/Grid], [Grid]) +AC_INIT([Grid], [0.7.0], [https://github.com/paboyle/Grid], [Grid]) AC_CANONICAL_BUILD AC_CANONICAL_HOST AC_CANONICAL_TARGET -AM_INIT_AUTOMAKE(subdir-objects) +AM_INIT_AUTOMAKE([subdir-objects 1.13]) AM_EXTRA_RECURSIVE_TARGETS([tests bench]) AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_SRCDIR([lib/Grid.h]) diff --git a/lib/json/json.hpp b/lib/json/json.hpp index bfb38c3e..d5dc111e 100644 --- a/lib/json/json.hpp +++ b/lib/json/json.hpp @@ -28,7 +28,7 @@ SOFTWARE. #ifndef NLOHMANN_JSON_HPP #define NLOHMANN_JSON_HPP - +#include #include // all_of, for_each, transform #include // array #include // assert diff --git a/lib/qcd/action/fermion/FermionOperatorImpl.h b/lib/qcd/action/fermion/FermionOperatorImpl.h index 24dd75da..ed13c18e 100644 --- a/lib/qcd/action/fermion/FermionOperatorImpl.h +++ b/lib/qcd/action/fermion/FermionOperatorImpl.h @@ -220,20 +220,34 @@ namespace QCD { inline void DoubleStore(GridBase *GaugeGrid, DoubledGaugeField &Uds, - const GaugeField &Umu) { + const GaugeField &Umu) + { + typedef typename Simd::scalar_type scalar_type; + conformable(Uds._grid, GaugeGrid); conformable(Umu._grid, GaugeGrid); + GaugeLinkField U(GaugeGrid); GaugeLinkField tmp(GaugeGrid); + Lattice > coor(GaugeGrid); for (int mu = 0; mu < Nd; mu++) { - LatticeCoordinate(coor, mu); + + auto pha = Params.boundary_phases[mu]; + scalar_type phase( real(pha),imag(pha) ); + int Lmu = GaugeGrid->GlobalDimensions()[mu] - 1; + + LatticeCoordinate(coor, mu); + U = PeekIndex(Umu, mu); - tmp = where(coor == Lmu, Params.boundary_phases[mu] * U, U); + tmp = where(coor == Lmu, phase * U, U); PokeIndex(Uds, tmp, mu); + U = adj(Cshift(U, mu, -1)); - U = where(coor == 0, Params.boundary_phases[mu] * U, U); + // FIXME -- PAB ; this looked like phase should be conjugated so I changed it. + // Should we really support these being complex? + U = where(coor == 0, conjugate(phase) * U, U); PokeIndex(Uds, U, mu + 4); } } From 92f92379e6232d6a67a253ccb53b8c86958d3f7b Mon Sep 17 00:00:00 2001 From: paboyle Date: Mon, 8 May 2017 18:42:19 +0100 Subject: [PATCH 02/18] Adding olivers test version --- .../hmc/Test_hmc_EOMobiusRatioManyFlavour.cc | 302 ++++++++++++++++++ 1 file changed, 302 insertions(+) create mode 100644 tests/hmc/Test_hmc_EOMobiusRatioManyFlavour.cc diff --git a/tests/hmc/Test_hmc_EOMobiusRatioManyFlavour.cc b/tests/hmc/Test_hmc_EOMobiusRatioManyFlavour.cc new file mode 100644 index 00000000..d4eac654 --- /dev/null +++ b/tests/hmc/Test_hmc_EOMobiusRatioManyFlavour.cc @@ -0,0 +1,302 @@ +/************************************************************************************* + +Grid physics library, www.github.com/paboyle/Grid + +Source file: ./tests/Test_hmc_EODWFRatio.cc + +Copyright (C) 2015-2016 + +Author: Peter Boyle +Author: Guido Cossu + +This program is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation; either version 2 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License along +with this program; if not, write to the Free Software Foundation, Inc., +51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +See the full license in the file "LICENSE" in the top level distribution +directory +*************************************************************************************/ +/* END LEGAL */ +#include + +namespace Grid{ + struct FermionParameters: Serializable { + GRID_SERIALIZABLE_CLASS_MEMBERS(FermionParameters, + int, Ls, + double, mass, + double, M5, + double, b, + double, c, + double, StoppingCondition, + int, MaxCGIterations, + bool, ApplySmearing); + + //template + //FermionParameters(Reader& Reader){ + // read(Reader, "Mobius", *this); + //} + + }; + + + struct MobiusHMCParameters: Serializable { + GRID_SERIALIZABLE_CLASS_MEMBERS(MobiusHMCParameters, + double, gauge_beta, + FermionParameters, Mobius) + + template + MobiusHMCParameters(Reader& Reader){ + read(Reader, "Action", *this); + } + +}; + + struct SmearingParameters: Serializable { + GRID_SERIALIZABLE_CLASS_MEMBERS(SmearingParameters, + double, rho, + Integer, Nsmear) + + template + SmearingParameters(Reader& Reader){ + read(Reader, "StoutSmearing", *this); + } + + }; + + +} + + +int main(int argc, char **argv) { + using namespace Grid; + using namespace Grid::QCD; + + Grid_init(&argc, &argv); + int threads = GridThread::GetThreads(); + // here make a routine to print all the relevant information on the run + std::cout << GridLogMessage << "Grid is setup to use " << threads << " threads" << std::endl; + + // Typedefs to simplify notation + typedef GenericHMCRunner HMCWrapper; // Uses the default minimum norm + typedef WilsonImplR FermionImplPolicy; + typedef MobiusFermionR FermionAction; + typedef typename FermionAction::FermionField FermionField; + // Serialiser + //typedef Grid::XmlReader Serialiser; + typedef Grid::JSONReader Serialiser; + + //:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: + HMCWrapper TheHMC; + TheHMC.ReadCommandLine(argc, argv); // these can be parameters from file + + // Reader, file should come from command line + if (TheHMC.ParameterFile.empty()){ + std::cout << "Input file not specified." + << "Use --ParameterFile option in the command line.\nAborting" + << std::endl; + exit(1); + } + Serialiser Reader(TheHMC.ParameterFile); + + MobiusHMCParameters MyParams(Reader); + // Apply smearing to the fermionic action + bool ApplySmearing = MyParams.Mobius.ApplySmearing; + + + + // Grid from the command line + TheHMC.Resources.AddFourDimGrid("gauge"); + // Possibile to create the module by hand + // hardcoding parameters or using a Reader + + + // Checkpointer definition (Name: Checkpointer) + CheckpointerParameters CPparams(Reader); + // Commenting out since we are using the reader + /* + CPparams.config_prefix = "ckpoint_EODWF_lat"; + CPparams.rng_prefix = "ckpoint_EODWF_rng"; + CPparams.saveInterval = 5; + CPparams.format = "IEEE64BIG"; + */ + + TheHMC.Resources.LoadNerscCheckpointer(CPparams); + // TheHMC.Resources.LoadBinaryCheckpointer(CPparams); + + // RNG definition (Name: RandomNumberGenerator) + RNGModuleParameters RNGpar(Reader); + // Commenting out since we are using the reader + /* + RNGpar.serial_seeds = "1 2 3 4 5"; + RNGpar.parallel_seeds = "6 7 8 9 10"; + */ + TheHMC.Resources.SetRNGSeeds(RNGpar); + + // Construct observables + // here there is too much indirection + typedef PlaquetteMod PlaqObs; + TheHMC.Resources.AddObservable(); + ////////////////////////////////////////////// + + ///////////////////////////////////////////////////////////// + // Collect actions, here use more encapsulation + // need wrappers of the fermionic classes + // that have a complex construction + // standard + + //RealD beta = 5.6 ; + //WilsonGaugeActionR Waction(MyParams.gauge_beta); + SymanzikGaugeActionR Syzaction(MyParams.gauge_beta); + + + //const int Ls = 8; + const int Ls = MyParams.Mobius.Ls; + auto GridPtr = TheHMC.Resources.GetCartesian(); + auto GridRBPtr = TheHMC.Resources.GetRBCartesian(); + auto FGrid = SpaceTimeGrid::makeFiveDimGrid(Ls,GridPtr); + auto FrbGrid = SpaceTimeGrid::makeFiveDimRedBlackGrid(Ls,GridPtr); + + + // temporarily need a gauge field + LatticeGaugeField U(GridPtr); + + Real mass = MyParams.Mobius.mass; //0.04; + Real pv = 1.0; + RealD M5 = MyParams.Mobius.M5; //1.5; + // Note: IroIro and Grid notation for b and c differ + RealD b = MyParams.Mobius.b; // 3./2.; + RealD c = MyParams.Mobius.c; // 1./2.; + + // These lines are unecessary if BC are all periodic + std::vector boundary = {1,1,1,-1}; + FermionAction::ImplParams Params(boundary); + + FermionAction DenOp(U,*FGrid,*FrbGrid,*GridPtr,*GridRBPtr,mass,M5,b,c, Params); + FermionAction NumOp(U,*FGrid,*FrbGrid,*GridPtr,*GridRBPtr,pv, M5,b,c, Params); + + //double StoppingCondition = 1e-8; + //double MaxCGIterations = 10000; + ConjugateGradient CG(MyParams.Mobius.StoppingCondition,MyParams.Mobius.MaxCGIterations); + TwoFlavourEvenOddRatioPseudoFermionAction Nf2a(NumOp, DenOp,CG,CG); + TwoFlavourEvenOddRatioPseudoFermionAction Nf2b(NumOp, DenOp,CG,CG); + TwoFlavourEvenOddRatioPseudoFermionAction Nf2c(NumOp, DenOp,CG,CG); + TwoFlavourEvenOddRatioPseudoFermionAction Nf2d(NumOp, DenOp,CG,CG); + TwoFlavourEvenOddRatioPseudoFermionAction Nf2e(NumOp, DenOp,CG,CG); + // TwoFlavourEvenOddRatioPseudoFermionAction Nf2f(NumOp, DenOp,CG,CG); + + // Set smearing (true/false), default: false + Nf2a.is_smeared = ApplySmearing; + Nf2b.is_smeared = ApplySmearing; + Nf2c.is_smeared = ApplySmearing; + Nf2d.is_smeared = ApplySmearing; + Nf2e.is_smeared = ApplySmearing; + //Nf2f.is_smeared = ApplySmearing; + + // Collect actions + ActionLevel Level1(1); + Level1.push_back(&Nf2a); + Level1.push_back(&Nf2b); + Level1.push_back(&Nf2c); + Level1.push_back(&Nf2d); + Level1.push_back(&Nf2e); + //Level1.push_back(&Nf2f); + + ActionLevel Level2(4); + Level2.push_back(&Syzaction); + + TheHMC.TheAction.push_back(Level1); + TheHMC.TheAction.push_back(Level2); + + ///////////////////////////////////////////////////////////// + // HMC parameters are serialisable + TheHMC.Parameters.initialize(Reader); + /* + TheHMC.Parameters.MD.MDsteps = 20; + TheHMC.Parameters.MD.trajL = 1.0; + */ + + // Reset performance counters + NumOp.ZeroCounters(); + DenOp.ZeroCounters(); + + if (ApplySmearing){ + SmearingParameters SmPar(Reader); + //double rho = 0.1; // smearing parameter + //int Nsmear = 3; // number of smearing levels + Smear_Stout Stout(SmPar.rho); + SmearedConfiguration SmearingPolicy(GridPtr, SmPar.Nsmear, Stout); + TheHMC.Run(SmearingPolicy); // for smearing + } else { + TheHMC.Run(); // no smearing + } + + std::cout << GridLogMessage << "Numerator report, Pauli-Villars term : " << std::endl; + NumOp.Report(); + std::cout << GridLogMessage << "Denominator report, Dw(m) term (includes CG) : " << std::endl; + DenOp.Report(); + + Grid_finalize(); +} // main + + + +/* Examples for input files + +JSON + +{ + "Checkpointer": { + "config_prefix": "ckpoint_json_lat", + "rng_prefix": "ckpoint_json_rng", + "saveInterval": 1, + "format": "IEEE64BIG" + }, + "RandomNumberGenerator": { + "serial_seeds": "1 2 3 4 6", + "parallel_seeds": "6 7 8 9 11" + }, + "Action":{ + "gauge_beta": 5.6, + "Mobius": { + "Ls" : 10, + "mass": 0.01, + "M5" : 1.0, + "b" : 1.5, + "c" : 0.5, + "StoppingCondition": 1e-8, + "MaxCGIterations": 10000, + "ApplySmearing": true + } + }, + "HMC":{ + "StartTrajectory": 0, + "Trajectories": 100, + "MetropolisTest": true, + "NoMetropolisUntil": 10, + "StartingType": "HotStart", + "MD":{ + "name": "MinimumNorm2", + "MDsteps": 15, + "trajL": 2.0 + } + }, + "StoutSmearing":{ + "rho": 0.1, + "Nsmear": 3 + } +} + + +XML example not provided yet + +*/ From 95a017a4ae541f749637f44bd1d3fd52ab3fd0d2 Mon Sep 17 00:00:00 2001 From: Peter Boyle Date: Mon, 8 May 2017 15:06:41 -0400 Subject: [PATCH 03/18] Relax force constraints to pass in single precision. --- tests/forces/Test_dwf_force.cc | 2 +- tests/forces/Test_dwf_gpforce.cc | 2 +- tests/forces/Test_gpdwf_force.cc | 2 +- tests/forces/Test_gpwilson_force.cc | 2 +- tests/forces/Test_laplacian_force.cc | 2 +- tests/forces/Test_mobius_force.cc | 2 +- tests/forces/Test_wilson_force.cc | 2 +- tests/forces/Test_zmobius_force.cc | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/tests/forces/Test_dwf_force.cc b/tests/forces/Test_dwf_force.cc index 62a5d22e..1f26caa7 100644 --- a/tests/forces/Test_dwf_force.cc +++ b/tests/forces/Test_dwf_force.cc @@ -157,7 +157,7 @@ int main (int argc, char ** argv) std::cout << GridLogMessage << "dS "< Date: Mon, 8 May 2017 21:41:39 +0100 Subject: [PATCH 04/18] Fixing JSON for complex numbers --- lib/serialisation/JSON_IO.cc | 1 + lib/serialisation/JSON_IO.h | 65 ++++++++++++++++++++++++++-------- tests/IO/Test_serialisation.cc | 11 +++--- 3 files changed, 58 insertions(+), 19 deletions(-) diff --git a/lib/serialisation/JSON_IO.cc b/lib/serialisation/JSON_IO.cc index f6cb7871..fb461998 100644 --- a/lib/serialisation/JSON_IO.cc +++ b/lib/serialisation/JSON_IO.cc @@ -43,6 +43,7 @@ JSONWriter::~JSONWriter(void) cout << ss_.str() << endl; // write prettified JSON to file std::ofstream os(fileName_); + std::cout << "Writing on file" << std::endl; os << std::setw(2) << json::parse(ss_.str()) << std::endl; } diff --git a/lib/serialisation/JSON_IO.h b/lib/serialisation/JSON_IO.h index 0d9ed33c..e3c849a4 100644 --- a/lib/serialisation/JSON_IO.h +++ b/lib/serialisation/JSON_IO.h @@ -1,6 +1,6 @@ /************************************************************************************* - Grid physics library, www.github.com/paboyle/Grid + Grid physics library, www.github.com/paboyle/Grid Source file: ./lib/serialisation/JSON_IO.h @@ -43,10 +43,10 @@ using json = nlohmann::json; namespace Grid { - + class JSONWriter: public Writer { - + public: JSONWriter(const std::string &fileName); virtual ~JSONWriter(void); @@ -55,6 +55,8 @@ namespace Grid template void writeDefault(const std::string &s, const U &x); template + void writeDefault(const std::string &s, const std::complex &x); + template void writeDefault(const std::string &s, const std::vector &x); template @@ -65,7 +67,7 @@ namespace Grid std::string fileName_; std::ostringstream ss_; }; - + class JSONReader: public Reader { public: @@ -77,6 +79,8 @@ namespace Grid template void readDefault(const std::string &s, U &output); template + void readDefault(const std::string &s, std::complex &output); + template void readDefault(const std::string &s, std::vector &output); private: json jobject_; // main object @@ -97,11 +101,12 @@ namespace Grid struct isWriter< JSONWriter > { static const bool value = true; }; - + // Writer template implementation //////////////////////////////////////////// template void JSONWriter::writeDefault(const std::string &s, const U &x) { + std::cout << "JSONReader::writeDefault(U) : " << s << std::endl; std::ostringstream os; os << std::boolalpha << x; if (s.size()) @@ -110,9 +115,23 @@ namespace Grid ss_ << os.str() << " ," ; } + template + void JSONWriter::writeDefault(const std::string &s, const std::complex &x) + { + std::cout << "JSONReader::writeDefault(complex) : " << s << std::endl; + std::ostringstream os; + os << "["<< std::boolalpha << x.real() << ", " << x.imag() << "]"; + if (s.size()) + ss_ << "\""<< s << "\" : " << os.str() << " ," ; + else + ss_ << os.str() << " ," ; + } + template void JSONWriter::writeDefault(const std::string &s, const std::vector &x) { + std::cout << "JSONReader::writeDefault(vec U) : " << s << std::endl; + if (s.size()) ss_ << " \""< void JSONWriter::writeDefault(const std::string &s, const char(&x)[N]){ + std::cout << "JSONReader::writeDefault(char U) : " << s << std::endl; + if (s.size()) ss_ << "\""<< s << "\" : \"" << x << "\" ," ; else - ss_ << "\"" << x << "\" ," ; + ss_ << "\"" << x << "\" ," ; } // Reader template implementation //////////////////////////////////////////// @@ -138,7 +159,7 @@ namespace Grid void JSONReader::readDefault(const std::string &s, U &output) { std::cout << "JSONReader::readDefault(U) : " << s << " : "<< jcur_ << std::endl; - + if (s.size()){ std::cout << "String: "<< jcur_[s] << std::endl; output = jcur_[s]; @@ -146,15 +167,31 @@ namespace Grid else { std::cout << "String: "<< jcur_ << std::endl; - output = jcur_; + output = jcur_; } } - + + template + void JSONReader::readDefault(const std::string &s, std::complex &output) + { + U tmp1, tmp2; + std::cout << "JSONReader::readDefault( complex U) : " << s << " : "<< jcur_ << std::endl; + json j = jcur_; + json::iterator it = j.begin(); + jcur_ = *it; + read("", tmp1); + it++; + jcur_ = *it; + read("", tmp2); + output = std::complex(tmp1,tmp2); + } + + template <> void JSONReader::readDefault(const std::string &s, std::string &output); - + template void JSONReader::readDefault(const std::string &s, std::vector &output) { @@ -163,7 +200,7 @@ namespace Grid std::cout << "JSONReader::readDefault(vec) : " << jcur_ << std::endl; if (s.size()) push(s); - + json j = jcur_; for (json::iterator it = j.begin(); it != j.end(); ++it) { jcur_ = *it; @@ -171,12 +208,12 @@ namespace Grid output.resize(i + 1); read("", output[i++]); } - + jcur_ = j; if (s.size()) pop(); } - + } #endif diff --git a/tests/IO/Test_serialisation.cc b/tests/IO/Test_serialisation.cc index 384a001f..6272f66e 100644 --- a/tests/IO/Test_serialisation.cc +++ b/tests/IO/Test_serialisation.cc @@ -214,6 +214,7 @@ int main(int argc,char **argv) // test serializable class writing myclass obj(1234); // non-trivial constructor + std::cout << "-- serialisable class writing to 'bother.json'..." << std::endl; write(JW,"obj",obj); JW.write("obj2", obj); @@ -232,11 +233,11 @@ int main(int argc,char **argv) myclass jcopy1; std::vector jveccopy1; read(RD,"obj",jcopy1); - read(RD,"objvec", jveccopy1); - std::cout << "Loaded (JSON) -----------------" << std::endl; - std::cout << jcopy1 << std::endl << jveccopy1 << std::endl; + //read(RD,"objvec", jveccopy1); + //std::cout << "Loaded (JSON) -----------------" << std::endl; + //std::cout << jcopy1 << std::endl << jveccopy1 << std::endl; } - + /* { // Testing the next element function JSONReader RD("test.json"); @@ -245,7 +246,7 @@ int main(int argc,char **argv) std::string name; read(RD,"name", name); } - +*/ } From 5aafa335fecf90661a7da9bdae4aba4e43a8aa61 Mon Sep 17 00:00:00 2001 From: Guido Cossu Date: Mon, 8 May 2017 21:56:44 +0100 Subject: [PATCH 05/18] Fixing JSON error for complex numbers --- lib/serialisation/JSON_IO.cc | 14 ++++++-------- lib/serialisation/JSON_IO.h | 20 ++++++++++---------- tests/IO/Test_serialisation.cc | 10 ++++++---- 3 files changed, 22 insertions(+), 22 deletions(-) diff --git a/lib/serialisation/JSON_IO.cc b/lib/serialisation/JSON_IO.cc index fb461998..0a3968e9 100644 --- a/lib/serialisation/JSON_IO.cc +++ b/lib/serialisation/JSON_IO.cc @@ -40,10 +40,8 @@ JSONWriter::~JSONWriter(void) delete_comma(); ss_ << "}"; - cout << ss_.str() << endl; // write prettified JSON to file std::ofstream os(fileName_); - std::cout << "Writing on file" << std::endl; os << std::setw(2) << json::parse(ss_.str()) << std::endl; } @@ -96,7 +94,7 @@ JSONReader::JSONReader(const string &fileName) // test // serialize to standard output - std::cout << "JSONReader::JSONReader : " << jobject_ << endl; + //std::cout << "JSONReader::JSONReader : " << jobject_ << endl; jcur_ = jobject_; } @@ -114,7 +112,7 @@ bool JSONReader::push(const string &s) std::cout << "out of range: " << e.what() << '\n'; return false; } - cout << "JSONReader::push : " << s << " : "<< jcur_ << endl; + //cout << "JSONReader::push : " << s << " : "<< jcur_ << endl; } else { @@ -135,7 +133,7 @@ void JSONReader::pop(void) else do_pop.pop_back(); - cout << "JSONReader::pop : " << jcur_ << endl; + //cout << "JSONReader::pop : " << jcur_ << endl; } bool JSONReader::nextElement(const std::string &s) @@ -158,14 +156,14 @@ bool JSONReader::nextElement(const std::string &s) template <> void JSONReader::readDefault(const string &s, string &output) { - cout << "JSONReader::readDefault(string) : " << s<< " " << jcur_ << endl; + //cout << "JSONReader::readDefault(string) : " << s<< " " << jcur_ << endl; if (s.size()){ - std::cout << "String: "<< jcur_[s] << std::endl; + //std::cout << "String: "<< jcur_[s] << std::endl; output = jcur_[s]; } else { - std::cout << "String: "<< jcur_ << std::endl; + //std::cout << "String: "<< jcur_ << std::endl; output = jcur_; } } diff --git a/lib/serialisation/JSON_IO.h b/lib/serialisation/JSON_IO.h index e3c849a4..fc5e9631 100644 --- a/lib/serialisation/JSON_IO.h +++ b/lib/serialisation/JSON_IO.h @@ -106,7 +106,7 @@ namespace Grid template void JSONWriter::writeDefault(const std::string &s, const U &x) { - std::cout << "JSONReader::writeDefault(U) : " << s << std::endl; + //std::cout << "JSONReader::writeDefault(U) : " << s << std::endl; std::ostringstream os; os << std::boolalpha << x; if (s.size()) @@ -118,7 +118,7 @@ namespace Grid template void JSONWriter::writeDefault(const std::string &s, const std::complex &x) { - std::cout << "JSONReader::writeDefault(complex) : " << s << std::endl; + //std::cout << "JSONReader::writeDefault(complex) : " << s << std::endl; std::ostringstream os; os << "["<< std::boolalpha << x.real() << ", " << x.imag() << "]"; if (s.size()) @@ -130,7 +130,7 @@ namespace Grid template void JSONWriter::writeDefault(const std::string &s, const std::vector &x) { - std::cout << "JSONReader::writeDefault(vec U) : " << s << std::endl; + //std::cout << "JSONReader::writeDefault(vec U) : " << s << std::endl; if (s.size()) ss_ << " \""< void JSONWriter::writeDefault(const std::string &s, const char(&x)[N]){ - std::cout << "JSONReader::writeDefault(char U) : " << s << std::endl; + //std::cout << "JSONReader::writeDefault(char U) : " << s << std::endl; if (s.size()) ss_ << "\""<< s << "\" : \"" << x << "\" ," ; @@ -158,15 +158,15 @@ namespace Grid template void JSONReader::readDefault(const std::string &s, U &output) { - std::cout << "JSONReader::readDefault(U) : " << s << " : "<< jcur_ << std::endl; + //std::cout << "JSONReader::readDefault(U) : " << s << " : "<< jcur_ << std::endl; if (s.size()){ - std::cout << "String: "<< jcur_[s] << std::endl; + //std::cout << "String: "<< jcur_[s] << std::endl; output = jcur_[s]; } else { - std::cout << "String: "<< jcur_ << std::endl; + //std::cout << "String: "<< jcur_ << std::endl; output = jcur_; } @@ -177,7 +177,7 @@ namespace Grid void JSONReader::readDefault(const std::string &s, std::complex &output) { U tmp1, tmp2; - std::cout << "JSONReader::readDefault( complex U) : " << s << " : "<< jcur_ << std::endl; + //std::cout << "JSONReader::readDefault( complex U) : " << s << " : "<< jcur_ << std::endl; json j = jcur_; json::iterator it = j.begin(); jcur_ = *it; @@ -197,14 +197,14 @@ namespace Grid { std::string buf; unsigned int i = 0; - std::cout << "JSONReader::readDefault(vec) : " << jcur_ << std::endl; + //std::cout << "JSONReader::readDefault(vec) : " << jcur_ << std::endl; if (s.size()) push(s); json j = jcur_; for (json::iterator it = j.begin(); it != j.end(); ++it) { jcur_ = *it; - std::cout << "Value: " << it.value() << "\n"; + //std::cout << "Value: " << it.value() << "\n"; output.resize(i + 1); read("", output[i++]); } diff --git a/tests/IO/Test_serialisation.cc b/tests/IO/Test_serialisation.cc index 6272f66e..7d911dfd 100644 --- a/tests/IO/Test_serialisation.cc +++ b/tests/IO/Test_serialisation.cc @@ -233,11 +233,13 @@ int main(int argc,char **argv) myclass jcopy1; std::vector jveccopy1; read(RD,"obj",jcopy1); - //read(RD,"objvec", jveccopy1); - //std::cout << "Loaded (JSON) -----------------" << std::endl; - //std::cout << jcopy1 << std::endl << jveccopy1 << std::endl; + read(RD,"objvec", jveccopy1); + std::cout << "Loaded (JSON) -----------------" << std::endl; + std::cout << jcopy1 << std::endl << jveccopy1 << std::endl; } - /* + +/* + // This is still work in progress { // Testing the next element function JSONReader RD("test.json"); From 806eaa05304d0e2ad675cd4f8dc48f9a8feacded Mon Sep 17 00:00:00 2001 From: Guido Cossu Date: Mon, 8 May 2017 22:26:44 +0100 Subject: [PATCH 06/18] Adding back the IO tests in the list --- tests/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Makefile.am b/tests/Makefile.am index 8a6408e6..a8935268 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -1,4 +1,4 @@ -SUBDIRS = . core forces hmc solver debug smearing +SUBDIRS = . core forces hmc solver debug smearing IO if BUILD_CHROMA_REGRESSION SUBDIRS+= qdpxx From 9c12c37aaf14d941666a459880aa63940b74b443 Mon Sep 17 00:00:00 2001 From: Guido Cossu Date: Tue, 9 May 2017 08:41:29 +0100 Subject: [PATCH 07/18] Confirming the fix on the complex boundary conditions --- lib/qcd/action/fermion/FermionOperatorImpl.h | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/lib/qcd/action/fermion/FermionOperatorImpl.h b/lib/qcd/action/fermion/FermionOperatorImpl.h index ed13c18e..20458b6d 100644 --- a/lib/qcd/action/fermion/FermionOperatorImpl.h +++ b/lib/qcd/action/fermion/FermionOperatorImpl.h @@ -233,8 +233,8 @@ namespace QCD { Lattice > coor(GaugeGrid); for (int mu = 0; mu < Nd; mu++) { - auto pha = Params.boundary_phases[mu]; - scalar_type phase( real(pha),imag(pha) ); + auto pha = Params.boundary_phases[mu]; + scalar_type phase( real(pha),imag(pha) ); int Lmu = GaugeGrid->GlobalDimensions()[mu] - 1; @@ -245,8 +245,6 @@ namespace QCD { PokeIndex(Uds, tmp, mu); U = adj(Cshift(U, mu, -1)); - // FIXME -- PAB ; this looked like phase should be conjugated so I changed it. - // Should we really support these being complex? U = where(coor == 0, conjugate(phase) * U, U); PokeIndex(Uds, U, mu + 4); } @@ -265,11 +263,11 @@ namespace QCD { tmp = zero; parallel_for(int sss=0;sssoSites();sss++){ - int sU=sss; - for(int s=0;s(outerProduct(Btilde[sF],Atilde[sF])); // ordering here - } + int sU=sss; + for(int s=0;s(outerProduct(Btilde[sF],Atilde[sF])); // ordering here + } } PokeIndex(mat,tmp,mu); From 4cc5f01f4a602ff5bf3810d841b0e52e1780acf0 Mon Sep 17 00:00:00 2001 From: Guido Cossu Date: Tue, 9 May 2017 15:38:59 +0100 Subject: [PATCH 08/18] Small change in the readme about the intel compiler --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b8cb441e..9432abe1 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ _Please do not send pull requests to the `master` branch which is reserved for r ### Compilers -Intel ICPC v16 and later +Intel ICPC v16.0.3 and later Clang v3.5 and later (need 3.8 and later for OpenMP) @@ -52,7 +52,7 @@ When you file an issue, please go though the following checklist: 2. Give a description of the target platform (CPU, network, compiler). Please give the full CPU part description, using for example `cat /proc/cpuinfo | grep 'model name' | uniq` (Linux) or `sysctl machdep.cpu.brand_string` (macOS) and the full output the `--version` option of your compiler. 3. Give the exact `configure` command used. 4. Attach `config.log`. -5. Attach `config.summary`. +5. Attach `grid.config.summary`. 6. Attach the output of `make V=1`. 7. Describe the issue and any previous attempt to solve it. If relevant, show how to reproduce the issue using a minimal working example. From f8024c262bac76fa52041a36d4643d0ee04abcc7 Mon Sep 17 00:00:00 2001 From: paboyle Date: Wed, 10 May 2017 13:30:09 +0100 Subject: [PATCH 09/18] Update Eigen --- bootstrap.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap.sh b/bootstrap.sh index 98972900..66eb63ee 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -1,6 +1,6 @@ ]#!/usr/bin/env bash -EIGEN_URL='http://bitbucket.org/eigen/eigen/get/3.2.9.tar.bz2' +EIGEN_URL='http://bitbucket.org/eigen/eigen/get/3.3.3.tar.bz2' echo "-- deploying Eigen source..." wget ${EIGEN_URL} --no-check-certificate From 1cab06f6bda7a5974a0605837c83fe0fceca1e14 Mon Sep 17 00:00:00 2001 From: paboyle Date: Thu, 11 May 2017 10:20:24 +0100 Subject: [PATCH 10/18] Compat checks for compilers --- lib/util/CompilerCompatible.h | 55 +++++++++++++++++++++++++++++++++++ lib/util/Init.cc | 2 ++ 2 files changed, 57 insertions(+) create mode 100644 lib/util/CompilerCompatible.h diff --git a/lib/util/CompilerCompatible.h b/lib/util/CompilerCompatible.h new file mode 100644 index 00000000..405b4c07 --- /dev/null +++ b/lib/util/CompilerCompatible.h @@ -0,0 +1,55 @@ +#pragma once + + +#define COMPILER_FATAL +#define COMPILER_GCC_WARN "Compiler" COMPILER_STRING " is known to not work with Grid under -O3 due to compiler bugs" + +#if defined(__clang__) + + #if __clang_major < 3 + #error "This clang++ version is known to not work with Grid due to compiler bugs" + #endif + + #if __clang_major == 3 + #if __clang_minor < 5 + #error "This clang++ version is known to not work with Grid due to compiler bugs" + #endif + #endif + +#endif + +// Intel compiler *ALSO* has __GNUC__ defined so must if/else GCC checks +#ifdef __INTEL_COMPILER + +#if __INTEL_COMPILER < 1600 + #error "This icpc version is known to not work with Grid due to compiler bugs" +#endif + +#else + + #if defined(__GNUC__) + + #if __GNUC__ < 4 + #error "g++ prior to version 4 is known to not work with Grid due to compiler bugs" + #endif + + #if __GNUC__ == 4 + #if __GNUC_MINOR__ != 9 + #error "g++ 4.9 is the only gcc-4.x version known to work with Grid due to compiler bugs" + #endif + #endif + + #if __GNUC__ == 5 + #warning "g++ version 5 is known to not work with Grid due to compiler bugs under -O3 : ensure you run make check" + #endif + + #if __GNUC__ == 6 + #if __GNUC_MINOR__ < 3 + #warning "This g++6.3 is the first recent g++ version known to work with Grid: ensure you run make check" + #endif + #endif + + #endif + +#endif + diff --git a/lib/util/Init.cc b/lib/util/Init.cc index e228dd77..fe3b1734 100644 --- a/lib/util/Init.cc +++ b/lib/util/Init.cc @@ -48,6 +48,8 @@ Author: paboyle #include +#include + #include #ifdef __APPLE__ From 655492a44390b017a8b0cf7a2e2f51dc9e1b53cb Mon Sep 17 00:00:00 2001 From: paboyle Date: Thu, 11 May 2017 11:21:11 +0100 Subject: [PATCH 11/18] Compiler detection --- lib/util/CompilerCompatible.h | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/lib/util/CompilerCompatible.h b/lib/util/CompilerCompatible.h index 405b4c07..a62ed71f 100644 --- a/lib/util/CompilerCompatible.h +++ b/lib/util/CompilerCompatible.h @@ -1,9 +1,5 @@ #pragma once - -#define COMPILER_FATAL -#define COMPILER_GCC_WARN "Compiler" COMPILER_STRING " is known to not work with Grid under -O3 due to compiler bugs" - #if defined(__clang__) #if __clang_major < 3 @@ -16,14 +12,12 @@ #endif #endif -#endif - // Intel compiler *ALSO* has __GNUC__ defined so must if/else GCC checks -#ifdef __INTEL_COMPILER +#elif defined(__INTEL_COMPILER) -#if __INTEL_COMPILER < 1600 - #error "This icpc version is known to not work with Grid due to compiler bugs" -#endif + #if __INTEL_COMPILER < 1603 + #error "This icpc version is known to not work with Grid due to compiler bugs" + #endif #else @@ -50,6 +44,10 @@ #endif #endif +#else + + #warning "Unknown compiler detected: cannot guarantee compatability since Grid tends to break compilers" + #warning "Ensure to run : make check" #endif From 97a32a61452f7618966a846cae5dacec2b62316b Mon Sep 17 00:00:00 2001 From: paboyle Date: Thu, 11 May 2017 11:24:21 +0100 Subject: [PATCH 12/18] Add 4.8 test --- .travis.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/.travis.yml b/.travis.yml index 64dae823..5afba10d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -25,6 +25,22 @@ matrix: - openmpi-bin - binutils-dev env: VERSION=-4.9 + - compiler: gcc + dist: trusty + sudo: required + addons: + apt: + sources: + - ubuntu-toolchain-r-test + packages: + - g++-4.8 + - libmpfr-dev + - libgmp-dev + - libmpc-dev + - libopenmpi-dev + - openmpi-bin + - binutils-dev + env: VERSION=-4.8 - compiler: gcc dist: trusty sudo: required From 238df20370afa190fce35207c54512e62af1f7b7 Mon Sep 17 00:00:00 2001 From: paboyle Date: Thu, 11 May 2017 11:30:14 +0100 Subject: [PATCH 13/18] Still working on the compiler compat checks --- lib/util/CompilerCompatible.h | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/lib/util/CompilerCompatible.h b/lib/util/CompilerCompatible.h index a62ed71f..28f1bcb9 100644 --- a/lib/util/CompilerCompatible.h +++ b/lib/util/CompilerCompatible.h @@ -21,6 +21,8 @@ #else +// This macro is annoying many other compilers just define __GNUC__ and claim GCC compat +// but this defeats the use of __GNUC__ to really detect G++ #if defined(__GNUC__) #if __GNUC__ < 4 @@ -43,11 +45,12 @@ #endif #endif - #endif -#else + #else - #warning "Unknown compiler detected: cannot guarantee compatability since Grid tends to break compilers" - #warning "Ensure to run : make check" + #warning "Unknown compiler detected: cannot guarantee compatability since Grid tends to break compilers" + #warning "Ensure to run : make check" + + #endif #endif From 8a43e88b4f31286ab8e2a42694c9fe624372131a Mon Sep 17 00:00:00 2001 From: paboyle Date: Thu, 11 May 2017 11:43:06 +0100 Subject: [PATCH 14/18] Compiler check early in build --- lib/log/Log.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/log/Log.cc b/lib/log/Log.cc index 320381cb..69a9a0a8 100644 --- a/lib/log/Log.cc +++ b/lib/log/Log.cc @@ -30,6 +30,7 @@ directory *************************************************************************************/ /* END LEGAL */ #include +#include #include #include From 34502ec471483725b810ccad0a67fe717687a363 Mon Sep 17 00:00:00 2001 From: paboyle Date: Thu, 11 May 2017 11:43:39 +0100 Subject: [PATCH 15/18] 4.8 dropped as buggy. --- .travis.yml | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/.travis.yml b/.travis.yml index 5afba10d..64dae823 100644 --- a/.travis.yml +++ b/.travis.yml @@ -25,22 +25,6 @@ matrix: - openmpi-bin - binutils-dev env: VERSION=-4.9 - - compiler: gcc - dist: trusty - sudo: required - addons: - apt: - sources: - - ubuntu-toolchain-r-test - packages: - - g++-4.8 - - libmpfr-dev - - libgmp-dev - - libmpc-dev - - libopenmpi-dev - - openmpi-bin - - binutils-dev - env: VERSION=-4.8 - compiler: gcc dist: trusty sudo: required From 2b3fdd4a58246f083dd6bf0d3dc2aa7c5ab24ea0 Mon Sep 17 00:00:00 2001 From: paboyle Date: Thu, 11 May 2017 12:05:50 +0100 Subject: [PATCH 16/18] Print CXX predefines --- configure.ac | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configure.ac b/configure.ac index d75c0180..03dfa019 100644 --- a/configure.ac +++ b/configure.ac @@ -29,6 +29,7 @@ AC_DEFINE_UNQUOTED([GXX_VERSION],["$GXX_VERSION"], CXXFLAGS="-O3 $CXXFLAGS" + ############### Checks for typedefs, structures, and compiler characteristics AC_TYPE_SIZE_T AC_TYPE_UINT32_T @@ -190,6 +191,7 @@ AC_SEARCH_LIBS([H5Fopen], [hdf5_cpp], [LIBS="${LIBS} -lhdf5"], [], [-lhdf5]) AM_CONDITIONAL(BUILD_HDF5, [ test "${have_hdf5}X" == "trueX" ]) +$CXX -dM -E -x c /dev/null CXXFLAGS=$CXXFLAGS_CPY LDFLAGS=$LDFLAGS_CPY From 49a5d9bac7ff7ff7acfe64931224e9f0883c8f65 Mon Sep 17 00:00:00 2001 From: paboyle Date: Thu, 11 May 2017 12:25:02 +0100 Subject: [PATCH 17/18] Clang major, minor trailing underscore --- lib/util/CompilerCompatible.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/util/CompilerCompatible.h b/lib/util/CompilerCompatible.h index 28f1bcb9..37331668 100644 --- a/lib/util/CompilerCompatible.h +++ b/lib/util/CompilerCompatible.h @@ -2,12 +2,12 @@ #if defined(__clang__) - #if __clang_major < 3 + #if __clang_major__ < 3 #error "This clang++ version is known to not work with Grid due to compiler bugs" #endif - #if __clang_major == 3 - #if __clang_minor < 5 + #if __clang_major__ == 3 + #if __clang_minor__ < 5 #error "This clang++ version is known to not work with Grid due to compiler bugs" #endif #endif From 7a8f6af5f8f449b59d99c7ee90eb91223281bf86 Mon Sep 17 00:00:00 2001 From: paboyle Date: Thu, 11 May 2017 12:48:40 +0100 Subject: [PATCH 18/18] Drop verbose compiler predefine check --- configure.ac | 1 - 1 file changed, 1 deletion(-) diff --git a/configure.ac b/configure.ac index 03dfa019..62b7545b 100644 --- a/configure.ac +++ b/configure.ac @@ -191,7 +191,6 @@ AC_SEARCH_LIBS([H5Fopen], [hdf5_cpp], [LIBS="${LIBS} -lhdf5"], [], [-lhdf5]) AM_CONDITIONAL(BUILD_HDF5, [ test "${have_hdf5}X" == "trueX" ]) -$CXX -dM -E -x c /dev/null CXXFLAGS=$CXXFLAGS_CPY LDFLAGS=$LDFLAGS_CPY