aboutsummaryrefslogtreecommitdiff
path: root/src/core/NEON/kernels/arm_gemm/transforms/a32_transpose_interleave_8way_32bit.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/NEON/kernels/arm_gemm/transforms/a32_transpose_interleave_8way_32bit.hpp')
-rw-r--r--src/core/NEON/kernels/arm_gemm/transforms/a32_transpose_interleave_8way_32bit.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/NEON/kernels/arm_gemm/transforms/a32_transpose_interleave_8way_32bit.hpp b/src/core/NEON/kernels/arm_gemm/transforms/a32_transpose_interleave_8way_32bit.hpp
index 56a226fce0..587bec366a 100644
--- a/src/core/NEON/kernels/arm_gemm/transforms/a32_transpose_interleave_8way_32bit.hpp
+++ b/src/core/NEON/kernels/arm_gemm/transforms/a32_transpose_interleave_8way_32bit.hpp
@@ -37,7 +37,7 @@ inline void TransformImpl<8, 1, true, 4, 4, false>::Transform(
// Redirect to a 16x uint16_t specialisation
TransformImpl<16, 1, true, 2, 2, false>::Transform(
reinterpret_cast<uint16_t *>(out),
- reinterpret_cast<const uint16_t * const>(in),
+ reinterpret_cast<const uint16_t *>(in),
stride*2, x0*2, xmax*2, k0, kmax
);
}
@@ -52,7 +52,7 @@ inline void TransformImpl<16, 1, true, 2, 2, false>::Transform(
// Redirect to a uint16_t specialisation
Transform(
reinterpret_cast<uint16_t *>(out),
- reinterpret_cast<const uint16_t * const>(in),
+ reinterpret_cast<const uint16_t *>(in),
stride, x0, xmax, k0, kmax
);
}