blob: 19fc82a87bd643a40abf4d74af82f6cb218b500e [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:
43 template <typename...>
SiCong Li5a7d1572023-03-21 12:00:15 +000044 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 +010045 {
SiCong Li5a7d1572023-03-21 12:00:15 +000046 _target = compute_target(input_shape, block_shape, crop_info, output_shape, data_type, data_layout);
47 _reference = compute_reference(input_shape, block_shape, crop_info, output_shape, data_type);
Michalis Spyrou6a8d3b62018-08-31 10:07:09 +010048 }
49
50protected:
51 template <typename U>
52 void fill(U &&tensor, int i)
53 {
Giorgio Arena4bdd1772020-12-17 16:47:07 +000054 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 +000055 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 +000056
57 DistributionType distribution{ T(-1.0f), T(1.0f) };
Michalis Spyrou6a8d3b62018-08-31 10:07:09 +010058 library->fill(tensor, distribution, i);
59 }
SiCong Li5a7d1572023-03-21 12:00:15 +000060 TensorType compute_target(TensorShape input_shape, const std::vector<int32_t> &block_shape, const CropInfo &crop_info, TensorShape output_shape,
61 DataType data_type, DataLayout data_layout)
Michalis Spyrou6a8d3b62018-08-31 10:07:09 +010062 {
SiCong Li5a7d1572023-03-21 12:00:15 +000063 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 +010064 if(data_layout == DataLayout::NHWC)
65 {
66 permute(input_shape, PermutationVector(2U, 0U, 1U));
67 permute(output_shape, PermutationVector(2U, 0U, 1U));
68 }
69
Michalis Spyrou6a8d3b62018-08-31 10:07:09 +010070 // Create tensors
SiCong Li5a7d1572023-03-21 12:00:15 +000071 TensorType input = create_tensor<TensorType>(input_shape, data_type, 1, QuantizationInfo(), data_layout);
72 TensorType output = create_tensor<TensorType>(output_shape, data_type, 1, QuantizationInfo(), data_layout);
Michalis Spyrou6a8d3b62018-08-31 10:07:09 +010073
74 // Create and configure function
75 FunctionType batch_to_space;
SiCong Li5a7d1572023-03-21 12:00:15 +000076 batch_to_space.configure(&input, block_shape.at(0), block_shape.at(1), &output, crop_info);
Michalis Spyrou6a8d3b62018-08-31 10:07:09 +010077
Michele Di Giorgio4fc10b32021-04-30 18:30:41 +010078 ARM_COMPUTE_ASSERT(input.info()->is_resizable());
Michele Di Giorgio4fc10b32021-04-30 18:30:41 +010079 ARM_COMPUTE_ASSERT(output.info()->is_resizable());
Michalis Spyrou6a8d3b62018-08-31 10:07:09 +010080
81 // Allocate tensors
82 input.allocator()->allocate();
Michalis Spyrou6a8d3b62018-08-31 10:07:09 +010083 output.allocator()->allocate();
84
Michele Di Giorgio4fc10b32021-04-30 18:30:41 +010085 ARM_COMPUTE_ASSERT(!input.info()->is_resizable());
Michele Di Giorgio4fc10b32021-04-30 18:30:41 +010086 ARM_COMPUTE_ASSERT(!output.info()->is_resizable());
Michalis Spyrou6a8d3b62018-08-31 10:07:09 +010087
88 // Fill tensors
89 fill(AccessorType(input), 0);
Michalis Spyrou6a8d3b62018-08-31 10:07:09 +010090 // Compute function
91 batch_to_space.run();
92
93 return output;
94 }
95
SiCong Li5a7d1572023-03-21 12:00:15 +000096 SimpleTensor<T> compute_reference(const TensorShape &input_shape, const std::vector<int32_t> &block_shape,
97 const CropInfo &crop_info, const TensorShape &output_shape, DataType data_type)
Michalis Spyrou6a8d3b62018-08-31 10:07:09 +010098 {
SiCong Li5a7d1572023-03-21 12:00:15 +000099 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 +0100100 // Create reference
SiCong Li5a7d1572023-03-21 12:00:15 +0000101 SimpleTensor<T> input{ input_shape, data_type };
Michalis Spyrou6a8d3b62018-08-31 10:07:09 +0100102
103 // Fill reference
104 fill(input, 0);
Michalis Spyrou6a8d3b62018-08-31 10:07:09 +0100105
106 // Compute reference
SiCong Li5a7d1572023-03-21 12:00:15 +0000107 return reference::batch_to_space(input, block_shape, crop_info, output_shape);
Michalis Spyrou6a8d3b62018-08-31 10:07:09 +0100108 }
109
110 TensorType _target{};
111 SimpleTensor<T> _reference{};
112};
SiCong Li4ceb4532023-03-13 15:02:23 +0000113
Michalis Spyrou6a8d3b62018-08-31 10:07:09 +0100114} // namespace validation
115} // namespace test
116} // namespace arm_compute
117#endif /* ARM_COMPUTE_TEST_BATCH_TO_SPACE_LAYER_FIXTURE */