Part Number: OMAP-L138
Other Parts Discussed in Thread: MATHLIB
Tool/software: Code Composer Studio
As I understand it software pipe-lining is critical to high performing loops. If I have a simple loop that computes the std::expf(float) of an array of floats I am met with advice from the advisor:
advice #30000: Loop at line 10 cannot be scheduled efficiently,
as it contains a function call ("expf").
Try to inline call or consider rewriting loop.
...how can standard library calls, such as std::exp, be inlined?
Some research pointed me toward possibly using Mathlib, but the documentation on how to link and use it with Code Composer plus use the inline version is very lacking.