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

fix matrix_filter to include cuda_11.x #597

Closed

Conversation

AjayThorve
Copy link
Member

@AjayThorve AjayThorve commented May 22, 2024

This PR fixes an issue caused by #575, which resulted in cu-11 wheels not being generated for cuxfilter.

@AjayThorve AjayThorve requested a review from a team as a code owner May 22, 2024 00:42
Copy link

copy-pr-bot bot commented May 22, 2024

This pull request requires additional validation before any workflows can run on NVIDIA's runners.

Pull request vetters can view their responsibilities here.

Contributors can view more details about this message here.

@AjayThorve AjayThorve added non-breaking Non-breaking change ci bug Something isn't working labels May 22, 2024
@github-actions github-actions bot removed the ci label May 22, 2024
@AjayThorve
Copy link
Member Author

/ok to test

Comment on lines +76 to +77
# This selects "ARCH=amd64 + the latest supported Python + One each of (CUDA 11.x, CUDA 12.x)".
matrix_filter: '[.[] | select(.ARCH == "amd64")] | group_by(.CUDA_VER | split(".")[0]) | map(max_by([.PY_VER, .CUDA_VER]))'
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do we not support testing on ARM? Currently our matrix only includes wheel tests for (CUDA 12, amd64) and (CUDA 11, arm64). This effectively means that we're not testing wheels on CUDA 11 at all, if we don't test on ARM.

https://github.com/rapidsai/shared-workflows/blob/d44f3005d60e5794f68869776726c55d477e8fab/.github/workflows/wheels-test.yaml#L82-L85

This suggestion might fix it (but it's untested):

Suggested change
# This selects "ARCH=amd64 + the latest supported Python + One each of (CUDA 11.x, CUDA 12.x)".
matrix_filter: '[.[] | select(.ARCH == "amd64")] | group_by(.CUDA_VER | split(".")[0]) | map(max_by([.PY_VER, .CUDA_VER]))'
# This selects "ARCH=amd64 + the latest supported Python + One each of (CUDA 11.x, CUDA 12.x)".
matrix_filter: 'group_by(.CUDA_VER | split(".")[0]) | map(max_by([.PY_VER, .CUDA_VER]))'

@bdice
Copy link
Contributor

bdice commented May 28, 2024

This can probably by closed now that #590 is merged. cc: @AjayThorve

@AjayThorve AjayThorve closed this May 28, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working non-breaking Non-breaking change
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants