Skip to content

Commit a1c2cbf

Browse files
authored
[SYCL][ESIMD] Update ESIMD docs to address recent user comments: (#3516)
- Remove restriction on constant specialization - Add support for shift operators
1 parent b1551d2 commit a1c2cbf

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

sycl/doc/extensions/ExplicitSIMD/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,6 @@ program behavior if violated.
8686
##### Unsupported standard SYCL APIs:
8787
- Local accessors
8888
- Most of image APIs
89-
- Specialization constants
9089
- Memory access through a raw pointer returned by `sycl::accessor::get_pointer()`
9190
9291
##### Other restrictions:

sycl/doc/extensions/ExplicitSIMD/dpcpp-explicit-simd.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,8 +113,8 @@ standard subscript operator ```[]```, which returns by value.
113113

114114
For simd type object, Explicit SIMD supports the following simd vector operations:
115115
- Unary operators: ++ (*pre-/post-increment*), -- (*pre-/post-decrement*)
116-
- Binary operators: +, -, *, /, &, |, ^
117-
- Compound assignments: +=, -=, *=, /=, &=, |=, ^=
116+
- Binary operators: +, -, *, /, &, |, ^, <<, >>
117+
- Compound assignments: +=, -=, *=, /=, &=, |=, ^=, <<=, >>=
118118
- Compare operators: >, >=, <, <=, ==, !=
119119

120120
These are all element-wise operations, which apply a specified operation to the

0 commit comments

Comments
 (0)