Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix GPUArray.get{,_async}() docs. Fixes #58
  • Loading branch information
inducer committed Oct 31, 2014
1 parent c0fad50 commit 9a86c76
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions doc/source/array.rst
Expand Up @@ -117,20 +117,20 @@ The :class:`GPUArray` Array Class
*ary* must have the same dtype and size (not necessarily shape) as *self*.
.. method :: get(ary=None, stream=None, pagelocked=False)
.. method :: get(ary=None, pagelocked=False)
Transfer the contents of *self* into *ary* or a newly allocated
:mod:`numpy.ndarray`. If *ary* is given, it must have the right
size (not necessarily shape) and dtype. If it is not given,
a *pagelocked* specifies whether the new array is allocated
page-locked.
.. method :: get_async(ary=None, stream=None)
.. method :: get_async(stream=None, ary=None)
Transfer the contents of *self* into *ary* or a newly allocated
:mod:`numpy.ndarray`. If *ary* is given, it must have the right
size (not necessarily shape) and dtype. If it is not given,
a page-locked* array is newly allocated.
a *page-locked* array is newly allocated.
.. method :: copy()
Expand Down

0 comments on commit 9a86c76

Please sign in to comment.