Skip to content

Commit

Permalink
Merge pull request #59 from cancan101/fix_cl_load_edit_kernel
Browse files Browse the repository at this point in the history
Fix cl_load_edit_kernel with build options
  • Loading branch information
inducer committed Jul 30, 2014
2 parents 4c01489 + 9e2606e commit 2382347
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyopencl/ipython_ext.py
Expand Up @@ -71,7 +71,7 @@ def cl_load_edit_kernel(self, line):
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)

Expand Down

0 comments on commit 2382347

Please sign in to comment.