CoreNEURON
corenrn_parameters.hpp
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 */
8 #pragma once
9 #include <memory>
10 #include <ostream>
11 #include <string>
12 
13 /**
14  * \class corenrn_parameters
15  * \brief Parses and contains Command Line parameters for Core Neuron
16  *
17  * This structure contains all the parameters that CoreNeuron fetches
18  * from the Command Line. It uses the CLI11 libraries to parse these parameters
19  * and saves them in an internal public structure. Each parameter can be
20  * accessed or written freely. By default the constructor instantiates a
21  * CLI11 object and initializes it for CoreNeuron use.
22  * This object is freely accessible from any point of the program.
23  * An ostream method is also provided to print out all the parameters that
24  * CLI11 parse.
25  * Please keep in mind that, due to the nature of the subcommands in CLI11,
26  * the command line parameters for subcategories NEED to be come before the relative
27  * parameter. e.g. --mpi --gpu gpu --nwarp
28  * Also single dash long options are not supported anymore (-mpi -> --mpi).
29  */
30 
31 namespace CLI {
32 struct App;
33 }
34 
35 namespace coreneuron {
36 
38  enum verbose_level : std::uint32_t {
39  NONE = 0,
40  ERROR = 1,
41  INFO = 2,
44  };
45 
46  static constexpr int report_buff_size_default = 4;
47 
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)
58 
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).
65  /// Branch of the code is executed through CUDA kernels instead of
66  /// OpenACC regions.
67  bool binqueue = false; /// Use bin queue.
68 
69  bool show_version = false; /// Print version and exit.
70 
71  bool model_stats = false; /// Print mechanism counts and model size after initialization
72 
73  verbose_level verbose{verbose_level::DEFAULT}; /// Verbosity-level
74 
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
83  /// delay).
84 
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.
94 };
95 
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.
99 
100  void parse(int argc, char* argv[]); /// Runs the CLI11_PARSE macro.
101 
102  /** @brief Reset all parameters to their default values.
103  *
104  * Unfortunately it is awkward to support `x = corenrn_parameters{}`
105  * because `app` holds pointers to members of `corenrn_parameters`.
106  */
107  void reset();
108 
109  inline bool is_quiet() {
110  return verbose == verbose_level::NONE;
111  }
112 
113  /** @brief Return a string summarising the current parameter values.
114  *
115  * This forwards to the CLI11 method of the same name. Returns a string that
116  * could be read in as a config of the current values of the App.
117  *
118  * @param default_also Include any defaulted arguments.
119  * @param write_description Include option descriptions and the App description.
120  */
121  std::string config_to_str(bool default_also = false, bool write_description = false) const;
122 
123  private:
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;
128 };
129 
130 std::ostream& operator<<(std::ostream& os,
131  const corenrn_parameters& corenrn_param); /// Printing method.
132 
133 extern corenrn_parameters corenrn_param; /// Declaring global corenrn_parameters object for this
134  /// instance of CoreNeuron.
135 extern int nrn_nobanner_; /// Global no banner setting
136 
137 } // namespace coreneuron
coreneuron::corenrn_parameters_data::verbose_level
verbose_level
Definition: corenrn_parameters.hpp:38
coreneuron::corenrn_parameters_data::report_buff_size_default
static constexpr int report_buff_size_default
Definition: corenrn_parameters.hpp:46
coreneuron::corenrn_parameters_data::ERROR
@ ERROR
Definition: corenrn_parameters.hpp:40
coreneuron::corenrn_parameters_data
Definition: corenrn_parameters.hpp:37
coreneuron
THIS FILE IS AUTO GENERATED DONT MODIFY IT.
Definition: corenrn_parameters.cpp:12
coreneuron::corenrn_parameters_data::spikebuf
unsigned spikebuf
Definition: corenrn_parameters.hpp:48
coreneuron::corenrn_parameters_data::INFO
@ INFO
Definition: corenrn_parameters.hpp:41
coreneuron::corenrn_parameters_data::NONE
@ NONE
Definition: corenrn_parameters.hpp:39
coreneuron::corenrn_parameters_data::DEFAULT
@ DEFAULT
Definition: corenrn_parameters.hpp:43
coreneuron::corenrn_parameters_data::DEBUG_INFO
@ DEBUG_INFO
Definition: corenrn_parameters.hpp:42
CLI
Definition: corenrn_parameters.hpp:31