Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/lite/toco/graph_transformations/
Dconvert_pure_conv_to_depthwise.cc77 auto* depthwiseconv_op = new DepthwiseConvOperator; in Run() local
79 depthwiseconv_op->inputs = conv_op->inputs; in Run()
81 depthwiseconv_op->outputs = {conv_op->outputs[0]}; in Run()
86 depthwiseconv_op->fused_activation_function = in Run()
90 depthwiseconv_op->padding.type = conv_op->padding.type; in Run()
91 depthwiseconv_op->stride_height = conv_op->stride_height; in Run()
92 depthwiseconv_op->stride_width = conv_op->stride_width; in Run()
93 depthwiseconv_op->depth_multiplier = weights_array.shape().dims(0); in Run()
96 model->operators.emplace(conv_it, depthwiseconv_op); in Run()