aboutsummaryrefslogtreecommitdiff
path: root/src/backends/cl/workloads/ClReshapeUint8Workload.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/backends/cl/workloads/ClReshapeUint8Workload.hpp')
-rw-r--r--src/backends/cl/workloads/ClReshapeUint8Workload.hpp29
1 files changed, 0 insertions, 29 deletions
diff --git a/src/backends/cl/workloads/ClReshapeUint8Workload.hpp b/src/backends/cl/workloads/ClReshapeUint8Workload.hpp
deleted file mode 100644
index 654437a4c1..0000000000
--- a/src/backends/cl/workloads/ClReshapeUint8Workload.hpp
+++ /dev/null
@@ -1,29 +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
-{
-
-// Reshape
-class ClReshapeUint8Workload : public Uint8Workload<ReshapeQueueDescriptor>
-{
-public:
- ClReshapeUint8Workload( const ReshapeQueueDescriptor& descriptor, const WorkloadInfo& info);
-
- void Execute() const override;
-
-private:
- mutable arm_compute::CLReshapeLayer m_Layer;
-};
-
-} //namespace armnn
-
-