Home
last modified time | relevance | path

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

/test/mlts/benchmark/src/com/android/nn/benchmark/core/
DBenchmarkResult.java331 totalTime += iresult.mComputeTimeSec; in fromInferenceResults()
345 if (maxComputeTimeSec < iresult.mComputeTimeSec) { in fromInferenceResults()
346 maxComputeTimeSec = iresult.mComputeTimeSec; in fromInferenceResults()
348 if (minComputeTimeSec > iresult.mComputeTimeSec) { in fromInferenceResults()
349 minComputeTimeSec = iresult.mComputeTimeSec; in fromInferenceResults()
357 float v = (iresult.mComputeTimeSec - inferenceMean); in fromInferenceResults()
384 timeFreqSec[(int) ((iresult.mComputeTimeSec - minComputeTimeSec) / stepSize)] += 1; in fromInferenceResults()
DInferenceResult.java20 public float mComputeTimeSec; field in InferenceResult
30 mComputeTimeSec = computeTimeSec; in InferenceResult()