Released as 20191022 ('DrivingIT')
[parallel.git] / testsuite / tests-to-run / parallel-local-1s.sh
blob7c9ce8dcdfb3e36590e42b342829ed5f73fa1d08
1 #!/bin/bash
3 # Simple jobs that never fails
4 # Each should be taking 1-3s and be possible to run in parallel
5 # I.e.: No race conditions, no logins
8 par_profiles_with_space() {
9 echo '### bug #42902: profiles containing arguments with space'
10 echo "--rpl 'FULLPATH chomp(\$_=\"/bin/bash=\".\`readlink -f \$_\`);' " > ~/.parallel/FULLPATH;
11 parallel -JFULLPATH echo FULLPATH ::: $0
12 PARALLEL="--rpl 'FULLPATH chomp(\$_=\"/bin/bash=\".\`readlink -f \$_\`);' -v" parallel echo FULLPATH ::: $0
13 PARALLEL="--rpl 'FULLPATH chomp(\$_=\"/bin/bash=\".\`readlink -f \$_\`);' perl -e \'print \\\"@ARGV\\\n\\\"\' " parallel With script in \\\$PARALLEL FULLPATH ::: . |
14 perl -pe 's:parallel./:parallel/:'
17 par_fifo_under_csh() {
18 echo '### Test --fifo under csh'
20 csh -c "seq 3000000 | parallel -k --pipe --fifo 'sleep .{#};cat {}|wc -c ; false; echo \$status; false'"
21 echo exit $?
24 par_compress_prg_fails() {
25 echo '### bug #44546: If --compress-program fails: fail'
26 doit() {
27 (parallel $* --compress-program false \
28 echo \; sleep 1\; ls ::: /no-existing
29 echo $?) | tail -n1
31 export -f doit
32 parallel --tag -k doit ::: '' --line-buffer ::: '' --tag ::: '' --files
35 par_pxz_complains() {
36 echo 'bug #44250: pxz complains File format not recognized but decompresses anyway'
38 # The first line dumps core if run from make file. Why?!
39 stdout parallel --compress --compress-program pxz ls /{} ::: OK-if-missing-file
40 stdout parallel --compress --compress-program pixz --decompress-program 'pixz -d' ls /{} ::: OK-if-missing-file
41 stdout parallel --compress --compress-program pixz --decompress-program 'pixz -d' true ::: OK-if-no-output
42 stdout parallel --compress --compress-program pxz true ::: OK-if-no-output
45 par_test_XI_mI() {
46 echo "### Test -I"
47 seq 1 10 | parallel -k 'seq 1 {} | parallel -k -I :: echo {} ::'
49 echo "### Test -X -I"
50 seq 1 10 | parallel -k 'seq 1 {} | parallel -j1 -X -k -I :: echo a{} b::'
52 echo "### Test -m -I"
53 seq 1 10 | parallel -k 'seq 1 {} | parallel -j1 -m -k -I :: echo a{} b::'
56 par_failing_compressor() {
57 echo 'Compress with failing (de)compressor'
58 echo 'Test --tag/--line-buffer/--files in all combinations'
59 echo 'Test working/failing compressor/decompressor in all combinations'
60 echo '(-k is used as a dummy argument)'
61 stdout parallel -vk --header : --argsep ,,, \
62 parallel -k {tag} {lb} {files} --compress --compress-program {comp} --decompress-program {decomp} echo ::: C={comp},D={decomp} \
63 ,,, tag --tag -k \
64 ,,, lb --line-buffer -k \
65 ,,, files --files -k \
66 ,,, comp 'cat;true' 'cat;false' \
67 ,,, decomp 'cat;true' 'cat;false' |
68 perl -pe 's:/par......par:/tmpfile:'
71 par_result() {
72 echo "### Test --results"
73 mkdir -p /tmp/parallel_results_test
74 parallel -k --results /tmp/parallel_results_test/testA echo {1} {2} ::: I II ::: III IIII
75 ls /tmp/parallel_results_test/testA/*/*/*/*/* | LC_ALL=C sort
76 rm -rf /tmp/parallel_results_test/testA*
78 echo "### Test --res"
79 mkdir -p /tmp/parallel_results_test
80 parallel -k --res /tmp/parallel_results_test/testD echo {1} {2} ::: I II ::: III IIII
81 ls /tmp/parallel_results_test/testD/*/*/*/*/* | LC_ALL=C sort
82 rm -rf /tmp/parallel_results_test/testD*
84 echo "### Test --result"
85 mkdir -p /tmp/parallel_results_test
86 parallel -k --result /tmp/parallel_results_test/testE echo {1} {2} ::: I II ::: III IIII
87 ls /tmp/parallel_results_test/testE/*/*/*/*/* | LC_ALL=C sort
88 rm -rf /tmp/parallel_results_test/testE*
90 echo "### Test --results --header :"
91 mkdir -p /tmp/parallel_results_test
92 parallel -k --header : --results /tmp/parallel_results_test/testB echo {1} {2} ::: a I II ::: b III IIII
93 ls /tmp/parallel_results_test/testB/*/*/*/*/* | LC_ALL=C sort
94 rm -rf /tmp/parallel_results_test/testB*
96 echo "### Test --results --header : named - a/b swapped"
97 mkdir -p /tmp/parallel_results_test
98 parallel -k --header : --results /tmp/parallel_results_test/testC echo {a} {b} ::: b III IIII ::: a I II
99 ls /tmp/parallel_results_test/testC/*/*/*/*/* | LC_ALL=C sort
100 rm -rf /tmp/parallel_results_test/testC*
102 echo "### Test --results --header : piped"
103 mkdir -p /tmp/parallel_results_test
104 (echo Col; perl -e 'print "backslash\\tab\tslash/null\0eof\n"') | parallel --header : --result /tmp/parallel_results_test/testF true
105 find /tmp/parallel_results_test/testF/*/*/* | LC_ALL=C sort
106 rm -rf /tmp/parallel_results_test/testF*
108 echo "### Test --results --header : piped - non-existing column header"
109 mkdir -p /tmp/parallel_results_test
110 (printf "Col1\t\n"; printf "v1\tv2\tv3\n"; perl -e 'print "backslash\\tab\tslash/null\0eof\n"') |
111 parallel --header : --result /tmp/parallel_results_test/testG true
112 find /tmp/parallel_results_test/testG/ | LC_ALL=C sort
113 rm -rf /tmp/parallel_results_test/testG*
116 par_result_replace() {
117 echo '### bug #49983: --results with {1}'
118 parallel --results /tmp/par_{}_49983 -k echo ::: foo bar baz
119 find /tmp/par_*_49983 | LC_ALL=C sort
120 rm -rf /tmp/par_*_49983
121 parallel --results /tmp/par_{}_49983 -k echo ::: foo bar baz ::: A B C
122 find /tmp/par_*_49983 | LC_ALL=C sort
123 rm -rf /tmp/par_*_49983
124 parallel --results /tmp/par_{1}-{2}_49983 -k echo ::: foo bar baz ::: A B C
125 find /tmp/par_*_49983 | LC_ALL=C sort
126 rm -rf /tmp/par_*_49983
127 parallel --results /tmp/par__49983 -k echo ::: foo bar baz ::: A B C
128 find /tmp/par_*_49983 | LC_ALL=C sort
129 rm -rf /tmp/par_*_49983
130 parallel --results /tmp/par__49983 --header : -k echo ::: foo bar baz ::: A B C
131 find /tmp/par_*_49983 | LC_ALL=C sort
132 rm -rf /tmp/par_*_49983
133 parallel --results /tmp/par__49983-{}/ --header : -k echo ::: foo bar baz ::: A B C
134 find /tmp/par_*_49983-* | LC_ALL=C sort
135 rm -rf /tmp/par_*_49983-*
138 par_incomplete_linebuffer() {
139 echo 'bug #51337: --lb does not kill jobs at sigpipe'
140 cat > /tmp/parallel--lb-test <<'_EOF'
141 #!/usr/bin/perl
143 while(1){ print ++$t,"\n"}
144 _EOF
145 chmod +x /tmp/parallel--lb-test
147 parallel --lb /tmp/parallel--lb-test ::: 1 | head
148 # Should be empty
149 ps aux | grep parallel[-]-lb-test
152 par_header_parens() {
153 echo 'bug #49538: --header and {= =}'
155 parallel --header : echo '{=v2=}{=v1 $_=Q($_)=}' ::: v1 K ::: v2 O
156 parallel --header : echo '{2}{=1 $_=Q($_)=}' ::: v2 K ::: v1 O
157 parallel --header : echo {var/.} ::: var sub/dir/file.ext
158 parallel --header : echo {var//} ::: var sub/dir/file.ext
159 parallel --header : echo {var/.} ::: var sub/dir/file.ext
160 parallel --header : echo {var/} ::: var sub/dir/file.ext
161 parallel --header : echo {var.} ::: var sub/dir/file.ext
164 par_pipe_compress_blocks() {
165 echo "### bug #41482: --pipe --compress blocks at different -j/seq combinations"
166 seq 1 | parallel -k -j2 --compress -N1 -L1 --pipe cat
167 echo echo 1-4 + 1-4
168 seq 4 | parallel -k -j3 --compress -N1 -L1 -vv echo
169 echo 4 times wc to stderr to stdout
170 (seq 4 | parallel -k -j3 --compress -N1 -L1 --pipe wc '>&2') 2>&1 >/dev/null
171 echo 1 2 3 4
172 seq 4 | parallel -k -j3 --compress echo
173 echo 1 2 3 4
174 seq 4 | parallel -k -j1 --compress echo
175 echo 1 2
176 seq 2 | parallel -k -j1 --compress echo
177 echo 1 2 3
178 seq 3 | parallel -k -j2 --compress -N1 -L1 --pipe cat
181 par_too_long_line_X() {
182 echo 'bug #54869: Long lines break'
183 seq 3000 | parallel -Xj1 'echo {} {} {} {} {} {} {} {} {} {} {} {} {} {} | wc'
186 par_test_cpu_detection() {
187 # Xeon 8 core server in Germany
188 cpuinfo1="
189 processor : 0
190 vendor_id : GenuineIntel
191 cpu family : 6
192 model : 23
193 model name : Intel(R) Xeon(R) CPU E5405 @ 2.00GHz
194 stepping : 10
195 cpu MHz : 1995.036
196 cache size : 6144 KB
197 physical id : 0
198 siblings : 4
199 core id : 0
200 cpu cores : 4
201 apicid : 0
202 initial apicid : 0
203 fpu : yes
204 fpu_exception : yes
205 cpuid level : 13
206 wp : yes
207 flags : 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 pbe syscall nx lm constant_tsc arch_perfmon pebs bts rep_good pni dtes64 monitor ds_cpl vmx tm2 ssse3 cx16 xtpr pdcm dca sse4_1 xsave lahf_lm tpr_shadow vnmi flexpriority
208 bogomips : 3990.07
209 clflush size : 64
210 cache_alignment : 64
211 address sizes : 38 bits physical, 48 bits virtual
212 power management:
214 processor : 1
215 vendor_id : GenuineIntel
216 cpu family : 6
217 model : 23
218 model name : Intel(R) Xeon(R) CPU E5405 @ 2.00GHz
219 stepping : 10
220 cpu MHz : 1995.036
221 cache size : 6144 KB
222 physical id : 0
223 siblings : 4
224 core id : 1
225 cpu cores : 4
226 apicid : 1
227 initial apicid : 1
228 fpu : yes
229 fpu_exception : yes
230 cpuid level : 13
231 wp : yes
232 flags : 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 pbe syscall nx lm constant_tsc arch_perfmon pebs bts rep_good pni dtes64 monitor ds_cpl vmx tm2 ssse3 cx16 xtpr pdcm dca sse4_1 xsave lahf_lm tpr_shadow vnmi flexpriority
233 bogomips : 3990.00
234 clflush size : 64
235 cache_alignment : 64
236 address sizes : 38 bits physical, 48 bits virtual
237 power management:
239 processor : 2
240 vendor_id : GenuineIntel
241 cpu family : 6
242 model : 23
243 model name : Intel(R) Xeon(R) CPU E5405 @ 2.00GHz
244 stepping : 10
245 cpu MHz : 1995.036
246 cache size : 6144 KB
247 physical id : 0
248 siblings : 4
249 core id : 2
250 cpu cores : 4
251 apicid : 2
252 initial apicid : 2
253 fpu : yes
254 fpu_exception : yes
255 cpuid level : 13
256 wp : yes
257 flags : 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 pbe syscall nx lm constant_tsc arch_perfmon pebs bts rep_good pni dtes64 monitor ds_cpl vmx tm2 ssse3 cx16 xtpr pdcm dca sse4_1 xsave lahf_lm tpr_shadow vnmi flexpriority
258 bogomips : 3990.03
259 clflush size : 64
260 cache_alignment : 64
261 address sizes : 38 bits physical, 48 bits virtual
262 power management:
264 processor : 3
265 vendor_id : GenuineIntel
266 cpu family : 6
267 model : 23
268 model name : Intel(R) Xeon(R) CPU E5405 @ 2.00GHz
269 stepping : 10
270 cpu MHz : 1995.036
271 cache size : 6144 KB
272 physical id : 0
273 siblings : 4
274 core id : 3
275 cpu cores : 4
276 apicid : 3
277 initial apicid : 3
278 fpu : yes
279 fpu_exception : yes
280 cpuid level : 13
281 wp : yes
282 flags : 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 pbe syscall nx lm constant_tsc arch_perfmon pebs bts rep_good pni dtes64 monitor ds_cpl vmx tm2 ssse3 cx16 xtpr pdcm dca sse4_1 xsave lahf_lm tpr_shadow vnmi flexpriority
283 bogomips : 3990.03
284 clflush size : 64
285 cache_alignment : 64
286 address sizes : 38 bits physical, 48 bits virtual
287 power management:
289 processor : 4
290 vendor_id : GenuineIntel
291 cpu family : 6
292 model : 23
293 model name : Intel(R) Xeon(R) CPU E5405 @ 2.00GHz
294 stepping : 10
295 cpu MHz : 1995.036
296 cache size : 6144 KB
297 physical id : 1
298 siblings : 4
299 core id : 0
300 cpu cores : 4
301 apicid : 4
302 initial apicid : 4
303 fpu : yes
304 fpu_exception : yes
305 cpuid level : 13
306 wp : yes
307 flags : 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 pbe syscall nx lm constant_tsc arch_perfmon pebs bts rep_good pni dtes64 monitor ds_cpl vmx tm2 ssse3 cx16 xtpr pdcm dca sse4_1 xsave lahf_lm tpr_shadow vnmi flexpriority
308 bogomips : 3990.02
309 clflush size : 64
310 cache_alignment : 64
311 address sizes : 38 bits physical, 48 bits virtual
312 power management:
314 processor : 5
315 vendor_id : GenuineIntel
316 cpu family : 6
317 model : 23
318 model name : Intel(R) Xeon(R) CPU E5405 @ 2.00GHz
319 stepping : 10
320 cpu MHz : 1995.036
321 cache size : 6144 KB
322 physical id : 1
323 siblings : 4
324 core id : 1
325 cpu cores : 4
326 apicid : 5
327 initial apicid : 5
328 fpu : yes
329 fpu_exception : yes
330 cpuid level : 13
331 wp : yes
332 flags : 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 pbe syscall nx lm constant_tsc arch_perfmon pebs bts rep_good pni dtes64 monitor ds_cpl vmx tm2 ssse3 cx16 xtpr pdcm dca sse4_1 xsave lahf_lm tpr_shadow vnmi flexpriority
333 bogomips : 3990.04
334 clflush size : 64
335 cache_alignment : 64
336 address sizes : 38 bits physical, 48 bits virtual
337 power management:
339 processor : 6
340 vendor_id : GenuineIntel
341 cpu family : 6
342 model : 23
343 model name : Intel(R) Xeon(R) CPU E5405 @ 2.00GHz
344 stepping : 10
345 cpu MHz : 1995.036
346 cache size : 6144 KB
347 physical id : 1
348 siblings : 4
349 core id : 2
350 cpu cores : 4
351 apicid : 6
352 initial apicid : 6
353 fpu : yes
354 fpu_exception : yes
355 cpuid level : 13
356 wp : yes
357 flags : 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 pbe syscall nx lm constant_tsc arch_perfmon pebs bts rep_good pni dtes64 monitor ds_cpl vmx tm2 ssse3 cx16 xtpr pdcm dca sse4_1 xsave lahf_lm tpr_shadow vnmi flexpriority
358 bogomips : 3990.05
359 clflush size : 64
360 cache_alignment : 64
361 address sizes : 38 bits physical, 48 bits virtual
362 power management:
364 processor : 7
365 vendor_id : GenuineIntel
366 cpu family : 6
367 model : 23
368 model name : Intel(R) Xeon(R) CPU E5405 @ 2.00GHz
369 stepping : 10
370 cpu MHz : 1995.036
371 cache size : 6144 KB
372 physical id : 1
373 siblings : 4
374 core id : 3
375 cpu cores : 4
376 apicid : 7
377 initial apicid : 7
378 fpu : yes
379 fpu_exception : yes
380 cpuid level : 13
381 wp : yes
382 flags : 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 pbe syscall nx lm constant_tsc arch_perfmon pebs bts rep_good pni dtes64 monitor ds_cpl vmx tm2 ssse3 cx16 xtpr pdcm dca sse4_1 xsave lahf_lm tpr_shadow vnmi flexpriority
383 bogomips : 3990.04
384 clflush size : 64
385 cache_alignment : 64
386 address sizes : 38 bits physical, 48 bits virtual
387 power management:
389 # Core i7-3632QM Acer laptop
390 cpuinfo2="
391 processor : 0
392 vendor_id : GenuineIntel
393 cpu family : 6
394 model : 58
395 model name : Intel(R) Core(TM) i7-3632QM CPU @ 2.20GHz
396 stepping : 9
397 microcode : 0x20
398 cpu MHz : 1444.686
399 cache size : 6144 KB
400 physical id : 0
401 siblings : 8
402 core id : 0
403 cpu cores : 4
404 apicid : 0
405 initial apicid : 0
406 fpu : yes
407 fpu_exception : yes
408 cpuid level : 13
409 wp : yes
410 flags : 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 pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts flush_l1d
411 bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf
412 bogomips : 4390.24
413 clflush size : 64
414 cache_alignment : 64
415 address sizes : 36 bits physical, 48 bits virtual
416 power management:
418 processor : 1
419 vendor_id : GenuineIntel
420 cpu family : 6
421 model : 58
422 model name : Intel(R) Core(TM) i7-3632QM CPU @ 2.20GHz
423 stepping : 9
424 microcode : 0x20
425 cpu MHz : 1341.455
426 cache size : 6144 KB
427 physical id : 0
428 siblings : 8
429 core id : 0
430 cpu cores : 4
431 apicid : 1
432 initial apicid : 1
433 fpu : yes
434 fpu_exception : yes
435 cpuid level : 13
436 wp : yes
437 flags : 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 pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts flush_l1d
438 bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf
439 bogomips : 4390.24
440 clflush size : 64
441 cache_alignment : 64
442 address sizes : 36 bits physical, 48 bits virtual
443 power management:
445 processor : 2
446 vendor_id : GenuineIntel
447 cpu family : 6
448 model : 58
449 model name : Intel(R) Core(TM) i7-3632QM CPU @ 2.20GHz
450 stepping : 9
451 microcode : 0x20
452 cpu MHz : 1411.511
453 cache size : 6144 KB
454 physical id : 0
455 siblings : 8
456 core id : 1
457 cpu cores : 4
458 apicid : 2
459 initial apicid : 2
460 fpu : yes
461 fpu_exception : yes
462 cpuid level : 13
463 wp : yes
464 flags : 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 pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts flush_l1d
465 bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf
466 bogomips : 4390.24
467 clflush size : 64
468 cache_alignment : 64
469 address sizes : 36 bits physical, 48 bits virtual
470 power management:
472 processor : 3
473 vendor_id : GenuineIntel
474 cpu family : 6
475 model : 58
476 model name : Intel(R) Core(TM) i7-3632QM CPU @ 2.20GHz
477 stepping : 9
478 microcode : 0x20
479 cpu MHz : 1449.892
480 cache size : 6144 KB
481 physical id : 0
482 siblings : 8
483 core id : 1
484 cpu cores : 4
485 apicid : 3
486 initial apicid : 3
487 fpu : yes
488 fpu_exception : yes
489 cpuid level : 13
490 wp : yes
491 flags : 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 pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts flush_l1d
492 bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf
493 bogomips : 4390.24
494 clflush size : 64
495 cache_alignment : 64
496 address sizes : 36 bits physical, 48 bits virtual
497 power management:
499 processor : 4
500 vendor_id : GenuineIntel
501 cpu family : 6
502 model : 58
503 model name : Intel(R) Core(TM) i7-3632QM CPU @ 2.20GHz
504 stepping : 9
505 microcode : 0x20
506 cpu MHz : 1482.598
507 cache size : 6144 KB
508 physical id : 0
509 siblings : 8
510 core id : 2
511 cpu cores : 4
512 apicid : 4
513 initial apicid : 4
514 fpu : yes
515 fpu_exception : yes
516 cpuid level : 13
517 wp : yes
518 flags : 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 pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts flush_l1d
519 bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf
520 bogomips : 4390.24
521 clflush size : 64
522 cache_alignment : 64
523 address sizes : 36 bits physical, 48 bits virtual
524 power management:
526 processor : 5
527 vendor_id : GenuineIntel
528 cpu family : 6
529 model : 58
530 model name : Intel(R) Core(TM) i7-3632QM CPU @ 2.20GHz
531 stepping : 9
532 microcode : 0x20
533 cpu MHz : 1485.571
534 cache size : 6144 KB
535 physical id : 0
536 siblings : 8
537 core id : 2
538 cpu cores : 4
539 apicid : 5
540 initial apicid : 5
541 fpu : yes
542 fpu_exception : yes
543 cpuid level : 13
544 wp : yes
545 flags : 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 pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts flush_l1d
546 bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf
547 bogomips : 4390.24
548 clflush size : 64
549 cache_alignment : 64
550 address sizes : 36 bits physical, 48 bits virtual
551 power management:
553 processor : 6
554 vendor_id : GenuineIntel
555 cpu family : 6
556 model : 58
557 model name : Intel(R) Core(TM) i7-3632QM CPU @ 2.20GHz
558 stepping : 9
559 microcode : 0x20
560 cpu MHz : 1554.185
561 cache size : 6144 KB
562 physical id : 0
563 siblings : 8
564 core id : 3
565 cpu cores : 4
566 apicid : 6
567 initial apicid : 6
568 fpu : yes
569 fpu_exception : yes
570 cpuid level : 13
571 wp : yes
572 flags : 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 pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts flush_l1d
573 bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf
574 bogomips : 4390.24
575 clflush size : 64
576 cache_alignment : 64
577 address sizes : 36 bits physical, 48 bits virtual
578 power management:
580 processor : 7
581 vendor_id : GenuineIntel
582 cpu family : 6
583 model : 58
584 model name : Intel(R) Core(TM) i7-3632QM CPU @ 2.20GHz
585 stepping : 9
586 microcode : 0x20
587 cpu MHz : 1530.523
588 cache size : 6144 KB
589 physical id : 0
590 siblings : 8
591 core id : 3
592 cpu cores : 4
593 apicid : 7
594 initial apicid : 7
595 fpu : yes
596 fpu_exception : yes
597 cpuid level : 13
598 wp : yes
599 flags : 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 pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts flush_l1d
600 bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf
601 bogomips : 4390.24
602 clflush size : 64
603 cache_alignment : 64
604 address sizes : 36 bits physical, 48 bits virtual
605 power management:
607 # Core i5-2410M laptop firewall
608 cpuinfo3="
609 processor : 0
610 vendor_id : GenuineIntel
611 cpu family : 6
612 model : 42
613 model name : Intel(R) Core(TM) i5-2410M CPU @ 2.30GHz
614 stepping : 7
615 microcode : 0x1a
616 cpu MHz : 1699.871
617 cache size : 3072 KB
618 physical id : 0
619 siblings : 4
620 core id : 0
621 cpu cores : 2
622 apicid : 0
623 initial apicid : 0
624 fpu : yes
625 fpu_exception : yes
626 cpuid level : 13
627 wp : yes
628 flags : 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 pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm epb kaiser tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts
629 bugs : cpu_meltdown spectre_v1 spectre_v2
630 bogomips : 4589.58
631 clflush size : 64
632 cache_alignment : 64
633 address sizes : 36 bits physical, 48 bits virtual
634 power management:
636 processor : 1
637 vendor_id : GenuineIntel
638 cpu family : 6
639 model : 42
640 model name : Intel(R) Core(TM) i5-2410M CPU @ 2.30GHz
641 stepping : 7
642 microcode : 0x1a
643 cpu MHz : 1668.005
644 cache size : 3072 KB
645 physical id : 0
646 siblings : 4
647 core id : 0
648 cpu cores : 2
649 apicid : 1
650 initial apicid : 1
651 fpu : yes
652 fpu_exception : yes
653 cpuid level : 13
654 wp : yes
655 flags : 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 pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm epb kaiser tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts
656 bugs : cpu_meltdown spectre_v1 spectre_v2
657 bogomips : 4589.58
658 clflush size : 64
659 cache_alignment : 64
660 address sizes : 36 bits physical, 48 bits virtual
661 power management:
663 processor : 2
664 vendor_id : GenuineIntel
665 cpu family : 6
666 model : 42
667 model name : Intel(R) Core(TM) i5-2410M CPU @ 2.30GHz
668 stepping : 7
669 microcode : 0x1a
670 cpu MHz : 1687.939
671 cache size : 3072 KB
672 physical id : 0
673 siblings : 4
674 core id : 1
675 cpu cores : 2
676 apicid : 2
677 initial apicid : 2
678 fpu : yes
679 fpu_exception : yes
680 cpuid level : 13
681 wp : yes
682 flags : 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 pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm epb kaiser tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts
683 bugs : cpu_meltdown spectre_v1 spectre_v2
684 bogomips : 4589.58
685 clflush size : 64
686 cache_alignment : 64
687 address sizes : 36 bits physical, 48 bits virtual
688 power management:
690 processor : 3
691 vendor_id : GenuineIntel
692 cpu family : 6
693 model : 42
694 model name : Intel(R) Core(TM) i5-2410M CPU @ 2.30GHz
695 stepping : 7
696 microcode : 0x1a
697 cpu MHz : 1572.967
698 cache size : 3072 KB
699 physical id : 0
700 siblings : 4
701 core id : 1
702 cpu cores : 2
703 apicid : 3
704 initial apicid : 3
705 fpu : yes
706 fpu_exception : yes
707 cpuid level : 13
708 wp : yes
709 flags : 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 pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm epb kaiser tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts
710 bugs : cpu_meltdown spectre_v1 spectre_v2
711 bogomips : 4589.58
712 clflush size : 64
713 cache_alignment : 64
714 address sizes : 36 bits physical, 48 bits virtual
715 power management:
718 cpuinfo4="
719 processor : 0
720 vendor_id : AuthenticAMD
721 cpu family : 15
722 model : 5
723 model name : AMD Opteron(tm) Processor 244
724 stepping : 10
725 cpu MHz : 1808.337
726 cache size : 1024 KB
727 fdiv_bug : no
728 hlt_bug : no
729 f00f_bug : no
730 coma_bug : no
731 fpu : yes
732 fpu_exception : yes
733 cpuid level : 1
734 wp : yes
735 flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 syscall nx mmxext lm 3dnowext 3dnow
736 bogomips : 3619.37
737 clflush size : 64
738 power management: ts fid vid ttp
740 processor : 1
741 vendor_id : AuthenticAMD
742 cpu family : 15
743 model : 5
744 model name : AMD Opteron(tm) Processor 244
745 stepping : 10
746 cpu MHz : 1808.337
747 cache size : 1024 KB
748 fdiv_bug : no
749 hlt_bug : no
750 f00f_bug : no
751 coma_bug : no
752 fpu : yes
753 fpu_exception : yes
754 cpuid level : 1
755 wp : yes
756 flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 syscall nx mmxext lm 3dnowext 3dnow
757 bogomips : 3616.94
758 clflush size : 64
759 power management: ts fid vid ttp
761 cpuinfo5="
762 processor : 0
763 vendor_id : GenuineIntel
764 cpu family : 6
765 model : 62
766 model name : Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
767 stepping : 4
768 microcode : 1046
769 cpu MHz : 2699.914
770 cache size : 30720 KB
771 physical id : 0
772 siblings : 24
773 core id : 0
774 cpu cores : 12
775 apicid : 0
776 initial apicid : 0
777 fpu : yes
778 fpu_exception : yes
779 cpuid level : 13
780 wp : yes
781 flags : 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 pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb xsaveopt pln pts dtherm pti retpoline tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
782 bogomips : 5399.82
783 clflush size : 64
784 cache_alignment : 64
785 address sizes : 46 bits physical, 48 bits virtual
786 power management:
788 processor : 1
789 vendor_id : GenuineIntel
790 cpu family : 6
791 model : 62
792 model name : Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
793 stepping : 4
794 microcode : 1046
795 cpu MHz : 2699.914
796 cache size : 30720 KB
797 physical id : 0
798 siblings : 24
799 core id : 1
800 cpu cores : 12
801 apicid : 2
802 initial apicid : 2
803 fpu : yes
804 fpu_exception : yes
805 cpuid level : 13
806 wp : yes
807 flags : 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 pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb xsaveopt pln pts dtherm pti retpoline tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
808 bogomips : 5399.82
809 clflush size : 64
810 cache_alignment : 64
811 address sizes : 46 bits physical, 48 bits virtual
812 power management:
814 processor : 2
815 vendor_id : GenuineIntel
816 cpu family : 6
817 model : 62
818 model name : Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
819 stepping : 4
820 microcode : 1046
821 cpu MHz : 2699.914
822 cache size : 30720 KB
823 physical id : 0
824 siblings : 24
825 core id : 2
826 cpu cores : 12
827 apicid : 4
828 initial apicid : 4
829 fpu : yes
830 fpu_exception : yes
831 cpuid level : 13
832 wp : yes
833 flags : 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 pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb xsaveopt pln pts dtherm pti retpoline tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
834 bogomips : 5399.82
835 clflush size : 64
836 cache_alignment : 64
837 address sizes : 46 bits physical, 48 bits virtual
838 power management:
840 processor : 3
841 vendor_id : GenuineIntel
842 cpu family : 6
843 model : 62
844 model name : Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
845 stepping : 4
846 microcode : 1046
847 cpu MHz : 2699.914
848 cache size : 30720 KB
849 physical id : 0
850 siblings : 24
851 core id : 3
852 cpu cores : 12
853 apicid : 6
854 initial apicid : 6
855 fpu : yes
856 fpu_exception : yes
857 cpuid level : 13
858 wp : yes
859 flags : 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 pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb xsaveopt pln pts dtherm pti retpoline tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
860 bogomips : 5399.82
861 clflush size : 64
862 cache_alignment : 64
863 address sizes : 46 bits physical, 48 bits virtual
864 power management:
866 processor : 4
867 vendor_id : GenuineIntel
868 cpu family : 6
869 model : 62
870 model name : Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
871 stepping : 4
872 microcode : 1046
873 cpu MHz : 2699.914
874 cache size : 30720 KB
875 physical id : 0
876 siblings : 24
877 core id : 4
878 cpu cores : 12
879 apicid : 8
880 initial apicid : 8
881 fpu : yes
882 fpu_exception : yes
883 cpuid level : 13
884 wp : yes
885 flags : 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 pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb xsaveopt pln pts dtherm pti retpoline tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
886 bogomips : 5399.82
887 clflush size : 64
888 cache_alignment : 64
889 address sizes : 46 bits physical, 48 bits virtual
890 power management:
892 processor : 5
893 vendor_id : GenuineIntel
894 cpu family : 6
895 model : 62
896 model name : Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
897 stepping : 4
898 microcode : 1046
899 cpu MHz : 2699.914
900 cache size : 30720 KB
901 physical id : 0
902 siblings : 24
903 core id : 5
904 cpu cores : 12
905 apicid : 10
906 initial apicid : 10
907 fpu : yes
908 fpu_exception : yes
909 cpuid level : 13
910 wp : yes
911 flags : 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 pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb xsaveopt pln pts dtherm pti retpoline tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
912 bogomips : 5399.82
913 clflush size : 64
914 cache_alignment : 64
915 address sizes : 46 bits physical, 48 bits virtual
916 power management:
918 processor : 6
919 vendor_id : GenuineIntel
920 cpu family : 6
921 model : 62
922 model name : Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
923 stepping : 4
924 microcode : 1046
925 cpu MHz : 2699.914
926 cache size : 30720 KB
927 physical id : 0
928 siblings : 24
929 core id : 8
930 cpu cores : 12
931 apicid : 16
932 initial apicid : 16
933 fpu : yes
934 fpu_exception : yes
935 cpuid level : 13
936 wp : yes
937 flags : 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 pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb xsaveopt pln pts dtherm pti retpoline tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
938 bogomips : 5399.82
939 clflush size : 64
940 cache_alignment : 64
941 address sizes : 46 bits physical, 48 bits virtual
942 power management:
944 processor : 7
945 vendor_id : GenuineIntel
946 cpu family : 6
947 model : 62
948 model name : Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
949 stepping : 4
950 microcode : 1046
951 cpu MHz : 2699.914
952 cache size : 30720 KB
953 physical id : 0
954 siblings : 24
955 core id : 9
956 cpu cores : 12
957 apicid : 18
958 initial apicid : 18
959 fpu : yes
960 fpu_exception : yes
961 cpuid level : 13
962 wp : yes
963 flags : 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 pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb xsaveopt pln pts dtherm pti retpoline tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
964 bogomips : 5399.82
965 clflush size : 64
966 cache_alignment : 64
967 address sizes : 46 bits physical, 48 bits virtual
968 power management:
970 processor : 8
971 vendor_id : GenuineIntel
972 cpu family : 6
973 model : 62
974 model name : Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
975 stepping : 4
976 microcode : 1046
977 cpu MHz : 2699.914
978 cache size : 30720 KB
979 physical id : 0
980 siblings : 24
981 core id : 10
982 cpu cores : 12
983 apicid : 20
984 initial apicid : 20
985 fpu : yes
986 fpu_exception : yes
987 cpuid level : 13
988 wp : yes
989 flags : 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 pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb xsaveopt pln pts dtherm pti retpoline tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
990 bogomips : 5399.82
991 clflush size : 64
992 cache_alignment : 64
993 address sizes : 46 bits physical, 48 bits virtual
994 power management:
996 processor : 9
997 vendor_id : GenuineIntel
998 cpu family : 6
999 model : 62
1000 model name : Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
1001 stepping : 4
1002 microcode : 1046
1003 cpu MHz : 2699.914
1004 cache size : 30720 KB
1005 physical id : 0
1006 siblings : 24
1007 core id : 11
1008 cpu cores : 12
1009 apicid : 22
1010 initial apicid : 22
1011 fpu : yes
1012 fpu_exception : yes
1013 cpuid level : 13
1014 wp : yes
1015 flags : 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 pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb xsaveopt pln pts dtherm pti retpoline tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
1016 bogomips : 5399.82
1017 clflush size : 64
1018 cache_alignment : 64
1019 address sizes : 46 bits physical, 48 bits virtual
1020 power management:
1022 processor : 10
1023 vendor_id : GenuineIntel
1024 cpu family : 6
1025 model : 62
1026 model name : Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
1027 stepping : 4
1028 microcode : 1046
1029 cpu MHz : 2699.914
1030 cache size : 30720 KB
1031 physical id : 0
1032 siblings : 24
1033 core id : 12
1034 cpu cores : 12
1035 apicid : 24
1036 initial apicid : 24
1037 fpu : yes
1038 fpu_exception : yes
1039 cpuid level : 13
1040 wp : yes
1041 flags : 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 pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb xsaveopt pln pts dtherm pti retpoline tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
1042 bogomips : 5399.82
1043 clflush size : 64
1044 cache_alignment : 64
1045 address sizes : 46 bits physical, 48 bits virtual
1046 power management:
1048 processor : 11
1049 vendor_id : GenuineIntel
1050 cpu family : 6
1051 model : 62
1052 model name : Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
1053 stepping : 4
1054 microcode : 1046
1055 cpu MHz : 2699.914
1056 cache size : 30720 KB
1057 physical id : 0
1058 siblings : 24
1059 core id : 13
1060 cpu cores : 12
1061 apicid : 26
1062 initial apicid : 26
1063 fpu : yes
1064 fpu_exception : yes
1065 cpuid level : 13
1066 wp : yes
1067 flags : 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 pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb xsaveopt pln pts dtherm pti retpoline tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
1068 bogomips : 5399.82
1069 clflush size : 64
1070 cache_alignment : 64
1071 address sizes : 46 bits physical, 48 bits virtual
1072 power management:
1074 processor : 12
1075 vendor_id : GenuineIntel
1076 cpu family : 6
1077 model : 62
1078 model name : Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
1079 stepping : 4
1080 microcode : 1046
1081 cpu MHz : 2699.914
1082 cache size : 30720 KB
1083 physical id : 1
1084 siblings : 24
1085 core id : 0
1086 cpu cores : 12
1087 apicid : 32
1088 initial apicid : 32
1089 fpu : yes
1090 fpu_exception : yes
1091 cpuid level : 13
1092 wp : yes
1093 flags : 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 pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb xsaveopt pln pts dtherm pti retpoline tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
1094 bogomips : 5399.28
1095 clflush size : 64
1096 cache_alignment : 64
1097 address sizes : 46 bits physical, 48 bits virtual
1098 power management:
1100 processor : 13
1101 vendor_id : GenuineIntel
1102 cpu family : 6
1103 model : 62
1104 model name : Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
1105 stepping : 4
1106 microcode : 1046
1107 cpu MHz : 2699.914
1108 cache size : 30720 KB
1109 physical id : 1
1110 siblings : 24
1111 core id : 1
1112 cpu cores : 12
1113 apicid : 34
1114 initial apicid : 34
1115 fpu : yes
1116 fpu_exception : yes
1117 cpuid level : 13
1118 wp : yes
1119 flags : 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 pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb xsaveopt pln pts dtherm pti retpoline tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
1120 bogomips : 5399.28
1121 clflush size : 64
1122 cache_alignment : 64
1123 address sizes : 46 bits physical, 48 bits virtual
1124 power management:
1126 processor : 14
1127 vendor_id : GenuineIntel
1128 cpu family : 6
1129 model : 62
1130 model name : Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
1131 stepping : 4
1132 microcode : 1046
1133 cpu MHz : 2699.914
1134 cache size : 30720 KB
1135 physical id : 1
1136 siblings : 24
1137 core id : 2
1138 cpu cores : 12
1139 apicid : 36
1140 initial apicid : 36
1141 fpu : yes
1142 fpu_exception : yes
1143 cpuid level : 13
1144 wp : yes
1145 flags : 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 pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb xsaveopt pln pts dtherm pti retpoline tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
1146 bogomips : 5399.28
1147 clflush size : 64
1148 cache_alignment : 64
1149 address sizes : 46 bits physical, 48 bits virtual
1150 power management:
1152 processor : 15
1153 vendor_id : GenuineIntel
1154 cpu family : 6
1155 model : 62
1156 model name : Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
1157 stepping : 4
1158 microcode : 1046
1159 cpu MHz : 2699.914
1160 cache size : 30720 KB
1161 physical id : 1
1162 siblings : 24
1163 core id : 3
1164 cpu cores : 12
1165 apicid : 38
1166 initial apicid : 38
1167 fpu : yes
1168 fpu_exception : yes
1169 cpuid level : 13
1170 wp : yes
1171 flags : 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 pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb xsaveopt pln pts dtherm pti retpoline tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
1172 bogomips : 5399.28
1173 clflush size : 64
1174 cache_alignment : 64
1175 address sizes : 46 bits physical, 48 bits virtual
1176 power management:
1178 processor : 16
1179 vendor_id : GenuineIntel
1180 cpu family : 6
1181 model : 62
1182 model name : Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
1183 stepping : 4
1184 microcode : 1046
1185 cpu MHz : 2699.914
1186 cache size : 30720 KB
1187 physical id : 1
1188 siblings : 24
1189 core id : 4
1190 cpu cores : 12
1191 apicid : 40
1192 initial apicid : 40
1193 fpu : yes
1194 fpu_exception : yes
1195 cpuid level : 13
1196 wp : yes
1197 flags : 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 pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb xsaveopt pln pts dtherm pti retpoline tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
1198 bogomips : 5399.28
1199 clflush size : 64
1200 cache_alignment : 64
1201 address sizes : 46 bits physical, 48 bits virtual
1202 power management:
1204 processor : 17
1205 vendor_id : GenuineIntel
1206 cpu family : 6
1207 model : 62
1208 model name : Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
1209 stepping : 4
1210 microcode : 1046
1211 cpu MHz : 2699.914
1212 cache size : 30720 KB
1213 physical id : 1
1214 siblings : 24
1215 core id : 5
1216 cpu cores : 12
1217 apicid : 42
1218 initial apicid : 42
1219 fpu : yes
1220 fpu_exception : yes
1221 cpuid level : 13
1222 wp : yes
1223 flags : 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 pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb xsaveopt pln pts dtherm pti retpoline tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
1224 bogomips : 5399.28
1225 clflush size : 64
1226 cache_alignment : 64
1227 address sizes : 46 bits physical, 48 bits virtual
1228 power management:
1230 processor : 18
1231 vendor_id : GenuineIntel
1232 cpu family : 6
1233 model : 62
1234 model name : Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
1235 stepping : 4
1236 microcode : 1046
1237 cpu MHz : 2699.914
1238 cache size : 30720 KB
1239 physical id : 1
1240 siblings : 24
1241 core id : 8
1242 cpu cores : 12
1243 apicid : 48
1244 initial apicid : 48
1245 fpu : yes
1246 fpu_exception : yes
1247 cpuid level : 13
1248 wp : yes
1249 flags : 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 pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb xsaveopt pln pts dtherm pti retpoline tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
1250 bogomips : 5399.28
1251 clflush size : 64
1252 cache_alignment : 64
1253 address sizes : 46 bits physical, 48 bits virtual
1254 power management:
1256 processor : 19
1257 vendor_id : GenuineIntel
1258 cpu family : 6
1259 model : 62
1260 model name : Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
1261 stepping : 4
1262 microcode : 1046
1263 cpu MHz : 2699.914
1264 cache size : 30720 KB
1265 physical id : 1
1266 siblings : 24
1267 core id : 9
1268 cpu cores : 12
1269 apicid : 50
1270 initial apicid : 50
1271 fpu : yes
1272 fpu_exception : yes
1273 cpuid level : 13
1274 wp : yes
1275 flags : 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 pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb xsaveopt pln pts dtherm pti retpoline tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
1276 bogomips : 5399.28
1277 clflush size : 64
1278 cache_alignment : 64
1279 address sizes : 46 bits physical, 48 bits virtual
1280 power management:
1282 processor : 20
1283 vendor_id : GenuineIntel
1284 cpu family : 6
1285 model : 62
1286 model name : Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
1287 stepping : 4
1288 microcode : 1046
1289 cpu MHz : 2699.914
1290 cache size : 30720 KB
1291 physical id : 1
1292 siblings : 24
1293 core id : 10
1294 cpu cores : 12
1295 apicid : 52
1296 initial apicid : 52
1297 fpu : yes
1298 fpu_exception : yes
1299 cpuid level : 13
1300 wp : yes
1301 flags : 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 pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb xsaveopt pln pts dtherm pti retpoline tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
1302 bogomips : 5399.28
1303 clflush size : 64
1304 cache_alignment : 64
1305 address sizes : 46 bits physical, 48 bits virtual
1306 power management:
1308 processor : 21
1309 vendor_id : GenuineIntel
1310 cpu family : 6
1311 model : 62
1312 model name : Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
1313 stepping : 4
1314 microcode : 1046
1315 cpu MHz : 2699.914
1316 cache size : 30720 KB
1317 physical id : 1
1318 siblings : 24
1319 core id : 11
1320 cpu cores : 12
1321 apicid : 54
1322 initial apicid : 54
1323 fpu : yes
1324 fpu_exception : yes
1325 cpuid level : 13
1326 wp : yes
1327 flags : 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 pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb xsaveopt pln pts dtherm pti retpoline tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
1328 bogomips : 5399.28
1329 clflush size : 64
1330 cache_alignment : 64
1331 address sizes : 46 bits physical, 48 bits virtual
1332 power management:
1334 processor : 22
1335 vendor_id : GenuineIntel
1336 cpu family : 6
1337 model : 62
1338 model name : Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
1339 stepping : 4
1340 microcode : 1046
1341 cpu MHz : 2699.914
1342 cache size : 30720 KB
1343 physical id : 1
1344 siblings : 24
1345 core id : 12
1346 cpu cores : 12
1347 apicid : 56
1348 initial apicid : 56
1349 fpu : yes
1350 fpu_exception : yes
1351 cpuid level : 13
1352 wp : yes
1353 flags : 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 pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb xsaveopt pln pts dtherm pti retpoline tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
1354 bogomips : 5399.28
1355 clflush size : 64
1356 cache_alignment : 64
1357 address sizes : 46 bits physical, 48 bits virtual
1358 power management:
1360 processor : 23
1361 vendor_id : GenuineIntel
1362 cpu family : 6
1363 model : 62
1364 model name : Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
1365 stepping : 4
1366 microcode : 1046
1367 cpu MHz : 2699.914
1368 cache size : 30720 KB
1369 physical id : 1
1370 siblings : 24
1371 core id : 13
1372 cpu cores : 12
1373 apicid : 58
1374 initial apicid : 58
1375 fpu : yes
1376 fpu_exception : yes
1377 cpuid level : 13
1378 wp : yes
1379 flags : 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 pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb xsaveopt pln pts dtherm pti retpoline tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
1380 bogomips : 5399.28
1381 clflush size : 64
1382 cache_alignment : 64
1383 address sizes : 46 bits physical, 48 bits virtual
1384 power management:
1386 processor : 24
1387 vendor_id : GenuineIntel
1388 cpu family : 6
1389 model : 62
1390 model name : Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
1391 stepping : 4
1392 microcode : 1046
1393 cpu MHz : 2699.914
1394 cache size : 30720 KB
1395 physical id : 0
1396 siblings : 24
1397 core id : 0
1398 cpu cores : 12
1399 apicid : 1
1400 initial apicid : 1
1401 fpu : yes
1402 fpu_exception : yes
1403 cpuid level : 13
1404 wp : yes
1405 flags : 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 pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb xsaveopt pln pts dtherm pti retpoline tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
1406 bogomips : 5399.82
1407 clflush size : 64
1408 cache_alignment : 64
1409 address sizes : 46 bits physical, 48 bits virtual
1410 power management:
1412 processor : 25
1413 vendor_id : GenuineIntel
1414 cpu family : 6
1415 model : 62
1416 model name : Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
1417 stepping : 4
1418 microcode : 1046
1419 cpu MHz : 2699.914
1420 cache size : 30720 KB
1421 physical id : 0
1422 siblings : 24
1423 core id : 1
1424 cpu cores : 12
1425 apicid : 3
1426 initial apicid : 3
1427 fpu : yes
1428 fpu_exception : yes
1429 cpuid level : 13
1430 wp : yes
1431 flags : 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 pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb xsaveopt pln pts dtherm pti retpoline tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
1432 bogomips : 5399.82
1433 clflush size : 64
1434 cache_alignment : 64
1435 address sizes : 46 bits physical, 48 bits virtual
1436 power management:
1438 processor : 26
1439 vendor_id : GenuineIntel
1440 cpu family : 6
1441 model : 62
1442 model name : Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
1443 stepping : 4
1444 microcode : 1046
1445 cpu MHz : 2699.914
1446 cache size : 30720 KB
1447 physical id : 0
1448 siblings : 24
1449 core id : 2
1450 cpu cores : 12
1451 apicid : 5
1452 initial apicid : 5
1453 fpu : yes
1454 fpu_exception : yes
1455 cpuid level : 13
1456 wp : yes
1457 flags : 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 pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb xsaveopt pln pts dtherm pti retpoline tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
1458 bogomips : 5399.82
1459 clflush size : 64
1460 cache_alignment : 64
1461 address sizes : 46 bits physical, 48 bits virtual
1462 power management:
1464 processor : 27
1465 vendor_id : GenuineIntel
1466 cpu family : 6
1467 model : 62
1468 model name : Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
1469 stepping : 4
1470 microcode : 1046
1471 cpu MHz : 2699.914
1472 cache size : 30720 KB
1473 physical id : 0
1474 siblings : 24
1475 core id : 3
1476 cpu cores : 12
1477 apicid : 7
1478 initial apicid : 7
1479 fpu : yes
1480 fpu_exception : yes
1481 cpuid level : 13
1482 wp : yes
1483 flags : 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 pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb xsaveopt pln pts dtherm pti retpoline tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
1484 bogomips : 5399.82
1485 clflush size : 64
1486 cache_alignment : 64
1487 address sizes : 46 bits physical, 48 bits virtual
1488 power management:
1490 processor : 28
1491 vendor_id : GenuineIntel
1492 cpu family : 6
1493 model : 62
1494 model name : Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
1495 stepping : 4
1496 microcode : 1046
1497 cpu MHz : 2699.914
1498 cache size : 30720 KB
1499 physical id : 0
1500 siblings : 24
1501 core id : 4
1502 cpu cores : 12
1503 apicid : 9
1504 initial apicid : 9
1505 fpu : yes
1506 fpu_exception : yes
1507 cpuid level : 13
1508 wp : yes
1509 flags : 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 pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb xsaveopt pln pts dtherm pti retpoline tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
1510 bogomips : 5399.82
1511 clflush size : 64
1512 cache_alignment : 64
1513 address sizes : 46 bits physical, 48 bits virtual
1514 power management:
1516 processor : 29
1517 vendor_id : GenuineIntel
1518 cpu family : 6
1519 model : 62
1520 model name : Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
1521 stepping : 4
1522 microcode : 1046
1523 cpu MHz : 2699.914
1524 cache size : 30720 KB
1525 physical id : 0
1526 siblings : 24
1527 core id : 5
1528 cpu cores : 12
1529 apicid : 11
1530 initial apicid : 11
1531 fpu : yes
1532 fpu_exception : yes
1533 cpuid level : 13
1534 wp : yes
1535 flags : 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 pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb xsaveopt pln pts dtherm pti retpoline tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
1536 bogomips : 5399.82
1537 clflush size : 64
1538 cache_alignment : 64
1539 address sizes : 46 bits physical, 48 bits virtual
1540 power management:
1542 processor : 30
1543 vendor_id : GenuineIntel
1544 cpu family : 6
1545 model : 62
1546 model name : Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
1547 stepping : 4
1548 microcode : 1046
1549 cpu MHz : 2699.914
1550 cache size : 30720 KB
1551 physical id : 0
1552 siblings : 24
1553 core id : 8
1554 cpu cores : 12
1555 apicid : 17
1556 initial apicid : 17
1557 fpu : yes
1558 fpu_exception : yes
1559 cpuid level : 13
1560 wp : yes
1561 flags : 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 pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb xsaveopt pln pts dtherm pti retpoline tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
1562 bogomips : 5399.82
1563 clflush size : 64
1564 cache_alignment : 64
1565 address sizes : 46 bits physical, 48 bits virtual
1566 power management:
1568 processor : 31
1569 vendor_id : GenuineIntel
1570 cpu family : 6
1571 model : 62
1572 model name : Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
1573 stepping : 4
1574 microcode : 1046
1575 cpu MHz : 2699.914
1576 cache size : 30720 KB
1577 physical id : 0
1578 siblings : 24
1579 core id : 9
1580 cpu cores : 12
1581 apicid : 19
1582 initial apicid : 19
1583 fpu : yes
1584 fpu_exception : yes
1585 cpuid level : 13
1586 wp : yes
1587 flags : 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 pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb xsaveopt pln pts dtherm pti retpoline tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
1588 bogomips : 5399.82
1589 clflush size : 64
1590 cache_alignment : 64
1591 address sizes : 46 bits physical, 48 bits virtual
1592 power management:
1594 processor : 32
1595 vendor_id : GenuineIntel
1596 cpu family : 6
1597 model : 62
1598 model name : Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
1599 stepping : 4
1600 microcode : 1046
1601 cpu MHz : 2699.914
1602 cache size : 30720 KB
1603 physical id : 0
1604 siblings : 24
1605 core id : 10
1606 cpu cores : 12
1607 apicid : 21
1608 initial apicid : 21
1609 fpu : yes
1610 fpu_exception : yes
1611 cpuid level : 13
1612 wp : yes
1613 flags : 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 pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb xsaveopt pln pts dtherm pti retpoline tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
1614 bogomips : 5399.82
1615 clflush size : 64
1616 cache_alignment : 64
1617 address sizes : 46 bits physical, 48 bits virtual
1618 power management:
1620 processor : 33
1621 vendor_id : GenuineIntel
1622 cpu family : 6
1623 model : 62
1624 model name : Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
1625 stepping : 4
1626 microcode : 1046
1627 cpu MHz : 2699.914
1628 cache size : 30720 KB
1629 physical id : 0
1630 siblings : 24
1631 core id : 11
1632 cpu cores : 12
1633 apicid : 23
1634 initial apicid : 23
1635 fpu : yes
1636 fpu_exception : yes
1637 cpuid level : 13
1638 wp : yes
1639 flags : 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 pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb xsaveopt pln pts dtherm pti retpoline tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
1640 bogomips : 5399.82
1641 clflush size : 64
1642 cache_alignment : 64
1643 address sizes : 46 bits physical, 48 bits virtual
1644 power management:
1646 processor : 34
1647 vendor_id : GenuineIntel
1648 cpu family : 6
1649 model : 62
1650 model name : Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
1651 stepping : 4
1652 microcode : 1046
1653 cpu MHz : 2699.914
1654 cache size : 30720 KB
1655 physical id : 0
1656 siblings : 24
1657 core id : 12
1658 cpu cores : 12
1659 apicid : 25
1660 initial apicid : 25
1661 fpu : yes
1662 fpu_exception : yes
1663 cpuid level : 13
1664 wp : yes
1665 flags : 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 pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb xsaveopt pln pts dtherm pti retpoline tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
1666 bogomips : 5399.82
1667 clflush size : 64
1668 cache_alignment : 64
1669 address sizes : 46 bits physical, 48 bits virtual
1670 power management:
1672 processor : 35
1673 vendor_id : GenuineIntel
1674 cpu family : 6
1675 model : 62
1676 model name : Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
1677 stepping : 4
1678 microcode : 1046
1679 cpu MHz : 2699.914
1680 cache size : 30720 KB
1681 physical id : 0
1682 siblings : 24
1683 core id : 13
1684 cpu cores : 12
1685 apicid : 27
1686 initial apicid : 27
1687 fpu : yes
1688 fpu_exception : yes
1689 cpuid level : 13
1690 wp : yes
1691 flags : 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 pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb xsaveopt pln pts dtherm pti retpoline tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
1692 bogomips : 5399.82
1693 clflush size : 64
1694 cache_alignment : 64
1695 address sizes : 46 bits physical, 48 bits virtual
1696 power management:
1698 processor : 36
1699 vendor_id : GenuineIntel
1700 cpu family : 6
1701 model : 62
1702 model name : Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
1703 stepping : 4
1704 microcode : 1046
1705 cpu MHz : 2699.914
1706 cache size : 30720 KB
1707 physical id : 1
1708 siblings : 24
1709 core id : 0
1710 cpu cores : 12
1711 apicid : 33
1712 initial apicid : 33
1713 fpu : yes
1714 fpu_exception : yes
1715 cpuid level : 13
1716 wp : yes
1717 flags : 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 pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb xsaveopt pln pts dtherm pti retpoline tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
1718 bogomips : 5399.28
1719 clflush size : 64
1720 cache_alignment : 64
1721 address sizes : 46 bits physical, 48 bits virtual
1722 power management:
1724 processor : 37
1725 vendor_id : GenuineIntel
1726 cpu family : 6
1727 model : 62
1728 model name : Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
1729 stepping : 4
1730 microcode : 1046
1731 cpu MHz : 2699.914
1732 cache size : 30720 KB
1733 physical id : 1
1734 siblings : 24
1735 core id : 1
1736 cpu cores : 12
1737 apicid : 35
1738 initial apicid : 35
1739 fpu : yes
1740 fpu_exception : yes
1741 cpuid level : 13
1742 wp : yes
1743 flags : 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 pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb xsaveopt pln pts dtherm pti retpoline tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
1744 bogomips : 5399.28
1745 clflush size : 64
1746 cache_alignment : 64
1747 address sizes : 46 bits physical, 48 bits virtual
1748 power management:
1750 processor : 38
1751 vendor_id : GenuineIntel
1752 cpu family : 6
1753 model : 62
1754 model name : Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
1755 stepping : 4
1756 microcode : 1046
1757 cpu MHz : 2699.914
1758 cache size : 30720 KB
1759 physical id : 1
1760 siblings : 24
1761 core id : 2
1762 cpu cores : 12
1763 apicid : 37
1764 initial apicid : 37
1765 fpu : yes
1766 fpu_exception : yes
1767 cpuid level : 13
1768 wp : yes
1769 flags : 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 pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb xsaveopt pln pts dtherm pti retpoline tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
1770 bogomips : 5399.28
1771 clflush size : 64
1772 cache_alignment : 64
1773 address sizes : 46 bits physical, 48 bits virtual
1774 power management:
1776 processor : 39
1777 vendor_id : GenuineIntel
1778 cpu family : 6
1779 model : 62
1780 model name : Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
1781 stepping : 4
1782 microcode : 1046
1783 cpu MHz : 2699.914
1784 cache size : 30720 KB
1785 physical id : 1
1786 siblings : 24
1787 core id : 3
1788 cpu cores : 12
1789 apicid : 39
1790 initial apicid : 39
1791 fpu : yes
1792 fpu_exception : yes
1793 cpuid level : 13
1794 wp : yes
1795 flags : 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 pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb xsaveopt pln pts dtherm pti retpoline tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
1796 bogomips : 5399.28
1797 clflush size : 64
1798 cache_alignment : 64
1799 address sizes : 46 bits physical, 48 bits virtual
1800 power management:
1802 processor : 40
1803 vendor_id : GenuineIntel
1804 cpu family : 6
1805 model : 62
1806 model name : Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
1807 stepping : 4
1808 microcode : 1046
1809 cpu MHz : 2699.914
1810 cache size : 30720 KB
1811 physical id : 1
1812 siblings : 24
1813 core id : 4
1814 cpu cores : 12
1815 apicid : 41
1816 initial apicid : 41
1817 fpu : yes
1818 fpu_exception : yes
1819 cpuid level : 13
1820 wp : yes
1821 flags : 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 pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb xsaveopt pln pts dtherm pti retpoline tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
1822 bogomips : 5399.28
1823 clflush size : 64
1824 cache_alignment : 64
1825 address sizes : 46 bits physical, 48 bits virtual
1826 power management:
1828 processor : 41
1829 vendor_id : GenuineIntel
1830 cpu family : 6
1831 model : 62
1832 model name : Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
1833 stepping : 4
1834 microcode : 1046
1835 cpu MHz : 2699.914
1836 cache size : 30720 KB
1837 physical id : 1
1838 siblings : 24
1839 core id : 5
1840 cpu cores : 12
1841 apicid : 43
1842 initial apicid : 43
1843 fpu : yes
1844 fpu_exception : yes
1845 cpuid level : 13
1846 wp : yes
1847 flags : 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 pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb xsaveopt pln pts dtherm pti retpoline tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
1848 bogomips : 5399.28
1849 clflush size : 64
1850 cache_alignment : 64
1851 address sizes : 46 bits physical, 48 bits virtual
1852 power management:
1854 processor : 42
1855 vendor_id : GenuineIntel
1856 cpu family : 6
1857 model : 62
1858 model name : Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
1859 stepping : 4
1860 microcode : 1046
1861 cpu MHz : 2699.914
1862 cache size : 30720 KB
1863 physical id : 1
1864 siblings : 24
1865 core id : 8
1866 cpu cores : 12
1867 apicid : 49
1868 initial apicid : 49
1869 fpu : yes
1870 fpu_exception : yes
1871 cpuid level : 13
1872 wp : yes
1873 flags : 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 pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb xsaveopt pln pts dtherm pti retpoline tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
1874 bogomips : 5399.28
1875 clflush size : 64
1876 cache_alignment : 64
1877 address sizes : 46 bits physical, 48 bits virtual
1878 power management:
1880 processor : 43
1881 vendor_id : GenuineIntel
1882 cpu family : 6
1883 model : 62
1884 model name : Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
1885 stepping : 4
1886 microcode : 1046
1887 cpu MHz : 2699.914
1888 cache size : 30720 KB
1889 physical id : 1
1890 siblings : 24
1891 core id : 9
1892 cpu cores : 12
1893 apicid : 51
1894 initial apicid : 51
1895 fpu : yes
1896 fpu_exception : yes
1897 cpuid level : 13
1898 wp : yes
1899 flags : 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 pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb xsaveopt pln pts dtherm pti retpoline tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
1900 bogomips : 5399.28
1901 clflush size : 64
1902 cache_alignment : 64
1903 address sizes : 46 bits physical, 48 bits virtual
1904 power management:
1906 processor : 44
1907 vendor_id : GenuineIntel
1908 cpu family : 6
1909 model : 62
1910 model name : Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
1911 stepping : 4
1912 microcode : 1046
1913 cpu MHz : 2699.914
1914 cache size : 30720 KB
1915 physical id : 1
1916 siblings : 24
1917 core id : 10
1918 cpu cores : 12
1919 apicid : 53
1920 initial apicid : 53
1921 fpu : yes
1922 fpu_exception : yes
1923 cpuid level : 13
1924 wp : yes
1925 flags : 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 pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb xsaveopt pln pts dtherm pti retpoline tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
1926 bogomips : 5399.28
1927 clflush size : 64
1928 cache_alignment : 64
1929 address sizes : 46 bits physical, 48 bits virtual
1930 power management:
1932 processor : 45
1933 vendor_id : GenuineIntel
1934 cpu family : 6
1935 model : 62
1936 model name : Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
1937 stepping : 4
1938 microcode : 1046
1939 cpu MHz : 2699.914
1940 cache size : 30720 KB
1941 physical id : 1
1942 siblings : 24
1943 core id : 11
1944 cpu cores : 12
1945 apicid : 55
1946 initial apicid : 55
1947 fpu : yes
1948 fpu_exception : yes
1949 cpuid level : 13
1950 wp : yes
1951 flags : 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 pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb xsaveopt pln pts dtherm pti retpoline tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
1952 bogomips : 5399.28
1953 clflush size : 64
1954 cache_alignment : 64
1955 address sizes : 46 bits physical, 48 bits virtual
1956 power management:
1958 processor : 46
1959 vendor_id : GenuineIntel
1960 cpu family : 6
1961 model : 62
1962 model name : Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
1963 stepping : 4
1964 microcode : 1046
1965 cpu MHz : 2699.914
1966 cache size : 30720 KB
1967 physical id : 1
1968 siblings : 24
1969 core id : 12
1970 cpu cores : 12
1971 apicid : 57
1972 initial apicid : 57
1973 fpu : yes
1974 fpu_exception : yes
1975 cpuid level : 13
1976 wp : yes
1977 flags : 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 pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb xsaveopt pln pts dtherm pti retpoline tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
1978 bogomips : 5399.28
1979 clflush size : 64
1980 cache_alignment : 64
1981 address sizes : 46 bits physical, 48 bits virtual
1982 power management:
1984 processor : 47
1985 vendor_id : GenuineIntel
1986 cpu family : 6
1987 model : 62
1988 model name : Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
1989 stepping : 4
1990 microcode : 1046
1991 cpu MHz : 2699.914
1992 cache size : 30720 KB
1993 physical id : 1
1994 siblings : 24
1995 core id : 13
1996 cpu cores : 12
1997 apicid : 59
1998 initial apicid : 59
1999 fpu : yes
2000 fpu_exception : yes
2001 cpuid level : 13
2002 wp : yes
2003 flags : 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 pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat epb xsaveopt pln pts dtherm pti retpoline tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
2004 bogomips : 5399.28
2005 clflush size : 64
2006 cache_alignment : 64
2007 address sizes : 46 bits physical, 48 bits virtual
2008 power management:
2010 # HP Laptop Compaq 6530b
2011 cpuinfo6="
2012 processor : 0
2013 vendor_id : GenuineIntel
2014 cpu family : 6
2015 model : 23
2016 model name : Celeron(R) Dual-Core CPU T3000 @ 1.80GHz
2017 stepping : 10
2018 microcode : 0xa07
2019 cpu MHz : 1795.441
2020 cache size : 1024 KB
2021 physical id : 0
2022 siblings : 2
2023 core id : 0
2024 cpu cores : 2
2025 apicid : 0
2026 initial apicid : 0
2027 fpu : yes
2028 fpu_exception : yes
2029 cpuid level : 13
2030 wp : yes
2031 flags : 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 pbe syscall nx lm constant_tsc arch_perfmon pebs bts nopl aperfmperf pni dtes64 monitor ds_cpl tm2 ssse3 cx16 xtpr pdcm xsave lahf_lm dtherm
2032 bugs :
2033 bogomips : 3590.88
2034 clflush size : 64
2035 cache_alignment : 64
2036 address sizes : 36 bits physical, 48 bits virtual
2037 power management:
2039 processor : 1
2040 vendor_id : GenuineIntel
2041 cpu family : 6
2042 model : 23
2043 model name : Celeron(R) Dual-Core CPU T3000 @ 1.80GHz
2044 stepping : 10
2045 microcode : 0xa07
2046 cpu MHz : 1795.441
2047 cache size : 1024 KB
2048 physical id : 0
2049 siblings : 2
2050 core id : 1
2051 cpu cores : 2
2052 apicid : 1
2053 initial apicid : 1
2054 fpu : yes
2055 fpu_exception : yes
2056 cpuid level : 13
2057 wp : yes
2058 flags : 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 pbe syscall nx lm constant_tsc arch_perfmon pebs bts nopl aperfmperf pni dtes64 monitor ds_cpl tm2 ssse3 cx16 xtpr pdcm xsave lahf_lm dtherm
2059 bugs :
2060 bogomips : 3590.88
2061 clflush size : 64
2062 cache_alignment : 64
2063 address sizes : 36 bits physical, 48 bits virtual
2064 power management:
2067 # Huawei P Smart Octa-core (4x2.36 GHz Cortex-A53 & 4x1.7 GHz Cortex-A53)
2068 cpuinfo7="
2069 processor : 0
2070 BogoMIPS : 3.84
2071 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32
2072 CPU implementer : 0x41
2073 CPU architecture: 8
2074 CPU variant : 0x0
2075 CPU part : 0xd03
2076 CPU revision : 4
2078 processor : 1
2079 BogoMIPS : 3.84
2080 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32
2081 CPU implementer : 0x41
2082 CPU architecture: 8
2083 CPU variant : 0x0
2084 CPU part : 0xd03
2085 CPU revision : 4
2087 processor : 2
2088 BogoMIPS : 3.84
2089 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32
2090 CPU implementer : 0x41
2091 CPU architecture: 8
2092 CPU variant : 0x0
2093 CPU part : 0xd03
2094 CPU revision : 4
2096 processor : 3
2097 BogoMIPS : 3.84
2098 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32
2099 CPU implementer : 0x41
2100 CPU architecture: 8
2101 CPU variant : 0x0
2102 CPU part : 0xd03
2103 CPU revision : 4
2105 processor : 4
2106 BogoMIPS : 3.84
2107 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32
2108 CPU implementer : 0x41
2109 CPU architecture: 8
2110 CPU variant : 0x0
2111 CPU part : 0xd03
2112 CPU revision : 4
2114 processor : 5
2115 BogoMIPS : 3.84
2116 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32
2117 CPU implementer : 0x41
2118 CPU architecture: 8
2119 CPU variant : 0x0
2120 CPU part : 0xd03
2121 CPU revision : 4
2123 processor : 6
2124 BogoMIPS : 3.84
2125 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32
2126 CPU implementer : 0x41
2127 CPU architecture: 8
2128 CPU variant : 0x0
2129 CPU part : 0xd03
2130 CPU revision : 4
2132 processor : 7
2133 BogoMIPS : 3.84
2134 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32
2135 CPU implementer : 0x41
2136 CPU architecture: 8
2137 CPU variant : 0x0
2138 CPU part : 0xd03
2139 CPU revision : 4
2142 test_one() {
2143 export PARALLEL_CPUINFO="$1"
2144 echo $(parallel --number-of-sockets) \
2145 $(parallel --number-of-cores) \
2146 $(parallel --number-of-threads) \
2147 $(parallel --number-of-cpus)
2149 export -f test_one
2150 parallel -j0 -0 -k --tagstring {2} test_one {1} \
2151 ::: "$cpuinfo1" "$cpuinfo2" "$cpuinfo3" "$cpuinfo4" "$cpuinfo5" "$cpuinfo6" "$cpuinfo7" \
2152 :::+ "2-8-8-8" "1-4-8-4" "1-2-4-2" "1-2-2-2" "2-24-48-24" "1-2-2-2" "1-8-8-8"
2155 par_null_resume() {
2156 echo '### --null --resume --jl'
2157 log=/tmp/null-resume-$$.log
2159 true > "$log"
2160 printf "%s\n" a b c | parallel --resume -k --jl $log echo
2161 printf "%s\n" a b c | parallel --resume -k --jl $log echo
2162 true > "$log"
2163 printf "%s\0" A B C | parallel --null --resume -k --jl $log echo
2164 printf "%s\0" A B C | parallel --null --resume -k --jl $log echo
2165 rm "$log"
2168 par_block_negative_prefix() {
2169 tmp=`mktemp`
2170 seq 100000 > $tmp
2171 echo '### This should generate 10*2 jobs'
2172 parallel -j2 -a $tmp --pipepart --block -0.01k -k md5sum | wc
2173 rm $tmp
2176 export -f $(compgen -A function | grep par_)
2177 compgen -A function | grep par_ | LC_ALL=C sort |
2178 parallel -j6 --tag -k --joblog /tmp/jl-`basename $0` '{} 2>&1'