summaryrefslogtreecommitdiff
path: root/tests/src/JIT/Performance/CodeQuality/BenchF/InProd/InProd.cs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/src/JIT/Performance/CodeQuality/BenchF/InProd/InProd.cs')
-rw-r--r--tests/src/JIT/Performance/CodeQuality/BenchF/InProd/InProd.cs134
1 files changed, 134 insertions, 0 deletions
diff --git a/tests/src/JIT/Performance/CodeQuality/BenchF/InProd/InProd.cs b/tests/src/JIT/Performance/CodeQuality/BenchF/InProd/InProd.cs
new file mode 100644
index 0000000000..ff54ea7acd
--- /dev/null
+++ b/tests/src/JIT/Performance/CodeQuality/BenchF/InProd/InProd.cs
@@ -0,0 +1,134 @@
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
+//
+
+using Microsoft.Xunit.Performance;
+using System;
+using System.Runtime.CompilerServices;
+using Xunit;
+
+[assembly: OptimizeForBenchmarks]
+[assembly: MeasureInstructionsRetired]
+
+public static class InProd
+{
+#if DEBUG
+ public const int Iterations = 1;
+#else
+ public const int Iterations = 70;
+#endif
+
+ private const int RowSize = 10 * Iterations;
+
+ private static int s_seed;
+
+ private static T[][] AllocArray<T>(int n1, int n2)
+ {
+ T[][] a = new T[n1][];
+ for (int i = 0; i < n1; ++i)
+ {
+ a[i] = new T[n2];
+ }
+ return a;
+ }
+
+ [MethodImpl(MethodImplOptions.NoInlining)]
+ private static bool Bench()
+ {
+ double[][] rma = AllocArray<double>(RowSize, RowSize);
+ double[][] rmb = AllocArray<double>(RowSize, RowSize);
+ double[][] rmr = AllocArray<double>(RowSize, RowSize);
+
+ double sum;
+
+ Inner(rma, rmb, rmr);
+
+ for (int i = 1; i < RowSize; i++)
+ {
+ for (int j = 1; j < RowSize; j++)
+ {
+ sum = 0;
+ for (int k = 1; k < RowSize; k++)
+ {
+ sum = sum + rma[i][k] * rmb[k][j];
+ }
+ if (rmr[i][j] != sum)
+ {
+ return false;
+ }
+ }
+ }
+
+ return true;
+ }
+
+ private static void InitRand()
+ {
+ s_seed = 7774755;
+ }
+
+ private static int Rand()
+ {
+ s_seed = (s_seed * 77 + 13218009) % 3687091;
+ return s_seed;
+ }
+
+ private static void InitMatrix(double[][] m)
+ {
+ for (int i = 1; i < RowSize; i++)
+ {
+ for (int j = 1; j < RowSize; j++)
+ {
+ m[i][j] = (Rand() % 120 - 60) / 3;
+ }
+ }
+ }
+
+ private static void InnerProduct(out double result, double[][] a, double[][] b, int row, int col)
+ {
+ result = 0.0;
+ for (int i = 1; i < RowSize; i++)
+ {
+ result = result + a[row][i] * b[i][col];
+ }
+ }
+
+ private static void Inner(double[][] rma, double[][] rmb, double[][] rmr)
+ {
+ InitRand();
+ InitMatrix(rma);
+ InitMatrix(rmb);
+ for (int i = 1; i < RowSize; i++)
+ {
+ for (int j = 1; j < RowSize; j++)
+ {
+ InnerProduct(out rmr[i][j], rma, rmb, i, j);
+ }
+ }
+ }
+
+ [Benchmark]
+ public static void Test()
+ {
+ foreach (var iteration in Benchmark.Iterations)
+ {
+ using (iteration.StartMeasurement())
+ {
+ Bench();
+ }
+ }
+ }
+
+ private static bool TestBase()
+ {
+ bool result = Bench();
+ return result;
+ }
+
+ public static int Main()
+ {
+ bool result = TestBase();
+ return (result ? 100 : -1);
+ }
+}