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

Limit POCL workaround to 64 bits

parent 75f50fbb
No related branches found
No related tags found
No related merge requests found
...@@ -329,6 +329,7 @@ def has_struct_arg_count_bug(dev): ...@@ -329,6 +329,7 @@ def has_struct_arg_count_bug(dev):
if dev.platform.name == "Apple" and dev.type & cl.device_type.CPU: if dev.platform.name == "Apple" and dev.type & cl.device_type.CPU:
return "apple" return "apple"
if dev.platform.name == "Portable Computing Language": if (dev.platform.name == "Portable Computing Language"
and dev.address_bits == 64):
return "pocl" return "pocl"
return False return False
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