| 1345 | } |
| 1346 | |
| 1347 | int test_ulong(cl_device_id deviceID, cl_context context, cl_command_queue queue, int num_elements) { |
| 1348 | if (!gHasLong) |
| 1349 | { |
| 1350 | log_info( "WARNING: 64 bit integers are not supported on this device. Skipping\n" ); |
| 1351 | return CL_SUCCESS; |
| 1352 | } |
| 1353 | return run_test(deviceID, context, queue, num_elements, kULong, LONG_MATH_SHIFT_SIZE); |
| 1354 | } |
| 1355 | |
| 1356 | int test_quick_ulong(cl_device_id deviceID, cl_context context, cl_command_queue queue, int num_elements) { |
| 1357 | if (!gHasLong) |
nothing calls this directly
no test coverage detected