From d12b40792591309c627f215574aa082a5efd03ca Mon Sep 17 00:00:00 2001 From: Narumol Prangnawarat Date: Mon, 17 Jan 2022 18:03:14 +0000 Subject: IVGCVSW-6677 Register CopyAndImportFactoryPairs to ClBackend and unit tests Signed-off-by: Narumol Prangnawarat Change-Id: Ib0bf99c81ae1b30079be194a82b207761cb56028 --- src/backends/cl/test/CMakeLists.txt | 1 + src/backends/cl/test/ClBackendTests.cpp | 83 +++++++++++++++++++++++++++++++++ 2 files changed, 84 insertions(+) create mode 100644 src/backends/cl/test/ClBackendTests.cpp (limited to 'src/backends/cl/test') diff --git a/src/backends/cl/test/CMakeLists.txt b/src/backends/cl/test/CMakeLists.txt index af116a4e9f..9840b8289f 100644 --- a/src/backends/cl/test/CMakeLists.txt +++ b/src/backends/cl/test/CMakeLists.txt @@ -4,6 +4,7 @@ # list(APPEND armnnClBackendUnitTests_sources + ClBackendTests.cpp ClContextControlFixture.hpp ClContextSerializerTests.cpp ClCustomAllocatorTests.cpp diff --git a/src/backends/cl/test/ClBackendTests.cpp b/src/backends/cl/test/ClBackendTests.cpp new file mode 100644 index 0000000000..33f321653c --- /dev/null +++ b/src/backends/cl/test/ClBackendTests.cpp @@ -0,0 +1,83 @@ +// +// Copyright © 2022 Arm Ltd and Contributors. All rights reserved. +// SPDX-License-Identifier: MIT +// + +#include +#include +#include +#include + +#include + +using namespace armnn; + +TEST_SUITE("ClBackendTests") +{ +TEST_CASE("ClRegisterTensorHandleFactoriesMatchingImportFactoryId") +{ + auto clBackend = std::make_unique(); + TensorHandleFactoryRegistry registry; + clBackend->RegisterTensorHandleFactories(registry); + + // When calling RegisterTensorHandleFactories, CopyAndImportFactoryPair is registered + // Get ClImportTensorHandleFactory id as the matching import factory id + CHECK((registry.GetMatchingImportFactoryId(ClTensorHandleFactory::GetIdStatic()) == + ClImportTensorHandleFactory::GetIdStatic())); +} + +TEST_CASE("ClRegisterTensorHandleFactoriesWithMemorySourceFlagsMatchingImportFactoryId") +{ + auto clBackend = std::make_unique(); + TensorHandleFactoryRegistry registry; + clBackend->RegisterTensorHandleFactories(registry, + static_cast(MemorySource::Malloc), + static_cast(MemorySource::Malloc)); + + // When calling RegisterTensorHandleFactories with MemorySourceFlags, CopyAndImportFactoryPair is registered + // Get ClImportTensorHandleFactory id as the matching import factory id + CHECK((registry.GetMatchingImportFactoryId(ClTensorHandleFactory::GetIdStatic()) == + ClImportTensorHandleFactory::GetIdStatic())); +} + +TEST_CASE_FIXTURE(ClContextControlFixture, "ClCreateWorkloadFactoryMatchingImportFactoryId") +{ + auto clBackend = std::make_unique(); + TensorHandleFactoryRegistry registry; + clBackend->CreateWorkloadFactory(registry); + + // When calling CreateWorkloadFactory, CopyAndImportFactoryPair is registered + // Get ClImportTensorHandleFactory id as the matching import factory id + CHECK((registry.GetMatchingImportFactoryId(ClTensorHandleFactory::GetIdStatic()) == + ClImportTensorHandleFactory::GetIdStatic())); +} + +TEST_CASE_FIXTURE(ClContextControlFixture, "ClCreateWorkloadFactoryWithOptionsMatchingImportFactoryId") +{ + auto clBackend = std::make_unique(); + TensorHandleFactoryRegistry registry; + ModelOptions modelOptions; + clBackend->CreateWorkloadFactory(registry, modelOptions); + + // When calling CreateWorkloadFactory with ModelOptions, CopyAndImportFactoryPair is registered + // Get ClImportTensorHandleFactory id as the matching import factory id + CHECK((registry.GetMatchingImportFactoryId(ClTensorHandleFactory::GetIdStatic()) == + ClImportTensorHandleFactory::GetIdStatic())); +} + +TEST_CASE_FIXTURE(ClContextControlFixture, "ClCreateWorkloadFactoryWitMemoryFlagsMatchingImportFactoryId") +{ + auto clBackend = std::make_unique(); + TensorHandleFactoryRegistry registry; + ModelOptions modelOptions; + clBackend->CreateWorkloadFactory(registry, modelOptions, + static_cast(MemorySource::Malloc), + static_cast(MemorySource::Malloc)); + + // When calling CreateWorkloadFactory with ModelOptions and MemorySourceFlags, + // CopyAndImportFactoryPair is registered + // Get ClImportTensorHandleFactory id as the matching import factory id + CHECK((registry.GetMatchingImportFactoryId(ClTensorHandleFactory::GetIdStatic()) == + ClImportTensorHandleFactory::GetIdStatic())); +} +} -- cgit v1.2.1