Skip to content

Commit ae2a727

Browse files
authored
Fix MemorySegmentES92PanamaInt7VectorsScorer for small dimensions (elastic#133904)
1 parent 4042137 commit ae2a727

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

libs/simdvec/src/main21/java/org/elasticsearch/simdvec/internal/MemorySegmentES92PanamaInt7VectorsScorer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ protected void panamaInt7DotProductBulk(byte[] q, int count, float[] scores) thr
168168
dotProductBody128Bulk(q, count, scores);
169169
}
170170
} else {
171-
int7DotProductBulk(q, count, scores);
171+
super.int7DotProductBulk(q, count, scores);
172172
}
173173
}
174174

muted-tests.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -558,9 +558,6 @@ tests:
558558
- class: org.elasticsearch.xpack.kql.parser.KqlParserBooleanQueryTests
559559
method: testParseAndQuery
560560
issue: https://github.com/elastic/elasticsearch/issues/133871
561-
- class: org.elasticsearch.simdvec.internal.vectorization.ES92Int7VectorScorerTests
562-
method: testInt7ScoreBulk
563-
issue: https://github.com/elastic/elasticsearch/issues/133893
564561

565562
# Examples:
566563
#

0 commit comments

Comments
 (0)