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

Fix get_cl_header_version().

parent c985dfa9
No related branches found
No related tags found
No related merge requests found
......@@ -353,7 +353,7 @@ namespace pyopencl
{
return py::make_tuple(
PYOPENCL_CL_VERSION >> (3*4),
PYOPENCL_CL_VERSION >> (1*4)
(PYOPENCL_CL_VERSION >> (1*4)) & 0xff
);
}
......
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