| 145 | } |
| 146 | |
| 147 | shape common_shape(const std::vector<shape>& shapes) |
| 148 | { |
| 149 | if(shapes.empty()) |
| 150 | return {}; |
| 151 | return {compute_common_types(shapes), compute_common_lens(shapes)}; |
| 152 | } |
| 153 | |
| 154 | std::vector<instruction_ref> insert_common_args(module& m, |
| 155 | instruction_ref ins, |
no test coverage detected