| 1232 | fl::s16x16 operator()(fl::s16x16 a, fl::s16x16 b) const { return a / b; } |
| 1233 | }; |
| 1234 | struct OpDivU16x16 { |
| 1235 | fl::u16x16 operator()(fl::u16x16 a, fl::u16x16 b) const { return a / b; } |
| 1236 | }; |
| 1237 | |
| 1238 | inline BenchmarkResult runMultiplyBenchmark(int iters = 10000) { |
| 1239 | BenchmarkResult r; |
no outgoing calls
no test coverage detected