This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from functools import partial | |
| from typing import Any, NamedTuple, Protocol | |
| import jax | |
| import jax.numpy as jnp | |
| from jax import lax | |
| from jax import Array | |
| class LinearOperator(Protocol): | |
| dtype: Any |