2 // Copyright © 2017 Arm Ltd. All rights reserved.
3 // SPDX-License-Identifier: MIT
8 #include <backendsCommon/Workload.hpp>
10 #include <arm_compute/runtime/CL/CLFunctions.h>
15 arm_compute::Status ClMeanValidate(const TensorInfo& input,
16 const TensorInfo& output,
17 const MeanDescriptor& desc);
19 class ClMeanWorkload : public BaseWorkload<MeanQueueDescriptor>
22 ClMeanWorkload(const MeanQueueDescriptor& descriptor, const WorkloadInfo& info);
24 void Execute() const override;
27 // Not using CLMeanStdDev, as 4D input tensor support for Mean has been added to a new function called CLReduceMean.
28 mutable arm_compute::CLReduceMean m_Layer;