COMPMID-2178: Update GEMM assembly code.

Perform offset reduction and requantization within the assembly wrapper.

Change-Id: I5d5b3e1f6f9ef4c71805362c57f88ff199c027a3
Signed-off-by: Georgios Pinitas <georgios.pinitas@arm.com>
Reviewed-on: https://review.mlplatform.org/c/1541
Comments-Addressed: Pablo Marquez <pablo.tello@arm.com>
Reviewed-by: Gian Marco Iodice <gianmarco.iodice@arm.com>
Comments-Addressed: Arm Jenkins <bsgcomp@arm.com>
Tested-by: Arm Jenkins <bsgcomp@arm.com>
diff --git a/src/core/NEON/kernels/arm_gemm/gemm_native.hpp b/src/core/NEON/kernels/arm_gemm/gemm_native.hpp
index 98516b1..ba9163b 100644
--- a/src/core/NEON/kernels/arm_gemm/gemm_native.hpp
+++ b/src/core/NEON/kernels/arm_gemm/gemm_native.hpp
@@ -80,11 +80,11 @@
     GemmNative & operator= (GemmNative &) = delete;
 
     GemmNative(const GemmArgs<Tr> &args)
-            : _Msize(args._Msize), _Nsize(args._Nsize), _Ksize(args._Ksize),
-              _nbatches(args._nbatches), _nmultis(args._nmulti),
-              _beta(args._beta), _ci(args._ci),
-              _k_block(compute_k_block(args)), _n_block(compute_n_block(args)),
-              _window_range(iceildiv(_Msize, strategy::out_height()), _nbatches, iceildiv(_Nsize, _n_block), _nmultis) { }
+               : _Msize(args._Msize), _Nsize(args._Nsize), _Ksize(args._Ksize),
+                 _nbatches(args._nbatches), _nmultis(args._nmulti),
+                 _beta(args._beta), _ci(args._ci),
+                 _k_block(compute_k_block(args)), _n_block(compute_n_block(args)),
+                 _window_range(iceildiv(_Msize, strategy::out_height()), _nbatches, iceildiv(_Nsize, _n_block), _nmultis) { }
 
     // Window is amount per multi multiplied by total number of multis.
     unsigned int get_window_size() const override {
@@ -132,4 +132,4 @@
     }
 };
 
-} // namespace arm_gemm
\ No newline at end of file
+} // namespace arm_gemm