Skip to content
Snippets Groups Projects
Commit 90b73bec authored by Andreas Klöckner's avatar Andreas Klöckner
Browse files

Fix symbol not found for create_image_from_desc on CL 1.1

parent e12f38a3
No related branches found
No related tags found
No related merge requests found
......@@ -21,6 +21,13 @@
#define PYOPENCL_CL_CASTABLE_THIS data()
#endif
#define PYOPENCL_UNSUPPORTED(ROUTINE, VERSION) \
auto err = (error*)malloc(sizeof(error)); \
err->routine = strdup(#ROUTINE); \
err->msg = strdup("unsupported in " VERSION); \
err->code = CL_INVALID_VALUE \
err->other = 0; \
return err;
class clerror : public std::runtime_error {
private:
......
......@@ -81,21 +81,23 @@ create_image_3d(clobj_t *img, clobj_t _ctx, cl_mem_flags flags,
});
}
#if PYOPENCL_CL_VERSION >= 0x1020
error*
create_image_from_desc(clobj_t *img, clobj_t _ctx, cl_mem_flags flags,
cl_image_format *fmt, cl_image_desc *desc, void *buf)
{
#if PYOPENCL_CL_VERSION >= 0x1020
auto ctx = static_cast<context*>(_ctx);
return c_handle_error([&] {
auto mem = pyopencl_call_guarded(clCreateImage, ctx, flags, fmt,
desc, buf);
*img = new_image(mem, fmt);
});
#else
PYOPENCL_UNSUPPORTED(clCreateImage, "CL 1.1 and below")
#endif
}
#endif
error*
image__get_image_info(clobj_t _img, cl_image_info param, generic_info *out)
......
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