Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/lite/delegates/
Dutils.cc51 std::set<std::string>* unsupported_nodes_info) { in Partition() argument
52 const auto prepare_status = PrepareSupportedNodes(unsupported_nodes_info); in Partition()
113 std::set<std::string>* unsupported_nodes_info) { in PrepareSupportedNodes() argument
144 } else if (unsupported_nodes_info) { in PrepareSupportedNodes()
148 unsupported_nodes_info->insert(node_info); in PrepareSupportedNodes()
Dutils.h69 virtual TfLiteStatus Partition(std::set<std::string>* unsupported_nodes_info);
118 std::set<std::string>* unsupported_nodes_info = nullptr);
/external/tensorflow/tensorflow/lite/delegates/gpu/common/
Dmodel_builder.cc2506 std::set<std::string> unsupported_nodes_info; in GetOpsToReplace() local
2507 if (partition_helper.Partition(&unsupported_nodes_info) != kTfLiteOk) { in GetOpsToReplace()
2517 if (!unsupported_nodes_info.empty()) { in GetOpsToReplace()
2518 std::string unsupported = absl::StrJoin(unsupported_nodes_info, "\n"); in GetOpsToReplace()