Skip to content
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

[Mono] Intrinsify API's of System.Numerics.Vector and new API's of System.Runtime.Intrinsics.{128,256} on Amd64 with LLVM backend #66392

Open
Tracked by #43051
fanyang-mono opened this issue Mar 9, 2022 · 2 comments
Labels
area-Codegen-meta-mono runtime-mono specific to the Mono runtime
Milestone

Comments

@fanyang-mono
Copy link
Member

fanyang-mono commented Mar 9, 2022

System.Numerics.Vector:

  • IsHardwareAccelerated
    • amd64
  • Abs
    • amd64
  • Add
    • amd64
  • AndNot
    • amd64
  • As
    • amd64
  • AsVectorByte
    • amd64
  • AsVectorDouble
    • amd64
  • AsVectorInt16
    • amd64
  • AsVectorInt32
    • amd64
  • AsVectorInt64
    • amd64
  • AsVectorNInt
    • amd64
  • AsVectorNUInt
    • amd64
  • AsVectorSByte
    • amd64
  • AsVectorSingle
    • amd64
  • AsVectorUInt16
    • amd64
  • AsVectorUInt32
    • amd64
  • AsVectorUInt64
    • amd64
  • BitwiseAnd
    • amd64
  • BitwiseOr
    • amd64
  • Ceiling
    • amd64
  • ConditionalSelect
    • amd64
  • ConvertToDouble
    • amd64
  • ConvertToInt32
    • amd64
  • ConvertToInt64
    • amd64
  • ConvertToSingle
    • amd64
  • ConvertToUInt32
    • amd64
  • ConvertToUInt64
    • amd64
  • Divide
    • amd64
  • Dot
    • amd64
  • Equals
    • amd64
  • EqualsAll
    • amd64
  • EqualsAny
    • amd64
  • Floor
    • amd64
  • GreaterThan
    • amd64
  • GreaterThanAll
    • amd64
  • GreaterThanAny
    • amd64
  • GreaterThanOrEqual
    • amd64
  • GreaterThanOrEqualAll
    • amd64
  • GreaterThanOrEqualAny
    • amd64
  • LessThan
    • amd64
  • LessThanAll
    • amd64
  • LessThanAny
    • amd64
  • LessThanOrEqual
    • amd64
  • LessThanOrEqualAll
    • amd64
  • LessThanOrEqualAny
    • amd64
  • Max
    • amd64
  • Min
    • amd64
  • Multiply
    • amd64
  • Narrow
    • amd64
  • Negate
    • amd64
  • OnesComplement
    • amd64
  • SquareRoot
    • amd64
  • Subtract
    • amd64
  • Sum
    • amd64
  • Widen
    • amd64
  • Xor
    • amd64

System.Numerics.Vector<T>:

  • Operator + (one operand)
    • amd64
  • Operator - (one operand)
    • amd64
  • Operator ~
    • amd64
  • Operator +
    • amd64
  • Operator -
    • amd64
  • Operator *
    • amd64
  • Operator /
    • amd64
  • Operator ==
    • amd64
  • Operator !=
    • amd64
  • Operator &
    • amd64
  • Operator |
    • amd64
  • Operator ^
    • amd64

System.Runtime.Intrinsics.Vector128:

  • IsHardwareAccelerated
    • amd64
  • Abs
    • amd64
  • Add
    • amd64
  • AndNot
    • amd64
  • BitwiseAnd
    • amd64
  • BitwiseOr
    • amd64
  • Ceiling
    • amd64
  • ConditionalSelect
    • amd64
  • ConvertToDouble
    • amd64
  • ConvertToInt32
    • amd64
  • ConvertToInt64
    • amd64
  • ConvertToSingle
    • amd64
  • ConvertToUInt32
    • amd64
  • ConvertToUInt64
    • amd64
  • Divide
    • amd64
  • Dot
    • amd64
  • Equals
    • amd64
  • EqualsAll
    • amd64
  • EqualsAny
    • amd64
  • Floor
    • amd64
  • GreaterThan
    • amd64
  • GreaterThanAll
    • amd64
  • GreaterThanAny
    • amd64
  • GreaterThanOrEqual
    • amd64
  • GreaterThanOrEqualAll
    • amd64
  • GreaterThanOrEqualAny
    • amd64
  • LessThan
    • amd64
  • LessThanAll
    • amd64
  • LessThanAny
    • amd64
  • LessThanOrEqual
    • amd64
  • LessThanOrEqualAll
    • amd64
  • LessThanOrEqualAny
    • amd64
  • Max
    • amd64
  • Min
    • amd64
  • Multiply
    • amd64
  • Narrow
    • amd64
  • Negate
    • amd64
  • OnesComplement
    • amd64
  • Sqrt
    • amd64
  • Subtract
    • amd64
  • Sum
    • amd64
  • Widen
    • amd64
  • Xor
    • amd64

