You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
refactor(cpu): simplify NEON where_select mask construction
Replace multi-step mask expansion (u8 -> u16 -> u32) with direct
construction of full-width lane masks. For f32, build u32x4 directly
from condition bytes. For f64, use vld1q_u64 instead of vcombine_u64.
This reduces instruction count while maintaining identical behavior.
0 commit comments