Lines Matching refs:compilation
200 test_wrapper::Compilation compilation; in createCompilation() local
217 std::tie(result, compilation) = in createCompilation()
221 compilation = test_wrapper::Compilation(&mModel); in createCompilation()
223 EXPECT_EQ(compilation.finish(), WrapperResult::NO_ERROR); in createCompilation()
224 return compilation; in createCompilation()
228 const test_wrapper::Compilation& compilation, const std::vector<uint32_t>& inputIndexes, in allocateDeviceMemory() argument
230 const auto* annCompilation = compilation.getHandle(); in allocateDeviceMemory()
298 auto compilation = createCompilation({"test_driver"}); in TEST_P() local
299 ASSERT_NE(compilation.getHandle(), nullptr); in TEST_P()
301 auto [n, memory] = allocateDeviceMemory(compilation, {0}, {0}); in TEST_P()
334 auto compilation = createCompilation({"test_driver_add", "test_driver_sub", "test_driver_mul"}); in TEST_P() local
335 ASSERT_NE(compilation.getHandle(), nullptr); in TEST_P()
339 auto [n, memory] = allocateDeviceMemory(compilation, {0}, {}); in TEST_P()
370 auto [n, memory] = allocateDeviceMemory(compilation, {1}, {}); in TEST_P()
393 auto [n, memory] = allocateDeviceMemory(compilation, {}, {0}); in TEST_P()
420 auto compilation = createCompilation({"test_driver"}); in TEST_P() local
421 ASSERT_NE(compilation.getHandle(), nullptr); in TEST_P()
423 auto [n, memory] = allocateDeviceMemory(compilation, {}, {1}); in TEST_P()
454 auto compilation = createCompilation({"test_driver"}); in TEST_F() local
455 ASSERT_NE(compilation.getHandle(), nullptr); in TEST_F()
465 auto [n1, memory1] = allocateDeviceMemory(compilation, {0}, {}); in TEST_F()
466 auto [n2, memory2] = allocateDeviceMemory(compilation, {0}, {}); in TEST_F()