Skip to content

Commit 6d31123

Browse files
committed
move files
Signed-off-by: Sage Moore <[email protected]>
1 parent ec9f13d commit 6d31123

File tree

5 files changed

+4
-4
lines changed

5 files changed

+4
-4
lines changed

vllm/forward_context.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
import vllm.envs as envs
1414
from vllm.config import CUDAGraphMode, ParallelConfig, VllmConfig
1515
from vllm.logger import init_logger
16-
from vllm.compilation.ubatch_utils import (UbatchSlice, UBatchSlices)
16+
from vllm.v1.worker.ubatch_utils import (UbatchSlice, UBatchSlices)
1717

1818
if TYPE_CHECKING:
1919
from vllm.attention.backends.abstract import AttentionMetadata

vllm/v1/attention/backends/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
from vllm.logger import init_logger
3030
from vllm.v1.kv_cache_interface import AttentionSpec
3131

32-
from vllm.compilation.ubatch_utils import UbatchSlice
32+
from vllm.v1.worker.ubatch_utils import UbatchSlice
3333

3434
logger = init_logger(__name__)
3535
_KV_CACHE_LAYOUT_OVERRIDE = None

vllm/v1/worker/gpu_model_runner.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
from vllm.compilation.counter import compilation_counter
2424
from vllm.compilation.cuda_graph import CUDAGraphWrapper
2525
from vllm.compilation.monitor import set_cudagraph_capturing_enabled
26-
from vllm.compilation.ubatch_utils import UbatchSlice, UBatchSlices
27-
from vllm.compilation.ubatch_wrapper import UBatchWrapper
26+
from vllm.v1.worker.ubatch_utils import UbatchSlice, UBatchSlices
27+
from vllm.v1.worker.gpu_ubatch_wrapper import UBatchWrapper
2828
from vllm.config import (CompilationLevel, CUDAGraphMode, VllmConfig,
2929
get_layers_from_vllm_config, update_config)
3030
from vllm.distributed.eplb.eplb_state import EplbState
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)