| 278 | const char* CPUDevice::type_name() const { return kCPUDeviceTypeName; } |
| 279 | |
| 280 | std::string CPUDevice::ToString() const { return "CPUDevice()"; } |
| 281 | |
| 282 | bool CPUDevice::Equals(const Device& other) const { |
| 283 | return other.type_name() == kCPUDeviceTypeName; |
no outgoing calls
no test coverage detected