Hello everyone,
I use Floating-point of TMS320C6748 for calculate double operation. I don't know I configure Is correct?my configure Build Option->Compiler->Basic->Target Version->C674x;Build Option->Linker->Libraries->Inc1.Libraries->rts6740.lib;CMD->-l rts67plus.lib -levmomap138_bsl.lib.my CCS3.3.81.5,CGT 6.1.21.
my Test result:
double l,tmpl,tmpd;
l = 10.00; need 13 clock;
tmpl = 20.00; need 13 clock;
tmpd = 30.00; need 13 clock;
if( l >= tmpl) need 14clock;
l = tmpl;
tmpl = tmpd; need 16 clock;
l = tmpl*tmpd; need 26clock;
tmpd = l/tmpl;need 901clock;
why
So time consuming calculation
?
How to provide the calculation speed??
Thanks!