Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for DeviceLocality (0.15 sec)

  1. tensorflow/compiler/jit/pjrt_base_device.cc

      return Device::BuildDeviceAttributes(
          absl::StrCat(name_prefix, "/device:", device_name, ":", device_ordinal),
          DeviceType(device_name), Bytes(16ULL << 30), DeviceLocality(),
          absl::StrCat("device: ", device_name, " device"));
    }
    
    }  // namespace
    
    PjRtBaseDevice::PjRtBaseDevice(const SessionOptions& session_options,
                                   const Options& options)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/xla_tpu_device.cc

      const DeviceAttributes attrs = Device::BuildDeviceAttributes(
          absl::StrCat(name_prefix, "/device:", DEVICE_TPU_SYSTEM, ":", 0),
          DeviceType(DEVICE_TPU_SYSTEM), Bytes(memory_limit), DeviceLocality(),
          absl::StrCat("device: ", DEVICE_TPU_SYSTEM, " device"));
      devices->push_back(std::make_unique<VirtualDevice>(options.env, attrs));
      VLOG(1) << "Created TPU_SYSTEM device. This host has " << device_count
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 22:53:47 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/xla_device.cc

      return Device::BuildDeviceAttributes(
          absl::StrCat(name_prefix, "/device:", device_name, ":", device_ordinal),
          DeviceType(device_name), Bytes(16ULL << 30), DeviceLocality(),
          absl::StrCat("device: ", device_name, " device"));
    }
    
    }  // namespace
    
    XlaDevice::Metadata::Metadata(
        int device_ordinal, se::Platform* platform, const DeviceType& device_type,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 21:05:42 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  4. RELEASE.md

    *   Visualization of embeddings in TensorBoard.
    
    ## Breaking Changes to the API
    
    *   `BusAdjacency` enum replaced with a protocol buffer `DeviceLocality`. PCI
        bus indexing now starts from 1 instead of 0, and `bus_id==0` is used where
        previously `BUS_ANY` was used.
    *   `Env::FileExists` and `FileSystem::FileExists` now return a
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top