From 399ce1ed639b6afd6273951407d42aef2cebd669 Mon Sep 17 00:00:00 2001 From: Chip Kerchner Date: Wed, 16 Nov 2022 13:41:42 +0000 Subject: [PATCH] Fix duplicate execution code for Power 8 Altivec in pstore_partial. --- Eigen/src/Core/arch/AltiVec/PacketMath.h | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Eigen/src/Core/arch/AltiVec/PacketMath.h b/Eigen/src/Core/arch/AltiVec/PacketMath.h index afb2f38fe..b0f85294e 100644 --- a/Eigen/src/Core/arch/AltiVec/PacketMath.h +++ b/Eigen/src/Core/arch/AltiVec/PacketMath.h @@ -1460,11 +1460,6 @@ template EIGEN_ALWAYS_INLINE void pstoreu_partial_common(__UNPA if (i < n2) { *reinterpret_cast(to2 + i) = *reinterpret_cast(store2 + i); } - - LOAD_STORE_UNROLL_16 - for (Index i = 0; i < n; i++) { - to[i] = from[i]; - } #endif }