blob: 1c4ea214b7699bf763acdede3b33a3d5f5d42f03 [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/NEON/functions/NEActivationLayer.h"
27#include "arm_compute/runtime/Tensor.h"
28#include "arm_compute/runtime/TensorAllocator.h"
Moritz Pflanzerd58cec02017-07-18 15:44:21 +010029#include "tests/NEON/Accessor.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{
Pablo Tello91654c42017-07-05 11:32:17 +010049namespace
50{
Ioan-Cristian Szabo5edbd1c2017-11-13 13:34:08 +000051#ifdef __ARM_FEATURE_FP16_VECTOR_ARITHMETIC
Vidhya Sudhan Loganathan0fc25452018-06-18 14:40:56 +010052const auto data_types = framework::dataset::make("DataType", { DataType::F16, DataType::F32 });
53const auto data_types_mobilenet = framework::dataset::make("DataType", { DataType::F16, DataType::F32, DataType::QASYMM8 });
Ioan-Cristian Szabo5edbd1c2017-11-13 13:34:08 +000054#else /* __ARM_FEATURE_FP16_VECTOR_ARITHMETIC */
Vidhya Sudhan Loganathan0fc25452018-06-18 14:40:56 +010055const auto data_types = framework::dataset::make("DataType", { DataType::F32 });
56const auto data_types_mobilenet = framework::dataset::make("DataType", { DataType::F32, DataType::QASYMM8 });
Ioan-Cristian Szabo5edbd1c2017-11-13 13:34:08 +000057#endif /* __ARM_FEATURE_FP16_VECTOR_ARITHMETIC */
Pablo Tello91654c42017-07-05 11:32:17 +010058} // namespace
59
Moritz Pflanzerd58cec02017-07-18 15:44:21 +010060using NEActivationLayerFixture = ActivationLayerFixture<Tensor, NEActivationLayer, Accessor>;
Moritz Pflanzeree493ae2017-07-05 10:52:21 +010061
62TEST_SUITE(NEON)
63
Moritz Pflanzerd03b00a2017-07-17 13:50:12 +010064REGISTER_FIXTURE_DATA_TEST_CASE(AlexNetActivationLayer, NEActivationLayerFixture, framework::DatasetMode::ALL,
SiCong Li1e5c1572017-07-27 17:58:52 +010065 framework::dataset::combine(framework::dataset::combine(datasets::AlexNetActivationLayerDataset(), data_types),
66 framework::dataset::make("Batches", 1)));
Moritz Pflanzeree493ae2017-07-05 10:52:21 +010067
Moritz Pflanzerd03b00a2017-07-17 13:50:12 +010068REGISTER_FIXTURE_DATA_TEST_CASE(LeNet5ActivationLayer, NEActivationLayerFixture, framework::DatasetMode::ALL,
SiCong Li1e5c1572017-07-27 17:58:52 +010069 framework::dataset::combine(framework::dataset::combine(datasets::LeNet5ActivationLayerDataset(), data_types),
70 framework::dataset::make("Batches", 1)));
Moritz Pflanzeree493ae2017-07-05 10:52:21 +010071
Giorgio Arena9c42de92018-01-17 14:10:00 +000072REGISTER_FIXTURE_DATA_TEST_CASE(MobileNetActivationLayer, NEActivationLayerFixture, framework::DatasetMode::ALL,
73 framework::dataset::combine(framework::dataset::combine(datasets::MobileNetActivationLayerDataset(), data_types_mobilenet),
74 framework::dataset::make("Batches", 1)));
75
SiCong Lid763cfb2017-08-15 12:38:51 +010076REGISTER_FIXTURE_DATA_TEST_CASE(GoogLeNetInceptionV1ActivationLayer, NEActivationLayerFixture, framework::DatasetMode::ALL,
77 framework::dataset::combine(framework::dataset::combine(datasets::GoogLeNetInceptionV1ActivationLayerDataset(), data_types),
SiCong Li1e5c1572017-07-27 17:58:52 +010078 framework::dataset::make("Batches", 1)));
Moritz Pflanzeree493ae2017-07-05 10:52:21 +010079
SiCong Lif583fb72017-08-15 15:09:18 +010080REGISTER_FIXTURE_DATA_TEST_CASE(GoogLeNetInceptionV4ActivationLayer, NEActivationLayerFixture, framework::DatasetMode::ALL,
81 framework::dataset::combine(framework::dataset::combine(datasets::GoogLeNetInceptionV4ActivationLayerDataset(), data_types),
82 framework::dataset::make("Batches", 1)));
83
SiCong Li0aea8902017-07-21 18:24:36 +010084REGISTER_FIXTURE_DATA_TEST_CASE(SqueezeNetActivationLayer, NEActivationLayerFixture, framework::DatasetMode::ALL,
SiCong Li1e5c1572017-07-27 17:58:52 +010085 framework::dataset::combine(framework::dataset::combine(datasets::SqueezeNetActivationLayerDataset(), data_types),
86 framework::dataset::make("Batches", 1)));
SiCong Li0aea8902017-07-21 18:24:36 +010087
SiCong Licc65bbe2017-08-18 11:58:21 +010088REGISTER_FIXTURE_DATA_TEST_CASE(VGG16ActivationLayer, NEActivationLayerFixture, framework::DatasetMode::ALL,
89 framework::dataset::combine(framework::dataset::combine(datasets::VGG16ActivationLayerDataset(), data_types),
90 framework::dataset::make("Batches", 1)));
91
SiCong Li1e5c1572017-07-27 17:58:52 +010092REGISTER_FIXTURE_DATA_TEST_CASE(YOLOV2ActivationLayer, NEActivationLayerFixture, framework::DatasetMode::ALL,
93 framework::dataset::combine(framework::dataset::combine(datasets::YOLOV2ActivationLayerDataset(), data_types),
94 framework::dataset::make("Batches", 1)));
95
96TEST_SUITE(NIGHTLY)
97REGISTER_FIXTURE_DATA_TEST_CASE(AlexNetActivationLayer, NEActivationLayerFixture, framework::DatasetMode::NIGHTLY,
98 framework::dataset::combine(framework::dataset::combine(datasets::AlexNetActivationLayerDataset(), data_types),
99 framework::dataset::make("Batches", { 4, 8 })));
100
101REGISTER_FIXTURE_DATA_TEST_CASE(LeNet5ActivationLayer, NEActivationLayerFixture, framework::DatasetMode::NIGHTLY,
102 framework::dataset::combine(framework::dataset::combine(datasets::LeNet5ActivationLayerDataset(), data_types),
103 framework::dataset::make("Batches", { 4, 8 })));
104
Giorgio Arena9c42de92018-01-17 14:10:00 +0000105REGISTER_FIXTURE_DATA_TEST_CASE(MobileNetActivationLayer, NEActivationLayerFixture, framework::DatasetMode::NIGHTLY,
106 framework::dataset::combine(framework::dataset::combine(datasets::MobileNetActivationLayerDataset(), data_types_mobilenet),
107 framework::dataset::make("Batches", { 4, 8 })));
108
SiCong Lid763cfb2017-08-15 12:38:51 +0100109REGISTER_FIXTURE_DATA_TEST_CASE(GoogLeNetInceptionV1ActivationLayer, NEActivationLayerFixture, framework::DatasetMode::NIGHTLY,
110 framework::dataset::combine(framework::dataset::combine(datasets::GoogLeNetInceptionV1ActivationLayerDataset(), data_types),
SiCong Li1e5c1572017-07-27 17:58:52 +0100111 framework::dataset::make("Batches", { 4, 8 })));
112
SiCong Lif583fb72017-08-15 15:09:18 +0100113REGISTER_FIXTURE_DATA_TEST_CASE(GoogLeNetInceptionV4ActivationLayer, NEActivationLayerFixture, framework::DatasetMode::NIGHTLY,
114 framework::dataset::combine(framework::dataset::combine(datasets::GoogLeNetInceptionV4ActivationLayerDataset(), data_types),
115 framework::dataset::make("Batches", { 4, 8 })));
116
SiCong Li1e5c1572017-07-27 17:58:52 +0100117REGISTER_FIXTURE_DATA_TEST_CASE(SqueezeNetActivationLayer, NEActivationLayerFixture, framework::DatasetMode::NIGHTLY,
118 framework::dataset::combine(framework::dataset::combine(datasets::SqueezeNetActivationLayerDataset(), data_types),
119 framework::dataset::make("Batches", { 4, 8 })));
120
SiCong Licc65bbe2017-08-18 11:58:21 +0100121REGISTER_FIXTURE_DATA_TEST_CASE(VGG16ActivationLayer, NEActivationLayerFixture, framework::DatasetMode::NIGHTLY,
122 framework::dataset::combine(framework::dataset::combine(datasets::VGG16ActivationLayerDataset(), data_types),
Gian Marco33da05b2017-11-08 14:13:33 +0000123 framework::dataset::make("Batches", { 2 })));
SiCong Licc65bbe2017-08-18 11:58:21 +0100124
SiCong Li1e5c1572017-07-27 17:58:52 +0100125REGISTER_FIXTURE_DATA_TEST_CASE(YOLOV2ActivationLayer, NEActivationLayerFixture, framework::DatasetMode::NIGHTLY,
126 framework::dataset::combine(framework::dataset::combine(datasets::YOLOV2ActivationLayerDataset(), data_types),
127 framework::dataset::make("Batches", { 4, 8 })));
128TEST_SUITE_END()
Moritz Pflanzeree493ae2017-07-05 10:52:21 +0100129TEST_SUITE_END()
Michalis Spyrou724079d2017-12-15 11:37:37 +0000130} // namespace benchmark
Moritz Pflanzeree493ae2017-07-05 10:52:21 +0100131} // namespace test
132} // namespace arm_compute