-
Notifications
You must be signed in to change notification settings - Fork 608
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
[cuda] Drop cuda1 HAL implementation code #16188
Conversation
Now cuda2 is the default; we can drop cuda1 to reduce maintenance.
I'll stage it here for some time and land likely end of the week. :) |
iree_check_single_backend_test_suite( | ||
NAME | ||
check_cuda_graph |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
FYI, my recent #16086 is working as intended here :D
When 'cuda' was enabled and 'cuda2' was disabled: https://github.com/openxla/iree/actions/runs/7632069510/job/20791981080#step:7:1203
The following tests did not run:
593 - iree/tests/e2e/stablehlo_ops/check_cuda2_graph_abs.mlir (Disabled)
594 - iree/tests/e2e/stablehlo_ops/check_cuda2_graph_add.mlir (Disabled)
After the flip, when 'cuda2' was enabled' and 'cuda' was disabled:
https://github.com/openxla/iree/actions/runs/7632476397/job/20793221872#step:7:1221
The following tests did not run:
471 - iree/tests/e2e/stablehlo_ops/check_cuda_graph_abs.mlir (Disabled)
472 - iree/tests/e2e/stablehlo_ops/check_cuda_graph_add.mlir (Disabled)
Prior to that change, the disabled targets wouldn't appear in ctest output at all. Now it is pretty clear what is enabled or disabled. (I could have checked that on the flip PR itself, but I forgot :P)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah, nice to know!
Now cuda2 is the default; we can drop cuda1 to reduce maintenance.
Now cuda2 is the default; we can drop cuda1 to reduce maintenance.
Related to #13245