pub struct OpEvent {
pub op_name: String,
pub op_idx: i64,
pub subgraph_idx: i64,
pub duration_us: u64,
}Expand description
A recorded per-op timing event from a single inference invocation.
Fields§
§op_name: StringOperator name (e.g., NeutronDelegate, SOFTMAX, Transpose).
op_idx: i64Operator index in the subgraph.
subgraph_idx: i64Subgraph index.
duration_us: u64Duration in microseconds.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for OpEvent
impl RefUnwindSafe for OpEvent
impl Send for OpEvent
impl Sync for OpEvent
impl Unpin for OpEvent
impl UnsafeUnpin for OpEvent
impl UnwindSafe for OpEvent
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more