| 585 | |
| 586 | #ifdef MIGRAPHX_USE_ROCBLAS_TUNING_API |
| 587 | static void gemm_save_solution(context& ctx, |
| 588 | const shape& output_shape, |
| 589 | const std::vector<shape>& input_shapes, |
| 590 | int32_t solution_idx) |
| 591 | { |
| 592 | ctx.get_problem_cache().insert( |
| 593 | "rocblas", gemm_problem(output_shape, input_shapes), solution_idx); |
| 594 | } |
| 595 | #endif |
| 596 | |
| 597 | int32_t gemm_default_solution(context& ctx, |
no test coverage detected