-
I'm new to JAX, and I had a couple questions about its compilation capabilities:
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Maybe check https://github.com/google/jax/blob/main/jax/_src/dispatch.py#L555. |
Beta Was this translation helpful? Give feedback.
-
There's an experimental persistent cache that works on TPU only today. See
#7733 is in development, usable today but not yet officially stable. This effectively offers "AOT" within a running Python interpreter process, but doesn't persist across process restarts. Another way to describe it is as "an API for explicit control of lowering and compilation." |
Beta Was this translation helpful? Give feedback.
There's an experimental persistent cache that works on TPU only today. See
jax.experimental.compilation_cache
. Documentation is still on the way.#7733 is in development, usable today but not yet officially stable. This effectively offers "AOT" …