Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/core/framework/
Dfunction.cc1702 const auto attr_it = func_def->attr().find(kApiImplements); in ReachableFunctions() local
1703 if (attr_it != func_def->attr().end() && in ReachableFunctions()
1704 attr_it->second.s() == api_name) { in ReachableFunctions()
1745 const auto attr_it = func->attr().find(kApiImplements); in ReachableFunctions() local
1746 if (attr_it != func->attr().end()) { in ReachableFunctions()
1747 add_function_with_api_interface(attr_it->second.s()); in ReachableFunctions()
/external/tensorflow/tensorflow/core/ir/importexport/
Dgraphdef_import.cc564 auto attr_it = function.arg_attr().find(it.index()); in ConvertFunctionDef() local
565 if (attr_it != function.arg_attr().end()) { in ConvertFunctionDef()
566 for (const auto &name_attr : attr_it->second.attr()) { in ConvertFunctionDef()
/external/tensorflow/tensorflow/compiler/xla/service/
Dhlo_parser.cc4020 for (const auto& attr_it : attrs) { in ParseSubAttributes() local
4021 if (attr_it.second.required && in ParseSubAttributes()
4022 seen_attrs.find(attr_it.first) == seen_attrs.end()) { in ParseSubAttributes()
4024 attr_it.first)); in ParseSubAttributes()
4045 for (const auto& attr_it : attrs) { in ParseAttributes() local
4046 if (attr_it.second.required && in ParseAttributes()
4047 seen_attrs.find(attr_it.first) == seen_attrs.end()) { in ParseAttributes()
4049 attr_it.first)); in ParseAttributes()
4067 auto attr_it = attrs.find(name); in ParseAttributeHelper() local
4068 if (attr_it == attrs.end()) { in ParseAttributeHelper()
[all …]