This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

TDA4VM: Is it normal that the mathlib powdp() function runs slower on the TDA4VM C66 than on the CPU?

Part Number: TDA4VM
Other Parts Discussed in Thread: MATHLIB

My test code

double a = 142.224389823827;
double b = 0;
for (long i = 0; i < 100000000; i++)
{
    b = powdp(a,2); // a^2
}

This code takes 20 seconds to run on the TDA4VM C66 and 4 seconds on the TDA4VM CPU.

is this normal?