| 31 | inline namespace MIGRAPHX_INLINE_NS { |
| 32 | |
| 33 | migraphx::program test_gemm() |
| 34 | { |
| 35 | migraphx::program p; |
| 36 | auto* mm = p.get_main_module(); |
| 37 | auto a = mm->add_parameter("a", migraphx::shape{migraphx::shape::float_type, {4, 5}}); |
| 38 | auto b = mm->add_parameter("b", migraphx::shape{migraphx::shape::float_type, {5, 3}}); |
| 39 | mm->add_instruction(migraphx::make_op("dot"), a, b); |
| 40 | return p; |
| 41 | } |
| 42 | |
| 43 | } // namespace MIGRAPHX_INLINE_NS |
| 44 | } // namespace driver |
no test coverage detected