CoreNEURON
nrn_setup.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 
9 #pragma once
10 
11 #include <string>
18 
19 namespace coreneuron {
20 void read_phase1(NrnThread& nt, UserParams& userParams);
21 void read_phase2(NrnThread& nt, UserParams& userParams);
22 void read_phase3(NrnThread& nt, UserParams& userParams);
23 void read_phasegap(NrnThread& nt, UserParams& userParams);
24 void setup_ThreadData(NrnThread& nt);
25 
26 void nrn_setup(const char* filesdat,
27  bool is_mapping_needed,
28  CheckPoints& checkPoints,
29  bool run_setup_cleanup = true,
30  const char* datapath = "",
31  const char* restore_path = "",
32  double* mindelay = nullptr);
33 
34 // Functions to load and clean data;
35 extern void nrn_init_and_load_data(int argc,
36  char** argv,
37  CheckPoints& checkPoints,
38  bool is_mapping_needed = false,
39  bool run_setup_cleanup = true);
41 extern void nrn_setup_cleanup();
42 
43 extern int nrn_i_layout(int i, int cnt, int j, int size, int layout);
44 
45 size_t memb_list_size(NrnThreadMembList* tml, bool include_data);
46 
47 size_t model_size(bool detailed_report);
48 
49 namespace coreneuron {
50 
51 
52 /// Reading phase number.
53 enum phase { one = 1, two, three, gap };
54 
55 /// Get the phase number in form of the string.
56 template <phase P>
57 inline std::string getPhaseName();
58 
59 template <>
60 inline std::string getPhaseName<one>() {
61  return "1";
62 }
63 
64 template <>
65 inline std::string getPhaseName<two>() {
66  return "2";
67 }
68 
69 template <>
70 inline std::string getPhaseName<three>() {
71  return "3";
72 }
73 
74 template <>
75 inline std::string getPhaseName<gap>() {
76  return "gap";
77 }
78 
79 /// Reading phase selector.
80 template <phase P>
81 inline void read_phase_aux(NrnThread& nt, UserParams&);
82 
83 template <>
84 inline void read_phase_aux<one>(NrnThread& nt, UserParams& userParams) {
85  read_phase1(nt, userParams);
86 }
87 
88 template <>
89 inline void read_phase_aux<two>(NrnThread& nt, UserParams& userParams) {
90  read_phase2(nt, userParams);
91 }
92 
93 template <>
94 inline void read_phase_aux<three>(NrnThread& nt, UserParams& userParams) {
95  read_phase3(nt, userParams);
96 }
97 
98 template <>
99 inline void read_phase_aux<gap>(NrnThread& nt, UserParams& userParams) {
100  read_phasegap(nt, userParams);
101 }
102 
103 /// Reading phase wrapper for each neuron group.
104 template <phase P>
105 inline void* phase_wrapper_w(NrnThread* nt, UserParams& userParams, bool in_memory_transfer) {
106  int i = nt->id;
107  if (i < userParams.ngroup) {
108  if (!in_memory_transfer) {
109  const char* data_dir = userParams.path;
110  // directory to read could be different for phase 2 if we are restoring
111  // all other phases still read from dataset directory because the data
112  // is constant
113  if (P == 2) {
114  data_dir = userParams.restore_path;
115  }
116 
117  std::string fname = std::string(data_dir) + "/" +
118  std::to_string(userParams.gidgroups[i]) + "_" + getPhaseName<P>() +
119  ".dat";
120 
121  // Avoid trying to open the gid_gap.dat file if it doesn't exist when there are no
122  // gap junctions in this gid.
123  // Note that we still need to close `userParams.file_reader[i]`
124  // because files are opened in the order of `gid_1.dat`, `gid_2.dat` and `gid_gap.dat`.
125  // When we open next file, `gid_gap.dat` in this case, we are supposed to close the
126  // handle for `gid_2.dat` even though file doesn't exist.
127  if (P == gap && !FileHandler::file_exist(fname)) {
128  userParams.file_reader[i].close();
129  } else {
130  // if no file failed to open or not opened at all
131  userParams.file_reader[i].open(fname);
132  }
133  }
134  read_phase_aux<P>(*nt, userParams);
135  if (!in_memory_transfer) {
136  userParams.file_reader[i].close();
137  }
138  if (P == 2) {
139  setup_ThreadData(*nt);
140  }
141  }
142  return nullptr;
143 }
144 
145 /// Specific phase reading executed by threads.
146 template <phase P>
147 inline static void phase_wrapper(UserParams& userParams, int direct = 0) {
148  nrn_multithread_job(phase_wrapper_w<P>, userParams, direct != 0);
149 }
150 } // namespace coreneuron
151 } // namespace coreneuron
coreneuron::coreneuron::gap
@ gap
Definition: nrn_setup.hpp:53
coreneuron::UserParams::file_reader
std::vector< FileHandler > file_reader
Definition: user_params.hpp:40
coreneuron::coreneuron::read_phase_aux< two >
void read_phase_aux< two >(NrnThread &nt, UserParams &userParams)
Definition: nrn_setup.hpp:89
coreneuron::model_size
size_t model_size(bool detailed_report)
Definition: nrn_setup.cpp:1047
coreneuron::setup_ThreadData
void setup_ThreadData(NrnThread &nt)
Definition: nrn_setup.cpp:570
coreneuron::FileHandler::file_exist
static bool file_exist(const std::string &filename)
Definition: nrn_filehandler.cpp:20
nrn2core_direct.h
coreneuron::coreneuron::getPhaseName< gap >
std::string getPhaseName< gap >()
Definition: nrn_setup.hpp:75
mem_layout_util.hpp
coreneuron::coreneuron::one
@ one
Definition: nrn_setup.hpp:53
coreneuron::read_phase2
void read_phase2(NrnThread &nt, UserParams &userParams)
Definition: nrn_setup.cpp:924
coreneuron::NrnThread::id
int id
Definition: multicore.hpp:99
coreneuron::coreneuron::read_phase_aux< one >
void read_phase_aux< one >(NrnThread &nt, UserParams &userParams)
Definition: nrn_setup.hpp:84
coreneuron::read_phasegap
void read_phasegap(NrnThread &nt, UserParams &userParams)
Definition: nrn_setup.cpp:588
coreneuron::read_phase1
void read_phase1(NrnThread &nt, UserParams &userParams)
Definition: nrn_setup.cpp:917
coreneuron::coreneuron::two
@ two
Definition: nrn_setup.hpp:53
user_params.hpp
coreneuron::coreneuron::getPhaseName
std::string getPhaseName()
Get the phase number in form of the string.
coreneuron::coreneuron::read_phase_aux< three >
void read_phase_aux< three >(NrnThread &nt, UserParams &userParams)
Definition: nrn_setup.hpp:94
coreneuron
THIS FILE IS AUTO GENERATED DONT MODIFY IT.
Definition: corenrn_parameters.cpp:12
coreneuron::UserParams
This structure is data needed is several part of nrn_setup, phase1 and phase2.
Definition: user_params.hpp:18
coreneuron::coreneuron::read_phase_aux
void read_phase_aux(NrnThread &nt, UserParams &)
Reading phase selector.
coreneuron::i
int i
Definition: cellorder.cpp:485
coreneuron::nrn_setup
void nrn_setup(const char *filesdat, bool is_mapping_needed, CheckPoints &checkPoints, bool run_setup_cleanup, const char *datpath, const char *restore_path, double *mindelay)
Definition: nrn_setup.cpp:401
P
std::pair< size_t, size_t > P
Definition: lpt.cpp:18
coreneuron::coreneuron::phase_wrapper_w
void * phase_wrapper_w(NrnThread *nt, UserParams &userParams, bool in_memory_transfer)
Reading phase wrapper for each neuron group.
Definition: nrn_setup.hpp:105
coreneuron::nrn_multithread_job
void nrn_multithread_job(F &&job, Args &&... args)
Definition: multicore.hpp:161
coreneuron::UserParams::gidgroups
const int *const gidgroups
Array of cell group numbers (indices)
Definition: user_params.hpp:35
coreneuron::nrn_init_and_load_data
void nrn_init_and_load_data(int argc, char *argv[], CheckPoints &checkPoints, bool is_mapping_needed, bool run_setup_cleanup)
Definition: main1.cpp:168
coreneuron::NrnThread
Definition: multicore.hpp:75
coreneuron::coreneuron::getPhaseName< two >
std::string getPhaseName< two >()
Definition: nrn_setup.hpp:65
cnt
#define cnt
Definition: tqueue.hpp:44
coreneuron::UserParams::restore_path
const char *const restore_path
Dataset path from where simulation is being restored.
Definition: user_params.hpp:39
coreneuron::UserParams::path
const char *const path
path to dataset file
Definition: user_params.hpp:37
coreneuron::read_phase3
void read_phase3(NrnThread &nt, UserParams &userParams)
read mapping information for neurons
Definition: nrn_setup.cpp:935
coreneuron::memb_list_size
size_t memb_list_size(NrnThreadMembList *tml, bool include_data)
Definition: nrn_setup.cpp:989
coreneuron::coreneuron::phase_wrapper
static void phase_wrapper(UserParams &userParams, int direct=0)
Specific phase reading executed by threads.
Definition: nrn_setup.hpp:147
coreneuron::nrn_i_layout
int nrn_i_layout(int icnt, int cnt, int isz, int sz, int layout)
This function return the index in a flat array of a matrix coordinate (icnt, isz).
Definition: mem_layout_util.cpp:32
coreneuron::coreneuron::phase
phase
Reading phase number.
Definition: nrn_setup.hpp:53
coreneuron::coreneuron::three
@ three
Definition: nrn_setup.hpp:53
coreneuron::allocate_data_in_mechanism_nrn_init
void allocate_data_in_mechanism_nrn_init()
Definition: finitialize.cpp:21
coreneuron::coreneuron::getPhaseName< one >
std::string getPhaseName< one >()
Definition: nrn_setup.hpp:60
nrn_checkpoint.hpp
coreneuron::nrn_setup_cleanup
void nrn_setup_cleanup()
Clean up.
Definition: nrn_setup.cpp:391
multicore.hpp
coreneuron::UserParams::ngroup
const int ngroup
direct memory mode with neuron, do not open files Number of local cell groups
Definition: user_params.hpp:33
coreneuron::coreneuron::read_phase_aux< gap >
void read_phase_aux< gap >(NrnThread &nt, UserParams &userParams)
Definition: nrn_setup.hpp:99
nrn_filehandler.hpp
coreneuron::coreneuron::getPhaseName< three >
std::string getPhaseName< three >()
Definition: nrn_setup.hpp:70