save output for value checks wrapper functions for timeit() below
| 27 | static array full_out, dsep_out, hsep_out; // save output for value checks |
| 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) { |
nothing calls this directly
no test coverage detected