[tpu][misc] fix typo (#8260)

This commit is contained in:
youkaichao
2024-09-06 22:40:46 -07:00
committed by GitHub
parent 795b662cff
commit ce2702a923
3 changed files with 5 additions and 5 deletions

View File

@@ -2,7 +2,7 @@ from typing import Optional
import torch
from vllm.compilation.wrapper import TorchCompileWrapperWithCustomDispacther
from vllm.compilation.wrapper import TorchCompileWrapperWithCustomDispatcher
class MyMod(torch.nn.Module):
@@ -13,7 +13,7 @@ class MyMod(torch.nn.Module):
return x * 2
class MyWrapper(TorchCompileWrapperWithCustomDispacther):
class MyWrapper(TorchCompileWrapperWithCustomDispatcher):
def __init__(self, model):
self.model = model