Type Alias SimdPriceLevels64

Source
pub type SimdPriceLevels64 = SimdPriceLevels<64>;
Expand description

Type alias for SIMD price levels with 64-element capacity.

Aliased Type§

pub struct SimdPriceLevels64 {
    pub prices: VecSimd<f64x4>,
    pub quantities: VecSimd<f64x4>,
    pub count: usize,
}

Fields§

§prices: VecSimd<f64x4>

Cache-aligned SIMD buffer for price levels Uses f64x4 vectors for processing 4 price levels simultaneously

§quantities: VecSimd<f64x4>

Cache-aligned SIMD buffer for quantity levels Separate buffer prevents false sharing during price/quantity calculations

§count: usize

Number of valid levels currently stored (may be less than allocated capacity)