Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for RegisterXlaDeviceKernels (1.86 sec)

  1. tensorflow/compiler/jit/xla_cpu_device.cc

      registration.cluster_slow_ops = true;
      registration.cluster_inaccurate_ops = true;
      XlaOpRegistry::RegisterCompilationDevice(DEVICE_XLA_CPU, registration);
    
      static XlaDeviceOpRegistrations* registrations =
          RegisterXlaDeviceKernels(DEVICE_XLA_CPU, DEVICE_CPU_XLA_JIT);
      (void)registrations;
    
      TF_ASSIGN_OR_RETURN(auto platform,
                          se::PlatformManager::PlatformWithName("Host"));
    
      XlaDevice::Options options;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/xla_gpu_device.cc

      registration.cluster_inaccurate_ops = true;
      XlaOpRegistry::RegisterCompilationDevice(DEVICE_XLA_GPU, registration);
    
      static XlaDeviceOpRegistrations* registrations =
          RegisterXlaDeviceKernels(DEVICE_XLA_GPU, DEVICE_GPU_XLA_JIT);
      (void)registrations;
    
      auto platform = se::PlatformManager::PlatformWithName(se::GpuPlatformName());
      if (!platform.ok()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 6.6K bytes
    - Viewed (0)
Back to top