Skip to content

Commit a233b76

Browse files
author
Kaival Parikh
committed
Fix order of params in DefaultVectorUtilSupport#int4DotProductSinglePacked
1 parent c607ff3 commit a233b76

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lucene/core/src/java/org/apache/lucene/internal/vectorization/DefaultVectorUtilSupport.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ public int int4DotProduct(byte[] a, byte[] b) {
158158
}
159159

160160
@Override
161-
public int int4DotProductSinglePacked(byte[] packed, byte[] unpacked) {
161+
public int int4DotProductSinglePacked(byte[] unpacked, byte[] packed) {
162162
int total = 0;
163163
for (int i = 0; i < packed.length; i++) {
164164
byte packedByte = packed[i];

0 commit comments

Comments
 (0)