| 180 | namespace at { |
| 181 | |
| 182 | inline std::vector<at::Tensor> Tensor::tensor_split(int64_t sections, |
| 183 | int64_t dim = 0) const { |
| 184 | return at::tensor_split(*this, sections, dim); |
| 185 | } |
| 186 | |
| 187 | inline std::vector<at::Tensor> Tensor::tensor_split_symint( |
| 188 | c10::SymInt sections, int64_t dim = 0) const { |