aboutsummaryrefslogtreecommitdiff
path: root/src/armnn/OverrideInputRangeVisitor.hpp
blob: 196a3aab1db6d32912048a3adba6c3938e4c676d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
//
// Copyright © 2017 Arm Ltd. All rights reserved.
// SPDX-License-Identifier: MIT
//

#pragma once

#include "NetworkQuantizer.hpp"
#include "armnn/LayerVisitorBase.hpp"
#include "RangeTracker.hpp"

#include <unordered_map>

namespace armnn
{
class OverrideInputRangeStrategy : public IStrategy
{
private:
    using MinMaxRange  = RangeTracker::MinMaxRange;
public :
    OverrideInputRangeStrategy(RangeTracker& ranges,
                               LayerBindingId layerId,
                               const MinMaxRange& minMaxRange)
                               : m_Ranges(ranges)
            , m_LayerId(layerId)
            , m_MinMaxRange(minMaxRange){}

    ~OverrideInputRangeStrategy() = default;

    void ExecuteStrategy(const armnn::IConnectableLayer* layer,
                         const BaseDescriptor& descriptor,
                         const std::vector<armnn::ConstTensor>& constants,
                         const char* name,
                         const armnn::LayerBindingId id) override
    {
        IgnoreUnused(name, constants, id, descriptor);

        switch (layer->GetType())
        {
            case armnn::LayerType::Input :
            {
                if (m_LayerId == id)
                {
                    m_Ranges.SetRange(layer, 0, m_MinMaxRange.first, m_MinMaxRange.second);
                }
                break;
            }
            default:
            {
                std::cout << "dont know this one" << std::endl;
            }
        }
    }

private:
    /// Mapping from a layer Guid to an array of ranges for outputs
    RangeTracker& m_Ranges;

    /// The id of the input layer of which to override the input range
    LayerBindingId m_LayerId;

    /// The new input range to be applied to the input layer
    MinMaxRange m_MinMaxRange;
};



/// Visitor object for overriding the input range of the quantized input layers in a network
class OverrideInputRangeVisitor : public LayerVisitorBase<VisitorNoThrowPolicy>
{
private:
    using MinMaxRange  = RangeTracker::MinMaxRange;

public:
    OverrideInputRangeVisitor(RangeTracker& ranges,
                              LayerBindingId layerId,
                              const MinMaxRange& minMaxRange);
    ~OverrideInputRangeVisitor() = default;

    void VisitInputLayer(const IConnectableLayer* layer, LayerBindingId id, const char* name = nullptr) override;

private:
    /// Mapping from a layer Guid to an array of ranges for outputs
    RangeTracker& m_Ranges;

    /// The id of the input layer of which to override the input range
    LayerBindingId m_LayerId;

    /// The new input range to be applied to the input layer
    MinMaxRange m_MinMaxRange;
};

} // namespace armnn