You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Make TMA tests compatible with older CUDA toolchains (#5221)
TMA fences require CUDA toolchain 12.3 or greater, but current gating
does not check the CUDA toolchain version. This causes
`test_experimental_tma.py` to fail when run with older CUDA toolchains.
## Before
With cuda-12.0:
```
55 failed, 9 passed in 18.11s
```
With cuda-12.4:
```
64 passed in 11.99s
```
## After
With cuda-12.0:
```
9 passed, 55 skipped in 4.26s
```
With cuda-12.4:
```
64 passed in 11.96s
```
0 commit comments