Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for NegHelper (0.08 sec)

  1. tensorflow/c/c_test_util.cc

      TF_OperationDescription* desc = TF_NewOperation(graph, "AddN", name);
      TF_Output inputs[2] = {l, r};
      TF_AddInputList(desc, inputs, 2);
      return TF_FinishOperation(desc, s);
    }
    
    void NegHelper(TF_Operation* n, TF_Graph* graph, TF_Status* s, const char* name,
                   TF_Operation** op) {
      TF_OperationDescription* desc = TF_NewOperation(graph, "Neg", name);
      TF_Output neg_input = {n, 0};
    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