CoreNEURON
nrn2core_data_init.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 */
8 #include <sstream>
9 
10 #include "coreneuron/nrnconf.h"
18 #include "coreneuron/io/mem_layout_util.hpp" // for WATCH use of nrn_i_layout
21 
22 namespace coreneuron {
23 
24 // helper functions defined below.
25 static void nrn2core_tqueue();
26 static void watch_activate_clear();
27 static void nrn2core_transfer_watch_condition(int, int, int, int, int);
28 static void vec_play_activate();
29 static void nrn2core_patstim_share_info();
30 
31 extern "C" {
32 /** Pointer to function in NEURON that iterates over activated
33  WATCH statements, sending each item to ...
34 **/
35 void (*nrn2core_transfer_watch_)(void (*cb)(int, int, int, int, int));
36 }
37 
38 /**
39  All state from NEURON necessary to continue a run.
40 
41  In NEURON direct mode, we desire the exact behavior of
42  ParallelContext.psolve(tstop). I.e. a sequence of such calls with and
43  without intervening calls to h.finitialize(). Most state (structure
44  and data of the substantive model) has been copied
45  from NEURON during nrn_setup. Now we need to copy the event queue
46  and set up any other invalid internal structures. I.e basically the
47  nrn_finitialize above but without changing any simulation data. We follow
48  some of the strategy of checkpoint_initialize.
49 **/
51  dt2thread(-1.);
53 
55 
56  // Reproduce present NEURON WATCH activation
57  // Start from nothing active.
59  // nrn2core_transfer_watch_condition(...) receives the WATCH activation info
60  // on a per active WatchCondition basis from NEURON.
61  (*nrn2core_transfer_watch_)(nrn2core_transfer_watch_condition);
62 
64 
65  // the things done by checkpoint restore at the end of Phase2::read_file
66  // vec_play_continuous n_vec_play_continuous of them
67  // patstim_index
68  // preSynConditionEventFlags nt.n_presyn of them
69  // restore_events
70  // restore_events
71  // the things done for checkpoint at the end of Phase2::populate
72  // checkpoint_restore_tqueue
73  // Lastly, if PatternStim exists, needs initialization
74  // checkpoint_restore_patternstim
75  // io/nrn_checkpoint.cpp: write_tqueue contains examples for each
76  // DiscreteEvent type with regard to the information needed for each
77  // subclass from the point of view of CoreNEURON.
78  // E.g. for NetConType_, just netcon_index
79  // The trick, then, is to figure out the CoreNEURON info from the
80  // NEURON queue items and that should be available in passing from
81  // the existing processing of nrncore_write.
82 
83  // activate the vec_play_continuous events defined in phase2 setup.
85 
86  // Any PreSyn.flag_ == 1 on the NEURON side needs to be transferred
87  // or the PreSyn will spuriously fire when psolve starts.
88  extern void nrn2core_PreSyn_flag_receive(int tid);
89  for (int tid = 0; tid < nrn_nthread; ++tid) {
91  }
92 
94 
96 }
97 
99  for (int tid = 0; tid < nrn_nthread; ++tid) {
100  NrnThread* nt = nrn_threads + tid;
101  for (int i = 0; i < nt->n_vecplay; ++i) {
102  PlayRecord* pr = (PlayRecord*) nt->_vecplay[i];
103  assert(pr->type() == VecPlayContinuousType);
105  assert(vpc->e_);
106  assert(vpc->discon_indices_ == nullptr); // not implemented
107  vpc->e_->send(vpc->t_[vpc->ubound_index_], net_cvode_instance, nt);
108  }
109  }
110 }
111 
112 } // namespace coreneuron
113 
114 // For direct transfer of event queue information
115 // Must be the same as corresponding struct NrnCoreTransferEvents in NEURON
116 // Do not put this coreneuron version in the coreneuron namespace so that the
117 // function pointer/callback has the same type in both NEURON and CoreNEURON.
118 // Calling a function through a pointer to a function of different type is
119 // undefined behaviour.
121  std::vector<int> type; // DiscreteEvent type
122  std::vector<double> td; // delivery time
123  std::vector<int> intdata; // ints specific to the DiscreteEvent type
124  std::vector<double> dbldata; // doubles specific to the type.
125 };
126 
127 namespace coreneuron {
128 
129 extern "C" {
130 /** Pointer to function in NEURON that iterates over its tqeueue **/
131 NrnCoreTransferEvents* (*nrn2core_transfer_tqueue_)(int tid);
132 }
133 
134 // for faster determination of the movable index given the type
135 static std::unordered_map<int, int> type2movable;
136 static void setup_type2semantics() {
137  if (type2movable.empty()) {
138  std::size_t const n_memb_func{corenrn.get_memb_funcs().size()};
139  for (std::size_t type = 0; type < n_memb_func; ++type) {
140  int* ds{corenrn.get_memb_func(type).dparam_semantics};
141  if (ds) {
142  int dparam_size = corenrn.get_prop_dparam_size()[type];
143  for (int psz = 0; psz < dparam_size; ++psz) {
144  if (ds[psz] == -4) { // netsend semantics
145  type2movable[type] = psz;
146  }
147  }
148  }
149  }
150  }
151 }
152 
153 /** Copy each thread's queue from NEURON **/
154 static void nrn2core_tqueue() {
155  setup_type2semantics(); // need type2movable for SelfEvent.
156  for (int tid = 0; tid < nrn_nthread; ++tid) { // should be parallel
157  NrnCoreTransferEvents* ncte = (*nrn2core_transfer_tqueue_)(tid);
158  if (ncte) {
159  size_t idat = 0;
160  size_t idbldat = 0;
161  NrnThread& nt = nrn_threads[tid];
162  for (size_t i = 0; i < ncte->type.size(); ++i) {
163  switch (ncte->type[i]) {
164  case 0: { // DiscreteEvent
165  // Ignore
166  } break;
167 
168  case 2: { // NetCon
169  int ncindex = ncte->intdata[idat++];
170  NetCon* nc = nt.netcons + ncindex;
171 #ifndef CORENRN_DEBUG_QUEUE
172 #define CORENRN_DEBUG_QUEUE 0
173 #endif
174 #if CORENRN_DEBUG_QUEUE
175  printf("nrn2core_tqueue tid=%d i=%zd type=%d tdeliver=%g NetCon %d\n",
176  tid,
177  i,
178  ncte->type[i],
179  ncte->td[i],
180  ncindex);
181 #endif
182  nc->send(ncte->td[i], net_cvode_instance, &nt);
183  } break;
184 
185  case 3: { // SelfEvent
186  // target_type, target_instance, weight_index, flag movable
187 
188  // This is a nightmare and needs to be profoundly re-imagined.
189 
190  // Determine Point_process*
191  int target_type = ncte->intdata[idat++];
192  int target_instance = ncte->intdata[idat++];
193  // From target_type and target_instance (mechanism data index)
194  // compute the nt.pntprocs index.
195  int offset = nt._pnt_offset[target_type];
196  Point_process* pnt = nt.pntprocs + offset + target_instance;
197  assert(pnt->_type == target_type);
198  Memb_list* ml = nt._ml_list[target_type];
199  if (ml->_permute) {
200  target_instance = ml->_permute[target_instance];
201  }
202  assert(pnt->_i_instance == target_instance);
203  assert(pnt->_tid == tid);
204 
205  // Determine weight_index
206  int netcon_index = ncte->intdata[idat++]; // via the NetCon
207  int weight_index = -1; // no associated netcon
208  if (netcon_index >= 0) {
209  weight_index = nt.netcons[netcon_index].u.weight_index_;
210  }
211 
212  double flag = ncte->dbldata[idbldat++];
213  int is_movable = ncte->intdata[idat++];
214  // If the queue item is movable, then the pointer needs to be
215  // stored in the mechanism instance movable slot by net_send.
216  // And don't overwrite if not movable. Only one SelfEvent
217  // for a given target instance is movable.
218  int movable_index =
219  nrn_i_layout(target_instance,
220  ml->nodecount,
221  type2movable[target_type],
222  corenrn.get_prop_dparam_size()[target_type],
223  corenrn.get_mech_data_layout()[target_type]);
224  void** movable_arg = nt._vdata + ml->pdata[movable_index];
225  TQItem* old_movable_arg = (TQItem*) (*movable_arg);
226 #if CORENRN_DEBUG_QUEUE
227  printf("nrn2core_tqueue tid=%d i=%zd type=%d tdeliver=%g SelfEvent\n",
228  tid,
229  i,
230  ncte->type[i],
231  ncte->td[i]);
232  printf(
233  " target_type=%d pnt data index=%d flag=%g is_movable=%d netcon index "
234  "for weight=%d\n",
235  target_type,
236  target_instance,
237  flag,
238  is_movable,
239  netcon_index);
240 #endif
241  net_send(movable_arg, weight_index, pnt, ncte->td[i], flag);
242  if (!is_movable) {
243  *movable_arg = (void*) old_movable_arg;
244  }
245  } break;
246 
247  case 4: { // PreSyn
248  int type = ncte->intdata[idat++];
249  if (type == 0) { // CoreNEURON PreSyn
250  int ps_index = ncte->intdata[idat++];
251 #if CORENRN_DEBUG_QUEUE
252  printf("nrn2core_tqueue tid=%d i=%zd type=%d tdeliver=%g PreSyn %d\n",
253  tid,
254  i,
255  ncte->type[i],
256  ncte->td[i],
257  ps_index);
258 #endif
259  PreSyn* ps = nt.presyns + ps_index;
260  int gid = ps->output_index_;
261  // Following assumes already sent to other machines.
262  ps->output_index_ = -1;
263  ps->send(ncte->td[i], net_cvode_instance, &nt);
264  ps->output_index_ = gid;
265  } else { // CoreNEURON InputPreSyn
266  int gid = ncte->intdata[idat++];
267  InputPreSyn* ps = gid2in[gid];
268  ps->send(ncte->td[i], net_cvode_instance, &nt);
269  }
270  } break;
271 
272  case 6: { // PlayRecordEvent
273  // Ignore as phase2 handles analogous to checkpoint restore.
274  } break;
275 
276  case 7: { // NetParEvent
277 #if CORENRN_DEBUG_QUEUE
278  printf("nrn2core_tqueue tid=%d i=%zd type=%d tdeliver=%g NetParEvent\n",
279  tid,
280  i,
281  ncte->type[i],
282  ncte->td[i]);
283 #endif
284  } break;
285 
286  default: {
287  std::stringstream qetype;
288  qetype << ncte->type[i];
289  hoc_execerror("Unimplemented transfer queue event type:",
290  qetype.str().c_str());
291  } break;
292  }
293  }
294  delete ncte;
295  }
296  }
297 }
298 
299 /** @brief return first and last datum indices of WATCH statements
300  */
301 void watch_datum_indices(int type, int& first, int& last) {
302  int* semantics = corenrn.get_memb_func(type).dparam_semantics;
303  int dparam_size = corenrn.get_prop_dparam_size()[type];
304  // which slots are WATCH
305  // Note that first is the WatchList item, not the WatchCondition
306  first = -1;
307  last = 0;
308  for (int i = 0; i < dparam_size; ++i) {
309  if (semantics[i] == -8) { // WATCH
310  if (first == -1) {
311  first = i;
312  }
313  last = i;
314  }
315  }
316 }
317 
319  // Can identify mechanisms with WATCH statements from non-NULL
320  // corenrn.get_watch_check()[type] and figure out pdata that are
321  // _watch_array items from corenrn.get_memb_func(type).dparam_semantics
322  // Ironically, all WATCH statements may already be inactivated in
323  // consequence of phase2 transfer. But, for direct mode psolve, we would
324  // eventually like to minimise that transfer (at least with respect to
325  // structure).
326 
327  // Loop over threads, mechanisms and pick out the ones with WATCH statements.
328  for (int tid = 0; tid < nrn_nthread; ++tid) {
329  NrnThread& nt = nrn_threads[tid];
330  for (NrnThreadMembList* tml = nt.tml; tml; tml = tml->next) {
331  if (corenrn.get_watch_check()[tml->index]) {
332  // zero all the WATCH slots.
333  Memb_list* ml = tml->ml;
334  int type = tml->index;
335  int dparam_size = corenrn.get_prop_dparam_size()[type];
336  // which slots are WATCH
337  int first, last;
338  watch_datum_indices(type, first, last);
339  // Zero the _watch_array from first to last inclusive.
340  // Note: the first is actually unused but is there because NEURON
341  // uses it. There is probably a better way to do this.
342  int* pdata = ml->pdata;
343  int nodecount = ml->nodecount;
344  int layout = corenrn.get_mech_data_layout()[type];
345  for (int iml = 0; iml < nodecount; ++iml) {
346  for (int i = first; i <= last; ++i) {
347  int* pd = pdata + nrn_i_layout(iml, nodecount, i, dparam_size, layout);
348  *pd = 0;
349  }
350  }
351  }
352  }
353  }
354 }
355 
357  int pnttype,
358  int pntindex,
359  int watch_index,
360  int triggered) {
361  // Note: watch_index relative to AoS _ppvar for instance.
362  NrnThread& nt = nrn_threads[tid];
363  int pntoffset = nt._pnt_offset[pnttype];
364  Point_process* pnt = nt.pntprocs + (pntoffset + pntindex);
365  assert(pnt->_type == pnttype);
366  Memb_list* ml = nt._ml_list[pnttype];
367  if (ml->_permute) {
368  pntindex = ml->_permute[pntindex];
369  }
370  assert(pnt->_i_instance == pntindex);
371  assert(pnt->_tid == tid);
372 
373  // perhaps all this should be more closely associated with phase2 since
374  // we are really talking about (direct) transfer from NEURON and not able
375  // to rely on finitialize() on the CoreNEURON side which would otherwise
376  // set up all this stuff as a consequence of SelfEvents initiated
377  // and delivered at time 0.
378  // I've become shakey in regard to how this is done since the reorganization
379  // from where everything was done in nrn_setup.cpp. Here, I'm guessing
380  // nrn_i_layout is the relevant index transformation after finding the
381  // beginning of the mechanism pdata.
382  int* pdata = ml->pdata;
383  int iml = pntindex;
384  int nodecount = ml->nodecount;
385  int i = watch_index;
386  int dparam_size = corenrn.get_prop_dparam_size()[pnttype];
387  int layout = corenrn.get_mech_data_layout()[pnttype];
388  int* pd = pdata + nrn_i_layout(iml, nodecount, i, dparam_size, layout);
389 
390  // activate the WatchCondition
391  *pd = 2 + triggered;
392 }
393 
394 // PatternStim direct mode
395 // NEURON and CoreNEURON had different definitions for struct Info but
396 // the NEURON version of pattern.mod for PatternStim was changed to
397 // adopt the CoreNEURON version (along with THREADSAFE so they have the
398 // same param size). So they now both share the same
399 // instance of Info and NEURON is responsible for constructor/destructor.
400 // And in direct mode, PatternStim gets no special treatment except that
401 // on the CoreNEURON side, the Info struct points to the NEURON instance.
402 
403 // from patstim.mod
404 extern void** pattern_stim_info_ref(int icnt,
405  int cnt,
406  double* _p,
407  Datum* _ppvar,
408  ThreadDatum* _thread,
409  NrnThread* _nt,
410  Memb_list* ml,
411  double v);
412 
413 extern "C" {
414 void (*nrn2core_patternstim_)(void** info);
415 }
416 
417 // In direct mode, CoreNEURON and NEURON share the same PatternStim Info
418 // Assume singleton for PatternStim but that is not really necessary in principle.
420  int type = nrn_get_mechtype("PatternStim");
421  NrnThread* nt = nrn_threads + 0;
422  Memb_list* ml = nt->_ml_list[type];
423  if (ml) {
424  int layout = corenrn.get_mech_data_layout()[type];
425  int sz = corenrn.get_prop_param_size()[type];
426  int psz = corenrn.get_prop_dparam_size()[type];
427  int _cntml = ml->nodecount;
428  assert(ml->nodecount == 1);
429  int _iml = 0; // Assume singleton here and in (*nrn2core_patternstim_)(info) below.
430  double* _p = ml->data;
431  Datum* _ppvar = ml->pdata;
432  if (layout == Layout::AoS) {
433  _p += _iml * sz;
434  _ppvar += _iml * psz;
435  } else if (layout == Layout::SoA) {
436  ;
437  } else {
438  assert(0);
439  }
440 
441  void** info = pattern_stim_info_ref(_iml, _cntml, _p, _ppvar, nullptr, nt, ml, 0.0);
442  (*nrn2core_patternstim_)(info);
443  }
444 }
445 
446 
447 } // namespace coreneuron
coreneuron::setup_type2semantics
static void setup_type2semantics()
Definition: nrn2core_data_init.cpp:136
coreneuron::CoreNeuron::get_mech_data_layout
auto & get_mech_data_layout()
Definition: coreneuron.hpp:174
NrnCoreTransferEvents::type
std::vector< int > type
Definition: nrn2core_data_init.cpp:121
coreneuron::NrnThread::netcons
NetCon * netcons
Definition: multicore.hpp:87
coreneuron::VecPlayContinuous::t_
IvocVect t_
Definition: vrecitem.h:80
NrnCoreTransferEvents
Definition: nrn2core_data_init.cpp:120
coreneuron::nrn_get_mechtype
int nrn_get_mechtype(const char *name)
Get mechanism type by the mechanism name.
Definition: mk_mech.cpp:138
coreneuron::pntindex
static int pntindex
Definition: prcellstate.cpp:24
coreneuron::NrnThread::_vdata
void ** _vdata
Definition: multicore.hpp:108
coreneuron::type2movable
static std::unordered_map< int, int > type2movable
Definition: nrn2core_data_init.cpp:135
coreneuron::nrn_nthread
int nrn_nthread
Definition: multicore.cpp:55
coreneuron::watch_activate_clear
static void watch_activate_clear()
Definition: nrn2core_data_init.cpp:318
coreneuron::nrn2core_transfer_watch_
void(* nrn2core_transfer_watch_)(void(*cb)(int, int, int, int, int))
Pointer to function in NEURON that iterates over activated WATCH statements, sending each item to ....
Definition: nrn2core_data_init.cpp:35
coreneuron::nrn2core_tqueue
static void nrn2core_tqueue()
Copy each thread's queue from NEURON.
Definition: nrn2core_data_init.cpp:154
coreneuron::Point_process
Definition: mechanism.hpp:35
coreneuron::dt2thread
void dt2thread(double adt)
Definition: fadvance_core.cpp:70
coreneuron::Datum
int Datum
Definition: nrnconf.h:23
coreneuron::TQItem
Definition: tqueue.hpp:69
nrnoc_aux.hpp
coreneuron::CoreNeuron::get_memb_func
auto & get_memb_func(size_t idx)
Definition: coreneuron.hpp:138
mem_layout_util.hpp
coreneuron::NrnThread::presyns
PreSyn * presyns
Definition: multicore.hpp:83
coreneuron::PreSyn::send
virtual void send(double sendtime, NetCvode *, NrnThread *) override
Definition: netcvode.cpp:409
coreneuron::nrn2core_PreSyn_flag_receive
void nrn2core_PreSyn_flag_receive(int tid)
Definition: core2nrn_data_return.cpp:399
coreneuron::NetCon::u
union coreneuron::NetCon::@0 u
netcvode.hpp
coreneuron::PreSyn::output_index_
int output_index_
Definition: netcon.hpp:111
coreneuron::Memb_list
Definition: mechanism.hpp:131
coreneuron::hoc_execerror
void hoc_execerror(const char *s1, const char *s2)
Definition: nrnoc_aux.cpp:39
coreneuron::NrnThread::tml
NrnThreadMembList * tml
Definition: multicore.hpp:80
coreneuron::VecPlayContinuous::ubound_index_
std::size_t ubound_index_
Definition: vrecitem.h:84
coreneuron::direct_mode_initialize
void direct_mode_initialize()
All state from NEURON necessary to continue a run.
Definition: nrn2core_data_init.cpp:50
coreneuron::NrnThread::_pnt_offset
std::vector< int > _pnt_offset
Definition: multicore.hpp:154
profiler_interface.h
pdata
#define pdata
Definition: md1redef.h:37
coreneuron.hpp
coreneuron
THIS FILE IS AUTO GENERATED DONT MODIFY IT.
Definition: corenrn_parameters.cpp:12
fast_imem.hpp
coreneuron::i
int i
Definition: cellorder.cpp:485
coreneuron::NrnThread::_ml_list
Memb_list ** _ml_list
Definition: multicore.hpp:81
coreneuron::PreSyn
Definition: netcon.hpp:104
coreneuron::nrn2core_transfer_watch_condition
static void nrn2core_transfer_watch_condition(int, int, int, int, int)
Definition: nrn2core_data_init.cpp:356
VecPlayContinuousType
#define VecPlayContinuousType
Definition: vrecitem.h:17
coreneuron::CoreNeuron::get_prop_dparam_size
auto & get_prop_dparam_size()
Definition: coreneuron.hpp:170
coreneuron::CoreNeuron::get_memb_funcs
auto & get_memb_funcs()
Definition: coreneuron.hpp:134
coreneuron::NetCon
Definition: netcon.hpp:47
coreneuron::CoreNeuron::get_watch_check
auto & get_watch_check()
Definition: coreneuron.hpp:198
coreneuron::NetCon::send
virtual void send(double sendtime, NetCvode *, NrnThread *) override
Definition: netcvode.cpp:372
coreneuron::gid2in
std::map< int, InputPreSyn * > gid2in
Definition: nrn_setup.cpp:158
coreneuron::NrnThread
Definition: multicore.hpp:75
coreneuron::NrnThreadMembList
Definition: multicore.hpp:32
cnt
#define cnt
Definition: tqueue.hpp:44
coreneuron::nrn2core_patstim_share_info
static void nrn2core_patstim_share_info()
Definition: nrn2core_data_init.cpp:419
coreneuron::VecPlayContinuous::e_
PlayRecordEvent * e_
Definition: vrecitem.h:86
NrnCoreTransferEvents::td
std::vector< double > td
Definition: nrn2core_data_init.cpp:122
coreneuron::AoS
@ AoS
Definition: nrniv_decl.h:69
coreneuron::nrn2core_patternstim_
void(* nrn2core_patternstim_)(void **info)
Definition: nrn2core_data_init.cpp:414
coreneuron::NetCon::weight_index_
int weight_index_
Definition: netcon.hpp:53
nodecount
#define nodecount
Definition: md1redef.h:39
coreneuron::nrn_threads
NrnThread * nrn_threads
Definition: multicore.cpp:56
coreneuron::corenrn
CoreNeuron corenrn
Definition: multicore.cpp:53
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::DiscreteEvent::send
virtual void send(double deliverytime, NetCvode *, NrnThread *)
Definition: netcvode.cpp:362
coreneuron::net_send
void net_send(void **, int, Point_process *, double, double)
Definition: netcvode.cpp:77
coreneuron::nrn_spike_exchange_init
void nrn_spike_exchange_init()
Definition: netpar.cpp:238
core2nrn_data_return.hpp
coreneuron::Memb_list::nodecount
int nodecount
Definition: mechanism.hpp:144
coreneuron::Memb_list::pdata
Datum * pdata
Definition: mechanism.hpp:140
coreneuron::pattern_stim_info_ref
void ** pattern_stim_info_ref(int icnt, int cnt, double *_p, Datum *_ppvar, ThreadDatum *_thread, NrnThread *_nt, Memb_list *ml, double v)
nrnconf.h
coreneuron::NrnThread::_vecplay
void ** _vecplay
Definition: multicore.hpp:109
NrnCoreTransferEvents::intdata
std::vector< int > intdata
Definition: nrn2core_data_init.cpp:123
coreneuron::NrnThreadMembList::next
NrnThreadMembList * next
Definition: multicore.hpp:33
coreneuron::Point_process::_type
short _type
Definition: mechanism.hpp:37
coreneuron::net_cvode_instance
NetCvode * net_cvode_instance
Definition: netcvode.cpp:35
coreneuron::PlayRecord
Definition: vrecitem.h:37
coreneuron::watch_datum_indices
void watch_datum_indices(int type, int &first, int &last)
return first and last datum indices of WATCH statements
Definition: nrn2core_data_init.cpp:301
vrecitem.h
multicore.hpp
coreneuron::NrnThread::pntprocs
Point_process * pntprocs
Definition: multicore.hpp:82
coreneuron::InputPreSyn
Definition: netcon.hpp:132
coreneuron::CoreNeuron::get_prop_param_size
auto & get_prop_param_size()
Definition: coreneuron.hpp:166
v
#define v
Definition: md1redef.h:11
coreneuron::Point_process::_tid
short _tid
Definition: mechanism.hpp:38
coreneuron::InputPreSyn::send
virtual void send(double sendtime, NetCvode *, NrnThread *) override
Definition: netcvode.cpp:442
coreneuron::VecPlayContinuous::discon_indices_
IvocVect * discon_indices_
Definition: vrecitem.h:81
netpar.hpp
coreneuron::Memb_list::data
double * data
Definition: mechanism.hpp:139
coreneuron::PlayRecord::type
virtual int type() const
Definition: vrecitem.h:49
coreneuron::nrn_thread_table_check
void nrn_thread_table_check()
Definition: multicore.cpp:168
coreneuron::SoA
@ SoA
Definition: nrniv_decl.h:69
coreneuron::vec_play_activate
static void vec_play_activate()
Definition: nrn2core_data_init.cpp:98
coreneuron::VecPlayContinuous
Definition: vrecitem.h:57
coreneuron::Memb_list::_permute
int * _permute
Definition: mechanism.hpp:138
coreneuron::clear_event_queue
void clear_event_queue()
Definition: cvodestb.cpp:47
coreneuron::Point_process::_i_instance
int _i_instance
Definition: mechanism.hpp:36
coreneuron::NrnThread::n_vecplay
int n_vecplay
Definition: multicore.hpp:101
NrnCoreTransferEvents::dbldata
std::vector< double > dbldata
Definition: nrn2core_data_init.cpp:124