Home
last modified time | relevance | path

Searched refs:minComputeTimeSec (Results 1 – 1 of 1) sorted by relevance

/test/mlts/benchmark/src/com/android/nn/benchmark/core/
DLatencyResult.java47 float minComputeTimeSec = Float.MAX_VALUE; in LatencyResult() local
51 minComputeTimeSec = Math.min(minComputeTimeSec, result); in LatencyResult()
65 mTimeFreqStartSec = minComputeTimeSec; in LatencyResult()
66 mTimeFreqStepSec = (maxComputeTimeSec - minComputeTimeSec) / (TIME_FREQ_ARRAY_SIZE - 1); in LatencyResult()
69 int bucketIndex = (int) ((result - minComputeTimeSec) / mTimeFreqStepSec); in LatencyResult()