Home
last modified time | relevance | path

Searched refs:attr_it (Results 1 – 2 of 2) sorted by relevance

/external/tensorflow/tensorflow/compiler/xla/service/
Dhlo_parser.cc3502 for (const auto& attr_it : attrs) { in ParseSubAttributes() local
3503 if (attr_it.second.required && in ParseSubAttributes()
3504 seen_attrs.find(attr_it.first) == seen_attrs.end()) { in ParseSubAttributes()
3506 attr_it.first)); in ParseSubAttributes()
3523 for (const auto& attr_it : attrs) { in ParseAttributes() local
3524 if (attr_it.second.required && in ParseAttributes()
3525 seen_attrs.find(attr_it.first) == seen_attrs.end()) { in ParseAttributes()
3527 attr_it.first)); in ParseAttributes()
3545 auto attr_it = attrs.find(name); in ParseAttributeHelper() local
3546 if (attr_it == attrs.end()) { in ParseAttributeHelper()
[all …]
/external/tensorflow/tensorflow/core/framework/
Dfunction.cc1640 const auto attr_it = func_def->attr().find(kApiImplements); in ReachableFunctions() local
1641 if (attr_it != func_def->attr().end() && in ReachableFunctions()
1642 attr_it->second.s() == api_name) { in ReachableFunctions()
1683 const auto attr_it = func->attr().find(kApiImplements); in ReachableFunctions() local
1684 if (attr_it != func->attr().end()) { in ReachableFunctions()
1685 add_function_with_api_interface(attr_it->second.s()); in ReachableFunctions()