diff --git a/tensorflow/core/common_runtime/sycl/sycl_device_factory.cc b/tensorflow/core/common_runtime/sycl/sycl_device_factory.cc index 6de97715283..97c4c2c236e 100644 --- a/tensorflow/core/common_runtime/sycl/sycl_device_factory.cc +++ b/tensorflow/core/common_runtime/sycl/sycl_device_factory.cc @@ -29,7 +29,7 @@ class SYCLDeviceFactory : public DeviceFactory { n = iter->second; } for (int i = 0; i < n; i++) { - string name = strings::StrCat(name_prefix, "/sycl:", i); + string name = strings::StrCat(name_prefix, "/device:SYCL:", i); devices->push_back(new SYCLDevice( options, name, Bytes(256 << 20), DeviceLocality(), SYCLDevice::GetShortDeviceDescription(), cpu_allocator()));