RecordedOperation

data class RecordedOperation(val operation: Operation, val inputs: List<TensorSpec>, val outputs: List<TensorSpec>, val timestamp: Long = 0, val metadata: Map<String, Any> = emptyMap())(source)

Represents a recorded operation with its inputs and outputs

Constructors

Link copied to clipboard
constructor(operation: Operation, inputs: List<TensorSpec>, outputs: List<TensorSpec>, timestamp: Long = 0, metadata: Map<String, Any> = emptyMap())

Properties

Link copied to clipboard

Input tensor specifications

Link copied to clipboard

Additional metadata for this recorded operation

Link copied to clipboard

The operation that was performed

Link copied to clipboard

Output tensor specifications

Link copied to clipboard

Timestamp when the operation was recorded (sequential counter)