CoreNEURON
phase1.cpp
Go to the documentation of this file.
1 /*
2 # =============================================================================
3 # Copyright (c) 2016 - 2021 Blue Brain Project/EPFL
4 #
5 # See top-level LICENSE file for details.
6 # =============================================================================
7 */
8 
9 #include <cassert>
10 #include <mutex>
11 
14 #include "coreneuron/io/phase1.hpp"
16 
17 int (*nrn2core_get_dat1_)(int tid,
18  int& n_presyn,
19  int& n_netcon,
20  int*& output_gid,
21  int*& netcon_srcgid,
22  std::vector<int>& netcon_negsrcgid_tid);
23 
24 namespace coreneuron {
26  assert(!F.fail());
27  int n_presyn = F.read_int(); /// Number of PreSyn-s in NrnThread nt
28  int n_netcon = F.read_int(); /// Number of NetCon-s in NrnThread nt
29 
30  this->output_gids = F.read_vector<int>(n_presyn);
31  this->netcon_srcgids = F.read_vector<int>(n_netcon);
32  // For file mode transfer, it is not allowed that negative gids exist
33  // in different threads. So this->netcon_tids remains clear.
34 
35  F.close();
36 }
37 
38 Phase1::Phase1(int thread_id) {
39  int* output_gids;
40  int* netcon_srcgid;
41  int n_presyn;
42  int n_netcon;
43 
44  // TODO : check error codes for NEURON - CoreNEURON communication
45  int valid = (*nrn2core_get_dat1_)(
46  thread_id, n_presyn, n_netcon, output_gids, netcon_srcgid, this->netcon_negsrcgid_tid);
47  if (!valid) {
48  return;
49  }
50 
51  this->output_gids = std::vector<int>(output_gids, output_gids + n_presyn);
52  delete[] output_gids;
53  this->netcon_srcgids = std::vector<int>(netcon_srcgid, netcon_srcgid + n_netcon);
54  delete[] netcon_srcgid;
55 }
56 
58  nt.n_presyn = this->output_gids.size();
59  nt.n_netcon = this->netcon_srcgids.size();
60 
61  nrnthreads_netcon_srcgid[nt.id] = new int[nt.n_netcon];
62  std::copy(this->netcon_srcgids.begin(),
63  this->netcon_srcgids.end(),
65 
66  // netcon_negsrcgid_tid is empty if file transfer or single thread
68 
69  nt.netcons = new NetCon[nt.n_netcon];
70 
71  if (nt.n_presyn) {
73  nt.presyns = new PreSyn[nt.n_presyn];
74  }
75 
76  PreSyn* ps = nt.presyns;
77  /// go through all presyns
78  for (auto& gid: this->output_gids) {
79  if (gid == -1) {
80  ++ps;
81  continue;
82  }
83 
84  {
85  const std::lock_guard<OMP_Mutex> lock(mut);
86  // Note that the negative (type, index)
87  // coded information goes into the neg_gid2out[tid] hash table.
88  // See netpar.cpp for the netpar_tid_... function implementations.
89  // Both that table and the process wide gid2out table can be deleted
90  // before the end of setup
91 
92  /// Put gid into the gid2out hash table with correspondent output PreSyn
93  /// Or to the negative PreSyn map
94  if (gid >= 0) {
95  char m[200];
96  if (gid2in.find(gid) != gid2in.end()) {
97  sprintf(m, "gid=%d already exists as an input port", gid);
98  hoc_execerror(m,
99  "Setup all the output ports on this process before using them as "
100  "input ports.");
101  }
102  if (gid2out.find(gid) != gid2out.end()) {
103  sprintf(m, "gid=%d already exists on this process as an output port", gid);
104  hoc_execerror(m, 0);
105  }
106  ps->gid_ = gid;
107  ps->output_index_ = gid;
108  gid2out[gid] = ps;
109  } else {
110  nrn_assert(neg_gid2out[nt.id].find(gid) == neg_gid2out[nt.id].end());
111  ps->output_index_ = -1;
112  neg_gid2out[nt.id][gid] = ps;
113  }
114  } // end of the mutex
115 
116  ++ps;
117  }
118 }
119 
120 } // namespace coreneuron
coreneuron::NrnThread::netcons
NetCon * netcons
Definition: multicore.hpp:87
coreneuron::FileHandler::fail
bool fail() const
Is the file not open.
Definition: nrn_filehandler.hpp:60
nrn2core_get_dat1_
int(* nrn2core_get_dat1_)(int tid, int &n_presyn, int &n_netcon, int *&output_gid, int *&netcon_srcgid, std::vector< int > &netcon_negsrcgid_tid)
Definition: phase1.cpp:17
coreneuron::Phase1::Phase1
Phase1(FileHandler &F)
Definition: phase1.cpp:25
OMP_Mutex
Definition: nrnmutdec.hpp:55
coreneuron::FileHandler::close
void close()
Close currently open file.
Definition: nrn_filehandler.cpp:104
coreneuron::nrnthreads_netcon_srcgid
std::vector< int * > nrnthreads_netcon_srcgid
Only for setup vector of netcon source gids.
Definition: nrn_setup.cpp:164
nrnoc_aux.hpp
coreneuron::PreSynHelper
Definition: multicore.hpp:71
coreneuron::mut
static OMP_Mutex mut
Definition: nrn_setup.cpp:152
coreneuron::Phase1::populate
void populate(NrnThread &nt, OMP_Mutex &mut)
Definition: phase1.cpp:57
coreneuron::NrnThread::presyns
PreSyn * presyns
Definition: multicore.hpp:83
coreneuron::FileHandler::read_int
int read_int()
Parse a single integer entry.
Definition: nrn_filehandler.cpp:57
coreneuron::NrnThread::presyns_helper
PreSynHelper * presyns_helper
Definition: multicore.hpp:84
coreneuron::NrnThread::id
int id
Definition: multicore.hpp:99
coreneuron::PreSyn::output_index_
int output_index_
Definition: netcon.hpp:111
coreneuron::hoc_execerror
void hoc_execerror(const char *s1, const char *s2)
Definition: nrnoc_aux.cpp:39
coreneuron
THIS FILE IS AUTO GENERATED DONT MODIFY IT.
Definition: corenrn_parameters.cpp:12
phase1.hpp
nrniv_decl.h
coreneuron::PreSyn
Definition: netcon.hpp:104
coreneuron::Phase1::netcon_srcgids
std::vector< int > netcon_srcgids
Definition: phase1.hpp:28
coreneuron::FileHandler
Definition: nrn_filehandler.hpp:32
coreneuron::NetCon
Definition: netcon.hpp:47
coreneuron::NrnThread::n_presyn
int n_presyn
Definition: multicore.hpp:94
coreneuron::gid2in
std::map< int, InputPreSyn * > gid2in
Definition: nrn_setup.cpp:158
coreneuron::NrnThread
Definition: multicore.hpp:75
coreneuron::nrnthreads_netcon_negsrcgid_tid
std::vector< std::vector< int > > nrnthreads_netcon_negsrcgid_tid
If a nrnthreads_netcon_srcgid is negative, need to determine the thread when in order to use the corr...
Definition: nrn_setup.cpp:168
coreneuron::gid2out
std::map< int, PreSyn * > gid2out
Maps for ouput and input presyns.
Definition: nrn_setup.cpp:157
multicore.hpp
coreneuron::Phase1::netcon_negsrcgid_tid
std::vector< int > netcon_negsrcgid_tid
Definition: phase1.hpp:29
coreneuron::Phase1::output_gids
std::vector< int > output_gids
Definition: phase1.hpp:27
coreneuron::neg_gid2out
std::vector< std::map< int, PreSyn * > > neg_gid2out
Vector of maps for negative presyns.
Definition: nrn_setup.cpp:155
coreneuron::NrnThread::n_netcon
int n_netcon
Definition: multicore.hpp:92
coreneuron::PreSyn::gid_
int gid_
Definition: netcon.hpp:112
coreneuron::FileHandler::read_vector
std::vector< T > read_vector(size_t count)
Definition: nrn_filehandler.hpp:192
coreneuron::ecalloc_align
void * ecalloc_align(size_t n, size_t size, size_t alignment)
nrn_assert
#define nrn_assert(x)
assert()-like macro, independent of NDEBUG status
Definition: nrn_assert.h:33