| 584 | } |
| 585 | |
| 586 | static PyObject* PyTensorObject_shape(PyObject* self, void* unused) { |
| 587 | return functional::CastToPyObject(PyTensor_Unpack(self)->shape()); |
| 588 | } |
| 589 | |
| 590 | static PyObject* PyTensorObject_dtype(PyObject* self, void* unused) { |
| 591 | HANDLE_ERRORS |
nothing calls this directly
no test coverage detected