[AutoParallel] Fit allreduce_matmul_grad_overlapping when using master grad #61865
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
PR types
Bug fixes
PR changes
Others
Description
当下 allreduce_matmul_grad_overlapping 和 master_grad 同时开启的情况下,会出现 cast op 位置错误的情况,导致 cast op 将没有初始化的tensor作为输入,进而导致选Kernel报错:
为了适配这种情况,我们需要需要将依赖 dy 的 op 移动到 allreduce_matmul_grad_overlapping 的第二个 matmul 之后:
依赖环境:
经过测试,llama 模型的loss和pr修改前可以对齐