blob: 2e4641bfa58b88b8b00153147452184786e78401 [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"
Giorgio Arena9c42de92018-01-17 14:10:00 +000035#include "tests/datasets/system_tests/mobilenet/MobileNetActivationLayerDataset.h"
Moritz Pflanzera09de0c2017-09-01 20:41:12 +010036#include "tests/datasets/system_tests/squeezenet/SqueezeNetActivationLayerDataset.h"
37#include "tests/datasets/system_tests/vgg/vgg16/VGG16ActivationLayerDataset.h"
38#include "tests/datasets/system_tests/yolo/v2/YOLOV2ActivationLayerDataset.h"
39#include "tests/framework/Macros.h"
40#include "tests/framework/datasets/Datasets.h"
Anthony Barbier2a07e182017-08-04 18:20:27 +010041#include "utils/TypePrinter.h"
Moritz Pflanzeree493ae2017-07-05 10:52:21 +010042
43namespace arm_compute
44{
45namespace test
46{
SiCong Li1e5c1572017-07-27 17:58:52 +010047namespace
48{
Giorgio Arena9c42de92018-01-17 14:10:00 +000049const auto data_types = framework::dataset::make("DataType", { DataType::F16, DataType::F32, DataType::QS8, DataType::QS16 });
50const auto data_types_mobilenet = framework::dataset::make("DataType", { DataType::F16, DataType::F32, DataType::QS8, DataType::QS16, DataType::QASYMM8 });
SiCong Li1e5c1572017-07-27 17:58:52 +010051} // namespace
52
Moritz Pflanzerd58cec02017-07-18 15:44:21 +010053using CLActivationLayerFixture = ActivationLayerFixture<CLTensor, CLActivationLayer, CLAccessor>;
Moritz Pflanzeree493ae2017-07-05 10:52:21 +010054
55TEST_SUITE(CL)
56
Moritz Pflanzerd03b00a2017-07-17 13:50:12 +010057REGISTER_FIXTURE_DATA_TEST_CASE(AlexNetActivationLayer, CLActivationLayerFixture, framework::DatasetMode::ALL,
Moritz Pflanzeree493ae2017-07-05 10:52:21 +010058 framework::dataset::combine(framework::dataset::combine(datasets::AlexNetActivationLayerDataset(),
SiCong Li1e5c1572017-07-27 17:58:52 +010059 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, CLActivationLayerFixture, framework::DatasetMode::ALL,
Moritz Pflanzeree493ae2017-07-05 10:52:21 +010063 framework::dataset::combine(framework::dataset::combine(datasets::LeNet5ActivationLayerDataset(),
SiCong Li1e5c1572017-07-27 17:58:52 +010064 data_types),
65 framework::dataset::make("Batches", 1)));
Moritz Pflanzeree493ae2017-07-05 10:52:21 +010066
Giorgio Arena9c42de92018-01-17 14:10:00 +000067REGISTER_FIXTURE_DATA_TEST_CASE(MobileNetActivationLayer, CLActivationLayerFixture, framework::DatasetMode::ALL,
68 framework::dataset::combine(framework::dataset::combine(datasets::MobileNetActivationLayerDataset(),
69 data_types_mobilenet),
70 framework::dataset::make("Batches", 1)));
71
SiCong Lid763cfb2017-08-15 12:38:51 +010072REGISTER_FIXTURE_DATA_TEST_CASE(GoogLeNetInceptionV1ActivationLayer, CLActivationLayerFixture, framework::DatasetMode::ALL,
73 framework::dataset::combine(framework::dataset::combine(datasets::GoogLeNetInceptionV1ActivationLayerDataset(),
SiCong Li1e5c1572017-07-27 17:58:52 +010074 data_types),
75 framework::dataset::make("Batches", 1)));
Moritz Pflanzeree493ae2017-07-05 10:52:21 +010076
SiCong Lif583fb72017-08-15 15:09:18 +010077REGISTER_FIXTURE_DATA_TEST_CASE(GoogLeNetInceptionV4ActivationLayer, CLActivationLayerFixture, framework::DatasetMode::ALL,
78 framework::dataset::combine(framework::dataset::combine(datasets::GoogLeNetInceptionV4ActivationLayerDataset(),
79 data_types),
80 framework::dataset::make("Batches", 1)));
81
SiCong Li0aea8902017-07-21 18:24:36 +010082REGISTER_FIXTURE_DATA_TEST_CASE(SqueezeNetActivationLayer, CLActivationLayerFixture, framework::DatasetMode::ALL,
83 framework::dataset::combine(framework::dataset::combine(datasets::SqueezeNetActivationLayerDataset(),
SiCong Li1e5c1572017-07-27 17:58:52 +010084 data_types),
85 framework::dataset::make("Batches", 1)));
SiCong Li0aea8902017-07-21 18:24:36 +010086
SiCong Licc65bbe2017-08-18 11:58:21 +010087REGISTER_FIXTURE_DATA_TEST_CASE(VGG16ActivationLayer, CLActivationLayerFixture, framework::DatasetMode::ALL,
88 framework::dataset::combine(framework::dataset::combine(datasets::VGG16ActivationLayerDataset(),
89 data_types),
90 framework::dataset::make("Batches", 1)));
91
SiCong Li1e5c1572017-07-27 17:58:52 +010092REGISTER_FIXTURE_DATA_TEST_CASE(YOLOV2ActivationLayer, CLActivationLayerFixture, framework::DatasetMode::ALL,
93 framework::dataset::combine(framework::dataset::combine(datasets::YOLOV2ActivationLayerDataset(),
94 data_types),
95 framework::dataset::make("Batches", 1)));
96
97TEST_SUITE(NIGHTLY)
98REGISTER_FIXTURE_DATA_TEST_CASE(AlexNetActivationLayer, CLActivationLayerFixture, framework::DatasetMode::NIGHTLY,
99 framework::dataset::combine(framework::dataset::combine(datasets::AlexNetActivationLayerDataset(),
100 data_types),
101 framework::dataset::make("Batches", { 4, 8 })));
102
103REGISTER_FIXTURE_DATA_TEST_CASE(LeNet5ActivationLayer, CLActivationLayerFixture, framework::DatasetMode::NIGHTLY,
104 framework::dataset::combine(framework::dataset::combine(datasets::LeNet5ActivationLayerDataset(),
105 data_types),
106 framework::dataset::make("Batches", { 4, 8 })));
107
Giorgio Arena9c42de92018-01-17 14:10:00 +0000108REGISTER_FIXTURE_DATA_TEST_CASE(MobileNetActivationLayer, CLActivationLayerFixture, framework::DatasetMode::NIGHTLY,
109 framework::dataset::combine(framework::dataset::combine(datasets::MobileNetActivationLayerDataset(),
110 data_types_mobilenet),
111 framework::dataset::make("Batches", { 4, 8 })));
112
SiCong Lid763cfb2017-08-15 12:38:51 +0100113REGISTER_FIXTURE_DATA_TEST_CASE(GoogLeNetInceptionV1ActivationLayer, CLActivationLayerFixture, framework::DatasetMode::NIGHTLY,
114 framework::dataset::combine(framework::dataset::combine(datasets::GoogLeNetInceptionV1ActivationLayerDataset(),
SiCong Li1e5c1572017-07-27 17:58:52 +0100115 data_types),
116 framework::dataset::make("Batches", { 4, 8 })));
117
SiCong Lif583fb72017-08-15 15:09:18 +0100118REGISTER_FIXTURE_DATA_TEST_CASE(GoogLeNetInceptionV4ActivationLayer, CLActivationLayerFixture, framework::DatasetMode::NIGHTLY,
119 framework::dataset::combine(framework::dataset::combine(datasets::GoogLeNetInceptionV4ActivationLayerDataset(),
120 data_types),
121 framework::dataset::make("Batches", { 4, 8 })));
122
SiCong Li1e5c1572017-07-27 17:58:52 +0100123REGISTER_FIXTURE_DATA_TEST_CASE(SqueezeNetActivationLayer, CLActivationLayerFixture, framework::DatasetMode::NIGHTLY,
124 framework::dataset::combine(framework::dataset::combine(datasets::SqueezeNetActivationLayerDataset(),
125 data_types),
126 framework::dataset::make("Batches", { 4, 8 })));
127
SiCong Licc65bbe2017-08-18 11:58:21 +0100128REGISTER_FIXTURE_DATA_TEST_CASE(VGG16ActivationLayer, CLActivationLayerFixture, framework::DatasetMode::NIGHTLY,
129 framework::dataset::combine(framework::dataset::combine(datasets::VGG16ActivationLayerDataset(),
130 data_types),
131 framework::dataset::make("Batches", { 4, 8 })));
132
SiCong Li1e5c1572017-07-27 17:58:52 +0100133REGISTER_FIXTURE_DATA_TEST_CASE(YOLOV2ActivationLayer, CLActivationLayerFixture, framework::DatasetMode::NIGHTLY,
134 framework::dataset::combine(framework::dataset::combine(datasets::YOLOV2ActivationLayerDataset(),
135 data_types),
136 framework::dataset::make("Batches", { 4, 8 })));
SiCong Li1e5c1572017-07-27 17:58:52 +0100137TEST_SUITE_END()
Moritz Pflanzeree493ae2017-07-05 10:52:21 +0100138TEST_SUITE_END()
139} // namespace test
140} // namespace arm_compute