Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. tensorflow/c/experimental/stream_executor/stream_executor_test_util.cc

      platform_fns->create_stream_executor = CreateStreamExecutor;
      platform_fns->destroy_stream_executor = DestroyStreamExecutor;
      platform_fns->create_timer_fns = CreateTimerFns;
      platform_fns->destroy_timer_fns = DestroyTimerFns;
    }
    
    /*** Functions for creating SE_PlatformRegistrationParams ***/
    void DestroyPlatform(SP_Platform* platform) {}
    void DestroyPlatformFns(SP_PlatformFns* platform_fns) {}
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 21 20:09:00 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/stream_executor/stream_executor.h

                               TF_Status* status);
    
      void (*destroy_timer_fns)(const SP_Platform* platform,
                                SP_TimerFns* timer_fns);
    } SP_PlatformFns;
    
    #define SP_PLATFORM_FNS_STRUCT_SIZE \
      TF_OFFSET_OF_END(SP_PlatformFns, destroy_timer_fns)
    
    typedef struct SE_PlatformRegistrationParams {
      size_t struct_size;
      void* ext;  // reserved for future use
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 24 08:40:35 UTC 2022
    - 21.6K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/stream_executor/stream_executor.cc

    CPlatform::~CPlatform() {
      executor_cache_.DestroyAllExecutors();
      platform_fns_.destroy_device_fns(&platform_, &device_fns_);
      platform_fns_.destroy_stream_executor(&platform_, &stream_executor_);
      platform_fns_.destroy_timer_fns(&platform_, &timer_fns_);
      destroy_platform_(&platform_);
      destroy_platform_fns_(&platform_fns_);
    }
    
    absl::StatusOr<std::unique_ptr<DeviceDescription>>
    CPlatform::DescriptionForDevice(int ordinal) const {
    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