OpTrace

data class OpTrace(val opType: String, val inputs: List<TensorRef>, val outputs: List<TensorRef>, val attributes: Map<String, Any?> = emptyMap())(source)

OpTrace represents a single tensor operation execution with its inputs, outputs, and attributes. This is the core data structure for capturing computation graphs during execution.

Constructors

Link copied to clipboard
constructor(opType: String, inputs: List<TensorRef>, outputs: List<TensorRef>, attributes: Map<String, Any?> = emptyMap())

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard