aboutsummaryrefslogtreecommitdiff
path: root/src/core/NEON/kernels/arm_gemm/transforms
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/NEON/kernels/arm_gemm/transforms')
-rw-r--r--src/core/NEON/kernels/arm_gemm/transforms/a32_transpose_interleave_8way_32bit.hpp4
-rw-r--r--src/core/NEON/kernels/arm_gemm/transforms/a64_transpose_interleave_12way_16bit.hpp4
-rw-r--r--src/core/NEON/kernels/arm_gemm/transforms/a64_transpose_interleave_24way_16bit.hpp4
3 files changed, 6 insertions, 6 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
);
}
diff --git a/src/core/NEON/kernels/arm_gemm/transforms/a64_transpose_interleave_12way_16bit.hpp b/src/core/NEON/kernels/arm_gemm/transforms/a64_transpose_interleave_12way_16bit.hpp
index 16fa31eb67..ec54ce00ea 100644
--- a/src/core/NEON/kernels/arm_gemm/transforms/a64_transpose_interleave_12way_16bit.hpp
+++ b/src/core/NEON/kernels/arm_gemm/transforms/a64_transpose_interleave_12way_16bit.hpp
@@ -37,7 +37,7 @@ inline void TransformImpl<6, 1, true, 4, 4, false>::Transform(
// Redirect to a 12 x uint16_t specialisation
TransformImpl<12, 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<12, 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
);
}
diff --git a/src/core/NEON/kernels/arm_gemm/transforms/a64_transpose_interleave_24way_16bit.hpp b/src/core/NEON/kernels/arm_gemm/transforms/a64_transpose_interleave_24way_16bit.hpp
index c39dd82119..80420dd717 100644
--- a/src/core/NEON/kernels/arm_gemm/transforms/a64_transpose_interleave_24way_16bit.hpp
+++ b/src/core/NEON/kernels/arm_gemm/transforms/a64_transpose_interleave_24way_16bit.hpp
@@ -37,7 +37,7 @@ inline void TransformImpl<12, 1, true, 4, 4, false>::Transform(
// Redirect to a 24 x uint16_t specialisation
TransformImpl<24, 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<24, 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
);
}