aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/test/java/com/google/devtools/build/lib/actions/LocalHostResourceManagerLinuxTest.java
blob: 3cd5ded3589cdaa9f6804d3ae35a76b3ff323446 (plain)
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
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
// Copyright 2015 The Bazel Authors. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//    http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package com.google.devtools.build.lib.actions;

import static org.junit.Assert.assertEquals;

import com.google.devtools.build.lib.util.StringUtilities;
import com.google.devtools.build.lib.vfs.util.FsApparatus;

import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.JUnit4;

/**
 * Test for LocalHostResourceManagerLinux.
 */
@RunWith(JUnit4.class)
public class LocalHostResourceManagerLinuxTest {

  private final FsApparatus scratch = FsApparatus.newNative();

  @Test
  public void testNonHyperthreadedMachine() throws Exception {
    String cpuinfoContent =
        StringUtilities.joinLines(
            "processor\t: 0",
            "vendor_id\t: GenuineIntel",
            "cpu family\t: 15",
            "model\t\t: 4",
            "model name\t:               Intel(R) Pentium(R) 4 CPU 3.40GHz",
            "stepping\t: 10",
            "cpu MHz\t\t: 3400.000",
            "cache size\t: 2048 KB",
            "fpu\t\t: yes",
            "fpu_exception\t: yes",
            "cpuid level\t: 5",
            "wp\t\t: yes",
            "flags\t\t: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca "
                + "cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm "
                + "syscall nx lm constant_tsc up pni monitor ds_cpl est cid cx16 "
                + "xtpr lahf_lm",
            "bogomips\t: 6803.83",
            "clflush size\t: 64",
            "cache_alignment\t: 128",
            "address sizes\t: 36 bits physical, 48 bits virtual",
            "power management:");
    String meminfoContent =
        StringUtilities.joinLines(
            "MemTotal:      3091732 kB",
            "MemFree:       2167344 kB",
            "Buffers:         60644 kB",
            "Cached:         509940 kB",
            "SwapCached:          0 kB",
            "Active:         636892 kB",
            "Inactive:       212760 kB",
            "HighTotal:           0 kB",
            "HighFree:            0 kB",
            "LowTotal:      3091732 kB",
            "LowFree:       2167344 kB",
            "SwapTotal:     9124880 kB",
            "SwapFree:      9124880 kB",
            "Dirty:               0 kB",
            "Writeback:           0 kB",
            "AnonPages:      279028 kB",
            "Mapped:          54404 kB",
            "Slab:            42820 kB",
            "PageTables:       5184 kB",
            "NFS_Unstable:        0 kB",
            "Bounce:              0 kB",
            "CommitLimit:  10670744 kB",
            "Committed_AS:   665840 kB",
            "VmallocTotal: 34359738367 kB",
            "VmallocUsed:    300484 kB",
            "VmallocChunk: 34359437307 kB",
            "HugePages_Total:     0",
            "HugePages_Free:      0",
            "HugePages_Rsvd:      0",
            "Hugepagesize:     2048 kB");
    String meminfoFile = scratch.file("test_meminfo_nonht", meminfoContent).getPathString();
    assertEquals(1, LocalHostResourceManagerLinux.getLogicalCpuCountHelper(cpuinfoContent));
    assertEquals(1, LocalHostResourceManagerLinux.getPhysicalCpuCountHelper(1, cpuinfoContent));
    // +/- 0.1MB
    assertEquals(3091.732, LocalHostResourceManagerLinux.getMemoryInMbHelper(meminfoFile), 0.1);
  }

