aboutsummaryrefslogtreecommitdiff
path: root/tests/validation/fixtures/LogicalFixture.h
blob: a4817cf78519e929e068a2893708907714d38694 (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
174
175
176
177
178
179
180
181
/*
 * Copyright (c) 2020 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_LOGICAL_FIXTURE
#define ARM_COMPUTE_TEST_LOGICAL_FIXTURE

#include "arm_compute/core/TensorShape.h"
#include "arm_compute/core/Types.h"
#include "tests/AssetsLibrary.h"
#include "tests/Globals.h"
#include "tests/IAccessor.h"
#include "tests/framework/Asserts.h"
#include "tests/framework/Fixture.h"
#include "tests/validation/reference/Logical.h"

namespace arm_compute
{
namespace test
{
namespace validation
{
template <typename TensorType, typename AccessorType, typename FunctionType, typename T>
class LogicalOperationValidationFixtureBase : public framework::Fixture
{
protected:
    template <typename U>
    void fill(U &&tensor, int i)
    {
        constexpr uint8_t zero              = 0;
        constexpr uint8_t one               = 0x1;
        constexpr uint8_t mixed             = 0xAA;
        constexpr uint8_t mixed_bitwise_not = ~(0xAA);

        library->fill_static_values(tensor, i == 0 ?
                                    std::vector<uint8_t> { zero, one, zero, one, mixed, zero, mixed } :
                                    std::vector<uint8_t> { zero, zero, one, one, zero, mixed, mixed_bitwise_not });
    }

    void allocate_tensor(std::initializer_list<TensorType *> tensors)
    {
        for(auto t : tensors)
        {
            ARM_COMPUTE_EXPECT(t->info()->is_resizable(), framework::LogLevel::ERRORS);
            t->allocator()->allocate();
            ARM_COMPUTE_EXPECT(!t->info()->is_resizable(), framework::LogLevel::ERRORS);
        }
    }

    TensorType      _target{};
    SimpleTensor<T> _reference{};
};

template <typename TensorType, typename AccessorType, typename FunctionType, reference::LogicalBinaryOperation Op, typename T>
class LogicalBinaryOperationValidationFixture : public LogicalOperationValidationFixtureBase<TensorType, AccessorType, FunctionType, T>
{
    using Parent = LogicalOperationValidationFixtureBase<TensorType, AccessorType, FunctionType, T>;

public:
    template <typename...>
    void setup(TensorShape shape0, TensorShape shape1)
    {
        Parent::_target    = compute_target(shape0, shape1);
        Parent::_reference = compute_reference(shape0, shape1);
    }

private:
    TensorType compute_target(const TensorShape &shape0, const TensorShape &shape1)
    {
        TensorType src0 = create_tensor<TensorType>(shape0, _data_type);
        TensorType src1 = create_tensor<TensorType>(shape1, _data_type);
        TensorType dst  = create_tensor<TensorType>(TensorShape::broadcast_shape(shape0, shape1), _data_type);

        FunctionType logical_binary_op;

        logical_binary_op.configure(&src0, &src1, &dst);

        Parent::allocate_tensor({ &src0, &src1, &dst });

        Parent::fill(AccessorType(src0), 0);
        Parent::fill(AccessorType(src1), 1);

        logical_binary_op.run();

        return dst;
    }

    SimpleTensor<T> compute_reference(const TensorShape &shape0, const TensorShape &shape1)
    {
        // Create reference
        SimpleTensor<T> src0{ shape0, _data_type };
        SimpleTensor<T> src1{ shape1, _data_type };

        // Fill reference
        Parent::fill(src0, 0);
        Parent::fill(src1, 1);

        switch(Op)
        {
            case reference::LogicalBinaryOperation::OR:
                return reference::logical_or<T>(src0, src1);
            case reference::LogicalBinaryOperation::AND:
                return reference::logical_and<T>(src0, src1);
            case reference::LogicalBinaryOperation::UNKNOWN:
            /* fall-through */
            default:
                ARM_COMPUTE_ASSERT_FAIL("unknown logical binary operator is given");
        }

        return SimpleTensor<T> {};
    }

    static constexpr auto _data_type{ DataType::U8 };
};

template <typename TensorType, typename AccessorType, typename FunctionType, typename T>
class LogicalNotValidationFixture : public LogicalOperationValidationFixtureBase<TensorType, AccessorType, FunctionType, T>
{
    using Parent = LogicalOperationValidationFixtureBase<TensorType, AccessorType, FunctionType, T>;

public:
    template <typename...>
    void setup(TensorShape shape, DataType data_type)
    {
        Parent::_target    = compute_target(shape, data_type);
        Parent::_reference = compute_reference(shape, data_type);
    }

private:
    TensorType compute_target(const TensorShape &shape, DataType data_type)
    {
        TensorType src = create_tensor<TensorType>(shape, data_type);
        TensorType dst = create_tensor<TensorType>(shape, data_type);

        FunctionType logical_not;

        logical_not.configure(&src, &dst);

        Parent::allocate_tensor({ &src, &dst });

        Parent::fill(AccessorType(src), 0);

        logical_not.run();

        return dst;
    }

    SimpleTensor<T> compute_reference(const TensorShape &shape, DataType data_type)
    {
        // Create reference
        SimpleTensor<T> src{ shape, data_type };

        // Fill reference
        Parent::fill(src, 0);

        return reference::logical_not<T>(src);
    }
};
} // namespace validation
} // namespace test
} // namespace arm_compute
#endif /* ARM_COMPUTE_TEST_LOGICAL_FIXTURE */