MCPcopy Create free account
hub / github.com/NodeDB-Lab/nodedb / avx512_or

Function avx512_or

nodedb/src/engine/timeseries/bitmap_simd.rs:127–132  ·  view source on GitHub ↗
(a: &[u64], b: &[u64], out: &mut [u64])

Source from the content-addressed store, hash-verified

125
126#[cfg(target_arch = "x86_64")]
127fn avx512_or(a: &[u64], b: &[u64], out: &mut [u64]) {
128 if a.len().min(b.len()) < 16 {
129 return scalar_or(a, b, out);
130 }
131 unsafe { avx512_or_inner(a, b, out) }
132}
133
134// ── AVX2 ───────────────────────────────────────────────────────────
135

Callers

nothing calls this directly

Calls 3

scalar_orFunction · 0.85
avx512_or_innerFunction · 0.85
lenMethod · 0.45

Tested by

no test coverage detected