Chaoming Wang
Chaoming Wang
It seems that mapping transformations, like ``vmap`` and ``pmap`` are not compatible with object-oriented programming.
Thanks for raising this issue.
I got a same problem. #628
Dear @ailzhang , one way to interoperate JAX data with Taichi is using `dlpack`: ```python import jax.dlpack import torch def j2t(x_jax): x_torch = torch.utils.dlpack.from_dlpack(jax.dlpack.to_dlpack(x_jax)) return x_torch def t2j(x_torch): x_torch =...
We are just wondering where can get the address of the Taichi compiled kernels. Thanks.
Dear @ailzhang , that's wonderful. Thanks very much!
See examples in https://github.com/brainpy/BrainPy/pull/553
This is a good question. I will show you inspirational examples, and their limitations.
Currently, brainpy does not implement the continuation analysis. However, we can do bifurcation analysis using fast-slow bifurcation analysis: fixing one variable first, then do bifurcation analysis of two remaining variables....
Thanks for the report. The ``rotation`` mode may be fixed by sometimes before. But i will check whether the gradients is correct.