Tflite batchnorm implementation

Hi

I am confused to do batchnorm in tflite.

While converting to tflite…batchnorm is getting converted as mul and add…whether normal mul and add operation is same with this?.can anyone pls help.

Hi @Mind_Magic ,
In TFLite, The multiplication and addition steps of the batch normalization are fused into a single multiply-add operation. The fusion operation improves speed by reducing the number of operations. Mathematically, this operation is the same as multiply-addition operation. Please refer link

Thank You