From 5a523754d61ee3656bb0d69c8d528c0c17e8b524 Mon Sep 17 00:00:00 2001 From: youkaichao Date: Wed, 8 Jan 2025 21:23:46 +0800 Subject: [PATCH] fix Signed-off-by: youkaichao --- vllm/_ipex_ops.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/vllm/_ipex_ops.py b/vllm/_ipex_ops.py index 28b804f765a3a..81cffe32967ea 100644 --- a/vllm/_ipex_ops.py +++ b/vllm/_ipex_ops.py @@ -25,10 +25,6 @@ def _reshape_activation_tensor( x2 = x2.reshape(num, d) return x1, x2 - @staticmethod - def silu_and_mul(out: torch.Tensor, x: torch.Tensor) -> None: - ipex.llm.functional.silu_and_mul(x, out) - @staticmethod def gelu_and_mul(out: torch.Tensor, x: torch.Tensor) -> None: ipex.llm.functional.gelu_and_mul(x, out)