### What this PR does / why we need it? This PR integrates the `npu_add_rms_norm` fused kernel for RMSNorm operations with residual connections on 310P devices. This change optimizes the computation by replacing a two-step process (manual residual addition followed by RMSNorm) with a single, more efficient fused operation. This is needed to improve the performance of models utilizing RMSNorm with residual connections on the 310P architecture. Fixes # ### Does this PR introduce _any_ user-facing change? No, this PR introduces an internal optimization and does not change any user-facing APIs or behaviors. ### How was this patch tested? This patch was tested with updated unit tests (`test_RMSNorm_forward_310p`) that mock the `npu_add_rms_norm` operation to verify the correctness of the fused kernel integration. --------- Signed-off-by: Tflowers-0129 <2906339855@qq.com>
86 lines
3.1 KiB
Python
86 lines
3.1 KiB
Python
from unittest.mock import MagicMock, patch
|
|
|
|
import pytest
|
|
import torch
|
|
from vllm.config import set_current_vllm_config
|
|
from vllm.model_executor.layers.layernorm import RMSNorm
|
|
|
|
from vllm_ascend.utils import enable_custom_op
|
|
from vllm_ascend.utils import is_310p as is_310p_hw
|
|
|
|
enable_custom_op()
|
|
|
|
|
|
@pytest.fixture
|
|
def dummy_tensor():
|
|
return torch.randn(4, 8, dtype=torch.float16)
|
|
|
|
|
|
def mock_rms_norm(x, weight, eps):
|
|
return x + 1, None
|
|
|
|
|
|
def mock_add_rms_norm(x, residual, weight, eps):
|
|
return 2 * x, None, 2 * residual
|
|
|
|
|
|
def mock_add_rms_norm_bias(x, residual, weight, bias, eps):
|
|
if bias is None:
|
|
return 2 * x, None, 2 * residual
|
|
else:
|
|
return 2 * x + bias, None, 2 * residual
|
|
|
|
|
|
@pytest.fixture(autouse=True)
|
|
def default_vllm_config():
|
|
mock_config = MagicMock()
|
|
mock_config.compilation_config.custom_ops = ["all"]
|
|
|
|
with set_current_vllm_config(mock_config):
|
|
yield mock_config
|
|
|
|
|
|
@pytest.mark.skip("Skip as register_kernels has NPU SocName checking in CANN 8.5.0.")
|
|
@pytest.mark.skipif(is_310p_hw(), reason="non_310P device unittest case.")
|
|
@pytest.mark.parametrize("residual", [None, torch.randn(4, 8, dtype=torch.float32)])
|
|
@patch("torch_npu.npu_rms_norm", side_effect=mock_rms_norm)
|
|
@patch("torch_npu.npu_add_rms_norm", side_effect=mock_add_rms_norm)
|
|
@patch("torch.ops._C_ascend.npu_add_rms_norm_bias", side_effect=mock_add_rms_norm_bias)
|
|
def test_RMSNorm_forward(
|
|
mock_add_rms_norm_bias, mock_add_rmsnorm, mock_rmsnorm, residual, dummy_tensor, default_vllm_config
|
|
):
|
|
layer = RMSNorm(hidden_size=8, eps=1e-05)
|
|
if residual is not None:
|
|
out_x, out_residual = layer.forward_oot(dummy_tensor, residual)
|
|
expected_out_x = 2 * dummy_tensor
|
|
expected_out_residual = 2 * residual
|
|
mock_add_rms_norm_bias.assert_called_once()
|
|
assert torch.allclose(out_x, expected_out_x)
|
|
assert torch.allclose(out_residual, expected_out_residual)
|
|
else:
|
|
out_x = layer.forward_oot(dummy_tensor, residual)
|
|
expected_out_x = dummy_tensor + 1
|
|
|
|
mock_rmsnorm.assert_called_once()
|
|
assert torch.allclose(out_x, expected_out_x)
|
|
|
|
|
|
@pytest.mark.skipif(not is_310p_hw(), reason="310P device unittest case.")
|
|
@pytest.mark.parametrize("residual", [None, torch.randn(4, 8, dtype=torch.float16)])
|
|
@patch("torch_npu.npu_rms_norm", side_effect=mock_rms_norm)
|
|
@patch("torch_npu.npu_add_rms_norm", side_effect=mock_add_rms_norm)
|
|
def test_RMSNorm_forward_310p(mock_add_rmsnorm, mock_rmsnorm, residual, dummy_tensor, default_vllm_config):
|
|
layer = RMSNorm(hidden_size=8, eps=1e-05)
|
|
if residual is not None:
|
|
out_x, out_residual = layer.forward_oot(dummy_tensor, residual)
|
|
expected_out_x = 2 * dummy_tensor
|
|
expected_out_residual = 2 * residual
|
|
mock_add_rmsnorm.assert_called_once()
|
|
assert torch.allclose(out_x, expected_out_x)
|
|
assert torch.allclose(out_residual, expected_out_residual)
|
|
else:
|
|
out_x = layer.forward_oot(dummy_tensor, residual)
|
|
expected_out_x = dummy_tensor + 1
|
|
mock_rmsnorm.assert_called_once()
|
|
assert torch.allclose(out_x, expected_out_x)
|