r"""Returns a :class:`numpy.dtype` object represents the data type of a :class:`~.Tensor`. .. seealso:: see :ref:`tensor-dtype` for more details.
(self)
| 121 | |
| 122 | @property |
| 123 | def dtype(self) -> np.dtype: |
| 124 | r"""Returns a :class:`numpy.dtype` object represents the data type of a :class:`~.Tensor`. |
| 125 | |
| 126 | .. seealso:: see :ref:`tensor-dtype` for more details. |
| 127 | """ |
| 128 | return super().dtype |
| 129 | |
| 130 | @property |
| 131 | def format(self) -> str: |