-
Notifications
You must be signed in to change notification settings - Fork 235
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
[DOC] Updated RapidsConf to reflect the default value of spark.rapids.sql.improvedFloatOps.enabled
[skip ci]
#5840
Conversation
Signed-off-by: Raza Jafri <rjafri@nvidia.com>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
please put better description then updated docs |
@@ -575,8 +575,7 @@ object RapidsConf { | |||
val IMPROVED_FLOAT_OPS = conf("spark.rapids.sql.improvedFloatOps.enabled") | |||
.doc("For some floating point operations spark uses one way to compute the value " + | |||
"and the underlying cudf implementation can use an improved algorithm. " + | |||
"In some cases this can result in cudf producing an answer when spark overflows. " + | |||
"Because this is not as compatible with spark, we have it disabled by default.") | |||
"In some cases this can result in cudf producing an answer when spark overflows.") | |||
.booleanConf | |||
.createWithDefault(true) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we intentionally put the confs into our integration test with the defaults they had, if we change the default here those tests I believe should be updated as well...
integration_tests/src/main/python/spark_session.py:
'spark.rapids.sql.improvedFloatOps.enabled': 'false',
Can you please file a 22.08 issue to update those tests. We may want to check other defualtas as well
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
created issue #5844
build |
spark.rapids.sql.improvedFloatOps.enabled
[skip ci]
Since the
spark.rapids.sql.improvedFloatOps.enabled
is not disabled by default.This PR updates the RapidsConf to reflect that.
Signed-off-by: Raza Jafri rjafri@nvidia.com