forked from ModelDBRepository/127388
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pBGconnect1.hoc
408 lines (273 loc) · 7.68 KB
/
pBGconnect1.hoc
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
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
//----------------------------------------------------------------------------
// Initialize global variables
//----------------------------------------------------------------------------
// One vector of NetCon indices for each cell for each synapse type
objref ncGPeSTN[numSTN], ncSTNGPe[numGPe], ncGPeGPe[numGPe], ncSTNGPi[numGPi], ncGPeGPi[numGPi] //, ncGPiTha[numGPi]
for tmpi=0,numSTN-1 {
ncGPeSTN[tmpi] = new Vector()
}
for tmpi=0,numGPe-1 {
ncSTNGPe[tmpi] = new Vector()
ncGPeGPe[tmpi] = new Vector()
}
for tmpi=0,numGPi-1 {
ncSTNGPi[tmpi] = new Vector()
ncGPeGPi[tmpi] = new Vector()
// ncGPiTha[tmpi] = new Vector()
}
// One vector of source cell local IDs of presyn cells for each cell for each cell type
objref srcGPeSTN[numSTN], srcSTNGPe[numGPe], srcGPeGPe[numGPe], srcSTNGPi[numGPi], srcGPeGPi[numGPi]
for tmpi=0,numSTN-1 {
srcGPeSTN[tmpi] = new Vector()
}
for tmpi=0,numGPe-1 {
srcSTNGPe[tmpi] = new Vector()
srcGPeGPe[tmpi] = new Vector()
}
for tmpi=0,numGPi-1 {
srcSTNGPi[tmpi] = new Vector()
srcGPeGPi[tmpi] = new Vector()
}
objref offsets
offsets = new Vector()
// FUNCTIONAL COLUMN TEMPLATE
// STN 2
// GPe 6 7 8
// STN 0 1 3 4
// GPi 2
// GPe 3 4 5 9 10 11
// STN 2
// GPe 6 7 8
// GPi 2
// GPe 7
// GPe 2 3 4 5 6 8 9 10 11 12
//----------------------------------------------------------------------------
// Functions to set up network from current value of global variables
//----------------------------------------------------------------------------
proc CONconnectNet() { local i,j,k
//-----------------------------------------
// connections to STN
offsets.resize(numGPeSTN) //offset from first GPe within module
offsets.x(0) = -3
offsets.x(1) = -2
offsets.x(2) = -1
offsets.x(3) = 3
offsets.x(4) = 4
offsets.x(5) = 5
for i=0,numSTN-1 {
tarIndx = cellID(ID_STN, i) // get global id
for j=0,numGPeSTN-1 {
k = 3*i + offsets.x(j)
if (k < 0) {
k = numGPe + k
}
if (k >= numGPe) {
k = k - numGPe
}
srcIndx = cellID(ID_GPe, k) // get global id
synIndx = synNum(ID_GPe, ID_STN, j)
ncIndx = pnm.nc_append(srcIndx, tarIndx, synIndx, gmaxGPeSTN, delGPeSTN)
ncGPeSTN[i].append(ncIndx)
srcGPeSTN[i].append(k)
}
}
//-----------------------------------------
// connections to GPe
offsets.resize(numGPeGPe) //offset current GPe
offsets.x(0) = -5
offsets.x(1) = -4
offsets.x(2) = -3
offsets.x(3) = -2
offsets.x(4) = -1
offsets.x(5) = 1
offsets.x(6) = 2
offsets.x(7) = 3
offsets.x(8) = 4
offsets.x(9) = 5
for i=0,numGPe-1 {
tarIndx = cellID(ID_GPe, i) // get global id
for j=0,numSTNGPe-1 {
k = int(i/3)
if (k < 0) {
k = numSTN + k
}
if (k >= numSTN) {
k = k - numSTN
}
srcIndx = cellID(ID_STN, k) // get global id
synIndx = synNum(ID_STN, ID_GPe, j)
ncIndx = pnm.nc_append(srcIndx, tarIndx, synIndx, gmaxSTNGPe, delSTNGPe)
ncSTNGPe[i].append(ncIndx)
srcSTNGPe[i].append(k)
}
for j=0,numGPeGPe-1 {
k = i + offsets.x(j)
if (k < 0) {
k = numGPe + k
}
if (k >= numGPe) {
k = k - numGPe
}
srcIndx = cellID(ID_GPe, k) // get global id
synIndx = synNum(ID_GPe, ID_GPe, j)
ncIndx = pnm.nc_append(srcIndx, tarIndx, synIndx, gmaxGPeGPe, delGPeGPe)
ncGPeGPe[i].append(ncIndx)
srcGPeGPe[i].append(k)
}
}
//-----------------------------------------
// connections to GPi
offsets.resize(numSTNGPi) //offset from current GPi
offsets.x(0) = -2
offsets.x(1) = -1
offsets.x(2) = 1
offsets.x(3) = 2
for i=0,numGPi-1 {
tarIndx = cellID(ID_GPi, i) // get global id
for j=0,numSTNGPi-1 {
k = i + offsets.x(j)
if (k < 0) {
k = numSTN + k
}
if (k >= numSTN) {
k = k - numSTN
}
srcIndx = cellID(ID_STN, k) // get global id
synIndx = synNum(ID_STN, ID_GPi, j)
ncIndx = pnm.nc_append(srcIndx, tarIndx, synIndx, gmaxSTNGPi, delSTNGPi)
ncSTNGPi[i].append(ncIndx)
srcSTNGPi[i].append(k)
}
for j=0,numGPeGPi-1 {
k = 3*i + j
if (k < 0) {
k = numGPe + k
}
if (k >= numGPe) {
k = k - numGPe
}
srcIndx = cellID(ID_GPe, k) // get global id
synIndx = synNum(ID_GPe, ID_GPi, j)
ncIndx = pnm.nc_append(srcIndx, tarIndx, synIndx, gmaxGPeGPi, delGPeGPi)
ncGPeGPi[i].append(ncIndx)
srcGPeGPi[i].append(k)
}
}
//-----------------------------------------
// connections from GPi (to artificial cell representing Thalamus)
/*
for i=0,numGPi-1 {
tarIndx = cellID(ID_GPi, i) // get global id
for j=0,numGPiTha-1 {
srcIndx = cellID(ID_GPi, i) // get global id
synIndx = synNum(ID_GPi, ID_Tha, j)
ncIndx = pnm.nc_append(srcIndx, tarIndx, synIndx, gmaxGPiTha, delGPiTha)
ncGPiTha[i].append(ncIndx) // NetCon not actually used for synapse, only to count events
}
}
*/
}
//----------------------------------------------------------------------------
proc CONupdateWeights() { local i,j
//-----------------------------------------
// connections to STN
for i=0,numSTN-1 {
for j=0,numGPeSTN-1 {
ncIndx = ncGPeSTN[i].x(j)
if (ncIndx >= 0) {
pnm.nclist.o(ncIndx).weight = gDA_GPeSTN*gmaxGPeSTN/numGPeSTN
pnm.nclist.o(ncIndx).delay = delGPeSTN
}
}
}
//-----------------------------------------
// connections to GPe
for i=0,numGPe-1 {
for j=0,numSTNGPe-1 {
ncIndx = ncSTNGPe[i].x(j)
if (ncIndx >= 0) {
pnm.nclist.o(ncIndx).weight = gDA_STNGPe*gmaxSTNGPe/numSTNGPe
pnm.nclist.o(ncIndx).delay = delSTNGPe
}
}
for j=0,numGPeGPe-1 {
ncIndx = ncGPeGPe[i].x(j)
if (ncIndx >= 0) {
pnm.nclist.o(ncIndx).weight = gDA_GPeGPe*gmaxGPeGPe/numGPeGPe
pnm.nclist.o(ncIndx).delay = delGPeGPe
}
}
}
//-----------------------------------------
// connections to GPi
for i=0,numGPi-1 {
for j=0,numSTNGPi-1 {
ncIndx = ncSTNGPi[i].x(j)
if (ncIndx >= 0) {
pnm.nclist.o(ncIndx).weight = gDA_STNGPi*gmaxSTNGPi/numSTNGPi
pnm.nclist.o(ncIndx).delay = delSTNGPi
}
}
for j=0,numGPeGPi-1 {
ncIndx = ncGPeGPi[i].x(j)
if (ncIndx >= 0) {
pnm.nclist.o(ncIndx).weight = gDA_GPeGPi*gmaxGPeGPi/numGPeGPi
pnm.nclist.o(ncIndx).delay = delGPeGPi
}
}
}
}
//----------------------------------------------------------------------------
// Update one parameter value
//----------------------------------------------------------------------------
strdef pstr
//----------------------------------------------------------------------------
proc CONupdateOneWeight() { local i,j // $1:srctype, $2:tartype, $3:tarID, $4:synnum, $5:new weight
if (pnm.pc.id() == 0) {
// master tells all slave nodes to update network with params vector
pnm.pc.look_take("CONupOne")
pnm.pc.post("CONupOne")
pnm.pc.context("CONupdateOneWeight", $1, $2, $3, $4, $5)
for i=1,pnm.pc.nhost-1 {
sprint(pstr, "CONupOne%d", i)
pnm.pc.take(pstr)
}
pnm.pc.take("CONupOne")
} else {
// slave nodes clear message from master and doit
pnm.pc.look("CONupOne")
sprint(pstr, "CONupOne%d", pnm.pc.id())
pnm.pc.post(pstr)
}
//print "pc.id=", pnm.pc.id(), $1, $2, $3, $4, $5
if ($1 == ID_GPe && $2 == ID_STN) {
ncIndx = ncGPeSTN[$3].x($4)
} else {
if ($1 == ID_STN && $2 == ID_GPe) {
ncIndx = ncSTNGPe[$3].x($4)
} else {
if ($1 == ID_GPe && $2 == ID_GPe) {
ncIndx = ncGPeGPe[$3].x($4)
} else {
if ($1 == ID_STN && $2 == ID_GPi) {
ncIndx = ncSTNGPi[$3].x($4)
} else {
if ($1 == ID_GPe && $2 == ID_GPi) {
ncIndx = ncGPeGPi[$3].x($4)
}
}
}
}
}
if (ncIndx >= 0) {
pnm.nclist.o(ncIndx).weight = $5
}
}
//----------------------------------------------------------------------------
// Call setup functions when .hoc file is loaded
//----------------------------------------------------------------------------
CONconnectNet()
CONupdateWeights()
//----------------------------------------------------------------------------
// Dialog to update parameter values
//----------------------------------------------------------------------------