Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for UpdateEdge (0.11 sec)

  1. tensorflow/c/python_api.cc

      TF_SetFullType(graph, op, full_type_proto);
    }
    
    void SetRequestedDevice(TF_Graph* graph, TF_Operation* op, const char* device) {
      TF_SetRequestedDevice(graph, op, device);
    }
    
    void UpdateEdge(TF_Graph* graph, TF_Output new_src, TF_Input dst,
                    TF_Status* status) {
      TF_UpdateEdge(graph, new_src, dst, status);
    }
    
    void ExtendSession(TF_Session* session, TF_Status* status) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jul 12 18:48:56 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  2. tensorflow/c/python_api.h

                     const TF_Buffer* full_type_proto);
    
    void SetRequestedDevice(TF_Graph* graph, TF_Operation* op, const char* device);
    
    // Updates 'dst' to consume 'new_src'.
    void UpdateEdge(TF_Graph* graph, TF_Output new_src, TF_Input dst,
                    TF_Status* status);
    
    // Extends `session` with any new operations added to its associated graph.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jul 12 18:48:56 UTC 2023
    - 3.5K bytes
    - Viewed (0)
Back to top