pub fn apply_rx_gate_simd(
angle: f64,
in_amps0: &[Complex64],
in_amps1: &[Complex64],
out_amps0: &mut [Complex64],
out_amps1: &mut [Complex64],
)Expand description
Apply rotation-X gate using SIMD-like operations
RX(θ) = [[cos(θ/2), -isin(θ/2)], [-isin(θ/2), cos(θ/2)]]