Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion sycl/doc/extensions/ExplicitSIMD/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,6 @@ program behavior if violated.
##### Unsupported standard SYCL APIs:
- Local accessors
- Most of image APIs
- Specialization constants
- Memory access through a raw pointer returned by `sycl::accessor::get_pointer()`

##### Other restrictions:
Expand Down
4 changes: 2 additions & 2 deletions sycl/doc/extensions/ExplicitSIMD/dpcpp-explicit-simd.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,8 @@ standard subscript operator ```[]```, which returns by value.

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

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