Home
last modified time | relevance | path

Searched refs:effectiveFilterWidth (Results 1 – 2 of 2) sorted by relevance

/frameworks/ml/nn/common/operations/
DConv2D.cpp526 int32_t effectiveFilterWidth = (filterWidth - 1) * param.dilation_width_factor + 1; in prepare() local
528 NN_RET_CHECK_GT(effectiveFilterWidth, param.padding_left); in prepare()
529 NN_RET_CHECK_GT(effectiveFilterWidth, param.padding_right); in prepare()
/frameworks/ml/nn/common/
DOperationsUtils.cpp380 int32_t effectiveFilterWidth = (filterWidth - 1) * dilation_width_factor + 1; in depthwiseConvPrepare() local
382 NN_RET_CHECK_GT(effectiveFilterWidth, padding_left); in depthwiseConvPrepare()
383 NN_RET_CHECK_GT(effectiveFilterWidth, padding_right); in depthwiseConvPrepare()