diff --git a/pystencils/opencl/opencljit.py b/pystencils/opencl/opencljit.py index caea978debc1da7491d13403d866813242a366da..75076db53bd8dd37457fc4bb9c9dea833942d57f 100644 --- a/pystencils/opencl/opencljit.py +++ b/pystencils/opencl/opencljit.py @@ -30,6 +30,7 @@ def make_python_function(kernel_function_node, opencl_queue, opencl_ctx, argumen if argument_dict is None: argument_dict = {} + # Changing of kernel name necessary since compilation with default name "kernel" is not possible (OpenCL keyword!) kernel_function_node.function_name = "opencl_" + kernel_function_node.function_name header_list = ['"opencl_stdint.h"'] + list(get_headers(kernel_function_node)) includes = "\n".join(["#include %s" % (include_file,) for include_file in header_list])