CoreNEURON
corenrn_parameters.cpp
Go to the documentation of this file.
1 /*
2 # =============================================================================
3 # Copyright (c) 2016 - 2022 Blue Brain Project/EPFL
4 #
5 # See top-level LICENSE file for details.
6 # =============================================================================.
7 */
9 
10 #include <CLI/CLI.hpp>
11 
12 namespace coreneuron {
13 
14 extern std::string cnrn_version();
15 
17  : m_app{std::make_unique<CLI::App>("CoreNeuron - Optimised Simulator Engine for NEURON.")} {
18  auto& app = *m_app;
19  app.set_config("--read-config", "", "Read parameters from ini file", false)
20  ->check(CLI::ExistingFile);
21  app.add_option("--write-config",
22  this->writeParametersFilepath,
23  "Write parameters to this file",
24  false);
25 
26  app.add_flag(
27  "--mpi",
28  this->mpi_enable,
29  "Enable MPI. In order to initialize MPI environment this argument must be specified.");
30  app.add_option("--mpi-lib",
31  this->mpi_lib,
32  "CoreNEURON MPI library to load for dynamic MPI support",
33  false);
34  app.add_flag("--gpu", this->gpu, "Activate GPU computation.");
35  app.add_option("--dt",
36  this->dt,
37  "Fixed time step. The default value is set by defaults.dat or is 0.025.",
38  true)
39  ->check(CLI::Range(-1'000., 1e9));
40  app.add_option("-e, --tstop", this->tstop, "Stop Time in ms.")->check(CLI::Range(0., 1e9));
41  app.add_flag("--show");
42  app.add_set(
43  "--verbose",
44  this->verbose,
45  {verbose_level::NONE, verbose_level::ERROR, verbose_level::INFO, verbose_level::DEBUG_INFO},
46  "Verbose level: 0 = NONE, 1 = ERROR, 2 = INFO, 3 = DEBUG. Default is INFO");
47  app.add_flag("--model-stats",
48  this->model_stats,
49  "Print number of instances of each mechanism and detailed memory stats.");
50 
51  auto sub_gpu = app.add_option_group("GPU", "Commands relative to GPU.");
52  sub_gpu
53  ->add_option("-W, --nwarp",
54  this->nwarp,
55  "Number of warps to execute in parallel the Hines solver. Each warp solves a "
56  "group of cells. (Only used with cell permute 2)",
57  true)
58  ->check(CLI::Range(0, 1'000'000));
59  sub_gpu
60  ->add_option("-R, --cell-permute",
61  this->cell_interleave_permute,
62  "Cell permutation: 0 No permutation; 1 optimise node adjacency; 2 optimize "
63  "parent adjacency.",
64  true)
65  ->check(CLI::Range(0, 2));
66  sub_gpu->add_flag("--cuda-interface",
67  this->cuda_interface,
68  "Activate CUDA branch of the code.");
69  sub_gpu->add_option("-n, --num-gpus", this->num_gpus, "Number of gpus to use per node.");
70 
71  auto sub_input = app.add_option_group("input", "Input dataset options.");
72  sub_input->add_option("-d, --datpath", this->datpath, "Path containing CoreNeuron data files.")
73  ->check(CLI::ExistingDirectory);
74  sub_input->add_option("-f, --filesdat", this->filesdat, "Name for the distribution file.", true)
75  ->check(CLI::ExistingFile);
76  sub_input
77  ->add_option("-p, --pattern",
78  this->patternstim,
79  "Apply patternstim using the specified spike file.")
80  ->check(CLI::ExistingFile);
81  sub_input
82  ->add_option("-s, --seed", this->seed, "Initialization seed for random number generator.")
83  ->check(CLI::Range(0, 100'000'000));
84  sub_input
85  ->add_option("-v, --voltage",
86  this->voltage,
87  "Initial voltage used for nrn_finitialize(1, v_init). If 1000, then "
88  "nrn_finitialize(0,...).")
89  ->check(CLI::Range(-1e9, 1e9));
90  sub_input->add_option("--report-conf", this->reportfilepath, "Reports configuration file.")
91  ->check(CLI::ExistingFile);
92  sub_input
93  ->add_option("--restore",
94  this->restorepath,
95  "Restore simulation from provided checkpoint directory.")
96  ->check(CLI::ExistingDirectory);
97 
98  auto sub_parallel = app.add_option_group("parallel", "Parallel processing options.");
99  sub_parallel->add_flag("-c, --threading",
100  this->threading,
101  "Parallel threads. The default is serial threads.");
102  sub_parallel->add_flag("--skip-mpi-finalize",
103  this->skip_mpi_finalize,
104  "Do not call mpi finalize.");
105 
106  auto sub_spike = app.add_option_group("spike", "Spike exchange options.");
107  sub_spike
108  ->add_option("--ms-phases", this->ms_phases, "Number of multisend phases, 1 or 2.", true)
109  ->check(CLI::Range(1, 2));
110  sub_spike
111  ->add_option("--ms-subintervals",
112  this->ms_subint,
113  "Number of multisend subintervals, 1 or 2.",
114  true)
115  ->check(CLI::Range(1, 2));
116  sub_spike->add_flag("--multisend",
117  this->multisend,
118  "Use Multisend spike exchange instead of Allgather.");
119  sub_spike
120  ->add_option("--spkcompress",
121  this->spkcompress,
122  "Spike compression. Up to ARG are exchanged during MPI_Allgather.",
123  true)
124  ->check(CLI::Range(0, 100'000));
125  sub_spike->add_flag("--binqueue", this->binqueue, "Use bin queue.");
126 
127  auto sub_config = app.add_option_group("config", "Config options.");
128  sub_config->add_option("-b, --spikebuf", this->spikebuf, "Spike buffer size.", true)
129  ->check(CLI::Range(0, 2'000'000'000));
130  sub_config
131  ->add_option("-g, --prcellgid",
132  this->prcellgid,
133  "Output prcellstate information for the gid NUMBER.")
134  ->check(CLI::Range(-1, 2'000'000'000));
135  sub_config->add_option("-k, --forwardskip", this->forwardskip, "Forwardskip to TIME")
136  ->check(CLI::Range(0., 1e9));
137  sub_config
138  ->add_option(
139  "-l, --celsius",
140  this->celsius,
141  "Temperature in degC. The default value is set in defaults.dat or else is 34.0.",
142  true)
143  ->check(CLI::Range(-1000., 1000.));
144  sub_config
145  ->add_option("--mindelay",
146  this->mindelay,
147  "Maximum integration interval (likely reduced by minimum NetCon delay).",
148  true)
149  ->check(CLI::Range(0., 1e9));
150  sub_config
151  ->add_option("--report-buffer-size",
152  this->report_buff_size,
153  "Size in MB of the report buffer.")
154  ->check(CLI::Range(1, 128));
155 
156  auto sub_output = app.add_option_group("output", "Output configuration.");
157  sub_output->add_option("-i, --dt_io", this->dt_io, "Dt of I/O.", true)
158  ->check(CLI::Range(-1000., 1e9));
159  sub_output->add_option("-o, --outpath",
160  this->outpath,
161  "Path to place output data files.",
162  true);
163  sub_output->add_option("--checkpoint",
164  this->checkpointpath,
165  "Enable checkpoint and specify directory to store related files.");
166 
167  app.add_flag("-v, --version", this->show_version, "Show version information and quit.");
168 
169  CLI::retire_option(app, "--show");
170 }
171 
172 // Implementation in .cpp file where CLI types are complete.
174 
175 std::string corenrn_parameters::config_to_str(bool default_also, bool write_description) const {
176  return m_app->config_to_str(default_also, write_description);
177 }
178 
180  static_cast<corenrn_parameters_data&>(*this) = corenrn_parameters_data{};
181  m_app->clear();
182 }
183 
184 void corenrn_parameters::parse(int argc, char** argv) {
185  try {
186  m_app->parse(argc, argv);
187  if (verbose == verbose_level::NONE) {
188  nrn_nobanner_ = 1;
189  }
190  } catch (const CLI::ExtrasError& e) {
191  // in case of parsing errors, show message with exception
192  std::cerr << "CLI parsing error, see nrniv-core --help for more information. \n"
193  << std::endl;
194  m_app->exit(e);
195  throw e;
196  } catch (const CLI::ParseError& e) {
197  // use --help is also ParseError; in this case exit by showing all options
198  m_app->exit(e);
199  exit(0);
200  }
201 
202 #ifndef CORENEURON_ENABLE_GPU
203  if (gpu) {
204  std::cerr
205  << "Error: GPU support was not enabled at build time but GPU execution was requested."
206  << std::endl;
207  exit(42);
208  }
209 #endif
210 
211  // is user has asked for version info, print it and exit
212  if (show_version) {
213  std::cout << "CoreNEURON Version : " << cnrn_version() << std::endl;
214  exit(0);
215  }
216 };
217 
218 std::ostream& operator<<(std::ostream& os, const corenrn_parameters& corenrn_param) {
219  os << "GENERAL PARAMETERS" << std::endl
220  << "--mpi=" << (corenrn_param.mpi_enable ? "true" : "false") << std::endl
221  << "--mpi-lib=" << corenrn_param.mpi_lib << std::endl
222  << "--gpu=" << (corenrn_param.gpu ? "true" : "false") << std::endl
223  << "--dt=" << corenrn_param.dt << std::endl
224  << "--tstop=" << corenrn_param.tstop << std::endl
225  << std::endl
226  << "GPU" << std::endl
227  << "--nwarp=" << corenrn_param.nwarp << std::endl
228  << "--cell-permute=" << corenrn_param.cell_interleave_permute << std::endl
229  << "--cuda-interface=" << (corenrn_param.cuda_interface ? "true" : "false") << std::endl
230  << std::endl
231  << "INPUT PARAMETERS" << std::endl
232  << "--voltage=" << corenrn_param.voltage << std::endl
233  << "--seed=" << corenrn_param.seed << std::endl
234  << "--datpath=" << corenrn_param.datpath << std::endl
235  << "--filesdat=" << corenrn_param.filesdat << std::endl
236  << "--pattern=" << corenrn_param.patternstim << std::endl
237  << "--report-conf=" << corenrn_param.reportfilepath << std::endl
238  << std::left << std::setw(15) << "--restore=" << corenrn_param.restorepath << std::endl
239  << std::endl
240  << "PARALLEL COMPUTATION PARAMETERS" << std::endl
241  << "--threading=" << (corenrn_param.threading ? "true" : "false") << std::endl
242  << "--skip_mpi_finalize=" << (corenrn_param.skip_mpi_finalize ? "true" : "false")
243  << std::endl
244  << std::endl
245  << "SPIKE EXCHANGE" << std::endl
246  << "--ms_phases=" << corenrn_param.ms_phases << std::endl
247  << "--ms_subintervals=" << corenrn_param.ms_subint << std::endl
248  << "--multisend=" << (corenrn_param.multisend ? "true" : "false") << std::endl
249  << "--spk_compress=" << corenrn_param.spkcompress << std::endl
250  << "--binqueue=" << (corenrn_param.binqueue ? "true" : "false") << std::endl
251  << std::endl
252  << "CONFIGURATION" << std::endl
253  << "--spikebuf=" << corenrn_param.spikebuf << std::endl
254  << "--prcellgid=" << corenrn_param.prcellgid << std::endl
255  << "--forwardskip=" << corenrn_param.forwardskip << std::endl
256  << "--celsius=" << corenrn_param.celsius << std::endl
257  << "--mindelay=" << corenrn_param.mindelay << std::endl
258  << "--report-buffer-size=" << corenrn_param.report_buff_size << std::endl
259  << std::endl
260  << "OUTPUT PARAMETERS" << std::endl
261  << "--dt_io=" << corenrn_param.dt_io << std::endl
262  << "--outpath=" << corenrn_param.outpath << std::endl
263  << "--checkpoint=" << corenrn_param.checkpointpath << std::endl;
264 
265  return os;
266 }
267 
270 
271 } // namespace coreneuron
coreneuron::corenrn_parameters_data::outpath
std::string outpath
Directory path where .dat files.
Definition: corenrn_parameters.hpp:87
coreneuron::corenrn_parameters_data::skip_mpi_finalize
bool skip_mpi_finalize
Enable MPI flag.
Definition: corenrn_parameters.hpp:60
coreneuron::corenrn_parameters_data::datpath
std::string datpath
Apply patternstim using the specified spike file.
Definition: corenrn_parameters.hpp:86
coreneuron::corenrn_parameters_data::show_version
bool show_version
Use bin queue.
Definition: corenrn_parameters.hpp:69
coreneuron::corenrn_parameters_data::ms_phases
unsigned ms_phases
Gid of cell for prcellstate.
Definition: corenrn_parameters.hpp:50
coreneuron::corenrn_parameters_data::nwarp
unsigned nwarp
Cell interleaving permutation.
Definition: corenrn_parameters.hpp:54
coreneuron::corenrn_parameters_data::celsius
double celsius
I/O timestep to use in msec for reports.
Definition: corenrn_parameters.hpp:79
coreneuron::corenrn_parameters_data::cell_interleave_permute
unsigned cell_interleave_permute
Spike Compression.
Definition: corenrn_parameters.hpp:53
coreneuron::corenrn_parameters_data::verbose
verbose_level verbose
Print mechanism counts and model size after initialization.
Definition: corenrn_parameters.hpp:73
coreneuron::corenrn_parameters::parse
void parse(int argc, char *argv[])
Destructor defined in .cpp where CLI11 types are complete.
Definition: corenrn_parameters.cpp:184
coreneuron::corenrn_parameters::m_app
std::unique_ptr< CLI::App > m_app
Definition: corenrn_parameters.hpp:127
coreneuron::corenrn_parameters_data::threading
bool threading
Use Multisend spike exchange instead of Allgather.
Definition: corenrn_parameters.hpp:62
coreneuron::corenrn_parameters_data::prcellgid
int prcellgid
Internal buffer used on every rank for spikes.
Definition: corenrn_parameters.hpp:49
coreneuron::corenrn_parameters::reset
void reset()
Runs the CLI11_PARSE macro.
Definition: corenrn_parameters.cpp:179
coreneuron::corenrn_parameters_data::report_buff_size
unsigned report_buff_size
Number of gpus to use per node.
Definition: corenrn_parameters.hpp:56
coreneuron::corenrn_parameters_data::gpu
bool gpu
Enable pthread/openmp.
Definition: corenrn_parameters.hpp:63
coreneuron::corenrn_parameters_data
Definition: corenrn_parameters.hpp:37
coreneuron::corenrn_parameters_data::binqueue
bool binqueue
Enable CUDA interface (default is the OpenACC interface). Branch of the code is executed through CUDA...
Definition: corenrn_parameters.hpp:67
coreneuron
THIS FILE IS AUTO GENERATED DONT MODIFY IT.
Definition: corenrn_parameters.cpp:12
coreneuron::corenrn_parameters_data::voltage
double voltage
Temperature in degC.
Definition: corenrn_parameters.hpp:80
coreneuron::corenrn_parameters_data::forwardskip
double forwardskip
Initial voltage used for nrn_finitialize(1, v_init).
Definition: corenrn_parameters.hpp:81
coreneuron::corenrn_parameters_data::reportfilepath
std::string reportfilepath
Restore simulation from provided checkpoint directory.
Definition: corenrn_parameters.hpp:90
corenrn_parameters.hpp
coreneuron::corenrn_parameters_data::patternstim
std::string patternstim
Maximum integration interval (likely reduced by minimum NetCon delay).
Definition: corenrn_parameters.hpp:85
coreneuron::corenrn_parameters_data::spikebuf
unsigned spikebuf
Definition: corenrn_parameters.hpp:48
coreneuron::corenrn_parameters_data::tstop
double tstop
Verbosity-level.
Definition: corenrn_parameters.hpp:75
coreneuron::dt
double dt
Definition: register_mech.cpp:22
coreneuron::corenrn_parameters_data::filesdat
std::string filesdat
Directory where spikes will be written.
Definition: corenrn_parameters.hpp:88
coreneuron::corenrn_parameters_data::restorepath
std::string restorepath
Name of file containing list of gids dat files read in.
Definition: corenrn_parameters.hpp:89
coreneuron::corenrn_parameters_data::dt_io
double dt_io
Timestep to use in msec.
Definition: corenrn_parameters.hpp:77
coreneuron::corenrn_parameters_data::cuda_interface
bool cuda_interface
Enable GPU computation.
Definition: corenrn_parameters.hpp:64
coreneuron::corenrn_param
corenrn_parameters corenrn_param
Printing method.
Definition: corenrn_parameters.cpp:268
coreneuron::corenrn_parameters_data::multisend
bool multisend
Skip MPI finalization.
Definition: corenrn_parameters.hpp:61
coreneuron::corenrn_parameters_data::checkpointpath
std::string checkpointpath
Reports configuration file.
Definition: corenrn_parameters.hpp:91
coreneuron::corenrn_parameters::~corenrn_parameters
~corenrn_parameters()
Constructor that initializes the CLI11 app.
coreneuron::corenrn_parameters_data::seed
int seed
Size in MB of the report buffer.
Definition: corenrn_parameters.hpp:57
coreneuron::corenrn_parameters_data::spkcompress
unsigned spkcompress
Number of multisend interval. 1 or 2.
Definition: corenrn_parameters.hpp:52
coreneuron::celsius
double celsius
Definition: register_mech.cpp:22
coreneuron::corenrn_parameters_data::mpi_enable
bool mpi_enable
Initialization seed for random number generator (int)
Definition: corenrn_parameters.hpp:59
coreneuron::corenrn_parameters_data::dt
double dt
Stop time of simulation in msec.
Definition: corenrn_parameters.hpp:76
coreneuron::corenrn_parameters
Definition: corenrn_parameters.hpp:96
coreneuron::nrn_nobanner_
int nrn_nobanner_
Declaring global corenrn_parameters object for this instance of CoreNeuron.
Definition: corenrn_parameters.cpp:269
coreneuron::corenrn_parameters::config_to_str
std::string config_to_str(bool default_also=false, bool write_description=false) const
Return a string summarising the current parameter values.
Definition: corenrn_parameters.cpp:175
coreneuron::corenrn_parameters_data::ms_subint
unsigned ms_subint
Number of multisend phases, 1 or 2.
Definition: corenrn_parameters.hpp:51
coreneuron::corenrn_parameters_data::mpi_lib
std::string mpi_lib
Write parameters to this file.
Definition: corenrn_parameters.hpp:93
coreneuron::corenrn_parameters::corenrn_parameters
corenrn_parameters()
Definition: corenrn_parameters.cpp:16
coreneuron::operator<<
std::ostream & operator<<(std::ostream &os, const corenrn_parameters &corenrn_param)
Definition: corenrn_parameters.cpp:218
coreneuron::cnrn_version
std::string cnrn_version()
Definition: main1.cpp:408
coreneuron::corenrn_parameters_data::mindelay
double mindelay
Forward skip to TIME.
Definition: corenrn_parameters.hpp:82