| 1168 | } |
| 1169 | |
| 1170 | Status ColocationGraph::InitializeMembers() { |
| 1171 | for (Node* node : graph_.op_nodes()) { |
| 1172 | Status status = InitializeMember(*node, &members_[node->id()]); |
| 1173 | if (!status.ok()) { |
| 1174 | return AttachDef(status, *node); |
| 1175 | } |
| 1176 | } |
| 1177 | return Status::OK(); |
| 1178 | } |
| 1179 | |
| 1180 | string ColocationGraph::DebugString() const { |
| 1181 | std::unordered_set<int> roots; |