aboutsummaryrefslogtreecommitdiff
path: root/src/backends/cl/workloads/ClDepthToSpaceWorkload.hpp
diff options
context:
space:
mode:
authorTeresa Charlin <teresa.charlinreyes@arm.com>2022-01-19 15:55:37 +0000
committerTeresaARM <teresa.charlinreyes@arm.com>2022-01-26 20:30:55 +0000
commit588cbdfbd20dc524674db40c07cde3c4ffb85d11 (patch)
tree99fe40838290e08103ca668f20361033264e90e4 /src/backends/cl/workloads/ClDepthToSpaceWorkload.hpp
parent0d77ae103f88c7a6e6b09ef0bc2e0e47a59c4364 (diff)
downloadarmnn-588cbdfbd20dc524674db40c07cde3c4ffb85d11.tar.gz
IVGCVSW-6685-6686 Modify workloads to extend Neon/Cl BaseWorkload
* Neon workloads to extend NeonBaseWorkload instead of BaseWorkload * Cl workload to extend ClBaseWorkload instead of BaseWorkload Signed-off-by: Teresa Charlin <teresa.charlinreyes@arm.com> Change-Id: I8f39a31a89a8865ac4acf18573ab290d548d2864
Diffstat (limited to 'src/backends/cl/workloads/ClDepthToSpaceWorkload.hpp')
-rw-r--r--src/backends/cl/workloads/ClDepthToSpaceWorkload.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backends/cl/workloads/ClDepthToSpaceWorkload.hpp b/src/backends/cl/workloads/ClDepthToSpaceWorkload.hpp
index 014fbb6472..3599b60d8a 100644
--- a/src/backends/cl/workloads/ClDepthToSpaceWorkload.hpp
+++ b/src/backends/cl/workloads/ClDepthToSpaceWorkload.hpp
@@ -1,5 +1,5 @@
//
-// Copyright © 2019 Arm Ltd. All rights reserved.
+// Copyright © 2019 Arm Ltd and Contributors. All rights reserved.
// SPDX-License-Identifier: MIT
//
@@ -7,7 +7,7 @@
#include <armnn/Descriptors.hpp>
-#include <armnn/backends/Workload.hpp>
+#include "ClBaseWorkload.hpp"
#include <arm_compute/runtime/CL/functions/CLDepthToSpaceLayer.h>
@@ -18,7 +18,7 @@ arm_compute::Status ClDepthToSpaceWorkloadValidate(const TensorInfo& input,
const TensorInfo& output,
const DepthToSpaceDescriptor& descriptor);
-class ClDepthToSpaceWorkload : public BaseWorkload<DepthToSpaceQueueDescriptor>
+class ClDepthToSpaceWorkload : public ClBaseWorkload<DepthToSpaceQueueDescriptor>
{
public:
ClDepthToSpaceWorkload(const DepthToSpaceQueueDescriptor& descriptor,