-
Notifications
You must be signed in to change notification settings - Fork 159
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
[circle2circle] Revise driver script #13822
Conversation
This commit revises driver script for static analysis tool. ONE-DCO-1.0-Signed-off-by: seongwoo <[email protected]>
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.
LGTM thank you!
option_str_to_enum["fuse_batchnorm_with_conv"] = Algorithms::FuseBatchNormWithConv; | ||
option_str_to_enum["fuse_add_to_fullyconnected_bias"] = Algorithms::FuseAddToFullyConnectedBias; | ||
option_str_to_enum["fuse_add_with_conv"] = Algorithms::FuseAddWithConv; | ||
option_str_to_enum["fuse_add_with_fully_connected"] = Algorithms::FuseAddToFullyConnectedBias; |
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.
Q: shouldn't it be like below?
I met a correctness issue from an internal quantized model after I updated one-compiler
.
(FYI, e.g., one-compiler=1.29.0~24082216
was fine.)
- option_str_to_enum["fuse_add_with_fully_connected"] = Algorithms::FuseAddToFullyConnectedBias;
+ option_str_to_enum["fuse_add_with_fully_connected"] = Algorithms:: FuseAddWithFullyConnected;
- fuse_add_to_fullyconnected_bias: This fuses Add operator to following FullyConnected operator bias |
- fuse_add_with_fully_connected: This fuses Add operator with the preceding FullyConnected operator if possible |
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.
@ejjeong , plz fire fix PR :)
This commit revises driver script for static analysis tool.
Related: #13806
ONE-DCO-1.0-Signed-off-by: seongwoo [email protected]