| 116 | |
| 117 | template <class... Ts> |
| 118 | migraphx::instruction_ref add_instruction_stream(std::size_t n, Ts... xs) |
| 119 | { |
| 120 | max_stream = std::max(max_stream, n); |
| 121 | auto ins = mm->add_instruction(xs...); |
| 122 | ins2stream[ins] = n; |
| 123 | return ins; |
| 124 | } |
| 125 | |
| 126 | template <class... Ts> |
| 127 | migraphx::instruction_ref add_return(Ts... xs) |
no test coverage detected