-
Notifications
You must be signed in to change notification settings - Fork 6
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
Move avo assembly generator to separate asm
module
#149
Conversation
@mmcloughlin thank you for proposing this PR, that's much appreciated. Please amend the |
Thanks @pjbgf. I have pushed a new iteration with changes:
The only remaining thing I'd say is that the |
RoundConst0 = 0x5A827999 | ||
RoundConst1 = 0x6ED9EBA1 | ||
RoundConst2 = 0x8F1BBCDC | ||
RoundConst3 = 0xCA62C1D6 |
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.
Note they can't be named K0, K1, ...
anymore since these are registers in avo
(AVX-512 mask registers).
That makes sense. Overall, the changes LGTM. It is up to you if you prefer making the additional change for the shared package here, or on a follow-up PR. |
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.
@mmcloughlin I will be merging this as is, thank you once again for proposing this change. The shared package change can be done at a later time.
Great! Happy to help. Yes the shared package wasn't a blocking issue. |
Move
avo
code-generator to anasm
sub-module. This avoids the problem of thesha1cd
module itself depending onavo
.Fixes #148