-
Notifications
You must be signed in to change notification settings - Fork 695
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
minor: update flashinfer nightly #2490
Conversation
@@ -10,7 +10,7 @@ pip install --upgrade pip | |||
pip install -e "python[all]" --find-links https://flashinfer.ai/whl/cu121/torch2.4/flashinfer/ | |||
|
|||
# Force reinstall flashinfer | |||
pip install flashinfer -i ${FLASHINFER_REPO} --force-reinstall | |||
pip install flashinfer --find-links ${FLASHINFER_REPO} --force-reinstall --no-deps |
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.
There are two scenarios: one is a stable release, and the other is a nightly release. The first scenario uses cache because the script defaults to installing the stable version, making it very fast. For the second scenario, it depends on whether it's the first installation or not. It only triggers when users manually select a nightly release during PR testing, and if it's not the first time, it also uses the nightly cache, which is also very fast.
https://github.com/flashinfer-ai/flashinfer/tree/zhyncs/main
|
Motivation
Modifications
Checklist