blob: 56a6109dbc1a1de96e5f4104ad0cf82d6a1c25c2 [file] [log] [blame]
Michalis Spyrou6a8d3b62018-08-31 10:07:09 +01001/*
SiCong Li4ceb4532023-03-13 15:02:23 +00002 * Copyright (c) 2018-2021, 2023 Arm Limited.
Michalis Spyrou6a8d3b62018-08-31 10:07:09 +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_BATCH_TO_SPACE_LAYER_FIXTURE
25#define ARM_COMPUTE_TEST_BATCH_TO_SPACE_LAYER_FIXTURE
26
SiCong Li5a7d1572023-03-21 12:00:15 +000027#include "arm_compute/core/Helpers.h"
Michalis Spyrou6a8d3b62018-08-31 10:07:09 +010028#include "tests/Globals.h"
29#include "tests/framework/Asserts.h"
30#include "tests/framework/Fixture.h"
31#include "tests/validation/reference/BatchToSpaceLayer.h"
32
33namespace arm_compute
34{
35namespace test
36{
37namespace validation
38{
39template <typename TensorType, typename AccessorType, typename FunctionType, typename T>
SiCong Li5a7d1572023-03-21 12:00:15 +000040class BatchToSpaceLayerValidationFixture : public framework::Fixture
Michalis Spyrou6a8d3b62018-08-31 10:07:09 +010041{
42public:
SiCong Li5a7d1572023-03-21 12:00:15 +000043 void setup(const TensorShape &input_shape, const std::vector<int32_t> &block_shape, const CropInfo &crop_info, const TensorShape &output_shape, DataType data_type, DataLayout data_layout)
Michalis Spyrou6a8d3b62018-08-31 10:07:09 +010044 {
SiCong Li5a7d1572023-03-21 12:00:15 +000045 _target = compute_target(input_shape, block_shape, crop_info, output_shape, data_type, data_layout);
46 _reference = compute_reference(input_shape, block_shape, crop_info, output_shape, data_type);
Michalis Spyrou6a8d3b62018-08-31 10:07:09 +010047 }
48
49protected:
50 template <typename U>
51 void fill(U &&tensor, int i)
52 {
Giorgio Arena4bdd1772020-12-17 16:47:07 +000053 static_assert(std::is_floating_point<T>::value || std::is_same<T, half>::value, "Only floating point data types supported.");
Giorgio Arena33b103b2021-01-08 10:37:15 +000054 using DistributionType = typename std::conditional<std::is_same<T, half>::value, arm_compute::utils::uniform_real_distribution_16bit<T>, std::uniform_real_distribution<T>>::type;
Giorgio Arena4bdd1772020-12-17 16:47:07 +000055
56 DistributionType distribution{ T(-1.0f), T(1.0f) };
Michalis Spyrou6a8d3b62018-08-31 10:07:09 +010057 library->fill(tensor, distribution, i);
58 }
SiCong Li5a7d1572023-03-21 12:00:15 +000059 TensorType compute_target(TensorShape input_shape, const std::vector<int32_t> &block_shape, const CropInfo &crop_info, TensorShape output_shape,
60 DataType data_type, DataLayout data_layout)
Michalis Spyrou6a8d3b62018-08-31 10:07:09 +010061 {
SiCong Li5a7d1572023-03-21 12:00:15 +000062 ARM_COMPUTE_ERROR_ON(block_shape.size() != 2U); // Only support batch to 2D space (x, y) for now
Michalis Spyrouf1addb62018-09-11 11:16:47 +010063 if(data_layout == DataLayout::NHWC)
64 {
65 permute(input_shape, PermutationVector(2U, 0U, 1U));
66 permute(output_shape, PermutationVector(2U, 0U, 1U));
67 }
68
Michalis Spyrou6a8d3b62018-08-31 10:07:09 +010069 // Create tensors
SiCong Li5a7d1572023-03-21 12:00:15 +000070 TensorType input = create_tensor<TensorType>(input_shape, data_type, 1, QuantizationInfo(), data_layout);
71 TensorType output = create_tensor<TensorType>(output_shape, data_type, 1, QuantizationInfo(), data_layout);
Michalis Spyrou6a8d3b62018-08-31 10:07:09 +010072
73 // Create and configure function
74 FunctionType batch_to_space;
SiCong Li5a7d1572023-03-21 12:00:15 +000075 batch_to_space.configure(&input, block_shape.at(0), block_shape.at(1), &output, crop_info);
Michalis Spyrou6a8d3b62018-08-31 10:07:09 +010076
Michele Di Giorgio4fc10b32021-04-30 18:30:41 +010077 ARM_COMPUTE_ASSERT(input.info()->is_resizable());
Michele Di Giorgio4fc10b32021-04-30 18:30:41 +010078 ARM_COMPUTE_ASSERT(output.info()->is_resizable());
Michalis Spyrou6a8d3b62018-08-31 10:07:09 +010079
80 // Allocate tensors
81 input.allocator()->allocate();
Michalis Spyrou6a8d3b62018-08-31 10:07:09 +010082 output.allocator()->allocate();
83
Michele Di Giorgio4fc10b32021-04-30 18:30:41 +010084 ARM_COMPUTE_ASSERT(!input.info()->is_resizable());
Michele Di Giorgio4fc10b32021-04-30 18:30:41 +010085 ARM_COMPUTE_ASSERT(!output.info()->is_resizable());
Michalis Spyrou6a8d3b62018-08-31 10:07:09 +010086
87 // Fill tensors
88 fill(AccessorType(input), 0);
Michalis Spyrou6a8d3b62018-08-31 10:07:09 +010089 // Compute function
90 batch_to_space.run();
91
92 return output;
93 }
94
SiCong Li5a7d1572023-03-21 12:00:15 +000095 SimpleTensor<T> compute_reference(const TensorShape &input_shape, const std::vector<int32_t> &block_shape,
96 const CropInfo &crop_info, const TensorShape &output_shape, DataType data_type)
Michalis Spyrou6a8d3b62018-08-31 10:07:09 +010097 {
SiCong Li5a7d1572023-03-21 12:00:15 +000098 ARM_COMPUTE_ERROR_ON(block_shape.size() != 2U); // Only support batch to 2D space (x, y) for now
Michalis Spyrou6a8d3b62018-08-31 10:07:09 +010099 // Create reference
SiCong Li5a7d1572023-03-21 12:00:15 +0000100 SimpleTensor<T> input{ input_shape, data_type };
Michalis Spyrou6a8d3b62018-08-31 10:07:09 +0100101
102 // Fill reference
103 fill(input, 0);
Michalis Spyrou6a8d3b62018-08-31 10:07:09 +0100104
105 // Compute reference
SiCong Li5a7d1572023-03-21 12:00:15 +0000106 return reference::batch_to_space(input, block_shape, crop_info, output_shape);
Michalis Spyrou6a8d3b62018-08-31 10:07:09 +0100107 }
108
109 TensorType _target{};
110 SimpleTensor<T> _reference{};
111};
SiCong Li4ceb4532023-03-13 15:02:23 +0000112
Michalis Spyrou6a8d3b62018-08-31 10:07:09 +0100113} // namespace validation
114} // namespace test
115} // namespace arm_compute
116#endif /* ARM_COMPUTE_TEST_BATCH_TO_SPACE_LAYER_FIXTURE */