Is it possible to view the time of execution of each layer of a neural network in IREE? #21289
FlintWangacc
started this conversation in
General
Replies: 1 comment 1 reply
-
|
Tracy might be your best bet for profiling (tracy guide). It will give you execution time for each dispatch which should roughly map to the layers in your NN. But this depends on how you compile the model (different flags change fusion) as well as different models will form different dispatches that may not match a "layer". |
Beta Was this translation helpful? Give feedback.
1 reply
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 running neural network on a constraint platform such as FPGA. Is there a way to view the time of execution of each layer of a neural network?
Beta Was this translation helpful? Give feedback.
All reactions