2023-03-10 18:40:58 +00:00
|
|
|
*.o
|
|
|
|
*.a
|
2023-06-28 15:53:37 +00:00
|
|
|
*.so
|
2023-08-21 20:07:43 +00:00
|
|
|
*.gguf
|
2023-08-11 23:17:25 +00:00
|
|
|
*.bin
|
2023-08-23 14:31:34 +00:00
|
|
|
*.exe
|
|
|
|
*.dll
|
main : log file (#2748)
* initial, base LOG macro
* add *.log to .gitignore
* added basic log file handler
* reverted log auto endline to better mimic printf
* remove atomics and add dynamic log target
* log_enable/disable, LOG_TEE, basic usage doc
* update .gitignore
* mv include to common, params, help msg
* log tostring helpers, token vectors pretty prints
* main: replaced fprintf/LOG_TEE, some trace logging
* LOG_DISABLE_LOGS compile flag, wrapped f in macros
* fix LOG_TEELN and configchecker
* stub LOG_DUMP_CMDLINE for WIN32 for now
* fix msvc
* cleanup main.cpp:273
* fix stray whitespace after master sync
* log : fix compile warnings
- do not use C++20 stuff
- use PRIu64 to print uint64_t
- avoid string copies by using const ref
- fix ", ##__VA_ARGS__" warnings
- compare strings with == and !=
* log : do not append to existing log + disable file line func by default
* log : try to fix Windows build
* main : wip logs
* main : add trace log
* review: macro f lowercase, str append to sstream
* review: simplify ifs and str comparisons
* fix MSVC, formatting, FMT/VAL placeholders
* review: if/else cleanup
* review: if/else cleanup (2)
* replace _ prefix with _impl suffix
---------
Co-authored-by: Georgi Gerganov <ggerganov@gmail.com>
2023-08-30 06:29:32 +00:00
|
|
|
*.log
|
2023-09-03 08:48:49 +00:00
|
|
|
*.gcov
|
|
|
|
*.gcno
|
|
|
|
*.gcda
|
|
|
|
*.dot
|
2023-04-19 17:10:08 +00:00
|
|
|
.DS_Store
|
|
|
|
.build/
|
2023-03-10 18:40:58 +00:00
|
|
|
.cache/
|
2023-04-19 17:10:08 +00:00
|
|
|
.direnv/
|
|
|
|
.envrc
|
|
|
|
.swiftpm
|
|
|
|
.venv
|
2023-06-06 06:55:10 +00:00
|
|
|
.clang-tidy
|
2023-03-10 18:40:58 +00:00
|
|
|
.vs/
|
|
|
|
.vscode/
|
|
|
|
|
2023-09-03 08:48:49 +00:00
|
|
|
lcov-report/
|
|
|
|
gcovr-report/
|
|
|
|
|
2023-08-25 09:09:42 +00:00
|
|
|
build*/
|
2023-06-16 06:58:11 +00:00
|
|
|
out/
|
2023-07-18 11:24:43 +00:00
|
|
|
tmp/
|
2023-03-10 18:40:58 +00:00
|
|
|
|
2023-03-11 10:26:46 +00:00
|
|
|
models/*
|
2023-07-18 11:24:43 +00:00
|
|
|
models-mnt
|
2023-03-11 10:26:46 +00:00
|
|
|
|
2023-03-29 20:51:37 +00:00
|
|
|
/Pipfile
|
2023-09-04 19:26:24 +00:00
|
|
|
/baby-llama
|
|
|
|
/beam-search
|
|
|
|
/benchmark-matmult
|
|
|
|
/convert-llama2c-to-ggml
|
2023-06-28 15:53:37 +00:00
|
|
|
/embd-input-test
|
2023-09-04 19:26:24 +00:00
|
|
|
/embedding
|
2023-08-21 20:07:43 +00:00
|
|
|
/gguf
|
|
|
|
/gguf-llama-simple
|
2023-06-06 07:18:03 +00:00
|
|
|
/libllama.so
|
2023-08-18 10:44:58 +00:00
|
|
|
/llama-bench
|
2023-09-04 19:26:24 +00:00
|
|
|
/main
|
|
|
|
/metal
|
|
|
|
/perplexity
|
|
|
|
/quantize
|
|
|
|
/quantize-stats
|
|
|
|
/result
|
2023-08-30 09:52:46 +00:00
|
|
|
/save-load-state
|
2023-09-04 19:26:24 +00:00
|
|
|
/server
|
|
|
|
/simple
|
2023-09-04 10:39:57 +00:00
|
|
|
/speculative
|
2023-09-04 19:26:24 +00:00
|
|
|
/train-text-from-scratch
|
|
|
|
/vdot
|
2023-05-01 16:23:47 +00:00
|
|
|
build-info.h
|
2023-03-10 18:40:58 +00:00
|
|
|
arm_neon.h
|
|
|
|
compile_commands.json
|
2023-06-16 06:58:11 +00:00
|
|
|
CMakeSettings.json
|
2023-03-17 22:03:48 +00:00
|
|
|
|
2023-03-28 16:39:01 +00:00
|
|
|
__pycache__
|
2023-08-25 06:26:05 +00:00
|
|
|
dist
|
2023-04-05 15:06:02 +00:00
|
|
|
|
|
|
|
zig-out/
|
|
|
|
zig-cache/
|
2023-04-19 17:10:08 +00:00
|
|
|
|
|
|
|
ppl-*.txt
|
2023-05-08 14:41:54 +00:00
|
|
|
qnt-*.txt
|
2023-05-11 21:23:08 +00:00
|
|
|
perf-*.txt
|
2023-04-28 16:13:33 +00:00
|
|
|
|
|
|
|
examples/jeopardy/results.txt
|
2023-07-21 10:09:16 +00:00
|
|
|
|
2023-07-21 10:53:27 +00:00
|
|
|
poetry.lock
|
|
|
|
poetry.toml
|
|
|
|
|
2023-07-21 10:09:16 +00:00
|
|
|
# Test binaries
|
2023-08-13 14:00:48 +00:00
|
|
|
tests/test-grammar-parser
|
2023-08-28 15:38:35 +00:00
|
|
|
tests/test-llama-grammar
|
2023-07-21 10:09:16 +00:00
|
|
|
tests/test-double-float
|
|
|
|
tests/test-grad0
|
|
|
|
tests/test-opt
|
|
|
|
tests/test-quantize-fns
|
|
|
|
tests/test-quantize-perf
|
|
|
|
tests/test-sampling
|
2023-08-28 15:38:35 +00:00
|
|
|
tests/test-tokenizer-0-llama
|
|
|
|
tests/test-tokenizer-0-falcon
|
|
|
|
tests/test-tokenizer-1
|