| 60 | } |
| 61 | |
| 62 | migraphx::shape compute_shape(std::vector<migraphx::shape> inputs) const |
| 63 | { |
| 64 | if(inputs.empty()) |
| 65 | return {}; |
| 66 | return inputs.front(); |
| 67 | } |
| 68 | std::vector<std::size_t> output_alias(const std::vector<migraphx::shape>&) const { return {0}; } |
| 69 | }; |
| 70 |