Skip to content
Open
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
7 changes: 6 additions & 1 deletion haiku/_src/jaxpr_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,12 @@

# TODO(tomhennigan): Update to use symbols from jax.extend.core when available.
Atom: TypeAlias = jax.core.Atom
DropVar: TypeAlias = jax.core.DropVar
try:
# JAX v0.10.0 and newer.
DropVar: TypeAlias = jax_core.DropVar
except AttributeError:
# JAX v0.9.2 and older.
DropVar = jax.core.DropVar


@dataclasses.dataclass
Expand Down
Loading