| 47 | |
| 48 | template <class F> |
| 49 | static concat_arg<F> arg(std::string name, std::vector<migraphx::instruction_ref> inputs, F f) |
| 50 | { |
| 51 | return {std::move(name), std::move(inputs), std::move(f)}; |
| 52 | } |
| 53 | |
| 54 | template <class Arg, class... Args> |
| 55 | static migraphx::instruction_ref |