-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy path.gitignore
More file actions
154 lines (131 loc) · 3.44 KB
/
.gitignore
File metadata and controls
154 lines (131 loc) · 3.44 KB
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
#==============================================================================#
# This file specifies intentionally untracked files that git should ignore.
# See: http://www.kernel.org/pub/software/scm/git/docs/gitignore.html
#
# This file is intentionally different from the output of `git svn show-ignore`,
# as most of those are useless.
#==============================================================================#
#==============================================================================#
# File extensions to be ignored anywhere in the tree.
#==============================================================================#
# Temp files created by most text editors.
*~
# Merge files created by git.
*.orig
# Reject files created by patch.
*.rej
# Byte compiled python modules.
*.pyc
# vim swap files
.*.sw?
.sw?
#OS X specific files.
.DS_store
# Ignore the user specified CMake presets in subproject directories.
/*/CMakeUserPresets.json
# Nested build directory
build*/
install*/
#==============================================================================#
# Explicit files to ignore (only matches one).
#==============================================================================#
# Various tag programs
/tags
/TAGS
/GPATH
/GRTAGS
/GSYMS
/GTAGS
/ID
.gitusers
autom4te.cache
cscope.files
cscope.out
autoconf/aclocal.m4
autoconf/autom4te.cache
/compile_commands.json
# Visual Studio built-in CMake configuration
/CMakeSettings.json
# CLion project configuration
/.idea
#==============================================================================#
# Directories to ignore (do not add trailing '/'s, they skip symlinks).
#==============================================================================#
# VS2017 and VSCode config files.
.vscode
.vs
# pythonenv for github Codespaces
pythonenv*
# clangd index. (".clangd" is a config file now, thus trailing slash)
.clangd/
.cache
# static analyzer regression testing project files
/clang/utils/analyzer/projects/*/CachedSource
/clang/utils/analyzer/projects/*/PatchedSource
/clang/utils/analyzer/projects/*/ScanBuildResults
/clang/utils/analyzer/projects/*/RefScanBuildResults
# automodapi puts generated documentation files here.
/lldb/docs/python_api/
# ccls cache
/.ccls-cache/
/.gdb_history
*.swp
.cache/
.vscode
.ccache
.env
*.code-workspace
.ipynb_checkpoints
*.venv/
mlir_venv/
externals/pytorch/
libtorch*
/build/
__pycache__
*.pyc
.pytype
# Stuff auto-generated by MLIR->Kokkos emitter
examples/lapis*/
examples/*.mlir
examples/*.tns
tests/lapis/
tests/*.mlir
tests/*.tns
# Other test artifacts
tests/Dialect/*/Output
mlir/test/Dialect/*/.*.txt
mlir/test/.*.txt
# Pip artifacts.
*.egg-info
*.whl
/wheelhouse
# Bazel
bazel-*
# Autogenerated files
/python/torch_mlir/csrc/base_lazy_backend/generated
#Docker builds
build_oot/
docker_venv/
llvm-build/
# C++ build artifacts
compile_commands.json
# ignore spack env files
/.spack-env/
spack.lock
llvm-project
benchmarks/build
benchmarks/*/lapis_package/
benchmarks/MALA/forward_snap.hpp
benchmarks/batched_gemm/batched_gemm.hpp
benchmarks/gemm/gemm.hpp
benchmarks/spmv/spmv.hpp
benchmarks/resnet/resnet.hpp
# Temporary files produced by mala teamlevel test
examples/mala_teamlevel/forward_snap.cpp
examples/mala_teamlevel/forward_snap.hpp
examples/mala_teamlevel/forward_snap_lowered.mlir
examples/mala_teamlevel/build/
# Temporary files produced by mala batch test
examples/mala_batch/forward_snap.hpp
examples/mala_batch/forward_snap_lowered.mlir
examples/mala_batch/build/