forked from triton-lang/triton
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
76 lines (60 loc) · 1.1 KB
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# Triton builds
build/
build-*/
# Triton Python module builds
python/build/
python/dist/
python/triton*.egg-info/
python/triton/_C/*.pyd
python/triton/_C/*.so
python/triton/_C/*.dylib
# Backends copied from submodules
python/triton/backends/
!python/triton/backends/__init__.py
!python/triton/backends/compiler.py
!python/triton/backends/driver.py
# Language extras
python/triton/language/extra
# Proton
python/triton/profiler
# Instrumentation
python/triton/instrumentation
# 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
# Third-party include
third_party/nvidia/backend/include
third_party/nvidia/backend/lib/cupti
# Docs
docs/_build/
docs/python-api/generated/
docs/dialects/
docs/getting-started/tutorials
docs/sg_execution_times.rst
!python/tutorials/*.py
!python/tutorials/*.rst
# clangd index. (".clangd" is a config file now, thus trailing slash)
.clangd/
.cache
/compile_commands.json
.vscode
.vs
# Vim
*.swp
# macOS
.DS_Store