forked from microsoft/VirtualClient
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHPLinpackExecutorTests.cs
More file actions
281 lines (234 loc) · 13.8 KB
/
Copy pathHPLinpackExecutorTests.cs
File metadata and controls
281 lines (234 loc) · 13.8 KB
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
namespace VirtualClient.Actions
{
using System;
using System.Collections.Generic;
using System.IO;
using System.Runtime.InteropServices;
using System.Threading;
using System.Threading.Tasks;
using Moq;
using NUnit.Framework;
using VirtualClient.Common.Telemetry;
using VirtualClient.Contracts;
[TestFixture]
[Category("Unit")]
public class HPLinpackExecutorTests
{
private static readonly string ExamplesDirectory = MockFixture.GetDirectory(typeof(HPLinpackExecutorTests), "Examples", "HPLinpack");
private MockFixture mockFixture;
private DependencyPath mockPackage;
private DependencyPath mockPerformanceLibariesPackage;
private string exampleResults;
private void SetupTest(PlatformID platform = PlatformID.Unix, Architecture architecture = Architecture.X64)
{
this.mockFixture = new MockFixture();
this.mockPackage = new DependencyPath("HPL", this.mockFixture.GetPackagePath("hplinpack"));
this.mockPerformanceLibariesPackage = new DependencyPath("hplperformancelibraries", this.mockFixture.GetPackagePath("hplperformancelibraries"));
this.mockFixture.Setup(platform, architecture);
this.mockFixture.SetupPackage(this.mockPackage);
this.mockFixture.SetupPackage(this.mockPerformanceLibariesPackage);
this.mockFixture.FileSystem.Setup(fe => fe.File.Exists(It.IsAny<string>())).Returns(true);
this.mockFixture.FileSystem.Setup(fe => fe.File.Exists(null)).Returns(false);
this.exampleResults = File.ReadAllText(this.mockFixture.Combine(HPLinpackExecutorTests.ExamplesDirectory, "HPLResults.txt"));
this.mockFixture.FileSystem.Setup(rt => rt.File.ReadAllText(It.IsAny<string>()))
.Returns(this.exampleResults);
this.mockFixture.FileSystem.Setup(rt => rt.File.ReadAllTextAsync(It.IsAny<string>(), It.IsAny<CancellationToken>()))
.ReturnsAsync(this.exampleResults);
this.mockFixture.ProcessManager.OnCreateProcess = (command, arguments, directory) => this.mockFixture.Process;
this.mockFixture.Process.StandardOutput.Append(this.exampleResults);
this.mockFixture.SystemManagement.Setup(mgr => mgr.GetMemoryInfoAsync(It.IsAny<CancellationToken>()))
.ReturnsAsync(new MemoryInfo(1000 * 1024 * 1024));
this.mockFixture.SystemManagement.Setup(mgr => mgr.GetCpuInfoAsync(It.IsAny<CancellationToken>()))
.ReturnsAsync(new CpuInfo("cpu", "description", 7, 9, 11, 13, true));
this.mockFixture.Parameters = new Dictionary<string, IConvertible>()
{
["CompilerName"] = "gcc",
["CompilerVersion"] = "11",
["PackageName"] = "HPL",
["ProblemSizeN"] = "20000",
["BlockSizeNB"] = "256",
["Scenario"] = "ProcessorSpeed",
["NumberOfProcesses"] = "2"
};
}
[Test]
[TestCase(PlatformID.Unix, Architecture.X64)]
[TestCase(PlatformID.Unix, Architecture.Arm64)]
public async Task HPLinpackExecutorInitializesItsDependenciesAsExpected(PlatformID platform, Architecture architecture)
{
this.SetupTest(platform, architecture);
using (TestHPLExecutor executor = new TestHPLExecutor(this.mockFixture))
{
this.mockFixture.ProcessManager.OnCreateProcess = (command, arguments, workingDirectory) =>
{
return this.mockFixture.Process;
};
await executor.InitializeAsync(EventContext.None, CancellationToken.None)
.ConfigureAwait(false);
string workloadExpectedPath = this.mockFixture.PlatformSpecifics.ToPlatformSpecificPath(this.mockPackage, platform, architecture).Path;
Assert.AreEqual(workloadExpectedPath, executor.GetHPLDirectory);
}
}
[Test]
[TestCase(PlatformID.Unix, Architecture.X64)]
[TestCase(PlatformID.Unix, Architecture.Arm64)]
public void HPLinpackExecutorThrowsOnValidateParametersFailing(PlatformID platform, Architecture architecture)
{
this.SetupTest(platform, architecture);
this.mockFixture.Parameters["NumberOfProcesses"] = 100;
using (TestHPLExecutor executor = new TestHPLExecutor(this.mockFixture))
{
Exception exception = Assert.ThrowsAsync<Exception>(
() => executor.ExecuteAsync(EventContext.None, CancellationToken.None));
StringAssert.Contains("NumberOfProcesses parameter value should be less than or equal to number of logical cores", exception.Message);
}
}
[Test]
[TestCase(PlatformID.Unix, Architecture.Arm64)]
[TestCase(PlatformID.Unix, Architecture.X64)]
public async Task HPLinpackExecutorExecutesWorkloadAsExpectedWithNoPerformanceLibrariesOnUbuntuPlatform(PlatformID platform, Architecture architecture)
{
this.SetupTest(platform, architecture);
using (TestHPLExecutor executor = new TestHPLExecutor(this.mockFixture))
{
List<string> expectedCommands = new List<string>()
{
$"sudo bash -c \"source make_generic\"",
$"mv Make.UNKNOWN Make.Linux_GCC",
$"ln -s {this.mockFixture.PlatformSpecifics.Combine(executor.GetHPLDirectory, "setup", "Make.Linux_GCC" )} Make.Linux_GCC",
$"make arch=Linux_GCC",
$"sudo runuser -u {Environment.UserName} -- mpirun --use-hwthread-cpus -np {this.mockFixture.Parameters["NumberOfProcesses"] ?? Environment.ProcessorCount} ./xhpl"
};
this.mockFixture.ProcessManager.OnCreateProcess = (command, arguments, workingDirectory) =>
{
expectedCommands.Remove(expectedCommands[0]);
if (arguments == $"runuser -u {Environment.UserName} -- mpirun --use-hwthread-cpus -np {this.mockFixture.Parameters["NumberOfProcesses"] ?? Environment.ProcessorCount} ./xhpl")
{
this.mockFixture.Process.StandardOutput.Append(this.exampleResults);
}
return this.mockFixture.Process;
};
await executor.ExecuteAsync(EventContext.None, CancellationToken.None)
.ConfigureAwait(false);
Assert.AreEqual(expectedCommands.Count, 0);
}
}
[Test]
[TestCase(PlatformID.Unix, Architecture.Arm64)]
public async Task HPLinpackExecutorExecutesWorkloadAsExpectedWithPerformanceLibraries23OnUbuntuArm64Platform(PlatformID platform, Architecture architecture)
{
this.SetupTest(platform, architecture);
this.mockFixture.Parameters["PerformanceLibrary"] = "ARM";
this.mockFixture.Parameters["PerformanceLibraryVersion"] = "23.04.1";
using (TestHPLExecutor executor = new TestHPLExecutor(this.mockFixture))
{
List<string> expectedCommands = new List<string>()
{
$"sudo chmod +x {this.mockFixture.PlatformSpecifics.Combine(this.mockPackage.Path, "ARM", "arm-performance-libraries_23.04.1.sh")}",
$"sudo ./arm-performance-libraries_23.04.1.sh -a",
$"sudo bash -c \"source make_generic\"",
$"mv Make.UNKNOWN Make.Linux_GCC",
$"ln -s {this.mockFixture.PlatformSpecifics.Combine(executor.GetHPLDirectory, "setup", "Make.Linux_GCC" )} Make.Linux_GCC",
$"make arch=Linux_GCC",
$"sudo runuser -u {Environment.UserName} -- mpirun --use-hwthread-cpus -np {this.mockFixture.Parameters["NumberOfProcesses"] ?? Environment.ProcessorCount} ./xhpl"
};
this.mockFixture.ProcessManager.OnCreateProcess = (command, arguments, workingDirectory) =>
{
expectedCommands.Remove(expectedCommands[0]);
if (arguments == $"runuser -u {Environment.UserName} -- mpirun --use-hwthread-cpus -np {this.mockFixture.Parameters["NumberOfProcesses"] ?? Environment.ProcessorCount} ./xhpl")
{
this.mockFixture.Process.StandardOutput.Append(this.exampleResults);
}
return this.mockFixture.Process;
};
await executor.ExecuteAsync(EventContext.None, CancellationToken.None)
.ConfigureAwait(false);
Assert.AreEqual(expectedCommands.Count, 0);
}
}
[TestCase(PlatformID.Unix, Architecture.Arm64)]
public async Task HPLinpackExecutorExecutesWorkloadAsExpectedWithPerformanceLibraries24OnUbuntuArm64Platform(PlatformID platform, Architecture architecture)
{
this.SetupTest(platform, architecture);
this.mockFixture.Parameters["PerformanceLibrary"] = "ARM";
this.mockFixture.Parameters["PerformanceLibraryVersion"] = "24.10";
using (TestHPLExecutor executor = new TestHPLExecutor(this.mockFixture))
{
List<string> expectedCommands = new List<string>()
{
$"sudo chmod +x {this.mockFixture.PlatformSpecifics.Combine(this.mockPackage.Path, "ARM", "arm-performance-libraries_24.10.sh")}",
$"sudo ./arm-performance-libraries_24.10.sh -a",
$"sudo bash -c \"source make_generic\"",
$"mv Make.UNKNOWN Make.Linux_GCC",
$"ln -s {this.mockFixture.PlatformSpecifics.Combine(executor.GetHPLDirectory, "setup", "Make.Linux_GCC" )} Make.Linux_GCC",
$"make arch=Linux_GCC",
$"sudo runuser -u {Environment.UserName} -- mpirun --use-hwthread-cpus -np {this.mockFixture.Parameters["NumberOfProcesses"] ?? Environment.ProcessorCount} ./xhpl"
};
this.mockFixture.ProcessManager.OnCreateProcess = (command, arguments, workingDirectory) =>
{
expectedCommands.Remove(expectedCommands[0]);
if (arguments == $"runuser -u {Environment.UserName} -- mpirun --use-hwthread-cpus -np {this.mockFixture.Parameters["NumberOfProcesses"] ?? Environment.ProcessorCount} ./xhpl")
{
this.mockFixture.Process.StandardOutput.Append(this.exampleResults);
}
return this.mockFixture.Process;
};
await executor.ExecuteAsync(EventContext.None, CancellationToken.None)
.ConfigureAwait(false);
Assert.AreEqual(expectedCommands.Count, 0);
}
}
[Test]
[TestCase(PlatformID.Unix, Architecture.Arm64)]
public async Task HPLinpackExecutorExecutesWorkloadAsExpectedWithPerformanceLibraries25OnUbuntuArm64Platform(PlatformID platform, Architecture architecture)
{
this.SetupTest(platform, architecture);
this.mockFixture.Parameters["PerformanceLibrary"] = "ARM";
this.mockFixture.Parameters["PerformanceLibraryVersion"] = "25.04.1";
using (TestHPLExecutor executor = new TestHPLExecutor(this.mockFixture))
{
List<string> expectedCommands = new List<string>()
{
$"sudo chmod +x {this.mockFixture.PlatformSpecifics.Combine(this.mockPackage.Path, "ARM", "arm-performance-libraries_25.04.1.sh")}",
$"sudo ./arm-performance-libraries_25.04.1.sh -a",
$"sudo bash -c \"source make_generic\"",
$"mv Make.UNKNOWN Make.Linux_GCC",
$"ln -s {this.mockFixture.PlatformSpecifics.Combine(executor.GetHPLDirectory, "setup", "Make.Linux_GCC" )} Make.Linux_GCC",
$"make arch=Linux_GCC",
$"sudo runuser -u {Environment.UserName} -- mpirun --use-hwthread-cpus -np {this.mockFixture.Parameters["NumberOfProcesses"] ?? Environment.ProcessorCount} ./xhpl"
};
this.mockFixture.ProcessManager.OnCreateProcess = (command, arguments, workingDirectory) =>
{
expectedCommands.Remove(expectedCommands[0]);
if (arguments == $"runuser -u {Environment.UserName} -- mpirun --use-hwthread-cpus -np {this.mockFixture.Parameters["NumberOfProcesses"] ?? Environment.ProcessorCount} ./xhpl")
{
this.mockFixture.Process.StandardOutput.Append(this.exampleResults);
}
return this.mockFixture.Process;
};
await executor.ExecuteAsync(EventContext.None, CancellationToken.None)
.ConfigureAwait(false);
Assert.AreEqual(expectedCommands.Count, 0);
}
}
private class TestHPLExecutor : HPLinpackExecutor
{
public TestHPLExecutor(MockFixture fixture)
: base(fixture.Dependencies, fixture.Parameters)
{
}
public new Task InitializeAsync(EventContext telemetryContext, CancellationToken cancellationToken)
{
return base.InitializeAsync(telemetryContext, cancellationToken);
}
public new Task ExecuteAsync(EventContext context, CancellationToken cancellationToken)
{
this.InitializeAsync(context, cancellationToken).GetAwaiter().GetResult();
return base.ExecuteAsync(context, cancellationToken);
}
public string GetHPLDirectory => base.HPLDirectory;
}
}
}