| 83 | } |
| 84 | |
| 85 | migraphx::shape compute_shape(std::vector<migraphx::shape> inputs) const |
| 86 | { |
| 87 | if(inputs.empty()) |
| 88 | return {}; |
| 89 | return inputs.front(); |
| 90 | } |
| 91 | std::vector<std::size_t> output_alias(const std::vector<migraphx::shape>&) const { return {0}; } |
| 92 | }; |
| 93 |