We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a48c96 commit 85f7ebdCopy full SHA for 85f7ebd
src/BenchmarksApps/TechEmpower/startprocess.sh
@@ -1,6 +1,13 @@
1
#!/bin/bash
2
3
-dotnet ./PlatformBenchmarks.dll &
4
5
6
-dotnet ./PlatformBenchmarks.dll
+cgcreate -g cpu,cpuset:/cpugroup1
+cgcreate -g cpu,cpuset:/cpugroup2
+
+cgset -r cpuset.cpus=0-27 /cpugroup1
7
+cgset -r cpuset.cpus=28-55 /cpugroup2
8
9
+cgexec -g cpu:/cpugroup1 dotnet ./PlatformBenchmarks.dll &
10
+cgexec -g cpu:/cpugroup2 dotnet ./PlatformBenchmarks.dll
11
12
+cgdelete -g cpu:/cpugroup1
13
+cgdelete -g cpu:/cpugroup2
0 commit comments