Replies: 3 comments 1 reply
-
Try with We migrated to a newer version of the XLA:CPU runtime, which has different performance characteristics. |
Beta Was this translation helpful? Give feedback.
-
We've also had a report of an 8x slowdown here: In particular this identifies the offending diff as being between jaxlib==0.4.32.dev20240807 and jaxlib==0.4.32.dev20240812 . |
Beta Was this translation helpful? Give feedback.
-
The flag |
Beta Was this translation helpful? Give feedback.
-
After upgrading JAX from version 0.4.31 to 0.4.35, I observed a performance degradation when running the same program on a CPU. I write a test program includes two main computations: one that updates a progress bar using
jax.debug.callback
within ajax.jit
function, and another that does not update the progress bar. Both computations showed slower execution times in JAX 0.4.35 compared to JAX 0.4.31.Below is the test program I used to measure the performance:
Here are the execution times for both versions of JAX:
Beta Was this translation helpful? Give feedback.
All reactions