├── .assets ├── banner.jpg ├── fashion-mnist-784-euclidean.png ├── gist-960-euclidean.png └── user-portrait.svg ├── .clang-format ├── .clang-tidy ├── .cmake-format.py ├── .github ├── actions │ └── cache-restore │ │ └── action.yaml └── workflows │ ├── cibuildwheel.yaml │ ├── code-checker.yaml │ ├── license-checker.yaml │ └── precommit-checker.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── .typo.toml ├── CMakeLists.txt ├── LICENSE ├── Makefile ├── README.md ├── app ├── API_Usage_Documentation.md ├── Dockerfile ├── README.md ├── __init__.py ├── main.py ├── models │ ├── __init__.py │ └── collection.py ├── requirements.txt ├── routers │ ├── __init__.py │ └── client.py └── tests │ ├── __init__.py │ ├── conftest.py │ └── test_client.py ├── cmake ├── CompilerConfig.cmake ├── ConanDepConfig.cmake └── OptionConfig.cmake ├── codecov.yml ├── conanfile.py ├── examples └── rag │ ├── .devcontainer │ └── devcontainer.json │ ├── Dockerfile │ ├── README.md │ ├── db.py │ ├── figures │ ├── interface.png │ ├── overview.png │ └── port.png │ ├── llm.py │ ├── test_docs.txt │ ├── ui.py │ └── utils.py ├── include ├── executor │ ├── jobs │ │ ├── graph_search_job.hpp │ │ ├── graph_update_job.hpp │ │ └── job_context.hpp │ ├── scheduler.hpp │ ├── task_queue.hpp │ └── worker.hpp ├── index │ ├── graph │ │ ├── fusion_graph.hpp │ │ ├── graph.hpp │ │ ├── graph_concepts.hpp │ │ ├── hnsw │ │ │ ├── hnsw_builder.hpp │ │ │ ├── hnswlib.hpp │ │ │ └── visited_list_pool.hpp │ │ ├── knng │ │ │ └── nndescent.hpp │ │ ├── nsg │ │ │ └── nsg_builder.hpp │ │ ├── overlay_graph.hpp │ │ └── qg │ │ │ └── qg_builder.hpp │ ├── index_type.hpp │ └── neighbor.hpp ├── space │ ├── distance │ │ ├── dist_config.hpp │ │ ├── dist_ip.hpp │ │ └── dist_l2.hpp │ ├── quant │ │ ├── rabitq.hpp │ │ ├── sq4.hpp │ │ └── sq8.hpp │ ├── rabitq_space.hpp │ ├── raw_space.hpp │ ├── space_concepts.hpp │ ├── sq4_space.hpp │ └── sq8_space.hpp ├── storage │ ├── sequential_storage.hpp │ ├── static_storage.hpp │ └── storage_concept.hpp └── utils │ ├── data_utils.hpp │ ├── dataset_utils.hpp │ ├── evaluate.hpp │ ├── io_utils.hpp │ ├── locks.hpp │ ├── log.hpp │ ├── memory.hpp │ ├── metric_type.hpp │ ├── prefetch.hpp │ ├── quantization_type.hpp │ ├── query_utils.hpp │ ├── rabitq_utils │ ├── defines.hpp │ ├── fastscan.hpp │ ├── fht_avx.hpp │ ├── lut.hpp │ ├── rotator.hpp │ ├── roundup.hpp │ └── search_utils │ │ ├── allocator.hpp │ │ ├── buffer.hpp │ │ ├── hashset.hpp │ │ └── stopw.hpp │ ├── random.hpp │ ├── thread_pool.hpp │ ├── timer.hpp │ └── types.hpp ├── pyproject.toml ├── pytest.ini ├── python ├── .pylintrc ├── CMakeLists.txt ├── README.md ├── adapters │ └── annbenchmark │ │ └── alayalite │ │ ├── Dockerfile │ │ ├── config.yml │ │ └── module.py ├── environment.yaml ├── include │ ├── client.hpp │ ├── dispatch.hpp │ ├── index.hpp │ ├── params.hpp │ └── reg.hpp ├── src │ ├── alayalite │ │ ├── __init__.py │ │ ├── client.py │ │ ├── collection.py │ │ ├── common.py │ │ ├── defaults.py │ │ ├── index.py │ │ ├── rag │ │ │ ├── chunker │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── chunker.py │ │ │ │ ├── fix_size_chunker.py │ │ │ │ ├── semantic_chunker.py │ │ │ │ └── sentence_chunker.py │ │ │ └── embedder │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── bge_embedder.py │ │ │ │ ├── embedder.py │ │ │ │ ├── jina_embedder.py │ │ │ │ ├── m3e_embedder.py │ │ │ │ └── multilingual_embedder.py │ │ ├── schema.py │ │ └── utils.py │ └── pybind.cpp └── tests │ ├── test_client.py │ ├── test_client_with_url.py │ ├── test_collection.py │ ├── test_index_types.py │ ├── test_md5.py │ ├── test_rabitq_search.py │ ├── test_update.py │ └── test_vec_loader.py ├── scripts ├── ci │ ├── codecov │ │ └── gnu_codecoverage.sh │ └── cpplint │ │ ├── ci_script.sh │ │ ├── ignore_files.txt │ │ ├── run_clang_format.py │ │ ├── run_clang_tidy.py │ │ └── run_clang_tidy_extra.py ├── conan_build │ ├── conan_hook.sh │ ├── conan_hook_win.bat │ ├── conan_profile.aarch64 │ ├── conan_profile.x86_64 │ ├── conan_profile_mac.aarch64 │ └── conan_profile_win.x86_64 ├── license_check │ └── license_script.py └── test │ ├── gnu_codecoverage.sh │ └── llvm_codecoverage.sh ├── tests ├── CMakeLists.txt ├── executor │ ├── CMakeLists.txt │ ├── coro_test.cpp │ ├── mutex_test.cpp │ ├── scheduler_test.cpp │ ├── search_test.cpp │ ├── task_queue_test.cpp │ ├── update_test.cpp │ └── worker_test.cpp ├── index │ ├── CMakeLists.txt │ ├── fusion_graph_test.cpp │ ├── graph_test.cpp │ ├── hnsw_test.cpp │ ├── nndescent_test.cpp │ └── nsg_test.cpp ├── rabitq │ ├── CMakeLists.txt │ └── siftsmall_test.cpp ├── space │ ├── CMakeLists.txt │ ├── quant │ │ ├── sq4_test.cpp │ │ └── sq8_test.cpp │ ├── rabitq_space_test.cpp │ ├── raw_space_test.cpp │ ├── sq4_space_test.cpp │ └── sq8_space_test.cpp ├── storage │ ├── CMakeLists.txt │ ├── sequential_storage_test.cpp │ └── static_storage_test.cpp └── utils │ ├── CMakeLists.txt │ ├── data_utils_test.cpp │ ├── dataset_utils_test.cpp │ ├── evaluate_test.cpp │ ├── log_test.cpp │ ├── metric_type_test.cpp │ ├── query_utils_test.cpp │ └── rabitq_utils │ ├── fht_avx_test.cpp │ ├── lut_test.cpp │ ├── rotator_test.cpp │ └── roundup_test.cpp └── uv.lock /.assets/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/.assets/banner.jpg -------------------------------------------------------------------------------- /.assets/fashion-mnist-784-euclidean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/.assets/fashion-mnist-784-euclidean.png -------------------------------------------------------------------------------- /.assets/gist-960-euclidean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/.assets/gist-960-euclidean.png -------------------------------------------------------------------------------- /.assets/user-portrait.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/.assets/user-portrait.svg -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/.clang-format -------------------------------------------------------------------------------- /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.cmake-format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/.cmake-format.py -------------------------------------------------------------------------------- /.github/actions/cache-restore/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/.github/actions/cache-restore/action.yaml -------------------------------------------------------------------------------- /.github/workflows/cibuildwheel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/.github/workflows/cibuildwheel.yaml -------------------------------------------------------------------------------- /.github/workflows/code-checker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/.github/workflows/code-checker.yaml -------------------------------------------------------------------------------- /.github/workflows/license-checker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/.github/workflows/license-checker.yaml -------------------------------------------------------------------------------- /.github/workflows/precommit-checker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/.github/workflows/precommit-checker.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.typo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/.typo.toml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/README.md -------------------------------------------------------------------------------- /app/API_Usage_Documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/app/API_Usage_Documentation.md -------------------------------------------------------------------------------- /app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/app/Dockerfile -------------------------------------------------------------------------------- /app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/app/README.md -------------------------------------------------------------------------------- /app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/app/main.py -------------------------------------------------------------------------------- /app/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/app/models/collection.py -------------------------------------------------------------------------------- /app/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/app/requirements.txt -------------------------------------------------------------------------------- /app/routers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/routers/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/app/routers/client.py -------------------------------------------------------------------------------- /app/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/app/tests/conftest.py -------------------------------------------------------------------------------- /app/tests/test_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/app/tests/test_client.py -------------------------------------------------------------------------------- /cmake/CompilerConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/cmake/CompilerConfig.cmake -------------------------------------------------------------------------------- /cmake/ConanDepConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/cmake/ConanDepConfig.cmake -------------------------------------------------------------------------------- /cmake/OptionConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/cmake/OptionConfig.cmake -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/codecov.yml -------------------------------------------------------------------------------- /conanfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/conanfile.py -------------------------------------------------------------------------------- /examples/rag/.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/examples/rag/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /examples/rag/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/examples/rag/Dockerfile -------------------------------------------------------------------------------- /examples/rag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/examples/rag/README.md -------------------------------------------------------------------------------- /examples/rag/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/examples/rag/db.py -------------------------------------------------------------------------------- /examples/rag/figures/interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/examples/rag/figures/interface.png -------------------------------------------------------------------------------- /examples/rag/figures/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/examples/rag/figures/overview.png -------------------------------------------------------------------------------- /examples/rag/figures/port.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/examples/rag/figures/port.png -------------------------------------------------------------------------------- /examples/rag/llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/examples/rag/llm.py -------------------------------------------------------------------------------- /examples/rag/test_docs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/examples/rag/test_docs.txt -------------------------------------------------------------------------------- /examples/rag/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/examples/rag/ui.py -------------------------------------------------------------------------------- /examples/rag/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/examples/rag/utils.py -------------------------------------------------------------------------------- /include/executor/jobs/graph_search_job.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/include/executor/jobs/graph_search_job.hpp -------------------------------------------------------------------------------- /include/executor/jobs/graph_update_job.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/include/executor/jobs/graph_update_job.hpp -------------------------------------------------------------------------------- /include/executor/jobs/job_context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/include/executor/jobs/job_context.hpp -------------------------------------------------------------------------------- /include/executor/scheduler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/include/executor/scheduler.hpp -------------------------------------------------------------------------------- /include/executor/task_queue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/include/executor/task_queue.hpp -------------------------------------------------------------------------------- /include/executor/worker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/include/executor/worker.hpp -------------------------------------------------------------------------------- /include/index/graph/fusion_graph.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/include/index/graph/fusion_graph.hpp -------------------------------------------------------------------------------- /include/index/graph/graph.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/include/index/graph/graph.hpp -------------------------------------------------------------------------------- /include/index/graph/graph_concepts.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/include/index/graph/graph_concepts.hpp -------------------------------------------------------------------------------- /include/index/graph/hnsw/hnsw_builder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/include/index/graph/hnsw/hnsw_builder.hpp -------------------------------------------------------------------------------- /include/index/graph/hnsw/hnswlib.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/include/index/graph/hnsw/hnswlib.hpp -------------------------------------------------------------------------------- /include/index/graph/hnsw/visited_list_pool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/include/index/graph/hnsw/visited_list_pool.hpp -------------------------------------------------------------------------------- /include/index/graph/knng/nndescent.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/include/index/graph/knng/nndescent.hpp -------------------------------------------------------------------------------- /include/index/graph/nsg/nsg_builder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/include/index/graph/nsg/nsg_builder.hpp -------------------------------------------------------------------------------- /include/index/graph/overlay_graph.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/include/index/graph/overlay_graph.hpp -------------------------------------------------------------------------------- /include/index/graph/qg/qg_builder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/include/index/graph/qg/qg_builder.hpp -------------------------------------------------------------------------------- /include/index/index_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/include/index/index_type.hpp -------------------------------------------------------------------------------- /include/index/neighbor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/include/index/neighbor.hpp -------------------------------------------------------------------------------- /include/space/distance/dist_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/include/space/distance/dist_config.hpp -------------------------------------------------------------------------------- /include/space/distance/dist_ip.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/include/space/distance/dist_ip.hpp -------------------------------------------------------------------------------- /include/space/distance/dist_l2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/include/space/distance/dist_l2.hpp -------------------------------------------------------------------------------- /include/space/quant/rabitq.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/include/space/quant/rabitq.hpp -------------------------------------------------------------------------------- /include/space/quant/sq4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/include/space/quant/sq4.hpp -------------------------------------------------------------------------------- /include/space/quant/sq8.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/include/space/quant/sq8.hpp -------------------------------------------------------------------------------- /include/space/rabitq_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/include/space/rabitq_space.hpp -------------------------------------------------------------------------------- /include/space/raw_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/include/space/raw_space.hpp -------------------------------------------------------------------------------- /include/space/space_concepts.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/include/space/space_concepts.hpp -------------------------------------------------------------------------------- /include/space/sq4_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/include/space/sq4_space.hpp -------------------------------------------------------------------------------- /include/space/sq8_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/include/space/sq8_space.hpp -------------------------------------------------------------------------------- /include/storage/sequential_storage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/include/storage/sequential_storage.hpp -------------------------------------------------------------------------------- /include/storage/static_storage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/include/storage/static_storage.hpp -------------------------------------------------------------------------------- /include/storage/storage_concept.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/include/storage/storage_concept.hpp -------------------------------------------------------------------------------- /include/utils/data_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/include/utils/data_utils.hpp -------------------------------------------------------------------------------- /include/utils/dataset_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/include/utils/dataset_utils.hpp -------------------------------------------------------------------------------- /include/utils/evaluate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/include/utils/evaluate.hpp -------------------------------------------------------------------------------- /include/utils/io_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/include/utils/io_utils.hpp -------------------------------------------------------------------------------- /include/utils/locks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/include/utils/locks.hpp -------------------------------------------------------------------------------- /include/utils/log.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/include/utils/log.hpp -------------------------------------------------------------------------------- /include/utils/memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/include/utils/memory.hpp -------------------------------------------------------------------------------- /include/utils/metric_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/include/utils/metric_type.hpp -------------------------------------------------------------------------------- /include/utils/prefetch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/include/utils/prefetch.hpp -------------------------------------------------------------------------------- /include/utils/quantization_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/include/utils/quantization_type.hpp -------------------------------------------------------------------------------- /include/utils/query_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/include/utils/query_utils.hpp -------------------------------------------------------------------------------- /include/utils/rabitq_utils/defines.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/include/utils/rabitq_utils/defines.hpp -------------------------------------------------------------------------------- /include/utils/rabitq_utils/fastscan.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/include/utils/rabitq_utils/fastscan.hpp -------------------------------------------------------------------------------- /include/utils/rabitq_utils/fht_avx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/include/utils/rabitq_utils/fht_avx.hpp -------------------------------------------------------------------------------- /include/utils/rabitq_utils/lut.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/include/utils/rabitq_utils/lut.hpp -------------------------------------------------------------------------------- /include/utils/rabitq_utils/rotator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/include/utils/rabitq_utils/rotator.hpp -------------------------------------------------------------------------------- /include/utils/rabitq_utils/roundup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/include/utils/rabitq_utils/roundup.hpp -------------------------------------------------------------------------------- /include/utils/rabitq_utils/search_utils/allocator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/include/utils/rabitq_utils/search_utils/allocator.hpp -------------------------------------------------------------------------------- /include/utils/rabitq_utils/search_utils/buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/include/utils/rabitq_utils/search_utils/buffer.hpp -------------------------------------------------------------------------------- /include/utils/rabitq_utils/search_utils/hashset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/include/utils/rabitq_utils/search_utils/hashset.hpp -------------------------------------------------------------------------------- /include/utils/rabitq_utils/search_utils/stopw.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/include/utils/rabitq_utils/search_utils/stopw.hpp -------------------------------------------------------------------------------- /include/utils/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/include/utils/random.hpp -------------------------------------------------------------------------------- /include/utils/thread_pool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/include/utils/thread_pool.hpp -------------------------------------------------------------------------------- /include/utils/timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/include/utils/timer.hpp -------------------------------------------------------------------------------- /include/utils/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/include/utils/types.hpp -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- 1 | [pytest] 2 | asyncio_mode = auto 3 | -------------------------------------------------------------------------------- /python/.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/python/.pylintrc -------------------------------------------------------------------------------- /python/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/python/CMakeLists.txt -------------------------------------------------------------------------------- /python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/python/README.md -------------------------------------------------------------------------------- /python/adapters/annbenchmark/alayalite/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/python/adapters/annbenchmark/alayalite/Dockerfile -------------------------------------------------------------------------------- /python/adapters/annbenchmark/alayalite/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/python/adapters/annbenchmark/alayalite/config.yml -------------------------------------------------------------------------------- /python/adapters/annbenchmark/alayalite/module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/python/adapters/annbenchmark/alayalite/module.py -------------------------------------------------------------------------------- /python/environment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/python/environment.yaml -------------------------------------------------------------------------------- /python/include/client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/python/include/client.hpp -------------------------------------------------------------------------------- /python/include/dispatch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/python/include/dispatch.hpp -------------------------------------------------------------------------------- /python/include/index.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/python/include/index.hpp -------------------------------------------------------------------------------- /python/include/params.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/python/include/params.hpp -------------------------------------------------------------------------------- /python/include/reg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/python/include/reg.hpp -------------------------------------------------------------------------------- /python/src/alayalite/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/python/src/alayalite/__init__.py -------------------------------------------------------------------------------- /python/src/alayalite/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/python/src/alayalite/client.py -------------------------------------------------------------------------------- /python/src/alayalite/collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/python/src/alayalite/collection.py -------------------------------------------------------------------------------- /python/src/alayalite/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/python/src/alayalite/common.py -------------------------------------------------------------------------------- /python/src/alayalite/defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/python/src/alayalite/defaults.py -------------------------------------------------------------------------------- /python/src/alayalite/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/python/src/alayalite/index.py -------------------------------------------------------------------------------- /python/src/alayalite/rag/chunker/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/python/src/alayalite/rag/chunker/__init__.py -------------------------------------------------------------------------------- /python/src/alayalite/rag/chunker/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/python/src/alayalite/rag/chunker/base.py -------------------------------------------------------------------------------- /python/src/alayalite/rag/chunker/chunker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/python/src/alayalite/rag/chunker/chunker.py -------------------------------------------------------------------------------- /python/src/alayalite/rag/chunker/fix_size_chunker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/python/src/alayalite/rag/chunker/fix_size_chunker.py -------------------------------------------------------------------------------- /python/src/alayalite/rag/chunker/semantic_chunker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/python/src/alayalite/rag/chunker/semantic_chunker.py -------------------------------------------------------------------------------- /python/src/alayalite/rag/chunker/sentence_chunker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/python/src/alayalite/rag/chunker/sentence_chunker.py -------------------------------------------------------------------------------- /python/src/alayalite/rag/embedder/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/python/src/alayalite/rag/embedder/__init__.py -------------------------------------------------------------------------------- /python/src/alayalite/rag/embedder/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/python/src/alayalite/rag/embedder/base.py -------------------------------------------------------------------------------- /python/src/alayalite/rag/embedder/bge_embedder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/python/src/alayalite/rag/embedder/bge_embedder.py -------------------------------------------------------------------------------- /python/src/alayalite/rag/embedder/embedder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/python/src/alayalite/rag/embedder/embedder.py -------------------------------------------------------------------------------- /python/src/alayalite/rag/embedder/jina_embedder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/python/src/alayalite/rag/embedder/jina_embedder.py -------------------------------------------------------------------------------- /python/src/alayalite/rag/embedder/m3e_embedder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/python/src/alayalite/rag/embedder/m3e_embedder.py -------------------------------------------------------------------------------- /python/src/alayalite/rag/embedder/multilingual_embedder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/python/src/alayalite/rag/embedder/multilingual_embedder.py -------------------------------------------------------------------------------- /python/src/alayalite/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/python/src/alayalite/schema.py -------------------------------------------------------------------------------- /python/src/alayalite/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/python/src/alayalite/utils.py -------------------------------------------------------------------------------- /python/src/pybind.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/python/src/pybind.cpp -------------------------------------------------------------------------------- /python/tests/test_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/python/tests/test_client.py -------------------------------------------------------------------------------- /python/tests/test_client_with_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/python/tests/test_client_with_url.py -------------------------------------------------------------------------------- /python/tests/test_collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/python/tests/test_collection.py -------------------------------------------------------------------------------- /python/tests/test_index_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/python/tests/test_index_types.py -------------------------------------------------------------------------------- /python/tests/test_md5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/python/tests/test_md5.py -------------------------------------------------------------------------------- /python/tests/test_rabitq_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/python/tests/test_rabitq_search.py -------------------------------------------------------------------------------- /python/tests/test_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/python/tests/test_update.py -------------------------------------------------------------------------------- /python/tests/test_vec_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/python/tests/test_vec_loader.py -------------------------------------------------------------------------------- /scripts/ci/codecov/gnu_codecoverage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/scripts/ci/codecov/gnu_codecoverage.sh -------------------------------------------------------------------------------- /scripts/ci/cpplint/ci_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/scripts/ci/cpplint/ci_script.sh -------------------------------------------------------------------------------- /scripts/ci/cpplint/ignore_files.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/ci/cpplint/run_clang_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/scripts/ci/cpplint/run_clang_format.py -------------------------------------------------------------------------------- /scripts/ci/cpplint/run_clang_tidy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/scripts/ci/cpplint/run_clang_tidy.py -------------------------------------------------------------------------------- /scripts/ci/cpplint/run_clang_tidy_extra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/scripts/ci/cpplint/run_clang_tidy_extra.py -------------------------------------------------------------------------------- /scripts/conan_build/conan_hook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/scripts/conan_build/conan_hook.sh -------------------------------------------------------------------------------- /scripts/conan_build/conan_hook_win.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/scripts/conan_build/conan_hook_win.bat -------------------------------------------------------------------------------- /scripts/conan_build/conan_profile.aarch64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/scripts/conan_build/conan_profile.aarch64 -------------------------------------------------------------------------------- /scripts/conan_build/conan_profile.x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/scripts/conan_build/conan_profile.x86_64 -------------------------------------------------------------------------------- /scripts/conan_build/conan_profile_mac.aarch64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/scripts/conan_build/conan_profile_mac.aarch64 -------------------------------------------------------------------------------- /scripts/conan_build/conan_profile_win.x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/scripts/conan_build/conan_profile_win.x86_64 -------------------------------------------------------------------------------- /scripts/license_check/license_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/scripts/license_check/license_script.py -------------------------------------------------------------------------------- /scripts/test/gnu_codecoverage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/scripts/test/gnu_codecoverage.sh -------------------------------------------------------------------------------- /scripts/test/llvm_codecoverage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/scripts/test/llvm_codecoverage.sh -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/executor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/tests/executor/CMakeLists.txt -------------------------------------------------------------------------------- /tests/executor/coro_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/tests/executor/coro_test.cpp -------------------------------------------------------------------------------- /tests/executor/mutex_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/tests/executor/mutex_test.cpp -------------------------------------------------------------------------------- /tests/executor/scheduler_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/tests/executor/scheduler_test.cpp -------------------------------------------------------------------------------- /tests/executor/search_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/tests/executor/search_test.cpp -------------------------------------------------------------------------------- /tests/executor/task_queue_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/tests/executor/task_queue_test.cpp -------------------------------------------------------------------------------- /tests/executor/update_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/tests/executor/update_test.cpp -------------------------------------------------------------------------------- /tests/executor/worker_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/tests/executor/worker_test.cpp -------------------------------------------------------------------------------- /tests/index/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/tests/index/CMakeLists.txt -------------------------------------------------------------------------------- /tests/index/fusion_graph_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/tests/index/fusion_graph_test.cpp -------------------------------------------------------------------------------- /tests/index/graph_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/tests/index/graph_test.cpp -------------------------------------------------------------------------------- /tests/index/hnsw_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/tests/index/hnsw_test.cpp -------------------------------------------------------------------------------- /tests/index/nndescent_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/tests/index/nndescent_test.cpp -------------------------------------------------------------------------------- /tests/index/nsg_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/tests/index/nsg_test.cpp -------------------------------------------------------------------------------- /tests/rabitq/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/tests/rabitq/CMakeLists.txt -------------------------------------------------------------------------------- /tests/rabitq/siftsmall_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/tests/rabitq/siftsmall_test.cpp -------------------------------------------------------------------------------- /tests/space/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/tests/space/CMakeLists.txt -------------------------------------------------------------------------------- /tests/space/quant/sq4_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/tests/space/quant/sq4_test.cpp -------------------------------------------------------------------------------- /tests/space/quant/sq8_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/tests/space/quant/sq8_test.cpp -------------------------------------------------------------------------------- /tests/space/rabitq_space_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/tests/space/rabitq_space_test.cpp -------------------------------------------------------------------------------- /tests/space/raw_space_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/tests/space/raw_space_test.cpp -------------------------------------------------------------------------------- /tests/space/sq4_space_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/tests/space/sq4_space_test.cpp -------------------------------------------------------------------------------- /tests/space/sq8_space_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/tests/space/sq8_space_test.cpp -------------------------------------------------------------------------------- /tests/storage/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/tests/storage/CMakeLists.txt -------------------------------------------------------------------------------- /tests/storage/sequential_storage_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/tests/storage/sequential_storage_test.cpp -------------------------------------------------------------------------------- /tests/storage/static_storage_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/tests/storage/static_storage_test.cpp -------------------------------------------------------------------------------- /tests/utils/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/tests/utils/CMakeLists.txt -------------------------------------------------------------------------------- /tests/utils/data_utils_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/tests/utils/data_utils_test.cpp -------------------------------------------------------------------------------- /tests/utils/dataset_utils_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/tests/utils/dataset_utils_test.cpp -------------------------------------------------------------------------------- /tests/utils/evaluate_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/tests/utils/evaluate_test.cpp -------------------------------------------------------------------------------- /tests/utils/log_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/tests/utils/log_test.cpp -------------------------------------------------------------------------------- /tests/utils/metric_type_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/tests/utils/metric_type_test.cpp -------------------------------------------------------------------------------- /tests/utils/query_utils_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/tests/utils/query_utils_test.cpp -------------------------------------------------------------------------------- /tests/utils/rabitq_utils/fht_avx_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/tests/utils/rabitq_utils/fht_avx_test.cpp -------------------------------------------------------------------------------- /tests/utils/rabitq_utils/lut_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/tests/utils/rabitq_utils/lut_test.cpp -------------------------------------------------------------------------------- /tests/utils/rabitq_utils/rotator_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/tests/utils/rabitq_utils/rotator_test.cpp -------------------------------------------------------------------------------- /tests/utils/rabitq_utils/roundup_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/tests/utils/rabitq_utils/roundup_test.cpp -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlayaDB-AI/AlayaLite/HEAD/uv.lock --------------------------------------------------------------------------------