Conv csim fix
Created by: vloncar
C simulation of KERAS_conv1d example model fails due to the size of mult array, which get allocated on stack. Synthesis however, works as expected. So instead stack allocation, allocate using malloc
during csim, but still use standard []
allocation during synthesis.