- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for TF_DeviceListCount (0.06 sec)
-
tensorflow/c/c_api.h
// Deallocates the device list. TF_CAPI_EXPORT extern void TF_DeleteDeviceList(TF_DeviceList* list); // Counts the number of elements in the device list. TF_CAPI_EXPORT extern int TF_DeviceListCount(const TF_DeviceList* list); // Retrieves the full name of the device (e.g. /job:worker/replica:0/...) // The return value will be a pointer to a null terminated string. The caller
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Thu Oct 26 21:08:15 UTC 2023 - 82.3K bytes - Viewed (0) -
tensorflow/c/c_api.cc
TF_DeviceList* response = new TF_DeviceList; if (session && session->session) status->status = session->session->ListDevices(&response->response); return response; } int TF_DeviceListCount(const TF_DeviceList* list) { return list->response.size(); } #define TF_DEVICELIST_METHOD(return_type, method_name, accessor, err_val) \
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Tue May 13 06:30:43 UTC 2025 - 102.3K bytes - Viewed (0) -
tensorflow/c/c_api_test.cc
TF_SessionListDevices(session, s), TF_DeleteDeviceList); TF_DeviceList* device_list = list.get(); CHECK_EQ(TF_OK, TF_GetCode(s)) << TF_Message(s); const int num_devices = TF_DeviceListCount(device_list); LOG(INFO) << "There are " << num_devices << " devices."; for (int i = 0; i < num_devices; ++i) { const char* device_name = TF_DeviceListName(device_list, i, s);
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Fri Dec 27 12:18:10 UTC 2024 - 97K bytes - Viewed (0)