| 53 | } |
| 54 | |
| 55 | size_t MatrixMulImpl::AlgoInt8x8x16::get_workspace( |
| 56 | const KernSizeParam& kern_size_param) const { |
| 57 | MIDOUT_BEGIN( |
| 58 | megdnn_arm_exec_int8816, midout_iv("AlgoInt8x8x16::get_workspace"_hash)) { |
| 59 | auto wbundle = get_workspace_bundle_int_8x8x16(kern_size_param); |
| 60 | return wbundle.total_size_in_bytes(); |
| 61 | } |
| 62 | MIDOUT_END(); |
| 63 | return 0; |
| 64 | } |
| 65 | |
| 66 | MatrixMulImpl::kern_t MatrixMulImpl::AlgoInt8x8x16::get_kern( |
| 67 | const KernSizeParam&) const { |
nothing calls this directly
no test coverage detected