| 337 | */ |
| 338 | template <typename U> |
| 339 | void set_contiguous_data(U *data) { |
| 340 | detail::check_implicit_conversion<U, DataType>(); |
| 341 | calculate_pointers(this->data, data, shape); |
| 342 | } |
| 343 | |
| 344 | /** |
| 345 | * @brief Checks whether the tensors in the list are packed sequentially, without gaps. |
no test coverage detected