The llama.cpp b10361 release addresses a critical bug where Sliding Window Attention (SWA) was not enabled for the LGAI-EXAONE 4.5 model due to incorrect parameter ordering during loading.
- The model loader now correctly handles EXAONE 4.5 GGUF files by fixing the order in which `hparams.n_layer()` and `LLM_KV_NEXTN_PREDICT_LAYERS` are read, ensuring SWA is properly activated.
- The metadata-only path for constructing models now skips tensors marked with `TENSOR_SKIP`, preventing assertion failures caused by null buffer types in architectures using nextn/MTP layers.
- Tests were added to cover EXAONE 4 hparams ordering, verifying that the fix correctly sets `swa_type` to STANDARD rather than NONE.
This update ensures that official LGAI-EXAONE GGUF releases function correctly with sliding window attention and allows models with nextn/MTP layers to be constructed via the metadata-only path.