This repository was archived by the owner on Mar 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathcoreneuron.hpp
217 lines (172 loc) · 5.71 KB
/
coreneuron.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
/*
# =============================================================================
# Copyright (c) 2016 - 2021 Blue Brain Project/EPFL
#
# See top-level LICENSE file for details.
# =============================================================================.
*/
#pragma once
/***
* Includes all headers required to communicate and run all methods
* described in CoreNEURON, neurox, and mod2c C-generated mechanisms
* functions.
**/
#include <cstdio>
#include <cstdlib>
#include <cmath>
#include <string.h>
#include <vector>
#include <array>
#include "coreneuron/utils/randoms/nrnran123.h" //Random Number Generator
#include "coreneuron/sim/scopmath/newton_struct.h" //Newton Struct
#include "coreneuron/membrane_definitions.h" //static definitions
#include "coreneuron/mechanism/mechanism.hpp" //Memb_list and mechs info
#include "coreneuron/utils/memory.h" //Memory alignments and padding
#include "coreneuron/nrnconf.h"
#include "coreneuron/sim/multicore.hpp"
#include "coreneuron/mechanism/mech_mapping.hpp"
namespace coreneuron {
// from nrnoc/capac.c
extern void nrn_init_capacitance(NrnThread*, Memb_list*, int);
extern void nrn_cur_capacitance(NrnThread* _nt, Memb_list* ml, int type);
extern void nrn_alloc_capacitance(double* data, Datum* pdata, int type);
// from nrnoc/eion.c
extern void nrn_init_ion(NrnThread*, Memb_list*, int);
extern void nrn_cur_ion(NrnThread* _nt, Memb_list* ml, int type);
extern void nrn_alloc_ion(double* data, Datum* pdata, int type);
extern void second_order_cur(NrnThread* _nt, int secondorder);
using DependencyTable = std::vector<std::vector<int>>;
/**
* A class representing the CoreNEURON state, holding pointers to the various data structures
*
* The pointers to "global" data such as the NrnThread, Memb_list and Memb_func data structures
* are managed here. they logically share their lifetime and runtime scope with instances of
* this class.
*/
class CoreNeuron {
/**
* map if mech is a point process
* In the future only a field of Mechanism class
*/
std::vector<char> pnt_map; /* so prop_free can know its a point mech*/
/** Vector mapping the types (IDs) of different mechanisms of mod files between NEURON and
* CoreNEURON
*/
std::vector<int> different_mechanism_type;
/**
* dependency helper filled by calls to hoc_register_dparam_semantics
* used when nrn_mech_depend is called
* vector-of-vector DS. First idx is the mech, second idx is the dependent mech.
*/
DependencyTable ion_write_dependency;
std::vector<Memb_func> memb_funcs;
/**
* Net send / Net receive
* only used in CoreNEURON for book keeping synapse mechs, should go into CoreNEURON class
*/
std::vector<std::pair<NetBufReceive_t, int>> net_buf_receive;
std::vector<int> net_buf_send_type;
/**
* before-after-blocks from nmodl are registered here as function pointers
*/
std::array<BAMech*, BEFORE_AFTER_SIZE> bamech;
/**
* Internal lookup tables. Number of float and int variables in each mechanism and memory layout
* future --> mech class
*/
std::vector<int> nrn_prop_param_size;
std::vector<int> nrn_prop_dparam_size;
std::vector<int> nrn_mech_data_layout; /* 1 AoS (default), 0 SoA */
/* array is parallel to memb_func. All are 0 except 1 for ARTIFICIAL_CELL */
std::vector<short> nrn_artcell_qindex;
std::vector<bool> nrn_is_artificial;
/**
* Net Receive function pointer lookup tables
*/
std::vector<pnt_receive_t> pnt_receive; /* for synaptic events. */
std::vector<pnt_receive_t> pnt_receive_init;
std::vector<short> pnt_receive_size;
/**
* Holds function pointers for WATCH callback
*/
std::vector<nrn_watch_check_t> nrn_watch_check;
/**
* values are type numbers of mechanisms which do net_send call
* related to NMODL net_event()
*
*/
std::vector<int> nrn_has_net_event;
/**
* inverse of nrn_has_net_event_ maps the values of nrn_has_net_event_ to the index of
* ptntype2presyn
*/
std::vector<int> pnttype2presyn;
std::vector<bbcore_read_t> nrn_bbcore_read;
std::vector<bbcore_write_t> nrn_bbcore_write;
public:
auto& get_memb_funcs() {
return memb_funcs;
}
auto& get_memb_func(size_t idx) {
return memb_funcs[idx];
}
auto& get_different_mechanism_type() {
return different_mechanism_type;
}
auto& get_pnt_map() {
return pnt_map;
}
auto& get_ion_write_dependency() {
return ion_write_dependency;
}
auto& get_net_buf_receive() {
return net_buf_receive;
}
auto& get_net_buf_send_type() {
return net_buf_send_type;
}
auto& get_bamech() {
return bamech;
}
auto& get_prop_param_size() {
return nrn_prop_param_size;
}
auto& get_prop_dparam_size() {
return nrn_prop_dparam_size;
}
auto& get_mech_data_layout() {
return nrn_mech_data_layout;
}
auto& get_is_artificial() {
return nrn_is_artificial;
}
auto& get_artcell_qindex() {
return nrn_artcell_qindex;
}
auto& get_pnt_receive() {
return pnt_receive;
}
auto& get_pnt_receive_init() {
return pnt_receive_init;
}
auto& get_pnt_receive_size() {
return pnt_receive_size;
}
auto& get_watch_check() {
return nrn_watch_check;
}
auto& get_has_net_event() {
return nrn_has_net_event;
}
auto& get_pnttype2presyn() {
return pnttype2presyn;
}
auto& get_bbcore_read() {
return nrn_bbcore_read;
}
auto& get_bbcore_write() {
return nrn_bbcore_write;
}
};
extern CoreNeuron corenrn;
} // namespace coreneuron