Lines Matching refs:execution
117 Execution execution(&compilation); in TEST_F() local
118 ASSERT_EQ(execution.setInput(0, matrix1, sizeof(Matrix3x4)), Result::NO_ERROR); in TEST_F()
119 ASSERT_EQ(execution.setInput(1, matrix2, sizeof(Matrix3x4)), Result::NO_ERROR); in TEST_F()
120 ASSERT_EQ(execution.setOutput(0, actual, sizeof(Matrix3x4)), Result::NO_ERROR); in TEST_F()
121 ASSERT_EQ(execution.compute(), Result::NO_ERROR); in TEST_F()
146 Execution execution(&compilation); in TEST_F() local
147 ASSERT_EQ(execution.setInputFromMemory(0, &matrix1Memory, 0, sizeof(Matrix3x4)), in TEST_F()
149 ASSERT_EQ(execution.setInput(1, matrix2, sizeof(Matrix3x4)), Result::NO_ERROR); in TEST_F()
150 ASSERT_EQ(execution.setOutput(0, actual, sizeof(Matrix3x4)), Result::NO_ERROR); in TEST_F()
166 ANeuralNetworksExecution* executionHandle = execution.getHandle(); in TEST_F()
174 ASSERT_EQ(execution.compute(), Result::NO_ERROR); in TEST_F()
273 Execution execution(&compilation); in TEST_F() local
274 ASSERT_EQ(execution.setInput(0, matrix1, sizeof(Matrix3x4)), Result::NO_ERROR); in TEST_F()
275 ASSERT_EQ(execution.setInput(1, matrix2b, sizeof(Matrix4)), Result::NO_ERROR); in TEST_F()
276 ASSERT_EQ(execution.setOutput(0, actual, sizeof(Matrix3x4)), Result::NO_ERROR); in TEST_F()
277 ASSERT_EQ(execution.compute(), Result::NO_ERROR); in TEST_F()
302 Execution execution(&compilation); in TEST_F() local
303 ASSERT_EQ(execution.setInput(0, matrix1, sizeof(Matrix3x4)), Result::NO_ERROR); in TEST_F()
304 ASSERT_EQ(execution.setInput(1, matrix2b, sizeof(Matrix4)), Result::NO_ERROR); in TEST_F()
305 ASSERT_EQ(execution.setOutput(0, actual, sizeof(Matrix3x4)), Result::NO_ERROR); in TEST_F()
306 ASSERT_EQ(execution.compute(), Result::NO_ERROR); in TEST_F()