Replies: 1 comment
-
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I am currently running AlphaFold3 (implemented by JAX), and I want to profile the whole project to find out the bottleneck in it.
Following the official document:
https://jax.readthedocs.io/en/latest/profiling.html
I wrote the following code:
It has been perfect since then.
However, when I used tensorboard to visualize it, unlike the official document, there is nothing visualized at all.
The running output is:
While loading profile data using TensorBoard, the output is:
In the TensorBoard it turns out like this:
As shown in the output, the inference time is 77s, preprocess time is 7 + 12 s, however in the figure above, its a lot shorter...
In the ops_profile, it turns out to be without any FLOPS staff:
In the kernel stats it seems to be fine, but I don't know.
I really don't know what happened.
For further validation, I also tested the given example in JAX Doc:
Its running output is:
Guessing I forgot using the
y.block_until_ready()
staff?I am a rookie, and don't know much about this, I really don't know if I am doing right or not.
Beta Was this translation helpful? Give feedback.
All reactions