Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/tools/graph_transforms/
Dround_weights.cc98 NodeDef rounded_const_node; in RoundWeights() local
99 rounded_const_node.set_op("Const"); in RoundWeights()
100 rounded_const_node.set_name(old_const_node.name()); in RoundWeights()
101 SetNodeAttr("dtype", DT_FLOAT, &rounded_const_node); in RoundWeights()
102 SetNodeTensorAttr<float>("value", rounded_tensor, &rounded_const_node); in RoundWeights()
103 new_nodes->push_back(rounded_const_node); in RoundWeights()