Support finetuning the model saved on the mac platform on the Linux p…#34027
Merged
hbwx24 merged 1 commit intoPaddlePaddle:developfrom Jul 12, 2021
Merged
Conversation
|
Thanks for your contribution! |
|
✅ This PR's description meets the template requirements! |
wawltor
reviewed
Jul 12, 2021
| if (context.HasAttr("head_number")) { | ||
| head_number = context.Attr<int>("head_number"); | ||
| } | ||
| #endif |
Contributor
There was a problem hiding this comment.
目前matmul有两个,还是一个matmul_v2 辛苦check一下是否有同样的问题
Contributor
Author
There was a problem hiding this comment.
matmul_v2 在Linux上多两个属性:mkldnn_data_type = float32,use_mkldnn = False,在mac上保存的Program在Linux上是可以运行的
hbwx24
added a commit
to hbwx24/Paddle
that referenced
this pull request
Jul 14, 2021
This file contains hidden or 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
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.
PR types
Bug fixes
PR changes
OPs
Describe
修复《jit.save在Mac系统上保存的模型,在Linux平台上无法对模型进行重训练》的问题。
原因:如上图,在mac与linux 保存的program中matmul op描述不一致,左边Linux,右边mac,linux 的matmul op 多一个 head_number =1属性。由于在Linux加载这个Program时因为找不到head_number属性而报错。
可以修复的原因:在mac上保存的program没有head_number属性,在Linux上加载时,没有这个属性就默认head_number=1。