System.Runtime.Intrinsics.Vector128<T>:

  • Operator + (one operand)
    • amd64
  • Operator - (one operand)
    • amd64
  • Operator ~
    • amd64
  • Operator +
    • amd64
  • Operator -
    • amd64
  • Operator *
    • amd64
  • Operator /
    • amd64
  • Operator ==
    • amd64
  • Operator !=
    • amd64
  • Operator &
    • amd64
  • Operator |
    • amd64
  • Operator ^
    • amd64

System.Runtime.Intrinsics.Vector256:

  • IsHardwareAccelerated
    • amd64
  • Abs
    • amd64
  • Add
    • amd64
  • AndNot
    • amd64
  • BitwiseAnd
    • amd64
  • BitwiseOr
    • amd64
  • Ceiling
    • amd64
  • ConditionalSelect
    • amd64
  • ConvertToDouble
    • amd64
  • ConvertToInt32
    • amd64
  • ConvertToInt64
    • amd64
  • ConvertToSingle
    • amd64
  • ConvertToUInt32
    • amd64
  • ConvertToUInt64
    • amd64
  • CopyTo
    • amd64
  • Divide
    • amd64
  • Dot
    • amd64
  • Equals
    • amd64
  • EqualsAll
    • amd64
  • EqualsAny
    • amd64
  • Floor
    • amd64
  • GreaterThan
    • amd64
  • GreaterThanAll
    • amd64
  • GreaterThanAny
    • amd64
  • GreaterThanOrEqual
    • amd64
  • GreaterThanOrEqualAll
    • amd64
  • GreaterThanOrEqualAny
    • amd64
  • LessThan
    • amd64
  • LessThanAll
    • amd64
  • LessThanAny
    • amd64
  • LessThanOrEqual
    • amd64
  • LessThanOrEqualAll
    • amd64
  • LessThanOrEqualAny
    • amd64
  • Max
    • amd64
  • Min
    • amd64
  • Multiply
    • amd64
  • Narrow
    • amd64
  • Negate
    • amd64
  • OnesComplement
    • amd64
  • SquareRoot
    • amd64
  • Subtract
    • amd64
  • Sum
    • amd64
  • TryCopyTo
    • amd64
  • Widen
    • amd64
  • Xor
    • amd64

System.Runtime.Intrinsics.Vector256<T>:

  • Operator + (one operand)
    • amd64
  • Operator - (one operand)
    • amd64
  • Operator ~
    • amd64
  • Operator +
    • amd64
  • Operator -
    • amd64
  • Operator *
    • amd64
  • Operator /
    • amd64
  • Operator ==
    • amd64
  • Operator !=
    • amd64
  • Operator &
    • amd64
  • Operator |
    • amd64
  • Operator ^
    • amd64
@fanyang-mono fanyang-mono added this to the 7.0.0 milestone Mar 9, 2022
@fanyang-mono fanyang-mono self-assigned this Mar 9, 2022
@dotnet-issue-labeler dotnet-issue-labeler bot added the untriaged New issue has not been triaged by the area owner label Mar 9, 2022
@SamMonoRT SamMonoRT removed untriaged New issue has not been triaged by the area owner area-Codegen-LLVM-mono labels Mar 9, 2022
@fanyang-mono fanyang-mono modified the milestones: 7.0.0, Future May 5, 2022
@SamMonoRT
Copy link
Member

#53032 is related

@SamMonoRT SamMonoRT modified the milestones: Future, 8.0.0 Jun 20, 2022
@fanyang-mono fanyang-mono changed the title [Mono] Intrinsify API's of System.Numerics.Vector and new API's of System.Runtime.Intrinsics.{128,256} on Amd64 [Mono] Intrinsify API's of System.Numerics.Vector and new API's of System.Runtime.Intrinsics.{128,256} on Amd64 with LLVM backend May 15, 2023
@fanyang-mono fanyang-mono modified the milestones: 8.0.0, 9.0.0 Jul 12, 2023
@fanyang-mono
Copy link
Member Author

The main focus for .NET8 was Arm64. Moving this to .NET9.

@steveisok steveisok modified the milestones: 9.0.0, Future Aug 9, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area-Codegen-meta-mono runtime-mono specific to the Mono runtime
Projects
None yet
Development

No branches or pull requests

3 participants