-
Notifications
You must be signed in to change notification settings - Fork 534
Add CUDA arch 12.0 to installation guide #1785
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -80,7 +80,7 @@ You can follow the steps below to install FlashInfer from source code: | |||||
.. code-block:: bash | ||||||
|
||||||
cd flashinfer | ||||||
export FLASHINFER_CUDA_ARCH_LIST="7.5 8.0 8.9 9.0a 10.0a" | ||||||
export FLASHINFER_CUDA_ARCH_LIST="7.5 8.0 8.9 9.0a 10.0a 12.0" | ||||||
yzh119 marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
python -m flashinfer.aot # Produces AOT kernels in aot-ops/ | ||||||
python -m pip install --no-build-isolation --verbose . | ||||||
|
||||||
|
@@ -109,7 +109,7 @@ You can follow the steps below to install FlashInfer from source code: | |||||
.. code-block:: bash | ||||||
|
||||||
cd flashinfer | ||||||
export FLASHINFER_CUDA_ARCH_LIST="7.5 8.0 8.9 9.0a 10.0a" | ||||||
export FLASHINFER_CUDA_ARCH_LIST="7.5 8.0 8.9 9.0a 10.0a 12.0" | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. For consistency with other architectures in this list like
Suggested change
|
||||||
python -m flashinfer.aot # Produces AOT kernels in aot-ops/ | ||||||
python -m build --no-isolation --wheel | ||||||
ls -la dist/ | ||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For consistency with other architectures in this list like
9.0a
and10.0a
,12.0
should likely be12.0a
. Thea
suffix is often important for enabling specific hardware features (like Tensor Cores) during compilation. Using an incorrect identifier could lead to build failures or suboptimal performance.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ditto