File tree Expand file tree Collapse file tree 2 files changed +15
-0
lines changed Expand file tree Collapse file tree 2 files changed +15
-0
lines changed Original file line number Diff line number Diff line change 47
47
#define __opencl_c_ext_fp32_local_atomic_min_max 1
48
48
#define __opencl_c_ext_image_raw10_raw12 1
49
49
#define __opencl_c_ext_image_unorm_int_2_101010 1
50
+ #define __opencl_c_ext_image_unsigned_10x6_12x4_14x2 1
50
51
#define cl_khr_kernel_clock 1
51
52
#define __opencl_c_kernel_clock_scope_device 1
52
53
#define __opencl_c_kernel_clock_scope_work_group 1
@@ -490,6 +491,14 @@ typedef enum memory_order
490
491
#ifdef __opencl_c_ext_image_unorm_int_2_101010
491
492
#define CLK_UNORM_INT_2_101010_EXT 0x10E5
492
493
#endif // __opencl_c_ext_image_unorm_int_2_101010
494
+ #ifdef __opencl_c_ext_image_unsigned_10x6_12x4_14x2
495
+ #define CLK_UNSIGNED_INT10X6_EXT 0x10E6
496
+ #define CLK_UNSIGNED_INT12X4_EXT 0x10E7
497
+ #define CLK_UNSIGNED_INT14X2_EXT 0x10E8
498
+ #define CLK_UNORM_10X6_EXT 0x10E1
499
+ #define CLK_UNORM_12X4_EXT 0x10E9
500
+ #define CLK_UNORM_14X2_EXT 0x10EA
501
+ #endif // __opencl_c_ext_image_unsigned_10x6_12x4_14x2
493
502
494
503
// Channel order, numbering must be aligned with cl_channel_order in cl.h
495
504
//
Original file line number Diff line number Diff line change @@ -193,6 +193,9 @@ global atomic_int z = ATOMIC_VAR_INIT(99);
193
193
#if __opencl_c_ext_image_unorm_int_2_101010 != 1
194
194
#error "Incorrectly defined __opencl_c_ext_image_unorm_int_2_101010"
195
195
#endif
196
+ #if __opencl_c_ext_image_unsigned_10x6_12x4_14x2 != 1
197
+ #error "Incorrectly defined __opencl_c_ext_image_unsigned_10x6_12x4_14x2"
198
+ #endif
196
199
197
200
#else
198
201
@@ -283,6 +286,9 @@ global atomic_int z = ATOMIC_VAR_INIT(99);
283
286
#ifdef __opencl_c_ext_image_unorm_int_2_101010
284
287
#error "Incorrect __opencl_c_ext_image_unorm_int_2_101010 define"
285
288
#endif
289
+ #ifdef __opencl_c_ext_image_unsigned_10x6_12x4_14x2
290
+ #error "Incorrect __opencl_c_ext_image_unsigned_10x6_12x4_14x2 define"
291
+ #endif
286
292
287
293
#endif //(defined(__OPENCL_CPP_VERSION__) || __OPENCL_C_VERSION__ >= 200)
288
294
You can’t perform that action at this time.
0 commit comments