Skip to content

Commit bfb1bd9

Browse files
committed
Increase delta in ESVectorUtilTests (elastic#131692)
This commit increases the delta in ESVectorUtilTests.testSoarDistance, similar to what we do in other tests.
1 parent 09c0d24 commit bfb1bd9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libs/simdvec/src/test/java/org/elasticsearch/simdvec/ESVectorUtilTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ public void testOsqGridPoints() {
270270

271271
public void testSoarDistance() {
272272
int size = random().nextInt(128, 512);
273-
float deltaEps = 1e-5f * size;
273+
float deltaEps = 1e-3f * size;
274274
var vector = new float[size];
275275
var centroid = new float[size];
276276
var preResidual = new float[size];

0 commit comments

Comments
 (0)