ArmNN
 22.05.01
ClQuantizeWorkload.hpp
Go to the documentation of this file.
1 //
2 // Copyright © 2017 Arm Ltd and Contributors. All rights reserved.
3 // SPDX-License-Identifier: MIT
4 //
5 
6 #pragma once
7 
8 #include "ClBaseWorkload.hpp"
9 
10 #include <arm_compute/runtime/CL/functions/CLQuantizationLayer.h>
11 
12 namespace armnn
13 {
14 
15 arm_compute::Status ClQuantizeWorkloadValidate(const TensorInfo& input,
16  const TensorInfo& output);
17 
18 class ClQuantizeWorkload : public ClBaseWorkload<QuantizeQueueDescriptor>
19 {
20 public:
22  const WorkloadInfo& info,
23  const arm_compute::CLCompileContext& clCompileContext);
24  void Execute() const override;
25 
26 private:
27  mutable arm_compute::CLQuantizationLayer m_Layer;
28 };
29 
30 } //namespace armnn
ClQuantizeWorkload(const QuantizeQueueDescriptor &descriptor, const WorkloadInfo &info, const arm_compute::CLCompileContext &clCompileContext)
Copyright (c) 2021 ARM Limited and Contributors.
Status
enumeration
Definition: Types.hpp:42
Contains information about TensorInfos of a layer.
void Execute() const override
arm_compute::Status ClQuantizeWorkloadValidate(const TensorInfo &input, const TensorInfo &output)