Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -344,6 +344,7 @@ if(BASIC_KERNELS_ENABLED)
set(VLLM_EXT_SRC
"csrc/cache.cpp"
"csrc/layernorm.cpp"
"csrc/layernorm_quant.cpp"
Copy link

Copilot AI Mar 6, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

CMakeLists.txt adds csrc/layernorm_quant.cpp to VLLM_EXT_SRC, but that file does not exist in the repository (and rms_norm_static_fp8_quant / fused_add_rms_norm_static_fp8_quant have no definitions elsewhere under csrc/). This will break the build/link step; add the missing source file or remove the entry until the implementation is included.

Suggested change
"csrc/layernorm_quant.cpp"

Copilot uses AI. Check for mistakes.
"csrc/activation.cpp"
"csrc/pos_encoding_kernels.cpp"
"csrc/torch_bindings.cpp"
Expand Down
Loading