[Mamba] Add float16 support for SSM cache dtype (#18444)

This commit is contained in:
danielafrimi
2026-02-12 05:27:47 +02:00
committed by GitHub
parent 7e262b6496
commit e422bcaed8
2 changed files with 2 additions and 2 deletions

View File

@@ -211,7 +211,7 @@ FP4_GEMM_RUNNER_BACKEND_CHOICES = [
"flashinfer_trtllm",
]
MAMBA_SSM_DTYPE_CHOICES = ["float32", "bfloat16"]
MAMBA_SSM_DTYPE_CHOICES = ["float32", "bfloat16", "float16"]
MAMBA_SCHEDULER_STRATEGY_CHOICES = ["auto", "no_buffer", "extra_buffer"]