Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for AllocateLoggingDevice (0.22 sec)

  1. tensorflow/c/eager/custom_device_testutil.h

    void RegisterLoggingDevice(TFE_Context* context, const char* name,
                               bool strict_scope_placement, bool* arrived_flag,
                               bool* executed_flag, TF_Status* status);
    void AllocateLoggingDevice(const char* name, bool* arrived_flag,
                               bool* executed_flag, TFE_CustomDevice** device,
                               void** device_info);
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Aug 27 23:39:24 GMT 2020
    - 1.6K bytes
    - Viewed (0)
  2. tensorflow/c/eager/custom_device_testutil.cc

                                         TF_Status* status) {
      return reinterpret_cast<LoggedTensor*>(
                 TFE_TensorHandleDevicePointer(logged_tensor_handle, status))
          ->tensor;
    }
    
    void AllocateLoggingDevice(const char* name, bool* arrived_flag,
                               bool* executed_flag, TFE_CustomDevice** device,
                               void** device_info) {
      TFE_CustomDevice* custom_device = new TFE_CustomDevice;
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Wed Mar 03 20:47:31 GMT 2021
    - 8.3K bytes
    - Viewed (0)
Back to top