I am using C5515 ezDSP Stick. From documents, I see that C5515 has parallelism feature. I want to use this feature to increase the performance of my algorithm. Please guide me to do this in C code. Thank you.
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.
I am using C5515 ezDSP Stick. From documents, I see that C5515 has parallelism feature. I want to use this feature to increase the performance of my algorithm. Please guide me to do this in C code. Thank you.
There is no method to directly control whether the compiler schedules instructions in parallel or not. You increase your chances by using a higher level of optimization via the option --opt_level=n, where n can be 0-3.
Thanks and regards,
-George