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.

To do a more effiency memcpy in C674x DSP?

HI,TIer.

Right now we wanna develop our own algorithm in DSP,and in the alg,there are lots of memcpy.

I have do a test in which memcpy is placed in for loop,the when I read the .asm file,I found that only two parallel.

for (c = 0; c < 10; c++)
{
memcpy(fff, ttt, 2);
}

So,I think memcpy in CCS is not effiency software pipleined.And,do I need to write a more fast memcpy_dsp function in CCS to make algorithm fun faster?

BR!