You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
bugSomething isn't workingBuildBuild Tasks/Gradle Plugin, groovy scripts, build tools, Javadoc enforcement.CICI relatedOtherv2.18.0Issues and PRs related to version 2.18.0v3.0.0Issues and PRs related to version 3.0.0
Hi Team, I am working on validating Opensearch v2.11.1 on ppc64le, while running the testsuite the tests client:rest-high-level:integTest and client:rest-high-level:asyncIntegTest were failing due to the floating point difference between x86 and ppc64le. I had to make the following change fo get the tests passing.
diff --git a/client/rest-high-level/src/test/java/org/opensearch/client/RankEvalIT.java b/client/rest-high-level/src/test/java/org/opensearch/client/RankEvalIT.java
index 47add92ecac..ad274f24fb9 100644
--- a/client/rest-high-level/src/test/java/org/opensearch/client/RankEvalIT.java
+++ b/client/rest-high-level/src/test/java/org/opensearch/client/RankEvalIT.java
@@ -151,7 +151,7 @@ public class RankEvalIT extends OpenSearchRestHighLevelClientTestCase {
DiscountedCumulativeGain::new,
() -> new ExpectedReciprocalRank(1)
);
- double expectedScores[] = new double[] { 0.4285714285714286, 1.0, 0.75, 1.6408962261063627, 0.4407738095238095 };
+ double expectedScores[] = new double[] { 0.4285714285714286, 1.0, 0.75, 1.6408962261063629, 0.4407738095238095 };
int i = 0;
[Triage - attendees 123456] @Sunidhi-Gaonkar1 Thanks for filing this issue. It would be useful if you had instructions for how to get a ppc64le environment for validating this scenario.
peternied
added
CI
CI related
Build
Build Tasks/Gradle Plugin, groovy scripts, build tools, Javadoc enforcement.
labels
Feb 14, 2024
@Sunidhi-Gaonkar1 I triaged this issue as part of our weekly triage meetings, AFAIK there is no one that is looking into resolving issue at this time. We would welcome a pull request to address this problem - I'd be happy to review such a contribution to this project, want to make one?
bugSomething isn't workingBuildBuild Tasks/Gradle Plugin, groovy scripts, build tools, Javadoc enforcement.CICI relatedOtherv2.18.0Issues and PRs related to version 2.18.0v3.0.0Issues and PRs related to version 3.0.0
Describe the bug
Hi Team, I am working on validating Opensearch v2.11.1 on ppc64le, while running the testsuite the tests
client:rest-high-level:integTest
andclient:rest-high-level:asyncIntegTest
were failing due to the floating point difference between x86 and ppc64le. I had to make the following change fo get the tests passing.Related component
Other
To Reproduce
Expected behavior
Tests should pass.
Additional Details
Host/Environment (please complete the following information):
ppc64le specific code is needed to be added here to pass this test. Please let me know how to proceed further on this. Thank you.
The text was updated successfully, but these errors were encountered: