Searched refs:this_attr (Results 1 – 1 of 1) sorted by relevance
/external/tensorflow/tensorflow/core/kernels/data/ |
D | hash_utils.cc | 377 auto this_attr = this_node->attr().at(attr_key); in CheckNodesEqualNonInput() local 379 TF_RETURN_IF_ERROR(CheckAttrsEqual(attr_key, this_attr, that, that_attr, in CheckNodesEqualNonInput() 415 const AttrValue& this_attr, GraphHasher* that, in CheckAttrsEqual() argument 417 if (this_attr.has_func() != that_attr.has_func()) { in CheckAttrsEqual() 419 "AttrValues are of different types: ", this_attr.DebugString(), in CheckAttrsEqual() 422 if (this_attr.has_func()) { in CheckAttrsEqual() 425 CheckFunctionsEqual(this_attr.func(), that, that_attr.func())); in CheckAttrsEqual() 429 if (this_attr.has_list() != that_attr.has_list()) { in CheckAttrsEqual() 431 "AttrValues are of different types: ", this_attr.DebugString(), in CheckAttrsEqual() 434 if (this_attr.has_list()) { in CheckAttrsEqual() [all …]
|