File size: 31,988 Bytes
5000658 |
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 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 |
# SPDX-FileCopyrightText: Copyright (c) 2022-2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
#
# 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 math
from collections import OrderedDict
from typing import List
import tensorrt as trt
from ..functional import Tensor
from ..layers import SpecDecodingParams
from ..mapping import Mapping
from ..plugin import current_all_reduce_helper
class GenerationMixin:
@staticmethod
def has_ctx_gen_opt_profiles(use_gpt_attention_plugin: bool,
use_gemm_plugin: bool,
remove_input_padding: bool,
paged_kv_cache: bool) -> bool:
res = False
if not use_gpt_attention_plugin or not use_gemm_plugin:
use_in_flight_batching = use_gpt_attention_plugin and remove_input_padding and paged_kv_cache
res = not use_in_flight_batching
return res
@staticmethod
def default_range(max_range, offset=0, min_range=1, opt_offset=0):
result = [
min_range, (max_range + min_range + opt_offset) // 2, max_range
]
return [elem + offset for elem in result]
@staticmethod
def split_num_tokens_range(max_num_tokens):
split_point = [64, 128, 256, 512, 1024]
num_tokens_ranges = []
for i, p in enumerate(split_point):
if i == 0 and max_num_tokens <= p:
return [1, max_num_tokens, max_num_tokens]
elif max_num_tokens <= p:
num_tokens_ranges.append(
[split_point[i - 1], max_num_tokens, max_num_tokens])
return num_tokens_ranges
elif i == 0 and max_num_tokens > p:
num_tokens_ranges = [[1, 64, 64]]
else:
num_tokens_ranges.append(
[split_point[i - 1], split_point[i], split_point[i]])
num_tokens_ranges.append(
[split_point[-1], max_num_tokens, max_num_tokens])
return num_tokens_ranges
@staticmethod
def get_profiles_ranges(
*,
max_batch_size,
max_beam_width,
max_input_len,
max_num_tokens,
max_draft_len,
opt_batch_size,
opt_num_tokens,
enable_ctx_gen_opt_profiles,
multiple_profiles,
):
default_range = GenerationMixin.default_range
if opt_batch_size:
bb_range_cxt = [1, opt_batch_size, max_batch_size]
bb_range_gen = [
1, opt_batch_size * max_beam_width,
max_batch_size * max_beam_width
]
else:
bb_range_cxt = default_range(max_batch_size)
bb_range_gen = default_range(max_batch_size * max_beam_width)
tokens_per_engine_step = max_draft_len + 1
tokens_per_engine_step_range = [
1, tokens_per_engine_step, tokens_per_engine_step
]
bbd_range_ctx = [
bb_range_cxt[i] * (tokens_per_engine_step if i != 0 else 1)
for i in range(len(bb_range_cxt))
]
bbd_range_gen = [
bb_range_gen[i] * (tokens_per_engine_step if i != 0 else 1)
for i in range(len(bb_range_gen))
]
inlen_range_cxt = default_range(max_input_len)
inlen_range_gen = [1, 1, tokens_per_engine_step]
if enable_ctx_gen_opt_profiles:
num_profiles = 2
bb_range = [bb_range_cxt, bb_range_gen]
bbd_range = [bbd_range_ctx, bbd_range_gen]
inlen_range = [inlen_range_cxt, inlen_range_gen]
position_ids_inlen_range = [inlen_range_cxt, [1, 1, 1]]
num_tokens_range_ctx = default_range(max_batch_size * max_input_len)
# Draft tokens cannot be combined with beam search
num_tokens_range_gen = default_range(
max_batch_size * max(tokens_per_engine_step, max_beam_width))
num_tokens_range = [num_tokens_range_ctx, num_tokens_range_gen]
else:
if multiple_profiles:
num_tokens_range = GenerationMixin.split_num_tokens_range(
max_num_tokens)
else:
if opt_num_tokens is None:
opt_num_tokens = min(max_num_tokens,
max_batch_size * max_beam_width)
num_tokens_range = [[1, opt_num_tokens, max_num_tokens]]
num_profiles = len(num_tokens_range)
bb_range = [bb_range_gen] * num_profiles
bbd_range = [bbd_range_gen] * num_profiles
inlen_range = [[1, 1, max_input_len]] * num_profiles
position_ids_inlen_range = [[1, 1, max_input_len]] * num_profiles
tokens_per_engine_step_range = [tokens_per_engine_step_range
] * num_profiles
ranges = {
'bb_range': bb_range,
'bbd_range': bbd_range,
'inlen_range': inlen_range,
'position_ids_inlen_range': position_ids_inlen_range,
'num_tokens_range': num_tokens_range,
'tokens_per_engine_step_range': tokens_per_engine_step_range,
}
return num_profiles, ranges
def prepare_attention_inputs(self,
*,
max_batch_size,
max_beam_width,
max_input_len,
max_seq_len,
num_kv_heads,
head_size,
num_layers,
kv_dtype,
num_profiles=1,
enable_ctx_gen_opt_profiles=False,
remove_input_padding=False,
use_gpt_attention_plugin=False,
paged_kv_cache=False,
tokens_per_block=64,
mapping=Mapping(),
use_cache=True,
streamingllm=False,
attn_layer_idx=None,
opt_batch_size=None):
default_range = GenerationMixin.default_range
if opt_batch_size:
bb_range_cxt = [1, opt_batch_size, max_batch_size]
bb_range_gen = [
1, opt_batch_size * max_beam_width,
max_batch_size * max_beam_width
]
else:
bb_range_cxt = default_range(max_batch_size)
bb_range_gen = default_range(max_batch_size * max_beam_width)
_bs_range = default_range(max_batch_size)
_beam_width_range = default_range(max_beam_width)
_max_len_range = default_range(max_seq_len)
_mask_len_ctx = default_range(max_input_len)
_kv_cache_range_ctx = [0, 0, 0]
_kv_cache_range_gen = default_range(max_seq_len, -1)
if not paged_kv_cache:
_kv_cache_range = default_range(max_seq_len)
else:
kv_max_seq_len = max_seq_len
if streamingllm:
# add the max bubble length
kv_max_seq_len += tokens_per_block - 1
if max_beam_width > 1:
# support cyclic kv cache cases that use one more block
kv_max_seq_len += tokens_per_block
_kv_cache_range = default_range(kv_max_seq_len)
if enable_ctx_gen_opt_profiles:
assert num_profiles == 2
bb_range = [bb_range_cxt, bb_range_gen]
mask_len_range = [_mask_len_ctx, _max_len_range]
if use_gpt_attention_plugin:
kv_cache_range = [_kv_cache_range, _kv_cache_range]
else:
kv_cache_range = [_kv_cache_range_ctx, _kv_cache_range_gen]
else:
bb_range = [bb_range_gen] * num_profiles
mask_len_range = [_max_len_range] * num_profiles
kv_cache_range = [_kv_cache_range] * num_profiles
bs_range = [_bs_range] * num_profiles
beam_width_range = [_beam_width_range] * num_profiles
max_len_range = [_max_len_range] * num_profiles
num_kv_heads = (num_kv_heads + mapping.tp_size - 1) // mapping.tp_size
layers_range = mapping.pp_layers(num_layers)
num_pp_layers = len(layers_range)
if attn_layer_idx is None:
attn_layer_idx = [i for i in range(num_layers)]
past_key_value = []
kv_cache_block_offsets = None
host_kv_cache_block_offsets = None
host_kv_cache_pool_pointers = None
if use_cache:
if not paged_kv_cache:
for i in layers_range:
kv_dim_range = OrderedDict([
('batch_size_beam_width', bb_range),
('kv', [2] * num_profiles),
('num_heads', [num_kv_heads] * num_profiles),
('past_key_len', kv_cache_range),
('head_size', [head_size] * num_profiles),
])
kv = Tensor(name=f'past_key_value_{attn_layer_idx[i]}',
dtype=kv_dtype,
shape=[-1, 2, num_kv_heads, -1, head_size],
dim_range=kv_dim_range)
past_key_value.append(kv)
else:
if enable_ctx_gen_opt_profiles:
max_blocks_per_seq_range = [
[
math.ceil(kv_cache_range[0][0] / tokens_per_block),
math.ceil(kv_cache_range[0][1] / tokens_per_block),
math.ceil(kv_cache_range[0][2] / tokens_per_block)
],
[
math.ceil(kv_cache_range[1][0] / tokens_per_block),
math.ceil(kv_cache_range[1][1] / tokens_per_block),
math.ceil(kv_cache_range[1][2] / tokens_per_block)
]
]
else:
max_blocks_per_seq_range = [[
math.ceil(kv_cache_range[0][0] / tokens_per_block),
math.ceil(kv_cache_range[0][1] / tokens_per_block),
math.ceil(kv_cache_range[0][2] / tokens_per_block)
]] * num_profiles
kv_cache_block_offsets = Tensor(name=f'kv_cache_block_offsets',
dtype=trt.int32,
shape=[-1, 2, -1],
dim_range=OrderedDict([
('batch_size_beam_width',
bb_range),
('kv', [2] * num_profiles),
('max_blocks_per_seq',
max_blocks_per_seq_range),
]))
host_kv_cache_block_offsets = Tensor(
name=f'host_kv_cache_block_offsets',
dtype=trt.int32,
shape=[-1, 2, -1],
dim_range=OrderedDict([
('batch_size_beam_width', bb_range),
('kv', [2] * num_profiles),
('max_blocks_per_seq', max_blocks_per_seq_range),
]))
host_kv_cache_pool_pointers = Tensor(
name=f'host_kv_cache_pool_pointers',
dtype=trt.int64,
shape=[2],
dim_range=OrderedDict([
('num_pools', [2] * num_profiles),
]))
for i in layers_range:
past_key_value.append(None)
sequence_length = None
context_lengths = None
host_context_lengths = None
host_past_key_value_lengths = None
host_max_attention_window_sizes = None
host_sink_token_length = None
attention_mask = None
cache_indirection = None
host_request_types = None
runtime_perf_knobs = None
if use_gpt_attention_plugin:
if use_cache:
sequence_length = Tensor(
name='sequence_length',
dtype=trt.int32,
shape=[-1],
dim_range=OrderedDict([('batch_size_beam_width', bb_range)
]),
)
host_request_types = Tensor(
name='host_request_types',
dtype=trt.int32,
shape=[-1],
dim_range=OrderedDict([('batch_size_beam_width', bb_range)]),
)
if use_cache:
host_past_key_value_lengths = Tensor(
name='host_past_key_value_lengths',
dtype=trt.int32,
shape=[-1],
dim_range=OrderedDict([('batch_size_beam_width', bb_range)
]),
)
context_lengths = Tensor(
name='context_lengths',
dtype=trt.int32,
shape=[-1],
dim_range=OrderedDict([('batch_size_beam_width', bb_range)]),
)
runtime_perf_knobs = Tensor(name='host_runtime_perf_knobs',
dtype=trt.int64,
shape=[16],
dim_range=OrderedDict([
('perf_knob_size',
[16] * num_profiles)
]))
else:
attention_mask = Tensor(
name='attention_mask',
dtype=trt.int32,
shape=[-1, -1],
dim_range=OrderedDict([
('batch_size_beam_width', bb_range),
('mask_len', mask_len_range),
]),
)
if use_gpt_attention_plugin and remove_input_padding:
host_context_lengths = Tensor(
name='host_context_lengths',
dtype=trt.int32,
shape=[-1],
dim_range=OrderedDict([('batch_size_beam_width', bb_range)]),
)
if use_gpt_attention_plugin:
# TODO(rkobus): change shape to [1]
host_max_attention_window_sizes = Tensor(
name=f'host_max_attention_window_sizes',
dtype=trt.int32,
shape=[num_pp_layers],
dim_range=OrderedDict([('num_layers',
[num_pp_layers] * num_profiles)]))
host_sink_token_length = Tensor(name='host_sink_token_length',
dtype=trt.int32,
shape=[1],
dim_range=OrderedDict([
('scalar', [1] * num_profiles)
]))
if use_cache:
cache_indirection = Tensor(
name='cache_indirection',
dtype=trt.int32,
shape=[-1, -1, -1],
dim_range=OrderedDict([
('batch_size_cache', bs_range),
('beam_width', beam_width_range),
('max_seq_len', max_len_range),
]),
)
return {
'attention_mask': attention_mask,
'sequence_length': sequence_length,
'host_past_key_value_lengths': host_past_key_value_lengths,
'host_max_attention_window_sizes': host_max_attention_window_sizes,
'host_sink_token_length': host_sink_token_length,
'past_key_value': past_key_value,
'cache_indirection': cache_indirection,
'kv_cache_block_offsets': kv_cache_block_offsets,
'host_kv_cache_block_offsets': host_kv_cache_block_offsets,
'host_kv_cache_pool_pointers': host_kv_cache_pool_pointers,
'context_lengths': context_lengths,
'host_context_lengths': host_context_lengths,
'host_request_types': host_request_types,
'host_runtime_perf_knobs': runtime_perf_knobs,
}
def prepare_basic_inputs(
self,
*,
max_batch_size,
max_beam_width,
max_input_len,
max_seq_len,
max_num_tokens,
hidden_size,
num_kv_heads,
head_size,
num_layers,
kv_dtype,
remove_input_padding=False,
use_gpt_attention_plugin=False,
use_gemm_plugin=False,
paged_kv_cache=False,
tokens_per_block=64,
gather_context_logits=False,
gather_generation_logits=False,
dtype=None,
num_heads=None,
mapping=Mapping(),
opt_num_tokens=None,
prompt_embedding_table_size: int = 0,
position_encoding_2d=False,
use_lora_plugin: bool = False,
lora_target_modules: List[str] = None,
speculative_decoding_draft_tokens_external: bool = False,
spec_decoding_is_generation_length_variable: bool = False,
max_draft_len=0,
multiple_profiles: bool = False,
streamingllm: bool = False,
opt_batch_size=None):
enable_ctx_gen_opt_profiles = GenerationMixin.has_ctx_gen_opt_profiles(
use_gpt_attention_plugin, use_gemm_plugin, remove_input_padding,
paged_kv_cache)
num_profiles, ranges = GenerationMixin.get_profiles_ranges(
max_batch_size=max_batch_size,
max_beam_width=max_beam_width,
max_input_len=max_input_len,
max_num_tokens=max_num_tokens,
max_draft_len=max_draft_len,
opt_batch_size=opt_batch_size,
opt_num_tokens=opt_num_tokens,
enable_ctx_gen_opt_profiles=enable_ctx_gen_opt_profiles,
multiple_profiles=multiple_profiles)
bb_range = ranges['bb_range']
bbd_range = ranges['bbd_range']
inlen_range = ranges['inlen_range']
num_tokens_range = ranges['num_tokens_range']
position_ids_inlen_range = ranges['position_ids_inlen_range']
tokens_per_engine_step_range = ranges['tokens_per_engine_step_range']
position_ids_num_tokens_range = num_tokens_range
input_ids = None
position_ids = None
hidden_states = None
if remove_input_padding:
if mapping.is_first_pp_rank():
input_ids = Tensor(name='input_ids',
dtype=trt.int32,
shape=[-1],
dim_range=OrderedDict([
('num_tokens', num_tokens_range),
]))
if position_encoding_2d:
position_ids = Tensor(
name='position_ids',
dtype=trt.int32,
shape=[2, -1],
dim_range=OrderedDict([
('2', [2] * num_profiles),
('position_ids_num_tokens_range',
position_ids_num_tokens_range),
]),
)
else:
position_ids = Tensor(
name='position_ids',
dtype=trt.int32,
shape=[-1],
dim_range=OrderedDict([
('position_ids_num_tokens_range',
position_ids_num_tokens_range),
]),
)
else:
assert dtype is not None
assert num_heads is not None
hidden_states = Tensor(
name='hidden_states_input',
dtype=dtype,
shape=[-1, hidden_size],
dim_range=OrderedDict([
('num_tokens', num_tokens_range),
('hidden_size', [hidden_size] * num_profiles),
]),
)
else:
if mapping.is_first_pp_rank():
input_ids = Tensor(name='input_ids',
dtype=trt.int32,
shape=[-1, -1],
dim_range=OrderedDict([
('batch_size_beam_width', bb_range),
('input_len', inlen_range),
]))
if position_encoding_2d:
position_ids = Tensor(
name='position_ids',
dtype=trt.int32,
shape=[-1, 2, -1],
dim_range=OrderedDict([
('batch_size_beam_width', bb_range),
('2', [2] * num_profiles),
('position_ids_inlen_range',
position_ids_inlen_range),
]),
)
else:
position_ids = Tensor(
name='position_ids',
dtype=trt.int32,
shape=[-1, -1],
dim_range=OrderedDict([
('batch_size_beam_width', bb_range),
('position_ids_inlen_range',
position_ids_inlen_range),
]),
)
else:
assert dtype is not None
assert num_heads is not None
hidden_states = Tensor(
name='hidden_states_input',
dtype=dtype,
shape=[-1, -1, hidden_size],
dim_range=OrderedDict([
('batch_size_beam_width', bb_range),
('input_len', inlen_range),
('hidden_size', [hidden_size] * num_profiles),
]),
)
if mapping.tp_size > 1:
current_all_reduce_helper().set_workspace_tensor(
mapping, num_profiles)
prompt_embedding_table = None
tasks = None
prompt_vocab_size = None
if prompt_embedding_table_size > 0:
_p_embedding_range = [
1, prompt_embedding_table_size // 2, prompt_embedding_table_size
]
p_embedding_range = [_p_embedding_range] * num_profiles
prompt_embedding_table = Tensor(name='prompt_embedding_table',
dtype=dtype,
shape=[-1, hidden_size],
dim_range=OrderedDict([
('prompt_embedding_table_size',
p_embedding_range),
('hidden_size',
[hidden_size] * num_profiles),
]))
if remove_input_padding:
tasks = Tensor(name='tasks',
dtype=trt.int32,
shape=[-1],
dim_range=OrderedDict([
('input_len_task', num_tokens_range),
]))
else:
tasks = Tensor(name='tasks',
dtype=trt.int32,
shape=[-1, 1],
dim_range=OrderedDict([
('batch_size_beam_width', bb_range),
('broadcast_dim', [1] * num_profiles),
]))
prompt_vocab_size = Tensor(name='prompt_vocab_size',
dtype=trt.int32,
shape=[1],
dim_range=OrderedDict([
('size', [1] * num_profiles)
]))
lora_weights_pointers = None
lora_ranks = None
if use_lora_plugin:
lora_weights_pointers = []
lora_ranks = []
layers_range = mapping.pp_layers(num_layers)
for i in layers_range:
lora_weight_pointer_dict = {}
lora_rank_dict = {}
for lora_module in lora_target_modules:
lora_weight_pointer = Tensor(
name=f'{lora_module}_lora_weights_pointers_{i}',
dtype=trt.int64,
shape=[-1, 2],
dim_range=OrderedDict([
('batch_size_beam_width', bb_range),
('in_out', [2] * num_profiles),
]))
lora_weight_pointer_dict.update({
f"{lora_module}_lora_weights_pointers":
lora_weight_pointer
})
lora_rank = Tensor(
name=f'{lora_module}_lora_ranks_{i}',
dtype=trt.int32,
shape=[-1],
dim_range=OrderedDict([('batch_size_beam_width',
bb_range)]),
)
lora_rank_dict.update(
{f"{lora_module}_lora_ranks": lora_rank})
lora_weights_pointers.append(lora_weight_pointer_dict)
lora_ranks.append(lora_rank_dict)
last_token_ids = None
if mapping.is_last_pp_rank() and not gather_context_logits:
if not remove_input_padding and max_draft_len > 0:
last_token_ids = Tensor(
name='last_token_ids',
dtype=trt.int32,
shape=[-1, -1],
dim_range=OrderedDict([
('batch_size_beam_width', bb_range),
('last_token_ids', tokens_per_engine_step_range),
]),
)
else:
last_token_ids = Tensor(
name='last_token_ids',
dtype=trt.int32,
shape=[-1],
dim_range=OrderedDict([
('batch_size_last_token_ids', bbd_range),
]),
)
spec_decoding_params = None
# Use positional offsets and packed mask only when not in SpS spec decoding
if speculative_decoding_draft_tokens_external == False and max_draft_len > 0:
tokens_per_engine_step = max_draft_len + 1
# 32 bits packed mask aligned.
num_packed_masks = (tokens_per_engine_step + 32 - 1) // 32
packed_mask_len_range = [[0, 1, num_packed_masks]] * num_profiles
# total number of spec decoding tokens for all sequences (sequence length can be variable).
num_gen_tokens_range = [
GenerationMixin.default_range(
max_batch_size * max_beam_width * tokens_per_engine_step,
min_range=0)
] * num_profiles
bb_range_0 = [[0] + bbr[1:] for bbr in bb_range]
# support variable sequence lengths for medusa.
spec_decoding_generation_lengths = Tensor(
name='spec_decoding_generation_lengths',
dtype=trt.int32,
shape=[-1],
dim_range=OrderedDict([('batch_size_beam_width_0', bb_range_0)
]),
)
# position offsets that are fixed during the whole session.
# it will be shared among all sequences.
spec_decoding_position_offsets = Tensor(
name='spec_decoding_position_offsets',
dtype=trt.int32,
shape=[-1, -1],
dim_range=OrderedDict([
('batch_size_beam_width_0', bb_range_0),
('spec_decoding_position_ids_dim0',
tokens_per_engine_step_range),
]),
)
spec_decoding_packed_mask = Tensor(
name='spec_decoding_packed_mask',
dtype=trt.int32,
shape=[-1, -1],
dim_range=OrderedDict([
('spec_decoding_packed_mask_dim0', num_gen_tokens_range),
('spec_decoding_packed_mask_dim1', packed_mask_len_range),
]),
)
spec_decoding_params = SpecDecodingParams(
spec_decoding_is_generation_length_variable=
spec_decoding_is_generation_length_variable,
spec_decoding_max_generation_length=tokens_per_engine_step,
spec_decoding_generation_lengths=
spec_decoding_generation_lengths,
spec_decoding_position_offsets=spec_decoding_position_offsets,
spec_decoding_packed_mask=spec_decoding_packed_mask)
basic_inputs = {
'input_ids': input_ids,
'hidden_states_input': hidden_states,
'position_ids': position_ids,
'last_token_ids': last_token_ids,
'prompt_embedding_table': prompt_embedding_table,
'tasks': tasks,
'prompt_vocab_size': prompt_vocab_size,
'lora_ranks': lora_ranks,
'lora_weights_pointers': lora_weights_pointers,
'spec_decoding_params': spec_decoding_params
}
attention_inputs = self.prepare_attention_inputs(
max_batch_size=max_batch_size,
max_beam_width=max_beam_width,
max_input_len=max_input_len,
max_seq_len=max_seq_len,
num_kv_heads=num_kv_heads,
head_size=head_size,
num_layers=num_layers,
kv_dtype=kv_dtype,
num_profiles=num_profiles,
enable_ctx_gen_opt_profiles=enable_ctx_gen_opt_profiles,
remove_input_padding=remove_input_padding,
use_gpt_attention_plugin=use_gpt_attention_plugin,
paged_kv_cache=paged_kv_cache,
tokens_per_block=tokens_per_block,
mapping=mapping,
streamingllm=streamingllm,
opt_batch_size=opt_batch_size)
for key, value in attention_inputs.items():
basic_inputs[key] = value
return basic_inputs
|