| 868 | } |
| 869 | |
| 870 | cl_uint |
| 871 | deviceL1CacheAssoc( |
| 872 | cl_device_id device, |
| 873 | cl_ulong l1CacheSize, |
| 874 | cl_int *error) |
| 875 | { |
| 876 | /* TODO: Implementation needed. */ |
| 877 | |
| 878 | (void)device; |
| 879 | (void)l1CacheSize; |
| 880 | |
| 881 | if (error != NULL) { |
| 882 | *error = CL_SUCCESS; |
| 883 | } |
| 884 | return 32; |
| 885 | } |
| 886 | |
| 887 | static cl_ulong |
| 888 | closestPowerOf2(cl_ulong x) |
nothing calls this directly
no outgoing calls
no test coverage detected