Performs the operation __dlpack_device__.
(self: Array, /)
| 487 | return self._array.__dlpack__(stream=stream) |
| 488 | |
| 489 | def __dlpack_device__(self: Array, /) -> Tuple[IntEnum, int]: |
| 490 | """ |
| 491 | Performs the operation __dlpack_device__. |
| 492 | """ |
| 493 | # Note: device support is required for this |
| 494 | return self._array.__dlpack_device__() |
| 495 | |
| 496 | def __eq__(self: Array, other: Union[int, float, bool, Array], /) -> Array: |
| 497 | """ |
no outgoing calls