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
I recently stumbled upon an error in the binary version of clFFT.
Since 211 and 213 worked right away, I got an SIGFPE on 212.
This made me curious and so I installed the newest version of the library.
To keep things short - I debugged into library/plan.cpp and found out that Large1DThreshold = 2048. Stepping along lead me to line 654 where the case-part was starting with 8192 and thus the assert(false) is thrown.
I assume, that during the release compilation the assertions are turned off yielding this strange error.
The text was updated successfully, but these errors were encountered:
I recently stumbled upon an error in the binary version of clFFT.
Since 211 and 213 worked right away, I got an SIGFPE on 212.
This made me curious and so I installed the newest version of the library.
To keep things short - I debugged into
library/plan.cpp
and found out thatLarge1DThreshold = 2048
. Stepping along lead me to line654
where the case-part was starting with8192
and thus the assert(false) is thrown.I assume, that during the release compilation the assertions are turned off yielding this strange error.
The text was updated successfully, but these errors were encountered: