Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for BuildNoopNode (0.13 sec)

  1. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

      {
        auto BuildNoopNode = [](absl::string_view name, Graph* graph) {
          NodeDefBuilder builder(name, "NoOp");
          NodeDef def;
          TF_CHECK_OK(builder.Finalize(&def));
    
          Status status;
          Node* node = graph->AddNode(def, &status);
          TF_CHECK_OK(status);
          return node;
        };
    
        Node* a = BuildNoopNode("a", graph.get());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
Back to top