[TF] Add operation != to DeviceNameUtils::ParsedName.
PiperOrigin-RevId: 315939384 Change-Id: I3470690a9f9b7c694dd035a7ee7357efb6bf8e5c
This commit is contained in:
parent
f60069b7bb
commit
ee67c83f72
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user