Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for TF_OperationToNodeDef (0.1 sec)

  1. tensorflow/c/c_api.h

                                                   int max_func, TF_Status* status);
    
    // Note: The following function may fail on very large protos in the future.
    
    TF_CAPI_EXPORT extern void TF_OperationToNodeDef(TF_Operation* oper,
                                                     TF_Buffer* output_node_def,
                                                     TF_Status* status);
    
    typedef struct TF_WhileParams {
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  2. tensorflow/c/c_api.cc

          return;
        }
        count++;
      }
      status->status = OutOfRange("Operation only has ", count,
                                  " attributes, can't get the ", i, "th");
    }
    
    void TF_OperationToNodeDef(TF_Operation* oper, TF_Buffer* output_node_def,
                               TF_Status* status) {
      status->status = MessageToBuffer(oper->node.def(), output_node_def);
    }
    
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Sat Oct 12 16:27:48 UTC 2024
    - 102.3K bytes
    - Viewed (0)
Back to top