| 252 | } // namespace |
| 253 | |
| 254 | void fuse_concat::apply(module_pass_manager& mpm) const |
| 255 | { |
| 256 | match::find_matches(mpm, find_pointwise_concat_pointwise{}); |
| 257 | mpm.run_pass(migraphx::dead_code_elimination{}); |
| 258 | match::find_matches(mpm, find_concat_pointwise{}); |
| 259 | } |
| 260 | |
| 261 | } // namespace MIGRAPHX_INLINE_NS |
| 262 | } // namespace migraphx |
nothing calls this directly
no test coverage detected