.gitignore 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378
  1. # Created by https://www.gitignore.io/api/python,cmake,xcode,androidstudio
  2. # Edit at https://www.gitignore.io/?templates=python,cmake,xcode,androidstudio
  3. ### AndroidStudio ###
  4. # Covers files to be ignored for android development using Android Studio.
  5. # Built application files
  6. *.apk
  7. *.ap_
  8. # Files for the ART/Dalvik VM
  9. *.dex
  10. # Java class files
  11. *.class
  12. # Generated files
  13. bin/
  14. gen/
  15. out/
  16. # Gradle files
  17. .gradle
  18. .gradle/
  19. build/
  20. buildvisionOs/
  21. # Signing files
  22. .signing/
  23. # Local configuration file (sdk path, etc)
  24. local.properties
  25. # Proguard folder generated by Eclipse
  26. proguard/
  27. # Log Files
  28. *.log
  29. # Android Studio
  30. /*/build/
  31. /*/local.properties
  32. /*/out
  33. /*/*/build
  34. /*/*/production
  35. captures/
  36. .navigation/
  37. *.ipr
  38. *~
  39. *.swp
  40. # Android Patch
  41. gen-external-apklibs
  42. # External native build folder generated in Android Studio 2.2 and later
  43. .externalNativeBuild
  44. # NDK
  45. obj/
  46. # IntelliJ IDEA
  47. *.iml
  48. *.iws
  49. /out/
  50. # User-specific configurations
  51. .idea/caches/
  52. .idea/libraries/
  53. .idea/shelf/
  54. .idea/workspace.xml
  55. .idea/tasks.xml
  56. .idea/.name
  57. .idea/compiler.xml
  58. .idea/copyright/profiles_settings.xml
  59. .idea/encodings.xml
  60. .idea/misc.xml
  61. .idea/modules.xml
  62. .idea/scopes/scope_settings.xml
  63. .idea/dictionaries
  64. .idea/vcs.xml
  65. .idea/jsLibraryMappings.xml
  66. .idea/datasources.xml
  67. .idea/dataSources.ids
  68. .idea/sqlDataSources.xml
  69. .idea/dynamic.xml
  70. .idea/uiDesigner.xml
  71. .idea/assetWizardSettings.xml
  72. # OS-specific files
  73. .DS_Store
  74. .DS_Store?
  75. ._*
  76. .Spotlight-V100
  77. .Trashes
  78. ehthumbs.db
  79. Thumbs.db
  80. # Legacy Eclipse project files
  81. .classpath
  82. .project
  83. .cproject
  84. .settings/
  85. # Mobile Tools for Java (J2ME)
  86. .mtj.tmp/
  87. # Package Files #
  88. *.war
  89. *.ear
  90. # virtual machine crash logs (Reference: http://www.java.com/en/download/help/error_hotspot.xml)
  91. hs_err_pid*
  92. ## Plugin-specific files:
  93. # mpeltonen/sbt-idea plugin
  94. .idea_modules/
  95. # JIRA plugin
  96. atlassian-ide-plugin.xml
  97. # Mongo Explorer plugin
  98. .idea/mongoSettings.xml
  99. # Crashlytics plugin (for Android Studio and IntelliJ)
  100. com_crashlytics_export_strings.xml
  101. crashlytics.properties
  102. crashlytics-build.properties
  103. fabric.properties
  104. ### AndroidStudio Patch ###
  105. !/gradle/wrapper/gradle-wrapper.jar
  106. ### CMake ###
  107. CMakeLists.txt.user
  108. CMakeCache.txt
  109. CMakeFiles
  110. CMakeScripts
  111. Testing
  112. Makefile
  113. cmake_install.cmake
  114. install_manifest.txt
  115. compile_commands.json
  116. CTestTestfile.cmake
  117. ### Python ###
  118. # Byte-compiled / optimized / DLL files
  119. __pycache__/
  120. *.py[od]
  121. *$py.class
  122. # C extensions
  123. *.so
  124. # Distribution / packaging
  125. .Python
  126. develop-eggs/
  127. dist/
  128. downloads/
  129. eggs/
  130. .eggs/
  131. lib/
  132. lib64/
  133. parts/
  134. sdist/
  135. var/
  136. wheels/
  137. share/python-wheels/
  138. *.egg-info/
  139. .installed.cfg
  140. *.egg
  141. MANIFEST
  142. # PyInstaller
  143. # Usually these files are written by a python script from a template
  144. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  145. *.manifest
  146. *.spec
  147. # Installer logs
  148. pip-log.txt
  149. pip-delete-this-directory.txt
  150. # Unit test / coverage reports
  151. htmlcov/
  152. .tox/
  153. .nox/
  154. .coverage
  155. .coverage.*
  156. .cache
  157. nosetests.xml
  158. coverage.xml
  159. *.cover
  160. .hypothesis/
  161. .pytest_cache/
  162. # Translations
  163. *.mo
  164. *.pot
  165. # Django stuff:
  166. local_settings.py
  167. db.sqlite3
  168. # Flask stuff:
  169. instance/
  170. .webassets-cache
  171. # Scrapy stuff:
  172. .scrapy
  173. # Sphinx documentation
  174. docs/_build/
  175. # PyBuilder
  176. target/
  177. # Jupyter Notebook
  178. .ipynb_checkpoints
  179. # IPython
  180. profile_default/
  181. ipython_config.py
  182. # pyenv
  183. .python-version
  184. # celery beat schedule file
  185. celerybeat-schedule
  186. # SageMath parsed files
  187. *.sage.py
  188. # Environments
  189. .env
  190. .venv
  191. env/
  192. venv/
  193. ENV/
  194. env.bak/
  195. venv.bak/
  196. # Spyder project settings
  197. .spyderproject
  198. .spyproject
  199. # Rope project settings
  200. .ropeproject
  201. # mkdocs documentation
  202. /site
  203. # mypy
  204. .mypy_cache/
  205. .dmypy.json
  206. dmypy.json
  207. # Pyre type checker
  208. .pyre/
  209. ### Python Patch ###
  210. .venv/
  211. ### Xcode ###
  212. # Xcode
  213. #
  214. # gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
  215. ## User settings
  216. xcuserdata/
  217. ## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9)
  218. *.xcscmblueprint
  219. *.xccheckout
  220. ## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4)
  221. DerivedData/
  222. *.moved-aside
  223. *.pbxuser
  224. !default.pbxuser
  225. *.mode1v3
  226. !default.mode1v3
  227. *.mode2v3
  228. !default.mode2v3
  229. *.perspectivev3
  230. !default.perspectivev3
  231. ### Xcode Patch ###
  232. *.xcodeproj/*
  233. !*.xcodeproj/project.pbxproj
  234. !*.xcodeproj/xcshareddata/
  235. !*.xcworkspace/contents.xcworkspacedata
  236. /*.gcno
  237. **/xcshareddata/WorkspaceSettings.xcsettings
  238. Pods
  239. # End of https://www.gitignore.io/api/python,cmake,xcode,androidstudio
  240. ### VSCode
  241. .vscode
  242. .tags
  243. ### Build Result
  244. build32
  245. build64
  246. build.mac/
  247. ### Projects
  248. *.podspec.json
  249. demo/android/.idea
  250. demo/android/.idea/gradle.xml
  251. demo/android/.idea/misc.xml
  252. demo/android/.idea/runConfigurations.xml
  253. demo/android/.idea/vcs.xml
  254. demo/android/.idea/caches/build_file_checksums.ser
  255. demo/android/app/libs/
  256. project/android/.idea/.name
  257. project/android/.idea/gradle.xml
  258. project/android/.idea/misc.xml
  259. project/android/.idea/modules.xml
  260. project/android/.idea/runConfigurations.xml
  261. project/android/.idea/vcs.xml
  262. project/android/.idea/caches/build_file_checksums.ser
  263. ### Temps
  264. 3rd_party/flatbuffers/tmp
  265. # FIXME(haijing): Xcode pre-build stage breaks compilation of flatbuffers by setting envs that do cmake cross-compilation for iOS
  266. # schema/current
  267. schema/private
  268. tools/converter/source/IR
  269. benchmark/benchmark.txt
  270. ### Python MNN
  271. pymnn/android/build/
  272. pymnn/android/local.properties
  273. pymnn/android/.idea
  274. pymnn/android/.idea/.name
  275. pymnn/android/.idea/gradle.xml
  276. pymnn/android/.idea/misc.xml
  277. pymnn/android/.idea/modules.xml
  278. pymnn/android/.idea/runConfigurations.xml
  279. pymnn/android/.idea/vcs.xml
  280. pymnn/android/.idea/caches/build_file_checksums.ser
  281. pymnn/src/pybind_private/
  282. buildios
  283. build*/
  284. include/MNN/VCS.h
  285. source/backend/opengl/AllShader.cpp
  286. include/MNN/backend/opengl/shaders/AllShader.h
  287. .idea
  288. project/ios/ios_64
  289. project/ios/ios_32
  290. project/ios/MNN.framework
  291. pymnn_build/
  292. # mnncompress generated
  293. MNN_compression_pb2.py
  294. project/ios/MNNLLMForiOS/MNN.framework
  295. project/MNNLLMForiOS/Chat
  296. project/MNNLLMForiOS/MNN.framework
  297. MNN-iOS-CPU-GPU/Static/MNN.framework
  298. apps/iOS/MNNLLMChat/MNN.framework
  299. # model path
  300. model/
  301. # datasets
  302. datasets/*
  303. !datasets/*.sh
  304. # qnn 3rdParty
  305. source/backend/qnn/3rdParty/include