ArmNN
 25.11
Loading...
Searching...
No Matches
QuantizeLayer.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 <Layer.hpp>
9
10namespace armnn {
11
12//Forward
13class IWorkload;
15
16class QuantizeLayer : public Layer
17{
18public:
19 virtual std::unique_ptr<IWorkload> CreateWorkload(const IWorkloadFactory& factory) const override;
20
21 Layer* Clone(Graph& graph) const override;
22
23 void ValidateTensorShapesFromInputs() override;
24
25 void ExecuteStrategy(IStrategy& strategy) const override;
26
27
28protected:
29 QuantizeLayer(const char* name);
30 ~QuantizeLayer() = default;
31
32};
33
34} //namespace armnn
Workload interface to enqueue a layer computation.
Definition IWorkload.hpp:14
Layer(unsigned int numInputSlots, unsigned int numOutputSlots, LayerType type, const char *name)
Definition Layer.cpp:260
friend class Graph
Definition Layer.hpp:382
void ExecuteStrategy(IStrategy &strategy) const override
Apply a visitor to this layer.
QuantizeLayer(const char *name)
void ValidateTensorShapesFromInputs() override
Layer * Clone(Graph &graph) const override
Creates a dynamically-allocated copy of this layer.
virtual std::unique_ptr< IWorkload > CreateWorkload(const IWorkloadFactory &factory) const override
~QuantizeLayer()=default
Copyright (c) 2021 ARM Limited and Contributors.