blob: 122e19bbe5846b59ea0f60c0220a3f14c2878081 [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/CL/CLTensor.h"
27#include "arm_compute/runtime/CL/CLTensorAllocator.h"
28#include "arm_compute/runtime/CL/functions/CLConvolutionLayer.h"
Moritz Pflanzeree493ae2017-07-05 10:52:21 +010029#include "tests/CL/CLAccessor.h"
30#include "tests/TypePrinter.h"
Moritz Pflanzera09de0c2017-09-01 20:41:12 +010031#include "tests/benchmark/fixtures/ConvolutionLayerFixture.h"
32#include "tests/datasets/system_tests/alexnet/AlexNetConvolutionLayerDataset.h"
33#include "tests/datasets/system_tests/googlenet/inceptionv1/GoogLeNetInceptionV1ConvolutionLayerDataset.h"
34#include "tests/datasets/system_tests/googlenet/inceptionv4/GoogLeNetInceptionV4ConvolutionLayerDataset.h"
35#include "tests/datasets/system_tests/lenet5/LeNet5ConvolutionLayerDataset.h"
36#include "tests/datasets/system_tests/squeezenet/SqueezeNetConvolutionLayerDataset.h"
37#include "tests/datasets/system_tests/vgg/vgg16/VGG16ConvolutionLayerDataset.h"
38#include "tests/datasets/system_tests/yolo/v2/YOLOV2ConvolutionLayerDataset.h"
39#include "tests/framework/Macros.h"
40#include "tests/framework/datasets/Datasets.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{
48const auto data_types = framework::dataset::make("DataType", { DataType::F16, DataType::F32, DataType::QS8, DataType::QS16 });
49} // namespace
50
Moritz Pflanzerd58cec02017-07-18 15:44:21 +010051using CLConvolutionLayerFixture = ConvolutionLayerFixture<CLTensor, CLConvolutionLayer, 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(AlexNetConvolutionLayer, CLConvolutionLayerFixture, framework::DatasetMode::ALL,
SiCong Li1e5c1572017-07-27 17:58:52 +010056 framework::dataset::combine(framework::dataset::combine(datasets::AlexNetConvolutionLayerDataset(),
57 data_types),
SiCong Licc65bbe2017-08-18 11:58:21 +010058 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(LeNet5ConvolutionLayer, CLConvolutionLayerFixture, framework::DatasetMode::ALL,
SiCong Li1e5c1572017-07-27 17:58:52 +010061 framework::dataset::combine(framework::dataset::combine(datasets::LeNet5ConvolutionLayerDataset(),
62 data_types),
SiCong Licc65bbe2017-08-18 11:58:21 +010063 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(GoogLeNetInceptionV1ConvolutionLayer, CLConvolutionLayerFixture, framework::DatasetMode::ALL,
66 framework::dataset::combine(framework::dataset::combine(datasets::GoogLeNetInceptionV1ConvolutionLayerDataset(),
SiCong Li1e5c1572017-07-27 17:58:52 +010067 data_types),
SiCong Licc65bbe2017-08-18 11:58:21 +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(GoogLeNetInceptionV4ConvolutionLayer, CLConvolutionLayerFixture, framework::DatasetMode::ALL,
71 framework::dataset::combine(framework::dataset::combine(datasets::GoogLeNetInceptionV4ConvolutionLayerDataset(),
72 data_types),
SiCong Licc65bbe2017-08-18 11:58:21 +010073 framework::dataset::make("Batches", 1)));
SiCong Lif583fb72017-08-15 15:09:18 +010074
SiCong Li0aea8902017-07-21 18:24:36 +010075REGISTER_FIXTURE_DATA_TEST_CASE(SqueezeNetConvolutionLayer, CLConvolutionLayerFixture, framework::DatasetMode::ALL,
SiCong Li1e5c1572017-07-27 17:58:52 +010076 framework::dataset::combine(framework::dataset::combine(datasets::SqueezeNetConvolutionLayerDataset(),
77 data_types),
SiCong Licc65bbe2017-08-18 11:58:21 +010078 framework::dataset::make("Batches", 1)));
SiCong Li0aea8902017-07-21 18:24:36 +010079
SiCong Li1e5c1572017-07-27 17:58:52 +010080TEST_SUITE(NIGHTLY)
81REGISTER_FIXTURE_DATA_TEST_CASE(AlexNetConvolutionLayer, CLConvolutionLayerFixture, framework::DatasetMode::NIGHTLY,
82 framework::dataset::combine(framework::dataset::combine(datasets::AlexNetConvolutionLayerDataset(),
83 data_types),
SiCong Licc65bbe2017-08-18 11:58:21 +010084 framework::dataset::make("Batches", { 4, 8 })));
SiCong Li1e5c1572017-07-27 17:58:52 +010085
86REGISTER_FIXTURE_DATA_TEST_CASE(LeNet5ConvolutionLayer, CLConvolutionLayerFixture, framework::DatasetMode::NIGHTLY,
87 framework::dataset::combine(framework::dataset::combine(datasets::LeNet5ConvolutionLayerDataset(),
88 data_types),
SiCong Licc65bbe2017-08-18 11:58:21 +010089 framework::dataset::make("Batches", { 4, 8 })));
SiCong Li1e5c1572017-07-27 17:58:52 +010090
SiCong Lid763cfb2017-08-15 12:38:51 +010091REGISTER_FIXTURE_DATA_TEST_CASE(GoogLeNetInceptionV1ConvolutionLayer, CLConvolutionLayerFixture, framework::DatasetMode::NIGHTLY,
92 framework::dataset::combine(framework::dataset::combine(datasets::GoogLeNetInceptionV1ConvolutionLayerDataset(),
SiCong Li1e5c1572017-07-27 17:58:52 +010093 data_types),
SiCong Licc65bbe2017-08-18 11:58:21 +010094 framework::dataset::make("Batches", { 4, 8 })));
SiCong Li1e5c1572017-07-27 17:58:52 +010095
SiCong Lif583fb72017-08-15 15:09:18 +010096REGISTER_FIXTURE_DATA_TEST_CASE(GoogLeNetInceptionV4ConvolutionLayer, CLConvolutionLayerFixture, framework::DatasetMode::NIGHTLY,
97 framework::dataset::combine(framework::dataset::combine(datasets::GoogLeNetInceptionV4ConvolutionLayerDataset(),
98 data_types),
SiCong Licc65bbe2017-08-18 11:58:21 +010099 framework::dataset::make("Batches", { 4, 8 })));
SiCong Lif583fb72017-08-15 15:09:18 +0100100
SiCong Li1e5c1572017-07-27 17:58:52 +0100101REGISTER_FIXTURE_DATA_TEST_CASE(SqueezeNetConvolutionLayer, CLConvolutionLayerFixture, framework::DatasetMode::NIGHTLY,
102 framework::dataset::combine(framework::dataset::combine(datasets::SqueezeNetConvolutionLayerDataset(),
103 data_types),
SiCong Licc65bbe2017-08-18 11:58:21 +0100104 framework::dataset::make("Batches", { 4, 8 })));
105
106REGISTER_FIXTURE_DATA_TEST_CASE(VGG16ConvolutionLayer, CLConvolutionLayerFixture, framework::DatasetMode::NIGHTLY,
107 framework::dataset::combine(framework::dataset::combine(datasets::VGG16ConvolutionLayerDataset(),
108 data_types),
109 framework::dataset::make("Batches", { 1, 4, 8 })));
SiCong Li1e5c1572017-07-27 17:58:52 +0100110
111REGISTER_FIXTURE_DATA_TEST_CASE(YOLOV2ConvolutionLayer, CLConvolutionLayerFixture, framework::DatasetMode::NIGHTLY,
112 framework::dataset::combine(framework::dataset::combine(datasets::YOLOV2ConvolutionLayerDataset(),
113 data_types),
114 framework::dataset::make("Batches", { 1, 4, 8 })));
115TEST_SUITE_END()
Moritz Pflanzeree493ae2017-07-05 10:52:21 +0100116TEST_SUITE_END()
117} // namespace test
118} // namespace arm_compute