Skip to content
Snippets Groups Projects
Commit 9e2606e2 authored by Alex Rothberg's avatar Alex Rothberg
Browse files

Fix cl_load_edit_kernel with build options

parent 7aad056f
No related branches found
No related tags found
No related merge requests found
......@@ -71,7 +71,7 @@ class PyOpenCLMagics(Magics):
header = "%%cl_kernel"
if build_options:
header = "%s %s" % (header, build_options)
header = '%s -o "%s"' % (header, build_options)
content = "%s\n\n%s" % (header, kernel)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment