1*c217d954SCole Faust /* 2*c217d954SCole Faust * Copyright (c) 2021 Arm Limited. 3*c217d954SCole Faust * 4*c217d954SCole Faust * SPDX-License-Identifier: MIT 5*c217d954SCole Faust * 6*c217d954SCole Faust * Permission is hereby granted, free of charge, to any person obtaining a copy 7*c217d954SCole Faust * of this software and associated documentation files (the "Software"), to 8*c217d954SCole Faust * deal in the Software without restriction, including without limitation the 9*c217d954SCole Faust * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or 10*c217d954SCole Faust * sell copies of the Software, and to permit persons to whom the Software is 11*c217d954SCole Faust * furnished to do so, subject to the following conditions: 12*c217d954SCole Faust * 13*c217d954SCole Faust * The above copyright notice and this permission notice shall be included in all 14*c217d954SCole Faust * copies or substantial portions of the Software. 15*c217d954SCole Faust * 16*c217d954SCole Faust * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17*c217d954SCole Faust * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18*c217d954SCole Faust * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19*c217d954SCole Faust * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20*c217d954SCole Faust * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21*c217d954SCole Faust * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 22*c217d954SCole Faust * SOFTWARE. 23*c217d954SCole Faust */ 24*c217d954SCole Faust #ifndef ARM_COMPUTE_TEST_ROIPOOLINGLAYER_FIXTURE 25*c217d954SCole Faust #define ARM_COMPUTE_TEST_ROIPOOLINGLAYER_FIXTURE 26*c217d954SCole Faust 27*c217d954SCole Faust #include "arm_compute/core/TensorShape.h" 28*c217d954SCole Faust #include "arm_compute/core/Types.h" 29*c217d954SCole Faust #include "arm_compute/core/utils/misc/ShapeCalculator.h" 30*c217d954SCole Faust #include "tests/AssetsLibrary.h" 31*c217d954SCole Faust #include "tests/Globals.h" 32*c217d954SCole Faust #include "tests/IAccessor.h" 33*c217d954SCole Faust #include "tests/framework/Asserts.h" 34*c217d954SCole Faust #include "tests/framework/Fixture.h" 35*c217d954SCole Faust #include "tests/validation/Helpers.h" 36*c217d954SCole Faust #include "tests/validation/reference/ROIPoolingLayer.h" 37*c217d954SCole Faust 38*c217d954SCole Faust namespace arm_compute 39*c217d954SCole Faust { 40*c217d954SCole Faust namespace test 41*c217d954SCole Faust { 42*c217d954SCole Faust namespace validation 43*c217d954SCole Faust { 44*c217d954SCole Faust template <typename TensorType, typename AccessorType, typename FunctionType, typename T> 45*c217d954SCole Faust class ROIPoolingLayerGenericFixture : public framework::Fixture 46*c217d954SCole Faust { 47*c217d954SCole Faust public: 48*c217d954SCole Faust template <typename...> setup(TensorShape input_shape,const ROIPoolingLayerInfo pool_info,TensorShape rois_shape,DataType data_type,DataLayout data_layout,QuantizationInfo qinfo,QuantizationInfo output_qinfo)49*c217d954SCole Faust void setup(TensorShape input_shape, const ROIPoolingLayerInfo pool_info, TensorShape rois_shape, DataType data_type, DataLayout data_layout, QuantizationInfo qinfo, QuantizationInfo output_qinfo) 50*c217d954SCole Faust { 51*c217d954SCole Faust _target = compute_target(input_shape, data_type, data_layout, pool_info, rois_shape, qinfo, output_qinfo); 52*c217d954SCole Faust _reference = compute_reference(input_shape, data_type, pool_info, rois_shape, qinfo, output_qinfo); 53*c217d954SCole Faust } 54*c217d954SCole Faust 55*c217d954SCole Faust protected: 56*c217d954SCole Faust template <typename U> fill(U && tensor)57*c217d954SCole Faust void fill(U &&tensor) 58*c217d954SCole Faust { 59*c217d954SCole Faust library->fill_tensor_uniform(tensor, 0); 60*c217d954SCole Faust } 61*c217d954SCole Faust 62*c217d954SCole Faust template <typename U> 63*c217d954SCole Faust void generate_rois(U &&rois, const TensorShape &shape, const ROIPoolingLayerInfo &pool_info, TensorShape rois_shape, DataLayout data_layout = DataLayout::NCHW) 64*c217d954SCole Faust { 65*c217d954SCole Faust const size_t values_per_roi = rois_shape.x(); 66*c217d954SCole Faust const size_t num_rois = rois_shape.y(); 67*c217d954SCole Faust 68*c217d954SCole Faust std::mt19937 gen(library->seed()); 69*c217d954SCole Faust uint16_t *rois_ptr = static_cast<uint16_t *>(rois.data()); 70*c217d954SCole Faust 71*c217d954SCole Faust const float pool_width = pool_info.pooled_width(); 72*c217d954SCole Faust const float pool_height = pool_info.pooled_height(); 73*c217d954SCole Faust const float roi_scale = pool_info.spatial_scale(); 74*c217d954SCole Faust 75*c217d954SCole Faust // Calculate distribution bounds 76*c217d954SCole Faust const auto scaled_width = static_cast<float>((shape[get_data_layout_dimension_index(data_layout, DataLayoutDimension::WIDTH)] / roi_scale) / pool_width); 77*c217d954SCole Faust const auto scaled_height = static_cast<float>((shape[get_data_layout_dimension_index(data_layout, DataLayoutDimension::HEIGHT)] / roi_scale) / pool_height); 78*c217d954SCole Faust const auto min_width = static_cast<float>(pool_width / roi_scale); 79*c217d954SCole Faust const auto min_height = static_cast<float>(pool_height / roi_scale); 80*c217d954SCole Faust 81*c217d954SCole Faust // Create distributions 82*c217d954SCole Faust std::uniform_int_distribution<int> dist_batch(0, shape[3] - 1); 83*c217d954SCole Faust std::uniform_int_distribution<> dist_x1(0, scaled_width); 84*c217d954SCole Faust std::uniform_int_distribution<> dist_y1(0, scaled_height); 85*c217d954SCole Faust std::uniform_int_distribution<> dist_w(min_width, std::max(float(min_width), (pool_width - 2) * scaled_width)); 86*c217d954SCole Faust std::uniform_int_distribution<> dist_h(min_height, std::max(float(min_height), (pool_height - 2) * scaled_height)); 87*c217d954SCole Faust 88*c217d954SCole Faust for(unsigned int pw = 0; pw < num_rois; ++pw) 89*c217d954SCole Faust { 90*c217d954SCole Faust const auto batch_idx = dist_batch(gen); 91*c217d954SCole Faust const auto x1 = dist_x1(gen); 92*c217d954SCole Faust const auto y1 = dist_y1(gen); 93*c217d954SCole Faust const auto x2 = x1 + dist_w(gen); 94*c217d954SCole Faust const auto y2 = y1 + dist_h(gen); 95*c217d954SCole Faust 96*c217d954SCole Faust rois_ptr[values_per_roi * pw] = batch_idx; 97*c217d954SCole Faust rois_ptr[values_per_roi * pw + 1] = static_cast<uint16_t>(x1); 98*c217d954SCole Faust rois_ptr[values_per_roi * pw + 2] = static_cast<uint16_t>(y1); 99*c217d954SCole Faust rois_ptr[values_per_roi * pw + 3] = static_cast<uint16_t>(x2); 100*c217d954SCole Faust rois_ptr[values_per_roi * pw + 4] = static_cast<uint16_t>(y2); 101*c217d954SCole Faust } 102*c217d954SCole Faust } 103*c217d954SCole Faust compute_target(TensorShape input_shape,DataType data_type,DataLayout data_layout,const ROIPoolingLayerInfo & pool_info,const TensorShape rois_shape,const QuantizationInfo & qinfo,const QuantizationInfo & output_qinfo)104*c217d954SCole Faust TensorType compute_target(TensorShape input_shape, 105*c217d954SCole Faust DataType data_type, 106*c217d954SCole Faust DataLayout data_layout, 107*c217d954SCole Faust const ROIPoolingLayerInfo &pool_info, 108*c217d954SCole Faust const TensorShape rois_shape, 109*c217d954SCole Faust const QuantizationInfo &qinfo, 110*c217d954SCole Faust const QuantizationInfo &output_qinfo) 111*c217d954SCole Faust { 112*c217d954SCole Faust const QuantizationInfo rois_qinfo = is_data_type_quantized(data_type) ? QuantizationInfo(0.125f, 0) : QuantizationInfo(); 113*c217d954SCole Faust 114*c217d954SCole Faust // Create tensors 115*c217d954SCole Faust TensorType src = create_tensor<TensorType>(input_shape, data_type, 1, qinfo, data_layout); 116*c217d954SCole Faust TensorType rois_tensor = create_tensor<TensorType>(rois_shape, _rois_data_type, 1, rois_qinfo); 117*c217d954SCole Faust 118*c217d954SCole Faust // Initialise shape and declare output tensor dst 119*c217d954SCole Faust const TensorShape dst_shape; 120*c217d954SCole Faust TensorType dst = create_tensor<TensorType>(dst_shape, data_type, 1, output_qinfo, data_layout); 121*c217d954SCole Faust 122*c217d954SCole Faust // Create and configure function 123*c217d954SCole Faust FunctionType roi_pool_layer; 124*c217d954SCole Faust roi_pool_layer.configure(&src, &rois_tensor, &dst, pool_info); 125*c217d954SCole Faust 126*c217d954SCole Faust ARM_COMPUTE_ASSERT(src.info()->is_resizable()); 127*c217d954SCole Faust ARM_COMPUTE_ASSERT(rois_tensor.info()->is_resizable()); 128*c217d954SCole Faust ARM_COMPUTE_ASSERT(dst.info()->is_resizable()); 129*c217d954SCole Faust 130*c217d954SCole Faust // Allocate tensors 131*c217d954SCole Faust src.allocator()->allocate(); 132*c217d954SCole Faust rois_tensor.allocator()->allocate(); 133*c217d954SCole Faust dst.allocator()->allocate(); 134*c217d954SCole Faust 135*c217d954SCole Faust ARM_COMPUTE_ASSERT(!src.info()->is_resizable()); 136*c217d954SCole Faust ARM_COMPUTE_ASSERT(!rois_tensor.info()->is_resizable()); 137*c217d954SCole Faust ARM_COMPUTE_ASSERT(!dst.info()->is_resizable()); 138*c217d954SCole Faust 139*c217d954SCole Faust // Fill tensors 140*c217d954SCole Faust fill(AccessorType(src)); 141*c217d954SCole Faust generate_rois(AccessorType(rois_tensor), input_shape, pool_info, rois_shape, data_layout); 142*c217d954SCole Faust 143*c217d954SCole Faust // Compute function 144*c217d954SCole Faust roi_pool_layer.run(); 145*c217d954SCole Faust 146*c217d954SCole Faust return dst; 147*c217d954SCole Faust } 148*c217d954SCole Faust compute_reference(const TensorShape & input_shape,DataType data_type,const ROIPoolingLayerInfo & pool_info,const TensorShape rois_shape,const QuantizationInfo & qinfo,const QuantizationInfo & output_qinfo)149*c217d954SCole Faust SimpleTensor<T> compute_reference(const TensorShape &input_shape, 150*c217d954SCole Faust DataType data_type, 151*c217d954SCole Faust const ROIPoolingLayerInfo &pool_info, 152*c217d954SCole Faust const TensorShape rois_shape, 153*c217d954SCole Faust const QuantizationInfo &qinfo, 154*c217d954SCole Faust const QuantizationInfo &output_qinfo) 155*c217d954SCole Faust { 156*c217d954SCole Faust // Create reference tensor 157*c217d954SCole Faust SimpleTensor<T> src{ input_shape, data_type, 1, qinfo }; 158*c217d954SCole Faust const QuantizationInfo rois_qinfo = is_data_type_quantized(data_type) ? QuantizationInfo(0.125f, 0) : QuantizationInfo(); 159*c217d954SCole Faust SimpleTensor<uint16_t> rois_tensor{ rois_shape, _rois_data_type, 1, rois_qinfo }; 160*c217d954SCole Faust 161*c217d954SCole Faust // Fill reference tensor 162*c217d954SCole Faust fill(src); 163*c217d954SCole Faust generate_rois(rois_tensor, input_shape, pool_info, rois_shape); 164*c217d954SCole Faust 165*c217d954SCole Faust return reference::roi_pool_layer(src, rois_tensor, pool_info, output_qinfo); 166*c217d954SCole Faust } 167*c217d954SCole Faust 168*c217d954SCole Faust TensorType _target{}; 169*c217d954SCole Faust SimpleTensor<T> _reference{}; 170*c217d954SCole Faust const DataType _rois_data_type{ DataType::U16 }; 171*c217d954SCole Faust }; 172*c217d954SCole Faust 173*c217d954SCole Faust template <typename TensorType, typename AccessorType, typename FunctionType, typename T> 174*c217d954SCole Faust class ROIPoolingLayerQuantizedFixture : public ROIPoolingLayerGenericFixture<TensorType, AccessorType, FunctionType, T> 175*c217d954SCole Faust { 176*c217d954SCole Faust public: 177*c217d954SCole Faust template <typename...> setup(TensorShape input_shape,const ROIPoolingLayerInfo pool_info,TensorShape rois_shape,DataType data_type,DataLayout data_layout,QuantizationInfo qinfo,QuantizationInfo output_qinfo)178*c217d954SCole Faust void setup(TensorShape input_shape, const ROIPoolingLayerInfo pool_info, TensorShape rois_shape, DataType data_type, 179*c217d954SCole Faust DataLayout data_layout, QuantizationInfo qinfo, QuantizationInfo output_qinfo) 180*c217d954SCole Faust { 181*c217d954SCole Faust ROIPoolingLayerGenericFixture<TensorType, AccessorType, FunctionType, T>::setup(input_shape, pool_info, rois_shape, 182*c217d954SCole Faust data_type, data_layout, qinfo, output_qinfo); 183*c217d954SCole Faust } 184*c217d954SCole Faust }; 185*c217d954SCole Faust 186*c217d954SCole Faust template <typename TensorType, typename AccessorType, typename FunctionType, typename T> 187*c217d954SCole Faust class ROIPoolingLayerFixture : public ROIPoolingLayerGenericFixture<TensorType, AccessorType, FunctionType, T> 188*c217d954SCole Faust { 189*c217d954SCole Faust public: 190*c217d954SCole Faust template <typename...> setup(TensorShape input_shape,const ROIPoolingLayerInfo pool_info,TensorShape rois_shape,DataType data_type,DataLayout data_layout)191*c217d954SCole Faust void setup(TensorShape input_shape, const ROIPoolingLayerInfo pool_info, TensorShape rois_shape, DataType data_type, DataLayout data_layout) 192*c217d954SCole Faust { 193*c217d954SCole Faust ROIPoolingLayerGenericFixture<TensorType, AccessorType, FunctionType, T>::setup(input_shape, pool_info, rois_shape, data_type, data_layout, 194*c217d954SCole Faust QuantizationInfo(), QuantizationInfo()); 195*c217d954SCole Faust } 196*c217d954SCole Faust }; 197*c217d954SCole Faust 198*c217d954SCole Faust } // namespace validation 199*c217d954SCole Faust } // namespace test 200*c217d954SCole Faust } // namespace arm_compute 201*c217d954SCole Faust 202*c217d954SCole Faust #endif /* ARM_COMPUTE_TEST_ROIPOOLINGLAYER_FIXTURE */