blob: 0ae20b7b5d055aed3c67297ed59df3dd58716439 [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"
Moritz Pflanzera09de0c2017-09-01 20:41:12 +010030#include "tests/datasets/ShapeDatasets.h"
31#include "tests/framework/Asserts.h"
32#include "tests/framework/Macros.h"
33#include "tests/framework/datasets/Datasets.h"
34#include "tests/validation/Validation.h"
35#include "tests/validation/fixtures/DequantizationLayerFixture.h"
Michele Di Giorgio32982d82017-07-07 14:44:43 +010036
37namespace arm_compute
38{
39namespace test
40{
41namespace validation
42{
43namespace
44{
Georgios Pinitas574775c2019-02-18 20:08:02 +000045#ifdef __ARM_FEATURE_FP16_VECTOR_ARITHMETIC
46const auto data_types = framework::dataset::make("DataType", { DataType::F16, DataType::F32 });
47#else /* __ARM_FEATURE_FP16_VECTOR_ARITHMETIC */
48const auto data_types = framework::dataset::make("DataType", { DataType::F32 });
49#endif /* __ARM_FEATURE_FP16_VECTOR_ARITHMETIC */
Michele Di Giorgio32982d82017-07-07 14:44:43 +010050} // namespace
51
52TEST_SUITE(NEON)
53TEST_SUITE(DequantizationLayer)
54
Michalis Spyrouaeebe4a2019-01-09 14:21:03 +000055// *INDENT-OFF*
56// clang-format off
Georgios Pinitas574775c2019-02-18 20:08:02 +000057DATA_TEST_CASE(Validate, framework::DatasetMode::ALL, zip(zip(
58 framework::dataset::make("InputInfo", { TensorInfo(TensorShape(16U, 16U, 16U, 5U), 1, DataType::F32), // Wrong input data type
59 TensorInfo(TensorShape(16U, 16U, 16U, 5U), 1, DataType::QASYMM8), // Wrong output data type
60 TensorInfo(TensorShape(16U, 16U, 2U, 5U), 1, DataType::QASYMM8), // Missmatching shapes
61 TensorInfo(TensorShape(17U, 16U, 16U, 5U), 1, DataType::QASYMM8), // Valid
62 TensorInfo(TensorShape(16U, 16U, 16U, 5U), 1, DataType::QASYMM8), // Valid
63 }),
64 framework::dataset::make("OutputInfo",{ TensorInfo(TensorShape(16U, 16U, 16U, 5U), 1, DataType::F32),
65 TensorInfo(TensorShape(16U, 16U, 16U, 5U), 1, DataType::U8),
66 TensorInfo(TensorShape(16U, 16U, 16U, 5U), 1, DataType::F32),
67 TensorInfo(TensorShape(17U, 16U, 16U, 5U), 1, DataType::F32),
68 TensorInfo(TensorShape(16U, 16U, 16U, 5U), 1, DataType::F32),
69 })),
70 framework::dataset::make("Expected", { false, false, false, true, true})),
71 input_info, output_info, expected)
Michalis Spyrouaeebe4a2019-01-09 14:21:03 +000072{
Georgios Pinitas574775c2019-02-18 20:08:02 +000073 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 +000074}
75// clang-format on
76// *INDENT-ON*
77
Georgios Pinitas574775c2019-02-18 20:08:02 +000078DATA_TEST_CASE(Configuration,
79 framework::DatasetMode::ALL,
80 combine(datasets::SmallShapes(), data_types),
81 shape, data_type)
Michele Di Giorgio32982d82017-07-07 14:44:43 +010082{
83 // Create tensors
Georgios Pinitas574775c2019-02-18 20:08:02 +000084 Tensor src = create_tensor<Tensor>(shape, DataType::QASYMM8, 1, QuantizationInfo(0.5f, -10));
85 Tensor dst = create_tensor<Tensor>(shape, data_type);
Michele Di Giorgio32982d82017-07-07 14:44:43 +010086
87 ARM_COMPUTE_EXPECT(src.info()->is_resizable(), framework::LogLevel::ERRORS);
88 ARM_COMPUTE_EXPECT(dst.info()->is_resizable(), framework::LogLevel::ERRORS);
89
90 // Create and configure function
Michele Di Giorgio32982d82017-07-07 14:44:43 +010091 NEDequantizationLayer dequant_layer;
Georgios Pinitas574775c2019-02-18 20:08:02 +000092 dequant_layer.configure(&src, &dst);
Michele Di Giorgio32982d82017-07-07 14:44:43 +010093
94 // Validate valid region
95 const ValidRegion valid_region = shape_to_valid_region(shape);
96 validate(src.info()->valid_region(), valid_region);
97 validate(dst.info()->valid_region(), valid_region);
98
99 // Validate padding
Georgios Pinitas574775c2019-02-18 20:08:02 +0000100 validate(src.info()->padding(), PaddingSize());
101 validate(dst.info()->padding(), PaddingSize());
Michele Di Giorgio32982d82017-07-07 14:44:43 +0100102}
103
104template <typename T>
105using NEDequantizationLayerFixture = DequantizationValidationFixture<Tensor, Accessor, NEDequantizationLayer, T>;
106
Georgios Pinitas574775c2019-02-18 20:08:02 +0000107#ifdef __ARM_FEATURE_FP16_VECTOR_ARITHMETIC
108TEST_SUITE(FP16)
109FIXTURE_DATA_TEST_CASE(RunSmall, NEDequantizationLayerFixture<half>, framework::DatasetMode::PRECOMMIT, combine(combine(datasets::SmallShapes(),
110 framework::dataset::make("DataType", DataType::F16)),
111 framework::dataset::make("QuantizationInfo", { QuantizationInfo(0.1f, 128.0f) })))
Michele Di Giorgio32982d82017-07-07 14:44:43 +0100112{
113 // Validate output
Georgios Pinitas574775c2019-02-18 20:08:02 +0000114 validate(Accessor(_target), _reference);
Michele Di Giorgio32982d82017-07-07 14:44:43 +0100115}
Georgios Pinitas574775c2019-02-18 20:08:02 +0000116FIXTURE_DATA_TEST_CASE(RunLarge, NEDequantizationLayerFixture<half>, framework::DatasetMode::NIGHTLY, combine(combine(datasets::LargeShapes(),
117 framework::dataset::make("DataType", DataType::F16)),
118 framework::dataset::make("QuantizationInfo", { QuantizationInfo(0.1f, 128.0f) })))
Michele Di Giorgio32982d82017-07-07 14:44:43 +0100119{
120 // Validate output
Georgios Pinitas574775c2019-02-18 20:08:02 +0000121 validate(Accessor(_target), _reference);
Michele Di Giorgio32982d82017-07-07 14:44:43 +0100122}
Georgios Pinitas574775c2019-02-18 20:08:02 +0000123TEST_SUITE_END() // FP16
124#endif /* __ARM_FEATURE_FP16_VECTOR_ARITHMETIC */
125
126TEST_SUITE(FP32)
127FIXTURE_DATA_TEST_CASE(RunSmall, NEDequantizationLayerFixture<float>, framework::DatasetMode::PRECOMMIT, combine(combine(datasets::SmallShapes(),
128 framework::dataset::make("DataType", DataType::F32)),
129 framework::dataset::make("QuantizationInfo", { QuantizationInfo(0.1f, 128.0f) })))
130{
131 // Validate output
132 validate(Accessor(_target), _reference);
133}
134FIXTURE_DATA_TEST_CASE(RunLarge, NEDequantizationLayerFixture<float>, framework::DatasetMode::NIGHTLY, combine(combine(datasets::LargeShapes(),
135 framework::dataset::make("DataType", DataType::F32)),
136 framework::dataset::make("QuantizationInfo", { QuantizationInfo(0.1f, 128.0f) })))
137{
138 // Validate output
139 validate(Accessor(_target), _reference);
140}
141TEST_SUITE_END() // FP32
Michele Di Giorgio32982d82017-07-07 14:44:43 +0100142
Michalis Spyrouaeebe4a2019-01-09 14:21:03 +0000143TEST_SUITE_END() // DequantizationLayer
144TEST_SUITE_END() // NEON
Michele Di Giorgio32982d82017-07-07 14:44:43 +0100145} // namespace validation
146} // namespace test
147} // namespace arm_compute