  @Test
  public void testHyperthreadedMachine() throws Exception {
    String cpuinfoContent =
        StringUtilities.joinLines(
            "processor\t: 0",
            "vendor_id\t: GenuineIntel",
            "cpu family\t: 15",
            "model\t\t: 4",
            "model name\t:               Intel(R) Pentium(R) 4 CPU 3.40GHz",
            "stepping\t: 1",
            "cpu MHz\t\t: 3400.245",
            "cache size\t: 1024 KB",
            "physical id\t: 0",
            "siblings\t: 2",
            "core id\t\t: 0",
            "cpu cores\t: 1",
            "fpu\t\t: yes",
            "fpu_exception\t: yes",
            "cpuid level\t: 5",
            "wp\t\t: yes",
            "flags\t\t: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge "
                + "mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm "
                + "syscall lm constant_tsc pni monitor ds_cpl cid cx16 xtpr",
            "bogomips\t: 6806.31",
            "clflush size\t: 64",
            "cache_alignment\t: 128",
            "address sizes\t: 36 bits physical, 48 bits virtual",
            "power management:",
            "",
            "processor\t: 1",
            "vendor_id\t: GenuineIntel",
            "cpu family\t: 15",
            "model\t\t: 4",
            "model name\t:               Intel(R) Pentium(R) 4 CPU 3.40GHz",
            "stepping\t: 1",
            "cpu MHz\t\t: 3400.245",
            "cache size\t: 1024 KB",
            "physical id\t: 0",
            "siblings\t: 2",
            "core id\t\t: 0",
            "cpu cores\t: 1",
            "fpu\t\t: yes",
            "fpu_exception\t: yes",
            "cpuid level\t: 5",
            "wp\t\t: yes",
            "flags\t\t: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge "
                + "mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm "
                + "syscall lm constant_tsc pni monitor ds_cpl cid cx16 xtpr",
            "bogomips\t: 6800.76",
            "clflush size\t: 64",
            "cache_alignment\t: 128",
            "address sizes\t: 36 bits physical, 48 bits virtual",
            "power management:",
            "");
    String meminfoContent =
        StringUtilities.joinLines(
            "MemTotal:      3092004 kB",
            "MemFree:         26124 kB",
            "Buffers:          3836 kB",
            "Cached:          52400 kB",
            "SwapCached:      68204 kB",
            "Active:        2281464 kB",
            "Inactive:       260908 kB",
            "HighTotal:           0 kB",
            "HighFree:            0 kB",
            "LowTotal:      3092004 kB",
            "LowFree:         26124 kB",
            "SwapTotal:     9124880 kB",
            "SwapFree:      8264920 kB",
            "Dirty:             616 kB",
            "Writeback:           0 kB",
            "AnonPages:     2466336 kB",
            "Mapped:          37576 kB",
            "Slab:           483004 kB",
            "PageTables:      11912 kB",
            "NFS_Unstable:        0 kB",
            "Bounce:              0 kB",
            "CommitLimit:  10670880 kB",
            "Committed_AS:  3627984 kB",
            "VmallocTotal: 34359738367 kB",
            "VmallocUsed:    300460 kB",
            "VmallocChunk: 34359437307 kB",
            "HugePages_Total:     0",
            "HugePages_Free:      0",
            "HugePages_Rsvd:      0",
            "Hugepagesize:     2048 kB");
    String meminfoFile = scratch.file("test_meminfo_ht", meminfoContent).getPathString();
    assertEquals(2, LocalHostResourceManagerLinux.getLogicalCpuCountHelper(cpuinfoContent));
    assertEquals(1, LocalHostResourceManagerLinux.getPhysicalCpuCountHelper(2, cpuinfoContent));
    // +/- 0.1MB
    assertEquals(3092.004, LocalHostResourceManagerLinux.getMemoryInMbHelper(meminfoFile), 0.1);
  }

