blob: 3fe12709c818ae5ea86650f0753670f6e8aa822b [file] [log] [blame]
Sanghoon Lee24486d62017-09-04 15:51:21 +01001/*
Vidhya Sudhan Loganathan014333d2018-07-02 09:13:49 +01002 * Copyright (c) 2017-2018 ARM Limited.
Sanghoon Lee24486d62017-09-04 15:51: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#ifndef ARM_COMPUTE_TEST_DEPTH_CONVERT_FIXTURE
25#define ARM_COMPUTE_TEST_DEPTH_CONVERT_FIXTURE
26
27#include "arm_compute/core/TensorShape.h"
28#include "arm_compute/core/Types.h"
29#include "tests/AssetsLibrary.h"
30#include "tests/Globals.h"
31#include "tests/IAccessor.h"
32#include "tests/framework/Asserts.h"
33#include "tests/framework/Fixture.h"
Sanghoon Lee24486d62017-09-04 15:51:21 +010034#include "tests/validation/Helpers.h"
Georgios Pinitas5a7e7762017-12-01 16:27:29 +000035#include "tests/validation/reference/DepthConvertLayer.h"
Sanghoon Lee24486d62017-09-04 15:51:21 +010036
37namespace arm_compute
38{
39namespace test
40{
41namespace validation
42{
Usama Arif9e631c22019-05-14 17:10:40 +010043/* This function ignores the scale and zeroPoint of quanized tensors, i.e. QASYMM8 input is treated as uint8 values.*/
Sanghoon Lee24486d62017-09-04 15:51:21 +010044template <typename TensorType, typename AccessorType, typename FunctionType, typename T1, typename T2>
Michalis Spyroue2588182018-12-13 18:31:18 +000045class DepthConvertLayerValidationBaseFixture : public framework::Fixture
Sanghoon Lee24486d62017-09-04 15:51:21 +010046{
47public:
48 template <typename...>
Michalis Spyroue2588182018-12-13 18:31:18 +000049 void setup(TensorShape shape, DataType dt_in, DataType dt_out, ConvertPolicy policy, uint32_t shift, QuantizationInfo quantization_info)
Sanghoon Lee24486d62017-09-04 15:51:21 +010050 {
Michalis Spyroue2588182018-12-13 18:31:18 +000051 _shift = shift;
52 _quantization_info = quantization_info;
53 _target = compute_target(shape, dt_in, dt_out, policy, shift);
54 _reference = compute_reference(shape, dt_in, dt_out, policy, shift);
Sanghoon Lee24486d62017-09-04 15:51:21 +010055 }
56
57protected:
58 template <typename U>
Usama Arif9e631c22019-05-14 17:10:40 +010059 void fill(U &&tensor, int i, DataType dt_in, DataType dt_out)
Sanghoon Lee24486d62017-09-04 15:51:21 +010060 {
Michalis Spyroue2588182018-12-13 18:31:18 +000061 if(is_data_type_quantized(tensor.data_type()))
62 {
63 std::pair<int, int> bounds = get_quantized_bounds(tensor.quantization_info(), -1.0f, 1.0f);
64 std::uniform_int_distribution<uint8_t> distribution(bounds.first, bounds.second);
65
66 library->fill(tensor, distribution, i);
67 }
68 else
69 {
Usama Arif9e631c22019-05-14 17:10:40 +010070 // When converting S32 to F16, both reference and NEON implementations are + or - infinity outside the F16 range.
71 if(dt_in==DataType::S32 && dt_out==DataType::F16)
72 {
73 std::uniform_int_distribution<int32_t> distribution_s32(-65504, 65504);
74 library->fill(tensor, distribution_s32, i);
75 }
76 else
77 {
78 library->fill_tensor_uniform(tensor, i);
79 }
Michalis Spyroue2588182018-12-13 18:31:18 +000080 }
Sanghoon Lee24486d62017-09-04 15:51:21 +010081 }
82
Vidhya Sudhan Loganathan014333d2018-07-02 09:13:49 +010083 TensorType compute_target(const TensorShape &shape, DataType dt_in, DataType dt_out, ConvertPolicy policy, uint32_t shift)
Sanghoon Lee24486d62017-09-04 15:51:21 +010084 {
85 // Create tensors
Michalis Spyroue2588182018-12-13 18:31:18 +000086 TensorType src = create_tensor<TensorType>(shape, dt_in, 1, _quantization_info);
87 TensorType dst = create_tensor<TensorType>(shape, dt_out, 1, _quantization_info);
Sanghoon Lee24486d62017-09-04 15:51:21 +010088
89 // Create and configure function
90 FunctionType depth_convert;
91 depth_convert.configure(&src, &dst, policy, shift);
92
93 ARM_COMPUTE_EXPECT(src.info()->is_resizable(), framework::LogLevel::ERRORS);
94 ARM_COMPUTE_EXPECT(dst.info()->is_resizable(), framework::LogLevel::ERRORS);
95
96 // Allocate tensors
97 src.allocator()->allocate();
98 dst.allocator()->allocate();
99
100 ARM_COMPUTE_EXPECT(!src.info()->is_resizable(), framework::LogLevel::ERRORS);
101 ARM_COMPUTE_EXPECT(!dst.info()->is_resizable(), framework::LogLevel::ERRORS);
102
103 // Fill tensors
Usama Arif9e631c22019-05-14 17:10:40 +0100104 fill(AccessorType(src), 0, dt_in, dt_out);
Sanghoon Lee24486d62017-09-04 15:51:21 +0100105
106 // Compute function
107 depth_convert.run();
108
109 return dst;
110 }
111
Vidhya Sudhan Loganathan014333d2018-07-02 09:13:49 +0100112 SimpleTensor<T2> compute_reference(const TensorShape &shape, DataType dt_in, DataType dt_out, ConvertPolicy policy, uint32_t shift)
Sanghoon Lee24486d62017-09-04 15:51:21 +0100113 {
114 // Create reference
Michalis Spyroue2588182018-12-13 18:31:18 +0000115 SimpleTensor<T1> src{ shape, dt_in, 1, _quantization_info };
Sanghoon Lee24486d62017-09-04 15:51:21 +0100116
117 // Fill reference
Usama Arif9e631c22019-05-14 17:10:40 +0100118 fill(src, 0, dt_in, dt_out);
Sanghoon Lee24486d62017-09-04 15:51:21 +0100119
120 return reference::depth_convert<T1, T2>(src, dt_out, policy, shift);
121 }
122
123 TensorType _target{};
124 SimpleTensor<T2> _reference{};
Sanghoon Lee24486d62017-09-04 15:51:21 +0100125 int _shift{};
Michalis Spyroue2588182018-12-13 18:31:18 +0000126 QuantizationInfo _quantization_info{};
127};
128
129template <typename TensorType, typename AccessorType, typename FunctionType, typename T1, typename T2>
130class DepthConvertLayerValidationFixture : public DepthConvertLayerValidationBaseFixture<TensorType, AccessorType, FunctionType, T1, T2>
131{
132public:
133 template <typename...>
134 void setup(TensorShape shape, DataType dt_in, DataType dt_out, ConvertPolicy policy, uint32_t shift)
135 {
136 DepthConvertLayerValidationBaseFixture<TensorType, AccessorType, FunctionType, T1, T2>::setup(shape, dt_in, dt_out, policy,
137 shift, QuantizationInfo());
138 }
139};
140
141template <typename TensorType, typename AccessorType, typename FunctionType, typename T1, typename T2>
142class DepthConvertLayerValidationQuantizedFixture : public DepthConvertLayerValidationBaseFixture<TensorType, AccessorType, FunctionType, T1, T2>
143{
144public:
145 template <typename...>
146 void setup(TensorShape shape, DataType dt_in, DataType dt_out, ConvertPolicy policy, uint32_t shift, QuantizationInfo quantization_info)
147 {
148 DepthConvertLayerValidationBaseFixture<TensorType, AccessorType, FunctionType, T1, T2>::setup(shape, dt_in, dt_out, policy,
149 shift, quantization_info);
150 }
Sanghoon Lee24486d62017-09-04 15:51:21 +0100151};
Sanghoon Lee24486d62017-09-04 15:51:21 +0100152} // namespace validation
153} // namespace test
154} // namespace arm_compute
155#endif /* ARM_COMPUTE_TEST_DEPTH_CONVERT_FIXTURE */