| 66 | } |
| 67 | |
| 68 | ValueRef reshape_to(ValueRef x, ValueRef s) { |
| 69 | static auto op = Reshape::make(); |
| 70 | return imperative::apply(*op, x, s)[0]; |
| 71 | } |
| 72 | |
| 73 | ValueRef broadcast_to(ValueRef x, ValueRef s) { |
| 74 | static auto op = Broadcast::make(); |
no test coverage detected