Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Switch to jax.experimental.ode.odeint #93

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion jax_cosmo/background.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# This module implements various functions for the background COSMOLOGY
import jax.numpy as np
from jax import lax
from jax.experimental.ode import odeint

import jax_cosmo.constants as const
from jax_cosmo.scipy.interpolate import interp
from jax_cosmo.scipy.ode import odeint

__all__ = [
"w",
Expand Down
1 change: 0 additions & 1 deletion jax_cosmo/core.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import jax.numpy as np
from jax.experimental.ode import odeint
from jax.tree_util import register_pytree_node_class

import jax_cosmo.constants as const
Expand Down
22 changes: 0 additions & 22 deletions jax_cosmo/scipy/ode.py

This file was deleted.