blob: 3020b959cb838284b8f0052534506218ee7a903d [file] [log] [blame]
Moritz Pflanzeree493ae2017-07-05 10:52:21 +01001/*
2 * Copyright (c) 2017 ARM Limited.
3 *
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/TensorShape.h"
25#include "arm_compute/core/Types.h"
26#include "arm_compute/runtime/NEON/functions/NEActivationLayer.h"
27#include "arm_compute/runtime/Tensor.h"
28#include "arm_compute/runtime/TensorAllocator.h"
29#include "framework/Macros.h"
30#include "framework/datasets/Datasets.h"
Moritz Pflanzerd58cec02017-07-18 15:44:21 +010031#include "tests/NEON/Accessor.h"
Moritz Pflanzeree493ae2017-07-05 10:52:21 +010032#include "tests/TypePrinter.h"
SiCong Lid763cfb2017-08-15 12:38:51 +010033#include "tests/datasets_new/system_tests/alexnet/AlexNetActivationLayerDataset.h"
34#include "tests/datasets_new/system_tests/googlenet/inceptionv1/GoogLeNetInceptionV1ActivationLayerDataset.h"
SiCong Lif583fb72017-08-15 15:09:18 +010035#include "tests/datasets_new/system_tests/googlenet/inceptionv4/GoogLeNetInceptionV4ActivationLayerDataset.h"
SiCong Lid763cfb2017-08-15 12:38:51 +010036#include "tests/datasets_new/system_tests/lenet5/LeNet5ActivationLayerDataset.h"
37#include "tests/datasets_new/system_tests/squeezenet/SqueezeNetActivationLayerDataset.h"
38#include "tests/datasets_new/system_tests/yolo/v2/YOLOV2ActivationLayerDataset.h"
Moritz Pflanzeree493ae2017-07-05 10:52:21 +010039#include "tests/fixtures_new/ActivationLayerFixture.h"
40
41namespace arm_compute
42{
43namespace test
44{
Pablo Tello91654c42017-07-05 11:32:17 +010045namespace
46{
47#ifdef ARM_COMPUTE_ENABLE_FP16
SiCong Li1e5c1572017-07-27 17:58:52 +010048const auto data_types = framework::dataset::make("DataType", { DataType::F16, DataType::F32, DataType::QS8, DataType::QS16 });
Pablo Tello91654c42017-07-05 11:32:17 +010049#else /* ARM_COMPUTE_ENABLE_FP16 */
SiCong Li1e5c1572017-07-27 17:58:52 +010050const auto data_types = framework::dataset::make("DataType", { DataType::F32, DataType::QS8, DataType::QS16 });
Pablo Tello91654c42017-07-05 11:32:17 +010051#endif /* ARM_COMPUTE_ENABLE_FP16 */
52} // namespace
53
Moritz Pflanzerd58cec02017-07-18 15:44:21 +010054using NEActivationLayerFixture = ActivationLayerFixture<Tensor, NEActivationLayer, Accessor>;
Moritz Pflanzeree493ae2017-07-05 10:52:21 +010055
56TEST_SUITE(NEON)
57
Moritz Pflanzerd03b00a2017-07-17 13:50:12 +010058REGISTER_FIXTURE_DATA_TEST_CASE(AlexNetActivationLayer, NEActivationLayerFixture, framework::DatasetMode::ALL,
SiCong Li1e5c1572017-07-27 17:58:52 +010059 framework::dataset::combine(framework::dataset::combine(datasets::AlexNetActivationLayerDataset(), data_types),
60 framework::dataset::make("Batches", 1)));
Moritz Pflanzeree493ae2017-07-05 10:52:21 +010061
Moritz Pflanzerd03b00a2017-07-17 13:50:12 +010062REGISTER_FIXTURE_DATA_TEST_CASE(LeNet5ActivationLayer, NEActivationLayerFixture, framework::DatasetMode::ALL,
SiCong Li1e5c1572017-07-27 17:58:52 +010063 framework::dataset::combine(framework::dataset::combine(datasets::LeNet5ActivationLayerDataset(), data_types),
64 framework::dataset::make("Batches", 1)));
Moritz Pflanzeree493ae2017-07-05 10:52:21 +010065
SiCong Lid763cfb2017-08-15 12:38:51 +010066REGISTER_FIXTURE_DATA_TEST_CASE(GoogLeNetInceptionV1ActivationLayer, NEActivationLayerFixture, framework::DatasetMode::ALL,
67 framework::dataset::combine(framework::dataset::combine(datasets::GoogLeNetInceptionV1ActivationLayerDataset(), data_types),
SiCong Li1e5c1572017-07-27 17:58:52 +010068 framework::dataset::make("Batches", 1)));
Moritz Pflanzeree493ae2017-07-05 10:52:21 +010069
SiCong Lif583fb72017-08-15 15:09:18 +010070REGISTER_FIXTURE_DATA_TEST_CASE(GoogLeNetInceptionV4ActivationLayer, NEActivationLayerFixture, framework::DatasetMode::ALL,
71 framework::dataset::combine(framework::dataset::combine(datasets::GoogLeNetInceptionV4ActivationLayerDataset(), data_types),
72 framework::dataset::make("Batches", 1)));
73
SiCong Li0aea8902017-07-21 18:24:36 +010074REGISTER_FIXTURE_DATA_TEST_CASE(SqueezeNetActivationLayer, NEActivationLayerFixture, framework::DatasetMode::ALL,
SiCong Li1e5c1572017-07-27 17:58:52 +010075 framework::dataset::combine(framework::dataset::combine(datasets::SqueezeNetActivationLayerDataset(), data_types),
76 framework::dataset::make("Batches", 1)));
SiCong Li0aea8902017-07-21 18:24:36 +010077
SiCong Li1e5c1572017-07-27 17:58:52 +010078REGISTER_FIXTURE_DATA_TEST_CASE(YOLOV2ActivationLayer, NEActivationLayerFixture, framework::DatasetMode::ALL,
79 framework::dataset::combine(framework::dataset::combine(datasets::YOLOV2ActivationLayerDataset(), data_types),
80 framework::dataset::make("Batches", 1)));
81
82TEST_SUITE(NIGHTLY)
83REGISTER_FIXTURE_DATA_TEST_CASE(AlexNetActivationLayer, NEActivationLayerFixture, framework::DatasetMode::NIGHTLY,
84 framework::dataset::combine(framework::dataset::combine(datasets::AlexNetActivationLayerDataset(), data_types),
85 framework::dataset::make("Batches", { 4, 8 })));
86
87REGISTER_FIXTURE_DATA_TEST_CASE(LeNet5ActivationLayer, NEActivationLayerFixture, framework::DatasetMode::NIGHTLY,
88 framework::dataset::combine(framework::dataset::combine(datasets::LeNet5ActivationLayerDataset(), data_types),
89 framework::dataset::make("Batches", { 4, 8 })));
90
SiCong Lid763cfb2017-08-15 12:38:51 +010091REGISTER_FIXTURE_DATA_TEST_CASE(GoogLeNetInceptionV1ActivationLayer, NEActivationLayerFixture, framework::DatasetMode::NIGHTLY,
92 framework::dataset::combine(framework::dataset::combine(datasets::GoogLeNetInceptionV1ActivationLayerDataset(), data_types),
SiCong Li1e5c1572017-07-27 17:58:52 +010093 framework::dataset::make("Batches", { 4, 8 })));
94
SiCong Lif583fb72017-08-15 15:09:18 +010095REGISTER_FIXTURE_DATA_TEST_CASE(GoogLeNetInceptionV4ActivationLayer, NEActivationLayerFixture, framework::DatasetMode::NIGHTLY,
96 framework::dataset::combine(framework::dataset::combine(datasets::GoogLeNetInceptionV4ActivationLayerDataset(), data_types),
97 framework::dataset::make("Batches", { 4, 8 })));
98
SiCong Li1e5c1572017-07-27 17:58:52 +010099REGISTER_FIXTURE_DATA_TEST_CASE(SqueezeNetActivationLayer, NEActivationLayerFixture, framework::DatasetMode::NIGHTLY,
100 framework::dataset::combine(framework::dataset::combine(datasets::SqueezeNetActivationLayerDataset(), data_types),
101 framework::dataset::make("Batches", { 4, 8 })));
102
103REGISTER_FIXTURE_DATA_TEST_CASE(YOLOV2ActivationLayer, NEActivationLayerFixture, framework::DatasetMode::NIGHTLY,
104 framework::dataset::combine(framework::dataset::combine(datasets::YOLOV2ActivationLayerDataset(), data_types),
105 framework::dataset::make("Batches", { 4, 8 })));
106TEST_SUITE_END()
Moritz Pflanzeree493ae2017-07-05 10:52:21 +0100107TEST_SUITE_END()
108} // namespace test
109} // namespace arm_compute