Skip to content

Commit 5473457

Browse files
committed
Fix typo
Signed-off-by: Yong Hoon Shin <[email protected]>
1 parent 6788469 commit 5473457

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/compile/test_decorator.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,8 +159,8 @@ def __init__(self,
159159
prefix: str = '',
160160
**kwargs) -> None:
161161
super().__init__()
162-
self.mod1 = B(vllm_config=vllm_config, perfix=prefix, **kwargs)
163-
self.mod2 = B(vllm_config=vllm_config, perfix=prefix, **kwargs)
162+
self.mod1 = B(vllm_config=vllm_config, prefix=prefix, **kwargs)
163+
self.mod2 = B(vllm_config=vllm_config, prefix=prefix, **kwargs)
164164

165165
def forward(self, x: torch.Tensor) -> torch.Tensor:
166166
x = self.mod1(x)

0 commit comments

Comments
 (0)