Skip to content
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

Update default speedup factors for qualification tool #5842

Merged
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2229,8 +2229,8 @@ object SupportedOpsForTools {
("ShuffleExchangeExec", "3.1"),
("FilterExec", "2.4"),
("HashAggregateExec", "3.4"),
("SortExec", "6.0"),
("SortMergeJoinExec", "14.9"),
("SortExec", "5.2"),
("SortMergeJoinExec", "14.1"),
("ArrowEvalPythonExec", "1.2"),
("AggregateInPandasExec", "1.2"),
("FlatMapGroupsInPandasExec", "1.2"),
Expand All @@ -2247,7 +2247,7 @@ object SupportedOpsForTools {
val allCols = if (operatorCustomSpeedUp.contains(cpuName)) {
Seq(cpuName, operatorCustomSpeedUp(cpuName))
} else {
Seq(cpuName, "2.0")
Seq(cpuName, "3.0")
}
println(s"${allCols.mkString(",")}")
}
Expand All @@ -2259,7 +2259,7 @@ object SupportedOpsForTools {
val cpuName = rule.tag.runtimeClass.getSimpleName
// We are assigning speed up of 3 to all the Exprs supported by the plugin. This can be
// adjusted later.
val allCols = Seq(cpuName, "3")
val allCols = Seq(cpuName, "4")
println(s"${allCols.mkString(",")}")
}
}
Expand Down
Loading