Skip to content

Commit 38ca8d1

Browse files
author
zhaoting
committed
add gitignore
1 parent 9b6b8af commit 38ca8d1

File tree

1 file changed

+74
-0
lines changed

1 file changed

+74
-0
lines changed

.gitignore

+74
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
# MindSpore
2+
*.ir
3+
kernel_meta/
4+
somas_meta/
5+
trace_code_graph_*
6+
7+
# Cmake files
8+
CMakeFiles/
9+
cmake_install.cmake
10+
CMakeCache.txt
11+
Makefile
12+
cmake-build-debug
13+
14+
# Dynamic libraries
15+
*.so
16+
*.so.*
17+
*.dylib
18+
19+
# Static libraries
20+
*.la
21+
*.lai
22+
*.a
23+
*.lib
24+
25+
# Protocol buffers
26+
*_pb2.py
27+
*.pb.h
28+
*.pb.cc
29+
*.pb
30+
*_grpc.py
31+
32+
# Object files
33+
*.o
34+
35+
# Editor
36+
.vscode
37+
.idea/
38+
39+
# Cquery
40+
.cquery_cached_index/
41+
compile_commands.json
42+
43+
# Ctags and cscope
44+
tags
45+
TAGS
46+
CTAGS
47+
GTAGS
48+
GRTAGS
49+
GSYMS
50+
GPATH
51+
cscope.*
52+
53+
# Python files
54+
*__pycache__*
55+
.pytest_cache
56+
57+
# Mac files
58+
*.DS_Store
59+
60+
# Test results
61+
test_temp_summary_event_file/
62+
*.dot
63+
*.dat
64+
*.svg
65+
*.perf
66+
*.info
67+
*.ckpt
68+
*.shp
69+
*.pkl
70+
*.pb
71+
.clangd
72+
73+
# lite opencl compile file
74+
*.cl.inc

0 commit comments

Comments
 (0)