import error
ChengXiaoSi opened this issue · comments
ChengXiaoSi commented
Dear developers
I get an error when I use from jaxfluids.simulation_manager import SimulationManager
。The reson of this error is that from jax.config import config
is used in /JAXFLUIDS/src/jaxfluids/simulation_manager.py
.In fact, jax suggest using this way.
import jax jax.config.update(your_config_options_here)
Thank you!
S-Yuan137 commented
Downgrading jax==0.4.24
from 0.4.25
works for me. No need to change the import header in simulation_manager.py
ChengXiaoSi commented
Downgrading
jax==0.4.24
from0.4.25
works for me. No need to change the import header insimulation_manager.py
Thanks for your advice