| 320 | } |
| 321 | |
| 322 | void CopyAttribute(const string& attribute_name, const NodeDef& from, |
| 323 | NodeDef* to_node) { |
| 324 | (*to_node->mutable_attr())[attribute_name] = from.attr().at(attribute_name); |
| 325 | } |
| 326 | |
| 327 | void ConcatAttributeList(const string& attribute_name, const NodeDef& first, |
| 328 | const NodeDef& second, NodeDef* to_node) { |
no test coverage detected