You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
def from_cuda_array_interface(cls, obj: object, stream_ptr: int | None=None) -> StridedMemoryView:
161
-
"""Create a view from an object supporting the ``__cuda_array_interface__`` protocol.
171
+
"""Create a view from an object supporting the `__cuda_array_interface__ <https://numba.readthedocs.io/en/stable/cuda/cuda_array_interface.html>`_ protocol.
162
172
163
173
Parameters
164
174
----------
165
175
obj : object
166
-
An object implementing the ``__cuda_array_interface__`` protocol.
176
+
An object implementing the `__cuda_array_interface__ <https://numba.readthedocs.io/en/stable/cuda/cuda_array_interface.html>`_ protocol.
167
177
stream_ptr : int, optional
168
178
Stream pointer for synchronization. If ``None``, no synchronization is performed.
169
179
"""
@@ -173,12 +183,12 @@ cdef class StridedMemoryView:
0 commit comments