48 unsigned spikebuf = 100
'000; /// Internal buffer used on every rank for spikes
49 int prcellgid = -1; /// Gid of cell for prcellstate
50 unsigned ms_phases = 2; /// Number of multisend phases, 1 or 2
51 unsigned ms_subint = 2; /// Number of multisend interval. 1 or 2
52 unsigned spkcompress = 0; /// Spike Compression
53 unsigned cell_interleave_permute = 0; /// Cell interleaving permutation
54 unsigned nwarp = 65536; /// Number of warps to balance for cell_interleave_permute == 2
55 unsigned num_gpus = 0; /// Number of gpus to use per node
56 unsigned report_buff_size = report_buff_size_default; /// Size in MB of the report buffer.
57 int seed = -1; /// Initialization seed for random number generator (int)
59 bool mpi_enable = false; /// Enable MPI flag.
60 bool skip_mpi_finalize = false; /// Skip MPI finalization
61 bool multisend = false; /// Use Multisend spike exchange instead of Allgather.
62 bool threading = false; /// Enable pthread/openmp
63 bool gpu = false; /// Enable GPU computation.
64 bool cuda_interface = false; /// Enable CUDA interface (default is the OpenACC interface).
67 bool binqueue = false; /// Use bin queue.
69 bool show_version = false; /// Print version and exit.
71 bool model_stats = false; /// Print mechanism counts and model size after initialization
73 verbose_level verbose{verbose_level::DEFAULT}; /// Verbosity-level
75 double tstop = 100; /// Stop time of simulation in msec
76 double dt = -1000.0; /// Timestep to use in msec
77 double dt_io = 0.1; /// I/O timestep to use in msec
78 double dt_report; /// I/O timestep to use in msec for reports
79 double celsius = -1000.0; /// Temperature in degC.
80 double voltage = -65.0; /// Initial voltage used for nrn_finitialize(1, v_init).
81 double forwardskip = 0.; /// Forward skip to TIME.
82 double mindelay = 10.; /// Maximum integration interval (likely reduced by minimum NetCon
85 std::string patternstim; /// Apply patternstim using the specified spike file.
86 std::string datpath = "."; /// Directory path where .dat files
87 std::string outpath = "."; /// Directory where spikes will be written
88 std::string filesdat = "files.dat"; /// Name of file containing list of gids dat files read in
89 std::string restorepath; /// Restore simulation from provided checkpoint directory.
90 std::string reportfilepath; /// Reports configuration file.
91 std::string checkpointpath; /// Enable checkpoint and specify directory to store related files.
92 std::string writeParametersFilepath; /// Write parameters to this file
93 std::string mpi_lib; /// Name of CoreNEURON MPI library to load dynamically.
96 struct corenrn_parameters: corenrn_parameters_data {
97 corenrn_parameters(); /// Constructor that initializes the CLI11 app.
98 ~corenrn_parameters(); /// Destructor defined in .cpp where CLI11 types are complete.
100 void parse(int argc, char* argv[]); /// Runs the CLI11_PARSE macro.
109 inline bool is_quiet() {
110 return verbose == verbose_level::NONE;
121 std::string config_to_str(bool default_also = false, bool write_description = false) const;
124 // CLI app that performs CLI parsing. std::unique_ptr avoids having to
125 // include CLI11 headers from CoreNEURON headers, and therefore avoids
126 // CoreNEURON having to install CLI11 when using it from a submodule.
127 std::unique_ptr<CLI::App> m_app;
130 std::ostream& operator<<(std::ostream& os,
131 const corenrn_parameters& corenrn_param); /// Printing method.
133 extern corenrn_parameters corenrn_param; /// Declaring global corenrn_parameters object for this
135 extern int nrn_nobanner_; /// Global no banner setting
137 } // namespace coreneuron