Update rl_replacements.py

This commit is contained in:
Daniel Han 2025-02-12 03:50:32 -08:00
commit c987094751

View file

@ -125,12 +125,12 @@ def grpo_trainer__prepare_inputs(function_name, function):
if "with torch.inference_mode()" not in function: return function
function = function.replace(
"with torch.inference_mode()",
"with torch.inference_mode():",
"with torch.inference_mode(), "\
"torch.amp.autocast(device_type = 'cuda', "\
"dtype = torch.float16 if os.environ.get('ACCELERATE_MIXED_PRECISION', 'fp16') == 'fp16' else torch.bfloat16) "\
"if not torch.is_autocast_enabled('cuda') else nullcontext()",
"if not torch.is_autocast_enabled('cuda') else nullcontext():",
)
return function
pass