aboutsummaryrefslogtreecommitdiff
path: root/src/backends/cl/workloads/ClBaseConstantWorkload.hpp
diff options
context:
space:
mode:
authorNattapat Chaimanowong <nattapat.chaimanowong@arm.com>2018-10-10 14:51:27 +0100
committerMatthew Bentham <matthew.bentham@arm.com>2018-10-22 16:57:53 +0100
commit55b1cda7d242ceb22963fd40370c2e6dbbb074ba (patch)
tree5005cb3411de2d2a3b10eeb785ca9da4b39f2a87 /src/backends/cl/workloads/ClBaseConstantWorkload.hpp
parentf1153cd864805ad2ed1197a9667e333dc38b8873 (diff)
downloadarmnn-55b1cda7d242ceb22963fd40370c2e6dbbb074ba.tar.gz
IVGCVSW-1951 Remove type templating from ClConstantWorkload
Change-Id: Ib2c9fe56c59aedabeff899a81a0afe260bd57c9f
Diffstat (limited to 'src/backends/cl/workloads/ClBaseConstantWorkload.hpp')
-rw-r--r--src/backends/cl/workloads/ClBaseConstantWorkload.hpp30
1 files changed, 0 insertions, 30 deletions
diff --git a/src/backends/cl/workloads/ClBaseConstantWorkload.hpp b/src/backends/cl/workloads/ClBaseConstantWorkload.hpp
deleted file mode 100644
index f7a23a9162..0000000000
--- a/src/backends/cl/workloads/ClBaseConstantWorkload.hpp
+++ /dev/null
@@ -1,30 +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
-{
-template <armnn::DataType... DataTypes>
-class ClBaseConstantWorkload : public TypedWorkload<ConstantQueueDescriptor, DataTypes...>
-{
-public:
- ClBaseConstantWorkload(const ConstantQueueDescriptor& descriptor, const WorkloadInfo& info)
- : TypedWorkload<ConstantQueueDescriptor, DataTypes...>(descriptor, info)
- , m_RanOnce(false)
- {
- }
-
- void Execute() const override;
-
-private:
- mutable bool m_RanOnce;
-};
-
-} //namespace armnn