File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -903,7 +903,7 @@ cdef class SyclQueue(_SyclQueue):
903
903
@property
904
904
def sycl_device (self ):
905
905
"""
906
- Returns :class:`.SyclDevice` targeted by this queuey .
906
+ Returns :class:`.SyclDevice` targeted by this queue .
907
907
908
908
Returns:
909
909
:class:`SyclDevice`
Original file line number Diff line number Diff line change @@ -357,9 +357,9 @@ cdef class _Memory:
357
357
358
358
* ``"data"`` (Tuple[int, bool])
359
359
unified address space pointer presented as Python integer
360
- and a Boolean value of 'writeable ' flag. If ``False`` the
360
+ and a Boolean value of 'writable ' flag. If ``False`` the
361
361
allocation is read-only. The return flag is always set to
362
- writeable .
362
+ writable .
363
363
* ``"shape"`` (Tuple[int])
364
364
Extent of array in bytes. Shape is always 1-tuple for
365
365
this object.
@@ -789,7 +789,7 @@ cdef class MemoryUSMHost(_Memory):
789
789
queue (Optional[:class:`dpctl.SyclQueue`]):
790
790
SYCL queue associated with return allocation
791
791
instance. Allocation is made in host memory accessible
792
- to all device in te SYCL context from the queue.
792
+ to all device in the SYCL context from the queue.
793
793
Allocation is bound to SYCL context from the queue.
794
794
If ``queue`` is ``None`` a cached
795
795
default-constructed :class:`dpctl.SyclQueue` is
Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ def intel_device_info(dev, /):
66
66
Unsupported descriptors are omitted from the dictionary.
67
67
68
68
Descriptors other than the PCI identifier are supported only
69
- for :class:`.SyclDevices` with Leve -Zero backend.
69
+ for :class:`.SyclDevices` with Level -Zero backend.
70
70
"""
71
71
if not isinstance (dev , SyclDevice ):
72
72
raise TypeError (f"Expected dpctl.SyclDevice, got { type (dev )} " )
You can’t perform that action at this time.
0 commit comments