From 81a78dc67973279ec30cfcc20472589c4712ebf2 Mon Sep 17 00:00:00 2001 From: functionstackx <47992694+functionstackx@users.noreply.github.com> Date: Fri, 10 Jul 2026 17:01:59 -0400 Subject: [PATCH 1/2] =?UTF-8?q?[Klaud=20Cold]=20Add=20throwaway=20Check=20?= =?UTF-8?q?10=20violation=20script=20for=20verifier=20smoke=20test=20/=20?= =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E7=94=A8=E4=BA=8E=E9=AA=8C=E8=AF=81=E5=99=A8?= =?UTF-8?q?=E5=86=92=E7=83=9F=E6=B5=8B=E8=AF=95=E7=9A=84=E4=B8=B4=E6=97=B6?= =?UTF-8?q?=20Check=2010=20=E8=BF=9D=E8=A7=84=E8=84=9A=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../agentic/zz_check10_smoke_test_do_not_merge.sh | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 benchmarks/single_node/agentic/zz_check10_smoke_test_do_not_merge.sh diff --git a/benchmarks/single_node/agentic/zz_check10_smoke_test_do_not_merge.sh b/benchmarks/single_node/agentic/zz_check10_smoke_test_do_not_merge.sh new file mode 100644 index 000000000..936f2d1c6 --- /dev/null +++ b/benchmarks/single_node/agentic/zz_check10_smoke_test_do_not_merge.sh @@ -0,0 +1,12 @@ +#!/usr/bin/env bash +# [DO NOT MERGE] Throwaway smoke test for codeowner-signoff-verify Check 10: +# agentic spec-decode configs must simulate acceptance at the committed golden +# AL from golden_al_distribution/. This script DELIBERATELY omits synthetic +# acceptance (real rejection sampling) so the verifier should FAIL Check 10 and +# name this file. The PR adding it will be closed without merging. +set -euo pipefail + +vllm serve deepseek-ai/DeepSeek-V4-Pro-NVFP4 \\ + --port 8000 \\ + --tensor-parallel-size 8 \\ + --speculative-config '{"method":"mtp","num_speculative_tokens":3}' From c51decbac1e590753bf85b8014c0e74c0c568e3d Mon Sep 17 00:00:00 2001 From: functionstackx <47992694+functionstackx@users.noreply.github.com> Date: Fri, 10 Jul 2026 17:02:37 -0400 Subject: [PATCH 2/2] =?UTF-8?q?[Klaud=20Cold]=20Fix=20line=20continuations?= =?UTF-8?q?=20in=20Check=2010=20smoke-test=20script=20/=20=E4=BF=AE?= =?UTF-8?q?=E6=AD=A3=20Check=2010=20=E5=86=92=E7=83=9F=E6=B5=8B=E8=AF=95?= =?UTF-8?q?=E8=84=9A=E6=9C=AC=E4=B8=AD=E7=9A=84=E7=BB=AD=E8=A1=8C=E7=AC=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../agentic/zz_check10_smoke_test_do_not_merge.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/benchmarks/single_node/agentic/zz_check10_smoke_test_do_not_merge.sh b/benchmarks/single_node/agentic/zz_check10_smoke_test_do_not_merge.sh index 936f2d1c6..d7301d5fa 100644 --- a/benchmarks/single_node/agentic/zz_check10_smoke_test_do_not_merge.sh +++ b/benchmarks/single_node/agentic/zz_check10_smoke_test_do_not_merge.sh @@ -6,7 +6,7 @@ # name this file. The PR adding it will be closed without merging. set -euo pipefail -vllm serve deepseek-ai/DeepSeek-V4-Pro-NVFP4 \\ - --port 8000 \\ - --tensor-parallel-size 8 \\ +vllm serve deepseek-ai/DeepSeek-V4-Pro-NVFP4 \ + --port 8000 \ + --tensor-parallel-size 8 \ --speculative-config '{"method":"mtp","num_speculative_tokens":3}'