aboutsummaryrefslogtreecommitdiff
path: root/src/indirect/vectors.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/indirect/vectors.hh')
-rw-r--r--src/indirect/vectors.hh19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/indirect/vectors.hh b/src/indirect/vectors.hh
new file mode 100644
index 0000000..a9f51db
--- /dev/null
+++ b/src/indirect/vectors.hh
@@ -0,0 +1,19 @@
+#ifndef VECTORS_HH
+#define VECTORS_HH
+
+#include <cassert>
+#include <cmath>
+#include <cstdlib>
+
+ // Default vector implementation, does not vectorise
+#include "vectors-default.hh"
+
+#if 0
+ // Intel SSE vector instructions
+#include "vectors-intel.hh"
+
+ // Power (Altivec) vector instructions
+#include "vectors-power.hh"
+#endif
+
+#endif // #ifndef VECTORS_HH