aboutsummaryrefslogtreecommitdiff
path: root/tests/benchmark/fixtures/ConvolutionFixture.h
blob: f355168ec117cc805594ab70c7880bc3ba2a2b6d (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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
/*
 * Copyright (c) 2018-2019 ARM Limited.
 *
 * SPDX-License-Identifier: MIT
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to
 * deal in the Software without restriction, including without limitation the
 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
 * sell copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in all
 * copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 */
#ifndef ARM_COMPUTE_TEST_CONVOLUTIONFIXTURE
#define ARM_COMPUTE_TEST_CONVOLUTIONFIXTURE

#include "arm_compute/core/TensorShape.h"
#include "arm_compute/core/Types.h"
#include "tests/Globals.h"
#include "tests/Utils.h"
#include "tests/framework/Fixture.h"

namespace arm_compute
{
namespace test
{
namespace benchmark
{
/** Parent fixture that can be used for NEON and CL */
template <typename TensorType, typename Function, typename Accessor>
class ConvolutionFixture : public framework::Fixture
{
public:
    template <typename...>
    void setup(TensorShape src_shape, DataType output_data_type, BorderMode border_mode, unsigned int width, unsigned int height, bool is_separable = false)
    {
        std::mt19937  gen(library->seed());
        const uint8_t constant_border_value = 0;

        // Generate random scale value between 1 and 255.
        std::uniform_int_distribution<uint8_t> distribution_scale(1, 255);
        const uint32_t                         scale = distribution_scale(gen);

        ARM_COMPUTE_ERROR_ON(3 != width && 5 != width && 7 != width && 9 != width);
        ARM_COMPUTE_ERROR_ON(3 != height && 5 != height && 7 != height && 9 != height);

        std::vector<int16_t> conv(width * height);

        _width  = width;
        _height = height;

        if(is_separable)
        {
            init_separable_conv(conv.data(), width, height, seed);
        }
        else
        {
            init_conv(conv.data(), width, height, seed);
        }

        // Create tensors
        src = create_tensor<TensorType>(src_shape, DataType::U8);
        dst = create_tensor<TensorType>(src_shape, output_data_type);

        // Configure function
        configure_target(src, dst, conv.data(), scale, border_mode, constant_border_value);

        // Allocate tensors
        src.allocator()->allocate();
        dst.allocator()->allocate();

        // Fill tensors
        library->fill_tensor_uniform(Accessor(src), 0);
        library->fill_tensor_uniform(Accessor(dst), 1);
    }

    void run()
    {
        convolution_func.run();
    }

    void sync()
    {
        sync_if_necessary<TensorType>();
        sync_tensor_if_necessary<TensorType>(dst);
    }

protected:
    virtual void configure_target(TensorType &src, TensorType &dst, const int16_t *conv, uint32_t scale,
                                  BorderMode border_mode, uint8_t border_value) = 0;

protected:
    unsigned int _width{};
    unsigned int _height{};
    Function     convolution_func{};

private:
    const std::random_device::result_type seed = 0;
    TensorType                            src{};
    TensorType                            dst{};
};

/** Child fixture used for square convolutions */
template <typename TensorType, typename Function, typename Accessor>
class ConvolutionSquareFixture : public ConvolutionFixture<TensorType, Function, Accessor>
{
public:
    template <typename...>
    void setup(TensorShape src_shape, DataType output_data_type, BorderMode border_mode, unsigned int width)
    {
        ConvolutionFixture<TensorType, Function, Accessor>::setup(src_shape, output_data_type, border_mode, width, width);
    }

protected:
    void configure_target(TensorType &src, TensorType &dst, const int16_t *conv, uint32_t scale,
                          BorderMode border_mode, uint8_t constant_border_value)
    {
        this->convolution_func.configure(&src, &dst, conv, scale, border_mode, constant_border_value);
    }
};

/** Child fixture used for rectangular convolutions */
template <typename TensorType, typename Function, typename Accessor>
class ConvolutionRectangleFixture : public ConvolutionFixture<TensorType, Function, Accessor>
{
public:
    template <typename...>
    void setup(TensorShape src_shape, DataType output_data_type, BorderMode border_mode, unsigned int width, unsigned int height)
    {
        ConvolutionFixture<TensorType, Function, Accessor>::setup(src_shape, output_data_type, border_mode, width, height);
    }

protected:
    void configure_target(TensorType &src, TensorType &dst, const int16_t *conv, uint32_t scale,
                          BorderMode border_mode, uint8_t constant_border_value)
    {
        this->convolution_func.configure(&src, &dst, conv, this->_width, this->_height, scale, border_mode, constant_border_value);
    }
};

/** Child fixture used for separable convolutions */
template <typename TensorType, typename Function, typename Accessor>
class ConvolutionSeperableFixture : public ConvolutionFixture<TensorType, Function, Accessor>
{
public:
    template <typename...>
    void setup(TensorShape src_shape, DataType output_data_type, BorderMode border_mode, unsigned int width)
    {
        ConvolutionFixture<TensorType, Function, Accessor>::setup(src_shape, output_data_type, border_mode, width, width, true);
    }

protected:
    void configure_target(TensorType &src, TensorType &dst, const int16_t *conv, uint32_t scale,
                          BorderMode border_mode, uint8_t constant_border_value)
    {
        this->convolution_func.configure(&src, &dst, conv, scale, border_mode, constant_border_value);
    }
};

} // namespace benchmark
} // namespace test
} // namespace arm_compute
#endif /* ARM_COMPUTE_TEST_CONVOLUTIONFIXTURE */