Commit 15883da4 authored by fanwl's avatar fanwl Committed by zhangzbb
Browse files

fused_add_rms_norm use lightop

parent bcb2ba6c
......@@ -57,9 +57,9 @@ def fused_add_rms_norm(
return rms_norm_batch_invariant(
x + residual, weight, variance_epsilon
), x + residual
# if envs.VLLM_USE_OPT_OP:
if False:
ops.fused_add_rms_norm_opt(
if envs.VLLM_USE_OPT_OP:
from lightop import fused_add_rms_norm
fused_add_rms_norm(
x,
residual,
weight,
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment