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.cc2609 for (const auto& attr_it : attrs) { in ParseSubAttributes() local
2610 if (attr_it.second.required && in ParseSubAttributes()
2611 seen_attrs.find(attr_it.first) == seen_attrs.end()) { in ParseSubAttributes()
2613 attr_it.first)); in ParseSubAttributes()
2630 for (const auto& attr_it : attrs) { in ParseAttributes() local
2631 if (attr_it.second.required && in ParseAttributes()
2632 seen_attrs.find(attr_it.first) == seen_attrs.end()) { in ParseAttributes()
2634 attr_it.first)); in ParseAttributes()
2652 auto attr_it = attrs.find(name); in ParseAttributeHelper() local
2653 if (attr_it == attrs.end()) { in ParseAttributeHelper()
[all …]
/external/tensorflow/tensorflow/core/framework/
Dfunction.cc1428 const auto attr_it = func->attr().find(kApiImplements); in ReachableFunctions() local
1429 if (attr_it != func->attr().end()) { in ReachableFunctions()
1430 reachable_api_interface.insert(attr_it->second.s()); in ReachableFunctions()
1444 const auto attr_it = func_def->attr().find(kApiImplements); in ReachableFunctions() local
1445 if (attr_it != func_def->attr().end()) { in ReachableFunctions()
1446 if (reachable_api_interface.contains(attr_it->second.s())) { in ReachableFunctions()