Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for device_name_prefix (0.49 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)
Back to top