repo
stringlengths
6
65
file_url
stringlengths
81
311
file_path
stringlengths
6
227
content
stringlengths
0
32.8k
language
stringclasses
1 value
license
stringclasses
7 values
commit_sha
stringlengths
40
40
retrieved_at
stringdate
2026-01-04 15:31:58
2026-01-04 20:25:31
truncated
bool
2 classes
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/src/spaces/metric_uint/simple_dot.rs
lib/segment/src/spaces/metric_uint/simple_dot.rs
use common::types::ScoreType; use crate::data_types::vectors::{DenseVector, VectorElementTypeByte}; use crate::spaces::metric::Metric; #[cfg(target_arch = "x86_64")] use crate::spaces::metric_uint::avx2::dot::avx_dot_similarity_bytes; #[cfg(all(target_arch = "aarch64", target_feature = "neon"))] use crate::spaces::met...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/src/spaces/metric_uint/simple_cosine.rs
lib/segment/src/spaces/metric_uint/simple_cosine.rs
use common::types::ScoreType; use crate::data_types::vectors::{DenseVector, VectorElementTypeByte}; use crate::spaces::metric::Metric; #[cfg(target_arch = "x86_64")] use crate::spaces::metric_uint::avx2::cosine::avx_cosine_similarity_bytes; #[cfg(all(target_arch = "aarch64", target_feature = "neon"))] use crate::space...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/src/spaces/metric_uint/simple_euclid.rs
lib/segment/src/spaces/metric_uint/simple_euclid.rs
use common::types::ScoreType; use crate::data_types::vectors::{DenseVector, VectorElementTypeByte}; use crate::spaces::metric::Metric; #[cfg(target_arch = "x86_64")] use crate::spaces::metric_uint::avx2::euclid::avx_euclid_similarity_bytes; #[cfg(all(target_arch = "aarch64", target_feature = "neon"))] use crate::space...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/src/spaces/metric_uint/mod.rs
lib/segment/src/spaces/metric_uint/mod.rs
pub mod simple_cosine; pub mod simple_dot; pub mod simple_euclid; pub mod simple_manhattan; #[cfg(target_arch = "x86_64")] pub mod avx2; #[cfg(target_arch = "aarch64")] pub mod neon; #[cfg(any(target_arch = "x86", target_arch = "x86_64"))] pub mod sse2;
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/src/spaces/metric_uint/simple_manhattan.rs
lib/segment/src/spaces/metric_uint/simple_manhattan.rs
use common::types::ScoreType; use crate::data_types::vectors::{DenseVector, VectorElementTypeByte}; use crate::spaces::metric::Metric; #[cfg(target_arch = "x86_64")] use crate::spaces::metric_uint::avx2::manhattan::avx_manhattan_similarity_bytes; #[cfg(all(target_arch = "aarch64", target_feature = "neon"))] use crate:...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/src/spaces/metric_uint/neon/cosine.rs
lib/segment/src/spaces/metric_uint/neon/cosine.rs
use std::arch::aarch64::*; #[target_feature(enable = "neon")] #[allow(clippy::missing_safety_doc)] pub unsafe fn neon_cosine_similarity_bytes(v1: &[u8], v2: &[u8]) -> f32 { debug_assert!(v1.len() == v2.len()); let mut ptr1: *const u8 = v1.as_ptr(); let mut ptr2: *const u8 = v2.as_ptr(); unsafe { ...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/src/spaces/metric_uint/neon/euclid.rs
lib/segment/src/spaces/metric_uint/neon/euclid.rs
use std::arch::aarch64::*; #[target_feature(enable = "neon")] #[allow(clippy::missing_safety_doc)] pub unsafe fn neon_euclid_similarity_bytes(v1: &[u8], v2: &[u8]) -> f32 { debug_assert!(v1.len() == v2.len()); let mut ptr1: *const u8 = v1.as_ptr(); let mut ptr2: *const u8 = v2.as_ptr(); unsafe { ...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/src/spaces/metric_uint/neon/mod.rs
lib/segment/src/spaces/metric_uint/neon/mod.rs
pub mod cosine; pub mod dot; pub mod euclid; pub mod manhattan;
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/src/spaces/metric_uint/neon/dot.rs
lib/segment/src/spaces/metric_uint/neon/dot.rs
use std::arch::aarch64::*; #[target_feature(enable = "neon")] #[allow(clippy::missing_safety_doc)] pub unsafe fn neon_dot_similarity_bytes(v1: &[u8], v2: &[u8]) -> f32 { debug_assert!(v1.len() == v2.len()); let mut ptr1: *const u8 = v1.as_ptr(); let mut ptr2: *const u8 = v2.as_ptr(); unsafe { ...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/src/spaces/metric_uint/neon/manhattan.rs
lib/segment/src/spaces/metric_uint/neon/manhattan.rs
use std::arch::aarch64::*; #[target_feature(enable = "neon")] #[allow(clippy::missing_safety_doc)] pub unsafe fn neon_manhattan_similarity_bytes(v1: &[u8], v2: &[u8]) -> f32 { debug_assert!(v1.len() == v2.len()); let mut ptr1: *const u8 = v1.as_ptr(); let mut ptr2: *const u8 = v2.as_ptr(); unsafe { ...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/src/spaces/metric_uint/sse2/cosine.rs
lib/segment/src/spaces/metric_uint/sse2/cosine.rs
use std::arch::x86_64::*; use crate::spaces::simple_sse::hsum128_ps_sse; #[target_feature(enable = "sse")] #[target_feature(enable = "sse2")] #[allow(clippy::missing_safety_doc)] pub unsafe fn sse_cosine_similarity_bytes(v1: &[u8], v2: &[u8]) -> f32 { debug_assert!(v1.len() == v2.len()); let mut ptr1: *const...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/src/spaces/metric_uint/sse2/euclid.rs
lib/segment/src/spaces/metric_uint/sse2/euclid.rs
use std::arch::x86_64::*; use crate::spaces::simple_sse::hsum128_ps_sse; #[target_feature(enable = "sse")] #[target_feature(enable = "sse2")] #[allow(clippy::missing_safety_doc)] pub unsafe fn sse_euclid_similarity_bytes(v1: &[u8], v2: &[u8]) -> f32 { debug_assert!(v1.len() == v2.len()); let mut ptr1: *const...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/src/spaces/metric_uint/sse2/mod.rs
lib/segment/src/spaces/metric_uint/sse2/mod.rs
pub mod cosine; pub mod dot; pub mod euclid; pub mod manhattan;
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/src/spaces/metric_uint/sse2/dot.rs
lib/segment/src/spaces/metric_uint/sse2/dot.rs
use std::arch::x86_64::*; use crate::spaces::simple_sse::hsum128_ps_sse; #[target_feature(enable = "sse")] #[target_feature(enable = "sse2")] #[allow(clippy::missing_safety_doc)] pub unsafe fn sse_dot_similarity_bytes(v1: &[u8], v2: &[u8]) -> f32 { debug_assert!(v1.len() == v2.len()); let mut ptr1: *const u8...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/src/spaces/metric_uint/sse2/manhattan.rs
lib/segment/src/spaces/metric_uint/sse2/manhattan.rs
use std::arch::x86_64::*; use crate::spaces::simple_sse::hsum128_ps_sse; #[target_feature(enable = "sse")] #[target_feature(enable = "sse2")] #[allow(clippy::missing_safety_doc)] pub unsafe fn sse_manhattan_similarity_bytes(v1: &[u8], v2: &[u8]) -> f32 { debug_assert!(v1.len() == v2.len()); let mut ptr1: *co...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/src/spaces/metric_uint/avx2/cosine.rs
lib/segment/src/spaces/metric_uint/avx2/cosine.rs
use std::arch::x86_64::*; use crate::spaces::simple_avx::hsum256_ps_avx; #[target_feature(enable = "avx")] #[target_feature(enable = "avx2")] #[target_feature(enable = "fma")] #[allow(clippy::missing_safety_doc)] pub unsafe fn avx_cosine_similarity_bytes(v1: &[u8], v2: &[u8]) -> f32 { debug_assert!(v1.len() == v2...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/src/spaces/metric_uint/avx2/euclid.rs
lib/segment/src/spaces/metric_uint/avx2/euclid.rs
use std::arch::x86_64::*; use crate::spaces::simple_avx::hsum256_ps_avx; #[target_feature(enable = "avx")] #[target_feature(enable = "avx2")] #[target_feature(enable = "fma")] #[allow(clippy::missing_safety_doc)] pub unsafe fn avx_euclid_similarity_bytes(v1: &[u8], v2: &[u8]) -> f32 { debug_assert!(v1.len() == v2...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/src/spaces/metric_uint/avx2/mod.rs
lib/segment/src/spaces/metric_uint/avx2/mod.rs
pub mod cosine; pub mod dot; pub mod euclid; pub mod manhattan;
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/src/spaces/metric_uint/avx2/dot.rs
lib/segment/src/spaces/metric_uint/avx2/dot.rs
use std::arch::x86_64::*; use crate::spaces::simple_avx::hsum256_ps_avx; #[target_feature(enable = "avx")] #[target_feature(enable = "avx2")] #[target_feature(enable = "fma")] #[allow(clippy::missing_safety_doc)] pub unsafe fn avx_dot_similarity_bytes(v1: &[u8], v2: &[u8]) -> f32 { debug_assert!(v1.len() == v2.le...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/src/spaces/metric_uint/avx2/manhattan.rs
lib/segment/src/spaces/metric_uint/avx2/manhattan.rs
use std::arch::x86_64::*; use crate::spaces::simple_avx::hsum256_ps_avx; #[target_feature(enable = "avx")] #[target_feature(enable = "avx2")] #[target_feature(enable = "fma")] #[allow(clippy::missing_safety_doc)] pub unsafe fn avx_manhattan_similarity_bytes(v1: &[u8], v2: &[u8]) -> f32 { debug_assert!(v1.len() ==...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/src/spaces/metric_f16/simple_dot.rs
lib/segment/src/spaces/metric_f16/simple_dot.rs
use common::types::ScoreType; use half::f16; use crate::data_types::vectors::{DenseVector, VectorElementTypeHalf}; use crate::spaces::metric::Metric; #[cfg(target_arch = "x86_64")] use crate::spaces::metric_f16::avx::dot::avx_dot_similarity_half; #[cfg(all(target_arch = "aarch64", target_feature = "neon", not(windows)...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/src/spaces/metric_f16/simple_cosine.rs
lib/segment/src/spaces/metric_f16/simple_cosine.rs
use common::types::ScoreType; use super::simple_dot::dot_similarity_half; use crate::data_types::vectors::{DenseVector, VectorElementTypeHalf}; use crate::spaces::metric::Metric; #[cfg(target_arch = "x86_64")] use crate::spaces::metric_f16::avx::dot::avx_dot_similarity_half; #[cfg(all(target_arch = "aarch64", target_f...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/src/spaces/metric_f16/simple_euclid.rs
lib/segment/src/spaces/metric_f16/simple_euclid.rs
use common::types::ScoreType; use half::f16; use num_traits::Float; use crate::data_types::vectors::{DenseVector, VectorElementTypeHalf}; use crate::spaces::metric::Metric; #[cfg(target_arch = "x86_64")] use crate::spaces::metric_f16::avx::euclid::avx_euclid_similarity_half; #[cfg(all(target_arch = "aarch64", target_f...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/src/spaces/metric_f16/mod.rs
lib/segment/src/spaces/metric_f16/mod.rs
pub mod simple_cosine; pub mod simple_dot; pub mod simple_euclid; pub mod simple_manhattan; #[cfg(target_arch = "x86_64")] pub mod avx; #[cfg(all(target_arch = "aarch64", not(windows)))] pub mod neon; #[cfg(any(target_arch = "x86", target_arch = "x86_64"))] pub mod sse;
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/src/spaces/metric_f16/simple_manhattan.rs
lib/segment/src/spaces/metric_f16/simple_manhattan.rs
use common::types::ScoreType; use half::f16; use num_traits::Float; use crate::data_types::vectors::{DenseVector, VectorElementTypeHalf}; use crate::spaces::metric::Metric; #[cfg(target_arch = "x86_64")] use crate::spaces::metric_f16::avx::manhattan::avx_manhattan_similarity_half; #[cfg(all(target_arch = "aarch64", ta...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/src/spaces/metric_f16/avx/euclid.rs
lib/segment/src/spaces/metric_f16/avx/euclid.rs
use std::arch::x86_64::*; use common::types::ScoreType; use half::f16; use crate::data_types::vectors::VectorElementTypeHalf; use crate::spaces::simple_avx::hsum256_ps_avx; #[target_feature(enable = "avx")] #[target_feature(enable = "fma")] #[target_feature(enable = "f16c")] #[allow(clippy::missing_safety_doc)] pub ...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/src/spaces/metric_f16/avx/mod.rs
lib/segment/src/spaces/metric_f16/avx/mod.rs
pub mod dot; pub mod euclid; pub mod manhattan;
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/src/spaces/metric_f16/avx/dot.rs
lib/segment/src/spaces/metric_f16/avx/dot.rs
use std::arch::x86_64::*; use common::types::ScoreType; use half::f16; use crate::data_types::vectors::VectorElementTypeHalf; use crate::spaces::simple_avx::hsum256_ps_avx; #[target_feature(enable = "avx")] #[target_feature(enable = "fma")] #[target_feature(enable = "f16c")] #[allow(clippy::missing_safety_doc)] pub ...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/src/spaces/metric_f16/avx/manhattan.rs
lib/segment/src/spaces/metric_f16/avx/manhattan.rs
use std::arch::x86_64::*; use common::types::ScoreType; use half::f16; use crate::data_types::vectors::VectorElementTypeHalf; use crate::spaces::simple_avx::hsum256_ps_avx; #[target_feature(enable = "avx")] #[target_feature(enable = "fma")] #[target_feature(enable = "f16c")] #[allow(clippy::missing_safety_doc)] pub ...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/src/spaces/metric_f16/sse/euclid.rs
lib/segment/src/spaces/metric_f16/sse/euclid.rs
use common::types::ScoreType; use half::f16; use itertools::Itertools; use crate::data_types::vectors::VectorElementTypeHalf; use crate::spaces::simple_sse; #[target_feature(enable = "sse")] #[allow(clippy::missing_safety_doc)] pub unsafe fn sse_euclid_similarity_half( v1: &[VectorElementTypeHalf], v2: &[Vect...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/src/spaces/metric_f16/sse/mod.rs
lib/segment/src/spaces/metric_f16/sse/mod.rs
pub mod dot; pub mod euclid; pub mod manhattan;
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/src/spaces/metric_f16/sse/dot.rs
lib/segment/src/spaces/metric_f16/sse/dot.rs
use common::types::ScoreType; use half::f16; use itertools::Itertools; use crate::data_types::vectors::VectorElementTypeHalf; use crate::spaces::simple_sse; #[target_feature(enable = "sse")] #[allow(clippy::missing_safety_doc)] pub unsafe fn sse_dot_similarity_half( v1: &[VectorElementTypeHalf], v2: &[VectorE...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/src/spaces/metric_f16/sse/manhattan.rs
lib/segment/src/spaces/metric_f16/sse/manhattan.rs
use common::types::ScoreType; use half::f16; use itertools::Itertools; use crate::data_types::vectors::VectorElementTypeHalf; use crate::spaces::simple_sse; #[target_feature(enable = "sse")] #[allow(clippy::missing_safety_doc)] pub unsafe fn sse_manhattan_similarity_half( v1: &[VectorElementTypeHalf], v2: &[V...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/src/spaces/metric_f16/neon/euclid.rs
lib/segment/src/spaces/metric_f16/neon/euclid.rs
#[cfg(target_feature = "neon")] use common::types::ScoreType; use half::f16; #[cfg(target_feature = "neon")] use crate::data_types::vectors::VectorElementTypeHalf; #[cfg(target_feature = "neon")] unsafe extern "C" { fn euclideanDist_half_4x4(v1: *const f16, v2: *const f16, n: i32) -> f32; } #[allow(clippy::missi...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/src/spaces/metric_f16/neon/mod.rs
lib/segment/src/spaces/metric_f16/neon/mod.rs
pub mod dot; pub mod euclid; pub mod manhattan;
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/src/spaces/metric_f16/neon/dot.rs
lib/segment/src/spaces/metric_f16/neon/dot.rs
#[cfg(target_feature = "neon")] use common::types::ScoreType; use half::f16; #[cfg(target_feature = "neon")] use crate::data_types::vectors::VectorElementTypeHalf; #[cfg(target_feature = "neon")] unsafe extern "C" { fn dotProduct_half_4x4(v1: *const f16, v2: *const f16, n: i32) -> f32; } #[allow(clippy::missing_...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/src/spaces/metric_f16/neon/manhattan.rs
lib/segment/src/spaces/metric_f16/neon/manhattan.rs
#[cfg(target_feature = "neon")] use common::types::ScoreType; use half::f16; #[cfg(target_feature = "neon")] use crate::data_types::vectors::VectorElementTypeHalf; #[cfg(target_feature = "neon")] unsafe extern "C" { fn manhattanDist_half_4x4(v1: *const f16, v2: *const f16, n: i32) -> f32; } #[allow(clippy::missi...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/src/segment_constructor/rocksdb_builder.rs
lib/segment/src/segment_constructor/rocksdb_builder.rs
use std::path::{Path, PathBuf}; use std::sync::Arc; use parking_lot::RwLock; use super::segment_constructor_base::get_vector_name_with_prefix; use crate::common::operation_error::{OperationError, OperationResult}; use crate::common::rocksdb_wrapper; use crate::types::SegmentConfig; /// Struct to optionally create an...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/src/segment_constructor/batched_reader.rs
lib/segment/src/segment_constructor/batched_reader.rs
use std::cmp::min; use std::iter::Iterator; use ahash::AHashMap; use atomic_refcell::AtomicRef; use common::small_uint::U24; use common::types::PointOffsetType; use crate::data_types::named_vectors::CowVector; use crate::types::CompactExtendedPointId; use crate::vector_storage::{Sequential, VectorStorage, VectorStora...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/src/segment_constructor/segment_builder.rs
lib/segment/src/segment_constructor/segment_builder.rs
use std::cmp; use std::collections::HashMap; use std::hash::{Hash, Hasher}; use std::ops::Deref; use std::path::{Path, PathBuf}; use std::sync::Arc; use std::sync::atomic::AtomicBool; use ahash::AHasher; use atomic_refcell::AtomicRefCell; use bitvec::macros::internal::funty::Integral; use common::budget::ResourcePermi...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
true
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/src/segment_constructor/segment_constructor_base.rs
lib/segment/src/segment_constructor/segment_constructor_base.rs
use std::collections::HashMap; use std::io::Read; use std::path::{Path, PathBuf}; use std::sync::Arc; use std::sync::atomic::AtomicBool; use atomic_refcell::AtomicRefCell; use common::budget::ResourcePermit; use common::flags::FeatureFlags; use common::is_alive_lock::IsAliveLock; use common::progress_tracker::Progress...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
true
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/src/segment_constructor/mod.rs
lib/segment/src/segment_constructor/mod.rs
mod batched_reader; #[cfg(feature = "rocksdb")] mod rocksdb_builder; pub mod segment_builder; mod segment_constructor_base; #[cfg(any(test, feature = "testing"))] pub mod simple_segment_constructor; pub use segment_constructor_base::*;
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/src/segment_constructor/simple_segment_constructor.rs
lib/segment/src/segment_constructor/simple_segment_constructor.rs
use std::collections::HashMap; use std::path::Path; use crate::common::operation_error::OperationResult; use crate::data_types::vectors::DEFAULT_VECTOR_NAME; use crate::segment::Segment; use crate::segment_constructor::build_segment; use crate::types::{ Distance, Indexes, PayloadStorageType, SegmentConfig, VectorD...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/src/data_types/collection_defaults.rs
lib/segment/src/data_types/collection_defaults.rs
use serde::Deserialize; use validator::Validate; use crate::types::{QuantizationConfig, StrictModeConfig, VectorsConfigDefaults}; /// Collection default values #[derive(Debug, Deserialize, Validate, Clone, PartialEq, Eq)] pub struct CollectionConfigDefaults { #[serde(default)] pub vectors: Option<VectorsConfi...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/src/data_types/tiny_map.rs
lib/segment/src/data_types/tiny_map.rs
use std::collections::HashMap; use std::{borrow, iter, mem, slice}; use tinyvec::TinyVec; pub const CAPACITY: usize = 3; #[derive(Clone, Debug, Default)] pub struct TinyMap<K, V> where K: Default, V: Default, { list: TinyVec<[(K, V); CAPACITY]>, } impl<K, V> TinyMap<K, V> where K: Default, V: De...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/src/data_types/index.rs
lib/segment/src/data_types/index.rs
use std::collections::BTreeSet; use std::fmt; use std::str::FromStr; use schemars::JsonSchema; use serde::{Deserialize, Serialize}; use validator::{Validate, ValidationError, ValidationErrors}; // Keyword #[derive(Default, Debug, Deserialize, Serialize, JsonSchema, Clone, Copy, PartialEq, Hash, Eq)] #[serde(rename_a...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/src/data_types/vectors.rs
lib/segment/src/data_types/vectors.rs
use std::collections::HashMap; use std::hash::Hash; use std::mem; use std::slice::ChunksExactMut; use half::f16; use itertools::Itertools; use ordered_float::OrderedFloat; use schemars::JsonSchema; use serde::{Deserialize, Serialize}; use sparse::common::sparse_vector::SparseVector; use sparse::common::types::DimId; u...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/src/data_types/manifest.rs
lib/segment/src/data_types/manifest.rs
use std::collections::HashMap; use std::path::{Path, PathBuf}; use crate::common::operation_error::{OperationError, OperationResult}; use crate::types::SeqNumberType; #[derive(Clone, Debug, Default, Eq, PartialEq, serde::Deserialize, serde::Serialize)] #[serde(transparent)] pub struct SnapshotManifest { segments:...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/src/data_types/modifier.rs
lib/segment/src/data_types/modifier.rs
use schemars::JsonSchema; use serde::{Deserialize, Serialize}; use crate::common::anonymize::Anonymize; /// If used, include weight modification, which will be applied to sparse vectors at query time: /// None - no modification (default) /// Idf - inverse document frequency, based on statistics of the collection #[de...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/src/data_types/build_index_result.rs
lib/segment/src/data_types/build_index_result.rs
use crate::index::field_index::FieldIndex; use crate::types::PayloadFieldSchema; pub enum BuildFieldIndexResult { /// Index was not built, as operation version is lower than segment version SkippedByVersion, /// Index was already built AlreadyExists, /// Incompatible schema IncompatibleSchema, ...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/src/data_types/primitive.rs
lib/segment/src/data_types/primitive.rs
use std::borrow::Cow; use half::f16; use itertools::Itertools; use serde::{Deserialize, Serialize}; use zerocopy::{FromBytes, Immutable, IntoBytes, KnownLayout}; use super::named_vectors::CowMultiVector; use super::vectors::TypedMultiDenseVector; use crate::data_types::vectors::{VectorElementType, VectorElementTypeBy...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/src/data_types/mod.rs
lib/segment/src/data_types/mod.rs
pub mod build_index_result; pub mod collection_defaults; pub mod facets; pub mod groups; pub mod index; pub mod manifest; pub mod modifier; pub mod named_vectors; pub mod order_by; pub mod primitive; pub mod query_context; pub mod tiny_map; pub mod vectors;
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/src/data_types/query_context.rs
lib/segment/src/data_types/query_context.rs
use std::collections::HashMap; use std::sync::Arc; use std::sync::atomic::AtomicBool; use bitvec::prelude::BitSlice; use common::counter::hardware_accumulator::HwMeasurementAcc; use common::counter::hardware_counter::HardwareCounterCell; use common::cow::SimpleCow; use sparse::common::types::{DimId, DimWeight}; use c...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/src/data_types/named_vectors.rs
lib/segment/src/data_types/named_vectors.rs
use std::borrow::Cow; use std::collections::HashMap; use sparse::common::sparse_vector::SparseVector; use super::primitive::PrimitiveVectorElement; use super::tiny_map; use super::vectors::{ DenseVector, MultiDenseVectorInternal, TypedMultiDenseVector, TypedMultiDenseVectorRef, VectorElementType, VectorElemen...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/src/data_types/order_by.rs
lib/segment/src/data_types/order_by.rs
use std::hash::Hash; use num_cmp::NumCmp; use ordered_float::OrderedFloat; use schemars::JsonSchema; use serde::{Deserialize, Serialize}; use validator::Validate; use crate::json_path::JsonPath; use crate::types::{ DateTimePayloadType, FloatPayloadType, IntPayloadType, Order, Range, RangeInterface, }; #[derive(D...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/src/data_types/groups.rs
lib/segment/src/data_types/groups.rs
use schemars::JsonSchema; use serde::{Deserialize, Serialize}; use serde_json::json; /// Value of the group_by key, shared across all the hits in the group #[derive(Debug, Serialize, Deserialize, JsonSchema, Eq, PartialEq, Clone, Hash)] #[serde(untagged)] pub enum GroupId { String(String), NumberU64(u64), ...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/src/data_types/facets.rs
lib/segment/src/data_types/facets.rs
use std::cmp::Reverse; use std::hash::Hash; use schemars::JsonSchema; use serde::{Deserialize, Serialize}; use uuid::Uuid; use validator::Validate; use crate::json_path::JsonPath; use crate::types::{Filter, IntPayloadType, UuidIntType, ValueVariants}; #[derive(Clone, Debug, JsonSchema, Serialize, Deserialize, Valida...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/tests/integration/segment_on_disk_snapshot.rs
lib/segment/tests/integration/segment_on_disk_snapshot.rs
use std::collections::HashMap; use std::sync::atomic::AtomicBool; use common::budget::ResourcePermit; use common::progress_tracker::ProgressTracker; use common::tar_ext; use fs_err as fs; use fs_err::File; use rstest::rstest; use segment::data_types::index::{IntegerIndexParams, KeywordIndexParams}; use segment::data_t...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/tests/integration/byte_storage_hnsw_test.rs
lib/segment/tests/integration/byte_storage_hnsw_test.rs
use std::collections::HashMap; use std::sync::Arc; use std::sync::atomic::AtomicBool; use common::budget::ResourcePermit; use common::flags::FeatureFlags; use common::progress_tracker::ProgressTracker; use common::types::{ScoredPointOffset, TelemetryDetail}; use ordered_float::OrderedFloat; use rand::prelude::StdRng; ...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/tests/integration/segment_tests.rs
lib/segment/tests/integration/segment_tests.rs
use std::iter::FromIterator; use std::sync::atomic::AtomicBool; use ahash::AHashSet; use common::counter::hardware_counter::HardwareCounterCell; use fs_err as fs; use itertools::Itertools; use segment::common::operation_error::OperationError; use segment::data_types::named_vectors::NamedVectors; use segment::data_type...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/tests/integration/hnsw_incremental_build.rs
lib/segment/tests/integration/hnsw_incremental_build.rs
use std::path::Path; use std::sync::Arc; use std::sync::atomic::AtomicBool; use atomic_refcell::AtomicRefCell; use common::budget::ResourcePermit; use common::counter::hardware_counter::HardwareCounterCell; use common::flags::FeatureFlags; use common::progress_tracker::ProgressTracker; use itertools::Itertools as _; u...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/tests/integration/filtrable_hnsw_test.rs
lib/segment/tests/integration/filtrable_hnsw_test.rs
use std::collections::HashMap; use std::sync::Arc; use std::sync::atomic::AtomicBool; use common::budget::ResourcePermit; use common::counter::hardware_counter::HardwareCounterCell; use common::flags::FeatureFlags; use common::progress_tracker::ProgressTracker; use common::types::{PointOffsetType, TelemetryDetail}; us...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/tests/integration/filtering_context_check.rs
lib/segment/tests/integration/filtering_context_check.rs
use common::counter::hardware_counter::HardwareCounterCell; use common::types::PointOffsetType; use itertools::Itertools; use rand::SeedableRng; use rand::prelude::StdRng; use segment::fixtures::payload_context_fixture::{ create_plain_payload_index, create_struct_payload_index, }; use segment::fixtures::payload_fix...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/tests/integration/exact_search_test.rs
lib/segment/tests/integration/exact_search_test.rs
use std::collections::HashMap; use std::sync::Arc; use std::sync::atomic::AtomicBool; use common::budget::ResourcePermit; use common::counter::hardware_counter::HardwareCounterCell; use common::flags::FeatureFlags; use common::progress_tracker::ProgressTracker; use common::types::PointOffsetType; use itertools::Iterto...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/tests/integration/sparse_vector_index_search_tests.rs
lib/segment/tests/integration/sparse_vector_index_search_tests.rs
use std::cmp::max; use std::collections::HashMap; use std::sync::atomic::AtomicBool; use common::counter::hardware_counter::HardwareCounterCell; use common::types::{PointOffsetType, TelemetryDetail}; use fs_err as fs; use io::storage_version::VERSION_FILE; use itertools::Itertools; use rand::SeedableRng; use rand::rng...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/tests/integration/hnsw_discover_test.rs
lib/segment/tests/integration/hnsw_discover_test.rs
use std::sync::Arc; use std::sync::atomic::AtomicBool; use common::budget::ResourcePermit; use common::counter::hardware_counter::HardwareCounterCell; use common::flags::FeatureFlags; use common::progress_tracker::ProgressTracker; use itertools::Itertools; use rand::prelude::StdRng; use rand::{Rng, SeedableRng}; use s...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/tests/integration/disbalanced_vectors_test.rs
lib/segment/tests/integration/disbalanced_vectors_test.rs
const NUM_VECTORS_1: u64 = 300; const NUM_VECTORS_2: u64 = 500; use std::sync::atomic::AtomicBool; use common::budget::ResourcePermit; use common::counter::hardware_counter::HardwareCounterCell; use common::progress_tracker::ProgressTracker; use segment::data_types::named_vectors::NamedVectors; use segment::entry::en...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/tests/integration/multivector_hnsw_test.rs
lib/segment/tests/integration/multivector_hnsw_test.rs
use std::sync::Arc; use std::sync::atomic::AtomicBool; use atomic_refcell::AtomicRefCell; use common::budget::ResourcePermit; use common::counter::hardware_counter::HardwareCounterCell; use common::flags::FeatureFlags; use common::progress_tracker::ProgressTracker; use rand::SeedableRng; use rand::prelude::StdRng; use...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/tests/integration/sparse_discover_test.rs
lib/segment/tests/integration/sparse_discover_test.rs
use std::collections::HashMap; use std::sync::atomic::AtomicBool; use ahash::AHashSet; use common::counter::hardware_counter::HardwareCounterCell; use common::types::TelemetryDetail; use itertools::Itertools; use rand::prelude::StdRng; use rand::{Rng, SeedableRng}; use segment::data_types::named_vectors::NamedVectors;...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/tests/integration/nested_filtering_test.rs
lib/segment/tests/integration/nested_filtering_test.rs
use std::collections::HashMap; use std::sync::Arc; use std::sync::atomic::AtomicBool; use atomic_refcell::AtomicRefCell; use common::counter::hardware_counter::HardwareCounterCell; use common::types::PointOffsetType; use segment::fixtures::payload_context_fixture::FixtureIdTracker; use segment::index::PayloadIndex; us...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/tests/integration/multivector_quantization_test.rs
lib/segment/tests/integration/multivector_quantization_test.rs
use std::collections::{BTreeSet, HashMap}; use std::sync::Arc; use std::sync::atomic::AtomicBool; use atomic_refcell::AtomicRefCell; use common::budget::ResourcePermit; use common::counter::hardware_counter::HardwareCounterCell; use common::flags::FeatureFlags; use common::progress_tracker::ProgressTracker; use common...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/tests/integration/scroll_filtering_test.rs
lib/segment/tests/integration/scroll_filtering_test.rs
use std::sync::atomic::AtomicBool; use common::counter::hardware_counter::HardwareCounterCell; use rand::prelude::StdRng; use rand::{Rng, SeedableRng}; use segment::fixtures::payload_fixtures::random_filter; use segment::fixtures::segment_fixtures::random_segment; use tempfile::Builder; const NUM_POINTS: usize = 2000...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/tests/integration/payload_index_test.rs
lib/segment/tests/integration/payload_index_test.rs
use std::collections::HashMap; use std::path::Path; use std::sync::Arc; use std::sync::atomic::AtomicBool; use anyhow::{Context, Result}; use atomic_refcell::AtomicRefCell; use common::budget::ResourcePermit; use common::counter::hardware_counter::HardwareCounterCell; use common::progress_tracker::ProgressTracker; use...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
true
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/tests/integration/segment_builder_test.rs
lib/segment/tests/integration/segment_builder_test.rs
use std::collections::HashMap; use std::str::FromStr; use std::sync::Arc; use std::sync::atomic::{AtomicBool, Ordering}; use std::time::{Duration, Instant}; use common::budget::ResourcePermit; use common::counter::hardware_counter::HardwareCounterCell; use common::progress_tracker::ProgressTracker; use fs_err as fs; u...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/tests/integration/fail_recovery_test.rs
lib/segment/tests/integration/fail_recovery_test.rs
use common::counter::hardware_counter::HardwareCounterCell; use segment::common::operation_error::{OperationError, SegmentFailedState}; use segment::data_types::vectors::only_default_vector; use segment::entry::entry_point::SegmentEntry; use segment::payload_json; use tempfile::Builder; use crate::fixtures::segment::e...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/tests/integration/main.rs
lib/segment/tests/integration/main.rs
mod batch_search_test; mod byte_storage_hnsw_test; mod byte_storage_quantization_test; mod disbalanced_vectors_test; mod exact_search_test; mod fail_recovery_test; mod filtering_context_check; mod filtrable_hnsw_test; mod fixtures; #[cfg(feature = "gpu")] mod gpu_hnsw_test; mod hnsw_discover_test; mod hnsw_incremental_...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/tests/integration/gpu_hnsw_test.rs
lib/segment/tests/integration/gpu_hnsw_test.rs
use std::sync::Arc; use std::sync::atomic::AtomicBool; use common::budget::ResourcePermit; use common::counter::hardware_counter::HardwareCounterCell; use common::flags::FeatureFlags; use common::progress_tracker::ProgressTracker; use common::types::TelemetryDetail; use ordered_float::OrderedFloat; use parking_lot::Mu...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/tests/integration/hnsw_quantized_search_test.rs
lib/segment/tests/integration/hnsw_quantized_search_test.rs
use std::collections::BTreeSet; use std::ops::Deref; use std::sync::Arc; use std::sync::atomic::AtomicBool; use atomic_refcell::AtomicRefCell; use common::budget::ResourcePermit; use common::counter::hardware_counter::HardwareCounterCell; use common::flags::FeatureFlags; use common::progress_tracker::ProgressTracker; ...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/tests/integration/byte_storage_quantization_test.rs
lib/segment/tests/integration/byte_storage_quantization_test.rs
use std::collections::{BTreeSet, HashMap}; use std::sync::Arc; use std::sync::atomic::AtomicBool; use atomic_refcell::AtomicRefCell; use common::budget::ResourcePermit; use common::flags::FeatureFlags; use common::progress_tracker::ProgressTracker; use common::types::ScoredPointOffset; use ordered_float::OrderedFloat;...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/tests/integration/batch_search_test.rs
lib/segment/tests/integration/batch_search_test.rs
use std::sync::Arc; use std::sync::atomic::AtomicBool; use common::budget::ResourcePermit; use common::counter::hardware_counter::HardwareCounterCell; use common::flags::FeatureFlags; use common::progress_tracker::ProgressTracker; use rand::SeedableRng; use rand::prelude::StdRng; use segment::data_types::query_context...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/tests/integration/multivector_filtrable_hnsw_test.rs
lib/segment/tests/integration/multivector_filtrable_hnsw_test.rs
use std::collections::HashMap; use std::sync::Arc; use std::sync::atomic::AtomicBool; use common::budget::ResourcePermit; use common::flags::FeatureFlags; use common::progress_tracker::ProgressTracker; use common::types::TelemetryDetail; use ordered_float::OrderedFloat; use rand::prelude::StdRng; use rand::{Rng, Seeda...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/tests/integration/fixtures/mod.rs
lib/segment/tests/integration/fixtures/mod.rs
pub mod segment;
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/tests/integration/fixtures/segment.rs
lib/segment/tests/integration/fixtures/segment.rs
use std::collections::HashMap; use std::path::Path; use common::counter::hardware_counter::HardwareCounterCell; use segment::data_types::named_vectors::NamedVectors; use segment::data_types::vectors::{DenseVector, VectorRef, only_default_vector}; use segment::entry::entry_point::SegmentEntry; use segment::index::spars...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/benches/scorer_mmap.rs
lib/segment/benches/scorer_mmap.rs
use std::path::Path; use std::sync::Arc; use std::sync::atomic::AtomicBool; use atomic_refcell::AtomicRefCell; use criterion::{BatchSize, Criterion, criterion_group, criterion_main}; use rand::Rng; use rand::distr::StandardUniform; use segment::data_types::named_vectors::CowVector; use segment::data_types::vectors::{D...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/benches/prof.rs
lib/segment/benches/prof.rs
use std::io::Write; use std::os::raw::c_int; use std::path::Path; use criterion::profiler::Profiler; use fs_err as fs; use fs_err::File; use pprof::ProfilerGuard; use pprof::flamegraph::TextTruncateDirection; use pprof::protos::Message; /// Small custom profiler that can be used with Criterion to create a flamegraph ...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/benches/hnsw_incremental_build.rs
lib/segment/benches/hnsw_incremental_build.rs
use std::collections::BTreeSet; use std::fmt::Debug; use std::path::{Path, PathBuf}; use std::sync::Arc; use std::sync::atomic::AtomicBool; use atomic_refcell::AtomicRefCell; use clap::Parser; use common::budget::ResourcePermit; use common::counter::hardware_counter::HardwareCounterCell; use common::flags::{FeatureFla...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/benches/id_type_benchmark.rs
lib/segment/benches/id_type_benchmark.rs
#[cfg(not(target_os = "windows"))] mod prof; use std::collections::{BTreeMap, HashMap}; use criterion::{Criterion, criterion_group, criterion_main}; use rand::Rng; use serde::{Deserialize, Serialize}; use uuid::Uuid; #[derive(Debug, Deserialize, Serialize, Copy, Clone, PartialEq, Eq, Hash, Ord, PartialOrd)] enum Enu...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/benches/sparse_index_build.rs
lib/segment/benches/sparse_index_build.rs
#[cfg(not(target_os = "windows"))] mod prof; use std::borrow::Cow; use std::sync::Arc; use std::sync::atomic::AtomicBool; use atomic_refcell::AtomicRefCell; use common::counter::hardware_counter::HardwareCounterCell; use common::types::PointOffsetType; use criterion::{Criterion, criterion_group, criterion_main}; use ...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/benches/sparse_vector_storage.rs
lib/segment/benches/sparse_vector_storage.rs
#[cfg(not(target_os = "windows"))] mod prof; use std::sync::atomic::AtomicBool; use common::counter::hardware_counter::HardwareCounterCell; use common::types::PointOffsetType; use criterion::{Criterion, criterion_group, criterion_main}; use rand::SeedableRng; use rand::rngs::StdRng; use segment::common::rocksdb_wrapp...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/benches/dynamic_mmap_flags.rs
lib/segment/benches/dynamic_mmap_flags.rs
use std::hint::black_box; use std::iter; use std::sync::atomic::AtomicBool; use criterion::{Criterion, criterion_group, criterion_main}; use rand::rngs::StdRng; use rand::{Rng, SeedableRng}; use segment::common::flags::dynamic_mmap_flags::DynamicMmapFlags; use segment::common::operation_error::check_process_stopped; u...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/benches/in_memory_id_tracker.rs
lib/segment/benches/in_memory_id_tracker.rs
use std::time::Instant; use common::types::PointOffsetType; use criterion::{Criterion, criterion_group, criterion_main}; use rand::Rng; use segment::id_tracker::IdTracker; use segment::id_tracker::in_memory_id_tracker::InMemoryIdTracker; use segment::types::ExtendedPointId; fn benchmark(c: &mut Criterion) { c.ben...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/benches/range_filtering.rs
lib/segment/benches/range_filtering.rs
#[cfg(not(target_os = "windows"))] mod prof; use std::sync::Arc; use std::sync::atomic::AtomicBool; use atomic_refcell::AtomicRefCell; use common::counter::hardware_counter::HardwareCounterCell; use common::types::PointOffsetType; use criterion::{BatchSize, Criterion, criterion_group, criterion_main}; use ordered_flo...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/benches/conditional_search.rs
lib/segment/benches/conditional_search.rs
#[cfg(not(target_os = "windows"))] mod prof; use std::sync::atomic::AtomicBool; use common::counter::hardware_counter::HardwareCounterCell; use common::types::PointOffsetType; use criterion::{Criterion, criterion_group, criterion_main}; use itertools::Itertools; use rand::rngs::StdRng; use rand::{Rng, SeedableRng}; u...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/benches/segment_info.rs
lib/segment/benches/segment_info.rs
use common::counter::hardware_counter::HardwareCounterCell; use criterion::{Criterion, criterion_group, criterion_main}; use segment::data_types::vectors::only_default_vector; use segment::entry::entry_point::SegmentEntry; use segment::json_path::JsonPath; use segment::segment_constructor::simple_segment_constructor::b...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/benches/hnsw_build_asymptotic.rs
lib/segment/benches/hnsw_build_asymptotic.rs
#[cfg(not(target_os = "windows"))] mod prof; use std::cell::LazyCell; use common::iterator_ext::IteratorExt as _; use criterion::{Criterion, criterion_group, criterion_main}; use itertools::Itertools; use rand::{Rng, rng}; use segment::fixtures::index_fixtures::{TestRawScorerProducer, random_vector}; use segment::ind...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/benches/mmap_bitslice_buffered_update_wrapper.rs
lib/segment/benches/mmap_bitslice_buffered_update_wrapper.rs
use std::hint::black_box; use std::iter; use criterion::{Criterion, criterion_group, criterion_main}; use fs_err::File; use memmap2::MmapMut; use memory::mmap_type::MmapBitSlice; use rand::prelude::*; use rand::rngs::StdRng; use segment::common::mmap_bitslice_buffered_update_wrapper::MmapBitSliceBufferedUpdateWrapper;...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/benches/hnsw_search_graph.rs
lib/segment/benches/hnsw_search_graph.rs
#[cfg(not(target_os = "windows"))] mod prof; use std::hint::black_box; use common::types::PointOffsetType; use criterion::{Criterion, criterion_group, criterion_main}; use rand::SeedableRng; use rand::rngs::StdRng; use segment::fixtures::index_fixtures::random_vector; use segment::index::hnsw_index::graph_layers::Sea...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/benches/fixture.rs
lib/segment/benches/fixture.rs
use std::path::Path; use std::time::Duration; use common::types::PointOffsetType; use fs_err as fs; use rand::SeedableRng as _; use rand::rngs::StdRng; use rayon::iter::{IntoParallelIterator as _, ParallelIterator as _}; use segment::fixtures::index_fixtures::TestRawScorerProducer; use segment::index::hnsw_index::Hnsw...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/benches/vector_search.rs
lib/segment/benches/vector_search.rs
use std::path::Path; use std::sync::Arc; use std::sync::atomic::AtomicBool; use atomic_refcell::AtomicRefCell; use common::counter::hardware_counter::HardwareCounterCell; use common::types::PointOffsetType; use criterion::{Criterion, criterion_group, criterion_main}; use rand::Rng; use rand::distr::StandardUniform; us...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false
qdrant/qdrant
https://github.com/qdrant/qdrant/blob/f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd/lib/segment/benches/sparse_index_search.rs
lib/segment/benches/sparse_index_search.rs
use std::sync::atomic::AtomicBool; use common::counter::hardware_counter::HardwareCounterCell; use common::types::PointOffsetType; use criterion::{BatchSize, Criterion, criterion_group, criterion_main}; use dataset::Dataset; use indicatif::{ProgressBar, ProgressDrawTarget, ProgressStyle}; use itertools::Itertools as _...
rust
Apache-2.0
f937d0260ffd7705c6f34d9c25da1e27ebf5ddfd
2026-01-04T15:34:51.524868Z
false