Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for GetArgTypes (0.1 sec)

  1. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

      *graph_out = std::move(out);
      return absl::OkStatus();
    }
    
    // Finds the types of the _Arg nodes, indexed by position.
    static Status GetArgTypes(const Graph& graph, DataTypeVector* types) {
      for (Node* n : graph.op_nodes()) {
        if (n->type_string() == kArgOp) {
          int index;
          TF_RETURN_IF_ERROR(GetNodeAttr(n->attrs(), "index", &index));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
Back to top