-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
131 lines (117 loc) · 4.97 KB
/
Program.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
using System;
using System.Numerics;
using System.Runtime.CompilerServices;
using BenchmarkDotNet.Attributes;
using BenchmarkDotNet.Running;
namespace MyBenchmarks
{
public class ByRefBenchmarks
{
[Benchmark]
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public static void Matrix4x4ByValue()
{
Matrix4x4 m1 = Matrix4x4.Identity;
Matrix4x4 m2 = Matrix4x4.CreateScale(5, 6, 7);
Matrix4x4 m3 = Matrix4x4.CreateTranslation(-10, -12, -14);
Matrix4x4 m4 = Matrix4x4.CreateFromYawPitchRoll(1.5f, 2.5f, 3.5f);
Matrix4x4 result = Matrix4x4.Multiply(m1, m2);
result = Matrix4x4.Multiply(result, m3);
result = Matrix4x4.Multiply(result, m4);
}
[Benchmark]
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public static void Matrix4x4ByRef()
{
Matrix4x4 m1 = Matrix4x4.Identity;
Matrix4x4 m2; Matrix4x4.CreateScale(5, 6, 7, out m2);
Matrix4x4 m3; Matrix4x4.CreateTranslation(-10, -12, -14, out m3);
Matrix4x4 m4; Matrix4x4.CreateFromYawPitchRoll(1.5f, 2.5f, 3.5f, out m4);
Matrix4x4 result;
Matrix4x4.Multiply(in m1, in m2, out result);
Matrix4x4.Multiply(in result, in m3, out result);
Matrix4x4.Multiply(in result, in m4, out result);
}
[Benchmark]
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public static void QuaterionByValue()
{
float yaw = 1.5f;
float pitch = 2.5f;
float roll = 3.5f;
Quaternion rotation1 = Quaternion.CreateFromYawPitchRoll(yaw, pitch, roll);
Quaternion rotation2 = Quaternion.CreateFromYawPitchRoll(yaw, pitch, roll);
Quaternion rotation3 = Quaternion.CreateFromAxisAngle(Vector3.UnitX, 3f) * Quaternion.CreateFromAxisAngle(new Vector3(5, 6, 7), 10f);
Vector4 point = new Vector4(2, 4, -6, -8);
point = Vector4.Transform(point, rotation1);
point = Vector4.Transform(point, rotation2);
point = Vector4.Transform(point, rotation3);
}
[Benchmark]
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public static void QuaterionByRef()
{
float yaw = 1.5f;
float pitch = 2.5f;
float roll = 3.5f;
Quaternion.CreateFromYawPitchRoll(yaw, pitch, roll, out Quaternion rotation1);
Quaternion.CreateFromYawPitchRoll(yaw, pitch, roll, out Quaternion rotation2);
Quaternion.CreateFromAxisAngle(Vector3.UnitX, 3f, out Quaternion temp1);
Quaternion.CreateFromAxisAngle(new Vector3(5, 6, 7), 10f, out Quaternion temp2);
Quaternion.Multiply(in temp1, in temp2, out Quaternion rotation3);
Vector4 point = new Vector4(2, 4, -6, -8);
Vector4.Transform(in point, in rotation1, out point);
Vector4.Transform(in point, in rotation2, out point);
Vector4.Transform(in point, in rotation3, out point);
}
[Benchmark]
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public static void Vector3ByValue()
{
Vector3 value1 = new Vector3(1, 2, 3);
Vector3 value2 = new Vector3(-10, -5, 5);
Vector3 value3 = new Vector3(.3f, .6f, -1.9f);
Vector3 cross = Vector3.Cross(value1, value2);
cross = Vector3.Cross(cross, value3);
cross = Vector3.Multiply(cross, value1);
cross = Vector3.Lerp(cross, Vector3.Zero, 0.3f);
}
[Benchmark]
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public static void Vector3ByRef()
{
Vector3 value1 = new Vector3(1, 2, 3);
Vector3 value2 = new Vector3(-10, -5, 5);
Vector3 value3 = new Vector3(.3f, .6f, -1.9f);
Vector3 cross;
Vector3.Cross(in value1, in value2, out cross);
Vector3.Cross(in cross, in value3, out cross);
Vector3.Multiply(in cross, in value1, out cross);
var zero = Vector3.Zero;
Vector3.Lerp(in cross, in zero, 0.3f, out cross);
}
[Benchmark]
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public static void Vector3SimpleAddByValue()
{
Vector3 value1 = new Vector3(1, 2, 3);
Vector3 value2 = new Vector3(-10, -5, 5);
Vector3 sum = Vector3.Add(value1, value2);
}
[Benchmark]
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public static void Vector3SimpleAddByRef()
{
Vector3 value1 = new Vector3(1, 2, 3);
Vector3 value2 = new Vector3(-10, -5, 5);
Vector3 sum; Vector3.Add(in value1, in value2, out sum);
}
}
public class Program
{
public static void Main(string[] args)
{
var summary = BenchmarkRunner.Run<ByRefBenchmarks>();
}
}
}