We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I was debugging conda-forge/pytorch-cpu-feedstock#166
There are several references to the third_party folder that we unvendor in their python code: compiler.py:
def path_to_ptxas(): base_dir = os.path.dirname(__file__) paths = [ os.environ.get("TRITON_PTXAS_PATH", ""), os.path.join(base_dir, "third_party", "cuda", "bin", "ptxas") ]
and
triton_include_dir = os.path.join(base_dir, "third_party/cuda/include")
libdevice.py:
LIBDEVICE_PATH = os.path.join(os.path.dirname(os.path.abspath(__file__)), "..", "third_party", "cuda", "lib", "libdevice.10.bc")
build_extern.py
header_str = "LIBDEVICE_PATH = os.path.join(os.path.dirname(os.path.abspath(__file__)), \"..\", \"third_party\", \"cuda\", \"lib\", \"libdevice.10.bc\")"
Will have to patch them out.
triton 2.0
N/A
The text was updated successfully, but these errors were encountered:
Fixed in #6
Sorry, something went wrong.
No branches or pull requests
Solution to issue cannot be found in the documentation.
Issue
I was debugging conda-forge/pytorch-cpu-feedstock#166
There are several references to the third_party folder that we unvendor in their python code:
compiler.py:
and
libdevice.py:
build_extern.py
Will have to patch them out.
Installed packages
Environment info
The text was updated successfully, but these errors were encountered: