From ba5d035e7b070779c8bef2a0ea83032ce35b6c2d Mon Sep 17 00:00:00 2001 From: Stephan Seitz <stephan.seitz@fau.de> Date: Thu, 15 Aug 2019 14:40:22 +0200 Subject: [PATCH] OpenCL: Fix typo in docstring --- pystencils/backends/opencl_backend.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pystencils/backends/opencl_backend.py b/pystencils/backends/opencl_backend.py index 01c2c41..d2e40a6 100644 --- a/pystencils/backends/opencl_backend.py +++ b/pystencils/backends/opencl_backend.py @@ -12,7 +12,7 @@ with open(join(dirname(__file__), 'opencl1.1_known_functions.txt')) as f: def generate_opencl(astnode: Node, signature_only: bool = False) -> str: - """Prints an abstract syntax tree node as CUDA code. + """Prints an abstract syntax tree node (made for target 'gpu') as OpenCL code. Args: astnode: KernelFunction node to generate code for -- GitLab