Tool/software:
Hi,
Looks to me that there is a bug in DSPF_sp_cholesky optimized function for odd order values.
_nassert is not actually forcing parameter to be even number so the confusion arises (it only says should be > 0).
Code tries to do two elements in parallel to unroll the loop but for odd order, code will try access out of allocated L array memory of [order x order] size:
If this proves as correct from your team, would be good to update SDK function with either code change or forcing order to be even number.