-
Notifications
You must be signed in to change notification settings - Fork 912
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Display deltas for
cudf.pandas
test summary (#16864)
This PR displays delta's for CPU and GPU usage metrics that are extracted from `cudf.pandas` pytests. Authors: - GALI PREM SAGAR (https://github.com/galipremsagar) Approvers: - Jake Awe (https://github.com/AyodeAwe) URL: #16864
- Loading branch information
1 parent
8e78424
commit f7c5d32
Showing
2 changed files
with
66 additions
and
16 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -50,6 +50,7 @@ jobs: | |
test_java: ${{ steps.changed-files.outputs.java_any_changed == 'true' }} | ||
test_notebooks: ${{ steps.changed-files.outputs.notebooks_any_changed == 'true' }} | ||
test_python: ${{ steps.changed-files.outputs.python_any_changed == 'true' }} | ||
test_cudf_pandas: ${{ steps.changed-files.outputs.cudf_pandas_any_changed == 'true' }} | ||
steps: | ||
- name: Get PR info | ||
id: get-pr-info | ||
|
@@ -82,6 +83,7 @@ jobs: | |
- '!java/**' | ||
- '!notebooks/**' | ||
- '!python/**' | ||
- '!ci/cudf_pandas_scripts/**' | ||
java: | ||
- '**' | ||
- '!CONTRIBUTING.md' | ||
|
@@ -90,11 +92,13 @@ jobs: | |
- '!img/**' | ||
- '!notebooks/**' | ||
- '!python/**' | ||
- '!ci/cudf_pandas_scripts/**' | ||
notebooks: | ||
- '**' | ||
- '!CONTRIBUTING.md' | ||
- '!README.md' | ||
- '!java/**' | ||
- '!ci/cudf_pandas_scripts/**' | ||
python: | ||
- '**' | ||
- '!CONTRIBUTING.md' | ||
|
@@ -103,6 +107,16 @@ jobs: | |
- '!img/**' | ||
- '!java/**' | ||
- '!notebooks/**' | ||
- '!ci/cudf_pandas_scripts/**' | ||
cudf_pandas: | ||
- '**' | ||
- 'ci/cudf_pandas_scripts/**' | ||
- '!CONTRIBUTING.md' | ||
- '!README.md' | ||
- '!docs/**' | ||
- '!img/**' | ||
- '!java/**' | ||
- '!notebooks/**' | ||
checks: | ||
secrets: inherit | ||
uses: rapidsai/shared-workflows/.github/workflows/[email protected] | ||
|
@@ -289,7 +303,7 @@ jobs: | |
needs: [wheel-build-cudf, changed-files] | ||
secrets: inherit | ||
uses: rapidsai/shared-workflows/.github/workflows/[email protected] | ||
if: needs.changed-files.outputs.test_python == 'true' | ||
if: needs.changed-files.outputs.test_python == 'true' || needs.changed-files.outputs.test_cudf_pandas == 'true' | ||
with: | ||
# This selects "ARCH=amd64 + the latest supported Python + CUDA". | ||
matrix_filter: map(select(.ARCH == "amd64")) | group_by(.CUDA_VER|split(".")|map(tonumber)|.[0]) | map(max_by([(.PY_VER|split(".")|map(tonumber)), (.CUDA_VER|split(".")|map(tonumber))])) | ||
|
@@ -300,7 +314,7 @@ jobs: | |
needs: [wheel-build-cudf, changed-files] | ||
secrets: inherit | ||
uses: rapidsai/shared-workflows/.github/workflows/[email protected] | ||
if: needs.changed-files.outputs.test_python == 'true' | ||
if: needs.changed-files.outputs.test_python == 'true' || needs.changed-files.outputs.test_cudf_pandas == 'true' | ||
with: | ||
# This selects "ARCH=amd64 + the latest supported Python + CUDA". | ||
matrix_filter: map(select(.ARCH == "amd64")) | group_by(.CUDA_VER|split(".")|map(tonumber)|.[0]) | map(max_by([(.PY_VER|split(".")|map(tonumber)), (.CUDA_VER|split(".")|map(tonumber))])) | ||
|
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