Skip to content

Commit 77d4fdf

Browse files
[SYCL] Fix numeric values of image_channel_type enum (#3484)
Signed-off-by: Chris Perkins <[email protected]>
1 parent 50005c7 commit 77d4fdf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

sycl/include/CL/sycl/image.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@ enum class image_channel_type : unsigned int {
5050
signed_int32 = 9,
5151
unsigned_int8 = 10,
5252
unsigned_int16 = 11,
53-
unsigned_int32 = 13,
54-
fp16 = 14,
55-
fp32 = 15
53+
unsigned_int32 = 12,
54+
fp16 = 13,
55+
fp32 = 14
5656
};
5757

5858
using byte = unsigned char;

0 commit comments

Comments
 (0)