File size: 15,817 Bytes
1faccd4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 | # Copyright 2025 Bytedance Ltd. and/or its affiliates
# Copyright (c) 2025, NVIDIA CORPORATION. All rights reserved.
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import torch
from torch.nested._internal.nested_tensor import NestedTensor
from verl.utils.megatron_utils import unwrap_model
from verl.workers.config import MtpConfig
from .util import (
postprocess_bshd,
postprocess_bshd_no_padding,
postprocess_packed_seqs,
postprocess_thd_no_padding,
preprocess_bshd,
preprocess_bshd_no_padding,
preprocess_packed_seqs,
preprocess_thd_no_padding,
)
def model_forward_gen(vision_model: bool = False):
def model_forward(
model,
input_ids,
attention_mask,
position_ids,
multi_modal_inputs: dict,
logits_processor=None,
logits_processor_args: dict = None,
value_model=False,
data_format: str = "thd",
mtp_config: MtpConfig = None,
):
"""Forward pass for models with sequence packing."""
assert data_format in ["thd", "bshd"], "data_format must be 'thd' or 'bshd'"
pre_process = (
unwrap_model(model).pre_process if not vision_model else False
) # vision model does not need pre_process, because we pack the input_ids to thd in the forward function
post_process = unwrap_model(model).post_process
sp = unwrap_model(model).config.sequence_parallel
fp8 = unwrap_model(model).config.fp8
use_fp8_padding = fp8 in ["e4m3", "hybrid"]
model_kwargs = {}
if "pixel_values" in multi_modal_inputs:
model_kwargs["pixel_values"] = multi_modal_inputs["pixel_values"].to(input_ids.device)
if "image_grid_thw" in multi_modal_inputs:
model_kwargs["image_grid_thw"] = multi_modal_inputs["image_grid_thw"].to(input_ids.device)
if "pixel_values_videos" in multi_modal_inputs:
model_kwargs["pixel_values_videos"] = multi_modal_inputs["pixel_values_videos"].to(input_ids.device)
if "video_grid_thw" in multi_modal_inputs:
model_kwargs["video_grid_thw"] = multi_modal_inputs["video_grid_thw"].to(input_ids.device)
batch_size, seq_len = attention_mask.shape[:2]
mtp_enable_train = mtp_config and mtp_config.enable_train
if data_format == "thd":
input_ids_rmpad, packed_seq_params = preprocess_packed_seqs(
input_ids,
attention_mask,
pre_process=pre_process or (post_process and mtp_enable_train),
use_fp8_padding=use_fp8_padding,
)
input_ids_rmpad = input_ids_rmpad.contiguous()
# when pp > 1 and processor is not None, we need to pass the labels and loss_mask to the model
if mtp_enable_train and post_process:
args = {
k: preprocess_packed_seqs(v, attention_mask, pre_process=True, use_fp8_padding=use_fp8_padding)[0]
for k, v in logits_processor_args.items()
}
model_kwargs["labels"] = args["label"].contiguous()
model_kwargs["loss_mask"] = args["label_mask"].contiguous()
input_args = dict(
input_ids=input_ids_rmpad,
attention_mask=None,
position_ids=position_ids if not vision_model else None, # vision models will calculate position_ids
packed_seq_params=packed_seq_params,
**model_kwargs,
)
if vision_model:
# workaround for supporting sequence packing with context parallelism
# cp split with sequence packing will make model lose vision token information, so we need to keep
# the original input_ids and pack them after vision embedding is calculated,
# cooporate with mbridge
input_args["input_ids"] = input_ids
input_args["attention_mask"] = attention_mask
output_orig = model(**input_args)
if post_process and logits_processor is not None:
args = {
k: preprocess_packed_seqs(v, attention_mask, pre_process=True, use_fp8_padding=use_fp8_padding)[0]
for k, v in logits_processor_args.items()
}
output_dict = logits_processor(output_orig, **args)
output = {
k: postprocess_packed_seqs(
v, packed_seq_params, attention_mask, batch_size, seq_len, post_process=post_process
)
for k, v in output_dict.items()
}
else:
output = postprocess_packed_seqs(
output_orig, packed_seq_params, attention_mask, batch_size, seq_len, post_process=post_process
)
elif data_format == "bshd":
"""
data_format: "thd" or "bshd", default is "thd",
why we need this?
for some new models, GPT-OSS, the thd format is not supported, so we need to use the bshd format.
When using the bshd format, we have to add paddings to the input_ids to meet the longest sequence length,
so it is recommended to disable dynamic batch size and set batch size to 1
"""
assert fp8 is None, "fp8 is not supported for bshd format yet"
batch_size, sequence_length = attention_mask.shape[:2]
position_ids_for_preprocess = (
torch.arange(sequence_length, device=input_ids.device).unsqueeze(0).expand(batch_size, -1)
if vision_model
else position_ids
)
pre_process_for_bshd = True if vision_model else pre_process
new_input_ids, new_attention_mask, new_position_ids = preprocess_bshd(
input_ids,
attention_mask,
position_ids_for_preprocess,
sequence_parallel=sp,
pre_process=pre_process_for_bshd,
)
output_orig = model(
input_ids=new_input_ids,
position_ids=None if vision_model else new_position_ids,
attention_mask=new_attention_mask,
**model_kwargs,
)
if post_process and logits_processor is not None:
args = {
k: preprocess_bshd(
v, attention_mask, position_ids_for_preprocess, sequence_parallel=sp, pre_process=True
)[0]
for k, v in logits_processor_args.items()
}
output_dict = logits_processor(output_orig, **args)
output = {
k: postprocess_bshd(
v, new_attention_mask, attention_mask, sequence_length, post_process=post_process
)
for k, v in output_dict.items()
}
else:
output = postprocess_bshd(
output_orig, new_attention_mask, attention_mask, sequence_length, post_process=post_process
)
if value_model and post_process:
output = output[..., 0]
return output
return model_forward
def _convert_to_nested_tensor(v, input_ids_lengths):
"""Convert regular tensor to NestedTensor, slicing according to input_ids_lengths.
Args:
v: Tensor to convert, shape [batch, seq_len]
input_ids_lengths: List of valid lengths for each sample
Returns:
Converted NestedTensor
"""
if isinstance(v, NestedTensor):
return v
batch_size = v.shape[0]
assert len(input_ids_lengths) == batch_size, (
f"len(input_ids_lengths)={len(input_ids_lengths)} != batch_size={batch_size}"
)
v_split_list = []
for i in range(batch_size):
vi = v[i]
target_len = input_ids_lengths[i]
if vi.shape[0] > target_len:
vi = vi[:target_len]
elif vi.shape[0] < target_len:
vi = torch.cat([vi, torch.ones(target_len - vi.shape[0], dtype=vi.dtype, device=vi.device)])
v_split_list.append(vi)
v = torch.nested.nested_tensor(v_split_list, layout=torch.jagged)
return v
def gptmodel_forward_no_padding(
model,
input_ids,
multi_modal_inputs: dict,
logits_processor=None,
logits_processor_args: dict = None,
value_model=False,
vision_model=False,
pad_token_id=None,
data_format: str = "thd",
mtp_enable_train: bool = False,
):
"""Default forward pass for GPT models with optional sequence packing."""
assert data_format in ["thd", "bshd"], "data_format must be 'thd' or 'bshd'"
pre_process = unwrap_model(model).pre_process
post_process = unwrap_model(model).post_process
fp8 = unwrap_model(model).config.fp8
use_fp8_padding = fp8 in ["e4m3", "hybrid"]
model_kwargs = {}
if "pixel_values" in multi_modal_inputs:
model_kwargs["pixel_values"] = multi_modal_inputs["pixel_values"].to(input_ids.device)
if "image_grid_thw" in multi_modal_inputs:
model_kwargs["image_grid_thw"] = multi_modal_inputs["image_grid_thw"].to(input_ids.device)
if "pixel_values_videos" in multi_modal_inputs:
model_kwargs["pixel_values_videos"] = multi_modal_inputs["pixel_values_videos"].to(input_ids.device)
if "video_grid_thw" in multi_modal_inputs:
model_kwargs["video_grid_thw"] = multi_modal_inputs["video_grid_thw"].to(input_ids.device)
batch_size = input_ids.shape[0]
if data_format == "thd":
input_ids_rmpad, packed_seq_params, position_ids_rmpad = preprocess_thd_no_padding(
input_ids, pre_process=pre_process or (post_process and mtp_enable_train), use_fp8_padding=use_fp8_padding
)
input_ids_rmpad = input_ids_rmpad.contiguous()
args = {}
if mtp_enable_train and post_process:
# Use input_ids sequence length to ensure label and loss_mask alignment
input_ids_offsets = input_ids.offsets()
input_ids_lengths = input_ids_offsets.diff().tolist()
for k in ["label", "loss_mask"]:
v = logits_processor_args[k]
v = _convert_to_nested_tensor(v, input_ids_lengths)
logits_processor_args[k] = v
args[k] = preprocess_thd_no_padding(
v, pre_process=True, need_roll=True, use_fp8_padding=use_fp8_padding
)[0]
model_kwargs["labels"] = args["label"].contiguous()
model_kwargs["loss_mask"] = args["loss_mask"].contiguous()
if logits_processor_args and "loss_mask" in logits_processor_args:
logits_processor_args.pop("loss_mask")
# For VLM model, need to pass bshd format `input_ids` and `attention_mask`.
attention_mask = None
if vision_model:
input_ids_rmpad = input_ids.to_padded_tensor(pad_token_id)
seqlens_in_batch = input_ids.offsets().diff()
attention_mask = torch.zeros_like(input_ids_rmpad, dtype=torch.bool)
for i, seqlen in enumerate(seqlens_in_batch):
attention_mask[i, :seqlen] = True
output_orig = model(
input_ids=input_ids_rmpad,
attention_mask=attention_mask,
position_ids=position_ids_rmpad if not vision_model else None, # vision models will calculate position_ids
packed_seq_params=packed_seq_params,
**model_kwargs,
)
if post_process and logits_processor is not None:
args = {
k: preprocess_thd_no_padding(
v, pre_process=True, need_roll=(k == "label"), use_fp8_padding=use_fp8_padding
)[0]
for k, v in logits_processor_args.items()
}
output_dict = logits_processor(output_orig, **args)
output = {
k: postprocess_thd_no_padding(v, packed_seq_params, input_ids, batch_size, post_process=post_process)
for k, v in output_dict.items()
}
else:
output = postprocess_thd_no_padding(
output_orig, packed_seq_params, input_ids, batch_size, post_process=post_process
)
else:
"""
data_format: "thd" or "bshd", default is "thd",
why we need this?
for some new models, GPT-OSS, the thd format is not supported, so we need to use the bshd format.
When using the bshd format, we have to add paddings to the input_ids to meet the longest sequence length,
so it is recommended to disable dynamic batch size and set batch size to 1
"""
input_ids_bshd, attention_mask_bshd, position_ids_bshd = preprocess_bshd_no_padding(
input_ids, pre_process=pre_process or (post_process and mtp_enable_train), use_fp8_padding=use_fp8_padding
)
if mtp_enable_train and post_process:
args = {}
# Use input_ids sequence length to ensure label and loss_mask alignment
input_ids_offsets = input_ids.offsets()
input_ids_lengths = input_ids_offsets.diff().tolist()
for k in ["label", "loss_mask"]:
v = logits_processor_args[k]
v = _convert_to_nested_tensor(v, input_ids_lengths)
logits_processor_args[k] = v
args[k] = preprocess_bshd_no_padding(
v, pre_process=True, need_roll=True, use_fp8_padding=use_fp8_padding
)[0]
model_kwargs["labels"] = args["label"].contiguous()
model_kwargs["loss_mask"] = args["loss_mask"].contiguous()
if logits_processor_args and "loss_mask" in logits_processor_args:
logits_processor_args.pop("loss_mask")
output_orig = model(
input_ids=input_ids_bshd,
attention_mask=attention_mask_bshd,
position_ids=None if vision_model else position_ids_bshd,
**model_kwargs,
)
if post_process and logits_processor is not None:
args = {
k: preprocess_bshd_no_padding(
v, pre_process=True, need_roll=(k == "label"), use_fp8_padding=use_fp8_padding
)[0]
for k, v in logits_processor_args.items()
}
output_dict = logits_processor(output_orig, **args)
output = {
k: postprocess_bshd_no_padding(v, attention_mask_bshd, post_process=post_process)
for k, v in output_dict.items()
}
else:
output = postprocess_bshd_no_padding(output_orig, attention_mask_bshd, post_process=post_process)
if value_model and post_process:
# output = output[..., 0]
# while using nested tensor, the advanced indexing operation above will result in an error at backward, i.e.
# ValueError: NestedTensor _nested_select_backward_default(grad_output: t, self: jt_all, dim: any, index: any)
# so we use `squeeze` to remove the last dimension
output = output.squeeze(-1)
return output
|