Home
last modified time | relevance | path

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

/frameworks/ml/nn/common/operations/
DConv2D.cpp54 int32_t dilation_width_factor = 1, dilation_height_factor = 1; member
72 dilation_height_factor = context->getInputValue<int32_t>(9); in initialize()
88 dilation_height_factor = context->getInputValue<int32_t>(12); in initialize()
102 calculateExplicitPadding(input_height, stride_height, dilation_height_factor, in initialize()
113 NN_RET_CHECK_GT(dilation_height_factor, 0); in initialize()
168 int32_t dilation_width_factor, int32_t dilation_height_factor, int32_t activation, in convNhwc() argument
183 dilation_width_factor, dilation_height_factor, paddingWidth, in convNhwc()
193 int32_t dilation_width_factor, int32_t dilation_height_factor, int32_t activation, in convNhwc() argument
229 stride_width, stride_height, dilation_width_factor, dilation_height_factor, in convNhwc()
240 int32_t dilation_width_factor, int32_t dilation_height_factor, int32_t activation, in convNhwc() argument
[all …]
DDepthwiseConv2D.cpp87 .dilation_height_factor = static_cast<int16>(dilationHeightFactor), in depthwiseConvFloat32()
131 .dilation_height_factor = static_cast<int16>(dilationHeightFactor), in depthwiseConvQuant8()
/frameworks/ml/nn/common/
DCpuExecutor.cpp755 int32_t dilation_width_factor = 1, dilation_height_factor = 1; in executeOperation() local
772 dilation_height_factor = getScalarData<int32_t>(mOperands[ins[10]]); in executeOperation()
789 dilation_height_factor = getScalarData<int32_t>(mOperands[ins[13]]); in executeOperation()
818 calculateExplicitPadding(input_height, stride_height, dilation_height_factor, in executeOperation()
826 dilation_height_factor, &outShape) || in executeOperation()
838 dilation_width_factor, dilation_height_factor, depth_multiplier, activation, in executeOperation()
846 dilation_width_factor, dilation_height_factor, depth_multiplier, activation, in executeOperation()
856 stride_height, dilation_width_factor, dilation_height_factor, in executeOperation()
865 stride_height, dilation_width_factor, dilation_height_factor, in executeOperation()
DOperationsUtils.cpp354 int32_t dilation_height_factor, Shape* output) { in depthwiseConvPrepare() argument
381 int32_t effectiveFilterHeight = (filterHeight - 1) * dilation_height_factor + 1; in depthwiseConvPrepare()
389 uint32_t outHeight = computeOutSize(height, filterHeight, stride_height, dilation_height_factor, in depthwiseConvPrepare()
/frameworks/ml/nn/common/include/
DOperationsUtils.h300 int32_t dilation_height_factor, Shape* output);