blob: 69db5a1974ff5b397ee249109cf475911210f2d1 [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{
Michalis Spyrou724079d2017-12-15 11:37:37 +000047namespace benchmark
48{
SiCong Li1e5c1572017-07-27 17:58:52 +010049namespace
50{
Vidhya Sudhan Loganathan0fc25452018-06-18 14:40:56 +010051const auto data_types = framework::dataset::make("DataType", { DataType::F16, DataType::F32 });
52const auto data_types_mobilenet = framework::dataset::make("DataType", { DataType::F16, DataType::F32, DataType::QASYMM8 });
SiCong Li1e5c1572017-07-27 17:58:52 +010053} // namespace
54
Moritz Pflanzerd58cec02017-07-18 15:44:21 +010055using CLActivationLayerFixture = ActivationLayerFixture<CLTensor, CLActivationLayer, CLAccessor>;
Moritz Pflanzeree493ae2017-07-05 10:52:21 +010056
57TEST_SUITE(CL)
58
Moritz Pflanzerd03b00a2017-07-17 13:50:12 +010059REGISTER_FIXTURE_DATA_TEST_CASE(AlexNetActivationLayer, CLActivationLayerFixture, framework::DatasetMode::ALL,
Moritz Pflanzeree493ae2017-07-05 10:52:21 +010060 framework::dataset::combine(framework::dataset::combine(datasets::AlexNetActivationLayerDataset(),
SiCong Li1e5c1572017-07-27 17:58:52 +010061 data_types),
62 framework::dataset::make("Batches", 1)));
Moritz Pflanzeree493ae2017-07-05 10:52:21 +010063
Moritz Pflanzerd03b00a2017-07-17 13:50:12 +010064REGISTER_FIXTURE_DATA_TEST_CASE(LeNet5ActivationLayer, CLActivationLayerFixture, framework::DatasetMode::ALL,
Moritz Pflanzeree493ae2017-07-05 10:52:21 +010065 framework::dataset::combine(framework::dataset::combine(datasets::LeNet5ActivationLayerDataset(),
SiCong Li1e5c1572017-07-27 17:58:52 +010066 data_types),
67 framework::dataset::make("Batches", 1)));
Moritz Pflanzeree493ae2017-07-05 10:52:21 +010068
Giorgio Arena9c42de92018-01-17 14:10:00 +000069REGISTER_FIXTURE_DATA_TEST_CASE(MobileNetActivationLayer, CLActivationLayerFixture, framework::DatasetMode::ALL,
70 framework::dataset::combine(framework::dataset::combine(datasets::MobileNetActivationLayerDataset(),
71 data_types_mobilenet),
72 framework::dataset::make("Batches", 1)));
73
SiCong Lid763cfb2017-08-15 12:38:51 +010074REGISTER_FIXTURE_DATA_TEST_CASE(GoogLeNetInceptionV1ActivationLayer, CLActivationLayerFixture, framework::DatasetMode::ALL,
75 framework::dataset::combine(framework::dataset::combine(datasets::GoogLeNetInceptionV1ActivationLayerDataset(),
SiCong Li1e5c1572017-07-27 17:58:52 +010076 data_types),
77 framework::dataset::make("Batches", 1)));
Moritz Pflanzeree493ae2017-07-05 10:52:21 +010078
SiCong Lif583fb72017-08-15 15:09:18 +010079REGISTER_FIXTURE_DATA_TEST_CASE(GoogLeNetInceptionV4ActivationLayer, CLActivationLayerFixture, framework::DatasetMode::ALL,
80 framework::dataset::combine(framework::dataset::combine(datasets::GoogLeNetInceptionV4ActivationLayerDataset(),
81 data_types),
82 framework::dataset::make("Batches", 1)));
83
SiCong Li0aea8902017-07-21 18:24:36 +010084REGISTER_FIXTURE_DATA_TEST_CASE(SqueezeNetActivationLayer, CLActivationLayerFixture, framework::DatasetMode::ALL,
85 framework::dataset::combine(framework::dataset::combine(datasets::SqueezeNetActivationLayerDataset(),
SiCong Li1e5c1572017-07-27 17:58:52 +010086 data_types),
87 framework::dataset::make("Batches", 1)));
SiCong Li0aea8902017-07-21 18:24:36 +010088
SiCong Licc65bbe2017-08-18 11:58:21 +010089REGISTER_FIXTURE_DATA_TEST_CASE(VGG16ActivationLayer, CLActivationLayerFixture, framework::DatasetMode::ALL,
90 framework::dataset::combine(framework::dataset::combine(datasets::VGG16ActivationLayerDataset(),
91 data_types),
92 framework::dataset::make("Batches", 1)));
93
SiCong Li1e5c1572017-07-27 17:58:52 +010094REGISTER_FIXTURE_DATA_TEST_CASE(YOLOV2ActivationLayer, CLActivationLayerFixture, framework::DatasetMode::ALL,
95 framework::dataset::combine(framework::dataset::combine(datasets::YOLOV2ActivationLayerDataset(),
96 data_types),
97 framework::dataset::make("Batches", 1)));
98
99TEST_SUITE(NIGHTLY)
100REGISTER_FIXTURE_DATA_TEST_CASE(AlexNetActivationLayer, CLActivationLayerFixture, framework::DatasetMode::NIGHTLY,
101 framework::dataset::combine(framework::dataset::combine(datasets::AlexNetActivationLayerDataset(),
102 data_types),
103 framework::dataset::make("Batches", { 4, 8 })));
104
105REGISTER_FIXTURE_DATA_TEST_CASE(LeNet5ActivationLayer, CLActivationLayerFixture, framework::DatasetMode::NIGHTLY,
106 framework::dataset::combine(framework::dataset::combine(datasets::LeNet5ActivationLayerDataset(),
107 data_types),
108 framework::dataset::make("Batches", { 4, 8 })));
109
Giorgio Arena9c42de92018-01-17 14:10:00 +0000110REGISTER_FIXTURE_DATA_TEST_CASE(MobileNetActivationLayer, CLActivationLayerFixture, framework::DatasetMode::NIGHTLY,
111 framework::dataset::combine(framework::dataset::combine(datasets::MobileNetActivationLayerDataset(),
112 data_types_mobilenet),
113 framework::dataset::make("Batches", { 4, 8 })));
114
SiCong Lid763cfb2017-08-15 12:38:51 +0100115REGISTER_FIXTURE_DATA_TEST_CASE(GoogLeNetInceptionV1ActivationLayer, CLActivationLayerFixture, framework::DatasetMode::NIGHTLY,
116 framework::dataset::combine(framework::dataset::combine(datasets::GoogLeNetInceptionV1ActivationLayerDataset(),
SiCong Li1e5c1572017-07-27 17:58:52 +0100117 data_types),
118 framework::dataset::make("Batches", { 4, 8 })));
119
SiCong Lif583fb72017-08-15 15:09:18 +0100120REGISTER_FIXTURE_DATA_TEST_CASE(GoogLeNetInceptionV4ActivationLayer, CLActivationLayerFixture, framework::DatasetMode::NIGHTLY,
121 framework::dataset::combine(framework::dataset::combine(datasets::GoogLeNetInceptionV4ActivationLayerDataset(),
122 data_types),
123 framework::dataset::make("Batches", { 4, 8 })));
124
SiCong Li1e5c1572017-07-27 17:58:52 +0100125REGISTER_FIXTURE_DATA_TEST_CASE(SqueezeNetActivationLayer, CLActivationLayerFixture, framework::DatasetMode::NIGHTLY,
126 framework::dataset::combine(framework::dataset::combine(datasets::SqueezeNetActivationLayerDataset(),
127 data_types),
128 framework::dataset::make("Batches", { 4, 8 })));
129
SiCong Licc65bbe2017-08-18 11:58:21 +0100130REGISTER_FIXTURE_DATA_TEST_CASE(VGG16ActivationLayer, CLActivationLayerFixture, framework::DatasetMode::NIGHTLY,
131 framework::dataset::combine(framework::dataset::combine(datasets::VGG16ActivationLayerDataset(),
132 data_types),
133 framework::dataset::make("Batches", { 4, 8 })));
134
SiCong Li1e5c1572017-07-27 17:58:52 +0100135REGISTER_FIXTURE_DATA_TEST_CASE(YOLOV2ActivationLayer, CLActivationLayerFixture, framework::DatasetMode::NIGHTLY,
136 framework::dataset::combine(framework::dataset::combine(datasets::YOLOV2ActivationLayerDataset(),
137 data_types),
138 framework::dataset::make("Batches", { 4, 8 })));
SiCong Li1e5c1572017-07-27 17:58:52 +0100139TEST_SUITE_END()
Moritz Pflanzeree493ae2017-07-05 10:52:21 +0100140TEST_SUITE_END()
Michalis Spyrou724079d2017-12-15 11:37:37 +0000141} // namespace benchmark
Moritz Pflanzeree493ae2017-07-05 10:52:21 +0100142} // namespace test
143} // namespace arm_compute