[TF] Add operation != to DeviceNameUtils::ParsedName.

PiperOrigin-RevId: 315939384
Change-Id: I3470690a9f9b7c694dd035a7ee7357efb6bf8e5c
This commit is contained in:
Bixia Zheng 2020-06-11 11:20:59 -07:00 committed by TensorFlower Gardener
parent f60069b7bb
commit ee67c83f72

View File

@ -74,6 +74,10 @@ class DeviceNameUtils {
(has_id ? (other.has_id && id == other.id) : !other.has_id);
}
bool operator!=(const ParsedName& other) const {
return !operator==(other);
}
bool has_job = false;
string job;
bool has_replica = false;