Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for XlaDevice (0.15 sec)

  1. tensorflow/compiler/jit/xla_tpu_device.cc

      VLOG(1) << "Creating " << device_count << " TPU devices";
      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;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 22:53:47 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/mark_for_compilation_pass.cc

      if (debug_options_.dump_graphs) {
        DumpGraphToFile("before_mark_for_compilation", *graph_, flib_def_);
      }
    
      // Mark clusters for compilation that:
      // * are placed on a device that requires compilation (an XlaDevice),
      // * are explicitly marked for compilation (_XlaCompile=true), or
      // * have more than debug_options_.xla_min_cluster_size elements (applicable
      //   only if compilation is enabled, otherwise there will be no such
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
Back to top