Home
last modified time | relevance | path

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

/aosp12/frameworks/libs/native_bridge_support/libneuralnetworks/
H A Dstubs_arm.cc45 DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksExecution_compute);
120 INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksExecution_compute); in init_stub_library()
H A Dstubs_arm64.cc45 DEFINE_INTERCEPTABLE_STUB_FUNCTION(ANeuralNetworksExecution_compute);
120 INIT_INTERCEPTABLE_STUB_FUNCTION("libneuralnetworks.so", ANeuralNetworksExecution_compute); in init_stub_library()
/aosp12/packages/modules/NeuralNetworks/runtime/test/fibonacci_extension/
H A DFibonacciExtensionTest.cpp201 ASSERT_EQ(ANeuralNetworksExecution_compute(mExecution), ANEURALNETWORKS_NO_ERROR); in TEST_F()
232 ASSERT_EQ(ANeuralNetworksExecution_compute(mExecution), ANEURALNETWORKS_NO_ERROR); in TEST_F()
283 ASSERT_EQ(ANeuralNetworksExecution_compute(mExecution), ANEURALNETWORKS_OP_FAILED); in TEST_F()
/aosp12/packages/modules/NeuralNetworks/runtime/
H A Dlibneuralnetworks.map.txt71 ANeuralNetworksExecution_compute; # introduced=Q
H A DNeuralNetworks.cpp825 int ANeuralNetworksExecution_compute(ANeuralNetworksExecution* execution) { in ANeuralNetworksExecution_compute() function
1887 NNCL_FUNC(ANeuralNetworksExecution_compute),
/aosp12/packages/modules/NeuralNetworks/tools/api/
H A DNeuralNetworksTypes.t453 * <li>Synchronously with {@link ANeuralNetworksExecution_compute}.</li>
469 * {@link ANeuralNetworksExecution_compute}, {@link ANeuralNetworksExecution_startCompute},
473 * The computation is completed when {@link ANeuralNetworksExecution_compute},
479 * {@link ANeuralNetworksExecution_compute},
496 * {@link ANeuralNetworksExecution_compute}, or
505 * {@link ANeuralNetworksExecution_compute} or
/aosp12/packages/modules/NeuralNetworks/runtime/test/
H A DTestValidation.cpp364 ASSERT_EQ(ANeuralNetworksExecution_compute(execution), expectedResult); in executeWithMemoryAsInput()
378 ASSERT_EQ(ANeuralNetworksExecution_compute(execution), expectedResult); in executeWithMemoryAsOutput()
1366 ASSERT_EQ(ANeuralNetworksExecution_compute(execution), ANEURALNETWORKS_BAD_STATE); in TEST_F()
1400 ASSERT_EQ(ANeuralNetworksExecution_compute(execution), in TEST_F()
1455 return ANeuralNetworksExecution_compute(execution); in testConcurrentExecution()
2123 ASSERT_EQ(ANeuralNetworksExecution_compute(execution), ANEURALNETWORKS_OP_FAILED); in TEST_F()
2240 EXPECT_EQ(ANeuralNetworksExecution_compute(nullptr), ANEURALNETWORKS_UNEXPECTED_NULL); in TEST_F()
2510 EXPECT_NE(ANeuralNetworksExecution_compute(mExecution), ANEURALNETWORKS_NO_ERROR); in TEST_F()
3187 ASSERT_EQ(ANeuralNetworksExecution_compute(execution), ANEURALNETWORKS_NO_ERROR); in TEST_F()
3339 checkResult(ANeuralNetworksExecution_compute(execution)); in runExecutionSetTimeoutTest()
H A DTestNeuralNetworksWrapper.h492 return static_cast<Result>(ANeuralNetworksExecution_compute(mExecution));
H A DTestIntrospectionControl.cpp953 Check(isPass, ANeuralNetworksExecution_compute(mExecution)); in TEST_P()
H A DTestValidateModel.cpp3125 ASSERT_EQ(ANeuralNetworksExecution_compute(execution), ANEURALNETWORKS_NO_ERROR); in TEST_F()
/aosp12/packages/modules/NeuralNetworks/runtime/include/
H A DNeuralNetworks.h597 int ANeuralNetworksExecution_compute(ANeuralNetworksExecution* execution) __NNAPI_INTRODUCED_IN(29);
H A DNeuralNetworksWrapper.h684 return static_cast<Result>(NNAPI_CALL(ANeuralNetworksExecution_compute(mExecution)));
/aosp12/packages/modules/NeuralNetworks/shim_and_sl/public/
H A DNeuralNetworksSupportLibraryImpl.h527 int (*ANeuralNetworksExecution_compute)(ANeuralNetworksExecution* execution); member
/aosp12/packages/modules/NeuralNetworks/shim_and_sl/include/
H A DSupportLibraryWrapper.h595 return static_cast<Result>(mNnApi->ANeuralNetworksExecution_compute(mExecution));