TrueStudio VERY VERY slow compared to Keil. How to get __sqrtf() function without IEEE error checking bloat?
I am currently working on switching my Keil workspaces to Atollic TrueSTUDIO.
I realized that my calculation cycle time in TrueSTUDIO is much longer than old workspace that is implemented in Keil.
I was using __sqrtf() function instead of sqrtf() function in my calculations. But I can not find this function in my math.h library. __sqrtf() intrinsic avoids the overhead of checking the input value and generates the VSQRT instruction directly instead of a call to sqrtf().
How do or should stay with Keil?
Thanks