@@ -112,8 +112,7 @@ int testVector3D()
112112 sycl::queue queue (device_selector);
113113
114114 std::cout << " sycl::queue check - selected device:\n "
115- << queue.get_device ().get_info <sycl::info::device::name>()
116- << std::endl;
115+ << queue.get_device ().get_info <sycl::info::device::name>() << std::endl;
117116
118117 {
119118 queue.submit ([&](sycl::handler &cgh) {
@@ -178,8 +177,7 @@ int testPoint3D()
178177 sycl::queue queue (device_selector);
179178
180179 std::cout << " sycl::queue check - selected device:\n "
181- << queue.get_device ().get_info <sycl::info::device::name>()
182- << std::endl;
180+ << queue.get_device ().get_info <sycl::info::device::name>() << std::endl;
183181
184182 {
185183 queue.submit ([&](sycl::handler &cgh) {
@@ -255,8 +253,7 @@ int testVector2D()
255253 sycl::queue queue (device_selector);
256254
257255 std::cout << " sycl::queue check - selected device:\n "
258- << queue.get_device ().get_info <sycl::info::device::name>()
259- << std::endl;
256+ << queue.get_device ().get_info <sycl::info::device::name>() << std::endl;
260257
261258 {
262259 queue.submit ([&](sycl::handler &cgh) {
@@ -334,8 +331,7 @@ int testPoint2D()
334331 sycl::queue queue{sycl::default_selector_v};
335332
336333 std::cout << " sycl::queue check - selected device:\n "
337- << queue.get_device ().get_info <sycl::info::device::name>()
338- << std::endl;
334+ << queue.get_device ().get_info <sycl::info::device::name>() << std::endl;
339335
340336 {
341337 queue.submit ([&](sycl::handler &cgh) {
@@ -414,8 +410,7 @@ int testRotations3D()
414410 sycl::queue queue (device_selector);
415411
416412 std::cout << " sycl::queue check - selected device:\n "
417- << queue.get_device ().get_info <sycl::info::device::name>()
418- << std::endl;
413+ << queue.get_device ().get_info <sycl::info::device::name>() << std::endl;
419414
420415 {
421416 queue.submit ([&](sycl::handler &cgh) {
@@ -556,8 +551,7 @@ int testTransform3D()
556551 sycl::queue queue (device_selector);
557552
558553 std::cout << " sycl::queue check - selected device:\n "
559- << queue.get_device ().get_info <sycl::info::device::name>()
560- << std::endl;
554+ << queue.get_device ().get_info <sycl::info::device::name>() << std::endl;
561555
562556 {
563557 queue.submit ([&](sycl::handler &cgh) {
@@ -788,8 +782,7 @@ int testVectorUtil()
788782 sycl::queue queue (device_selector);
789783
790784 std::cout << " sycl::queue check - selected device:\n "
791- << queue.get_device ().get_info <sycl::info::device::name>()
792- << std::endl;
785+ << queue.get_device ().get_info <sycl::info::device::name>() << std::endl;
793786
794787 {
795788 queue.submit ([&](sycl::handler &cgh) {
@@ -870,8 +863,7 @@ int testLorentzVector()
870863 sycl::queue queue (device_selector);
871864
872865 std::cout << " sycl::queue check - selected device:\n "
873- << queue.get_device ().get_info <sycl::info::device::name>()
874- << std::endl;
866+ << queue.get_device ().get_info <sycl::info::device::name>() << std::endl;
875867
876868 {
877869 queue.submit ([&](sycl::handler &cgh) {
@@ -881,9 +873,8 @@ int testLorentzVector()
881873 LorentzVector<PtEtaPhiM4D<float >> v2 (5 , 6 , 7 , 8 );
882874 iret[0 ] |= compare (v1.DeltaR (v2), 4 .60575f );
883875
884- LorentzVector<PtEtaPhiM4D<float >> v = v1+ v2;
876+ LorentzVector<PtEtaPhiM4D<float >> v = v1 + v2;
885877 iret[0 ] |= compare (v.M (), 62 .03058f );
886-
887878 });
888879 });
889880 }
@@ -894,7 +885,6 @@ int testLorentzVector()
894885 std::cout << " \t FAILED\n " ;
895886
896887 return iret_host;
897-
898888}
899889
900890int testGenVector ()
0 commit comments