aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/common_runtime/sycl/sycl_device.h
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/core/common_runtime/sycl/sycl_device.h')
-rw-r--r--tensorflow/core/common_runtime/sycl/sycl_device.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/tensorflow/core/common_runtime/sycl/sycl_device.h b/tensorflow/core/common_runtime/sycl/sycl_device.h
index b5a72d9476..a5c7c5f0ec 100644
--- a/tensorflow/core/common_runtime/sycl/sycl_device.h
+++ b/tensorflow/core/common_runtime/sycl/sycl_device.h
@@ -34,10 +34,11 @@ class SYCLDevice : public LocalDevice {
Bytes memory_limit, const DeviceLocality &locality,
const string &physical_device_desc, SYCLSelector sycl_selector,
Allocator *cpu_allocator)
- : LocalDevice(options, Device::BuildDeviceAttributes(
- name, DEVICE_SYCL, memory_limit, locality,
- physical_device_desc),
- nullptr),
+ : LocalDevice(
+ options,
+ Device::BuildDeviceAttributes(name, DEVICE_SYCL, memory_limit,
+ locality, physical_device_desc),
+ nullptr),
cpu_allocator_(cpu_allocator),
sycl_queue_(new Eigen::QueueInterface(sycl_selector)),
sycl_device_(new Eigen::SyclDevice(sycl_queue_)),