From 9270d9e52fc1d946cf543c11df71bcc1f7b38544 Mon Sep 17 00:00:00 2001 From: Francis Murtagh Date: Fri, 12 Aug 2022 13:54:17 +0100 Subject: IVGCVSW-7159 Implement simple TOSA Reference Backend skeleton * Added files based on RefBackend * Added PreCompiled Workload skeleton * Increment ABI version of armnnTestUtils for CreateInput which had been left as pure virtual, added base implementation for it. * Add IsTosaLayerSupported() for Addition Change-Id: I4c963adf3f50593d17ecdf21554502a64ad3bd76 --- src/backends/tosaReference/TosaRefBackendId.hpp | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/backends/tosaReference/TosaRefBackendId.hpp (limited to 'src/backends/tosaReference/TosaRefBackendId.hpp') diff --git a/src/backends/tosaReference/TosaRefBackendId.hpp b/src/backends/tosaReference/TosaRefBackendId.hpp new file mode 100644 index 0000000000..470fb79c4a --- /dev/null +++ b/src/backends/tosaReference/TosaRefBackendId.hpp @@ -0,0 +1,12 @@ +// +// Copyright © 2022 Arm Ltd and Contributors. All rights reserved. +// SPDX-License-Identifier: MIT +// +#pragma once + +namespace armnn +{ + +constexpr const char * TosaRefBackendId() { return "TosaRef"; } + +} // namespace armnn -- cgit v1.2.1