Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ We provide a Binder environment for BrainPy. You can use the following button to
- **[brainpy-datasets](https://github.com/brainpy/datasets)**: Neuromorphic and Cognitive Datasets for Brain Dynamics Modeling.
- [《神经计算建模实战》 (Neural Modeling in Action)](https://github.com/c-xy17/NeuralModeling)
- [第一届神经计算建模与编程培训班 (First Training Course on Neural Modeling and Programming)](https://github.com/brainpy/1st-neural-modeling-and-programming-course)
- [第二届神经计算建模与编程培训班 (Second Training Course on Neural Modeling and Programming)](https://github.com/brainpy/2st-neural-modeling-and-programming-course)


## Citing
Expand Down
2 changes: 1 addition & 1 deletion brainpy/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-

__version__ = "2.4.6.post2"
__version__ = "2.4.6.post4"

# fundamental supporting modules
from brainpy import errors, check, tools
Expand Down
4 changes: 2 additions & 2 deletions brainpy/_src/running/pathos_multiprocessing.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ def cpu_ordered_parallel(
>>>
>>> def simulate(inp):
>>> inp = bm.as_jax(inp)
>>> hh = bp.neurons.HH(1)
>>> hh = bp.dyn.HH(1)
>>> runner = bp.DSRunner(hh, inputs=['input', inp],
>>> monitors=['V', 'spike'],
>>> progress_bar=False)
Expand Down Expand Up @@ -194,7 +194,7 @@ def cpu_unordered_parallel(
>>>
>>> def simulate(inp):
>>> inp = bm.as_jax(inp)
>>> hh = bp.neurons.HH(1)
>>> hh = bp.dyn.HH(1)
>>> runner = bp.DSRunner(hh, inputs=['input', inp],
>>> monitors=['V', 'spike'],
>>> progress_bar=False)
Expand Down