blob: 6412bd9680e12660b84d47791452993bb80bf125 [file] [log] [blame]
Moritz Pflanzeree493ae2017-07-05 10:52:21 +01001/*
Georgios Pinitas51a67302018-01-17 12:55:26 +00002 * Copyright (c) 2017-2018 ARM Limited.
Moritz Pflanzeree493ae2017-07-05 10:52:21 +01003 *
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/CL/CLTensor.h"
27#include "arm_compute/runtime/CL/CLTensorAllocator.h"
28#include "arm_compute/runtime/CL/functions/CLActivationLayer.h"
Moritz Pflanzeree493ae2017-07-05 10:52:21 +010029#include "tests/CL/CLAccessor.h"
Moritz Pflanzera09de0c2017-09-01 20:41:12 +010030#include "tests/benchmark/fixtures/ActivationLayerFixture.h"
31#include "tests/datasets/system_tests/alexnet/AlexNetActivationLayerDataset.h"
32#include "tests/datasets/system_tests/googlenet/inceptionv1/GoogLeNetInceptionV1ActivationLayerDataset.h"
33#include "tests/datasets/system_tests/googlenet/inceptionv4/GoogLeNetInceptionV4ActivationLayerDataset.h"
34#include "tests/datasets/system_tests/lenet5/LeNet5ActivationLayerDataset.h"
35#include "tests/datasets/system_tests/squeezenet/SqueezeNetActivationLayerDataset.h"
36#include "tests/datasets/system_tests/vgg/vgg16/VGG16ActivationLayerDataset.h"
37#include "tests/datasets/system_tests/yolo/v2/YOLOV2ActivationLayerDataset.h"
38#include "tests/framework/Macros.h"
39#include "tests/framework/datasets/Datasets.h"
Anthony Barbier2a07e182017-08-04 18:20:27 +010040#include "utils/TypePrinter.h"
Moritz Pflanzeree493ae2017-07-05 10:52:21 +010041
42namespace arm_compute
43{
44namespace test
45{
SiCong Li1e5c1572017-07-27 17:58:52 +010046namespace
47{
Georgios Pinitas51a67302018-01-17 12:55:26 +000048const auto data_types = framework::dataset::make("DataType", { DataType::F16, DataType::F32 });
SiCong Li1e5c1572017-07-27 17:58:52 +010049} // namespace
50
Moritz Pflanzerd58cec02017-07-18 15:44:21 +010051using CLActivationLayerFixture = ActivationLayerFixture<CLTensor, CLActivationLayer, CLAccessor>;
Moritz Pflanzeree493ae2017-07-05 10:52:21 +010052
53TEST_SUITE(CL)
54
Moritz Pflanzerd03b00a2017-07-17 13:50:12 +010055REGISTER_FIXTURE_DATA_TEST_CASE(AlexNetActivationLayer, CLActivationLayerFixture, framework::DatasetMode::ALL,
Moritz Pflanzeree493ae2017-07-05 10:52:21 +010056 framework::dataset::combine(framework::dataset::combine(datasets::AlexNetActivationLayerDataset(),
SiCong Li1e5c1572017-07-27 17:58:52 +010057 data_types),
58 framework::dataset::make("Batches", 1)));
Moritz Pflanzeree493ae2017-07-05 10:52:21 +010059
Moritz Pflanzerd03b00a2017-07-17 13:50:12 +010060REGISTER_FIXTURE_DATA_TEST_CASE(LeNet5ActivationLayer, CLActivationLayerFixture, framework::DatasetMode::ALL,
Moritz Pflanzeree493ae2017-07-05 10:52:21 +010061 framework::dataset::combine(framework::dataset::combine(datasets::LeNet5ActivationLayerDataset(),
SiCong Li1e5c1572017-07-27 17:58:52 +010062 data_types),
63 framework::dataset::make("Batches", 1)));
Moritz Pflanzeree493ae2017-07-05 10:52:21 +010064
SiCong Lid763cfb2017-08-15 12:38:51 +010065REGISTER_FIXTURE_DATA_TEST_CASE(GoogLeNetInceptionV1ActivationLayer, CLActivationLayerFixture, framework::DatasetMode::ALL,
66 framework::dataset::combine(framework::dataset::combine(datasets::GoogLeNetInceptionV1ActivationLayerDataset(),
SiCong Li1e5c1572017-07-27 17:58:52 +010067 data_types),
68 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, CLActivationLayerFixture, framework::DatasetMode::ALL,
71 framework::dataset::combine(framework::dataset::combine(datasets::GoogLeNetInceptionV4ActivationLayerDataset(),
72 data_types),
73 framework::dataset::make("Batches", 1)));
74
SiCong Li0aea8902017-07-21 18:24:36 +010075REGISTER_FIXTURE_DATA_TEST_CASE(SqueezeNetActivationLayer, CLActivationLayerFixture, framework::DatasetMode::ALL,
76 framework::dataset::combine(framework::dataset::combine(datasets::SqueezeNetActivationLayerDataset(),
SiCong Li1e5c1572017-07-27 17:58:52 +010077 data_types),
78 framework::dataset::make("Batches", 1)));
SiCong Li0aea8902017-07-21 18:24:36 +010079
SiCong Licc65bbe2017-08-18 11:58:21 +010080REGISTER_FIXTURE_DATA_TEST_CASE(VGG16ActivationLayer, CLActivationLayerFixture, framework::DatasetMode::ALL,
81 framework::dataset::combine(framework::dataset::combine(datasets::VGG16ActivationLayerDataset(),
82 data_types),
83 framework::dataset::make("Batches", 1)));
84
SiCong Li1e5c1572017-07-27 17:58:52 +010085REGISTER_FIXTURE_DATA_TEST_CASE(YOLOV2ActivationLayer, CLActivationLayerFixture, framework::DatasetMode::ALL,
86 framework::dataset::combine(framework::dataset::combine(datasets::YOLOV2ActivationLayerDataset(),
87 data_types),
88 framework::dataset::make("Batches", 1)));
89
90TEST_SUITE(NIGHTLY)
91REGISTER_FIXTURE_DATA_TEST_CASE(AlexNetActivationLayer, CLActivationLayerFixture, framework::DatasetMode::NIGHTLY,
92 framework::dataset::combine(framework::dataset::combine(datasets::AlexNetActivationLayerDataset(),
93 data_types),
94 framework::dataset::make("Batches", { 4, 8 })));
95
96REGISTER_FIXTURE_DATA_TEST_CASE(LeNet5ActivationLayer, CLActivationLayerFixture, framework::DatasetMode::NIGHTLY,
97 framework::dataset::combine(framework::dataset::combine(datasets::LeNet5ActivationLayerDataset(),
98 data_types),
99 framework::dataset::make("Batches", { 4, 8 })));
100
SiCong Lid763cfb2017-08-15 12:38:51 +0100101REGISTER_FIXTURE_DATA_TEST_CASE(GoogLeNetInceptionV1ActivationLayer, CLActivationLayerFixture, framework::DatasetMode::NIGHTLY,
102 framework::dataset::combine(framework::dataset::combine(datasets::GoogLeNetInceptionV1ActivationLayerDataset(),
SiCong Li1e5c1572017-07-27 17:58:52 +0100103 data_types),
104 framework::dataset::make("Batches", { 4, 8 })));
105
SiCong Lif583fb72017-08-15 15:09:18 +0100106REGISTER_FIXTURE_DATA_TEST_CASE(GoogLeNetInceptionV4ActivationLayer, CLActivationLayerFixture, framework::DatasetMode::NIGHTLY,
107 framework::dataset::combine(framework::dataset::combine(datasets::GoogLeNetInceptionV4ActivationLayerDataset(),
108 data_types),
109 framework::dataset::make("Batches", { 4, 8 })));
110
SiCong Li1e5c1572017-07-27 17:58:52 +0100111REGISTER_FIXTURE_DATA_TEST_CASE(SqueezeNetActivationLayer, CLActivationLayerFixture, framework::DatasetMode::NIGHTLY,
112 framework::dataset::combine(framework::dataset::combine(datasets::SqueezeNetActivationLayerDataset(),
113 data_types),
114 framework::dataset::make("Batches", { 4, 8 })));
115
SiCong Licc65bbe2017-08-18 11:58:21 +0100116REGISTER_FIXTURE_DATA_TEST_CASE(VGG16ActivationLayer, CLActivationLayerFixture, framework::DatasetMode::NIGHTLY,
117 framework::dataset::combine(framework::dataset::combine(datasets::VGG16ActivationLayerDataset(),
118 data_types),
119 framework::dataset::make("Batches", { 4, 8 })));
120
SiCong Li1e5c1572017-07-27 17:58:52 +0100121REGISTER_FIXTURE_DATA_TEST_CASE(YOLOV2ActivationLayer, CLActivationLayerFixture, framework::DatasetMode::NIGHTLY,
122 framework::dataset::combine(framework::dataset::combine(datasets::YOLOV2ActivationLayerDataset(),
123 data_types),
124 framework::dataset::make("Batches", { 4, 8 })));
SiCong Li1e5c1572017-07-27 17:58:52 +0100125TEST_SUITE_END()
Moritz Pflanzeree493ae2017-07-05 10:52:21 +0100126TEST_SUITE_END()
127} // namespace test
128} // namespace arm_compute