* patch from Konstantinos Margaritis: bugfix in Altivec version of ei_pdiv

and various cleaning in Altivec code. Altivec vectorization have been re-enabled
  in CoreDeclaration
* added copy constructors in non empty functors because I observed weird behavior with
  std::complex<>
This commit is contained in:
Gael Guennebaud
2008-08-25 16:22:56 +00:00
parent 7ce70e1437
commit 8f9d30cb20
4 changed files with 56 additions and 61 deletions

View File

@@ -23,15 +23,12 @@
#ifdef __SSSE3__
#include <tmmintrin.h>
#endif
/*** Disable AltiVec code for now as it's out of date
#elif (defined __ALTIVEC__)
#define EIGEN_VECTORIZE
#define EIGEN_VECTORIZE_ALTIVEC
#include <altivec.h>
// We _need_ to #undef bool as it's defined in <altivec.h> for some reason.
#undef bool
***/
#endif
#endif