blob: 4389419d739c60b0bb366c37d0bf49952c2e983d [file] [log] [blame]
Michele Di Giorgio32982d82017-07-07 14:44:43 +01001/*
Michalis Spyrouaeebe4a2019-01-09 14:21:03 +00002 * Copyright (c) 2017-2019 ARM Limited.
Michele Di Giorgio32982d82017-07-07 14:44:43 +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/Types.h"
25#include "arm_compute/runtime/NEON/functions/NEDequantizationLayer.h"
26#include "arm_compute/runtime/Tensor.h"
27#include "arm_compute/runtime/TensorAllocator.h"
Michele Di Giorgio32982d82017-07-07 14:44:43 +010028#include "tests/NEON/Accessor.h"
29#include "tests/PaddingCalculator.h"
Georgios Pinitas3d13af82019-06-04 13:04:16 +010030#include "tests/datasets/DatatypeDataset.h"
Moritz Pflanzera09de0c2017-09-01 20:41:12 +010031#include "tests/datasets/ShapeDatasets.h"
32#include "tests/framework/Asserts.h"
33#include "tests/framework/Macros.h"
34#include "tests/framework/datasets/Datasets.h"
35#include "tests/validation/Validation.h"
36#include "tests/validation/fixtures/DequantizationLayerFixture.h"
Michele Di Giorgio32982d82017-07-07 14:44:43 +010037
38namespace arm_compute
39{
40namespace test
41{
42namespace validation
43{
44namespace
45{
Georgios Pinitas574775c2019-02-18 20:08:02 +000046#ifdef __ARM_FEATURE_FP16_VECTOR_ARITHMETIC
47const auto data_types = framework::dataset::make("DataType", { DataType::F16, DataType::F32 });
48#else /* __ARM_FEATURE_FP16_VECTOR_ARITHMETIC */
49const auto data_types = framework::dataset::make("DataType", { DataType::F32 });
50#endif /* __ARM_FEATURE_FP16_VECTOR_ARITHMETIC */
Michalis Spyrou3f632f32019-08-22 16:52:00 +010051
52const auto dataset_quant_f32 = combine(combine(combine(datasets::SmallShapes(), datasets::QuantizedTypes()),
53 framework::dataset::make("DataType", DataType::F32)),
54 framework::dataset::make("DataLayout", { DataLayout::NCHW }));
55const auto dataset_quant_f16 = combine(combine(combine(datasets::SmallShapes(), datasets::QuantizedTypes()),
56 framework::dataset::make("DataType", DataType::F16)),
57 framework::dataset::make("DataLayout", { DataLayout::NCHW }));
Sang-Hoon Parkd8176472019-12-04 09:46:28 +000058const auto dataset_quant_asymm_signed_f32 = combine(combine(combine(datasets::SmallShapes(),
59 framework::dataset::make("QuantizedTypes", { DataType::QASYMM8_SIGNED })),
60 framework::dataset::make("DataType", DataType::F32)),
61 framework::dataset::make("DataLayout", { DataLayout::NCHW }));
62const auto dataset_quant_asymm_signed_f16 = combine(combine(combine(datasets::SmallShapes(),
63 framework::dataset::make("QuantizedTypes", { DataType::QASYMM8_SIGNED })),
64 framework::dataset::make("DataType", DataType::F16)),
65 framework::dataset::make("DataLayout", { DataLayout::NCHW }));
Michalis Spyrou3f632f32019-08-22 16:52:00 +010066const auto dataset_quant_per_channel_f32 = combine(combine(combine(datasets::SmallShapes(), datasets::QuantizedPerChannelTypes()),
67 framework::dataset::make("DataType", DataType::F32)),
68 framework::dataset::make("DataLayout", { DataLayout::NCHW, DataLayout::NHWC }));
69const auto dataset_quant_per_channel_f16 = combine(combine(combine(datasets::SmallShapes(), datasets::QuantizedPerChannelTypes()),
70 framework::dataset::make("DataType", DataType::F16)),
71 framework::dataset::make("DataLayout", { DataLayout::NCHW, DataLayout::NHWC }));
72const auto dataset_quant_nightly_f32 = combine(combine(combine(datasets::LargeShapes(), datasets::QuantizedTypes()),
73 framework::dataset::make("DataType", DataType::F32)),
74 framework::dataset::make("DataLayout", { DataLayout::NCHW }));
75const auto dataset_quant_nightly_f16 = combine(combine(combine(datasets::LargeShapes(), datasets::QuantizedTypes()),
76 framework::dataset::make("DataType", DataType::F16)),
77 framework::dataset::make("DataLayout", { DataLayout::NCHW }));
78const auto dataset_quant_per_channel_nightly_f32 = combine(combine(combine(datasets::LargeShapes(), datasets::QuantizedPerChannelTypes()),
79 framework::dataset::make("DataType", DataType::F32)),
80 framework::dataset::make("DataLayout", { DataLayout::NCHW, DataLayout::NHWC }));
81const auto dataset_quant_per_channel_nightly_f16 = combine(combine(combine(datasets::LargeShapes(), datasets::QuantizedPerChannelTypes()),
82 framework::dataset::make("DataType", DataType::F16)),
83 framework::dataset::make("DataLayout", { DataLayout::NCHW, DataLayout::NHWC }));
Sang-Hoon Parkd8176472019-12-04 09:46:28 +000084
85const auto dataset_precommit_f16 = concat(concat(dataset_quant_f16, dataset_quant_per_channel_f16), dataset_quant_asymm_signed_f16);
86const auto dataset_precommit_f32 = concat(concat(dataset_quant_f32, dataset_quant_per_channel_f32), dataset_quant_asymm_signed_f32);
87const auto dataset_nightly_f16 = concat(dataset_quant_f16, dataset_quant_per_channel_f16);
88const auto dataset_nightly_f32 = concat(dataset_quant_f32, dataset_quant_per_channel_f32);
89
Michele Di Giorgio32982d82017-07-07 14:44:43 +010090} // namespace
91
92TEST_SUITE(NEON)
93TEST_SUITE(DequantizationLayer)
94
Michalis Spyrouaeebe4a2019-01-09 14:21:03 +000095// *INDENT-OFF*
96// clang-format off
Georgios Pinitas574775c2019-02-18 20:08:02 +000097DATA_TEST_CASE(Validate, framework::DatasetMode::ALL, zip(zip(
98 framework::dataset::make("InputInfo", { TensorInfo(TensorShape(16U, 16U, 16U, 5U), 1, DataType::F32), // Wrong input data type
99 TensorInfo(TensorShape(16U, 16U, 16U, 5U), 1, DataType::QASYMM8), // Wrong output data type
100 TensorInfo(TensorShape(16U, 16U, 2U, 5U), 1, DataType::QASYMM8), // Missmatching shapes
101 TensorInfo(TensorShape(17U, 16U, 16U, 5U), 1, DataType::QASYMM8), // Valid
102 TensorInfo(TensorShape(16U, 16U, 16U, 5U), 1, DataType::QASYMM8), // Valid
Sang-Hoon Parkd8176472019-12-04 09:46:28 +0000103 TensorInfo(TensorShape(16U, 16U, 16U, 5U), 1, DataType::QASYMM8_SIGNED), // Valid
Georgios Pinitas574775c2019-02-18 20:08:02 +0000104 }),
105 framework::dataset::make("OutputInfo",{ TensorInfo(TensorShape(16U, 16U, 16U, 5U), 1, DataType::F32),
106 TensorInfo(TensorShape(16U, 16U, 16U, 5U), 1, DataType::U8),
107 TensorInfo(TensorShape(16U, 16U, 16U, 5U), 1, DataType::F32),
108 TensorInfo(TensorShape(17U, 16U, 16U, 5U), 1, DataType::F32),
109 TensorInfo(TensorShape(16U, 16U, 16U, 5U), 1, DataType::F32),
Sang-Hoon Parkd8176472019-12-04 09:46:28 +0000110 TensorInfo(TensorShape(16U, 16U, 16U, 5U), 1, DataType::F32),
Georgios Pinitas574775c2019-02-18 20:08:02 +0000111 })),
Sang-Hoon Parkd8176472019-12-04 09:46:28 +0000112 framework::dataset::make("Expected", { false, false, false, true, true, true })),
Georgios Pinitas574775c2019-02-18 20:08:02 +0000113 input_info, output_info, expected)
Michalis Spyrouaeebe4a2019-01-09 14:21:03 +0000114{
Georgios Pinitas574775c2019-02-18 20:08:02 +0000115 ARM_COMPUTE_EXPECT(bool(NEDequantizationLayer::validate(&input_info.clone()->set_is_resizable(false), &output_info.clone()->set_is_resizable(false))) == expected, framework::LogLevel::ERRORS);
Michalis Spyrouaeebe4a2019-01-09 14:21:03 +0000116}
117// clang-format on
118// *INDENT-ON*
119
Georgios Pinitas574775c2019-02-18 20:08:02 +0000120DATA_TEST_CASE(Configuration,
121 framework::DatasetMode::ALL,
122 combine(datasets::SmallShapes(), data_types),
123 shape, data_type)
Michele Di Giorgio32982d82017-07-07 14:44:43 +0100124{
125 // Create tensors
Georgios Pinitas574775c2019-02-18 20:08:02 +0000126 Tensor src = create_tensor<Tensor>(shape, DataType::QASYMM8, 1, QuantizationInfo(0.5f, -10));
127 Tensor dst = create_tensor<Tensor>(shape, data_type);
Michele Di Giorgio32982d82017-07-07 14:44:43 +0100128
129 ARM_COMPUTE_EXPECT(src.info()->is_resizable(), framework::LogLevel::ERRORS);
130 ARM_COMPUTE_EXPECT(dst.info()->is_resizable(), framework::LogLevel::ERRORS);
131
132 // Create and configure function
Michele Di Giorgio32982d82017-07-07 14:44:43 +0100133 NEDequantizationLayer dequant_layer;
Georgios Pinitas574775c2019-02-18 20:08:02 +0000134 dequant_layer.configure(&src, &dst);
Michele Di Giorgio32982d82017-07-07 14:44:43 +0100135
136 // Validate valid region
137 const ValidRegion valid_region = shape_to_valid_region(shape);
138 validate(src.info()->valid_region(), valid_region);
139 validate(dst.info()->valid_region(), valid_region);
140
141 // Validate padding
Georgios Pinitas574775c2019-02-18 20:08:02 +0000142 validate(src.info()->padding(), PaddingSize());
143 validate(dst.info()->padding(), PaddingSize());
Michele Di Giorgio32982d82017-07-07 14:44:43 +0100144}
145
146template <typename T>
147using NEDequantizationLayerFixture = DequantizationValidationFixture<Tensor, Accessor, NEDequantizationLayer, T>;
148
Georgios Pinitas574775c2019-02-18 20:08:02 +0000149#ifdef __ARM_FEATURE_FP16_VECTOR_ARITHMETIC
150TEST_SUITE(FP16)
Sang-Hoon Parkd8176472019-12-04 09:46:28 +0000151FIXTURE_DATA_TEST_CASE(RunSmall, NEDequantizationLayerFixture<half>, framework::DatasetMode::PRECOMMIT, dataset_precommit_f16)
Michele Di Giorgio32982d82017-07-07 14:44:43 +0100152{
153 // Validate output
Georgios Pinitas574775c2019-02-18 20:08:02 +0000154 validate(Accessor(_target), _reference);
Michele Di Giorgio32982d82017-07-07 14:44:43 +0100155}
Sang-Hoon Parkd8176472019-12-04 09:46:28 +0000156FIXTURE_DATA_TEST_CASE(RunLarge, NEDequantizationLayerFixture<half>, framework::DatasetMode::NIGHTLY, dataset_nightly_f16)
Michele Di Giorgio32982d82017-07-07 14:44:43 +0100157{
158 // Validate output
Georgios Pinitas574775c2019-02-18 20:08:02 +0000159 validate(Accessor(_target), _reference);
Michele Di Giorgio32982d82017-07-07 14:44:43 +0100160}
Georgios Pinitas574775c2019-02-18 20:08:02 +0000161TEST_SUITE_END() // FP16
162#endif /* __ARM_FEATURE_FP16_VECTOR_ARITHMETIC */
163
164TEST_SUITE(FP32)
Sang-Hoon Parkd8176472019-12-04 09:46:28 +0000165FIXTURE_DATA_TEST_CASE(RunSmall, NEDequantizationLayerFixture<float>, framework::DatasetMode::PRECOMMIT, dataset_precommit_f32)
Georgios Pinitas574775c2019-02-18 20:08:02 +0000166{
167 // Validate output
168 validate(Accessor(_target), _reference);
169}
Sang-Hoon Parkd8176472019-12-04 09:46:28 +0000170FIXTURE_DATA_TEST_CASE(RunLarge, NEDequantizationLayerFixture<float>, framework::DatasetMode::NIGHTLY, dataset_nightly_f32)
Georgios Pinitas574775c2019-02-18 20:08:02 +0000171{
172 // Validate output
173 validate(Accessor(_target), _reference);
174}
175TEST_SUITE_END() // FP32
Michele Di Giorgio32982d82017-07-07 14:44:43 +0100176
Michalis Spyrouaeebe4a2019-01-09 14:21:03 +0000177TEST_SUITE_END() // DequantizationLayer
178TEST_SUITE_END() // NEON
Michele Di Giorgio32982d82017-07-07 14:44:43 +0100179} // namespace validation
180} // namespace test
181} // namespace arm_compute