-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reverted MacOS-hack / skip for AVX2 (#53)
* Reverted MacOS-hack / skip for AVX2 * Print HW-infos in tests Cf. #53 (comment) * Execute explicit AVX2 tests only when it is supported As of now MacOS doesn't support AVX2, so these tests would fail.
- Loading branch information
Showing
13 changed files
with
82 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
using System.Runtime.Intrinsics.X86; | ||
using NUnit.Framework; | ||
|
||
namespace gfoidl.Base64.Tests | ||
{ | ||
[SetUpFixture] | ||
public class HWInfo | ||
{ | ||
[OneTimeSetUp] | ||
public void OneTimeSetup() | ||
{ | ||
TestContext.Progress.WriteLine(new string('-', 20)); | ||
TestContext.Progress.WriteLine("SIMD-Info"); | ||
TestContext.Progress.WriteLine($"Sse : {Sse.IsSupported}"); | ||
TestContext.Progress.WriteLine($"Sse2 : {Sse2.IsSupported}"); | ||
TestContext.Progress.WriteLine($"Ssse3: {Ssse3.IsSupported}"); | ||
TestContext.Progress.WriteLine($"Avx : {Avx.IsSupported}"); | ||
TestContext.Progress.WriteLine($"Avx2 : {Avx2.IsSupported}"); | ||
TestContext.Progress.WriteLine(new string('-', 20)); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters