hotfix: add 9.0a to README and installation doc#2112
hotfix: add 9.0a to README and installation doc#2112yzh119 merged 1 commit intoflashinfer-ai:mainfrom
Conversation
WalkthroughDocumentation updates including new feature highlights (Customizable Attention, CUDAGraph/torch.compile compatibility, high-level LLM operators), expanded adoption references, enhanced installation guidance, and CUDA architecture support additions (9.0a, 12.0f) across README and installation docs. Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~3 minutes
Poem
Pre-merge checks and finishing touches✅ Passed checks (3 passed)
✨ Finishing touches🧪 Generate unit tests (beta)
📜 Recent review detailsConfiguration used: CodeRabbit UI Review profile: CHILL Plan: Pro 📒 Files selected for processing (2)
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (1)
🔇 Additional comments (3)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Summary of ChangesHello @yzh119, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request provides a hotfix to correct an accidental omission in the project's documentation. It restores the Highlights
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
There was a problem hiding this comment.
Code Review
This pull request correctly adds 9.0a to the FLASHINFER_CUDA_ARCH_LIST in both README.md and docs/installation.rst, fixing an accidental removal. The changes are correct and address the issue described. I have one suggestion regarding commit hygiene to improve reviewability in the future, but the PR is good to merge.
|
|
||
| ```bash | ||
| export FLASHINFER_CUDA_ARCH_LIST="7.5 8.0 8.9 10.0a 10.3a 11.0a 12.0f" | ||
| export FLASHINFER_CUDA_ARCH_LIST="7.5 8.0 8.9 9.0a 10.0a 10.3a 11.0a 12.0f" |
There was a problem hiding this comment.
The addition of 9.0a is correct. However, this PR mixes this logical change with numerous formatting adjustments (adding/removing blank lines) throughout the file, which were likely introduced by an auto-formatter. This makes the diff noisy and obscures the primary purpose of the hotfix. For future changes, it would be best to separate stylistic/formatting changes into a separate commit from functional or documentation content changes to improve reviewability.
<!-- .github/pull_request_template.md --> 9.0a was removed from installation documentation by accident, in some recent PRs. <!-- Link any related issues here --> Thank you for contributing to FlashInfer! Before we review your pull request, please make sure the following items are complete. - [x] I have installed `pre-commit` by running `pip install pre-commit` (or used your preferred method). - [x] I have installed the hooks with `pre-commit install`. - [x] I have run the hooks manually with `pre-commit run --all-files` and fixed any reported issues. > If you are unsure about how to set up `pre-commit`, see [the pre-commit documentation](https://pre-commit.com/). - [x] Tests have been added or updated as needed. - [x] All tests are passing (`unittest`, etc.). <!-- Optional: anything you'd like reviewers to focus on, concerns, etc. -->
📌 Description
9.0a was removed from installation documentation by accident, in some recent PRs.
🔍 Related Issues
🚀 Pull Request Checklist
Thank you for contributing to FlashInfer! Before we review your pull request, please make sure the following items are complete.
✅ Pre-commit Checks
pre-commitby runningpip install pre-commit(or used your preferred method).pre-commit install.pre-commit run --all-filesand fixed any reported issues.🧪 Tests
unittest, etc.).Reviewer Notes
Summary by CodeRabbit
Release Notes
New Features
Documentation