BenchmarkResult
data class BenchmarkResult(val id: Long = 0, val createdAt: Long, val deviceInfo: BenchmarkDeviceInfo, val cpuScore: Int, val memoryScore: Int, val acceleratorScore: Int, val totalScore: Int, val estimatedTimeSeconds: Int, val recommendation: BenchmarkRecommendation, val providerRecommendations: List<BenchmarkProviderRecommendation> = emptyList(), val notes: List<String> = emptyList())(source)
Persisted benchmark score with the device snapshot and recommendations.
Author
Dmitriy Moroz
Constructors
Link copied to clipboard
constructor(id: Long = 0, createdAt: Long, deviceInfo: BenchmarkDeviceInfo, cpuScore: Int, memoryScore: Int, acceleratorScore: Int, totalScore: Int, estimatedTimeSeconds: Int, recommendation: BenchmarkRecommendation, providerRecommendations: List<BenchmarkProviderRecommendation> = emptyList(), notes: List<String> = emptyList())