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

Enable xgboost prediction model by default #1108

Merged
merged 1 commit into from
Jun 11, 2024
Merged
Show file tree
Hide file tree
Changes from all 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
4 changes: 2 additions & 2 deletions user_tools/src/spark_rapids_tools/cmdli/tools_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,8 @@ def qualification(self,
stage duration less than 25% of app duration and speedups greater than 1.3x.
:param estimation_model: Model used to calculate the estimated GPU duration and cost savings.
It accepts one of the following:
"xgboost": an XGBoost model for GPU duration estimation
"speedups": set by default. It uses a simple static estimated speedup per operator.
"xgboost": An XGBoost model for GPU duration estimation. Set by default
"speedups": It uses a simple static estimated speedup per operator.
:param cpu_cluster_price: the CPU cluster hourly price provided by the user.
:param estimated_gpu_cluster_price: the GPU cluster hourly price provided by the user.
:param cpu_discount: A percent discount for the cpu cluster cost in the form of an integer value
Expand Down
2 changes: 1 addition & 1 deletion user_tools/src/spark_rapids_tools/enums.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,4 +167,4 @@ class QualEstimationModel(EnumeratedType):

@classmethod
def get_default(cls):
return cls.SPEEDUPS
return cls.XGBOOST