/external/OpenCL-CTS/test_conformance/integer_ops/ |
D | test_integers.cpp | 207 (int)i, (int)j, ((cl_ulong*)&expected)[0], *( (cl_ulong *)p ), in test_single_param_integer_kernel() 208 *( (cl_ulong *)in ), *( (cl_ulong *)in2 ) ); in test_single_param_integer_kernel() 211 (int)i, (int)j, ((cl_ulong*)&expected)[0], *( (cl_ulong *)p ), in test_single_param_integer_kernel() 212 *( (cl_ulong *)in ) ); in test_single_param_integer_kernel() 290 testValue = *( (cl_ulong *)source ); in verify_integer_clz() 291 typeBits = 8 * sizeof( cl_ulong ); in verify_integer_clz() 330 *( (cl_ulong *)destination ) = count; in verify_integer_clz() 383 testValue = *( (cl_ulong *)source ); in verify_integer_ctz() 384 typeBits = 8 * sizeof( cl_ulong ); in verify_integer_ctz() 423 *( (cl_ulong *)destination ) = count; in verify_integer_ctz() [all …]
|
/external/OpenCL-CTS/test_conformance/half/ |
D | cl_utils.h | 98 static inline double as_double(cl_ulong u) { union { cl_ulong u; double d; }v; v.u = u; return v.d;… in as_double() 101 static inline cl_ulong DoubleFromUInt( cl_uint bits ); 102 static inline cl_ulong DoubleFromUInt( cl_uint bits ) in DoubleFromUInt() 105 cl_ulong u = ((cl_ulong)(bits & ~0xffU) << 32) | ((cl_ulong)(bits & 0xffU)); in DoubleFromUInt() 108 u -= (cl_ulong)((bits & 0x80U) << 1); in DoubleFromUInt()
|
/external/OpenCL-CTS/test_conformance/device_timer/ |
D | test_device_timer.cpp | 31 cl_ulong deviceStartTime, deviceEndTime, deviceTimeDiff; in test_device_and_host_timers() 32 cl_ulong hostStartTime, hostEndTime, hostTimeDiff; in test_device_and_host_timers() 33 cl_ulong hostOnlyStartTime, hostOnlyEndTime, hostOnlyTimeDiff; in test_device_and_host_timers() 34 cl_ulong observedDiff; in test_device_and_host_timers() 35 cl_ulong allowedDiff; in test_device_and_host_timers() 88 allowedDiff = (cl_ulong)(hostTimeDiff * ALLOWED_ERROR); in test_device_and_host_timers() 92 allowedDiff = (cl_ulong)(deviceTimeDiff * ALLOWED_ERROR); in test_device_and_host_timers() 132 cl_ulong deviceTimerResolution = 0; in test_timer_resolution_queries() 133 cl_ulong hostTimerResolution = 0; in test_timer_resolution_queries()
|
/external/OpenCL-CTS/test_conformance/select/ |
D | util_select.cpp | 38 sizeof(cl_float), sizeof(cl_ulong), sizeof(cl_long), sizeof( cl_double ) }; 143 cl_ulong *d, *x, *y; in refselect_1u64() 145 d = (cl_ulong*) dest; in refselect_1u64() 146 x = (cl_ulong*) src1; in refselect_1u64() 147 y = (cl_ulong*) src2; in refselect_1u64() 225 cl_ulong *m; in refselect_1i64u() 229 m = (cl_ulong*) cmp; in refselect_1i64u() 236 cl_ulong *d, *x, *y, *m; in refselect_1u64u() 237 d = (cl_ulong*) dest; in refselect_1u64u() 238 x = (cl_ulong*) src1; in refselect_1u64u() [all …]
|
/external/OpenCL-CTS/test_conformance/non_uniform_work_group/ |
D | TestNonUniformWorkGroup.h | 33 cl_ulong get_global_size[MAX_DIMS]; 34 cl_ulong get_global_offset[MAX_DIMS]; 35 cl_ulong get_local_size[MAX_DIMS]; 36 cl_ulong get_enqueued_local_size[MAX_DIMS]; 37 cl_ulong get_global_id[MAX_DIMS]; 38 cl_ulong get_local_id[MAX_DIMS]; 39 cl_ulong get_group_id[MAX_DIMS]; 40 cl_ulong get_num_groups[MAX_DIMS]; 41 cl_ulong get_work_dim;
|
/external/OpenCL-CTS/test_conformance/images/clFillImage/ |
D | test_fill_2D_array.cpp | 68 cl_ulong maxAllocSize, memSize; in test_fill_image_set_2D_array() 88 if (memSize > (cl_ulong)SIZE_MAX) { in test_fill_image_set_2D_array() 89 memSize = (cl_ulong)SIZE_MAX; in test_fill_image_set_2D_array() 148 cl_ulong size = (cl_ulong)imageInfo.slicePitch * (cl_ulong)imageInfo.arraySize * 4 * 4; in test_fill_image_set_2D_array() 156 size = (cl_ulong)imageInfo.slicePitch * (cl_ulong)imageInfo.arraySize * 4 * 4; in test_fill_image_set_2D_array() 162 size = (cl_ulong)imageInfo.slicePitch * (cl_ulong)imageInfo.arraySize * 4 * 4; in test_fill_image_set_2D_array() 175 cl_ulong size; in test_fill_image_set_2D_array() 197 size = (cl_ulong)imageInfo.slicePitch * (cl_ulong)imageInfo.arraySize * 4 * 4; in test_fill_image_set_2D_array()
|
/external/OpenCL-CTS/test_conformance/conversions/ |
D | basic_test_conversions.cpp | 34 static inline cl_ulong random64( MTdata d ); 71 sizeof( cl_ulong ), sizeof( cl_long ), 572 union{ cl_ulong u; double f; }u; in my_fabs() 621 static void uchar2ulong( void *out, void *in){ ((cl_ulong*) out)[0] = ((cl_uchar*) in)[0]; } in uchar2ulong() 638 static void char2ulong( void *out, void *in){ ((cl_ulong*) out)[0] = ((cl_char*) in)[0]; } in char2ulong() 655 static void ushort2ulong( void *out, void *in){ ((cl_ulong*) out)[0] = ((cl_ushort*) in)[0]; } in ushort2ulong() 672 static void short2ulong( void *out, void *in){ ((cl_ulong*) out)[0] = ((cl_short*) in)[0]; } in short2ulong() 690 static void uint2ulong( void *out, void *in){ ((cl_ulong*) out)[0] = ((cl_uint*) in)[0]; } in uint2ulong() 707 static void int2ulong( void *out, void *in){ ((cl_ulong*) out)[0] = ((cl_int*) in)[0]; } in int2ulong() 727 ((cl_ulong*) out)[0] = x; in float2ulong() [all …]
|
/external/OpenCL-CTS/test_conformance/images/clGetInfo/ |
D | test_1D_2D_array.cpp | 23 cl_ulong maxAllocSize, memSize; in test_get_image_info_1D_array() 45 if (memSize > (cl_ulong)SIZE_MAX) { in test_get_image_info_1D_array() 46 memSize = (cl_ulong)SIZE_MAX; in test_get_image_info_1D_array() 105 cl_ulong size; in test_get_image_info_1D_array() 120 size = (cl_ulong)imageInfo.slicePitch * (cl_ulong)imageInfo.arraySize * 4 * 4; in test_get_image_info_1D_array() 144 cl_ulong maxAllocSize, memSize; in test_get_image_info_2D_array() 169 if (memSize > (cl_ulong)SIZE_MAX) { in test_get_image_info_2D_array() 170 memSize = (cl_ulong)SIZE_MAX; in test_get_image_info_2D_array() 233 cl_ulong size; in test_get_image_info_2D_array() 256 size = (cl_ulong)imageInfo.slicePitch * (cl_ulong)imageInfo.arraySize * 4 * 4; in test_get_image_info_2D_array()
|
/external/OpenCL-CTS/test_conformance/basic/ |
D | test_sizeof.cpp | 27 cl_int get_type_size( cl_context context, cl_command_queue queue, const char *type, cl_ulong *size,… in get_type_size() 57 …m = clCreateBuffer( context, CL_MEM_WRITE_ONLY | CL_MEM_COPY_HOST_PTR, sizeof( cl_ulong ), size, &… in get_type_size() 91 *size = (cl_ulong) temp; in get_type_size() 99 cl_ulong size; 100 cl_ulong cl_size; 117 { "ulong", 8, sizeof( cl_ulong) }, 118 { "unsigned long", 8, sizeof( cl_ulong) } 132 { "ulong", 8, sizeof( cl_ulong) } 151 static int IsPowerOfTwo( cl_ulong x ){ return 0 == (x & (x-1)); } in IsPowerOfTwo() 156 cl_ulong test; in test_sizeof()
|
/external/mesa3d/src/gallium/frontends/clover/core/ |
D | device.hpp | 64 cl_ulong max_mem_global() const; 65 cl_ulong max_mem_local() const; 66 cl_ulong max_mem_input() const; 67 cl_ulong max_const_buffer_size() const; 70 cl_ulong max_mem_alloc_size() const;
|
D | event.hpp | 124 const lazy<cl_ulong> &time_queued() const; 125 const lazy<cl_ulong> &time_submit() const; 126 const lazy<cl_ulong> &time_start() const; 127 const lazy<cl_ulong> &time_end() const; 142 lazy<cl_ulong> _time_queued, _time_submit, _time_start, _time_end;
|
/external/OpenCL-CTS/test_common/harness/ |
D | conversions.cpp | 56 sprintf(string, "%llu", *((cl_ulong *)data)); in print_type_to_string() 73 sizeof(cl_uint), sizeof(cl_long), sizeof(cl_ulong), in get_explicit_type_size() 74 sizeof(cl_ulong), sizeof(cl_float), sizeof(cl_half), in get_explicit_type_size() 170 typedef cl_ulong ULong; 916 cl_ulong *ulongPtr; in generate_random_data() 1031 ulongPtr = (cl_ulong *)outData; in generate_random_data() 1034 ulongPtr[i] = (cl_ulong)genrand_int32(d) in generate_random_data() 1035 | ((cl_ulong)genrand_int32(d) << 32); in generate_random_data() 1108 case kUnsignedLong: return (cl_long)(*((cl_ulong *)inRaw)); in read_upscale_signed() 1113 cl_ulong read_upscale_unsigned(void *inRaw, ExplicitType inType) in read_upscale_unsigned() [all …]
|
/external/OpenCL-CTS/test_conformance/spir/ |
D | typeinfo.h | 214 … false, 0, 1, 0x0, 0xffffffffffffffff, KernelArgGeneratorT<cl_ulong>) 215 … true, 0, 16, 0x0, 0xffffffffffffffff, KernelArgGeneratorT<cl_ulong>) 216 … false, 0, 16, 0x0, 0xffffffffffffffff, KernelArgGeneratorT<cl_ulong>) 217 … true, 0, 16, 0x0, 0xffffffffffffffff, KernelArgGeneratorT<cl_ulong>) 218 … false, 0, 2, 0x0, 0xffffffffffffffff, KernelArgGeneratorT<cl_ulong>) 219 … true, 0, 2, 0x0, 0xffffffffffffffff, KernelArgGeneratorT<cl_ulong>) 220 … false, 0, 3, 0x0, 0xffffffffffffffff, KernelArgGeneratorT<cl_ulong>) 221 … true, 0, 3, 0x0, 0xffffffffffffffff, KernelArgGeneratorT<cl_ulong>) 222 … false, 0, 4, 0x0, 0xffffffffffffffff, KernelArgGeneratorT<cl_ulong>) 223 … true, 0, 4, 0x0, 0xffffffffffffffff, KernelArgGeneratorT<cl_ulong>) [all …]
|
/external/OpenCL-CTS/test_conformance/math_brute_force/ |
D | unary_u_double.cpp | 122 static cl_ulong random64(MTdata d) in random64() 124 return (cl_ulong)genrand_int32(d) | ((cl_ulong)genrand_int32(d) << 32); in random64() 154 cl_ulong *p = (cl_ulong *)gIn; in TestFunc_Double_ULong() 155 for (size_t j = 0; j < BUFFER_SIZE / sizeof(cl_ulong); j++) in TestFunc_Double_ULong() 212 cl_ulong *s = (cl_ulong *)gIn; in TestFunc_Double_ULong()
|
D | reference_math.cpp | 116 static inline cl_ulong add_carry(cl_ulong a, cl_ulong b, cl_ulong *carry) in add_carry() 118 cl_ulong result = a + b; in add_carry() 125 static inline cl_ulong sub_carry(cl_ulong a, cl_ulong b, cl_ulong *carry) in sub_carry() 127 cl_ulong result = a - b; in sub_carry() 194 static inline void shift_right_sticky_64(cl_ulong *p, int shift) in shift_right_sticky_64() 196 cl_ulong sticky = 0; in shift_right_sticky_64() 197 cl_ulong r = *p; in shift_right_sticky_64() 216 static inline void add64(cl_ulong *p, cl_ulong c, int *exponent) in add64() 218 cl_ulong carry; in add64() 235 static float round_to_nearest_even_float(cl_ulong p, int exponent) in round_to_nearest_even_float() [all …]
|
/external/tensorflow/tensorflow/lite/delegates/gpu/cl/ |
D | cl_event.cc | 41 cl_ulong time_ns; in GetStartedTimeNs() 42 clGetEventProfilingInfo(event_, CL_PROFILING_COMMAND_START, sizeof(cl_ulong), in GetStartedTimeNs() 48 cl_ulong time_ns; in GetFinishedTimeNs() 49 clGetEventProfilingInfo(event_, CL_PROFILING_COMMAND_END, sizeof(cl_ulong), in GetFinishedTimeNs()
|
/external/OpenCL-CTS/test_conformance/workgroups/ |
D | test_wg_reduce.cpp | 138 verify_wg_reduce_add_ulong(cl_ulong *inptr, cl_ulong *outptr, size_t n, size_t wg_size) in verify_wg_reduce_add_ulong() 144 cl_ulong sum = 0; in verify_wg_reduce_add_ulong() 481 cl_ulong *input_ptr[1], *p; in test_work_group_reduce_add_ulong() 482 cl_ulong *output_ptr; in test_work_group_reduce_add_ulong() 505 input_ptr[0] = (cl_ulong*)malloc(sizeof(cl_ulong) * num_elements); in test_work_group_reduce_add_ulong() 506 output_ptr = (cl_ulong*)malloc(sizeof(cl_ulong) * num_elements); in test_work_group_reduce_add_ulong() 508 sizeof(cl_ulong) * num_elements, NULL, NULL); in test_work_group_reduce_add_ulong() 516 sizeof(cl_ulong) * num_elements, NULL, NULL); in test_work_group_reduce_add_ulong() 529 …err = clEnqueueWriteBuffer( queue, streams[0], true, 0, sizeof(cl_ulong)*num_elements, (void *)inp… in test_work_group_reduce_add_ulong() 556 memset_pattern4(output_ptr, &dead, sizeof(cl_ulong)*num_elements); in test_work_group_reduce_add_ulong() [all …]
|
D | test_wg_scan_inclusive_add.cpp | 136 verify_wg_scan_inclusive_add_ulong(cl_ulong *inptr, cl_ulong *outptr, size_t n, size_t wg_size) in verify_wg_scan_inclusive_add_ulong() 139 cl_ulong s; in verify_wg_scan_inclusive_add_ulong() 478 cl_ulong *input_ptr[1], *p; in test_work_group_scan_inclusive_add_ulong() 479 cl_ulong *output_ptr; in test_work_group_scan_inclusive_add_ulong() 502 input_ptr[0] = (cl_ulong*)malloc(sizeof(cl_ulong) * num_elements); in test_work_group_scan_inclusive_add_ulong() 503 output_ptr = (cl_ulong*)malloc(sizeof(cl_ulong) * num_elements); in test_work_group_scan_inclusive_add_ulong() 505 sizeof(cl_ulong) * num_elements, NULL, NULL); in test_work_group_scan_inclusive_add_ulong() 513 sizeof(cl_ulong) * num_elements, NULL, NULL); in test_work_group_scan_inclusive_add_ulong() 526 …err = clEnqueueWriteBuffer( queue, streams[0], true, 0, sizeof(cl_ulong)*num_elements, (void *)inp… in test_work_group_scan_inclusive_add_ulong() 553 memset_pattern4(output_ptr, &dead, sizeof(cl_ulong)*num_elements); in test_work_group_scan_inclusive_add_ulong() [all …]
|
D | test_wg_scan_exclusive_add.cpp | 145 verify_wg_scan_exclusive_add_ulong(cl_ulong *inptr, cl_ulong *outptr, size_t n, size_t wg_size) { in verify_wg_scan_exclusive_add_ulong() 149 cl_ulong s, lasts; in verify_wg_scan_exclusive_add_ulong() 489 cl_ulong *input_ptr[1], *p; in test_work_group_scan_exclusive_add_ulong() 490 cl_ulong *output_ptr; in test_work_group_scan_exclusive_add_ulong() 513 input_ptr[0] = (cl_ulong*)malloc(sizeof(cl_ulong) * num_elements); in test_work_group_scan_exclusive_add_ulong() 514 output_ptr = (cl_ulong*)malloc(sizeof(cl_ulong) * num_elements); in test_work_group_scan_exclusive_add_ulong() 516 sizeof(cl_ulong) * num_elements, NULL, NULL); in test_work_group_scan_exclusive_add_ulong() 524 sizeof(cl_ulong) * num_elements, NULL, NULL); in test_work_group_scan_exclusive_add_ulong() 537 …err = clEnqueueWriteBuffer( queue, streams[0], true, 0, sizeof(cl_ulong)*num_elements, (void *)inp… in test_work_group_scan_exclusive_add_ulong() 564 memset_pattern4(output_ptr, &dead, sizeof(cl_ulong)*num_elements); in test_work_group_scan_exclusive_add_ulong() [all …]
|
D | test_wg_scan_inclusive_max.cpp | 138 verify_wg_scan_inclusive_max_ulong(cl_ulong *inptr, cl_ulong *outptr, size_t n, size_t wg_size) { in verify_wg_scan_inclusive_max_ulong() 143 cl_ulong max_ = 0x0; in verify_wg_scan_inclusive_max_ulong() 480 cl_ulong *input_ptr[1], *p; in test_work_group_scan_inclusive_max_ulong() 481 cl_ulong *output_ptr; in test_work_group_scan_inclusive_max_ulong() 504 input_ptr[0] = (cl_ulong*)malloc(sizeof(cl_ulong) * num_elements); in test_work_group_scan_inclusive_max_ulong() 505 output_ptr = (cl_ulong*)malloc(sizeof(cl_ulong) * num_elements); in test_work_group_scan_inclusive_max_ulong() 507 sizeof(cl_ulong) * num_elements, NULL, NULL); in test_work_group_scan_inclusive_max_ulong() 515 sizeof(cl_ulong) * num_elements, NULL, NULL); in test_work_group_scan_inclusive_max_ulong() 528 …err = clEnqueueWriteBuffer( queue, streams[0], true, 0, sizeof(cl_ulong)*num_elements, (void *)inp… in test_work_group_scan_inclusive_max_ulong() 555 memset_pattern4(output_ptr, &dead, sizeof(cl_ulong)*num_elements); in test_work_group_scan_inclusive_max_ulong() [all …]
|
D | test_wg_scan_inclusive_min.cpp | 138 verify_wg_scan_inclusive_min_ulong(cl_ulong *inptr, cl_ulong *outptr, size_t n, size_t wg_size) { in verify_wg_scan_inclusive_min_ulong() 143 cl_ulong min_ = 0xffffffffffffffffULL; in verify_wg_scan_inclusive_min_ulong() 480 cl_ulong *input_ptr[1], *p; in test_work_group_scan_inclusive_min_ulong() 481 cl_ulong *output_ptr; in test_work_group_scan_inclusive_min_ulong() 504 input_ptr[0] = (cl_ulong*)malloc(sizeof(cl_ulong) * num_elements); in test_work_group_scan_inclusive_min_ulong() 505 output_ptr = (cl_ulong*)malloc(sizeof(cl_ulong) * num_elements); in test_work_group_scan_inclusive_min_ulong() 507 sizeof(cl_ulong) * num_elements, NULL, NULL); in test_work_group_scan_inclusive_min_ulong() 515 sizeof(cl_ulong) * num_elements, NULL, NULL); in test_work_group_scan_inclusive_min_ulong() 528 …err = clEnqueueWriteBuffer( queue, streams[0], true, 0, sizeof(cl_ulong)*num_elements, (void *)inp… in test_work_group_scan_inclusive_min_ulong() 555 memset_pattern4(output_ptr, &dead, sizeof(cl_ulong)*num_elements); in test_work_group_scan_inclusive_min_ulong() [all …]
|
D | test_wg_scan_exclusive_min.cpp | 139 verify_wg_scan_exclusive_min_ulong(cl_ulong *inptr, cl_ulong *outptr, size_t n, size_t wg_size) { in verify_wg_scan_exclusive_min_ulong() 144 cl_ulong min_ = 0xffffffffffffffffULL; in verify_wg_scan_exclusive_min_ulong() 508 cl_ulong *input_ptr[1], *p; in test_work_group_scan_exclusive_min_ulong() 509 cl_ulong *output_ptr; in test_work_group_scan_exclusive_min_ulong() 541 input_ptr[0] = (cl_ulong*)malloc(sizeof(cl_ulong) * num_elements); in test_work_group_scan_exclusive_min_ulong() 542 output_ptr = (cl_ulong*)malloc(sizeof(cl_ulong) * num_elements); in test_work_group_scan_exclusive_min_ulong() 544 sizeof(cl_ulong) * num_elements, NULL, NULL); in test_work_group_scan_exclusive_min_ulong() 552 sizeof(cl_ulong) * num_elements, NULL, NULL); in test_work_group_scan_exclusive_min_ulong() 565 …err = clEnqueueWriteBuffer( queue, streams[0], true, 0, sizeof(cl_ulong)*num_elements, (void *)inp… in test_work_group_scan_exclusive_min_ulong() 592 memset_pattern4(output_ptr, &dead, sizeof(cl_ulong)*num_elements); in test_work_group_scan_exclusive_min_ulong() [all …]
|
D | test_wg_reduce_max.cpp | 138 verify_wg_reduce_max_ulong(cl_ulong *inptr, cl_ulong *outptr, size_t n, size_t wg_size) in verify_wg_reduce_max_ulong() 144 cl_ulong max = 0; in verify_wg_reduce_max_ulong() 508 cl_ulong *input_ptr[1], *p; in test_work_group_reduce_max_ulong() 509 cl_ulong *output_ptr; in test_work_group_reduce_max_ulong() 541 input_ptr[0] = (cl_ulong*)malloc(sizeof(cl_ulong) * num_elements); in test_work_group_reduce_max_ulong() 542 output_ptr = (cl_ulong*)malloc(sizeof(cl_ulong) * num_elements); in test_work_group_reduce_max_ulong() 544 sizeof(cl_ulong) * num_elements, NULL, NULL); in test_work_group_reduce_max_ulong() 552 sizeof(cl_ulong) * num_elements, NULL, NULL); in test_work_group_reduce_max_ulong() 565 …err = clEnqueueWriteBuffer( queue, streams[0], true, 0, sizeof(cl_ulong)*num_elements, (void *)inp… in test_work_group_reduce_max_ulong() 592 memset_pattern4(output_ptr, &dead, sizeof(cl_ulong)*num_elements); in test_work_group_reduce_max_ulong() [all …]
|
D | test_wg_scan_exclusive_max.cpp | 138 verify_wg_scan_exclusive_max_ulong(cl_ulong *inptr, cl_ulong *outptr, size_t n, size_t wg_size) { in verify_wg_scan_exclusive_max_ulong() 143 cl_ulong max_ = 0x0; in verify_wg_scan_exclusive_max_ulong() 507 cl_ulong *input_ptr[1], *p; in test_work_group_scan_exclusive_max_ulong() 508 cl_ulong *output_ptr; in test_work_group_scan_exclusive_max_ulong() 540 input_ptr[0] = (cl_ulong*)malloc(sizeof(cl_ulong) * num_elements); in test_work_group_scan_exclusive_max_ulong() 541 output_ptr = (cl_ulong*)malloc(sizeof(cl_ulong) * num_elements); in test_work_group_scan_exclusive_max_ulong() 543 sizeof(cl_ulong) * num_elements, NULL, NULL); in test_work_group_scan_exclusive_max_ulong() 551 sizeof(cl_ulong) * num_elements, NULL, NULL); in test_work_group_scan_exclusive_max_ulong() 564 …err = clEnqueueWriteBuffer( queue, streams[0], true, 0, sizeof(cl_ulong)*num_elements, (void *)inp… in test_work_group_scan_exclusive_max_ulong() 591 memset_pattern4(output_ptr, &dead, sizeof(cl_ulong)*num_elements); in test_work_group_scan_exclusive_max_ulong() [all …]
|
/external/OpenCL-CTS/test_conformance/images/kernel_image_methods/ |
D | test_3D.cpp | 28 cl_ulong maxAllocSize, memSize; in test_get_image_info_3D() 54 if (memSize > (cl_ulong)SIZE_MAX) { in test_get_image_info_3D() 55 memSize = (cl_ulong)SIZE_MAX; in test_get_image_info_3D() 107 cl_ulong size; in test_get_image_info_3D() 108 cl_ulong slicePitch; in test_get_image_info_3D() 109 cl_ulong rowPitch; in test_get_image_info_3D()
|