The number of bytes in the memory region.
(self)
| 299 | |
| 300 | @property |
| 301 | def nbytes(self): |
| 302 | """ |
| 303 | The number of bytes in the memory region. |
| 304 | """ |
| 305 | return util.volume(self.shape) * self.itemsize |
| 306 | |
| 307 | @func.constantmethod |
| 308 | def copy_to(self, host_buffer, stream=None): |