Searched refs:x_rights_ (Results 1 – 5 of 5) sorted by relevance
/third_party/mindspore/mindspore/lite/src/runtime/kernel/arm/fp32/ |
D | resize_fp32.h | 28 int *x_rights_; member 34 x_rights_ = nullptr; in ResizeCoordinate() 44 if (x_rights_ != nullptr) { in FreeData() 45 free(x_rights_); in FreeData() 46 x_rights_ = nullptr; in FreeData()
|
D | crop_and_resize_fp32.cc | 76 …x_rights_ = reinterpret_cast<int *>(ms_context_->allocator->Malloc(sizeof(int) * new_width_ * batc… in MallocTmpBuffer() 77 if (x_rights_ == nullptr) { in MallocTmpBuffer() 100 ms_context_->allocator->Free(x_rights_); in FreeTmpBuffer() 107 x_rights_ = nullptr; in FreeTmpBuffer() 144 … out_tensors_.at(0)->shape().data(), y_bottoms_, y_tops_, x_lefts_, x_rights_, in RunImpl() 164 x_lefts_, x_rights_, y_bottom_weights_, x_left_weights_); in Run()
|
D | resize_fp32.cc | 125 … coordinate_.x_rights_ = reinterpret_cast<int *>(malloc(static_cast<int>(sizeof(int)) * x_len)); in MallocTmpBuffer() 126 CHECK_MALLOC_RES(coordinate_.x_rights_, RET_NULL_PTR); in MallocTmpBuffer() 193 … coordinate_.y_bottoms_, coordinate_.y_tops_, coordinate_.x_lefts_, coordinate_.x_rights_, in RunImpl() 228 coordinate_.x_rights_, y_weights_, x_weights_); in ResizePrepare()
|
D | crop_and_resize_fp32.h | 52 int *x_rights_ = nullptr; variable
|
/third_party/mindspore/mindspore/lite/micro/coder/opcoders/nnacl/fp32/ |
D | resize_fp32_coder.cc | 114 coordinate_.x_rights_ = reinterpret_cast<int *>(malloc(sizeof(int) * x_len_)); in MallocTmpBuffer() 115 CHECK_MALLOC_RES(coordinate_.x_rights_, RET_NULL_PTR); in MallocTmpBuffer() 143 … coordinate_.y_tops_, coordinate_.x_lefts_, coordinate_.x_rights_, y_weights_, in ResizePrepare() 173 code.CodeArray("x_rights", coordinate_.x_rights_, sizeof(int) * x_len_, true); in DoCode()
|