! * \brief Get the shape of the Tensor. * \return The shape of the Tensor. */
| 309 | * \return The shape of the Tensor. |
| 310 | */ |
| 311 | ShapeView shape() const { |
| 312 | const TensorObj* obj = get(); |
| 313 | return tvm::ffi::ShapeView(obj->shape, obj->ndim); |
| 314 | } |
| 315 | |
| 316 | /*! |
| 317 | * \brief Get the strides of the Tensor. |