Skip to content

Commit 70390dd

Browse files
Added Python get_usm_pointer_type
Used the Cython static method from _Memmory.get_pointer_type in the added function, as well as in the method `get_usm_type`. Added docstrings. ``` Python 3.7.9 (default, Mar 10 2021, 05:18:00) Type 'copyright', 'credits' or 'license' for more information IPython 7.22.0 -- An enhanced Interactive Python. Type '?' for help. In [1]: import dpctl.memory as dpm, dpctl.memory._memory as dpm_m, dpctl In [2]: m = dpm.MemoryUSMDevice(2048, alignment=256) In [3]: dpm_m.get_usm_pointer_type(m._pointer, m.sycl_context) Out[3]: 'device' In [4]: dpm_m.get_usm_pointer_type(m._pointer + 1024, m.sycl_context) Out[4]: 'device' In [5]: m.get_usm_type() Out[5]: 'device' ```
1 parent 5f531ad commit 70390dd

File tree

2 files changed

+82
-17
lines changed

2 files changed

+82
-17
lines changed

dpctl/memory/_memory.pxd

-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ from .._sycl_queue cimport SyclQueue
3131
cdef DPCTLSyclQueueRef get_queue_ref_from_ptr_and_syclobj(
3232
DPCTLSyclUSMRef ptr, object syclobj)
3333

34-
3534
cdef public class _Memory [object Py_MemoryObject, type Py_MemoryType]:
3635
cdef DPCTLSyclUSMRef memory_ptr
3736
cdef Py_ssize_t nbytes

dpctl/memory/_memory.pyx

+82-16
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,49 @@ def _to_memory(unsigned char[::1] b, str usm_kind):
116116
return res
117117

118118

119+
def get_usm_pointer_type(ptr, syclobj):
120+
"""
121+
get_usm_pointer_type(ptr, syclobj)
122+
123+
Gives the SYCL(TM) USM pointer type, using ``sycl::get_pointer_type``,
124+
returning one of 4 possible strings: 'shared', 'host', 'device',
125+
or 'unknown'.
126+
127+
Args:
128+
ptr: int
129+
A pointer stored as size_t Python integer.
130+
syclobj: :class:`dpctl.SyclContext` or :class:`dpctl.SyclQueue`
131+
Python object providing :class:`dpctl.SyclContext` against which
132+
to query for the pointer type.
133+
Returns:
134+
'unknown' if the pointer does not represent USM allocation made using
135+
the given context. Otherwise, returns 'shared', 'device', or 'host'
136+
type of the allocation.
137+
"""
138+
cdef const char* kind
139+
cdef SyclContext ctx
140+
cdef SyclQueue q
141+
cdef DPCTLSyclUSMRef USMRef = NULL
142+
try:
143+
USMRef = <DPCTLSyclUSMRef>(<size_t> ptr)
144+
except Exception as e:
145+
raise TypeError(
146+
"First argument {} could not be converted to Python integer of "
147+
"size_t".format(ptr)
148+
) from e
149+
if isinstance(syclobj, SyclContext):
150+
ctx = <SyclContext>(syclobj)
151+
return _Memory.get_pointer_type(USMRef, ctx).decode("UTF-8")
152+
elif isinstance(syclobj, SyclQueue):
153+
q = <SyclQueue>(syclobj)
154+
ctx = q.get_sycl_context()
155+
return _Memory.get_pointer_type(USMRef, ctx).decode("UTF-8")
156+
raise TypeError(
157+
"Second argument {} is expected to be an instance of "
158+
"SyclContext or SyclQueue".format(syclobj)
159+
)
160+
161+
119162
cdef class _Memory:
120163
""" Internal class implementing methods common to
121164
MemoryUSMShared, MemoryUSMDevice, MemoryUSMHost
@@ -316,31 +359,37 @@ cdef class _Memory:
316359
return iface
317360

318361
def get_usm_type(self, syclobj=None):
362+
"""
363+
get_usm_type(syclobj=None)
364+
365+
Returns the type of USM allocation using Sycl context carried by
366+
`syclobj` keyword argument. Value of None is understood to query
367+
against `self.sycl_context` - the context used to create the
368+
allocation.
369+
"""
319370
cdef const char* kind
320371
cdef SyclContext ctx
321372
cdef SyclQueue q
322373
if syclobj is None:
323374
ctx = self._context
324-
kind = DPCTLUSM_GetPointerType(
325-
self.memory_ptr, ctx.get_context_ref()
326-
)
375+
return _Memory.get_pointer_type(
376+
self.memory_ptr, ctx
377+
).decode("UTF-8")
327378
elif isinstance(syclobj, SyclContext):
328379
ctx = <SyclContext>(syclobj)
329-
kind = DPCTLUSM_GetPointerType(
330-
self.memory_ptr, ctx.get_context_ref()
331-
)
380+
return _Memory.get_pointer_type(
381+
self.memory_ptr, ctx
382+
).decode("UTF-8")
332383
elif isinstance(syclobj, SyclQueue):
333384
q = <SyclQueue>(syclobj)
334385
ctx = q.get_sycl_context()
335-
kind = DPCTLUSM_GetPointerType(
336-
self.memory_ptr, ctx.get_context_ref()
337-
)
338-
else:
339-
raise ValueError(
340-
"syclobj keyword can be either None, or an instance of "
341-
"SyclContext or SyclQueue"
342-
)
343-
return kind.decode('UTF-8')
386+
return _Memory.get_pointer_type(
387+
self.memory_ptr, ctx
388+
).decode("UTF-8")
389+
raise TypeError(
390+
"syclobj keyword can be either None, or an instance of "
391+
"SyclContext or SyclQueue"
392+
)
344393

345394
cpdef copy_to_host(self, obj=None):
346395
"""
@@ -457,7 +506,24 @@ cdef class _Memory:
457506

458507
@staticmethod
459508
cdef bytes get_pointer_type(DPCTLSyclUSMRef p, SyclContext ctx):
460-
"""Returns USM-type of given pointer `p` in given sycl context `ctx`"""
509+
"""
510+
get_pointer_type(p, ctx)
511+
512+
Gives the SYCL(TM) USM pointer type, using ``sycl::get_pointer_type``,
513+
returning one of 4 possible strings: 'shared', 'host', 'device', or
514+
'unknown'.
515+
516+
Args:
517+
p: DPCTLSyclUSMRef
518+
A pointer to test the type of.
519+
ctx: :class:`dpctl.SyclContext`
520+
Python object providing :class:`dpctl.SyclContext` against
521+
which to query for the pointer type.
522+
Returns:
523+
b'unknown' if the pointer does not represent USM allocation made
524+
using the given context. Otherwise, returns b'shared', b'device',
525+
or b'host' type of the allocation.
526+
"""
461527
cdef const char * usm_type = DPCTLUSM_GetPointerType(
462528
p, ctx.get_context_ref()
463529
)

0 commit comments

Comments
 (0)