| 61 | } |
| 62 | |
| 63 | ValueRef reduce_to(ValueRef x, ValueRef s) { |
| 64 | static auto op = Reduce::make(); |
| 65 | return imperative::apply(*op, x, s)[0]; |
| 66 | } |
| 67 | |
| 68 | ValueRef reshape_to(ValueRef x, ValueRef s) { |
| 69 | static auto op = Reshape::make(); |
no test coverage detected