Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for DestroyPlatformFns (0.29 sec)

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

                                 SP_PlatformFns* platform_fns);
    void PopulateDefaultPlatformRegistrationParams(
        SE_PlatformRegistrationParams* const params);
    
    void DestroyPlatform(SP_Platform* platform);
    void DestroyPlatformFns(SP_PlatformFns* platform_fns);
    
    }  // namespace test_util
    }  // namespace stream_executor
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 17 01:32:30 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/stream_executor/stream_executor_test_util.cc

    void DestroyPlatform(SP_Platform* platform) {}
    void DestroyPlatformFns(SP_PlatformFns* platform_fns) {}
    
    void PopulateDefaultPlatformRegistrationParams(
        SE_PlatformRegistrationParams* const params) {
      PopulateDefaultPlatform(params->platform, params->platform_fns);
      params->destroy_platform = DestroyPlatform;
      params->destroy_platform_fns = DestroyPlatformFns;
    }
    
    }  // namespace test_util
    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_test.cc

      StreamExecutor* GetExecutor(int ordinal) {
        if (!cplatform_) {
          cplatform_ = absl::make_unique<CPlatform>(
              platform_, test_util::DestroyPlatform, platform_fns_,
              test_util::DestroyPlatformFns, device_fns_, se_, timer_fns_);
        }
        absl::StatusOr<StreamExecutor*> maybe_executor =
            cplatform_->ExecutorForDevice(ordinal);
        TF_CHECK_OK(maybe_executor.status());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 19:54:04 UTC 2024
    - 26.5K bytes
    - Viewed (0)
Back to top