Hi team,
I was going through the supported operations and found that there is support for "BatchNormalization". I have my custom model in which there is BatchNorm layer which applies 1d batch norm (to an output from Linear layer). When I compile model and see runtimes_visualization.svg, I find that BatchNorm is TIDL supported (also could confirm it from debug_level 4). But, output is not as expected (dimension wise, expected is 1x512 and I get a single value so dim is empty tuple). So, I guess it is supported only for 2d BatchNorm and not 1d Batchnorm even though it virtually goes on the board for acceleration. Will there be a future update regarding this? I had one more workaround in my mind, as currently supported BN works channel wise, should I change my 1d vector (1x512) to 4d 1x512x1x1 and try to compile it?
Thanks,
Sourabh