Home
last modified time | relevance | path

Searched refs:y_axis_lower_ (Results 1 – 3 of 3) sorted by relevance

/third_party/mindspore/mindspore/lite/src/runtime/kernel/arm/int8/
Dresize_int8.cc47 free(resize_quant_arg_.y_axis_lower_); in FreeResizeBiLinear()
48 resize_quant_arg_.y_axis_lower_ = nullptr; in FreeResizeBiLinear()
62 free(resize_float_quant_arg_.y_axis_lower_); in FreeFloatResizeBiLinear()
63 resize_float_quant_arg_.y_axis_lower_ = nullptr; in FreeFloatResizeBiLinear()
135 …resize_quant_arg_.y_axis_lower_ = reinterpret_cast<int32_t *>(malloc(out_shape.at(kNHWC_H) * sizeo… in InitResizeQuantArg()
136 if (resize_quant_arg_.y_axis_lower_ == nullptr) { in InitResizeQuantArg()
171 resize_quant_arg_.y_axis_lower_[i] = std::max(scaled_index / (1 << OFFSET_BASE), 0); in CalInterpolationRange()
207 …resize_float_quant_arg_.y_axis_lower_ = reinterpret_cast<int32_t *>(malloc(out_shape[kNHWC_H] * si… in InitResizeFloatQuantArg()
208 if (resize_float_quant_arg_.y_axis_lower_ == nullptr) { in InitResizeFloatQuantArg()
244 resize_float_quant_arg_.y_axis_lower_[i] = std::max(lower_index, 0); in CalFloatInterpolationRange()
/third_party/mindspore/mindspore/ccsrc/backend/kernel_compiler/cpu/nnacl/int8/
Dquantize.h175 int32_t *y_axis_lower_; member
186 int32_t *y_axis_lower_; member
Dresize_int8.c37 int32_t y_lower_value = quant_arg.y_axis_lower_[ori_out_h]; in ResizeBilinearInt8()
86 int32_t y_lower_value = quant_arg.y_axis_lower_[ori_out_h]; in ResizeBilinearWithFloatScaleInt8()