-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'dev' of github.com:NVIDIA/spark-rapids-tools into cpu_g…
…pu_transition_time
- Loading branch information
Showing
15 changed files
with
609 additions
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,9 @@ jobs: | |
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
uses: actions/checkout@v3 | ||
with: | ||
token: ${{ secrets.NVAUTO_TOKEN }} | ||
|
||
- name: Build Changelog | ||
id: build_changelog | ||
|
@@ -25,7 +27,7 @@ jobs: | |
configuration: ".github/workflows/configuration.json" # Configuration file for the changelog builder (optional)z | ||
outputFile: "CHANGELOG_BODY.md" | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
GITHUB_TOKEN: ${{ secrets.NVAUTO_TOKEN }} | ||
|
||
- name: Commit and Push Changelog | ||
if: steps.build_changelog.outputs.changes > 0 | ||
|
@@ -38,15 +40,15 @@ jobs: | |
cat CURRENT_CHANGELOG.md CHANGELOG_BODY.md >> TEMP_CHANGELOG.md | ||
cat TEMP_CHANGELOG.md CHANGELOG.md > NEW_CHANGELOG.md | ||
git config user.name "GitHub Actions" | ||
git config user.email "[email protected]" | ||
git config user.name ${{ secrets.NVAUTO_USER }} | ||
git config user.email ${{ secrets.NVAUTO_EMAIL }} | ||
git fetch origin main | ||
git checkout main | ||
mv NEW_CHANGELOG.md CHANGELOG.md | ||
git add CHANGELOG.md | ||
git commit -m "Update changelogs" | ||
git push origin main | ||
git commit -s -m "Update changelogs" | ||
git push -f https://nvauto:${{ secrets.NVAUTO_TOKEN }}@github.com/${GITHUB_REPOSITORY}.git main | ||
- name: Set Version Number | ||
id: set_version | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
CPUOperator,Score | ||
AggregateInPandasExec,1.2 | ||
ArrowEvalPythonExec,1.2 | ||
FlatMapGroupsInPandasExec,1.2 | ||
MapInPandasExec,1.2 | ||
WindowInPandasExec,1.2 | ||
KMeans-pyspark,8.86 | ||
KMeans-scala,1 | ||
PCA-pyspark,2.24 | ||
PCA-scala,2.69 | ||
LinearRegression-pyspark,2 | ||
LinearRegression-scala,1 | ||
RandomForestClassifier-pyspark,6.31 | ||
RandomForestClassifier-scala,1 | ||
RandomForestRegressor-pyspark,3.66 | ||
RandomForestRegressor-scala,1 | ||
XGBoost-pyspark,1 | ||
XGBoost-scala,3.31 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.