diff options
author | Willem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl> | 2020-06-23 15:19:06 +0200 |
---|---|---|
committer | Willem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl> | 2020-07-02 15:54:12 +0200 |
commit | 492c0211608fa756ba6642ff7ae3b479765a955b (patch) | |
tree | 325b34d12f5969f7b90d6eaacb4d023e2a386213 /python/astra/experimental.pyx | |
parent | ecfb65a05b8ed5171ad65173581d5fe328926995 (diff) | |
download | astra-492c0211608fa756ba6642ff7ae3b479765a955b.tar.gz astra-492c0211608fa756ba6642ff7ae3b479765a955b.tar.bz2 astra-492c0211608fa756ba6642ff7ae3b479765a955b.tar.xz astra-492c0211608fa756ba6642ff7ae3b479765a955b.zip |
Check numpy array type
Diffstat (limited to 'python/astra/experimental.pyx')
-rw-r--r-- | python/astra/experimental.pyx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/astra/experimental.pyx b/python/astra/experimental.pyx index 25ecb24..c76fcbe 100644 --- a/python/astra/experimental.pyx +++ b/python/astra/experimental.pyx @@ -168,9 +168,9 @@ IF HAVE_CUDA==True: :param projector_id: A 3D projector object handle :type datatype: :class:`int` - :param vol: The input data, as either a numpy array, or a GPULink object + :param vol: The pre-allocated output data, as either a numpy array, or a GPULink object :type datatype: :class:`numpy.ndarray` or :class:`astra.data3d.GPULink` - :param proj: The pre-allocated output data, either numpy array or GPULink + :param proj: The input data, either numpy array or GPULink :type datatype: :class:`numpy.ndarray` or :class:`astra.data3d.GPULink` """ direct_FPBP3D(projector_id, vol, proj, "BP") |