04-24-2016 07:26 PM
I found that in my kernel design, by default SDAccel compiler optimizes loops by forcing pipeline etc optimizations, how to disable automatic kernel optimizations by compiler, I want my naive design to run on board as it is.
Thanks
01-29-2017 09:27 PM
Hi Heeran
Thanks for your response. I will try out this option with xocc.
01-29-2017 09:23 PM
Please add the option below to xocc command line:
--xp param:compiler.enableAutoPipelining=false
There is no direct option to disable auto-pipelining for specific loops in design. But user can turn off auto-pipelining at command line and then add pipeline on selected loops to achieve the same thing.
01-29-2017 09:27 PM
Hi Heeran
Thanks for your response. I will try out this option with xocc.