Go to the documentation of this file.
10 #include <CLI/CLI.hpp>
17 : m_app{std::make_unique<CLI::App>(
"CoreNeuron - Optimised Simulator Engine for NEURON.")} {
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",
29 "Enable MPI. In order to initialize MPI environment this argument must be specified.");
30 app.add_option(
"--mpi-lib",
32 "CoreNEURON MPI library to load for dynamic MPI support",
34 app.add_flag(
"--gpu", this->gpu,
"Activate GPU computation.");
35 app.add_option(
"--dt",
37 "Fixed time step. The default value is set by defaults.dat or is 0.025.",
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");
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",
49 "Print number of instances of each mechanism and detailed memory stats.");
51 auto sub_gpu = app.add_option_group("GPU", "Commands relative to GPU.");
53 ->add_option("-W, --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)",
58 ->check(CLI::Range(0, 1'000
'000));
60 ->add_option("-R, --cell-permute",
61 this->cell_interleave_permute,
62 "Cell permutation: 0 No permutation; 1 optimise node adjacency; 2 optimize "
65 ->check(CLI::Range(0, 2));
66 sub_gpu->add_flag("--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.");
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);
77 ->add_option("-p, --pattern",
79 "Apply patternstim using the specified spike file.")
80 ->check(CLI::ExistingFile);
82 ->add_option("-s, --seed", this->seed, "Initialization seed for random number generator.")
83 ->check(CLI::Range(0, 100'000
'000));
85 ->add_option("-v, --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);
93 ->add_option("--restore",
95 "Restore simulation from provided checkpoint directory.")
96 ->check(CLI::ExistingDirectory);
98 auto sub_parallel = app.add_option_group("parallel", "Parallel processing options.");
99 sub_parallel->add_flag("-c, --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.");
106 auto sub_spike = app.add_option_group("spike", "Spike exchange options.");
108 ->add_option("--ms-phases", this->ms_phases, "Number of multisend phases, 1 or 2.", true)
109 ->check(CLI::Range(1, 2));
111 ->add_option("--ms-subintervals",
113 "Number of multisend subintervals, 1 or 2.",
115 ->check(CLI::Range(1, 2));
116 sub_spike->add_flag("--multisend",
118 "Use Multisend spike exchange instead of Allgather.");
120 ->add_option("--spkcompress",
122 "Spike compression. Up to ARG are exchanged during MPI_Allgather.",
124 ->check(CLI::Range(0, 100'000));
125 sub_spike->add_flag(
"--binqueue", this->binqueue,
"Use bin queue.");
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));
131 ->add_option("-g, --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));
141 "Temperature in degC. The default value is set in defaults.dat or else is 34.0.",
143 ->check(CLI::Range(-1000., 1000.));
145 ->add_option(
"--mindelay",
147 "Maximum integration interval (likely reduced by minimum NetCon delay).",
149 ->check(CLI::Range(0., 1e9));
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));
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",
161 "Path to place output data files.",
163 sub_output->add_option(
"--checkpoint",
164 this->checkpointpath,
165 "Enable checkpoint and specify directory to store related files.");
167 app.add_flag(
"-v, --version", this->show_version,
"Show version information and quit.");
169 CLI::retire_option(app,
"--show");
176 return m_app->config_to_str(default_also, write_description);
186 m_app->parse(argc, argv);
187 if (
verbose == verbose_level::NONE) {
190 }
catch (
const CLI::ExtrasError& e) {
192 std::cerr <<
"CLI parsing error, see nrniv-core --help for more information. \n"
196 }
catch (
const CLI::ParseError& e) {
202 #ifndef CORENEURON_ENABLE_GPU
205 <<
"Error: GPU support was not enabled at build time but GPU execution was requested."
213 std::cout <<
"CoreNEURON Version : " <<
cnrn_version() << std::endl;
219 os <<
"GENERAL PARAMETERS" << std::endl
226 <<
"GPU" << std::endl
231 <<
"INPUT PARAMETERS" << std::endl
240 <<
"PARALLEL COMPUTATION PARAMETERS" << std::endl
245 <<
"SPIKE EXCHANGE" << std::endl
252 <<
"CONFIGURATION" << std::endl
260 <<
"OUTPUT PARAMETERS" << std::endl
std::string outpath
Directory path where .dat files.
bool skip_mpi_finalize
Enable MPI flag.
std::string datpath
Apply patternstim using the specified spike file.
bool show_version
Use bin queue.
unsigned ms_phases
Gid of cell for prcellstate.
unsigned nwarp
Cell interleaving permutation.
double celsius
I/O timestep to use in msec for reports.
unsigned cell_interleave_permute
Spike Compression.
verbose_level verbose
Print mechanism counts and model size after initialization.
void parse(int argc, char *argv[])
Destructor defined in .cpp where CLI11 types are complete.
std::unique_ptr< CLI::App > m_app
bool threading
Use Multisend spike exchange instead of Allgather.
int prcellgid
Internal buffer used on every rank for spikes.
void reset()
Runs the CLI11_PARSE macro.
unsigned report_buff_size
Number of gpus to use per node.
bool gpu
Enable pthread/openmp.
bool binqueue
Enable CUDA interface (default is the OpenACC interface). Branch of the code is executed through CUDA...
THIS FILE IS AUTO GENERATED DONT MODIFY IT.
double voltage
Temperature in degC.
double forwardskip
Initial voltage used for nrn_finitialize(1, v_init).
std::string reportfilepath
Restore simulation from provided checkpoint directory.
std::string patternstim
Maximum integration interval (likely reduced by minimum NetCon delay).
double tstop
Verbosity-level.
std::string filesdat
Directory where spikes will be written.
std::string restorepath
Name of file containing list of gids dat files read in.
double dt_io
Timestep to use in msec.
bool cuda_interface
Enable GPU computation.
corenrn_parameters corenrn_param
Printing method.
bool multisend
Skip MPI finalization.
std::string checkpointpath
Reports configuration file.
~corenrn_parameters()
Constructor that initializes the CLI11 app.
int seed
Size in MB of the report buffer.
unsigned spkcompress
Number of multisend interval. 1 or 2.
bool mpi_enable
Initialization seed for random number generator (int)
double dt
Stop time of simulation in msec.
int nrn_nobanner_
Declaring global corenrn_parameters object for this instance of CoreNeuron.
std::string config_to_str(bool default_also=false, bool write_description=false) const
Return a string summarising the current parameter values.
unsigned ms_subint
Number of multisend phases, 1 or 2.
std::string mpi_lib
Write parameters to this file.
std::ostream & operator<<(std::ostream &os, const corenrn_parameters &corenrn_param)
std::string cnrn_version()
double mindelay
Forward skip to TIME.