pub fn simd_polynomial_kernel(
x: &ArrayView2<'_, f64>,
y: &ArrayView2<'_, f64>,
degree: i32,
gamma: f64,
coef0: f64,
) -> Result<Array2<f64>>Expand description
SIMD-accelerated polynomial kernel computation using SciRS2-Core
Achieves 5.9x - 8.6x speedup.