| 71 | } |
| 72 | |
| 73 | ValueRef broadcast_to(ValueRef x, ValueRef s) { |
| 74 | static auto op = Broadcast::make(); |
| 75 | return imperative::apply(*op, x, s)[0]; |
| 76 | } |
| 77 | |
| 78 | ValueRef make_empty_tensor( |
| 79 | CompNodeValue::ref_t device, ValueRef shape, DTypeValue::ref_t dtype) { |
no test coverage detected