Renew TPU executor

This commit is contained in:
Woosuk Kwon 2024-04-16 09:42:15 +00:00
parent 6692a30266
commit b3b89cf755

View File

@ -1,10 +1,6 @@
import os from typing import Dict, List, Set, Tuple
from typing import Dict, List, Optional
from vllm.config import (CacheConfig, DeviceConfig, LoRAConfig, ModelConfig,
ParallelConfig, SchedulerConfig, VisionLanguageConfig)
from vllm.executor.executor_base import ExecutorAsyncBase, ExecutorBase from vllm.executor.executor_base import ExecutorAsyncBase, ExecutorBase
from vllm.executor.utils import check_block_size_valid
from vllm.logger import init_logger from vllm.logger import init_logger
from vllm.lora.request import LoRARequest from vllm.lora.request import LoRARequest
from vllm.sequence import SamplerOutput, SequenceGroupMetadata from vllm.sequence import SamplerOutput, SequenceGroupMetadata
@ -15,31 +11,13 @@ logger = init_logger(__name__)
class TPUExecutor(ExecutorBase): class TPUExecutor(ExecutorBase):
def __init__( def _init_executor(self) -> None:
self, assert not self.speculative_config, (
model_config: ModelConfig, "Speculative decoding not yet supported for TPU backend")
cache_config: CacheConfig,
parallel_config: ParallelConfig,
scheduler_config: SchedulerConfig,
device_config: DeviceConfig,
lora_config: Optional[LoRAConfig],
vision_language_config: Optional[VisionLanguageConfig],
) -> None:
self.model_config = model_config
self.cache_config = cache_config
self.parallel_config = parallel_config
self.scheduler_config = scheduler_config
self.device_config = device_config
assert lora_config is None, "LoRA is not supported for TPU backend."
self.vision_language_config = vision_language_config
# Instantiate the worker and load the model to the device. # Instantiate the worker and load the model to the device.
self._init_worker() self._init_worker()
# Profile the memory usage and initialize the cache.
self._init_cache()
def _init_worker(self): def _init_worker(self):
os.environ["PJRT_DEVICE"] = "TPU"
from vllm.worker.tpu_worker import TPUWorker from vllm.worker.tpu_worker import TPUWorker
assert self.parallel_config.world_size == 1, ( assert self.parallel_config.world_size == 1, (
@ -53,33 +31,24 @@ class TPUExecutor(ExecutorBase):
self.driver_worker.init_device() self.driver_worker.init_device()
self.driver_worker.load_model() self.driver_worker.load_model()
def _init_cache(self) -> None: def initialize_cache(
"""Profiles the memory usage and initializes the KV cache. self,
num_gpu_blocks: int,
num_cpu_blocks: int,
) -> None:
"""Initialize the KV cache by invoking the underlying worker."""
# NOTE: This is logged in the executor because there can be >1 worker
# with other executors. We could log in the engine level, but work
# remains to abstract away the device for non-GPU configurations.
logger.info(f"# TPU blocks: {num_gpu_blocks}, "
f"# CPU blocks: {num_cpu_blocks}")
self.driver_worker.initialize_cache(num_gpu_blocks, num_cpu_blocks)
The engine first profiles the existing memory usage. def determine_num_available_blocks(self) -> Tuple[int, int]:
Then, it allocates the remaining memory for KV blocks. """Determine the number of available KV blocks by invoking the
underlying worker.
.. tip::
You may limit the usage of TPU HBM by adjusting the
`gpu_memory_utilization` parameter.
""" """
# Get the maximum number of blocks that can be allocated on TPU. return self.driver_worker.determine_num_available_blocks()
num_tpu_blocks = self.driver_worker.profile_num_available_blocks(
block_size=self.cache_config.block_size,
gpu_memory_utilization=self.cache_config.gpu_memory_utilization,
cache_dtype=self.cache_config.cache_dtype,
)
logger.info(f"# TPU blocks: {num_tpu_blocks}")
check_block_size_valid(num_tpu_blocks, self.cache_config.block_size,
self.model_config.max_model_len)
self.cache_config.num_gpu_blocks = num_tpu_blocks
self.cache_config.num_cpu_blocks = 0
# Allocate the KV cache.
self.driver_worker.allocate_kv_cache(self.cache_config)
# Warm up the model.
self.driver_worker.warm_up_model()
def execute_model( def execute_model(
self, self,
@ -102,7 +71,7 @@ class TPUExecutor(ExecutorBase):
def remove_lora(self, lora_id: int) -> bool: def remove_lora(self, lora_id: int) -> bool:
raise NotImplementedError("LoRA is not implemented for TPU backend.") raise NotImplementedError("LoRA is not implemented for TPU backend.")
def list_loras(self) -> List[int]: def list_loras(self) -> Set[int]:
raise NotImplementedError("LoRA is not implemented for TPU backend.") raise NotImplementedError("LoRA is not implemented for TPU backend.")
def check_health(self) -> None: def check_health(self) -> None:
@ -125,7 +94,3 @@ class TPUExecutorAsync(TPUExecutor, ExecutorAsyncBase):
blocks_to_swap_out=blocks_to_swap_out, blocks_to_swap_out=blocks_to_swap_out,
blocks_to_copy=blocks_to_copy) blocks_to_copy=blocks_to_copy)
return output return output
async def check_health_async(self) -> None:
# TPUExecutor will always be healthy as long as it's running.
return