| 1428 | } |
| 1429 | |
| 1430 | std::shared_ptr<TensorList<GPUBackend>> TensorListFromListOfDLPackObjectsGPU( |
| 1431 | py::list &list_of_objects, |
| 1432 | const std::optional<std::string> &layout, |
| 1433 | py::object stream, |
| 1434 | bool contiguous) { |
| 1435 | return TensorListFromListOfDLPackObjects<GPUBackend>( |
| 1436 | list_of_objects, layout, stream, contiguous); |
| 1437 | } |
| 1438 | |
| 1439 | template <typename Backend> |
| 1440 | std::shared_ptr<TensorList<Backend>> TensorListFromListOfTensors( |
no outgoing calls
no test coverage detected