-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixing bugs in lmbench and hplinpack (#239)
* Fixing bugs in lmbench and hplinpack * resolving testcases * fixing sockperf server process exiting instruction from client * resolving comments * reverting changes for sockperf
- Loading branch information
1 parent
215235e
commit 991d433
Showing
4 changed files
with
104 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
89 changes: 51 additions & 38 deletions
89
src/VirtualClient/VirtualClient.Main/profiles/PERF-MEM-LMBENCH.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,55 @@ | ||
{ | ||
"Description": "LMbench Performance Workload", | ||
"MinimumExecutionInterval": "00:10:00", | ||
"Metadata": { | ||
"RecommendedMinimumExecutionTime": "(4-cores)=04:00:00,(16-cores)=10:00:00,(64-cores)=16:00:00", | ||
"SupportedPlatforms": "linux-x64,linux-arm64", | ||
"SupportedOperatingSystems": "CBL-Mariner,CentOS,Debian,RedHat,Suse,Ubuntu" | ||
"Description": "LMbench Performance Workload", | ||
"MinimumExecutionInterval": "00:10:00", | ||
"Metadata": { | ||
"RecommendedMinimumExecutionTime": "(4-cores)=04:00:00,(16-cores)=10:00:00,(64-cores)=16:00:00", | ||
"SupportedPlatforms": "linux-x64,linux-arm64", | ||
"SupportedOperatingSystems": "CBL-Mariner,CentOS,Debian,RedHat,Suse,Ubuntu" | ||
}, | ||
"Parameters": { | ||
"CompilerName": "gcc", | ||
"CompilerVersion": "10", | ||
"CompilerFlags": "CPPFLAGS=\"-I /usr/include/tirpc\"", | ||
"LDLIBS": "-lm -ltirpc" | ||
}, | ||
"Actions": [ | ||
{ | ||
"Type": "LMbenchExecutor", | ||
"Parameters": { | ||
"Scenario": "MemoryPerformance", | ||
"PackageName": "lmbench", | ||
"CompilerFlags": "$.Parameters.CompilerFlags", | ||
"LDLIBS": "$.Parameters.LDLIBS" | ||
} | ||
} | ||
], | ||
"Dependencies": [ | ||
{ | ||
"Type": "LinuxPackageInstallation", | ||
"Parameters": { | ||
"Scenario": "InstallLinuxPackages", | ||
"Packages-Apt": "libtirpc-dev", | ||
"Packages-Yum": "libtirpc-devel", | ||
"Packages-Dnf": "libtirpc-devel" | ||
} | ||
}, | ||
"Parameters": { | ||
"CompilerName": "gcc", | ||
"CompilerVersion": "10" | ||
{ | ||
"Type": "CompilerInstallation", | ||
"Parameters": { | ||
"Scenario": "InstallCompiler", | ||
"CompilerName": "$.Parameters.CompilerName", | ||
"CompilerVersion": "$.Parameters.CompilerVersion" | ||
} | ||
}, | ||
"Actions": [ | ||
{ | ||
"Type": "LMbenchExecutor", | ||
"Parameters": { | ||
"Scenario": "MemoryPerformance", | ||
"PackageName": "lmbench" | ||
} | ||
} | ||
], | ||
"Dependencies": [ | ||
{ | ||
"Type": "CompilerInstallation", | ||
"Parameters": { | ||
"Scenario": "InstallCompiler", | ||
"CompilerName": "$.Parameters.CompilerName", | ||
"CompilerVersion": "$.Parameters.CompilerVersion" | ||
} | ||
}, | ||
{ | ||
"Type": "DependencyPackageInstallation", | ||
"Parameters": { | ||
"Scenario": "InstallLMbenchPackages", | ||
"BlobContainer": "packages", | ||
"BlobName": "lmbench.1.0.0-2alpha8.zip", | ||
"PackageName": "lmbench", | ||
"Extract": true | ||
} | ||
} | ||
] | ||
{ | ||
"Type": "DependencyPackageInstallation", | ||
"Parameters": { | ||
"Scenario": "InstallLMbenchPackages", | ||
"BlobContainer": "packages", | ||
"BlobName": "lmbench.1.0.0-2alpha8.zip", | ||
"PackageName": "lmbench", | ||
"Extract": true | ||
} | ||
} | ||
] | ||
} |