Package-level declarations
Types
Link copied to clipboard
Composite sink that fans out traces to multiple sinks in order. Intentionally simple for hot path performance.
Link copied to clipboard
object OpAttributeFactory
OpAttributeFactory provides methods to generate operation attributes for tracing. It captures metadata about tensor operations for graph construction and optimization.
Link copied to clipboard
data class OpTrace(val opType: String, val inputs: List<TensorRef>, val outputs: List<TensorRef>, val attributes: Map<String, Any?> = emptyMap())
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.
Link copied to clipboard
TraceSession manages tensor references during computation graph tracing. It provides methods to convert tensors to TensorRef objects for graph capture.