| 45 | |
| 46 | #if MIGRAPHX_USE_HIPBLASLT |
| 47 | static void run_lowering(migraphx::program& p, bool offload_copy = false) |
| 48 | { |
| 49 | auto ctx = migraphx::gpu::context{}; |
| 50 | migraphx::run_passes( |
| 51 | *p.get_main_module(), |
| 52 | {migraphx::auto_contiguous{}, migraphx::gpu::lowering{&ctx, offload_copy}}); |
| 53 | } |
| 54 | |
| 55 | static void run_fuse_ops(migraphx::program& p) |
| 56 | { |
no test coverage detected