Home
last modified time | relevance | path

Searched refs:computeOutSize (Results 1 – 5 of 5) sorted by relevance

/frameworks/ml/nn/common/include/
DOperationsUtils.h164 inline int32_t computeOutSize(int32_t imageSize, int32_t filterSize, int32_t stride, in computeOutSize() function
169 inline int32_t computeOutSize(int32_t imageSize, int32_t filterSize, int32_t stride, in computeOutSize() function
/frameworks/ml/nn/common/operations/
DPooling.cpp372 uint32_t outWidth = computeOutSize(width, param.filter_width, param.stride_width, in prepare()
374 uint32_t outHeight = computeOutSize(height, param.filter_height, param.stride_height, in prepare()
DDepthwiseConv2D.cpp554 computeOutSize(height, filterHeight, param.stride_height, param.dilation_height_factor, in prepare()
557 computeOutSize(width, filterWidth, param.stride_width, param.dilation_width_factor, in prepare()
DConv2D.cpp676 computeOutSize(width, filterWidth, param.stride_width, param.dilation_width_factor, in prepare()
679 computeOutSize(height, filterHeight, param.stride_height, param.dilation_height_factor, in prepare()
/frameworks/ml/nn/common/
DOperationsUtils.cpp747 computeOutSize(width, filterWidth, stride_width, padding_left, padding_right); in groupedConvPrepare()
749 computeOutSize(height, filterHeight, stride_height, padding_top, padding_bottom); in groupedConvPrepare()