mirror of
https://git.datalinker.icu/vllm-project/vllm.git
synced 2025-12-09 02:15:01 +08:00
13 lines
320 B
Python
13 lines
320 B
Python
import cacheflow.model_executor.parallel_utils.parallel_state
|
|
import cacheflow.model_executor.parallel_utils.tensor_parallel
|
|
import cacheflow.model_executor.parallel_utils.utils
|
|
|
|
# Alias parallel_state as mpu, its legacy name
|
|
mpu = parallel_state
|
|
|
|
__all__ = [
|
|
"parallel_state",
|
|
"tensor_parallel",
|
|
"utils",
|
|
]
|