| 26 | namespace { |
| 27 | |
| 28 | bool GetColocationConstraints(const Node* node, |
| 29 | std::vector<string>* constraints) { |
| 30 | return TryGetNodeAttr(node->attrs(), |
| 31 | kColocationAttrName, constraints); |
| 32 | } |
| 33 | |
| 34 | std::string GetDeviceNamePrefix(const std::string& device_name) { |
| 35 | std::string prefix_token("device:GPU:"); |
no test coverage detected