-
Notifications
You must be signed in to change notification settings - Fork 825
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
Refactor SbpXXX to cfg::SbpXXX #5120
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
poohRui
reviewed
Jun 7, 2021
oneflow/core/framework/infer_parallel_distribution_fn_context.h
Outdated
Show resolved
Hide resolved
4adb815
to
9dbedec
Compare
poohRui
approved these changes
Jun 7, 2021
f1b1662
to
fd1c54f
Compare
a248d94
to
fd1c54f
Compare
poohRui
reviewed
Jun 8, 2021
8366242
to
4bc1271
Compare
…Inc/oneflow into refactor_sbp_to_cfg_sbp
48a20fc
to
77e962c
Compare
77e962c
to
472f765
Compare
a7b6e7b
to
40638ae
Compare
40638ae
to
143ea7a
Compare
…low into refactor_sbp_to_cfg_sbp Conflicts: docker/package/manylinux/build_wheel.py
liujuncheng
reviewed
Jun 23, 2021
std::function<Maybe<const SbpInferHint*>(const std::string&)> SbpInferHint4Ibn, | ||
const ParallelDesc& parallel_desc) const override { | ||
CHECK_NE_OR_RETURN(op_conf().cast_to_mirrored_conf().sbp_parallel().parallel_type_case(), | ||
SbpParallel::PARALLEL_TYPE_NOT_SET) | ||
cfg::SbpParallel::PARALLEL_TYPE_NOT_SET) |
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.
这里改动完成后 CHECK 的两个参数不一样,一个是 proto 的 enum,一个是 cfg 的 enum,编译器会有警告
daquexian
reviewed
Oct 28, 2021
parallel_distribution_signature_( | ||
&(kernel_conf.op_attribute().parallel_distribution_signature())) { | ||
parallel_desc_(kernel_conf.op_attribute().parallel_conf_signature().op_parallel_conf()) { | ||
parallel_distribution_signature_ = new cfg::ParallelDistributionSignature( |
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.
这会内存泄漏吧,还有 124 行
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Refactor SbpXXX to cfg::SbpXXX