Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Prev Previous commit
Next Next commit
Fix build errors from API mismatch
  • Loading branch information
SwapnilGaikwad committed Jun 10, 2024
commit 98208f621b98aa3924829c74fcd3e9d1e704437d
Original file line number Diff line number Diff line change
Expand Up @@ -4378,16 +4378,16 @@ internal Arm64() { }
public static System.Numerics.Vector<uint> DotProductBySelectedScalar(System.Numerics.Vector<uint> addend, System.Numerics.Vector<byte> left, System.Numerics.Vector<byte> right, [ConstantExpected] byte rightIndex) { throw null; }
public static System.Numerics.Vector<ulong> DotProductBySelectedScalar(System.Numerics.Vector<ulong> addend, System.Numerics.Vector<ushort> left, System.Numerics.Vector<ushort> right, [ConstantExpected] byte rightIndex) { throw null; }

public static System.Numerics.Vector<byte> DuplicateSelectedScalarToVector(System.Numerics.Vector<byte> data, [ConstantExpected] byte index) { throw null; }
public static System.Numerics.Vector<double> DuplicateSelectedScalarToVector(System.Numerics.Vector<double> data, [ConstantExpected] byte index) { throw null; }
public static System.Numerics.Vector<short> DuplicateSelectedScalarToVector(System.Numerics.Vector<short> data, [ConstantExpected] byte index) { throw null; }
public static System.Numerics.Vector<int> DuplicateSelectedScalarToVector(System.Numerics.Vector<int> data, [ConstantExpected] byte index) { throw null; }
public static System.Numerics.Vector<long> DuplicateSelectedScalarToVector(System.Numerics.Vector<long> data, [ConstantExpected] byte index) { throw null; }
public static System.Numerics.Vector<sbyte> DuplicateSelectedScalarToVector(System.Numerics.Vector<sbyte> data, [ConstantExpected] byte index) { throw null; }
public static System.Numerics.Vector<float> DuplicateSelectedScalarToVector(System.Numerics.Vector<float> data, [ConstantExpected] byte index) { throw null; }
public static System.Numerics.Vector<ushort> DuplicateSelectedScalarToVector(System.Numerics.Vector<ushort> data, [ConstantExpected] byte index) { throw null; }
public static System.Numerics.Vector<uint> DuplicateSelectedScalarToVector(System.Numerics.Vector<uint> data, [ConstantExpected] byte index) { throw null; }
public static System.Numerics.Vector<ulong> DuplicateSelectedScalarToVector(System.Numerics.Vector<ulong> data, [ConstantExpected] byte index) { throw null; }
public static System.Numerics.Vector<byte> DuplicateSelectedScalarToVector(System.Numerics.Vector<byte> data, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = 0, Max = (byte)(63))] byte index) { throw null; }
public static System.Numerics.Vector<double> DuplicateSelectedScalarToVector(System.Numerics.Vector<double> data, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = 0, Max = (byte)(7))] byte index) { throw null; }
public static System.Numerics.Vector<short> DuplicateSelectedScalarToVector(System.Numerics.Vector<short> data, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = 0, Max = (byte)(31))] byte index) { throw null; }
public static System.Numerics.Vector<int> DuplicateSelectedScalarToVector(System.Numerics.Vector<int> data, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = 0, Max = (byte)(15))] byte index) { throw null; }
public static System.Numerics.Vector<long> DuplicateSelectedScalarToVector(System.Numerics.Vector<long> data, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = 0, Max = (byte)(7))] byte index) { throw null; }
public static System.Numerics.Vector<sbyte> DuplicateSelectedScalarToVector(System.Numerics.Vector<sbyte> data, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = 0, Max = (byte)(63))] byte index) { throw null; }
public static System.Numerics.Vector<float> DuplicateSelectedScalarToVector(System.Numerics.Vector<float> data, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = 0, Max = (byte)(15))] byte index) { throw null; }
public static System.Numerics.Vector<ushort> DuplicateSelectedScalarToVector(System.Numerics.Vector<ushort> data, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = 0, Max = (byte)(31))] byte index) { throw null; }
public static System.Numerics.Vector<uint> DuplicateSelectedScalarToVector(System.Numerics.Vector<uint> data, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = 0, Max = (byte)(15))] byte index) { throw null; }
public static System.Numerics.Vector<ulong> DuplicateSelectedScalarToVector(System.Numerics.Vector<ulong> data, [System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute(Min = 0, Max = (byte)(7))] byte index) { throw null; }

public static System.Numerics.Vector<double> FusedMultiplyAdd(System.Numerics.Vector<double> addend, System.Numerics.Vector<double> left, System.Numerics.Vector<double> right) { throw null; }
public static System.Numerics.Vector<float> FusedMultiplyAdd(System.Numerics.Vector<float> addend, System.Numerics.Vector<float> left, System.Numerics.Vector<float> right) { throw null; }
Expand Down