-
Notifications
You must be signed in to change notification settings - Fork 5.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Auto Parallel] Add zero h1 pipeline scheduling for paddle #62865
Changes from 33 commits
81fa843
09731e2
63355db
c7483fc
9d9b0a7
e52301b
b4ee57d
11d241d
c87f313
ed96dfc
617d248
ea00f08
37e8ca0
8f4867e
2962d82
001e40c
0bd16fb
69a56b3
e7d7f05
29d3699
6ba3ec5
fe26a06
e49889f
3fb3235
4f17c40
f405be1
92f31de
572a0b6
4911d03
2c43ad4
7a6b150
6b70ad5
6acb7f9
b7f8abd
8a4dad3
5f0dd0c
96b0895
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,132 @@ | ||
# Copyright (c) 2024 PaddlePaddle Authors. All Rights Reserved. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
import logging | ||
|
||
from paddle.base import core | ||
|
||
from ...utils.log_utils import get_logger | ||
from ..pass_base import register_pass | ||
from ..pass_utils import _program_for_zero_bubble, split_matmul_grad_to_matmul | ||
from .pipeline_pass_base import PipelinePassBase | ||
|
||
FORWARD = "forward" | ||
BACKWARD = "backward" | ||
OPT = "optimizer" | ||
|
||
logger = get_logger(logging.INFO) | ||
|
||
|
||
@register_pass("pipeline_scheduler_ZBH1") | ||
class PipelineZeroBubblePipelinePass(PipelinePassBase): | ||
def __init__(self): | ||
super().__init__() | ||
self.set_attr("enable_optimizer_post_validation", 0) | ||
|
||
def _create_job_list(self): | ||
num_micro_batches = self.get_attr("num_micro_batches") | ||
pp_stage = self.get_attr("pp_stage") | ||
pp_degree = self.get_attr("pp_degree") | ||
|
||
job_list = [] | ||
assert ( | ||
pp_degree <= num_micro_batches | ||
), "Num of micro batches should larger than or equal to pp degree." | ||
|
||
micro_batch_in_warmup = pp_degree - pp_stage | ||
micro_batch_in_zero_bubble = num_micro_batches - pp_degree | ||
|
||
forward_micro_batch_id = 0 | ||
for _ in range(micro_batch_in_warmup): | ||
forward_job = core.Job(FORWARD) | ||
forward_job.set_micro_batch_id(forward_micro_batch_id) | ||
job_list.append(forward_job) | ||
forward_micro_batch_id += 1 | ||
|
||
backward_micro_batch_id = 0 | ||
for _ in range(pp_stage): | ||
backward_b_job = core.Job(BACKWARD + '_b') | ||
backward_b_job.set_micro_batch_id(backward_micro_batch_id) | ||
job_list.append(backward_b_job) | ||
backward_micro_batch_id += 1 | ||
|
||
forward_job = core.Job(FORWARD) | ||
forward_job.set_micro_batch_id(forward_micro_batch_id) | ||
job_list.append(forward_job) | ||
forward_micro_batch_id += 1 | ||
|
||
for _ in range(micro_batch_in_zero_bubble): | ||
backward_job = core.Job(BACKWARD) | ||
backward_job.set_micro_batch_id(backward_micro_batch_id) | ||
job_list.append(backward_job) | ||
|
||
forward_job = core.Job(FORWARD) | ||
forward_job.set_micro_batch_id(forward_micro_batch_id) | ||
job_list.append(forward_job) | ||
|
||
forward_micro_batch_id += 1 | ||
backward_micro_batch_id += 1 | ||
|
||
for _ in range(micro_batch_in_warmup - 1): | ||
backward_job = core.Job(BACKWARD) | ||
backward_job.set_micro_batch_id(backward_micro_batch_id) | ||
job_list.append(backward_job) | ||
backward_micro_batch_id += 1 | ||
|
||
if pp_stage > 0: | ||
backward_b_job = core.Job(BACKWARD + '_b') | ||
backward_b_job.set_micro_batch_id(backward_micro_batch_id) | ||
job_list.append(backward_b_job) | ||
|
||
backward_w_job = core.Job(BACKWARD + '_w') | ||
backward_w_job.set_micro_batch_id(backward_micro_batch_id) | ||
job_list.append(backward_w_job) | ||
else: | ||
backward_job = core.Job(BACKWARD) | ||
backward_job.set_micro_batch_id(backward_micro_batch_id) | ||
job_list.append(backward_job) | ||
backward_micro_batch_id += 1 | ||
|
||
for i in range(pp_stage): | ||
backward_w_job = core.Job(BACKWARD + '_w') | ||
backward_w_job.set_micro_batch_id(i) | ||
job_list.append(backward_w_job) | ||
|
||
opt_job = core.Job(OPT) | ||
opt_job.set_micro_batch_id(0) | ||
job_list.append(opt_job) | ||
return job_list | ||
|
||
def _split_matmul_grad_ops_to_matmul(self, program, dist_context): | ||
for block in program.blocks: | ||
matmul_grad_op_idx = [] | ||
ops = block.ops | ||
for i, op_i in enumerate(ops): | ||
if ( | ||
op_i.type == "matmul_v2_grad" | ||
and not op_i.attr("trans_x") | ||
and not op_i.attr("trans_y") | ||
): | ||
matmul_grad_op_idx.append(i) | ||
|
||
for matmul_grad_id in reversed(matmul_grad_op_idx): | ||
split_matmul_grad_to_matmul( | ||
block, matmul_grad_id, dist_context=dist_context | ||
) | ||
|
||
def _partial_programs(self, program): | ||
dist_context = self.get_attr("dist_context") | ||
self._split_matmul_grad_ops_to_matmul(program, dist_context) | ||
types, sub_program_list = _program_for_zero_bubble(program) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 参考
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
这个要不单独加一个pr 适配一下吧,之前 vpp 的这个开关也是后续适配的 ~ There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
VPP应该是一开始忘记加了,所以后续单独加上。这里可以一并加上。 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
好的 ~ |
||
return types, sub_program_list |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Deal the operators without
output
such assend_v2
,c_sync_calc_stream
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done, 麻烦研发老师有空的时候再测试一下是否还会 hang 住 ~