CoreNEURON
test_cmdline_interface.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 #define BOOST_TEST_MODULE cmdline_interface
11 #include <boost/test/included/unit_test.hpp>
12 
13 #include <cfloat>
14 
15 using namespace coreneuron;
16 
17 BOOST_AUTO_TEST_CASE(cmdline_interface) {
18  const char* argv[] = {
19 
20  "nrniv-core",
21 
22  "--mpi",
23 
24  "--dt",
25  "0.02",
26 
27  "--tstop",
28  "0.1",
29 #ifdef CORENEURON_ENABLE_GPU
30  "--gpu",
31 #endif
32  "--cell-permute",
33  "2",
34 
35  "--nwarp",
36  "8",
37 
38  "-d",
39  "./",
40 
41  "--voltage",
42  "-32",
43 
44  "--threading",
45 
46  "--ms-phases",
47  "1",
48 
49  "--ms-subintervals",
50  "2",
51 
52  "--multisend",
53 
54  "--spkcompress",
55  "32",
56 
57  "--binqueue",
58 
59  "--spikebuf",
60  "100",
61 
62  "--prcellgid",
63  "12",
64 
65  "--forwardskip",
66  "0.02",
67 
68  "--celsius",
69  "25.12",
70 
71  "--mindelay",
72  "0.1",
73 
74  "--dt_io",
75  "0.2"};
76  constexpr int argc = sizeof argv / sizeof argv[0];
77 
78  corenrn_parameters corenrn_param_test;
79 
80  corenrn_param_test.parse(argc, const_cast<char**>(argv)); // discarding const as CLI11
81  // interface is not const
82 
83  BOOST_CHECK(corenrn_param_test.seed == -1); // testing default value
84 
85  BOOST_CHECK(corenrn_param_test.spikebuf == 100);
86 
87  BOOST_CHECK(corenrn_param_test.threading == true);
88 
89  BOOST_CHECK(corenrn_param_test.dt == 0.02);
90 
91  BOOST_CHECK(corenrn_param_test.tstop == 0.1);
92 
93  BOOST_CHECK(corenrn_param_test.prcellgid == 12);
94 #ifdef CORENEURON_ENABLE_GPU
95  BOOST_CHECK(corenrn_param_test.gpu == true);
96 #else
97  BOOST_CHECK(corenrn_param_test.gpu == false);
98 #endif
99  BOOST_CHECK(corenrn_param_test.dt_io == 0.2);
100 
101  BOOST_CHECK(corenrn_param_test.forwardskip == 0.02);
102 
103  BOOST_CHECK(corenrn_param_test.celsius == 25.12);
104 
105  BOOST_CHECK(corenrn_param_test.mpi_enable == true);
106 
107  BOOST_CHECK(corenrn_param_test.cell_interleave_permute == 2);
108 
109  BOOST_CHECK(corenrn_param_test.voltage == -32);
110 
111  BOOST_CHECK(corenrn_param_test.nwarp == 8);
112 
113  BOOST_CHECK(corenrn_param_test.multisend == true);
114 
115  BOOST_CHECK(corenrn_param_test.mindelay == 0.1);
116 
117  BOOST_CHECK(corenrn_param_test.ms_phases == 1);
118 
119  BOOST_CHECK(corenrn_param_test.ms_subint == 2);
120 
121  BOOST_CHECK(corenrn_param_test.spkcompress == 32);
122 
123  BOOST_CHECK(corenrn_param_test.multisend == true);
124 
125  // Reset all parameters to their default values.
126  corenrn_param_test.reset();
127 
128  // Should match a default-constructed set of parameters.
129  BOOST_CHECK_EQUAL(corenrn_param_test.voltage, corenrn_parameters{}.voltage);
130 
131  // Everything has its default value, and the first `false` says not to
132  // include default values in the output, so this should be empty
133  BOOST_CHECK(corenrn_param_test.config_to_str(false, false).empty());
134 }
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::parse
void parse(int argc, char *argv[])
Destructor defined in .cpp where CLI11 types are complete.
Definition: corenrn_parameters.cpp:184
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::gpu
bool gpu
Enable pthread/openmp.
Definition: corenrn_parameters.hpp:63
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
corenrn_parameters.hpp
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
BOOST_AUTO_TEST_CASE
BOOST_AUTO_TEST_CASE(cmdline_interface)
Definition: test_cmdline_interface.cpp:17
coreneuron::corenrn_parameters_data::dt_io
double dt_io
Timestep to use in msec.
Definition: corenrn_parameters.hpp:77
coreneuron::corenrn_parameters_data::multisend
bool multisend
Skip MPI finalization.
Definition: corenrn_parameters.hpp:61
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::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::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::mindelay
double mindelay
Forward skip to TIME.
Definition: corenrn_parameters.hpp:82