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.cc464 tensorflow::NodeDef* dc2d_op = tensorflow_graph->add_node(); in ConvertDepthwiseConvOperator() local
465 dc2d_op->set_op("DepthwiseConv2dNative"); in ConvertDepthwiseConvOperator()
466 dc2d_op->set_name(conv_output); in ConvertDepthwiseConvOperator()
467 *dc2d_op->add_input() = src_op.inputs[0]; in ConvertDepthwiseConvOperator()
468 *dc2d_op->add_input() = src_op.inputs[1]; in ConvertDepthwiseConvOperator()
469 (*dc2d_op->mutable_attr())["T"].set_type(DT_FLOAT); in ConvertDepthwiseConvOperator()
496 auto& strides = (*dc2d_op->mutable_attr())["strides"]; in ConvertDepthwiseConvOperator()
506 auto& dilations = (*dc2d_op->mutable_attr())["dilations"]; in ConvertDepthwiseConvOperator()
520 (*dc2d_op->mutable_attr())["padding"].set_s(padding); in ConvertDepthwiseConvOperator()