From 23e6717c14bd512b140e992cdcf1d2c2f1164259 Mon Sep 17 00:00:00 2001 From: Mike Kinsner Date: Wed, 20 Dec 2023 16:52:02 -0400 Subject: [PATCH 1/2] Editorial fix in vector section --- adoc/chapters/programming_interface.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/adoc/chapters/programming_interface.adoc b/adoc/chapters/programming_interface.adoc index 3a1337fc..54b540ee 100644 --- a/adoc/chapters/programming_interface.adoc +++ b/adoc/chapters/programming_interface.adoc @@ -16937,8 +16937,8 @@ The vector supports member functions that allow construction of a new vector from a swizzled set of component elements. [code]#vec# is a vector type that compiles -down to a <> built-in vector types on SYCL devices, where possible, and -provides compatible support on the host or when it is not possible. +down to a <> built-in vector type on SYCL devices, where possible, and +provides compatible support on the host when not possible. The [code]#vec# class is templated on its number of elements and its element type. The number of elements parameter, _NumElements_, can be one of: 1, 2, 3, 4, 8 or 16. From 487aa57b23ba9bd1afd0d102bcd08d01de3dadf4 Mon Sep 17 00:00:00 2001 From: Mike Kinsner Date: Fri, 22 Dec 2023 08:54:42 -0400 Subject: [PATCH 2/2] Update programming_interface.adoc --- adoc/chapters/programming_interface.adoc | 3 --- 1 file changed, 3 deletions(-) diff --git a/adoc/chapters/programming_interface.adoc b/adoc/chapters/programming_interface.adoc index 54b540ee..cb4b5ef8 100644 --- a/adoc/chapters/programming_interface.adoc +++ b/adoc/chapters/programming_interface.adoc @@ -16936,9 +16936,6 @@ This type allows sharing of vectors between the host and its SYCL devices. The vector supports member functions that allow construction of a new vector from a swizzled set of component elements. -[code]#vec# is a vector type that compiles -down to a <> built-in vector type on SYCL devices, where possible, and -provides compatible support on the host when not possible. The [code]#vec# class is templated on its number of elements and its element type. The number of elements parameter, _NumElements_, can be one of: 1, 2, 3, 4, 8 or 16.