Skip to content

Commit ea0b571

Browse files
Improved on __repr__ of USM memory blobs
``` In [1]: import dpctl.memory as dpm In [2]: dpm.MemoryUSMShared(64) Out[2]: <SYCL(TM) USM-shared allocation of 64 bytes at 0x564eb7f30000> ```
1 parent 46ece5e commit ea0b571

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dpctl/memory/_memory.pyx

+1-1
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ cdef class _Memory:
325325

326326
def __repr__(self):
327327
return (
328-
"<SYCL(TM) USM-{} allocated memory block of {} bytes at {}>"
328+
"<SYCL(TM) USM-{} allocation of {} bytes at {}>"
329329
.format(
330330
self.get_usm_type(),
331331
self.nbytes,

0 commit comments

Comments
 (0)