vllm.core.block.naive_block
NaiveBlock ¶
Bases: Block
An implementation of the Block class that does not support prefix caching.
The NaiveBlock class represents a block of token IDs with a fixed size. It provides methods for appending token IDs to the block and manages copy-on -write operations when necessary.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
prev_block | Block | The previous block in the sequence. | required |
token_ids | List[int] | The initial token IDs to be stored in the block. | required |
block_size | int | The maximum number of token IDs that can be stored in the block. | required |
allocator | BlockAllocator | The block allocator associated with this block. | required |
block_id | Optional[int] | The physical block index of this block. Defaults to None, which means no allocation has been made. | None |
_cow_target | Optional[Block] | The copy-on-write target block. If not provided, it defaults to self. | None |
Source code in vllm/core/block/naive_block.py
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 |
|
__init__ ¶
__init__(
prev_block: Optional[Block],
token_ids: List[int],
block_size: int,
allocator: BlockAllocator,
block_id: Optional[int] = None,
_cow_target: Optional[Block] = None,
extra_hash: Optional[int] = None,
)
Source code in vllm/core/block/naive_block.py
_append_token_ids_no_cow ¶
append_token_ids ¶
Appends the given token IDs to the block and performs a copy-on-write if necessary.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
token_ids | Optional[List[int]] | The token IDs to be appended to the block. | required |
Source code in vllm/core/block/naive_block.py
NaiveBlockAllocator ¶
Bases: BlockAllocator
A simple block allocator that manages blocks of memory without prefix caching.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
create_block | Factory | A factory function for creating new blocks. This is used when a NaiveBlockAllocator is composed within a prefix caching allocator -- the naive block allocator must construct prefix caching blocks (but shouldn't know anything else about them). | required |
num_blocks | int | The total number of blocks to manage. | required |
block_size | int | The size of each block in tokens. | required |
block_ids | Optional[Iterable[int]] | An optional iterable of block IDs. If not provided, block IDs will be assigned sequentially from 0 to num_blocks - 1. | None |
Source code in vllm/core/block/naive_block.py
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 |
|
_block_pool instance-attribute
¶
_block_pool = BlockPool(
_block_size,
create_block,
self,
num_blocks * extra_factor,
)
__init__ ¶
__init__(
create_block: Factory,
num_blocks: int,
block_size: int,
block_ids: Optional[Iterable[int]] = None,
block_pool: Optional[BlockPool] = None,
)
Source code in vllm/core/block/naive_block.py
_free_block_id ¶
Source code in vllm/core/block/naive_block.py
allocate_immutable_block ¶
allocate_immutable_block(
prev_block: Optional[Block],
token_ids: List[int],
extra_hash: Optional[int] = None,
device: Optional[Device] = None,
) -> Block
Allocates a new immutable block with the given token IDs, linked to the previous block.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
prev_block | Optional[Block] | The previous block in the sequence. If None, then the block to be allocated is the first block in the sequence. | required |
token_ids | List[int] | The token IDs to be stored in the new block. | required |
Returns:
Name | Type | Description |
---|---|---|
Block | Block | The newly allocated immutable block. |
Source code in vllm/core/block/naive_block.py
allocate_immutable_blocks ¶
allocate_immutable_blocks(
prev_block: Optional[Block],
block_token_ids: List[List[int]],
extra_hash: Optional[int] = None,
device: Optional[Device] = None,
) -> List[Block]
Source code in vllm/core/block/naive_block.py
allocate_mutable_block ¶
allocate_mutable_block(
prev_block: Optional[Block],
extra_hash: Optional[int] = None,
device: Optional[Device] = None,
) -> Block
Allocates a new mutable block, linked to the previous block.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
prev_block | Optional[Block] | The previous block in the sequence. If None, then the block to be allocated is the first block in the sequence. | required |
Returns:
Name | Type | Description |
---|---|---|
Block | Block | The newly allocated mutable block. |
Source code in vllm/core/block/naive_block.py
clear_copy_on_writes ¶
cow_block_if_not_appendable ¶
Performs a copy-on-write operation on the given block if it is not appendable.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
block | Block | The block to check for copy-on-write. | required |
Returns:
Name | Type | Description |
---|---|---|
BlockId | BlockId | The block index of the new block if a copy-on-write operation was performed, or the original block index if no copy-on-write was necessary. |
Source code in vllm/core/block/naive_block.py
find_cached_blocks_prefix ¶
fork ¶
Creates a new sequence of blocks that shares the same underlying memory as the original sequence.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
last_block | Block | The last block in the original sequence. | required |
Returns:
Type | Description |
---|---|
List[Block] | List[Block]: The new sequence of blocks that shares the same memory as the original sequence. |
Source code in vllm/core/block/naive_block.py
free ¶
get_common_computed_block_ids ¶
Determine blocks that can be skipped in prefill.
Since the naive allocator does not support prefix caching, always return an empty list.
Source code in vllm/core/block/naive_block.py
get_num_full_blocks_touched ¶
Returns the number of full blocks that will be touched by swapping in/out.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
blocks | List[Block] | List of blocks to be swapped. | required |
Returns: int: the number of full blocks that will be touched by swapping in/out the given blocks. Non full blocks are ignored when deciding the number of blocks to touch.
Source code in vllm/core/block/naive_block.py
get_physical_block_id ¶
Returns the zero-offset block id on certain block allocator given the absolute block id.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
absolute_id | int | The absolute block id for the block | required |
Returns:
Name | Type | Description |
---|---|---|
int | int | The zero-offset block id on certain device. |
Source code in vllm/core/block/naive_block.py
mark_blocks_as_accessed ¶
Mark blocks as accessed, used in prefix caching.
Since the naive allocator does not implement prefix caching, we do nothing.
mark_blocks_as_computed ¶
Mark blocks as computed, used in prefix caching.
Since the naive allocator does not implement prefix caching, we do nothing.