diff --git a/pyopencl/array.py b/pyopencl/array.py index 3805d2d8e82b814e0c16b7258d1b2015b1753be7..ad0e469e0c4cdb392ce936a5fdf1b18412c16949 100644 --- a/pyopencl/array.py +++ b/pyopencl/array.py @@ -584,6 +584,10 @@ class Array(object): *ary* must have the same dtype and size (not necessarily shape) as *self*. + *async_* is a Boolean indicating whether the function is allowed + to return before the transfer completes. To avoid synchronization + bugs, this defaults to *False*. + .. versionchanged:: 2017.2.1 Python 3.7 makes ``async`` a reserved keyword. On older Pythons,