From 462267982bd8d587f30d12fce56ee8e15261c467 Mon Sep 17 00:00:00 2001 From: Bingxu Chen Date: Thu, 19 Feb 2026 08:23:17 +0800 Subject: [PATCH] [AMD] Fix mi35x dsv32 mtp nightly (#18978) Co-authored-by: michaelzhang-ai --- python/sglang/srt/layers/attention/nsa_backend.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/sglang/srt/layers/attention/nsa_backend.py b/python/sglang/srt/layers/attention/nsa_backend.py index 1d2480027..170f75e3e 100644 --- a/python/sglang/srt/layers/attention/nsa_backend.py +++ b/python/sglang/srt/layers/attention/nsa_backend.py @@ -72,7 +72,7 @@ global_workspace_buffer = None # Control whether to use fused metadata copy kernel (default: enabled) # Set SGLANG_USE_FUSED_METADATA_COPY=0 or false to disable -_USE_FUSED_METADATA_COPY = envs.SGLANG_USE_FUSED_METADATA_COPY.get() +_USE_FUSED_METADATA_COPY = envs.SGLANG_USE_FUSED_METADATA_COPY.get() and not _is_hip # Control whether to verify fused metadata copy against individual copies (default: disabled) # Set SGLANG_VERIFY_FUSED_METADATA_COPY=1 or true to enable verification