2016-12-15 18:26:39 +00:00
|
|
|
/*************************************************************************************
|
|
|
|
|
2016-02-25 12:07:21 +00:00
|
|
|
Grid physics library, www.github.com/paboyle/Grid
|
|
|
|
|
2016-12-15 18:26:39 +00:00
|
|
|
Source file: extras/Hadrons/Application.cc
|
2016-02-25 12:07:21 +00:00
|
|
|
|
|
|
|
Copyright (C) 2015
|
2016-12-15 18:26:39 +00:00
|
|
|
Copyright (C) 2016
|
2016-02-25 12:07:21 +00:00
|
|
|
|
|
|
|
Author: Antonin Portelli <antonin.portelli@me.com>
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
2016-12-15 18:26:39 +00:00
|
|
|
See the full license in the file "LICENSE" in the top level distribution directory
|
|
|
|
*************************************************************************************/
|
2016-12-15 18:21:52 +00:00
|
|
|
/* END LEGAL */
|
2015-10-27 17:33:18 +00:00
|
|
|
|
2016-11-28 07:02:15 +00:00
|
|
|
#include <Grid/Hadrons/Application.hpp>
|
|
|
|
#include <Grid/Hadrons/GeneticScheduler.hpp>
|
2015-10-27 17:33:18 +00:00
|
|
|
|
|
|
|
using namespace Grid;
|
2016-05-03 03:31:21 +01:00
|
|
|
using namespace QCD;
|
2015-10-27 17:33:18 +00:00
|
|
|
using namespace Hadrons;
|
|
|
|
|
2016-05-07 21:26:56 +01:00
|
|
|
#define BIG_SEP "==============="
|
|
|
|
#define SEP "---------------"
|
|
|
|
|
2015-10-27 17:33:18 +00:00
|
|
|
/******************************************************************************
|
|
|
|
* Application implementation *
|
|
|
|
******************************************************************************/
|
2016-11-28 07:02:15 +00:00
|
|
|
// constructors ////////////////////////////////////////////////////////////////
|
|
|
|
Application::Application(void)
|
|
|
|
: env_(Environment::getInstance())
|
2015-10-27 17:33:18 +00:00
|
|
|
{
|
2015-12-23 14:30:33 +00:00
|
|
|
LOG(Message) << "Modules available:" << std::endl;
|
2016-05-10 19:07:41 +01:00
|
|
|
auto list = ModuleFactory::getInstance().getBuilderList();
|
2015-12-23 14:21:35 +00:00
|
|
|
for (auto &m: list)
|
|
|
|
{
|
2015-12-23 14:30:33 +00:00
|
|
|
LOG(Message) << " " << m << std::endl;
|
2015-12-23 14:21:35 +00:00
|
|
|
}
|
2016-05-04 20:17:27 +01:00
|
|
|
auto dim = GridDefaultLatt(), mpi = GridDefaultMpi(), loc(dim);
|
|
|
|
locVol_ = 1;
|
|
|
|
for (unsigned int d = 0; d < dim.size(); ++d)
|
|
|
|
{
|
|
|
|
loc[d] /= mpi[d];
|
|
|
|
locVol_ *= loc[d];
|
|
|
|
}
|
|
|
|
LOG(Message) << "Global lattice: " << dim << std::endl;
|
|
|
|
LOG(Message) << "MPI partition : " << mpi << std::endl;
|
|
|
|
LOG(Message) << "Local lattice : " << loc << std::endl;
|
2015-10-27 17:33:18 +00:00
|
|
|
}
|
|
|
|
|
2016-11-28 07:02:15 +00:00
|
|
|
Application::Application(const Application::GlobalPar &par)
|
|
|
|
: Application()
|
|
|
|
{
|
|
|
|
setPar(par);
|
|
|
|
}
|
|
|
|
|
|
|
|
Application::Application(const std::string parameterFileName)
|
|
|
|
: Application()
|
|
|
|
{
|
|
|
|
parameterFileName_ = parameterFileName;
|
|
|
|
}
|
|
|
|
|
|
|
|
// access //////////////////////////////////////////////////////////////////////
|
|
|
|
void Application::setPar(const Application::GlobalPar &par)
|
|
|
|
{
|
|
|
|
par_ = par;
|
2016-12-05 02:44:36 +00:00
|
|
|
env_.setSeed(strToVec<int>(par_.seed));
|
2016-11-28 07:02:15 +00:00
|
|
|
}
|
2015-10-27 17:33:18 +00:00
|
|
|
|
2016-12-14 18:01:56 +00:00
|
|
|
const Application::GlobalPar & Application::getPar(void)
|
|
|
|
{
|
|
|
|
return par_;
|
|
|
|
}
|
|
|
|
|
2015-10-27 17:33:18 +00:00
|
|
|
// execute /////////////////////////////////////////////////////////////////////
|
|
|
|
void Application::run(void)
|
2015-11-05 14:28:14 +00:00
|
|
|
{
|
2016-12-14 19:40:36 +00:00
|
|
|
if (!parameterFileName_.empty() and (env_.getNModule() == 0))
|
2016-11-28 07:02:15 +00:00
|
|
|
{
|
2016-12-14 18:01:56 +00:00
|
|
|
parseParameterFile(parameterFileName_);
|
2016-11-28 07:02:15 +00:00
|
|
|
}
|
2016-12-14 19:40:36 +00:00
|
|
|
if (!scheduled_)
|
|
|
|
{
|
|
|
|
schedule();
|
|
|
|
}
|
|
|
|
printSchedule();
|
2015-12-23 14:21:35 +00:00
|
|
|
configLoop();
|
2015-12-07 18:26:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// parse parameter file ////////////////////////////////////////////////////////
|
2016-04-30 08:17:04 +01:00
|
|
|
class ObjectId: Serializable
|
2015-12-23 14:21:35 +00:00
|
|
|
{
|
|
|
|
public:
|
2016-04-30 08:17:04 +01:00
|
|
|
GRID_SERIALIZABLE_CLASS_MEMBERS(ObjectId,
|
2015-12-23 14:21:35 +00:00
|
|
|
std::string, name,
|
|
|
|
std::string, type);
|
|
|
|
};
|
|
|
|
|
2016-12-14 18:01:56 +00:00
|
|
|
void Application::parseParameterFile(const std::string parameterFileName)
|
2015-12-07 18:26:38 +00:00
|
|
|
{
|
2016-12-14 18:01:56 +00:00
|
|
|
XmlReader reader(parameterFileName);
|
2016-12-05 02:44:36 +00:00
|
|
|
GlobalPar par;
|
2016-04-30 08:17:04 +01:00
|
|
|
ObjectId id;
|
2015-11-05 14:28:14 +00:00
|
|
|
|
2016-12-14 19:40:36 +00:00
|
|
|
LOG(Message) << "Building application from '" << parameterFileName << "'..." << std::endl;
|
2016-12-05 02:44:36 +00:00
|
|
|
read(reader, "parameters", par);
|
|
|
|
setPar(par);
|
2015-12-23 14:21:35 +00:00
|
|
|
push(reader, "modules");
|
|
|
|
push(reader, "module");
|
|
|
|
do
|
|
|
|
{
|
|
|
|
read(reader, "id", id);
|
2016-05-10 19:07:41 +01:00
|
|
|
env_.createModule(id.name, id.type, reader);
|
2015-12-23 14:21:35 +00:00
|
|
|
} while (reader.nextElement("module"));
|
|
|
|
pop(reader);
|
|
|
|
pop(reader);
|
2015-12-07 18:26:38 +00:00
|
|
|
}
|
|
|
|
|
2016-12-14 18:01:56 +00:00
|
|
|
void Application::saveParameterFile(const std::string parameterFileName)
|
|
|
|
{
|
|
|
|
XmlWriter writer(parameterFileName);
|
|
|
|
ObjectId id;
|
|
|
|
const unsigned int nMod = env_.getNModule();
|
|
|
|
|
2016-12-14 19:40:36 +00:00
|
|
|
LOG(Message) << "Saving application to '" << parameterFileName << "'..." << std::endl;
|
2016-12-14 18:01:56 +00:00
|
|
|
write(writer, "parameters", getPar());
|
|
|
|
push(writer, "modules");
|
|
|
|
for (unsigned int i = 0; i < nMod; ++i)
|
|
|
|
{
|
|
|
|
push(writer, "module");
|
|
|
|
id.name = env_.getModuleName(i);
|
|
|
|
id.type = env_.getModule(i)->getRegisteredName();
|
|
|
|
write(writer, "id", id);
|
|
|
|
env_.getModule(i)->saveParameters(writer, "options");
|
|
|
|
pop(writer);
|
|
|
|
}
|
|
|
|
pop(writer);
|
|
|
|
pop(writer);
|
|
|
|
}
|
|
|
|
|
2015-12-07 18:26:38 +00:00
|
|
|
// schedule computation ////////////////////////////////////////////////////////
|
2016-05-07 21:19:38 +01:00
|
|
|
#define MEM_MSG(size)\
|
|
|
|
sizeString((size)*locVol_) << " (" << sizeString(size) << "/site)"
|
|
|
|
|
2016-12-14 19:40:36 +00:00
|
|
|
#define DEFINE_MEMPEAK \
|
|
|
|
auto memPeak = [this](const std::vector<unsigned int> &program)\
|
|
|
|
{\
|
|
|
|
unsigned int memPeak;\
|
|
|
|
bool msg;\
|
|
|
|
\
|
|
|
|
msg = HadronsLogMessage.isActive();\
|
|
|
|
HadronsLogMessage.Active(false);\
|
|
|
|
env_.dryRun(true);\
|
|
|
|
memPeak = env_.executeProgram(program);\
|
|
|
|
env_.dryRun(false);\
|
|
|
|
env_.freeAll();\
|
|
|
|
HadronsLogMessage.Active(true);\
|
|
|
|
\
|
|
|
|
return memPeak;\
|
|
|
|
}
|
|
|
|
|
2015-12-07 18:26:38 +00:00
|
|
|
void Application::schedule(void)
|
|
|
|
{
|
2016-12-14 19:40:36 +00:00
|
|
|
DEFINE_MEMPEAK;
|
2016-05-07 21:19:38 +01:00
|
|
|
|
2016-12-06 23:59:58 +00:00
|
|
|
// build module dependency graph
|
|
|
|
LOG(Message) << "Building module graph..." << std::endl;
|
2016-12-14 19:40:36 +00:00
|
|
|
auto graph = env_.makeModuleGraph();
|
|
|
|
auto con = graph.getConnectedComponents();
|
2016-12-06 23:59:58 +00:00
|
|
|
|
|
|
|
// constrained topological sort using a genetic algorithm
|
|
|
|
LOG(Message) << "Scheduling computation..." << std::endl;
|
|
|
|
LOG(Message) << " #module= " << graph.size() << std::endl;
|
|
|
|
LOG(Message) << " population size= " << par_.genetic.popSize << std::endl;
|
|
|
|
LOG(Message) << " max. generation= " << par_.genetic.maxGen << std::endl;
|
|
|
|
LOG(Message) << " max. cst. generation= " << par_.genetic.maxCstGen << std::endl;
|
|
|
|
LOG(Message) << " mutation rate= " << par_.genetic.mutationRate << std::endl;
|
|
|
|
|
|
|
|
unsigned int k = 0, gen, prevPeak, nCstPeak = 0;
|
|
|
|
std::random_device rd;
|
2016-05-10 19:07:41 +01:00
|
|
|
GeneticScheduler<unsigned int>::Parameters par;
|
2016-12-06 23:59:58 +00:00
|
|
|
|
2016-12-06 03:12:05 +00:00
|
|
|
par.popSize = par_.genetic.popSize;
|
|
|
|
par.mutationRate = par_.genetic.mutationRate;
|
2016-05-09 14:49:06 +01:00
|
|
|
par.seed = rd();
|
2016-12-14 19:40:36 +00:00
|
|
|
memPeak_ = 0;
|
2016-05-09 14:49:06 +01:00
|
|
|
CartesianCommunicator::BroadcastWorld(0, &(par.seed), sizeof(par.seed));
|
2015-12-07 18:26:38 +00:00
|
|
|
for (unsigned int i = 0; i < con.size(); ++i)
|
2015-12-02 19:33:34 +00:00
|
|
|
{
|
2016-05-10 19:07:41 +01:00
|
|
|
GeneticScheduler<unsigned int> scheduler(con[i], memPeak, par);
|
2016-05-09 14:49:06 +01:00
|
|
|
|
|
|
|
gen = 0;
|
|
|
|
do
|
|
|
|
{
|
2016-12-06 23:59:58 +00:00
|
|
|
LOG(Debug) << "Generation " << gen << ":" << std::endl;
|
2016-05-09 14:49:06 +01:00
|
|
|
scheduler.nextGeneration();
|
|
|
|
if (gen != 0)
|
|
|
|
{
|
|
|
|
if (prevPeak == scheduler.getMinValue())
|
|
|
|
{
|
|
|
|
nCstPeak++;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
nCstPeak = 0;
|
|
|
|
}
|
|
|
|
}
|
2016-12-06 23:59:58 +00:00
|
|
|
|
2016-05-09 14:49:06 +01:00
|
|
|
prevPeak = scheduler.getMinValue();
|
|
|
|
if (gen % 10 == 0)
|
|
|
|
{
|
|
|
|
LOG(Iterative) << "Generation " << gen << ": "
|
|
|
|
<< MEM_MSG(scheduler.getMinValue()) << std::endl;
|
|
|
|
}
|
2016-12-06 23:59:58 +00:00
|
|
|
|
2016-05-09 14:49:06 +01:00
|
|
|
gen++;
|
2016-12-06 03:12:05 +00:00
|
|
|
} while ((gen < par_.genetic.maxGen)
|
|
|
|
and (nCstPeak < par_.genetic.maxCstGen));
|
2016-05-09 14:49:06 +01:00
|
|
|
auto &t = scheduler.getMinSchedule();
|
2016-12-14 19:40:36 +00:00
|
|
|
if (scheduler.getMinValue() > memPeak_)
|
|
|
|
{
|
|
|
|
memPeak_ = scheduler.getMinValue();
|
|
|
|
}
|
2016-04-30 08:17:04 +01:00
|
|
|
for (unsigned int j = 0; j < t.size(); ++j)
|
2016-01-14 04:23:51 +00:00
|
|
|
{
|
2016-04-30 08:17:04 +01:00
|
|
|
program_.push_back(t[j]);
|
2015-12-02 19:33:34 +00:00
|
|
|
}
|
2015-12-23 14:21:35 +00:00
|
|
|
}
|
2016-12-14 19:40:36 +00:00
|
|
|
scheduled_ = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Application::saveSchedule(const std::string filename)
|
|
|
|
{
|
|
|
|
TextWriter writer(filename);
|
|
|
|
std::vector<std::string> program;
|
|
|
|
|
|
|
|
if (!scheduled_)
|
|
|
|
{
|
|
|
|
HADRON_ERROR("Computation not scheduled");
|
|
|
|
}
|
|
|
|
LOG(Message) << "Saving current schedule to '" << filename << "'..."
|
|
|
|
<< std::endl;
|
|
|
|
for (auto address: program_)
|
|
|
|
{
|
|
|
|
program.push_back(env_.getModuleName(address));
|
|
|
|
}
|
|
|
|
write(writer, "schedule", program);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Application::loadSchedule(const std::string filename)
|
|
|
|
{
|
|
|
|
DEFINE_MEMPEAK;
|
|
|
|
|
|
|
|
TextReader reader(filename);
|
|
|
|
std::vector<std::string> program;
|
|
|
|
|
|
|
|
LOG(Message) << "Loading schedule from '" << filename << "'..."
|
|
|
|
<< std::endl;
|
|
|
|
read(reader, "schedule", program);
|
|
|
|
program_.clear();
|
|
|
|
for (auto &name: program)
|
|
|
|
{
|
|
|
|
program_.push_back(env_.getModuleAddress(name));
|
|
|
|
}
|
|
|
|
scheduled_ = true;
|
|
|
|
memPeak_ = memPeak(program_);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Application::printSchedule(void)
|
|
|
|
{
|
|
|
|
if (!scheduled_)
|
|
|
|
{
|
|
|
|
HADRON_ERROR("Computation not scheduled");
|
|
|
|
}
|
|
|
|
LOG(Message) << "Schedule (memory peak: " << MEM_MSG(memPeak_) << "):"
|
|
|
|
<< std::endl;
|
|
|
|
for (unsigned int i = 0; i < program_.size(); ++i)
|
|
|
|
{
|
|
|
|
LOG(Message) << std::setw(4) << i + 1 << ": "
|
|
|
|
<< env_.getModuleName(program_[i]) << std::endl;
|
|
|
|
}
|
2015-12-23 14:21:35 +00:00
|
|
|
}
|
|
|
|
|
2016-05-10 19:07:41 +01:00
|
|
|
// loop on configurations //////////////////////////////////////////////////////
|
2015-12-23 14:21:35 +00:00
|
|
|
void Application::configLoop(void)
|
|
|
|
{
|
2016-05-11 15:01:52 +01:00
|
|
|
auto range = par_.trajCounter;
|
2015-12-23 14:21:35 +00:00
|
|
|
|
|
|
|
for (unsigned int t = range.start; t < range.end; t += range.step)
|
|
|
|
{
|
2016-05-07 21:26:56 +01:00
|
|
|
LOG(Message) << BIG_SEP << " Starting measurement for trajectory " << t
|
|
|
|
<< " " << BIG_SEP << std::endl;
|
2016-05-04 01:07:00 +01:00
|
|
|
env_.setTrajectory(t);
|
2016-05-10 19:07:41 +01:00
|
|
|
env_.executeProgram(program_);
|
2015-12-23 14:21:35 +00:00
|
|
|
}
|
2016-05-09 14:49:06 +01:00
|
|
|
LOG(Message) << BIG_SEP << " End of measurement " << BIG_SEP << std::endl;
|
2016-12-21 23:25:36 +00:00
|
|
|
env_.freeAll();
|
2015-12-23 14:21:35 +00:00
|
|
|
}
|