[megatron] Qwen3.5 supports larger num_query_groups (mcore 0.16)#8253
[megatron] Qwen3.5 supports larger num_query_groups (mcore 0.16)#8253Jintao-Huang merged 4 commits intomodelscope:mainfrom
Conversation
Summary of ChangesHello, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request significantly enhances the flexibility and scalability of the Qwen3.5 model within Megatron-LM by allowing more diverse configurations of query groups in a tensor-parallel setup. The changes address the challenge of distributing query, key, and value heads efficiently across multiple devices, particularly when the number of query groups is less than the tensor parallel size. This improvement is crucial for optimizing the performance and resource utilization of large language models during distributed training. Highlights
🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console. Changelog
Activity
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
There was a problem hiding this comment.
Code Review
This pull request aims to add support for Grouped-Query Attention configurations where num_query_groups is smaller than the tensor parallel world size, by porting changes from an upstream Megatron-LM pull request. The changes introduce logic to gather and slice tensors across tensor parallel ranks. My review identified two critical potential issues in the new logic. First, a missing assertion for a divisibility requirement could lead to out-of-bounds memory access. Second, an incorrect calculation for slicing the query tensor could result in dropping query heads and incorrect attention computation. Both issues need to be addressed to ensure correctness.
|
/gemini review |
There was a problem hiding this comment.
Code Review
This pull request adds support for configurations where num_query_groups is smaller than the tensor parallel world size in Qwen3.5 models, aligning with an update in mcore 0.16. The implementation involves adding logic to correctly handle the distributed query, key, and value projections across multiple tensor parallel ranks. The corresponding validation check that prevented this configuration has been correctly removed. The logic appears sound, but there is a minor opportunity to improve code clarity by refactoring a repeated calculation.
NVIDIA/Megatron-LM#2565