We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug
include/cudf_test/vector_equality.hpp
expect_vector_equivalent
cuspatial/cpp/tests/utility/vector_equality.hpp
Line 175 in 92c3a08
cudf::test
setprecision()
float
double
Line 60 in 92c3a08
DoubleNear
FloatNear
The text was updated successfully, but these errors were encountered:
address issue with vector equivalent utility (#777)
48fbedf
Closes #772 , Address various issue with vector equivalent utility. Authors: - Michael Wang (https://github.com/isVoid) Approvers: - Mark Harris (https://github.com/harrism) URL: #777
isVoid
Successfully merging a pull request may close this issue.
Describe the bug
include/cudf_test/vector_equality.hpp
expect_vector_equivalent
in the macro here:cuspatial/cpp/tests/utility/vector_equality.hpp
Line 175 in 92c3a08
cudf::test
. Also, unit tests should not be put inside that namespace, only test utilities.setprecision()
calls should be changed to use the maximum decimal digits of the type being checked (float
ordouble
)cuspatial/cpp/tests/utility/vector_equality.hpp
Line 60 in 92c3a08
DoubleNear
, notFloatNear
.The text was updated successfully, but these errors were encountered: