mirror of
https://github.com/qdrant/qdrant.git
synced 2026-07-23 11:11:00 -05:00
* TQ 4 bit SIMD * more optimizations * unroll test * remove tries * revert avx 512 * final simd * use precomputed codebooks * close to finish * split to files * are you happy fmt * score internal * 1bit * 1bit tails * score_1bit_internal_avx2 tail * 1bit simd * 2bit case * fix 2bit * fix features * tails * fix tests * less benches * 1bit tails * 4bit tails simd * 64k overflow test * reuse packing and constants from dev after rebase * are yoy happy fmt * fix x64 build * integration * symmetric score SIMD * fix codespell * better docs * are you happy clippy * review remarks * review remarks
24 lines
800 B
TOML
24 lines
800 B
TOML
# You can run the following command in the repository root:
|
|
# uv tool run codespell --toml tools/codespell.toml
|
|
|
|
[tool.codespell]
|
|
|
|
skip = [
|
|
"**/stop_words/*.rs",
|
|
"./lib/segment/src/index/field_index/full_text_index/tokenizers/ascii_folding.rs", # contains character mappings
|
|
"./static",
|
|
"./tests/e2e_tests/test_data/cert/key.pem",
|
|
"openapi.json", # openapi.json is typically a released version and could carry old typos
|
|
"target",
|
|
]
|
|
|
|
ignore-words-list = [
|
|
"ABD", # Geohash example
|
|
"INDX", # bitvec crate const
|
|
"generall", # The boss
|
|
"hel", # Query token
|
|
"inout", # Rust inline-asm operand keyword
|
|
"mmapped", # Memory mapped
|
|
"ser", # Serde package
|
|
]
|