Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Accelerate Vector128<long>::op_Multiply on x64#103555

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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
EgorBo merged 21 commits intodotnet:mainfromEgorBo:arm-mul-64bit
Jun 28, 2024
Merged
Changes from1 commit
Commits
Show all changes
21 commits
Select commitHold shift + click to select a range
ae17211
Accelerate Vector128 mul for long/ulong
EgorBoJun 17, 2024
afda312
better ulong version
EgorBoJun 17, 2024
ab01574
fix build
EgorBoJun 17, 2024
21b42de
Update Vector128_1.cs
EgorBoJun 17, 2024
581f1e2
Sse41 version
EgorBoJun 17, 2024
49a359f
Update src/libraries/System.Private.CoreLib/src/System/Runtime/Intrin…
EgorBoJun 17, 2024
57898f0
Update Vector128_1.cs
EgorBoJun 17, 2024
f1be705
Update Vector128_1.cs
EgorBoJun 19, 2024
95d0eb8
Update Vector128_1.cs
EgorBoJun 19, 2024
dcfd93d
Update Vector128_1.cs
EgorBoJun 19, 2024
7fec9e3
Update Vector128_1.cs
EgorBoJun 19, 2024
e172296
Update Vector128_1.cs
EgorBoJun 19, 2024
0456d12
Update Vector128_1.cs
EgorBoJun 20, 2024
8af6104
Merge branch 'main' of https://github.com/dotnet/runtime into arm-mul…
EgorBoJun 20, 2024
69572a2
Update Vector128_1.cs
EgorBoJun 20, 2024
d607549
clean up
EgorBoJun 20, 2024
573a37b
move to jit
EgorBoJun 20, 2024
3790d1b
clean up
EgorBoJun 20, 2024
60441f3
revert unrelated changes
EgorBoJun 21, 2024
5b78ddd
Merge branch 'main' of https://github.com/dotnet/runtime into arm-mul…
EgorBoJun 28, 2024
cc257dd
Address feedback
EgorBoJun 28, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
PrevPrevious commit
NextNext commit
Update Vector128_1.cs
  • Loading branch information
@EgorBo
EgorBo authoredJun 19, 2024
commit7fec9e3bf26b1d434c35b732cac38e8e60828dee
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -265,6 +265,8 @@ public static Vector128<T> Zero
// TODO: move this to JIT
if (Sse41.IsSupported && (typeof(T) == typeof(long) || typeof(T) == typeof(ulong)))
{
Vector128<ulong> a = left.AsUInt64();
Vector128<ulong> b = right.AsUInt64();
return Unsafe.BitCast<Vector128<ulong>, Vector128<T>>(
Sse2.Add(
Sse2.Multiply(a.AsUInt32(), b.AsUInt32()).AsUInt64(),
Expand Down

[8]ページ先頭

©2009-2025 Movatter.jp