Add 3PN for Burgers equation (dotnet/coreclr#9966)
authorRich Lander <rlander@microsoft.com>
Sun, 5 Mar 2017 22:55:57 +0000 (14:55 -0800)
committerJan Kotas <jkotas@microsoft.com>
Sun, 5 Mar 2017 22:55:57 +0000 (14:55 -0800)
- Thanks to @taumuon for licensing the test, per our request!
- License is MIT.

Commit migrated from https://github.com/dotnet/coreclr/commit/b5b5e51118afd95a0dc29fdfe8b8fc9e48c0e47c

src/coreclr/tests/src/JIT/Performance/CodeQuality/Burgers/Burgers.cs
src/coreclr/tests/src/JIT/Performance/CodeQuality/Burgers/THIRD-PARTY-NOTICES [new file with mode: 0644]

index 11eccec..02dafa2 100644 (file)
@@ -5,7 +5,8 @@
 // .NET SIMD to solve Burgers' equation
 //
 // Benchmark based on 
-// http://taumuon-jabuka.blogspot.co.uk/2014/10/net-simd-to-solve-burgers-equation.html
+// https://github.com/taumuon/SIMD-Vectorisation-Burgers-Equation-CSharp
+// http://www.taumuon.co.uk/2014/10/net-simd-to-solve-burgers-equation.html
 
 using Microsoft.Xunit.Performance;
 using System;
diff --git a/src/coreclr/tests/src/JIT/Performance/CodeQuality/Burgers/THIRD-PARTY-NOTICES b/src/coreclr/tests/src/JIT/Performance/CodeQuality/Burgers/THIRD-PARTY-NOTICES
new file mode 100644 (file)
index 0000000..48cfac4
--- /dev/null
@@ -0,0 +1,34 @@
+.NET Core uses third-party libraries or other resources that may be
+distributed under licenses different than the .NET Core software.
+
+In the event that we accidentally failed to list a required notice, please
+bring it to our attention. Post an issue or email us:
+
+           dotnet@microsoft.com
+
+The attached notices are provided for information only.
+
+License notice for SIMD-Vectorisation-Burgers-Equation-CSharp
+-------------------------------------------------------------
+
+MIT License
+
+Copyright (c) 2017 Gary Evans
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.