Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for destroy_device (0.13 sec)

  1. tensorflow/c/experimental/stream_executor/stream_executor.h

    //     params->platform->type = DEVICE_TYPE;
    //     params->platform_fns->get_device_count = get_device_count;
    //     params->platform_fns->create_device = create_device;
    //     params->platform_fns->destroy_device = destroy_device;
    //     ...
    //   }
    
    #define SE_MAJOR 0
    #define SE_MINOR 0
    #define SE_PATCH 1
    
    #ifdef __cplusplus
    extern "C" {
    #endif
    
    typedef struct SP_Stream_st* SP_Stream;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 24 08:40:35 UTC 2022
    - 21.6K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/stream_executor/stream_executor_test_util.cc

      platform->name = kDeviceName;
      platform->type = kDeviceType;
      platform_fns->get_device_count = GetDeviceCount;
      platform_fns->create_device = CreateDevice;
      platform_fns->destroy_device = DestroyDevice;
      platform_fns->create_device_fns = CreateDeviceFns;
      platform_fns->destroy_device_fns = DestroyDeviceFns;
      platform_fns->create_stream_executor = CreateStreamExecutor;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 21 20:09:00 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/stream_executor/stream_executor.cc

                              SP_PLATFORM_FNS_STRUCT_SIZE);
      TF_VALIDATE_NOT_NULL(SP_PlatformFns, platform_fns, create_device);
      TF_VALIDATE_NOT_NULL(SP_PlatformFns, platform_fns, destroy_device);
      TF_VALIDATE_NOT_NULL(SP_PlatformFns, platform_fns, create_stream_executor);
      TF_VALIDATE_NOT_NULL(SP_PlatformFns, platform_fns, destroy_stream_executor);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 14 07:39:19 UTC 2024
    - 27.1K bytes
    - Viewed (0)
Back to top