Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,14 @@
using System.Runtime.InteropServices;
using System.Runtime.Intrinsics;
using System.Runtime.Intrinsics.X86;
using Xunit;

namespace JIT.HardwareIntrinsics.X86
{
public static partial class Program
{
private static void ConvertToInt32WithTruncationInt32Vector128Double()
[Fact]
public static void ConvertToInt32WithTruncationInt32Vector128Double()
{
var test = new SimdScalarUnaryOpConvertTest__ConvertToInt32WithTruncationInt32Vector128Double();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,14 @@
using System.Runtime.InteropServices;
using System.Runtime.Intrinsics;
using System.Runtime.Intrinsics.X86;
using Xunit;

namespace JIT.HardwareIntrinsics.X86
{
public static partial class Program
{
private static void ConvertToInt64WithTruncationVector128Double()
[Fact]
public static void ConvertToInt64WithTruncationVector128Double()
{
var test = new SimdScalarUnaryOpConvertTest__ConvertToInt64WithTruncationVector128Double();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,14 @@
using System.Runtime.InteropServices;
using System.Runtime.Intrinsics;
using System.Runtime.Intrinsics.X86;
using Xunit;

namespace JIT.HardwareIntrinsics.X86
{
public static partial class Program
{
private static void ConvertToUInt64Vector128UInt64()
[Fact]
public static void ConvertToUInt64Vector128UInt64()
{
var test = new SimdScalarUnaryOpConvertTest__ConvertToUInt64Vector128UInt64();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,14 @@
using System.Runtime.InteropServices;
using System.Runtime.Intrinsics;
using System.Runtime.Intrinsics.X86;
using Xunit;

namespace JIT.HardwareIntrinsics.X86
{
public static partial class Program
{
private static void ConvertToVector128DoubleDoubleVector128Int32()
[Fact]
public static void ConvertToVector128DoubleDoubleVector128Int32()
{
var test = new SimpleUnaryOpConvTest__ConvertToVector128DoubleDoubleVector128Int32();

Expand Down
Loading