Helper functions for invoking the function pointers.
| 32 | TrMulParams() : run_pack{nullptr, nullptr}, is_prepacked{false, false} {} |
| 33 | // Helper functions for invoking the function pointers. |
| 34 | void RunPack(Side side, Tuning tuning, int start, int end) { |
| 35 | run_pack[side](tuning, src[side], &packed[side], start, end); |
| 36 | } |
| 37 | void RunKernel(Tuning tuning, const SidePair<int>& start, |
| 38 | const SidePair<int>& end) { |
| 39 | run_kernel(tuning, packed, spec, start, end, &dst); |
no outgoing calls
no test coverage detected