| 10 | #include <arrayfire.h> |
| 11 | |
| 12 | int main() { |
| 13 | af_array out = 0; |
| 14 | dim_t s[] = {10, 10, 1, 1}; |
| 15 | af_err e = af_randu(&out, 4, s, f32); |
| 16 | if (out != 0) af_release_array(out); |
| 17 | return (AF_SUCCESS != e); |
| 18 | } |
nothing calls this directly
no test coverage detected