Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for device_name_prefix (0.2 sec)

  1. tensorflow/compiler/jit/pjrt_base_device.h

            shape_determination_fns;
    
        Options(std::string device_name_prefix, std::string device_name,
                int device_ordinal, std::string compilation_device_name,
                std::vector<XlaShapeLayoutHelpers::ShapeDeterminationFns>
                    shape_determination_fns)
            : device_name_prefix(device_name_prefix),
              device_name(device_name),
              device_ordinal(device_ordinal),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/pjrt_base_device.cc

    PjRtBaseDevice::PjRtBaseDevice(const SessionOptions& session_options,
                                   const Options& options)
        : LocalDevice(session_options,
                      BuildPjRtBaseDeviceAttributes(options.device_name_prefix,
                                                    options.device_name,
                                                    options.device_ordinal)),
          metadata_(DeviceType(options.compilation_device_name),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/xla_cpu_device.cc

      (void)registrations;
    
      TF_ASSIGN_OR_RETURN(auto platform,
                          se::PlatformManager::PlatformWithName("Host"));
    
      XlaDevice::Options options;
      options.platform = platform;
      options.device_name_prefix = name_prefix;
      options.device_name = DEVICE_XLA_CPU;
      options.device_ordinal = 0;
      options.compilation_device_name = DEVICE_CPU_XLA_JIT;
      options.use_multiple_streams = false;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/xla_gpu_device.cc

          gpu_ids->insert(i);
        }
      }
      for (int i : *gpu_ids) {
        XlaDevice::Options options;
        options.platform = platform.value();
        options.device_name_prefix = name_prefix;
        options.device_name = DEVICE_XLA_GPU;
        options.device_ordinal = i;
        options.compilation_device_name = DEVICE_GPU_XLA_JIT;
        options.use_multiple_streams = true;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/xla_device.h

      struct Options {
        // The StreamExecutor platform. Not owned. Must be non-null.
        se::Platform* platform = nullptr;
    
        // The device name's prefix (e.g., "/task:7")
        string device_name_prefix;
    
        // The name of the XLA device (e.g., "XLA_CPU")
        string device_name;
    
        // The number of the device.
        int device_ordinal = -1;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/xla_tpu_device.cc

      for (int i = 0; i < device_count; ++i) {
        TF_RETURN_IF_ERROR(tpu::TpuNodeContext::Initialize(i));
    
        XlaDevice::Options options;
        options.platform = platform;
        options.device_name_prefix = name_prefix;
        options.device_name = DEVICE_TPU_NODE;
        options.device_ordinal = i;
        options.compilation_device_name = DEVICE_TPU_XLA_JIT;
        options.use_multiple_streams = true;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 22:53:47 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/xla_device.cc

    XlaDevice::XlaDevice(const SessionOptions& session_options,
                         const Options& options)
        : LocalDevice(session_options,
                      BuildXlaDeviceAttributes(options.device_name_prefix,
                                               options.device_name,
                                               options.device_ordinal)),
          xla_metadata_(options.device_ordinal, options.platform,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 21:05:42 UTC 2024
    - 24.3K bytes
    - Viewed (0)
Back to top