| 18 | |
| 19 | namespace { |
| 20 | int get_mask_from_matmul(const megdnn::param::MatrixMul& param) { |
| 21 | return static_cast<int>(param.transposeA) + |
| 22 | (static_cast<int>(param.transposeB) * 2); |
| 23 | } |
| 24 | } // namespace |
| 25 | |
| 26 | /* ================= MatrixMul ================= */ |
no outgoing calls
no test coverage detected