Part Number: TMS320C6657
Other Parts Discussed in Thread: MATHLIB
Tool/software: TI C/C++ Compiler
I have many loops in my code that are disqualified for pipelining due to containing calls to functions in math.h, such as sin(), cos(), sqrt(), pow(), etc.
Is there anything I can do for these loops to be pipelined?
Here is an example of a loop that is disqualified:
for (k = 0; k < AEC_FFT_SIZE_2+1; k++)
{
arg = factor*k;
cfr_fft[k] = (float) cos(arg);
}
I would really appreciate any advice.