| 1327 | // These are kept for debugging if you want to run all the tests together. |
| 1328 | |
| 1329 | int test_long(cl_device_id deviceID, cl_context context, cl_command_queue queue, int num_elements) { |
| 1330 | if (!gHasLong) |
| 1331 | { |
| 1332 | log_info( "WARNING: 64 bit integers are not supported on this device. Skipping\n" ); |
| 1333 | return CL_SUCCESS; |
| 1334 | } |
| 1335 | return run_test(deviceID, context, queue, num_elements, kLong, LONG_MATH_SHIFT_SIZE); |
| 1336 | } |
| 1337 | |
| 1338 | int test_quick_long(cl_device_id deviceID, cl_context context, cl_command_queue queue, int num_elements) { |
| 1339 | if (!gHasLong) |
nothing calls this directly
no test coverage detected