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

#include "GatherTestHelper.hpp"

#include <doctest/doctest.h>

namespace armnnDelegate
{

// Gather Operator
void GatherUint8Test()
{

    std::vector<int32_t> paramsShape{8};
    std::vector<int32_t> indicesShape{3};
    std::vector<int32_t> expectedOutputShape{3};

    int32_t              axis = 0;
    std::vector<uint8_t> paramsValues{1, 2, 3, 4, 5, 6, 7, 8};
    std::vector<int32_t> indicesValues{7, 6, 5};
    std::vector<uint8_t> expectedOutputValues{8, 7, 6};

    GatherTest<uint8_t>(::tflite::TensorType_UINT8,
                        paramsShape,
                        indicesShape,
                        expectedOutputShape,
                        axis,
                        paramsValues,
                        indicesValues,
                        expectedOutputValues);
}

void GatherFp32Test()
{
    std::vector<int32_t> paramsShape{8};
    std::vector<int32_t> indicesShape{3};
    std::vector<int32_t> expectedOutputShape{3};

    int32_t              axis = 0;
    std::vector<float>   paramsValues{1.1f, 2.2f, 3.3f, 4.4f, 5.5f, 6.6f, 7.7f, 8.8f};
    std::vector<int32_t> indicesValues{7, 6, 5};
    std::vector<float>   expectedOutputValues{8.8f, 7.7f, 6.6f};

    GatherTest<float>(::tflite::TensorType_FLOAT32,
                      paramsShape,
                      indicesShape,
                      expectedOutputShape,
                      axis,
                      paramsValues,
                      indicesValues,
                      expectedOutputValues);
}

// Gather Test Suite
TEST_SUITE("GatherTests")
{

TEST_CASE ("Gather_Uint8_Test")
{
    GatherUint8Test();
}

TEST_CASE ("Gather_Fp32_Test")
{
    GatherFp32Test();
}

}
// End of Gather Test Suite

} // namespace armnnDelegate