| 145 | } |
| 146 | |
| 147 | instruction_ref |
| 148 | insert_ops(module& m, instruction_ref ins, const std::vector<operation>& ops, instruction_ref input) |
| 149 | { |
| 150 | return std::accumulate( |
| 151 | ops.begin(), ops.end(), input, [&](instruction_ref x, const operation& op) { |
| 152 | return m.insert_instruction(ins, op, x); |
| 153 | }); |
| 154 | } |
| 155 | |
| 156 | struct find_nested_shape_transforms |
| 157 | { |
no test coverage detected