1
0

.gitignore 941 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. *.o
  2. *.a
  3. *.so
  4. *.bin
  5. .DS_Store
  6. .build/
  7. .cache/
  8. .direnv/
  9. .envrc
  10. .swiftpm
  11. .venv
  12. .clang-tidy
  13. .vs/
  14. .vscode/
  15. build/
  16. build-em/
  17. build-debug/
  18. build-release/
  19. build-ci-debug/
  20. build-ci-release/
  21. build-static/
  22. build-cublas/
  23. build-opencl/
  24. build-metal/
  25. build-mpi/
  26. build-no-accel/
  27. build-sanitize-addr/
  28. build-sanitize-thread/
  29. out/
  30. tmp/
  31. models/*
  32. models-mnt
  33. /main
  34. /quantize
  35. /quantize-stats
  36. /result
  37. /perplexity
  38. /embedding
  39. /train-text-from-scratch
  40. /convert-llama2c-to-ggml
  41. /simple
  42. /benchmark-matmult
  43. /vdot
  44. /server
  45. /Pipfile
  46. /embd-input-test
  47. /libllama.so
  48. /llama-bench
  49. build-info.h
  50. arm_neon.h
  51. compile_commands.json
  52. CMakeSettings.json
  53. __pycache__
  54. zig-out/
  55. zig-cache/
  56. ppl-*.txt
  57. qnt-*.txt
  58. perf-*.txt
  59. examples/jeopardy/results.txt
  60. pyproject.toml
  61. poetry.lock
  62. poetry.toml
  63. # Test binaries
  64. tests/test-grammar-parser
  65. tests/test-double-float
  66. tests/test-grad0
  67. tests/test-opt
  68. tests/test-quantize-fns
  69. tests/test-quantize-perf
  70. tests/test-sampling
  71. tests/test-tokenizer-0