Home
last modified time | relevance | path

Searched refs:maybe_unknown_device (Results 1 – 1 of 1) sorted by relevance

/external/tensorflow/tensorflow/compiler/jit/
Dxla_cluster_util.cc281 absl::optional<absl::string_view> maybe_unknown_device; in PickDeviceForXlaImpl() local
300 if (maybe_unknown_device) { in PickDeviceForXlaImpl()
304 maybe_unknown_device = device_name; in PickDeviceForXlaImpl()
308 if (maybe_unknown_device && maybe_gpu_device) { in PickDeviceForXlaImpl()
310 "Found both unknown and GPU devices: ", *maybe_unknown_device, ", ", in PickDeviceForXlaImpl()
315 if (maybe_unknown_device && maybe_cpu_device) { in PickDeviceForXlaImpl()
317 "Found both unknown and CPU devices: ", *maybe_unknown_device, ", ", in PickDeviceForXlaImpl()
325 } else if (maybe_unknown_device) { in PickDeviceForXlaImpl()
326 *out_device_picked = string(*maybe_unknown_device); in PickDeviceForXlaImpl()