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
When I try to use torch.compile, the following error occurs:
torch.compile
BackendCompilerFailed: backend='inductor' raised: FileExistsError: [WinError 183] Cannot create a file when that file already exists: 'C:\\Users\\minhk\\AppData\\Local\\Temp\\torchinductor_minhk\\cache\\.27456.33436.tmp' -> 'C:\\Users\\minhk\\AppData\\Local\\Temp\\torchinductor_minhk\\cache\\2a71ae31166f4b5aef4ad99f88246ea08fca21f95829ec7d6819e72c196f217b'
I don't know what the problem is, since Triton itself actually works fine.
The text was updated successfully, but these errors were encountered:
This will likely fix that: pytorch/pytorch#138211
so in torch/_inductor/codecache.py edit tmp_path.rename to tmp_path.replace
torch/_inductor/codecache.py
tmp_path.rename
tmp_path.replace
Sorry, something went wrong.
No branches or pull requests
When I try to use
torch.compile
, the following error occurs:I don't know what the problem is, since Triton itself actually works fine.
The text was updated successfully, but these errors were encountered: