Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for AddWithCtrlDependency (0.07 sec)

  1. tensorflow/c/c_api_function_test.cc

      TF_Operation* feed1 = Placeholder(func_graph_, s_, "feed1");
      TF_Operation* feed2 = Placeholder(func_graph_, s_, "feed2");
      TF_Operation* five = ScalarConst(5, func_graph_, s_);
      TF_Operation* add =
          AddWithCtrlDependency(feed1, feed2, func_graph_, five, s_);
      EXPECT_EQ(TF_OK, TF_GetCode(s_)) << TF_Message(s_);
      Define(-1, {}, {feed1, feed2}, {add}, {});
    
      // Use, run, and verify
    Registered: Tue Dec 30 12:39:10 UTC 2025
    - Last Modified: Mon Nov 17 00:00:38 UTC 2025
    - 63.6K bytes
    - Viewed (1)
  2. tensorflow/c/c_test_util.cc

                             TF_Status* s, const char* name) {
      TF_Operation* op;
      AddOpHelper(l, r, graph, s, name, &op, false);
      return op;
    }
    
    TF_Operation* AddWithCtrlDependency(TF_Operation* l, TF_Operation* r,
                                        TF_Graph* graph, TF_Operation* ctrl_op,
                                        TF_Status* s, const char* name) {
    Registered: Tue Dec 30 12:39:10 UTC 2025
    - Last Modified: Sat Oct 04 05:55:32 UTC 2025
    - 17.8K bytes
    - Viewed (1)
Back to top