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

Filter out unsupported head dim for sm90 #751

Merged
merged 1 commit into from
Jan 25, 2025

Conversation

abcdabcd987
Copy link
Member

Ran into compilation error when setting FLASHINFER_HEAD_DIMS=64,128,192,256. The cause is that prefill_sm90.cuh has static assertion only allowing head dim 64, 128, 256.

This PR updates setup.py to filter out unsupported head dims for sm90.

@abcdabcd987 abcdabcd987 requested a review from yzh119 January 24, 2025 23:12
Copy link
Collaborator

@yzh119 yzh119 left a comment

Choose a reason for hiding this comment

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

LGTM, we will add deepseek head dim later, but let's merge this first.

@yzh119 yzh119 merged commit e840db1 into flashinfer-ai:main Jan 25, 2025
@@ -85,10 +85,12 @@ def generate_cuda() -> None:
)

if enable_sm90:
SM90_ALLOWED_HEAD_DIMS = {64, 128, 256}
Copy link
Member

Choose a reason for hiding this comment

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

QQ When will we use 64?

Copy link
Member Author

Choose a reason for hiding this comment

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

No idea. See:

static_assert(HEAD_DIM == 64 || HEAD_DIM == 128 || HEAD_DIM == 256);

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants