Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for list_devices (0.06 sec)

  1. tensorflow/c/c_api.cc

    // ListDevices & SessionListDevices API
    
    void TF_DeleteDeviceList(TF_DeviceList* list) { delete list; }
    
    TF_DeviceList* TF_SessionListDevices(TF_Session* session, TF_Status* status) {
      TF_DeviceList* response = new TF_DeviceList;
      if (session && session->session)
        status->status = session->session->ListDevices(&response->response);
      return response;
    }
    
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Tue May 13 06:30:43 UTC 2025
    - 102.3K bytes
    - Viewed (0)
  2. RELEASE.md

        build for GPU if this is requested in the configure script.
    *   Fix incorrect sampling of small probabilities in CPU/GPU multinomial.
    *   Add a list_devices() API on sessions to list devices within a cluster.
        Additionally, this change augment the ListDevices master API to support
        specifying a session.
    *   Allow uses of over-parameterized separable convolution.
    *   TensorForest multi-regression bug fix.
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Mon Aug 18 20:54:38 UTC 2025
    - 740K bytes
    - Viewed (1)
Back to top