summaryrefslogtreecommitdiffstats
path: root/staging_vespalib
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2016-10-12 21:24:19 +0000
committerHenning Baldersheim <balder@yahoo-inc.com>2016-10-12 21:24:19 +0000
commit304520ae21fbc0aee67bc1297233b473a3db59ec (patch)
tree085583dc1827a6f242084adbf97c313f4bc9f69a /staging_vespalib
parent66b934b62fe881190abcd0e31b764960fa1484d9 (diff)
Remove unused VectorsPerChunk
Diffstat (limited to 'staging_vespalib')
-rw-r--r--staging_vespalib/src/vespa/vespalib/hwaccelrated/avxprivate.hpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/staging_vespalib/src/vespa/vespalib/hwaccelrated/avxprivate.hpp b/staging_vespalib/src/vespa/vespalib/hwaccelrated/avxprivate.hpp
index 01ae70b807e..3bf3083f009 100644
--- a/staging_vespalib/src/vespa/vespalib/hwaccelrated/avxprivate.hpp
+++ b/staging_vespalib/src/vespa/vespalib/hwaccelrated/avxprivate.hpp
@@ -32,7 +32,6 @@ template <>
struct TypeSpecifics<float, 32u> {
static constexpr const size_t V_SZ = 32u;
typedef float V __attribute__ ((vector_size (V_SZ)));
- static constexpr const size_t VectorsPerChunk = 4;
static float sum(const V & v) { return sumT<float, V>(v); }
};
@@ -40,7 +39,6 @@ template <>
struct TypeSpecifics<double, 32u> {
static constexpr const size_t V_SZ = 32u;
typedef double V __attribute__ ((vector_size (V_SZ)));
- static constexpr const size_t VectorsPerChunk = 4;
static double sum(const V & v) { return sumT<double, V>(v); }
};
@@ -48,7 +46,6 @@ template <>
struct TypeSpecifics<float, 64u> {
static constexpr const size_t V_SZ = 64u;
typedef float V __attribute__ ((vector_size (V_SZ)));
- static constexpr const size_t VectorsPerChunk = 4;
static float sum(const V & v) { return sumT<float, V>(v); }
};
@@ -56,7 +53,6 @@ template <>
struct TypeSpecifics<double, 64u> {
static constexpr const size_t V_SZ = 64u;
typedef double V __attribute__ ((vector_size (V_SZ)));
- static constexpr const size_t VectorsPerChunk = 4;
static double sum(const V & v) { return sumT<double, V>(v); }
};