| 643 | } |
| 644 | |
| 645 | int32_t gemm_finalize(context& ctx, |
| 646 | const shape& output_shape, |
| 647 | const std::vector<shape>& input_shapes, |
| 648 | float alpha, |
| 649 | float beta, |
| 650 | bool compute_fp32, |
| 651 | int32_t solution_idx) |
| 652 | { |
| 653 | return gemm_finalize_impl( |
| 654 | ctx, output_shape, input_shapes, alpha, beta, compute_fp32, solution_idx); |
| 655 | } |
| 656 | |
| 657 | int32_t gemm_finalize(context& ctx, |
| 658 | const shape& output_shape, |
no test coverage detected