Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for SetRequestedDevice (0.2 sec)

  1. tensorflow/c/python_api.cc

      TF_ClearAttr(graph, op, attr_name, status);
    }
    
    void SetFullType(TF_Graph* graph, TF_Operation* op,
                     const TF_Buffer* full_type_proto) {
      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) {
    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

                   TF_Status* status);
    
    // Sets the experimental_type` field in the node_def Protocol Buffer.
    void SetFullType(TF_Graph* graph, TF_Operation* op,
                     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);
    
    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