Tool/software: Code Composer Studio
Hi,friends.
I am using EVE and implemented my kernel on a .k file.
I noticed this variable(__pblock_func ) in the .h file builded by the .k will take up some space in WMEM.
This makes the first address of vcop_malloc applying for WMEM increase.
As a result, the available WMEM space becomes smaller.
In my algorithm, I need to use WMEM to store some intermediate variables.
This means that as the number of operators increases, the space available to WMEM decreases, and the calculation efficiency becomes lower, which affects the overall performance.
Can I put the variable in other memory spaces without affecting performance?
If so, what should I do?