| 1184 | template<typename T> T operator()(T a, T b) const { return a - b; } |
| 1185 | }; |
| 1186 | struct OpMul { |
| 1187 | template<typename T> T operator()(T a, T b) const { return a * b; } |
| 1188 | }; |
| 1189 | // Helper: time 4-wide scalar s8x8 with a binary op |
| 1190 | template <typename Op> |
| 1191 | inline int64_t benchS8x8_4(int iters, Op op) { |
no outgoing calls
no test coverage detected