Skip to content

Conversation

tinglvv
Copy link
Contributor

@tinglvv tinglvv commented Aug 27, 2025

now that CUDA 13.0 aarch64 build is available, add domain builds too

cc @atalman

Copy link

vercel bot commented Aug 27, 2025

@tinglvv is attempting to deploy a commit to the Meta Open Source Team on Vercel.

A member of the Team first needs to authorize it.

@meta-cla meta-cla bot added the CLA Signed This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed. label Aug 27, 2025
@tinglvv
Copy link
Contributor Author

tinglvv commented Aug 27, 2025

same error as #7046, should follow up with torchaudio team.

@atalman atalman merged commit cbb742e into pytorch:main Aug 27, 2025
68 of 71 checks passed
@johnnynunez
Copy link

johnnynunez commented Aug 27, 2025

#7046

i have torchaudio for cuda 13 @atalman @tinglvv

it is a hot fix and maybe wrong but for me it is working and tests passing in gh200:
It is the same problem in all repositories. Cuda api cub was changed.

more than thrust it must changed like this:
https://github.com/sgl-project/sglang/pull/9495/files

// Define reduction operators based on CUDA version
// CUDA 13 (12.9+) deprecated cub::Max/Min in favor of cuda::maximum/minimum
#if CUDA_VERSION >= 12090
using MaxReduceOp = cuda::maximum<>;
using MinReduceOp = cuda::minimum<>;
#else
using MaxReduceOp = cub::Max;
using MinReduceOp = cub::Min;
#endif

PD:
I've seen 2 PRs:
pytorch/audio#4066
pytorch/audio#4065

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
CLA Signed This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants