You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Pull Request resolved: #7738
## Issue
In the ET-SDK, we assign an `event_name` to each operation. In ET-VK, we compose a unique `event_name` using the `node_id`. The `node_id` exists for every `OperatorCall` but not for input/output with `nchw_to_image`/`image_to_nchw`. Those cases collapse into `node_id == 0` which means all `nchw_to_image` had the same `event_name` and hence only one was stored. The same reasoning results in storage of only one `image_to_nchw`.
## Solution
Ignore the serialized `node_id` and use the operation's `prepack_node`/`execute_node` vector index.
TODO: Determine if we can remove the serialized `node_id`, or whether this should be fixed differently and still reference it.
ghstack-source-id: 262309622
@exported-using-ghexport
Differential Revision: [D68344534](https://our.internmc.facebook.com/intern/diff/D68344534/)
Co-authored-by: jorgep31415 <[email protected]>
0 commit comments