/test/mlts/benchmark/jni/ |
D | random_graph_test_jni.cpp | 148 : mTestName(testName), in RandomGraphGenerator() 186 LOG(ERROR) << mTestName << ": No model generated"; in runRandomModel() 193 LOG(ERROR) << mTestName << ": Randomly generated model is not valid"; in runRandomModel() 198 LOG(ERROR) << mTestName << ": Failed to finish model, result is " in runRandomModel() 249 LOG(WARNING) << mTestName in runRandomModel() 258 LOG(WARNING) << mTestName << ": Compilation failed with result " in runRandomModel() 273 LOG(WARNING) << mTestName << ": Execution failed with result " in runRandomModel() 284 const std::string mTestName; member in RandomGraphGenerator 321 LOG(ERROR) << mTestName << ": Unable to query device feature level"; in HalVersionsSupportedByDevice() 342 LOG(ERROR) << mTestName << ": Unable to query device type"; in OperandTypesSupportedByDevice() [all …]
|
/test/mlts/benchmark/src/com/android/nn/crashtest/core/test/ |
D | PerformanceDegradationTest.java | 101 private String mTestName; 114 mTestName = configParams.getStringExtra(TEST_NAME); in init() 154 Log.d(TAG, String.format("%s: Calculating baseline", mTestName)); in testDegradationForModels() 160 mTestName, baseline.getBenchmarkError())); in testDegradationForModels() 162 Log.d(TAG, String.format("%s: Baseline mean time is %f seconds", mTestName, in testDegradationForModels() 165 Log.d(TAG, String.format("%s: Sleeping for %d millis", mTestName, in testDegradationForModels() 169 Log.d(TAG, String.format("%s: Calculating performance with %d threads", mTestName, in testDegradationForModels() 201 mTestName, benchmarkWithOtherCompilingThread.getBenchmarkError())); in testDegradationForModels() 205 mTestName, benchmarkWithOtherCompilingThread.getMeanTimeSec())); in testDegradationForModels() 214 mTestName, mAcceleratorName, mThreadCount, performanceDegradation, in testDegradationForModels()
|
D | RandomGraphTest.java | 41 + mTestName.hashCode() + "." + fileExtension; in getGeneratorOutFilePath() 153 private String mTestName; 179 mTestName = configParams.getStringExtra(TEST_NAME) != null in init() 192 mTestName, mModelsCount, mGraphSize, mDimensionsRange, mMaxTestDuration, in call() 196 mGraphSize, mDimensionsRange, mTestName, getNnapiLogFilePath(), in call() 233 mTestName)); in call()
|
D | RunModelsInParallel.java | 61 private String mTestName; field in RunModelsInParallel 93 mTestName = configParams.getStringExtra(TEST_NAME); in init() 125 notifyProgress("Test '%s': Benchmark #%d completed %s", mTestName, testIndex, in createSubTestRunner() 179 + "indefinitely. Forcing termination.", mTestName)); in completedSuccessfully() 189 String failureMsg = String.format("Test '%s': %d out of %d test failed", mTestName, in completedSuccessfully() 196 String.format("Test '%s': Test completed successfully", mTestName)); in completedSuccessfully()
|
D | RunModelsInMultipleProcesses.java | 59 private String mTestName; field in RunModelsInMultipleProcesses 99 mTestName = configParams.getStringExtra(TEST_NAME); in init() 151 "" + mTestDuration.getSeconds(), mTestName, ("" + mJustCompileModel).toLowerCase(), in call()
|
/test/mlts/benchmark/src/com/android/nn/crashtest/app/ |
D | NNParallelTestActivity.java | 61 private String mTestName; field in NNParallelTestActivity 103 mTestName = intent.getStringExtra(EXTRA_TEST_NAME) != null in onResume() 118 Duration.ofMillis(testDurationMillis), mTestName, acceleratorName, in onResume() 120 mTestStatus, runInSeparateProcess, mTestName); in onResume() 145 mTestName, testResultTimeout)); in testResult()
|
D | NNParallelInferenceTest.java | 50 public TestName mTestName = new TestName(); field in NNParallelInferenceTest 88 testData.putString("Test name", mTestName.getMethodName()); in shouldNotFailWithParallelThreads() 126 intent.putExtra(NNParallelTestActivity.EXTRA_TEST_NAME, mTestName.getMethodName()); in runAllModelsOnNThreadsForOnAccelerator()
|
D | NNPerformanceDegradationTest.java | 62 public TestName mTestName = new TestName(); field in NNPerformanceDegradationTest 94 setActivityIntent(getTestMaxPerfDegradationOfModelWIthThreads(mTestName.getMethodName(), in setUp()
|
D | NNRandomGraphTest.java | 78 public TestName mTestName = new TestName(); field in NNRandomGraphTest 97 mModelCount, mAcceleratorName, mDuration, mTestName.getMethodName())); in setUp()
|
D | NNMemoryMappedModelCompilationTest.java | 62 public TestName mTestName = new TestName(); field in NNMemoryMappedModelCompilationTest 125 intent.putExtra(NNParallelTestActivity.EXTRA_TEST_NAME, mTestName.getMethodName()); in compileSupportedModelsMemoryMappedOnNThreadsFor()
|
D | NNClientEarlyTerminationTest.java | 60 public TestName mTestName = new TestName(); field in NNClientEarlyTerminationTest 138 intent.putExtra(NNParallelTestActivity.EXTRA_TEST_NAME, mTestName.getMethodName()); in compileSupportedModelsOnNThreadsFor()
|
D | NNMultipleProcessInferenceTest.java | 44 .intentInitializer(mTestName.getMethodName(), in getRunModelsInMultipleProcessesConfigIntent()
|
D | NNMultipleProcessModelLoadTest.java | 53 .intentInitializer(mTestName.getMethodName(), in getRunModelsInMultipleProcessesConfigIntent()
|
D | NNMultipleProcessTest.java | 62 public TestName mTestName = new TestName(); field in NNMultipleProcessTest
|
/test/mlts/benchmark/src/com/android/nn/benchmark/core/ |
D | TestModels.java | 43 public final String mTestName; field in TestModels.TestModelEntry 67 mTestName = testName; in TestModelEntry() 103 return mTestName; in getTestName() 109 mInOutDatasets, mTestName, mModelFile, in withDisabledEvaluation()
|
D | Processor.java | 354 testModel.mTestName, mAcceleratorName)); in benchmarkAllModels() 358 testModel.mTestName, mAcceleratorName), e); in benchmarkAllModels() 376 mTestResults[ct] = BenchmarkResult.fromInferenceResults(testModel.mTestName, in benchmarkAllModels()
|
/test/mlts/benchmark/src/com/android/nn/crashtest/core/ |
D | CrashTestCoordinator.java | 43 private String mTestName; field in CrashTestCoordinator 107 Log.d(TAG, String.format("Test '%s' succeeded", mTestName)); in onServiceConnected() 118 String.format("Test '%s' failed with reason: %s", mTestName, in onServiceConnected() 187 mTestName = testName; in startTest()
|
/test/mlts/benchmark/src/com/android/nn/benchmark/app/ |
D | BenchmarkTestBase.java | 205 mTestModel.mTestName, in run()
|