move arch-specific code to arch/SSE and arch/AltiVec subdirs.

rename the noarch PacketMath.h to DummyPacketMath.h
This commit is contained in:
Benoit Jacob
2008-05-12 08:30:42 +00:00
parent 3562b01105
commit dca416cace
4 changed files with 11 additions and 17 deletions

View File

@@ -50,11 +50,12 @@ namespace Eigen {
#include "src/Core/NumTraits.h"
#include "src/Core/MathFunctions.h"
#include "src/Core/PacketMath.h"
#include "src/Core/DummyPacketMath.h"
#if defined EIGEN_VECTORIZE_SSE
#include "src/Core/PacketMath_SSE.h"
#include "src/Core/arch/SSE/PacketMath.h"
#elif defined EIGEN_VECTORIZE_ALTIVEC
#include "src/Core/PacketMath_Altivec.h"
#include "src/Core/arch/AltiVec/PacketMath.h"
#endif
#include "src/Core/Functors.h"