1*c217d954SCole Faust /* 2*c217d954SCole Faust * Copyright (c) 2018-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_ROIALIGNLAYER_FIXTURE 25*c217d954SCole Faust #define ARM_COMPUTE_TEST_ROIALIGNLAYER_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/ROIAlignLayer.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, typename TRois> 45*c217d954SCole Faust class ROIAlignLayerGenericFixture : 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 _rois_data_type = is_data_type_quantized_asymmetric(data_type) ? DataType::QASYMM16 : data_type; 52*c217d954SCole Faust _target = compute_target(input_shape, data_type, data_layout, pool_info, rois_shape, qinfo, output_qinfo); 53*c217d954SCole Faust _reference = compute_reference(input_shape, data_type, pool_info, rois_shape, qinfo, output_qinfo); 54*c217d954SCole Faust } 55*c217d954SCole Faust 56*c217d954SCole Faust protected: 57*c217d954SCole Faust template <typename U> fill(U && tensor)58*c217d954SCole Faust void fill(U &&tensor) 59*c217d954SCole Faust { 60*c217d954SCole Faust library->fill_tensor_uniform(tensor, 0); 61*c217d954SCole Faust } 62*c217d954SCole Faust 63*c217d954SCole Faust template <typename U> 64*c217d954SCole Faust void generate_rois(U &&rois, const TensorShape &shape, const ROIPoolingLayerInfo &pool_info, TensorShape rois_shape, DataLayout data_layout = DataLayout::NCHW) 65*c217d954SCole Faust { 66*c217d954SCole Faust const size_t values_per_roi = rois_shape.x(); 67*c217d954SCole Faust const size_t num_rois = rois_shape.y(); 68*c217d954SCole Faust 69*c217d954SCole Faust std::mt19937 gen(library->seed()); 70*c217d954SCole Faust TRois *rois_ptr = static_cast<TRois *>(rois.data()); 71*c217d954SCole Faust 72*c217d954SCole Faust const float pool_width = pool_info.pooled_width(); 73*c217d954SCole Faust const float pool_height = pool_info.pooled_height(); 74*c217d954SCole Faust const float roi_scale = pool_info.spatial_scale(); 75*c217d954SCole Faust 76*c217d954SCole Faust // Calculate distribution bounds 77*c217d954SCole Faust const auto scaled_width = static_cast<float>((shape[get_data_layout_dimension_index(data_layout, DataLayoutDimension::WIDTH)] / roi_scale) / pool_width); 78*c217d954SCole Faust const auto scaled_height = static_cast<float>((shape[get_data_layout_dimension_index(data_layout, DataLayoutDimension::HEIGHT)] / roi_scale) / pool_height); 79*c217d954SCole Faust const auto min_width = static_cast<float>(pool_width / roi_scale); 80*c217d954SCole Faust const auto min_height = static_cast<float>(pool_height / roi_scale); 81*c217d954SCole Faust 82*c217d954SCole Faust // Create distributions 83*c217d954SCole Faust std::uniform_int_distribution<int> dist_batch(0, shape[3] - 1); 84*c217d954SCole Faust std::uniform_int_distribution<> dist_x1(0, scaled_width); 85*c217d954SCole Faust std::uniform_int_distribution<> dist_y1(0, scaled_height); 86*c217d954SCole Faust std::uniform_int_distribution<> dist_w(min_width, std::max(float(min_width), (pool_width - 2) * scaled_width)); 87*c217d954SCole Faust std::uniform_int_distribution<> dist_h(min_height, std::max(float(min_height), (pool_height - 2) * scaled_height)); 88*c217d954SCole Faust 89*c217d954SCole Faust for(unsigned int pw = 0; pw < num_rois; ++pw) 90*c217d954SCole Faust { 91*c217d954SCole Faust const auto batch_idx = dist_batch(gen); 92*c217d954SCole Faust const auto x1 = dist_x1(gen); 93*c217d954SCole Faust const auto y1 = dist_y1(gen); 94*c217d954SCole Faust const auto x2 = x1 + dist_w(gen); 95*c217d954SCole Faust const auto y2 = y1 + dist_h(gen); 96*c217d954SCole Faust 97*c217d954SCole Faust rois_ptr[values_per_roi * pw] = batch_idx; 98*c217d954SCole Faust if(rois.data_type() == DataType::QASYMM16) 99*c217d954SCole Faust { 100*c217d954SCole Faust rois_ptr[values_per_roi * pw + 1] = quantize_qasymm16(static_cast<float>(x1), rois.quantization_info()); 101*c217d954SCole Faust rois_ptr[values_per_roi * pw + 2] = quantize_qasymm16(static_cast<float>(y1), rois.quantization_info()); 102*c217d954SCole Faust rois_ptr[values_per_roi * pw + 3] = quantize_qasymm16(static_cast<float>(x2), rois.quantization_info()); 103*c217d954SCole Faust rois_ptr[values_per_roi * pw + 4] = quantize_qasymm16(static_cast<float>(y2), rois.quantization_info()); 104*c217d954SCole Faust } 105*c217d954SCole Faust else 106*c217d954SCole Faust { 107*c217d954SCole Faust rois_ptr[values_per_roi * pw + 1] = static_cast<TRois>(x1); 108*c217d954SCole Faust rois_ptr[values_per_roi * pw + 2] = static_cast<TRois>(y1); 109*c217d954SCole Faust rois_ptr[values_per_roi * pw + 3] = static_cast<TRois>(x2); 110*c217d954SCole Faust rois_ptr[values_per_roi * pw + 4] = static_cast<TRois>(y2); 111*c217d954SCole Faust } 112*c217d954SCole Faust } 113*c217d954SCole Faust } 114*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)115*c217d954SCole Faust TensorType compute_target(TensorShape input_shape, 116*c217d954SCole Faust DataType data_type, 117*c217d954SCole Faust DataLayout data_layout, 118*c217d954SCole Faust const ROIPoolingLayerInfo &pool_info, 119*c217d954SCole Faust const TensorShape rois_shape, 120*c217d954SCole Faust const QuantizationInfo &qinfo, 121*c217d954SCole Faust const QuantizationInfo &output_qinfo) 122*c217d954SCole Faust { 123*c217d954SCole Faust if(data_layout == DataLayout::NHWC) 124*c217d954SCole Faust { 125*c217d954SCole Faust permute(input_shape, PermutationVector(2U, 0U, 1U)); 126*c217d954SCole Faust } 127*c217d954SCole Faust 128*c217d954SCole Faust const QuantizationInfo rois_qinfo = is_data_type_quantized(data_type) ? QuantizationInfo(0.125f, 0) : QuantizationInfo(); 129*c217d954SCole Faust 130*c217d954SCole Faust // Create tensors 131*c217d954SCole Faust TensorType src = create_tensor<TensorType>(input_shape, data_type, 1, qinfo, data_layout); 132*c217d954SCole Faust TensorType rois_tensor = create_tensor<TensorType>(rois_shape, _rois_data_type, 1, rois_qinfo); 133*c217d954SCole Faust 134*c217d954SCole Faust const TensorShape dst_shape = misc::shape_calculator::compute_roi_align_shape(*(src.info()), *(rois_tensor.info()), pool_info); 135*c217d954SCole Faust TensorType dst = create_tensor<TensorType>(dst_shape, data_type, 1, output_qinfo, data_layout); 136*c217d954SCole Faust 137*c217d954SCole Faust // Create and configure function 138*c217d954SCole Faust FunctionType roi_align_layer; 139*c217d954SCole Faust roi_align_layer.configure(&src, &rois_tensor, &dst, pool_info); 140*c217d954SCole Faust 141*c217d954SCole Faust ARM_COMPUTE_ASSERT(src.info()->is_resizable()); 142*c217d954SCole Faust ARM_COMPUTE_ASSERT(rois_tensor.info()->is_resizable()); 143*c217d954SCole Faust ARM_COMPUTE_ASSERT(dst.info()->is_resizable()); 144*c217d954SCole Faust 145*c217d954SCole Faust // Allocate tensors 146*c217d954SCole Faust src.allocator()->allocate(); 147*c217d954SCole Faust rois_tensor.allocator()->allocate(); 148*c217d954SCole Faust dst.allocator()->allocate(); 149*c217d954SCole Faust 150*c217d954SCole Faust ARM_COMPUTE_ASSERT(!src.info()->is_resizable()); 151*c217d954SCole Faust ARM_COMPUTE_ASSERT(!rois_tensor.info()->is_resizable()); 152*c217d954SCole Faust ARM_COMPUTE_ASSERT(!dst.info()->is_resizable()); 153*c217d954SCole Faust 154*c217d954SCole Faust // Fill tensors 155*c217d954SCole Faust fill(AccessorType(src)); 156*c217d954SCole Faust generate_rois(AccessorType(rois_tensor), input_shape, pool_info, rois_shape, data_layout); 157*c217d954SCole Faust 158*c217d954SCole Faust // Compute function 159*c217d954SCole Faust roi_align_layer.run(); 160*c217d954SCole Faust 161*c217d954SCole Faust return dst; 162*c217d954SCole Faust } 163*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)164*c217d954SCole Faust SimpleTensor<T> compute_reference(const TensorShape &input_shape, 165*c217d954SCole Faust DataType data_type, 166*c217d954SCole Faust const ROIPoolingLayerInfo &pool_info, 167*c217d954SCole Faust const TensorShape rois_shape, 168*c217d954SCole Faust const QuantizationInfo &qinfo, 169*c217d954SCole Faust const QuantizationInfo &output_qinfo) 170*c217d954SCole Faust { 171*c217d954SCole Faust // Create reference tensor 172*c217d954SCole Faust SimpleTensor<T> src{ input_shape, data_type, 1, qinfo }; 173*c217d954SCole Faust const QuantizationInfo rois_qinfo = is_data_type_quantized(data_type) ? QuantizationInfo(0.125f, 0) : QuantizationInfo(); 174*c217d954SCole Faust SimpleTensor<TRois> rois_tensor{ rois_shape, _rois_data_type, 1, rois_qinfo }; 175*c217d954SCole Faust 176*c217d954SCole Faust // Fill reference tensor 177*c217d954SCole Faust fill(src); 178*c217d954SCole Faust generate_rois(rois_tensor, input_shape, pool_info, rois_shape); 179*c217d954SCole Faust 180*c217d954SCole Faust return reference::roi_align_layer(src, rois_tensor, pool_info, output_qinfo); 181*c217d954SCole Faust } 182*c217d954SCole Faust 183*c217d954SCole Faust TensorType _target{}; 184*c217d954SCole Faust SimpleTensor<T> _reference{}; 185*c217d954SCole Faust DataType _rois_data_type{}; 186*c217d954SCole Faust }; 187*c217d954SCole Faust 188*c217d954SCole Faust template <typename TensorType, typename AccessorType, typename FunctionType, typename T, typename TRois> 189*c217d954SCole Faust class ROIAlignLayerFixture : public ROIAlignLayerGenericFixture<TensorType, AccessorType, FunctionType, T, TRois> 190*c217d954SCole Faust { 191*c217d954SCole Faust public: 192*c217d954SCole Faust template <typename...> setup(TensorShape input_shape,const ROIPoolingLayerInfo pool_info,TensorShape rois_shape,DataType data_type,DataLayout data_layout)193*c217d954SCole Faust void setup(TensorShape input_shape, const ROIPoolingLayerInfo pool_info, TensorShape rois_shape, DataType data_type, DataLayout data_layout) 194*c217d954SCole Faust { 195*c217d954SCole Faust ROIAlignLayerGenericFixture<TensorType, AccessorType, FunctionType, T, TRois>::setup(input_shape, pool_info, rois_shape, data_type, data_layout, 196*c217d954SCole Faust QuantizationInfo(), QuantizationInfo()); 197*c217d954SCole Faust } 198*c217d954SCole Faust }; 199*c217d954SCole Faust 200*c217d954SCole Faust template <typename TensorType, typename AccessorType, typename FunctionType, typename T, typename TRois> 201*c217d954SCole Faust class ROIAlignLayerQuantizedFixture : public ROIAlignLayerGenericFixture<TensorType, AccessorType, FunctionType, T, TRois> 202*c217d954SCole Faust { 203*c217d954SCole Faust public: 204*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)205*c217d954SCole Faust void setup(TensorShape input_shape, const ROIPoolingLayerInfo pool_info, TensorShape rois_shape, DataType data_type, 206*c217d954SCole Faust DataLayout data_layout, QuantizationInfo qinfo, QuantizationInfo output_qinfo) 207*c217d954SCole Faust { 208*c217d954SCole Faust ROIAlignLayerGenericFixture<TensorType, AccessorType, FunctionType, T, TRois>::setup(input_shape, pool_info, rois_shape, 209*c217d954SCole Faust data_type, data_layout, qinfo, output_qinfo); 210*c217d954SCole Faust } 211*c217d954SCole Faust }; 212*c217d954SCole Faust } // namespace validation 213*c217d954SCole Faust } // namespace test 214*c217d954SCole Faust } // namespace arm_compute 215*c217d954SCole Faust #endif /* ARM_COMPUTE_TEST_ROIALIGNLAYER_FIXTURE */ 216