aboutsummaryrefslogtreecommitdiff
path: root/src/armnnTfParser/test/LocalResponseNormalization.cpp
blob: 7a364daac2979c289573582ba49cbf1ea2325b0c (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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
//
// Copyright © 2017 Arm Ltd. All rights reserved.
// SPDX-License-Identifier: MIT
//

#include <boost/test/unit_test.hpp>
#include "armnnTfParser/ITfParser.hpp"
#include "ParserPrototxtFixture.hpp"

BOOST_AUTO_TEST_SUITE(TensorflowParser)

struct LocalResponseNormalizationBaseFixture : public armnnUtils::ParserPrototxtFixture<armnnTfParser::ITfParser>
{
    explicit LocalResponseNormalizationBaseFixture(float alpha, float beta, float bias)
    {
        std::string alphaString = std::to_string(alpha);
        std::string betaString = std::to_string(beta);
        std::string biasString = std::to_string(bias);

        m_Prototext = "node {"
            "  name: \"Placeholder\""
            "  op: \"Placeholder\""
            "  attr {"
            "    key: \"dtype\""
            "    value {"
            "      type: DT_FLOAT"
            "    }"
            "  }"
            "  attr {"
            "    key: \"shape\""
            "    value {"
            "      shape {"
            "        unknown_rank: true"
            "      }"
            "    }"
            "  }"
            "}"
            "node {"
            "  name: \"LRN\""
            "  op: \"LRN\""
            "  input: \"Placeholder\""
            "  attr {"
            "    key: \"T\""
            "    value {"
            "      type: DT_FLOAT"
            "    }"
            "  }"
            "  attr {"
            "    key: \"alpha\""
            "    value {"
            "      f: ";
        m_Prototext.append(alphaString);
        m_Prototext.append("\n"
            "    }"
            "  }"
            "  attr {"
            "    key: \"beta\""
            "    value {"
            "      f: ");
        m_Prototext.append(betaString);
        m_Prototext.append("\n"
            "    }"
            "  }"
            "  attr {"
            "    key: \"bias\""
            "    value {"
            "      f: ");
        m_Prototext.append(biasString);
        m_Prototext.append("\n"
            "    }"
            "  }"
            "  attr {"
            "    key: \"depth_radius\""
            "    value {"
            "      i: 1"
            "    }"
            "  }"
            "}");
    }
};


struct LocalResponseNormalizationFixtureSimple : public LocalResponseNormalizationBaseFixture
{
    explicit LocalResponseNormalizationFixtureSimple()
        : LocalResponseNormalizationBaseFixture(1.0f, 1.0f, 1.0f)
    {
        SetupSingleInputSingleOutput({ 2, 2, 2, 1 }, "Placeholder", "LRN");
    }
};
BOOST_FIXTURE_TEST_CASE(ParseSimpleLocalResponseNormalization, LocalResponseNormalizationFixtureSimple)
{
    RunTest<4>({ 1.0f, 2.0f, 3.0f, 4.0f, 5.0f, 6.0f, 7.0f, 8.0f },
               { 0.5f, 0.4f, 0.3f, 0.23529412f, 0.1923077f, 0.16216217f, 0.14f, 0.12307692f });
}


struct LocalResponseNormalizationFixture : public LocalResponseNormalizationBaseFixture
{
    explicit LocalResponseNormalizationFixture()
        : LocalResponseNormalizationBaseFixture(0.5f, 1.0f, 0.5f)
    {
        SetupSingleInputSingleOutput({1, 3, 3, 2}, "Placeholder", "LRN");
    }
};
BOOST_FIXTURE_TEST_CASE(ParseLocalResponseNormalization, LocalResponseNormalizationFixture)
{
    RunTest<4>({ 1.0f,  2.0f,  3.0f,  4.0f,  5.0f,  6.0f,
                 7.0f,  8.0f,  9.0f, 10.0f, 11.0f, 12.0f,
                13.0f, 14.0f, 15.0f, 16.0f, 17.0f, 18.0f},

               {0.333333340f, 0.66666670f, 0.230769250f, 0.307692320f, 0.161290320f, 0.19354838f,
                0.122807020f, 0.14035088f, 0.098901100f, 0.109890110f, 0.082706770f, 0.09022556f,
                0.071038246f, 0.07650273f, 0.062240668f, 0.066390045f, 0.055374593f, 0.05863192f});
}




BOOST_AUTO_TEST_SUITE_END()