Update README.md
[platform/upstream/caffeonacl.git] / .gitignore
1 ## General
2
3 # Compiled Object files
4 *.slo
5 *.lo
6 *.o
7 *.cuo
8
9 # Compiled Dynamic libraries
10 *.so
11 *.dylib
12
13 # Compiled Static libraries
14 *.lai
15 *.la
16 *.a
17
18 # Compiled protocol buffers
19 *.pb.h
20 *.pb.cc
21 *_pb2.py
22
23 # Compiled python
24 *.pyc
25
26 # Compiled MATLAB
27 *.mex*
28
29 # IPython notebook checkpoints
30 .ipynb_checkpoints
31
32 # Editor temporaries
33 *.swp
34 *~
35
36 # Sublime Text settings
37 *.sublime-workspace
38 *.sublime-project
39
40 # Eclipse Project settings
41 *.*project
42 .settings
43
44 # QtCreator files
45 *.user
46
47 # PyCharm files
48 .idea
49
50 # Visual Studio Code files
51 .vscode
52
53 # OSX dir files
54 .DS_Store
55
56 ## Caffe
57
58 # User's build configuration
59 Makefile.config
60
61 # Data and models are either
62 # 1. reference, and not casually committed
63 # 2. custom, and live on their own unless they're deliberated contributed
64 data/*
65 models/*
66 *.caffemodel
67 *.caffemodel.h5
68 *.solverstate
69 *.solverstate.h5
70 *.binaryproto
71 *leveldb
72 *lmdb
73
74 # build, distribute, and bins (+ python proto bindings)
75 build
76 .build_debug/*
77 .build_release/*
78 distribute/*
79 *.testbin
80 *.bin
81 python/caffe/proto/
82 cmake_build
83 .cmake_build
84
85 # Generated documentation
86 docs/_site
87 docs/_includes
88 docs/gathered
89 _site
90 doxygen
91 docs/dev
92
93 # LevelDB files
94 *.sst
95 *.ldb
96 LOCK
97 LOG*
98 CURRENT
99 MANIFEST-*