ExecutionStats
data class ExecutionStats(val operationsExecuted: Long = 0, val totalExecutionTime: Long = 0, val averageExecutionTime: Double = if (operationsExecuted > 0) totalExecutionTime.toDouble() / operationsExecuted else 0.0, val tensorsCreated: Long = 0, val peakMemoryUsage: Long = 0)(source)
Execution statistics