-
Notifications
You must be signed in to change notification settings - Fork 5.4k
[Arm64] ASIMD DotProduct and Rounding Double Multiply Add/Subtract #38957
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
Changes from all commits
6c9bc75
b84568f
6bb15f5
0fbb96a
57dcd4f
4d7b63c
75ef984
c48df72
fb6851a
7df470b
c7cc928
f08bd97
ba0f058
8001bdc
feb1bab
3313eb8
29da009
1e9ea9b
2c46689
bc08993
6ba0b1b
3842467
a8bb36a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -50,8 +50,8 @@ PAL_GetJitCpuCapabilityFlags(CORJIT_FLAGS *flags) | |
| // CPUCompileFlags.Set(CORJIT_FLAGS::CORJIT_FLAG_HAS_ARM64_DCPOP); | ||
| #endif | ||
| #ifdef HWCAP_ASIMDDP | ||
| // if (hwCap & HWCAP_ASIMDDP) | ||
| // CPUCompileFlags.Set(CORJIT_FLAGS::CORJIT_FLAG_HAS_ARM64_DP); | ||
| if (hwCap & HWCAP_ASIMDDP) | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We should add a tracking issue with the
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done #39094 |
||
| CPUCompileFlags.Set(InstructionSet_Dp); | ||
| #endif | ||
| #ifdef HWCAP_FCMA | ||
| // if (hwCap & HWCAP_FCMA) | ||
|
|
@@ -98,8 +98,8 @@ PAL_GetJitCpuCapabilityFlags(CORJIT_FLAGS *flags) | |
| CPUCompileFlags.Set(InstructionSet_AdvSimd); | ||
| #endif | ||
| #ifdef HWCAP_ASIMDRDM | ||
| // if (hwCap & HWCAP_ASIMDRDM) | ||
| // CPUCompileFlags.Set(CORJIT_FLAGS::CORJIT_FLAG_HAS_ARM64_ADVSIMD_V81); | ||
| if (hwCap & HWCAP_ASIMDRDM) | ||
| CPUCompileFlags.Set(InstructionSet_Rdm); | ||
| #endif | ||
| #ifdef HWCAP_ASIMDHP | ||
| // if (hwCap & HWCAP_ASIMDHP) | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -34,6 +34,8 @@ public enum ReadyToRunInstructionSet | |
| Sha256=20, | ||
| Atomics=21, | ||
| X86Base=22, | ||
| Dp=23, | ||
| Rdm=24, | ||
|
|
||
| } | ||
| } | ||
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.
Missing Dp_Arm64?
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.
Fixed