Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature: High-level network specification #2050
Feature: High-level network specification #2050
Changes from 47 commits
cc609bf
dac34ad
76109ba
27798a1
ba9a199
525a50d
fae2651
f536c13
ab02df6
d1f1e41
5bb3244
b9dcfa6
16dc1e9
edae2d9
6882c59
c90dd98
1593e28
443ea8e
8c47e96
f1b351c
b993f2f
35dc0ed
7b0dbf1
343218b
229da63
ce75385
2fec3f1
2eb1c90
edb90bf
2ab0d89
75fa66a
f666941
15516b0
9cbabec
508bcc6
f82fb2d
fc38ec8
a5bf351
8dae792
5ac7c5c
4b33622
6e44819
d8ae7d2
d21b51d
bbdc519
25086f1
30ccb9b
c8421fd
d13a5b1
ee037fc
1a74723
71d116b
d4e334e
76d44ba
365f9e3
11ae954
7e1aaf1
3dd836c
55a376f
384dff7
8339d57
f008f72
eb2c7fb
d8546fc
b8d0329
c94f1c2
cf2a5f8
83e6c44
682a6aa
fbdf107
ef792c9
97ca7a4
61bd0b4
0cec44f
c583b2f
297dea9
c37f603
1b3bbb8
a96cbf1
8d2983f
dec80fa
f9db23a
0e75615
20902f1
1e07cdd
fc444f6
654d935
55eff36
43de6a1
1596219
d178b07
1bc1807
23e9659
953b1ce
6ad6c30
340da63
534c559
31fbbe4
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Here, the change to the metadata require one extra indirection per spike event. Seems expensive? Could you measure?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why this change from storing
index_on_domain
in the connection to{gid, lid}
and then mapping mapping to essentiallyindex_on_domain
? I am not opposed, but why?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The
index_on_domain
was implementation specific to the communicator and the new network implementation needed a way to share connections with the communicator. To better solve this now, I've moved the choice ofindex_on_domain
to the domain decomposition, such that both the communicator and the network generation work the same indexing.