| 436 | } |
| 437 | |
| 438 | Tensor stack(const TensorList &tensors, int64_t axis) { |
| 439 | return kernel::stack(tensors, axis); |
| 440 | } |
| 441 | |
| 442 | Tensor &stack(Tensor &out, const TensorList &tensors, int64_t axis) { |
| 443 | return kernel::stack(out, tensors, axis); |
no outgoing calls
no test coverage detected