! * \brief Check if the Tensor is contiguous. * \return True if the Tensor is contiguous, false otherwise. */
| 805 | * \return True if the Tensor is contiguous, false otherwise. |
| 806 | */ |
| 807 | bool IsContiguous() const { return tvm::ffi::IsContiguous(tensor_); } |
| 808 | |
| 809 | // the following code are convenient APIs redirections created to provide aten-style api |
| 810 | /*! |
nothing calls this directly
no test coverage detected