diff --git a/adoc/chapters/acknowledgements.adoc b/adoc/chapters/acknowledgements.adoc index 1e919cfe..1eba8fe4 100644 --- a/adoc/chapters/acknowledgements.adoc +++ b/adoc/chapters/acknowledgements.adoc @@ -32,6 +32,7 @@ * Aidan Belton, Codeplay * Gordon Brown, Codeplay * Hugh Delaney, Codeplay + * Atharva Dubey, Codeplay * Morris Hafner, Codeplay * Alexander Johnston, Codeplay * Marios Katsigiannis, Codeplay diff --git a/adoc/chapters/programming_interface.adoc b/adoc/chapters/programming_interface.adoc index 3a1337fc..e69dfe2f 100644 --- a/adoc/chapters/programming_interface.adoc +++ b/adoc/chapters/programming_interface.adoc @@ -17230,7 +17230,7 @@ a@ template void load(size_t offset, multi_ptr ptr) ---- - a@ Loads the values at the address of [code]#ptr# offset in elements of type [code]#DataT# by [code]#NumElements * offset#, into the components of this SYCL [code]#vec#. + a@ Loads [code]#NumElements# elements into the components of this SYCL [code]#vec#. These elements are loaded from consecutive addresses, where the starting address is computed by adding [code]#offset * NumElements * sizeof(DataT)# bytes to the address specified by the [code]#ptr#. The [code]#ptr# must be aligned to [code]#alignof(DataT)#. a@ [source] @@ -17238,7 +17238,7 @@ a@ template void store(size_t offset, multi_ptr ptr) const ---- - a@ Stores the components of this SYCL [code]#vec# into the values at the address of [code]#ptr# offset in elements of type [code]#DataT# by [code]#NumElements * offset#. + a@ Stores [code]#NumElements# components of this SYCL [code]#vec# into consecutive addresses, with the starting address determined by adding [code]#offset * NumElements * sizeof(DataT)# to the address specified by the [code]#ptr#. The [code]#ptr# must be aligned to [code]#alignof(DataT)#. a@ [source]