.gitignore 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. # Extensions
  2. *.a
  3. *.bat
  4. *.bin
  5. *.dll
  6. *.dot
  7. *.etag
  8. *.exe
  9. *.gcda
  10. *.gcno
  11. *.gcov
  12. *.gguf
  13. *.gguf.json
  14. *.lastModified
  15. *.log
  16. *.metallib
  17. *.o
  18. *.so
  19. *.tmp
  20. # IDE / OS
  21. .cache/
  22. .ccls-cache/
  23. .direnv/
  24. .DS_Store
  25. .envrc
  26. .idea/
  27. .swiftpm
  28. .vs/
  29. .vscode/
  30. nppBackup
  31. # Coverage
  32. gcovr-report/
  33. lcov-report/
  34. # Build Artifacts
  35. tags
  36. .build/
  37. build*
  38. !build-info.cmake
  39. !build-info.cpp.in
  40. !build-info.sh
  41. !build.zig
  42. /libllama.so
  43. /llama-*
  44. android-ndk-*
  45. arm_neon.h
  46. cmake-build-*
  47. CMakeSettings.json
  48. compile_commands.json
  49. ggml-metal-embed.metal
  50. llama-batched-swift
  51. /rpc-server
  52. out/
  53. tmp/
  54. # CI
  55. !.github/workflows/*.yml
  56. # Models
  57. models/*
  58. models-mnt
  59. !models/.editorconfig
  60. !models/ggml-vocab-*.gguf*
  61. # Zig
  62. zig-out/
  63. zig-cache/
  64. # Logs
  65. ppl-*.txt
  66. qnt-*.txt
  67. perf-*.txt
  68. # Examples
  69. examples/jeopardy/results.txt
  70. examples/server/*.css.hpp
  71. examples/server/*.html.hpp
  72. examples/server/*.js.hpp
  73. examples/server/*.mjs.hpp
  74. !build_64.sh
  75. !examples/*.bat
  76. !examples/*/*.kts
  77. !examples/*/*/*.kts
  78. !examples/sycl/*.bat
  79. !examples/sycl/*.sh
  80. # Python
  81. /.venv
  82. __pycache__/
  83. */poetry.lock
  84. poetry.toml
  85. # Nix
  86. /result
  87. # Test binaries
  88. /tests/test-backend-ops
  89. /tests/test-double-float
  90. /tests/test-grad0
  91. /tests/test-grammar-parser
  92. /tests/test-llama-grammar
  93. /tests/test-opt
  94. /tests/test-quantize-fns
  95. /tests/test-quantize-perf
  96. /tests/test-rope
  97. /tests/test-sampling
  98. /tests/test-tokenizer-0
  99. /tests/test-tokenizer-1-bpe
  100. /tests/test-tokenizer-1-spm
  101. # Scripts
  102. !/scripts/install-oneapi.bat