-
Notifications
You must be signed in to change notification settings - Fork 8.4k
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
Use triton==2.0.0 #1053
Use triton==2.0.0 #1053
Conversation
there is no triton==2.0.0 in pip install option |
@r5rinimaa Hi, which OS / platform are you on? It lists triton as dependency only on x86_64 linux, for which PyPI provides a pre-built wheels: https://pypi.org/project/triton/2.0.0/#files Happy to look if you are seeing any errors or stacktraces because of it! |
hi,the OS is ubuntu20.0.4 PyTorch 1.11.0 |
I think pip should work, unless you're on non-x86_64 such as ARM. Can you post the output of
and
as well as what's saved in |
uname -a |
It appears that your PIP setting (or your firewall) is preventing you from directly accessing PyPI where triton 2.0.0 is served, and the huawei mirror that you're seeing hasn't cached triton 2.0.0 yet. See if you can directly download the wheel from this URL: https://files.pythonhosted.org/packages/57/b6/d93645e54a7a7ceba5c8a94cfc843f2c17b47853fc106527afc5562a40e8/triton-2.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl after which you can do: pip install triton-2.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
No description provided.