Home
last modified time | relevance | path

Searched refs:filter_width (Results 1 – 7 of 7) sorted by relevance

/frameworks/ml/nn/runtime/test/generated/models/
Dl2_pool_float_large.model.cpp12 auto filter_width = model->addOperand(&type1); in CreateModel() local
24 model->setOperandValue(filter_width, filter_width_init, sizeof(int32_t) * 1); in CreateModel()
29 …2_POOL_2D, {op1, pad0, pad0, pad0, pad0, stride_width, stride_height, filter_width, filter_height,… in CreateModel()
51 auto filter_width = model->addOperand(&type1); in CreateModel_dynamic_output_shape() local
63 model->setOperandValue(filter_width, filter_width_init, sizeof(int32_t) * 1); in CreateModel_dynamic_output_shape()
68 …2_POOL_2D, {op1, pad0, pad0, pad0, pad0, stride_width, stride_height, filter_width, filter_height,… in CreateModel_dynamic_output_shape()
Dl2_pool_float_large_relaxed.model.cpp12 auto filter_width = model->addOperand(&type1); in CreateModel() local
24 model->setOperandValue(filter_width, filter_width_init, sizeof(int32_t) * 1); in CreateModel()
29 …2_POOL_2D, {op1, pad0, pad0, pad0, pad0, stride_width, stride_height, filter_width, filter_height,… in CreateModel()
53 auto filter_width = model->addOperand(&type1); in CreateModel_dynamic_output_shape() local
65 model->setOperandValue(filter_width, filter_width_init, sizeof(int32_t) * 1); in CreateModel_dynamic_output_shape()
70 …2_POOL_2D, {op1, pad0, pad0, pad0, pad0, stride_width, stride_height, filter_width, filter_height,… in CreateModel_dynamic_output_shape()
/frameworks/ml/nn/common/operations/
DPooling.cpp39 int32_t filter_width, filter_height; member
53 filter_width = context->getInputValue<int32_t>(7); in initialize()
63 filter_width = context->getInputValue<int32_t>(4); in initialize()
74 calculateExplicitPadding(input_width, stride_width, filter_width, padding_implicit, in initialize()
85 NN_RET_CHECK_GT(filter_width, 0); in initialize()
88 NN_RET_CHECK_GT(filter_width, padding_left); in initialize()
89 NN_RET_CHECK_GT(filter_width, padding_right); in initialize()
100 .filter_width = filter_width, in toTfliteParam()
317 uint32_t outWidth = computeOutSize(width, param.filter_width, param.stride_width, in prepare()
DConv2D.cpp98 int32_t filter_width = getSizeOfDimension(filterShape, 2); in initialize() local
100 calculateExplicitPadding(input_width, stride_width, dilation_width_factor, filter_width, in initialize()
/frameworks/ml/nn/runtime/test/specs/V1_0/
Dl2_pool_float_large.mod.py19 filter_width = Int32Scalar("filter_width", 2) variable
28 filter_width, filter_height,
/frameworks/ml/nn/runtime/test/specs/V1_1/
Dl2_pool_float_large_relaxed.mod.py19 filter_width = Int32Scalar("filter_width", 2) variable
28 filter_width, filter_height,
/frameworks/ml/nn/common/
DCpuExecutor.cpp813 int32_t filter_width = getSizeOfDimension(filterShape, 2); in executeOperation() local
816 filter_width, padding_implicit, &padding_left, in executeOperation()
1598 int32_t filter_width = getSizeOfDimension(filterShape, 2); in executeOperation() local
1600 calculateExplicitPadding(input_width, stride_width, filter_width, padding_implicit, in executeOperation()