Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for AddNoCheck (0.38 sec)

  1. tensorflow/c/c_test_util.h

                              const char* name = "scalar");
    
    TF_Operation* Add(TF_Operation* l, TF_Operation* r, TF_Graph* graph,
                      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,
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Aug 09 01:06:53 GMT 2018
    - 6K bytes
    - Viewed (0)
  2. tensorflow/c/c_test_util.cc

    TF_Operation* Add(TF_Operation* l, TF_Operation* r, TF_Graph* graph,
                      TF_Status* s, const char* name) {
      TF_Operation* op;
      AddOpHelper(l, r, graph, s, name, &op, true);
      return op;
    }
    
    TF_Operation* AddNoCheck(TF_Operation* l, TF_Operation* r, TF_Graph* graph,
                             TF_Status* s, const char* name) {
      TF_Operation* op;
      AddOpHelper(l, r, graph, s, name, &op, false);
      return op;
    }
    
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Fri Oct 15 03:16:52 GMT 2021
    - 17.8K bytes
    - Viewed (2)
  3. tensorflow/c/c_api_test.cc

      TF_Operation* vec3 = Const(vec3_tensor.get(), graph, status, "vec3");
      ASSERT_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
    
      TF_Operation* add = AddNoCheck(vec2, vec3, graph, status);
      ASSERT_NE(TF_OK, TF_GetCode(status));
      ASSERT_TRUE(add == nullptr);
    
      TF_DeleteGraph(graph);
      TF_DeleteStatus(status);
    }
    
    TEST(CAPI, GetOpDef) {
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 03:35:10 GMT 2024
    - 96.9K bytes
    - Viewed (3)
Back to top