BrainPy
                                
                                
                                
                                    BrainPy copied to clipboard
                            
                            
                            
                        Brain Dynamics Programming in Python
Hi, Thanks for the awesome software. I was wondering if there's a way to do 2D bifurcation on **more** than 2D dynamical systems in your software. Please: - [x] Check...
- [x] Matrix Vector - [x] event csr matvec [(brainpy/_src/math/event/_csr_matvec_taichi.py)](https://github.com/brainpy/BrainPy/blob/add-taichi-op/brainpy/_src/math/event/_csr_matvec_taichi.py) - [x] csr matvec [(brainpy/_src/math/sparse/_csr_mv_taichi.py)](https://github.com/brainpy/BrainPy/blob/add-taichi-op/brainpy/_src/math/sparse/_csr_mv_taichi.py) - [x] jit event csr matvec[(brainpy/_src/math/jitconn/_event_matvec_taichi.py)](https://github.com/brainpy/BrainPy/blob/add-taichi-op/brainpy/_src/math/jitconn/_event_matvec_taichi.py) - [x] jit csr matvec [(brainpy/_src/math/jitconn/_matvec_taichi.py)](https://github.com/brainpy/BrainPy/blob/add-taichi-op/brainpy/_src/math/jitconn/_matvec_taichi.py) - [ ]...
- [x] csr matmat - [x] event csr matmat - [ ] jitconn csr matmat - [ ] jitconn event csr matmat - [ ] optimize all operators above
For a model written to process single input data, is it possible to convert the model to process batched input data simply by using `jax.vmap`? Or do we have to...
In the documentation of [monitor every multiple steps](https://brainpy.readthedocs.io/en/latest/tutorial_simulation/monitor_per_multiple_steps.html), two methods are provided. One using `brainpy.math.for_loop` and the other using `model.jit_step_run`. I have profiled the running speed of the given two...
Please: - [x] Check for duplicate requests. - [x] Describe your goal, and if possible provide a code snippet with a motivating example. BrainPy is a useful Python library for...
Please: - [x] Check for duplicate requests. - [x] Describe your goal, and if possible provide a code snippet with a motivating example. BrainPy currently supports operator customization with the...
Does BrainPy fully support half-precision floating point numbers? I have tried to changed some of my own BrainPy code from using `brainpy.math.float32` to `brainpy.math.float16` or `brainpy.math.bfloat16` (by explicitly setting the...