Files
ROCm/.gitignore
Hongtao Yu 9073a393e0 [GIT] .gitignore clangd and vscode index files. (#2406)
Vscode or clangd can create indexing cache for symbol resolutions. Those
files should be ignored by git.

I'm basically cloning what is done in the LLVM repo.
2023-09-27 22:16:20 -07:00

47 lines
641 B
Plaintext

# Triton builds
build/
# Triton Python module builds
python/build/
python/triton.egg-info/
python/triton/_C/libtriton.pyd
python/triton/_C/libtriton.so
# Python caches
__pycache__/
*.py[cod]
.pytest_cache
# Environments
.venv
venv/
venv.bak/
# VS Code project files
.vscode
.vs
# JetBrains project files
.idea
cmake-build-*
# Third-party binaries
cuobjdump
nvdisasm
ptxas
# Docs
docs/_build/
docs/python-api/generated/
docs/dialects/
docs/getting-started/tutorials
!python/tutorials/*.py
!python/tutorials/*.rst
# clangd index. (".clangd" is a config file now, thus trailing slash)
.clangd/
.cache
/compile_commands.json
.vscode
.vs