| 489 | } |
| 490 | |
| 491 | string TensorIdToString(const tf2xla::TensorId& id) { |
| 492 | return absl::StrCat(id.node_name(), ":", id.output_index()); |
| 493 | } |
| 494 | |
| 495 | Status SetNodeShardingFromNeighbors(Node* n, bool out_edges) { |
| 496 | int core = -1; |
no test coverage detected