-
Notifications
You must be signed in to change notification settings - Fork 272
/
MDXposMatrix.cs
53 lines (43 loc) · 1.27 KB
/
MDXposMatrix.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
// 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 System.Collections.Generic;
using BenchmarkDotNet.Attributes;
using MicroBenchmarks;
namespace Benchstone.MDBenchI
{
[BenchmarkCategory(Categories.Runtime, Categories.Benchstones, Categories.JIT, Categories.MDBenchI)]
public class MDXposMatrix
{
public const int ArraySize = 100;
int[,] matrixField = new int[ArraySize + 1, ArraySize + 1];
static void Inner(int[,] x, int n) {
for (int i = 1; i <= n; i++) {
for (int j = 1; j <= n; j++) {
int t = x[i,j];
x[i,j] = x[j,i];
x[j,i] = t;
}
}
}
[Benchmark(Description = nameof(MDXposMatrix))]
public bool Test() {
int[,] matrix = matrixField;
int n = ArraySize;
for (int i = 1; i <= n; i++) {
for (int j = 1; j <= n; j++) {
matrix[i,j] = 1;
}
}
if (matrix[n,n] != 1) {
return false;
}
Inner(matrix, n);
if (matrix[n,n] != 1) {
return false;
}
return true;
}
}
}