| 565 | } |
| 566 | |
| 567 | Status CpuGemm::has_opt_impl(arm_compute::WeightFormat &expected_weight_format, |
| 568 | const ITensorInfo *a, |
| 569 | const ITensorInfo *b, |
| 570 | const ITensorInfo *c, |
| 571 | const ITensorInfo *d, |
| 572 | const GEMMInfo &gemm_info) |
| 573 | { |
| 574 | const cpu::AsmGemmInfo asm_info = init_assembly_metadata(gemm_info); |
| 575 | |
| 576 | return CpuGemmAssemblyDispatch::has_opt_impl(expected_weight_format, a, b, c, d, asm_info); |
| 577 | } |
| 578 | |
| 579 | bool CpuGemm::isVarWeightsKernel() const |
| 580 | { |
nothing calls this directly
no test coverage detected