Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/lite/toco/
Dexport_tensorflow.cc460 tensorflow::NodeDef* dc2d_op = tensorflow_graph->add_node(); in ConvertDepthwiseConvOperator() local
461 dc2d_op->set_op("DepthwiseConv2dNative"); in ConvertDepthwiseConvOperator()
462 dc2d_op->set_name(conv_output); in ConvertDepthwiseConvOperator()
463 *dc2d_op->add_input() = src_op.inputs[0]; in ConvertDepthwiseConvOperator()
464 *dc2d_op->add_input() = src_op.inputs[1]; in ConvertDepthwiseConvOperator()
465 (*dc2d_op->mutable_attr())["T"].set_type(DT_FLOAT); in ConvertDepthwiseConvOperator()
492 auto& strides = (*dc2d_op->mutable_attr())["strides"]; in ConvertDepthwiseConvOperator()
502 auto& dilations = (*dc2d_op->mutable_attr())["dilations"]; in ConvertDepthwiseConvOperator()
516 (*dc2d_op->mutable_attr())["padding"].set_s(padding); in ConvertDepthwiseConvOperator()