[cute] add fp8 dtypes to _torch_dtype_to_cutlass mapping#2422
Closed
yushangdi wants to merge 1 commit into
Closed
Conversation
Allow fp8 tensors (torch.float8_e4m3fn, torch.float8_e5m2) to flow through the cute-backend kernel binding layer. Before this change, passing fp8 tensors to a helion.kernel(backend='cute') call would hit BackendUnsupported at type-mapping time, before any MMA/codegen could be attempted. This is pure plumbing — no MMA, lowering, or codegen behavior changes. fp8 kernels will still fail downstream until follow-up PRs wire fp8 through mma_support and cute_mma codegen. The point of this PR is to move the failure boundary forward so the next PR can be reviewed in isolation. Authored with Claude. [ghstack-poisoned]
Contributor
Author
|
merged into #2423 |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Stack from ghstack (oldest at bottom):
Allow fp8 tensors (torch.float8_e4m3fn, torch.float8_e5m2) to flow through
the cute-backend kernel binding layer. Before this change, passing fp8
tensors to a helion.kernel(backend='cute') call would hit BackendUnsupported
at type-mapping time, before any MMA/codegen could be attempted.
This is pure plumbing — no MMA, lowering, or codegen behavior changes. fp8
kernels will still fail downstream until follow-up PRs wire fp8 through
mma_support and cute_mma codegen. The point of this PR is to move the
failure boundary forward so the next PR can be reviewed in isolation.
Authored with Claude.