Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for AddWithCtrlDependency (0.28 sec)

  1. tensorflow/c/c_test_util.h

                      TF_Status* s, const char* name = "add");
    
    TF_Operation* AddNoCheck(TF_Operation* l, TF_Operation* r, TF_Graph* graph,
                             TF_Status* s, const char* name = "add");
    
    TF_Operation* AddWithCtrlDependency(TF_Operation* l, TF_Operation* r,
                                        TF_Graph* graph, TF_Operation* ctrl_op,
                                        TF_Status* s, const char* name = "add");
    
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Thu Aug 09 01:06:53 UTC 2018
    - 6K bytes
    - Viewed (0)
  2. 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 Nov 05 12:39:12 UTC 2024
    - Last Modified: Thu Jul 20 22:08:54 UTC 2023
    - 63.6K bytes
    - Viewed (0)
  3. 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 Nov 05 12:39:12 UTC 2024
    - Last Modified: Fri Oct 15 03:16:52 UTC 2021
    - 17.8K bytes
    - Viewed (0)
Back to top