Gemma-3 V cache broken because V un-rotation missing from iSWA build_attn overload
V inverse rotation (ggml_turbo_wht) was missing from iSWA build_attn overload in llama-graph.cpp. Gemma-3 uses iSWA for ALL layers, so every V was un-rotated garbage (PPL 45 trillion). Fix: added V un-rotation block to iSWA build_attn after build_attn_mha, before W_O. Post-fix, Gemma-3 turbo3 K+V PPL 5.8867 (+3.3%) matches the head_dim=128 degradation pattern seen on MN-Violet-Lotus (+2.6%) and Qwen3-14B (+3.8%). K-only slightly worse than K+V, consistent with "V matters more" finding.