torch.tx.TraceEntry
export interface TraceEntry {
/** The operation name */
op: string;
/** Input shapes */
inputs: (readonly number[])[];
/** Output shape */
output: readonly number[];
/** Execution time in milliseconds */
time: number;
}op(string)- – The operation name
inputs((readonly number[])[])- – Input shapes
output(readonly number[])- – Output shape
time(number)- – Execution time in milliseconds
A single entry in the evaluation trace.