  @Test
  public void testAMDMachine() throws Exception {
    String cpuinfoContent =
        StringUtilities.joinLines(
            "processor\t: 0",
            "vendor_id\t: AuthenticAMD",
            "cpu family\t: 15",
            "model\t\t: 65",
            "model name\t: Dual-Core AMD Opteron(tm) Processor 8214 HE",
            "stepping\t: 2",
            "cpu MHz\t\t: 2200.000",
            "cache size\t: 1024 KB",
            "physical id\t: 0",
            "siblings\t: 2",
            "core id\t\t: 0",
            "cpu cores\t: 2",
            "fpu\t\t: yes",
            "fpu_exception\t: yes",
            "cpuid level\t: 1",
            "wp\t\t: yes",
            "flags\t\t: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr "
                + "pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall "
                + "nx mmxext fxsr_opt rdtscp lm 3dnowext 3dnow pni cx16 lahf_lm "
                + "cmp_legacy svm cr8_legacy",
            "bogomips\t: 4425.84",
            "TLB size\t: 1024 4K pages",
            "clflush size\t: 64",
            "cache_alignment\t: 64",
            "address sizes\t: 40 bits physical, 48 bits virtual",
            "power management: ts fid vid ttp tm stc",
            "",
            "processor\t: 1",
            "vendor_id\t: AuthenticAMD",
            "cpu family\t: 15",
            "model\t\t: 65",
            "model name\t: Dual-Core AMD Opteron(tm) Processor 8214 HE",
            "stepping\t: 2",
            "cpu MHz\t\t: 2200.000",
            "cache size\t: 1024 KB",
            "physical id\t: 0",
            "siblings\t: 2",
            "core id\t\t: 1",
            "cpu cores\t: 2",
            "fpu\t\t: yes",
            "fpu_exception\t: yes",
            "cpuid level\t: 1",
            "wp\t\t: yes",
            "flags\t\t: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr "
                + "pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall "
                + "nx mmxext fxsr_opt rdtscp lm 3dnowext 3dnow pni cx16 lahf_lm "
                + "cmp_legacy svm cr8_legacy",
            "bogomips\t: 4460.61",
            "TLB size\t: 1024 4K pages",
            "clflush size\t: 64",
            "cache_alignment\t: 64",
            "address sizes\t: 40 bits physical, 48 bits virtual",
            "power management: ts fid vid ttp tm stc",
            "",
            "processor\t: 2",
            "vendor_id\t: AuthenticAMD",
            "cpu family\t: 15",
            "model\t\t: 65",
            "model name\t: Dual-Core AMD Opteron(tm) Processor 8214 HE",
            "stepping\t: 2",
            "cpu MHz\t\t: 2200.000",
            "cache size\t: 1024 KB",
            "physical id\t: 1",
            "siblings\t: 2",
            "core id\t\t: 0",
            "cpu cores\t: 2",
            "fpu\t\t: yes",
            "fpu_exception\t: yes",
            "cpuid level\t: 1",
            "wp\t\t: yes",
            "flags\t\t: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr "
                + "pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall "
                + "nx mmxext fxsr_opt rdtscp lm 3dnowext 3dnow pni cx16 lahf_lm "
                + "cmp_legacy svm cr8_legacy",
            "bogomips\t: 4420.45",
            "TLB size\t: 1024 4K pages",
            "clflush size\t: 64",
            "cache_alignment\t: 64",
            "address sizes\t: 40 bits physical, 48 bits virtual",
            "power management: ts fid vid ttp tm stc",
            "",
            "processor\t: 3",
            "vendor_id\t: AuthenticAMD",
            "cpu family\t: 15",
            "model\t\t: 65",
            "model name\t: Dual-Core AMD Opteron(tm) Processor 8214 HE",
            "stepping\t: 2",
            "cpu MHz\t\t: 2200.000",
            "cache size\t: 1024 KB",
            "physical id\t: 1",
            "siblings\t: 2",
            "core id\t\t: 1",
            "cpu cores\t: 2",
            "fpu\t\t: yes",
            "fpu_exception\t: yes",
            "cpuid level\t: 1",
            "wp\t\t: yes",
            "flags\t\t: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr "
                + "pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall "
                + "nx mmxext fxsr_opt rdtscp lm 3dnowext 3dnow pni cx16 lahf_lm "
                + "cmp_legacy svm cr8_legacy",
            "bogomips\t: 4460.39",
            "TLB size\t: 1024 4K pages",
            "clflush size\t: 64",
            "cache_alignment\t: 64",
            "address sizes\t: 40 bits physical, 48 bits virtual",
            "power management: ts fid vid ttp tm stc",
            "");
    String meminfoContent =
        StringUtilities.joinLines(
            "MemTotal:      8223956 kB",
            "MemFree:       3670396 kB",
            "Buffers:        374068 kB",
            "Cached:        3366980 kB",
            "SwapCached:          0 kB",
            "Active:        3275860 kB",
            "Inactive:       737816 kB",
            "HighTotal:           0 kB",
            "HighFree:            0 kB",
            "LowTotal:      8223956 kB",
            "LowFree:       3670396 kB",
            "SwapTotal:     6024332 kB",
            "SwapFree:      6024332 kB",
            "Dirty:              84 kB",
            "Writeback:           0 kB",
            "AnonPages:      272308 kB",
            "Mapped:          62604 kB",
            "Slab:           506140 kB",
            "PageTables:       4608 kB",
            "NFS_Unstable:        0 kB",
            "Bounce:              0 kB",
            "CommitLimit:  10136308 kB",
            "Committed_AS:   600672 kB",
            "VmallocTotal: 34359738367 kB",
            "VmallocUsed:    299068 kB",
            "VmallocChunk: 34359438843 kB",
            "HugePages_Total:     0",
            "HugePages_Free:      0",
            "HugePages_Rsvd:      0",
            "Hugepagesize:     2048 kB");
    String meminfoFile = scratch.file("test_meminfo_amd", meminfoContent).getPathString();
    assertEquals(4, LocalHostResourceManagerLinux.getLogicalCpuCountHelper(cpuinfoContent));
    assertEquals(4, LocalHostResourceManagerLinux.getPhysicalCpuCountHelper(4, cpuinfoContent));
    // +/- 0.1MB
    assertEquals(8223.956, LocalHostResourceManagerLinux.getMemoryInMbHelper(meminfoFile), 0.1);
  }
}