| 139 | |
| 140 | template <typename Backend> |
| 141 | py::list py_shape(const Tensor<Backend> &t) { |
| 142 | return as_py_list(t.shape()); |
| 143 | } |
| 144 | |
| 145 | template <typename Backend> |
| 146 | std::vector<py::tuple> py_shape_list(const TensorList<Backend> &tl) { |
nothing calls this directly
no test coverage detected