-
Notifications
You must be signed in to change notification settings - Fork 240
New issue
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
[BUG] csv_test:test_basic_csv_read FAILED #5211
Comments
just a guess but perhaps related to rapidsai/cudf@012af64 |
I did verify using the latest spark rapids plugin with a cudf jar from the 10th doesn't have the test failures. |
Yes, this appears to be caused by rapidsai/cudf#10622 and hitting the documented limitations we have when casting from string to float. Specifically, |
Specifically, CPU is producing |
The fix in rapidsai/cudf#10622 addresses the handling of small floating point values, which were converting in a way that appeared to lose too much precision (1.0 -> 0.99999). We should be ok on the upper ranges of floats where very large values, such as those in the test, are being parsed as We should add tests to confirm float conversion at the lower end of the decimal range, regardless of the epsilon range for our tests. |
Describe the bug
csv_test:test_basic_csv_read FAILED on branch-22.06 with
assert_gpu_and_cpu_are_equal_collect
errorDetailed log:
The text was updated successfully, but these errors were encountered: