| 1209 | } |
| 1210 | |
| 1211 | void *create_random_data(ExplicitType type, MTdata d, size_t count) |
| 1212 | { |
| 1213 | void *data = malloc(get_explicit_type_size(type) * count); |
| 1214 | generate_random_data(type, count, d, data); |
| 1215 | return data; |
| 1216 | } |
| 1217 | |
| 1218 | cl_long read_upscale_signed(void *inRaw, ExplicitType inType) |
| 1219 | { |