blob: 8b0aadb1aeebd531f0a5176930ac0089a6654e66 [file] [log] [blame]
Sadik Armagana2747482021-02-09 10:28:54 +00001//
2// Copyright © 2021 Arm Ltd and Contributors. All rights reserved.
3// SPDX-License-Identifier: MIT
4//
5
6#pragma once
7
8#include <backendsCommon/Workload.hpp>
9
10#include <arm_compute/runtime/CL/functions/CLReductionOperation.h>
11
12namespace armnn
13{
14
15arm_compute::Status ClReduceWorkloadValidate(const TensorInfo& input,
16 const TensorInfo& output,
Keith Davisbcd860a2021-08-05 14:20:33 +010017 const ReduceDescriptor& descriptor);
Sadik Armagana2747482021-02-09 10:28:54 +000018
19class ClReduceWorkload : public BaseWorkload<ReduceQueueDescriptor>
20{
21public:
22 ClReduceWorkload(const ReduceQueueDescriptor& descriptor, const WorkloadInfo& info);
23
24 void Execute() const override;
25
26private:
27 mutable arm_compute::CLReductionOperation m_Layer;
28};
29
30} //namespace armnn