2016-12-15 18:26:39 +00:00
|
|
|
/*************************************************************************************
|
|
|
|
|
2016-02-25 12:07:21 +00:00
|
|
|
Grid physics library, www.github.com/paboyle/Grid
|
|
|
|
|
2018-09-01 21:30:30 +01:00
|
|
|
Source file: Hadrons/Application.hpp
|
2016-02-25 12:07:21 +00:00
|
|
|
|
2019-02-05 18:55:24 +00:00
|
|
|
Copyright (C) 2015-2019
|
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
|
|
|
|
|
|
|
#ifndef Hadrons_Application_hpp_
|
|
|
|
#define Hadrons_Application_hpp_
|
|
|
|
|
2018-08-28 15:00:40 +01:00
|
|
|
#include <Hadrons/Global.hpp>
|
|
|
|
#include <Hadrons/VirtualMachine.hpp>
|
|
|
|
#include <Hadrons/Module.hpp>
|
2015-12-23 14:21:35 +00:00
|
|
|
|
2015-10-27 17:33:18 +00:00
|
|
|
BEGIN_HADRONS_NAMESPACE
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* Main program manager *
|
|
|
|
******************************************************************************/
|
|
|
|
class Application
|
|
|
|
{
|
2015-12-23 14:21:35 +00:00
|
|
|
public:
|
2016-11-28 07:02:15 +00:00
|
|
|
class TrajRange: Serializable
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
GRID_SERIALIZABLE_CLASS_MEMBERS(TrajRange,
|
|
|
|
unsigned int, start,
|
|
|
|
unsigned int, end,
|
|
|
|
unsigned int, step);
|
|
|
|
};
|
|
|
|
class GlobalPar: Serializable
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
GRID_SERIALIZABLE_CLASS_MEMBERS(GlobalPar,
|
2017-12-13 16:36:15 +00:00
|
|
|
TrajRange, trajCounter,
|
|
|
|
VirtualMachine::GeneticPar, genetic,
|
2018-08-14 20:03:53 +01:00
|
|
|
std::string, runId,
|
2018-11-27 18:46:43 +00:00
|
|
|
std::string, graphFile,
|
|
|
|
int, parallelWriteMaxRetry);
|
|
|
|
GlobalPar(void): parallelWriteMaxRetry{-1} {}
|
2016-11-28 07:02:15 +00:00
|
|
|
};
|
2015-10-27 17:33:18 +00:00
|
|
|
public:
|
2016-11-28 07:02:15 +00:00
|
|
|
// constructors
|
|
|
|
Application(void);
|
|
|
|
Application(const GlobalPar &par);
|
2016-01-14 04:22:37 +00:00
|
|
|
Application(const std::string parameterFileName);
|
2015-10-27 17:33:18 +00:00
|
|
|
// destructor
|
2016-11-28 07:02:15 +00:00
|
|
|
virtual ~Application(void) = default;
|
|
|
|
// access
|
2016-12-14 18:01:56 +00:00
|
|
|
void setPar(const GlobalPar &par);
|
|
|
|
const GlobalPar & getPar(void);
|
2016-12-05 02:44:16 +00:00
|
|
|
// module creation
|
|
|
|
template <typename M>
|
|
|
|
void createModule(const std::string name);
|
|
|
|
template <typename M>
|
|
|
|
void createModule(const std::string name, const typename M::Par &par);
|
2015-10-27 17:33:18 +00:00
|
|
|
// execute
|
|
|
|
void run(void);
|
2016-12-14 18:01:56 +00:00
|
|
|
// XML parameter file I/O
|
|
|
|
void parseParameterFile(const std::string parameterFileName);
|
|
|
|
void saveParameterFile(const std::string parameterFileName);
|
2015-12-07 18:26:38 +00:00
|
|
|
// schedule computation
|
|
|
|
void schedule(void);
|
2016-12-14 19:40:36 +00:00
|
|
|
void saveSchedule(const std::string filename);
|
|
|
|
void loadSchedule(const std::string filename);
|
|
|
|
void printSchedule(void);
|
2016-05-10 19:07:41 +01:00
|
|
|
// loop on configurations
|
|
|
|
void configLoop(void);
|
2017-01-21 21:40:23 +00:00
|
|
|
private:
|
|
|
|
// environment shortcut
|
2017-12-05 14:31:59 +00:00
|
|
|
DEFINE_ENV_ALIAS;
|
|
|
|
// virtual machine shortcut
|
|
|
|
DEFINE_VM_ALIAS;
|
2015-10-27 17:33:18 +00:00
|
|
|
private:
|
2017-12-13 16:36:15 +00:00
|
|
|
long unsigned int locVol_;
|
|
|
|
std::string parameterFileName_{""};
|
|
|
|
GlobalPar par_;
|
|
|
|
VirtualMachine::Program program_;
|
|
|
|
bool scheduled_{false}, loadedSchedule_{false};
|
2015-10-27 17:33:18 +00:00
|
|
|
};
|
|
|
|
|
2016-12-05 02:44:16 +00:00
|
|
|
/******************************************************************************
|
|
|
|
* Application template implementation *
|
|
|
|
******************************************************************************/
|
|
|
|
// module creation /////////////////////////////////////////////////////////////
|
|
|
|
template <typename M>
|
|
|
|
void Application::createModule(const std::string name)
|
|
|
|
{
|
2017-12-05 14:31:59 +00:00
|
|
|
vm().createModule<M>(name);
|
2017-12-13 16:36:15 +00:00
|
|
|
scheduled_ = false;
|
2016-12-05 02:44:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template <typename M>
|
|
|
|
void Application::createModule(const std::string name,
|
|
|
|
const typename M::Par &par)
|
|
|
|
{
|
2017-12-05 14:31:59 +00:00
|
|
|
vm().createModule<M>(name, par);
|
2017-12-13 16:36:15 +00:00
|
|
|
scheduled_ = false;
|
2016-12-05 02:44:16 +00:00
|
|
|
}
|
|
|
|
|
2015-10-27 17:33:18 +00:00
|
|
|
END_HADRONS_NAMESPACE
|
|
|
|
|
|
|
|
#endif // Hadrons_Application_hpp_
|