ArmNN
 25.02
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
RefQuantizeWorkload.hpp
Go to the documentation of this file.
1 //
2 // Copyright © 2022, 2024 Arm Ltd and Contributors. All rights reserved.
3 // SPDX-License-Identifier: MIT
4 //
5 
6 #pragma once
7 
8 #include "RefBaseWorkload.hpp"
10 #include "Decoders.hpp"
11 #include "Encoders.hpp"
12 
13 namespace armnn {
14 
15 class RefQuantizeWorkload : public RefBaseWorkload<QuantizeQueueDescriptor>
16 {
17 public:
19  void Execute() const override;
20 
21 private:
22  void Execute(std::vector<ITensorHandle*> inputs, std::vector<ITensorHandle*> outputs) const;
23 
24  size_t m_NumElements;
25 };
26 
27 } //namespace armnn
RefQuantizeWorkload(const QuantizeQueueDescriptor &descriptor, const WorkloadInfo &info)
void Execute() const override
Copyright (c) 2021 ARM Limited and Contributors.
Contains information about TensorInfos of a layer.