-
Notifications
You must be signed in to change notification settings - Fork 1k
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
Re-enablement of bf16 jit:uni reorders for aarch64 #2104
Re-enablement of bf16 jit:uni reorders for aarch64 #2104
Conversation
Could you please use commit messages the are aligned with the contributing guideline. |
@Radu2k could you please review this for the |
I agree with Mourad on this topic and want to highly endorse the importance of PR message format as this will help speeding up the review process. By taking the time to correctly label the PR, we can easily identify and asses issues based on their commit message labels, therefore reviewing and closing your PRs sooner. |
@@ -1285,17 +1291,17 @@ struct jit_uni_reorder_kernel_f32_t : public kernel_t, public jit_generator { | |||
} | |||
} | |||
|
|||
bool interim_f32_needed() { | |||
static bool interim_f32_needed(const prb_t &prb, bool compensation_needed) { |
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.
What is the reasoning behind this static
change? If it was only a local fix could we remove and test that the build does not fail?
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.
Hi @Radu2k , as mentioned this is just reversal of an unintended change in out PR. We have not done any additional changes ourselves. This was present before our PR was merged, so we have just restored it as is.
bc03112
to
fbf0d86
Compare
@mgouicem |
fbf0d86
to
f4e7a48
Compare
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.
Going to check perf on g3 and then will approve. |
Hi @theComputeKid , any update on this? Thanks. |
Description
The PR: #1986 changed a particular condition for bf_16(This was not intended in the PR). So after this was merged some testcases which were going to jin:uni before, started going to simple:any(reference). Therefore, this PR contains the fix for that by just reverting the un-intended change to the original.
Checklist
General
make test
andmake test_benchdnn_*
) pass locally for each commit?