Skip to content

Commit

Permalink
Remove redundant configs
Browse files Browse the repository at this point in the history
Signed-off-by: Andy Grove <andygrove@nvidia.com>
  • Loading branch information
andygrove committed May 13, 2021
1 parent 58aafb8 commit ed03490
Showing 1 changed file with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,6 @@ class CostBasedOptimizerSuite extends SparkQueryCompareTestSuite
.set(SQLConf.ADAPTIVE_EXECUTION_ENABLED.key, "true")
.set(SQLConf.AUTO_BROADCASTJOIN_THRESHOLD.key, "-1")
.set(RapidsConf.OPTIMIZER_ENABLED.key, "true")
.set(TRANSITION_TO_CPU_COST, "0.3")
.set(TRANSITION_TO_GPU_COST, "0.3")
.set(RapidsConf.ENABLE_CAST_STRING_TO_TIMESTAMP.key, "false")
.set(RapidsConf.EXPLAIN.key, "ALL")
.set(RapidsConf.ENABLE_REPLACE_SORTMERGEJOIN.key, "false")
Expand Down Expand Up @@ -270,8 +268,6 @@ class CostBasedOptimizerSuite extends SparkQueryCompareTestSuite
test("Avoid move to GPU for trivial projection, AQE on") {
logError("Avoid move to GPU for trivial projection, AQE on")
val conf = new SparkConf()
.set(TRANSITION_TO_CPU_COST, "0.1")
.set(TRANSITION_TO_GPU_COST, "0.1")
.set(SQLConf.ADAPTIVE_EXECUTION_ENABLED.key, "true")
.set(RapidsConf.OPTIMIZER_ENABLED.key, "true")
.set(RapidsConf.ENABLE_CAST_STRING_TO_TIMESTAMP.key, "false")
Expand Down Expand Up @@ -375,8 +371,6 @@ class CostBasedOptimizerSuite extends SparkQueryCompareTestSuite
test("Avoid move to GPU for shuffle, AQE off") {
logError("Avoid move to GPU for shuffle, AQE off")
val conf = new SparkConf()
.set(TRANSITION_TO_CPU_COST, "0.1")
.set(TRANSITION_TO_GPU_COST, "0.1")
.set(SQLConf.ADAPTIVE_EXECUTION_ENABLED.key, "false")
.set(RapidsConf.OPTIMIZER_ENABLED.key, "true")
.set(RapidsConf.ENABLE_CAST_STRING_TO_TIMESTAMP.key, "false")
Expand Down

0 comments on commit ed03490

Please sign in to comment.