| 69 | } |
| 70 | |
| 71 | void LogNotCompilable(const Node& node, absl::string_view reason = "") { |
| 72 | VLOG(3) << "Found uncompilable node " << node.name() << " (op " |
| 73 | << node.type_string() << ")" << (reason.empty() ? "" : ": ") |
| 74 | << reason; |
| 75 | } |
| 76 | |
| 77 | Status MakeCallNodeFromAttribute(const Node& node, const std::string& attr_name, |
| 78 | NodeDef* node_def) { |
no test coverage detected