| 15 | W = layout.shape[3]; |
| 16 | size_t it = 0; |
| 17 | rep(n, N) { |
| 18 | rep(c, C) { |
| 19 | rep(h, H) { |
| 20 | rep(w, W) { printf("%.4f ", result[it++]); } |
| 21 | printf("\n"); |
| 22 | } |
| 23 | printf("\n"); |
| 24 | } |
| 25 | printf("\n"); |
| 26 | } |
| 27 | } |
| 28 | |
| 29 | #define UNARY_TEST_CASE(_optr) \ |
no outgoing calls
no test coverage detected