1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-04-04 19:25:56 +01:00

Revert "AVX: uninitialised variable fix"

This reverts commit c22c3db9ad652eadbd334fde70235aace90faa75.
This commit is contained in:
Antonin Portelli 2016-12-15 18:15:35 +00:00
parent c22c3db9ad
commit b791c274b0

View File

@ -514,7 +514,7 @@ namespace Optimization {
template<int n>
static inline __m256 tRotate(__m256 in){
__m256 tmp = Permute::Permute0(in);
__m256 ret = in;
__m256 ret;
if ( n > 3 ) {
_mm256_alignr_epi32_grid(ret,in,tmp,n);
} else {
@ -526,7 +526,7 @@ namespace Optimization {
template<int n>
static inline __m256d tRotate(__m256d in){
__m256d tmp = Permute::Permute0(in);
__m256d ret = in;
__m256d ret;
if ( n > 1 ) {
_mm256_alignr_epi64_grid(ret,in,tmp,n);
} else {