2023-03-10 19:40:58 +01:00
|
|
|
*.o
|
|
|
|
*.a
|
2023-06-28 17:53:37 +02:00
|
|
|
*.so
|
2023-08-21 22:07:43 +02:00
|
|
|
*.gguf
|
2023-08-12 01:17:25 +02:00
|
|
|
*.bin
|
2023-08-23 16:31:34 +02: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 08:29:32 +02:00
|
|
|
*.log
|
2023-09-03 10:48:49 +02:00
|
|
|
*.gcov
|
|
|
|
*.gcno
|
|
|
|
*.gcda
|
|
|
|
*.dot
|
2023-04-19 19:10:08 +02:00
|
|
|
.DS_Store
|
|
|
|
.build/
|
2023-03-10 19:40:58 +01:00
|
|
|
.cache/
|
2023-04-19 19:10:08 +02:00
|
|
|
.direnv/
|
|
|
|
.envrc
|
|
|
|
.swiftpm
|
|
|
|
.venv
|
2023-06-06 08:55:10 +02:00
|
|
|
.clang-tidy
|
2023-03-10 19:40:58 +01:00
|
|
|
.vs/
|
|
|
|
.vscode/
|
|
|
|
|
2023-09-03 10:48:49 +02:00
|
|
|
lcov-report/
|
|
|
|
gcovr-report/
|
|
|
|
|
2023-08-25 11:09:42 +02:00
|
|
|
build*/
|
2023-06-16 08:58:11 +02:00
|
|
|
out/
|
2023-07-18 13:24:43 +02:00
|
|
|
tmp/
|
2023-03-10 19:40:58 +01:00
|
|
|
|
2023-03-11 11:26:46 +01:00
|
|
|
models/*
|
2023-07-18 13:24:43 +02:00
|
|
|
models-mnt
|
2023-03-11 11:26:46 +01:00
|
|
|
|
2023-03-29 22:51:37 +02:00
|
|
|
/Pipfile
|
2023-09-04 21:26:24 +02:00
|
|
|
/baby-llama
|
|
|
|
/beam-search
|
|
|
|
/benchmark-matmult
|
|
|
|
/convert-llama2c-to-ggml
|
2023-06-28 17:53:37 +02:00
|
|
|
/embd-input-test
|
2023-09-04 21:26:24 +02:00
|
|
|
/embedding
|
2023-08-21 22:07:43 +02:00
|
|
|
/gguf
|
|
|
|
/gguf-llama-simple
|
2023-06-06 09:18:03 +02:00
|
|
|
/libllama.so
|
2023-08-18 12:44:58 +02:00
|
|
|
/llama-bench
|
2023-09-04 21:26:24 +02:00
|
|
|
/main
|
|
|
|
/metal
|
|
|
|
/perplexity
|
|
|
|
/quantize
|
|
|
|
/quantize-stats
|
|
|
|
/result
|
2023-08-30 11:52:46 +02:00
|
|
|
/save-load-state
|
2023-09-04 21:26:24 +02:00
|
|
|
/server
|
|
|
|
/simple
|
2023-09-04 12:39:57 +02:00
|
|
|
/speculative
|
2023-09-04 21:26:24 +02:00
|
|
|
/train-text-from-scratch
|
|
|
|
/vdot
|
2023-05-01 18:23:47 +02:00
|
|
|
build-info.h
|
2023-03-10 19:40:58 +01:00
|
|
|
arm_neon.h
|
|
|
|
compile_commands.json
|
2023-06-16 08:58:11 +02:00
|
|
|
CMakeSettings.json
|
2023-03-17 23:03:48 +01:00
|
|
|
|
2023-03-28 18:39:01 +02:00
|
|
|
__pycache__
|
2023-08-25 08:26:05 +02:00
|
|
|
dist
|
2023-04-05 17:06:02 +02:00
|
|
|
|
|
|
|
zig-out/
|
|
|
|
zig-cache/
|
2023-04-19 19:10:08 +02:00
|
|
|
|
|
|
|
ppl-*.txt
|
2023-05-08 16:41:54 +02:00
|
|
|
qnt-*.txt
|
2023-05-11 23:23:08 +02:00
|
|
|
perf-*.txt
|
2023-04-28 18:13:33 +02:00
|
|
|
|
|
|
|
examples/jeopardy/results.txt
|
2023-07-21 12:09:16 +02:00
|
|
|
|
2023-07-21 12:53:27 +02:00
|
|
|
poetry.lock
|
|
|
|
poetry.toml
|
|
|
|
|
2023-07-21 12:09:16 +02:00
|
|
|
# Test binaries
|
2023-08-13 16:00:48 +02:00
|
|
|
tests/test-grammar-parser
|
2023-08-28 17:38:35 +02:00
|
|
|
tests/test-llama-grammar
|
2023-07-21 12:09:16 +02: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 17:38:35 +02:00
|
|
|
tests/test-tokenizer-0-llama
|
|
|
|
tests/test-tokenizer-0-falcon
|
|
|
|
tests/test-tokenizer-1
|