aboutsummaryrefslogtreecommitdiff
path: root/src/backends/cl/workloads/ClBaseMergerWorkload.hpp
diff options
context:
space:
mode:
authorNattapat Chaimanowong <nattapat.chaimanowong@arm.com>2018-10-11 16:16:17 +0100
committerMatthew Bentham <matthew.bentham@arm.com>2018-10-22 16:57:53 +0100
commit02f8bc10bc670dd694eeda2db8e0a43a1c84320b (patch)
tree744d662eeeef188bdb2e0a1a1934c5e221d92422 /src/backends/cl/workloads/ClBaseMergerWorkload.hpp
parente06757e605e4d0c5618dd58b4c8599dc96fabf7e (diff)
downloadarmnn-02f8bc10bc670dd694eeda2db8e0a43a1c84320b.tar.gz
IVGCVSW-1951 Remove type templating from ClMergerWorkload
Change-Id: I8580f5d1612567a3b02cfccfd1f8d0f196eeda93
Diffstat (limited to 'src/backends/cl/workloads/ClBaseMergerWorkload.hpp')
-rw-r--r--src/backends/cl/workloads/ClBaseMergerWorkload.hpp28
1 files changed, 0 insertions, 28 deletions
diff --git a/src/backends/cl/workloads/ClBaseMergerWorkload.hpp b/src/backends/cl/workloads/ClBaseMergerWorkload.hpp
deleted file mode 100644
index f8ff6f9379..0000000000
--- a/src/backends/cl/workloads/ClBaseMergerWorkload.hpp
+++ /dev/null
@@ -1,28 +0,0 @@
-//
-// Copyright © 2017 Arm Ltd. All rights reserved.
-// SPDX-License-Identifier: MIT
-//
-
-#pragma once
-
-#include <backends/Workload.hpp>
-
-#include <arm_compute/runtime/CL/CLFunctions.h>
-
-namespace armnn
-{
-
-// Base class template providing an implementation of the Merger layer common to all data types.
-template <armnn::DataType... DataTypes>
-class ClBaseMergerWorkload : public TypedWorkload<MergerQueueDescriptor, DataTypes...>
-{
-public:
- using TypedWorkload<MergerQueueDescriptor, DataTypes...>::TypedWorkload;
-
- void Execute() const override
- {
- // With subtensors, merger is a no-op.
- }
-};
-
-} //namespace armnn