diff --git a/nemo_rl/models/generation/vllm/quantization/fp8.py b/nemo_rl/models/generation/vllm/quantization/fp8.py index fda54d11b2..cb538c8a46 100644 --- a/nemo_rl/models/generation/vllm/quantization/fp8.py +++ b/nemo_rl/models/generation/vllm/quantization/fp8.py @@ -82,7 +82,7 @@ def monkey_patch_vllm_ray_executor(fp8_config): if fp8_config.model_parallel_size > 1: # we patch vllm's collective_rpc so that before vllm initalizes the model on each rank, we execute # a ray remote that patches each worker with the required fp8 vllm patches - from vllm.v1.executor.ray_distributed_executor import RayDistributedExecutor + from vllm.v1.executor.ray_executor import RayDistributedExecutor original_run_workers = RayDistributedExecutor.collective_rpc