Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for num_op_nodes (0.25 sec)

  1. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

        // This is an "top-level" outside compilation. Clear the graph, and copy
        // SendFromHost and all its predecessors from `host_graph`.
        std::vector<Node*> nodes;
        nodes.reserve(g->num_op_nodes());
        for (Node* n : g->op_nodes()) {
          nodes.push_back(n);
        }
        for (Node* n : nodes) {
          g->RemoveNode(n);
        }
    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