blob: 271d22f877f2fae80eb7f62b6fe69f2025620a16 [file] [log] [blame]
Georgios Pinitas58bce682020-11-13 11:38:58 +00001/*
Sheri Zhangac6499a2021-02-10 15:32:38 +00002 * Copyright (c) 2020-2021 Arm Limited.
Georgios Pinitas58bce682020-11-13 11:38:58 +00003 *
4 * SPDX-License-Identifier: MIT
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to
8 * deal in the Software without restriction, including without limitation the
9 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
10 * sell copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in all
14 * copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22 * SOFTWARE.
23 */
24#include "arm_compute/core/Types.h"
25#include "arm_compute/runtime/NEON/functions/NELogical.h"
26#include "arm_compute/runtime/Tensor.h"
27#include "tests/NEON/Accessor.h"
28#include "tests/datasets/ShapeDatasets.h"
29#include "tests/framework/Asserts.h"
30#include "tests/framework/Macros.h"
31#include "tests/validation/Validation.h"
32#include "tests/validation/fixtures/LogicalFixture.h"
33
34namespace arm_compute
35{
36namespace test
37{
38namespace validation
39{
40TEST_SUITE(NEON)
41
42TEST_SUITE(LogicalAnd)
43template <typename T>
Sang-Hoon Park75eea332020-11-13 13:44:13 +000044using NELogicalAndFixture = LogicalAndValidationFixture<Tensor, Accessor, NELogicalAnd, T>;
Georgios Pinitas58bce682020-11-13 11:38:58 +000045
46FIXTURE_DATA_TEST_CASE(RunSmall, NELogicalAndFixture<uint8_t>, framework::DatasetMode::ALL, zip(datasets::SmallShapes(), datasets::SmallShapes()))
47{
48 // Validate output
49 validate(Accessor(_target), _reference);
50}
51
52FIXTURE_DATA_TEST_CASE(RunSmallBroadcast, NELogicalAndFixture<uint8_t>, framework::DatasetMode::ALL, datasets::SmallShapesBroadcast())
53{
54 // Validate output
55 validate(Accessor(_target), _reference);
56}
57TEST_SUITE_END() // LogicalAnd
58
59TEST_SUITE(LogicalOr)
60template <typename T>
Sang-Hoon Park75eea332020-11-13 13:44:13 +000061using NELogicalOrFixture = LogicalOrValidationFixture<Tensor, Accessor, NELogicalOr, T>;
Georgios Pinitas58bce682020-11-13 11:38:58 +000062
63FIXTURE_DATA_TEST_CASE(RunSmall, NELogicalOrFixture<uint8_t>, framework::DatasetMode::ALL, zip(datasets::SmallShapes(), datasets::SmallShapes()))
64{
65 // Validate output
66 validate(Accessor(_target), _reference);
67}
68
69FIXTURE_DATA_TEST_CASE(RunSmallBroadcast, NELogicalOrFixture<uint8_t>, framework::DatasetMode::ALL, datasets::SmallShapesBroadcast())
70{
71 // Validate output
72 validate(Accessor(_target), _reference);
73}
74TEST_SUITE_END() // LogicalOr
75
76TEST_SUITE(LogicalNot)
77
78template <typename T>
79using NELogicalNotFixture = LogicalNotValidationFixture<Tensor, Accessor, NELogicalNot, T>;
80
81FIXTURE_DATA_TEST_CASE(RunSmall, NELogicalNotFixture<uint8_t>, framework::DatasetMode::ALL, combine(datasets::SmallShapes(), framework::dataset::make("DataType",
82 DataType::U8)))
83{
84 // Validate output
85 validate(Accessor(_target), _reference);
86}
87TEST_SUITE_END() // LogicalNot
Sheri Zhangac6499a2021-02-10 15:32:38 +000088TEST_SUITE_END() // Neon
Georgios Pinitas58bce682020-11-13 11:38:58 +000089} // namespace validation
90} // namespace test
Sheri Zhangac6499a2021-02-10 15:32:38 +000091} // namespace arm_compute