Part Number: TMS320F280037
Tool/software:
Hello, my project is in relaxed FP mode, but there is one place where I would like to use the strict sinf() and sqrtf() functions for maximum precision. My main question: Is it possible to directly call the strict (library) functions from user code?
I saw these definitions in math.h. These are active in relaxed mode and reroute calls to sqrtf() and sinf() to their relaxed (builtin) equivalents, correct?

And if I were in the opposite situation (i.e. if I were wanting to call the relaxed functions in a strict-mode project), the answer would be to call __sinf() instead of sinf(), correct?
I saw in another thread that the relaxed sinf() has a precision of "1 ULP". What does ULP stand for?
Thanks