aboutsummaryrefslogtreecommitdiff
path: root/src/core/NEON/kernels/arm_gemm/merges/a32_merge_float_8x6.hpp
diff options
context:
space:
mode:
authorGeorgios Pinitas <georgios.pinitas@arm.com>2019-12-09 18:35:57 +0000
committerGeorgios Pinitas <georgios.pinitas@arm.com>2019-12-11 11:16:42 +0000
commitf2cdce30ca782cac7caebc43c7e67caf677b7358 (patch)
treeab38fbe929b537a783344d1f5f1803574101c222 /src/core/NEON/kernels/arm_gemm/merges/a32_merge_float_8x6.hpp
parent1d8977771274b713c1e237e7dcaea7b61a84a86a (diff)
downloadComputeLibrary-f2cdce30ca782cac7caebc43c7e67caf677b7358.tar.gz
COMPMID-2841: Enable aarch32 builds
Decouples the execution state from the architecture. Now architectures can be set as (armv7a, armv8a, etc) and execution state using the `estate` flag with the following options (auto, 32, 64). Change-Id: Ie7f757b3565495a39c7e20fb350a72fd9c5a2a4f Signed-off-by: Georgios Pinitas <georgios.pinitas@arm.com> Reviewed-on: https://review.mlplatform.org/c/2438 Reviewed-by: Pablo Marquez <pablo.tello@arm.com> Comments-Addressed: Arm Jenkins <bsgcomp@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'src/core/NEON/kernels/arm_gemm/merges/a32_merge_float_8x6.hpp')
-rw-r--r--src/core/NEON/kernels/arm_gemm/merges/a32_merge_float_8x6.hpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/NEON/kernels/arm_gemm/merges/a32_merge_float_8x6.hpp b/src/core/NEON/kernels/arm_gemm/merges/a32_merge_float_8x6.hpp
index 9409646818..16bdbb5986 100644
--- a/src/core/NEON/kernels/arm_gemm/merges/a32_merge_float_8x6.hpp
+++ b/src/core/NEON/kernels/arm_gemm/merges/a32_merge_float_8x6.hpp
@@ -83,12 +83,16 @@ void MergeResults<8, 6, false>(float *out, const float *in, const int ldout, con
switch ((y + 5) - ymax) {
case 4:
outptr1 = dummyres;
+ /* fall through */
case 3:
outptr2 = dummyres;
+ /* fall through */
case 2:
outptr3 = dummyres;
+ /* fall through */
case 1:
outptr4 = dummyres;
+ /* fall through */
case 0:
outptr5 = dummyres;
break;