### What this PR does / why we need it?
Support triton causal_conv1d_fn ops.
### Does this PR introduce _any_ user-facing change?
No.
### How was this patch tested?
CI passed with new added/existing test.
- vLLM version: v0.12.0
- vLLM main:
ad32e3e19c
---------
Signed-off-by: QilaiZhang <245706640@qq.com>
15 lines
891 B
Python
15 lines
891 B
Python
import vllm.model_executor.layers.mamba.ops.causal_conv1d
|
|
|
|
from vllm_ascend.ops.triton.fla.chunk import chunk_gated_delta_rule
|
|
from vllm_ascend.ops.triton.fla.layernorm_guard import LayerNormFn
|
|
from vllm_ascend.ops.triton.fla.sigmoid_gating import \
|
|
fused_recurrent_gated_delta_rule_fwd_kernel
|
|
from vllm_ascend.ops.triton.mamba.causal_conv1d import (
|
|
causal_conv1d_fn, causal_conv1d_update_npu)
|
|
|
|
vllm.model_executor.layers.mamba.ops.causal_conv1d.causal_conv1d_update = causal_conv1d_update_npu
|
|
vllm.model_executor.layers.mamba.ops.causal_conv1d.causal_conv1d_fn = causal_conv1d_fn
|
|
vllm.model_executor.layers.fla.ops.fused_recurrent.fused_recurrent_gated_delta_rule_fwd_kernel = fused_recurrent_gated_delta_rule_fwd_kernel
|
|
vllm.model_executor.layers.fla.ops.layernorm_guard.LayerNormFn = LayerNormFn
|
|
vllm.model_executor.layers.fla.ops.chunk_gated_delta_rule = chunk_gated_delta_rule
|