Skip to content

Commit

Permalink
Change access
Browse files Browse the repository at this point in the history
  • Loading branch information
john-h-k committed Oct 13, 2019
1 parent d23c2e3 commit 3b626a9
Show file tree
Hide file tree
Showing 9 changed files with 8 additions and 14 deletions.
6 changes: 0 additions & 6 deletions samples/MathSharp.Interactive/Program.cs
Expand Up @@ -15,12 +15,6 @@ internal class Program
{
private static void Main()
{
Console.WriteLine(float.NaN > 1);
Console.WriteLine(
SoftwareFallbacks.CompareLessThanOrEqual_Software(Vector128.Create(float.NaN), Vector128.Create(0f)).AsInt32());
Console.WriteLine(
Sse.CompareLessThanOrEqual(Vector128.Create(float.NaN), Vector128.Create(0f)).AsInt32());

}

public static Vector128<float> Foo()
Expand Down
Expand Up @@ -10,7 +10,7 @@ namespace MathSharp
using Vector4UInt64 = Vector256<ulong>;
using Vector4UInt64Param1_3 = Vector256<ulong>;

public static partial class SoftwareFallbacks
internal static partial class SoftwareFallbacks
{
#region Vector128

Expand Down
Expand Up @@ -3,7 +3,7 @@

namespace MathSharp
{
public static partial class SoftwareFallbacks
internal static partial class SoftwareFallbacks
{
#region Vector128

Expand Down
Expand Up @@ -9,7 +9,7 @@ namespace MathSharp
using Vector4D = Vector256<double>;
using Vector4DParam1_3 = Vector256<double>;

public static unsafe partial class SoftwareFallbacks
internal static unsafe partial class SoftwareFallbacks
{
#region Vector

Expand Down
Expand Up @@ -8,7 +8,7 @@ namespace MathSharp
using Vector4D = Vector256<double>;
using Vector4DParam1_3 = Vector256<double>;

public static partial class SoftwareFallbacks
internal static partial class SoftwareFallbacks
{
[MethodImpl(MaxOpt)]
public static Vector256<double> CompareEqual_Software(Vector4DParam1_3 left, Vector4DParam1_3 right)
Expand Down
Expand Up @@ -9,7 +9,7 @@ namespace MathSharp
using Vector4D = Vector256<double>;
using Vector4DParam1_3 = Vector256<double>;

public static partial class SoftwareFallbacks
internal static partial class SoftwareFallbacks
{
#region Vector Maths

Expand Down
Expand Up @@ -9,7 +9,7 @@ namespace MathSharp
using Vector4F = Vector128<float>;
using Vector4FParam1_3 = Vector128<float>;

public static partial class SoftwareFallbacks
internal static partial class SoftwareFallbacks
{
private const MethodImplOptions MaxOpt =
MethodImplOptions.AggressiveInlining | MethodImplOptions.AggressiveOptimization;
Expand Down
Expand Up @@ -9,7 +9,7 @@ namespace MathSharp
using Vector4F = Vector128<float>;
using Vector4FParam1_3 = Vector128<float>;

public static partial class SoftwareFallbacks
internal static partial class SoftwareFallbacks
{
[MethodImpl(MaxOpt)]
public static Vector128<float> CompareEqual_Software(Vector4FParam1_3 left, Vector4FParam1_3 right)
Expand Down
Expand Up @@ -9,7 +9,7 @@ namespace MathSharp
using Vector4F = Vector128<float>;
using Vector4FParam1_3 = Vector128<float>;

public static partial class SoftwareFallbacks
internal static partial class SoftwareFallbacks
{
#region Vector Maths

Expand Down

0 comments on commit 3b626a9

Please sign in to comment.