| 28 | // wrapper functions for timeit() below |
| 29 | static void full() { full_out = convolve2(img, kernel); } |
| 30 | static void dsep() { dsep_out = convolve(dx, spread, img); } |
| 31 | |
| 32 | static bool fail(array &left, array &right) { |
| 33 | return (max<float>(abs(left - right)) > 1e-6); |
nothing calls this directly
no test coverage detected