Skip to content

Commit

Permalink
Merge branch 'master' into braintaichi-op
Browse files Browse the repository at this point in the history
  • Loading branch information
Routhleck committed Nov 23, 2024
2 parents 34fe1e2 + 26cce53 commit 18131ae
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 3 deletions.
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,19 @@ We provide a Binder environment for BrainPy. You can use the following button to

[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/brainpy/BrainPy-binder/main)

## Brain Dynamics Programming Ecosystem

We are building an ecosystem for bain dynamics programming (BDP), evolving from our previously experimental [BrainPy package](https://github.com/brainpy/BrainPy).

The BDP ecosystem is a collection of tools, libraries, and frameworks that can be used to build brain dynamics models and applications.

The BDP ecosystem is designed to be modular, so you can use as much or as little of it as you need.

The details for this ecosystem please see: https://ecosystem-for-brain-dynamics.readthedocs.io/

We welcome contributions from the community, so if you have an idea for a new tool or library, please let us know! Please email us at: <[email protected]>.



## Ecosystem

Expand Down
4 changes: 2 additions & 2 deletions brainpy/_src/math/pre_syn_post.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def pre2post_event_sum(events,
for i in range(pre_num):
if events[i]:
for j in range(idnptr[i], idnptr[i+1]):
post_val[post_ids[i]] += values
post_val[post_ids[j]] += values
When ``values`` is a vector (with the length of ``len(post_ids)``),
this function is equivalent to
Expand All @@ -70,7 +70,7 @@ def pre2post_event_sum(events,
for i in range(pre_num):
if events[i]:
for j in range(idnptr[i], idnptr[i+1]):
post_val[post_ids[i]] += values[j]
post_val[post_ids[j]] += values[j]
Parameters
Expand Down
2 changes: 1 addition & 1 deletion requirements-doc.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ braintaichi
# document requirements
pandoc
Jinja2
sphinx>=5, <7.4.0
sphinx>=5, <8.2.0
myst-nb
sphinx_thebe
sphinx-autodoc-typehints
Expand Down

0 comments on commit 18131ae

Please sign in to comment.