Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for input_node (0.11 sec)

  1. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      for (const auto* input_edge : in_edges) {
        const Node& input_node = *input_edge->src();
        if (input_node.IsSource()) {
          if (in_edges.size() != 1) {
            return errors::FailedPrecondition(
                "The node has other inputs besides the _Source node");
          }
          // We don't import the _SOURCE node.
          continue;
        }
        if (input_node.IsArg() && input_edge->IsControlEdge()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

      }
      if (!ret_node) {
        return errors::Internal("No _Retval node for loop cond function ",
                                loop_cond_func->name());
      }
      Node* loop_cond;
      TF_RETURN_IF_ERROR(ret_node->input_node(0, &loop_cond));
    
      // Build the XlaSendToHost node.
      NodeDefBuilder send_loop_cond_builder(
          absl::StrCat("send_oc_while_cond_", while_node->name()), "XlaSendToHost");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
Back to top