From 52458b60a88310a7f730f067e5a431a55cd34afd Mon Sep 17 00:00:00 2001 From: haosdent Date: Fri, 8 May 2026 19:58:48 +0800 Subject: [PATCH] [CI][Examples][RLHF] Disable async scheduling in rlhf_async_new_apis (#42042) Signed-off-by: haosdent --- examples/rl/rlhf_async_new_apis.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/examples/rl/rlhf_async_new_apis.py b/examples/rl/rlhf_async_new_apis.py index f8af9537579..d8de5096716 100644 --- a/examples/rl/rlhf_async_new_apis.py +++ b/examples/rl/rlhf_async_new_apis.py @@ -227,6 +227,9 @@ llm_kwargs = dict( attention_backend=ATTN_BACKEND, gpu_memory_utilization=0.75, weight_transfer_config=WeightTransferConfig(backend="nccl"), + # TODO(haosdent): re-enable once #42043 is fixed. Both LLM + # instances must match. + async_scheduling=False, ) llm_kwargs.update(rocm_determinism_kwargs) @@ -364,6 +367,9 @@ llm_v2_kwargs = dict( gpu_memory_utilization=0.75, distributed_executor_backend="ray", attention_backend=ATTN_BACKEND, + # TODO(haosdent): re-enable once #42043 is fixed. Both LLM + # instances must match. + async_scheduling=False, ) llm_v2_kwargs.update(rocm_determinism_kwargs)