Home
last modified time | relevance | path

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

/packages/modules/NeuralNetworks/common/include/
DOperationsUtils.h148 inline int32_t computeOutSize(int32_t imageSize, int32_t filterSize, int32_t stride, in computeOutSize() function
153 inline int32_t computeOutSize(int32_t imageSize, int32_t filterSize, int32_t stride, in computeOutSize() function
/packages/modules/NeuralNetworks/common/operations/
DPooling.cpp377 uint32_t outWidth = computeOutSize(width, param.filter_width, param.stride_width, in prepare()
379 uint32_t outHeight = computeOutSize(height, param.filter_height, param.stride_height, in prepare()
DDepthwiseConv2D.cpp562 computeOutSize(height, filterHeight, param.stride_height, param.dilation_height_factor, in prepare()
565 computeOutSize(width, filterWidth, param.stride_width, param.dilation_width_factor, in prepare()
DConv2D.cpp683 computeOutSize(width, filterWidth, param.stride_width, param.dilation_width_factor, in prepare()
686 computeOutSize(height, filterHeight, param.stride_height, param.dilation_height_factor, in prepare()
/packages/modules/NeuralNetworks/common/
DOperationsUtils.cpp745 computeOutSize(width, filterWidth, stride_width, padding_left, padding_right); in groupedConvPrepare()
747 computeOutSize(height, filterHeight, stride_height, padding_top, padding_bottom); in groupedConvPrepare()