ArmNN
 20.05
ClL2NormalizationFloatWorkload.hpp
Go to the documentation of this file.
1 //
2 // Copyright © 2017 Arm Ltd. All rights reserved.
3 // SPDX-License-Identifier: MIT
4 //
5 
6 #pragma once
7 
9 
10 #include <arm_compute/runtime/CL/functions/CLL2NormalizeLayer.h>
11 
12 namespace armnn
13 {
14 
16  const TensorInfo& output,
17  const L2NormalizationDescriptor& descriptor);
18 
19 class ClL2NormalizationFloatWorkload : public FloatWorkload<L2NormalizationQueueDescriptor>
20 {
21 public:
23 
24  void Execute() const override;
25 
26 private:
27  // Purposely not a CLL2Normalize function. See constructor.
28  mutable arm_compute::CLL2NormalizeLayer m_Layer;
29 };
30 
31 } //namespace armnn
32 
33 
34 
35 
arm_compute::Status ClL2NormalizationWorkloadValidate(const TensorInfo &input, const TensorInfo &output, const L2NormalizationDescriptor &descriptor)
Copyright (c) 2020 ARM Limited.
Status
enumeration
Definition: Types.hpp:26
Contains information about inputs and outputs to a layer.
ClL2NormalizationFloatWorkload(const L2NormalizationQueueDescriptor &descriptor, const WorkloadInfo &info)