You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Most of the OpenCL kernels seem to take about 1-3 seconds to compile with pocl. But, aca.cu takes almost three minutes. The is true on both my machine and the github actions CI servers so I suspect it will replicate elsewhere too.
The problem vanishes if I turn off optimization flags using -cl-opt-disable. I would actually be okay leaving this flag on all the time. But, that caused some segfault errors! I'm not sure what the problem is there.
Obviously the Mako code generation is producing a lot of code, but it's not substantially more code in aca.cu compared to the other kernels like free.cu or block.cu. So, what is causing the compiler to burp here?
The text was updated successfully, but these errors were encountered:
Most of the OpenCL kernels seem to take about 1-3 seconds to compile with
pocl
. But,aca.cu
takes almost three minutes. The is true on both my machine and the github actions CI servers so I suspect it will replicate elsewhere too.Ideas:
-cl-opt-disable
. I would actually be okay leaving this flag on all the time. But, that caused some segfault errors! I'm not sure what the problem is there.aca.cu
compared to the other kernels likefree.cu
orblock.cu
. So, what is causing the compiler to burp here?The text was updated successfully, but these errors were encountered: