Home
last modified time | relevance | path

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

/packages/modules/NeuralNetworks/common/cpu_operations/
DConv2D.cpp65 int32_t dilation_width_factor = 1, dilation_height_factor = 1; member
82 dilation_width_factor = context->getInputValue<int32_t>(8); in initialize()
98 dilation_width_factor = context->getInputValue<int32_t>(11); in initialize()
111 calculateExplicitPadding(input_width, stride_width, dilation_width_factor, filter_width, in initialize()
123 NN_RET_CHECK_GT(dilation_width_factor, 0); in initialize()
176 int32_t dilation_width_factor, int32_t dilation_height_factor) { in needim2colData() argument
185 const bool need_dilated_im2col = dilation_width_factor != 1 || dilation_height_factor != 1; in needim2colData()
195 int32_t dilation_width_factor, int32_t dilation_height_factor, int32_t activation, in convNhwc() argument
209 dilation_width_factor, dilation_height_factor); in convNhwc()
214 dilation_width_factor, dilation_height_factor, paddingWidth, paddingHeight, in convNhwc()
[all …]
DDepthwiseConv2D.cpp49 int32_t dilation_width_factor = 1, dilation_height_factor = 1; member
68 dilation_width_factor = context->getInputValue<int32_t>(9); in initialize()
85 dilation_width_factor = context->getInputValue<int32_t>(12); in initialize()
98 calculateExplicitPadding(input_width, stride_width, dilation_width_factor, filter_width, in initialize()
110 NN_RET_CHECK_GT(dilation_width_factor, 0); in initialize()
148 .dilation_width_factor = static_cast<int16>(dilationWidthFactor), in depthwiseConvNhwc()
219 .dilation_width_factor = static_cast<int16>(dilationWidthFactor), in depthwiseConvNhwc()
451 int32_t effectiveFilterWidth = (filterWidth - 1) * param.dilation_width_factor + 1; in prepare()
462 computeOutSize(width, filterWidth, param.stride_width, param.dilation_width_factor, in prepare()
490 param.dilation_width_factor, param.dilation_height_factor, in execute()
[all …]
/packages/modules/NeuralNetworks/driver/sample_hidl/
DSampleDriverFloatXNNPACK.cpp343 int32_t dilation_width_factor, in CheckConvolutionParams() argument
352 if (dilation_width_factor <= 0) { in CheckConvolutionParams()
362 int32_t stride_width, int32_t stride_height, int32_t dilation_width_factor, in CheckDepthwiseConvolutionParams() argument
378 if (dilation_width_factor <= 0) { in CheckDepthwiseConvolutionParams()
723 int32_t dilation_width_factor = 1; in VisitConv2DNode() local
740 dilation_width_factor = getScalarData<int32_t>(operands[ins[11]]); in VisitConv2DNode()
751 dilation_width_factor = getScalarData<int32_t>(operands[ins[8]]); in VisitConv2DNode()
756 stride_width, stride_height, dilation_width_factor, dilation_height_factor)); in VisitConv2DNode()
776 static_cast<uint32_t>(dilation_width_factor), in VisitConv2DNode()
823 int32_t dilation_width_factor = 1; in VisitDepthwiseConv2DNode() local
[all …]
/packages/modules/NeuralNetworks/common/include/
DOperationsExecutionUtils.h227 int32_t depth_multiplier, int32_t dilation_width_factor,