Files
vllm/tests/compile
8521175db9 fix: migrate gpt_oss_20b moe_backend from env var to model kwargs
- Add `flashinfer_trtllm_afp8` and `flashinfer_cutlass_afp8` to MoEBackend
  Literal in vllm/config/kernel.py so they are valid kernel_config values
- Attach `moe_backend="flashinfer_trtllm_afp8"` to the gpt_oss_20b model
  object in models.py (conditionally on Blackwell) instead of setting the
  env var in the test runner
- Remove the TODO env var block from conftest.py

Co-authored-by: GitHub Copilot

Agent-Logs-Url: https://github.com/vllm-project/vllm/sessions/8abf6884-3fc2-45fb-b5c8-1ba82b14c841

Co-authored-by: ProExpertProg <11367180+ProExpertProg@users.noreply.github.com>
2026-04-29 18:15:03 +00:00
..

compile test folder structure

  • compile/test_*.py : various unit tests meant for testing particular code path/features. Future tests are most likely added here. New test files added here will be included in CI automatically
  • compile/fullgraph/ : full model tests, including all tests previously in compile/piecewise. These tests do not target particular features. New test files added here will be included in CI automatically
  • compile/distributed/ : tests that require multiple GPUs. New test files added here will NOT be included in CI automatically as these tests generally need to be manually configured to run in runners with particular number/type of GPUs.