Skip to content

Commit

Permalink
Component (#36)
Browse files Browse the repository at this point in the history
* feat: hierarchical structures

* feat: connect_(src or dst) for synapses

* chore: bumping the version and bug fixes

* fix:preserve non unique tag
  • Loading branch information
saeedark committed Feb 28, 2024
1 parent ea76e4a commit 0f8243d
Show file tree
Hide file tree
Showing 43 changed files with 110 additions and 4,732 deletions.
11 changes: 10 additions & 1 deletion HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,22 @@
History
=======

0.1.4 (2024-03-16)
------------------

* Bug fixes.
* Src and dst can be `None` for syanpses.
* Hierarchical structure.

0.1.3 (2023-08-16)
------------------

* BREAKING CHANGE: `Network` no longer accept settings. Individual setting are now argument for Network.
* Bugg fixes.
* Bug fixes.


0.1.2 (2023-06-14)
------------------

* `tensor` method for NetworkObject

Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ Similarly, you can write your own ``Behavior`` Modules with the same logic as ``
9: Recorder(['voltage']),
10: EventRecorder(['spike'])
})
SynapseGroup(ng, ng, net, tag='GLUTAMATE')
SynapseGroup(src=ng, dst=ng, net=net, tag='GLUTAMATE')
net.initialize()
net.simulate_iterations(1000)
Expand Down
76 changes: 0 additions & 76 deletions benchmark/Benchmarks/Izhikevich/brian_izh.py

This file was deleted.

74 changes: 0 additions & 74 deletions benchmark/Benchmarks/Izhikevich/brian_izh_cpp.py

This file was deleted.

65 changes: 0 additions & 65 deletions benchmark/Benchmarks/Izhikevich/brian_izh_cuda.py

This file was deleted.

25 changes: 0 additions & 25 deletions benchmark/Benchmarks/Izhikevich/globparams.py

This file was deleted.

Loading

0 comments on commit 0f8243d

Please sign in to comment.