diff --git a/doc/misc.rst b/doc/misc.rst index 2f8f2da1878c7d981b024d7e73fb306c315f2021..9ac75437f5dcf61e1b13f891e6ab1531ca562117 100644 --- a/doc/misc.rst +++ b/doc/misc.rst @@ -79,6 +79,10 @@ Version 2013.2 This version is currently under development. You can get snapshots from PyOpenCL's `git repository <https://github.com/inducer/pyopencl>`_ +* Add :meth:`pyopencl.array.Array.map_to_host`. +* Support *strides* on :func:`pyopencl.enqueue_map_buffer` and + :func:`pyopencl.enqueue_map_image`. + Version 2013.1 -------------- diff --git a/pyopencl/array.py b/pyopencl/array.py index e1d7b40a3bbe2d65ab2678936723541f2386b023..68f28e5d160e6ff3ca25aec4a2d50213aff2979a 100644 --- a/pyopencl/array.py +++ b/pyopencl/array.py @@ -351,6 +351,8 @@ class Array(object): .. automethod :: setitem + .. automethod :: map_to_host + .. rubric:: Comparisons, conditionals, any, all .. versionadded:: 2013.2