aboutsummaryrefslogtreecommitdiffstats
path: root/vespalib
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2023-12-15 13:12:20 +0000
committerHenning Baldersheim <balder@yahoo-inc.com>2023-12-15 13:12:20 +0000
commita5ed125d867cd13237191c20f7b84f24749e912e (patch)
treefea4499aa03a62567147524e7c1d0684ac7fbb68 /vespalib
parent8ae351c9e1c4bdababc210f2d0119b92017a0b7a (diff)
Update comments to reflect updated chunk size
Diffstat (limited to 'vespalib')
-rw-r--r--vespalib/src/vespa/vespalib/hwaccelrated/iaccelrated.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/vespalib/src/vespa/vespalib/hwaccelrated/iaccelrated.h b/vespalib/src/vespa/vespalib/hwaccelrated/iaccelrated.h
index 096b5828c4d..e6bd86957db 100644
--- a/vespalib/src/vespa/vespalib/hwaccelrated/iaccelrated.h
+++ b/vespalib/src/vespa/vespalib/hwaccelrated/iaccelrated.h
@@ -31,9 +31,9 @@ public:
virtual double squaredEuclideanDistance(const int8_t * a, const int8_t * b, size_t sz) const noexcept = 0;
virtual double squaredEuclideanDistance(const float * a, const float * b, size_t sz) const noexcept = 0;
virtual double squaredEuclideanDistance(const double * a, const double * b, size_t sz) const noexcept = 0;
- // AND 64 bytes from multiple, optionally inverted sources
+ // AND 256 bytes from multiple, optionally inverted sources
virtual void and256(size_t offset, const std::vector<std::pair<const void *, bool>> &src, void *dest) const noexcept = 0;
- // OR 64 bytes from multiple, optionally inverted sources
+ // OR 256 bytes from multiple, optionally inverted sources
virtual void or256(size_t offset, const std::vector<std::pair<const void *, bool>> &src, void *dest) const noexcept = 0;
static const IAccelrated & getAccelerator() __attribute__((noinline));