Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for UpdateEdge (0.19 sec)

  1. tensorflow/compiler/jit/deadness_analysis_test.cc

          CreateDependentLoopInvariantValue(root, "div1", "loop", iv.loop_cond, 0);
      FixupSourceAndSinkEdges(root.graph());
      TF_ASSERT_OK(root.graph()->UpdateEdge(div1.induction_var.node(), 0,
                                            div0.latch.output_true.node(), 0));
      TF_ASSERT_OK(root.graph()->UpdateEdge(div0.induction_var.node(), 0,
                                            div1.latch.output_true.node(), 0));
    
      VLogGraphIfAsked(*root.graph());
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  2. tensorflow/c/c_api_test.cc

      EXPECT_TRUE(found_scalar_const);
      EXPECT_TRUE(found_add);
      EXPECT_TRUE(found_neg);
    
      // Clean up
      TF_DeleteGraph(graph);
      TF_DeleteStatus(s);
    }
    
    TEST(CAPI, UpdateEdge) {
      TF_Status* s = TF_NewStatus();
      TF_Graph* graph = TF_NewGraph();
    
      // Make two scalar constants.
      TF_Operation* one = ScalarConst(1, graph, s, "one");
      ASSERT_EQ(TF_OK, TF_GetCode(s)) << TF_Message(s);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
Back to top