aboutsummaryrefslogtreecommitdiff
path: root/delegate/test/LogicalTest.cpp
blob: a9133cd1bf912b26e31ae7850951ed391468479a (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
//
// Copyright © 2020, 2023 Arm Ltd and Contributors. All rights reserved.
// SPDX-License-Identifier: MIT
//

#include "ElementwiseUnaryTestHelper.hpp"
#include "LogicalTestHelper.hpp"

#include <armnn_delegate.hpp>

#include <flatbuffers/flatbuffers.h>

#include <doctest/doctest.h>

namespace armnnDelegate
{

void LogicalBinaryAndBoolTest()
{
    std::vector<int32_t> input0Shape { 1, 2, 2 };
    std::vector<int32_t> input1Shape { 1, 2, 2 };
    std::vector<int32_t> expectedOutputShape { 1, 2, 2 };

    // Set input and output values
    std::vector<bool> input0Values { 0, 0, 1, 1 };
    std::vector<bool> input1Values { 0, 1, 0, 1 };
    std::vector<bool> expectedOutputValues { 0, 0, 0, 1 };

    LogicalBinaryTest(tflite::BuiltinOperator_LOGICAL_AND,
                      ::tflite::TensorType_BOOL,
                      input0Shape,
                      input1Shape,
                      expectedOutputShape,
                      input0Values,
                      input1Values,
                      expectedOutputValues);
}

void LogicalBinaryAndBroadcastTest()
{
    std::vector<int32_t> input0Shape { 1, 2, 2 };
    std::vector<int32_t> input1Shape { 1, 1, 1 };
    std::vector<int32_t> expectedOutputShape { 1, 2, 2 };

    std::vector<bool> input0Values { 0, 1, 0, 1 };
    std::vector<bool> input1Values { 1 };
    std::vector<bool> expectedOutputValues { 0, 1, 0, 1 };

    LogicalBinaryTest(tflite::BuiltinOperator_LOGICAL_AND,
                      ::tflite::TensorType_BOOL,
                      input0Shape,
                      input1Shape,
                      expectedOutputShape,
                      input0Values,
                      input1Values,
                      expectedOutputValues);
}

void LogicalBinaryOrBoolTest()
{
    std::vector<int32_t> input0Shape { 1, 2, 2 };
    std::vector<int32_t> input1Shape { 1, 2, 2 };
    std::vector<int32_t> expectedOutputShape { 1, 2, 2 };

    std::vector<bool> input0Values { 0, 0, 1, 1 };
    std::vector<bool> input1Values { 0, 1, 0, 1 };
    std::vector<bool> expectedOutputValues { 0, 1, 1, 1 };

    LogicalBinaryTest(tflite::BuiltinOperator_LOGICAL_OR,
                      ::tflite::TensorType_BOOL,
                      input0Shape,
                      input1Shape,
                      expectedOutputShape,
                      input0Values,
                      input1Values,
                      expectedOutputValues);
}

void LogicalBinaryOrBroadcastTest()
{
    std::vector<int32_t> input0Shape { 1, 2, 2 };
    std::vector<int32_t> input1Shape { 1, 1, 1 };
    std::vector<int32_t> expectedOutputShape { 1, 2, 2 };

    std::vector<bool> input0Values { 0, 1, 0, 1 };
    std::vector<bool> input1Values { 1 };
    std::vector<bool> expectedOutputValues { 1, 1, 1, 1 };

    LogicalBinaryTest(tflite::BuiltinOperator_LOGICAL_OR,
                      ::tflite::TensorType_BOOL,
                      input0Shape,
                      input1Shape,
                      expectedOutputShape,
                      input0Values,
                      input1Values,
                      expectedOutputValues);
}

// LogicalNot operator uses ElementwiseUnary unary layer and descriptor but is still classed as logical operator.
void LogicalNotBoolTest()
{
    std::vector<int32_t> inputShape { 1, 2, 2 };

    std::vector<bool> inputValues { 0, 1, 0, 1 };
    std::vector<bool> expectedOutputValues { 1, 0, 1, 0 };

    ElementwiseUnaryBoolTest(tflite::BuiltinOperator_LOGICAL_NOT,
                             inputShape,
                             inputValues,
                             expectedOutputValues);
}

TEST_SUITE("LogicalBinaryTests_Tests")
{

TEST_CASE ("LogicalBinary_AND_Bool_Test")
{
    LogicalBinaryAndBoolTest();
}

TEST_CASE ("LogicalBinary_AND_Broadcast_Test")
{
    LogicalBinaryAndBroadcastTest();
}

TEST_CASE ("Logical_NOT_Bool_Test")
{
    LogicalNotBoolTest();
}

TEST_CASE ("LogicalBinary_OR_Bool_Test")
{
    LogicalBinaryOrBoolTest();
}

TEST_CASE ("LogicalBinary_OR_Broadcast_Test")
{
    LogicalBinaryOrBroadcastTest();
}

}

} // namespace armnnDelegate