Home
last modified time | relevance | path

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

/frameworks/ml/nn/common/include/
DOperationsUtils.h163 inline int32_t computeOutSize(int32_t imageSize, int32_t filterSize, int32_t stride, in computeOutSize() function
168 inline int32_t computeOutSize(int32_t imageSize, int32_t filterSize, int32_t stride, in computeOutSize() function
/frameworks/ml/nn/common/
DOperationsUtils.cpp387 uint32_t outWidth = computeOutSize(width, filterWidth, stride_width, dilation_width_factor, in depthwiseConvPrepare()
389 uint32_t outHeight = computeOutSize(height, filterHeight, stride_height, dilation_height_factor, in depthwiseConvPrepare()
902 computeOutSize(width, filterWidth, stride_width, padding_left, padding_right); in groupedConvPrepare()
904 computeOutSize(height, filterHeight, stride_height, padding_top, padding_bottom); in groupedConvPrepare()
/frameworks/ml/nn/common/operations/
DPooling.cpp317 uint32_t outWidth = computeOutSize(width, param.filter_width, param.stride_width, in prepare()
319 uint32_t outHeight = computeOutSize(height, param.filter_height, param.stride_height, in prepare()
DConv2D.cpp534 computeOutSize(width, filterWidth, param.stride_width, param.dilation_width_factor, in prepare()
537 computeOutSize(height, filterHeight, param.stride_height, param.dilation_height_factor, in prepare()