From ea4746f6c0864cee7c400741c64c2651121c2aa8 Mon Sep 17 00:00:00 2001 From: Andrew Kane Date: Tue, 19 Aug 2025 14:26:36 -0700 Subject: [PATCH] Updated comment [skip ci] --- src/halfvec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/halfvec.c b/src/halfvec.c index e255b53..6b926e1 100644 --- a/src/halfvec.c +++ b/src/halfvec.c @@ -901,7 +901,7 @@ halfvec_binary_quantize(PG_FUNCTION_ARGS) int i = 0; int count = (a->dim / 8) * 8; - /* Auto-vectorized */ + /* Auto-vectorized on aarch64 */ for (; i < count; i += 8) { unsigned char result_byte = 0;