Skip to content
Snippets Groups Projects
Commit d4705ccd authored by Andreas Klöckner's avatar Andreas Klöckner
Browse files

Add Array.get_item().

parent f1f2600f
No related branches found
No related tags found
No related merge requests found
......@@ -479,6 +479,19 @@ class Array(object):
return ary
def get_item(self, index, queue=None, wait_for=None):
if not isinstance(index, tuple):
index = (index,)
if len(index) != len(self.shape):
raise ValueError("incorrect number of indices")
tgt = np.empty((), self.dtype)
cl.enqueue_copy(queue or self.queue, tgt, self.data,
is_blocking=True, wait_for=wait_for,
device_offset=_builtin_sum(i*s for i, s in zip(index, self.strides)))
return tgt[()]
def copy(self, queue=None):
""".. versionadded:: 2013.1"""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment