newrelic_rpm 3.9.4.245 → 3.9.5.251

Sign up to get free protection for your applications and to get access to all the features.
Files changed (88) hide show
  1. data.tar.gz.sig +0 -0
  2. data/CHANGELOG +57 -0
  3. data/Guardfile +1 -0
  4. data/lib/new_relic/agent/agent.rb +3 -3
  5. data/lib/new_relic/agent/audit_logger.rb +5 -2
  6. data/lib/new_relic/agent/configuration/default_source.rb +11 -5
  7. data/lib/new_relic/agent/error_collector.rb +14 -1
  8. data/lib/new_relic/agent/hostname.rb +22 -1
  9. data/lib/new_relic/agent/instrumentation/middleware_tracing.rb +8 -2
  10. data/lib/new_relic/agent/instrumentation/queue_time.rb +9 -6
  11. data/lib/new_relic/agent/method_tracer.rb +51 -172
  12. data/lib/new_relic/agent/method_tracer_helpers.rb +90 -0
  13. data/lib/new_relic/agent/new_relic_service.rb +33 -11
  14. data/lib/new_relic/agent/new_relic_service/encoders.rb +9 -5
  15. data/lib/new_relic/agent/request_sampler.rb +20 -12
  16. data/lib/new_relic/agent/rules_engine.rb +31 -78
  17. data/lib/new_relic/agent/rules_engine/replacement_rule.rb +76 -0
  18. data/lib/new_relic/agent/rules_engine/segment_terms_rule.rb +48 -0
  19. data/lib/new_relic/agent/samplers/cpu_sampler.rb +1 -1
  20. data/lib/new_relic/agent/sql_sampler.rb +39 -10
  21. data/lib/new_relic/agent/stats_engine/metric_stats.rb +1 -0
  22. data/lib/new_relic/agent/stats_engine/stats_hash.rb +7 -13
  23. data/lib/new_relic/agent/system_info.rb +96 -10
  24. data/lib/new_relic/agent/threading/agent_thread.rb +4 -1
  25. data/lib/new_relic/agent/threading/backtrace_node.rb +67 -57
  26. data/lib/new_relic/agent/threading/thread_profile.rb +30 -15
  27. data/lib/new_relic/agent/transaction.rb +11 -4
  28. data/lib/new_relic/environment_report.rb +21 -20
  29. data/lib/new_relic/version.rb +1 -1
  30. data/test/agent_helper.rb +12 -0
  31. data/test/fixtures/cross_agent_tests/README.md +1 -0
  32. data/test/fixtures/cross_agent_tests/proc_cpuinfo/1pack_1core_1logical.txt +3 -0
  33. data/test/fixtures/cross_agent_tests/proc_cpuinfo/1pack_1core_2logical.txt +14 -0
  34. data/test/fixtures/cross_agent_tests/proc_cpuinfo/1pack_2core_2logical.txt +14 -0
  35. data/test/fixtures/cross_agent_tests/proc_cpuinfo/1pack_4core_4logical.txt +28 -0
  36. data/test/fixtures/{proc_cpuinfo.txt → cross_agent_tests/proc_cpuinfo/2pack_12core_24logical.txt} +0 -0
  37. data/test/fixtures/cross_agent_tests/proc_cpuinfo/2pack_20core_40logical.txt +999 -0
  38. data/test/fixtures/cross_agent_tests/proc_cpuinfo/2pack_2core_2logical.txt +51 -0
  39. data/test/fixtures/cross_agent_tests/proc_cpuinfo/2pack_2core_4logical.txt +28 -0
  40. data/test/fixtures/cross_agent_tests/proc_cpuinfo/2pack_4core_4logical.txt +28 -0
  41. data/test/fixtures/cross_agent_tests/proc_cpuinfo/4pack_4core_4logical.txt +103 -0
  42. data/test/fixtures/cross_agent_tests/proc_cpuinfo/8pack_8core_8logical.txt +199 -0
  43. data/test/fixtures/cross_agent_tests/proc_cpuinfo/README.md +24 -0
  44. data/test/fixtures/cross_agent_tests/proc_cpuinfo/Xpack_Xcore_2logical.txt +43 -0
  45. data/test/fixtures/cross_agent_tests/transaction_segment_terms.json +101 -0
  46. data/test/multiverse/lib/multiverse/suite.rb +1 -1
  47. data/test/multiverse/suites/agent_only/agent_run_id_handling_test.rb +40 -0
  48. data/test/multiverse/suites/agent_only/labels_test.rb +9 -14
  49. data/test/multiverse/suites/agent_only/marshaling_test.rb +4 -6
  50. data/test/multiverse/suites/agent_only/rename_rule_test.rb +41 -4
  51. data/test/multiverse/suites/agent_only/set_transaction_name_test.rb +11 -3
  52. data/test/multiverse/suites/config_file_loading/config_file_loading_test.rb +8 -8
  53. data/test/multiverse/suites/rack/example_app.rb +20 -0
  54. data/test/multiverse/suites/rack/http_response_code_test.rb +51 -0
  55. data/test/multiverse/suites/sidekiq/Envfile +13 -6
  56. data/test/multiverse/suites/sidekiq/sidekiq_server.rb +4 -3
  57. data/test/new_relic/agent/audit_logger_test.rb +27 -0
  58. data/test/new_relic/agent/error_collector_test.rb +26 -5
  59. data/test/new_relic/agent/hostname_test.rb +66 -14
  60. data/test/new_relic/agent/instrumentation/action_controller_subscriber_test.rb +8 -12
  61. data/test/new_relic/agent/method_tracer/instance_methods/trace_execution_scoped_test.rb +7 -45
  62. data/test/new_relic/agent/method_tracer_test.rb +52 -1
  63. data/test/new_relic/agent/new_relic_service_test.rb +76 -0
  64. data/test/new_relic/agent/request_sampler_test.rb +7 -0
  65. data/test/new_relic/agent/rules_engine_test.rb +87 -56
  66. data/test/new_relic/agent/sql_sampler_test.rb +50 -14
  67. data/test/new_relic/agent/stats_engine/metric_stats_test.rb +2 -2
  68. data/test/new_relic/agent/stats_engine/samplers_test.rb +1 -1
  69. data/test/new_relic/agent/{stats_hash_test.rb → stats_engine/stats_hash_test.rb} +1 -38
  70. data/test/new_relic/agent/system_info_test.rb +45 -0
  71. data/test/new_relic/agent/threading/agent_thread_test.rb +30 -0
  72. data/test/new_relic/agent/threading/backtrace_node_test.rb +27 -44
  73. data/test/new_relic/agent/threading/thread_profile_test.rb +35 -14
  74. data/test/new_relic/agent/transaction_test.rb +13 -10
  75. data/test/new_relic/environment_report_test.rb +7 -6
  76. data/test/new_relic/fake_collector.rb +10 -6
  77. data/test/new_relic/multiverse_helpers.rb +4 -11
  78. data/test/new_relic/rack/agent_hooks_test.rb +1 -1
  79. data/test/performance/lib/performance/baseline_compare_reporter.rb +24 -7
  80. data/test/performance/lib/performance/result.rb +3 -1
  81. data/test/performance/lib/performance/runner.rb +10 -0
  82. data/test/performance/lib/performance/timer.rb +6 -10
  83. data/test/performance/script/runner +18 -1
  84. data/test/performance/suites/queue_time.rb +21 -0
  85. data/test/performance/suites/stats_hash.rb +34 -0
  86. data/test/performance/suites/thread_profiling.rb +26 -0
  87. metadata +25 -4
  88. metadata.gz.sig +0 -0
@@ -29,10 +29,10 @@ module NewRelic
29
29
  @finished = false
30
30
 
31
31
  @traces = {
32
- :agent => BacktraceNode.new(nil),
33
- :background => BacktraceNode.new(nil),
34
- :other => BacktraceNode.new(nil),
35
- :request => BacktraceNode.new(nil)
32
+ :agent => BacktraceRoot.new,
33
+ :background => BacktraceRoot.new,
34
+ :other => BacktraceRoot.new,
35
+ :request => BacktraceRoot.new
36
36
  }
37
37
 
38
38
  @poll_count = 0
@@ -78,15 +78,29 @@ module NewRelic
78
78
  end
79
79
  end
80
80
 
81
- def truncate_to_node_count!(count_to_keep) #THREAD_LOCAL_ACCESS
82
- all_nodes = @traces.values.map { |n| n.flatten }.flatten
81
+ def convert_N_trace_nodes_to_arrays(count_to_keep) #THREAD_LOCAL_ACCESS
82
+ all_nodes = @traces.values.map { |n| n.flattened }.flatten
83
83
 
84
84
  NewRelic::Agent.instance.stats_engine.
85
85
  tl_record_supportability_metric_count("ThreadProfiler/NodeCount", all_nodes.size)
86
86
 
87
- all_nodes.sort!
88
- nodes_to_prune = Set.new(all_nodes[count_to_keep..-1] || [])
89
- traces.values.each { |root| root.prune!(nodes_to_prune) }
87
+ all_nodes.sort! do |a, b|
88
+ # we primarily prefer higher runnable_count
89
+ comparison = b.runnable_count <=> a.runnable_count
90
+ # we secondarily prefer lower depth
91
+ comparison = a.depth <=> b.depth if comparison == 0
92
+ # it is thus impossible for any child to preceed their parent
93
+ comparison
94
+ end
95
+
96
+ all_nodes.each_with_index do |n, i|
97
+ break if i >= count_to_keep
98
+ n.mark_for_array_conversion
99
+ end
100
+ all_nodes.each_with_index do |n, i|
101
+ break if i >= count_to_keep
102
+ n.complete_array_conversion
103
+ end
90
104
  end
91
105
 
92
106
  THREAD_PROFILER_NODES = 20_000
@@ -94,17 +108,18 @@ module NewRelic
94
108
  include NewRelic::Coerce
95
109
 
96
110
  def generate_traces
97
- truncate_to_node_count!(THREAD_PROFILER_NODES)
111
+ convert_N_trace_nodes_to_arrays(THREAD_PROFILER_NODES)
112
+
98
113
  {
99
- "OTHER" => @traces[:other].to_array,
100
- "REQUEST" => @traces[:request].to_array,
101
- "AGENT" => @traces[:agent].to_array,
102
- "BACKGROUND" => @traces[:background].to_array
114
+ "OTHER" => @traces[:other ].as_array,
115
+ "REQUEST" => @traces[:request ].as_array,
116
+ "AGENT" => @traces[:agent ].as_array,
117
+ "BACKGROUND" => @traces[:background].as_array
103
118
  }
104
119
  end
105
120
 
106
121
  def to_collector_array(encoder)
107
- encoded_trace_tree = encoder.encode(generate_traces)
122
+ encoded_trace_tree = encoder.encode(generate_traces, :skip_normalization => true)
108
123
  result = [
109
124
  int(self.profile_id),
110
125
  float(self.created_at),
@@ -5,6 +5,7 @@
5
5
  require 'new_relic/agent/transaction_timings'
6
6
  require 'new_relic/agent/instrumentation/queue_time'
7
7
  require 'new_relic/agent/transaction_metrics'
8
+ require 'new_relic/agent/method_tracer_helpers'
8
9
 
9
10
  module NewRelic
10
11
  module Agent
@@ -115,7 +116,7 @@ module NewRelic
115
116
  txn.filtered_params = options[:filtered_params]
116
117
  end
117
118
 
118
- nested_frame = NewRelic::Agent::MethodTracer::TraceExecutionScoped.trace_execution_scoped_header(state, Time.now.to_f)
119
+ nested_frame = NewRelic::Agent::MethodTracerHelpers.trace_execution_scoped_header(state, Time.now.to_f)
119
120
  nested_frame.name = options[:transaction_name]
120
121
  nested_frame.category = category
121
122
  txn.frame_stack << nested_frame
@@ -165,7 +166,7 @@ module NewRelic
165
166
  summary_metrics = EMPTY_SUMMARY_METRICS
166
167
  end
167
168
 
168
- NewRelic::Agent::MethodTracer::TraceExecutionScoped.trace_execution_scoped_footer(
169
+ NewRelic::Agent::MethodTracerHelpers.trace_execution_scoped_footer(
169
170
  state,
170
171
  nested_frame.start_time.to_f,
171
172
  nested_name,
@@ -202,6 +203,7 @@ module NewRelic
202
203
  end
203
204
 
204
205
  attr_reader :frame_stack, :cat_path_hashes
206
+ attr_accessor :http_response_code
205
207
 
206
208
  def initialize(category, options)
207
209
  @frame_stack = []
@@ -328,7 +330,7 @@ module NewRelic
328
330
  NewRelic::Agent::BusyCalculator.dispatcher_start(start_time)
329
331
 
330
332
  @trace_options = { :metric => true, :scoped_metric => false }
331
- @expected_scope = NewRelic::Agent::MethodTracer::TraceExecutionScoped.trace_execution_scoped_header(state, start_time.to_f)
333
+ @expected_scope = NewRelic::Agent::MethodTracerHelpers.trace_execution_scoped_header(state, start_time.to_f)
332
334
  end
333
335
 
334
336
  # Indicate that you don't want to keep the currently saved transaction
@@ -383,7 +385,7 @@ module NewRelic
383
385
  summary_metrics_with_exclusive_time = EMPTY_SUMMARY_METRICS
384
386
  end
385
387
 
386
- NewRelic::Agent::MethodTracer::TraceExecutionScoped.trace_execution_scoped_footer(
388
+ NewRelic::Agent::MethodTracerHelpers.trace_execution_scoped_footer(
387
389
  state,
388
390
  start_time.to_f,
389
391
  name,
@@ -437,10 +439,15 @@ module NewRelic
437
439
  append_cat_info(state, duration, payload)
438
440
  append_apdex_perf_zone(duration, payload)
439
441
  append_referring_transaction_guid_to(state, payload)
442
+ append_http_response_code(payload)
440
443
 
441
444
  agent.events.notify(:transaction_finished, payload)
442
445
  end
443
446
 
447
+ def append_http_response_code(payload)
448
+ payload[:http_response_code] = http_response_code if http_response_code
449
+ end
450
+
444
451
  def include_guid?(state, duration)
445
452
  state.is_cross_app? ||
446
453
  (state.request_token && duration > apdex_t)
@@ -43,7 +43,7 @@ module NewRelic
43
43
 
44
44
  # register reporting logic
45
45
  ####################################
46
- report_on 'Gems' do
46
+ report_on('Gems') do
47
47
  begin
48
48
  Bundler.rubygems.all_specs.map { |gem| "#{gem.name}(#{gem.version})" }
49
49
  rescue
@@ -51,34 +51,35 @@ module NewRelic
51
51
  # 1.6.2, rails 2.3, bundler 1.2.3) where the code above throws an error
52
52
  # in bundler because of rails monkey patching gem. The below does work
53
53
  # though so try it if the above fails.
54
- Bundler.load.specs.map do | spec |
54
+ Bundler.load.specs.map do |spec|
55
55
  version = (spec.respond_to?(:version) && spec.version)
56
56
  spec.name + (version ? "(#{version})" : "")
57
57
  end
58
58
  end
59
59
  end
60
- report_on('Plugin List'){ ::Rails.configuration.plugins.to_a }
61
- report_on('Ruby version'){ RUBY_VERSION }
62
- report_on('Ruby description'){ RUBY_DESCRIPTION }
63
- report_on('Ruby platform'){ RUBY_PLATFORM }
64
- report_on('Ruby patchlevel'){ RUBY_PATCHLEVEL.to_s }
65
- report_on('JRuby version') { JRUBY_VERSION }
66
- report_on('Java VM version') { ENV_JAVA['java.vm.version']}
67
- report_on('Processors') { ::NewRelic::Agent::SystemInfo.processor_count }
68
- report_on('Arch') { ::NewRelic::Agent::SystemInfo.processor_arch }
69
- report_on('OS version') { ::NewRelic::Agent::SystemInfo.os_version }
70
- report_on('OS') { ::NewRelic::Agent::SystemInfo.ruby_os_identifier }
71
- report_on 'Database adapter' do
60
+ report_on('Plugin List' ) { ::Rails.configuration.plugins.to_a }
61
+ report_on('Ruby version' ) { RUBY_VERSION }
62
+ report_on('Ruby description' ) { RUBY_DESCRIPTION }
63
+ report_on('Ruby platform' ) { RUBY_PLATFORM }
64
+ report_on('Ruby patchlevel' ) { RUBY_PATCHLEVEL.to_s }
65
+ report_on('JRuby version' ) { JRUBY_VERSION }
66
+ report_on('Java VM version' ) { ENV_JAVA['java.vm.version'] }
67
+ report_on('Logical Processors') { ::NewRelic::Agent::SystemInfo.num_logical_processors }
68
+ report_on('Physical Cores' ) { ::NewRelic::Agent::SystemInfo.num_physical_cores }
69
+ report_on('Arch' ) { ::NewRelic::Agent::SystemInfo.processor_arch }
70
+ report_on('OS version' ) { ::NewRelic::Agent::SystemInfo.os_version }
71
+ report_on('OS' ) { ::NewRelic::Agent::SystemInfo.ruby_os_identifier }
72
+ report_on('Database adapter' ) do
72
73
  ActiveRecord::Base.configurations[NewRelic::Control.instance.env]['adapter']
73
74
  end
74
- report_on('Framework') { Agent.config[:framework].to_s }
75
- report_on('Dispatcher') { Agent.config[:dispatcher].to_s }
76
- report_on('Environment') { NewRelic::Control.instance.env }
77
- report_on('Rails version') { ::Rails::VERSION::STRING }
78
- report_on 'Rails threadsafe' do
75
+ report_on('Framework' ) { Agent.config[:framework].to_s }
76
+ report_on('Dispatcher' ) { Agent.config[:dispatcher].to_s }
77
+ report_on('Environment' ) { NewRelic::Control.instance.env }
78
+ report_on('Rails version' ) { ::Rails::VERSION::STRING }
79
+ report_on('Rails threadsafe') do
79
80
  ::Rails.configuration.action_controller.allow_concurrency
80
81
  end
81
- report_on 'Rails Env' do
82
+ report_on('Rails Env') do
82
83
  if defined? ::Rails and ::Rails.respond_to?(:env)
83
84
  ::Rails.env.to_s
84
85
  else
@@ -12,7 +12,7 @@ module NewRelic
12
12
 
13
13
  MAJOR = 3
14
14
  MINOR = 9
15
- TINY = 4
15
+ TINY = 5
16
16
 
17
17
  begin
18
18
  require File.join(File.dirname(__FILE__), 'build')
@@ -393,6 +393,18 @@ def with_config_low_priority(config_hash)
393
393
  end
394
394
  end
395
395
 
396
+ def with_transaction_renaming_rules(rule_specs)
397
+ original_engine = NewRelic::Agent.agent.instance_variable_get(:@transaction_rules)
398
+ begin
399
+ new_engine = NewRelic::Agent::RulesEngine.create_transaction_rules('transaction_name_rules' => rule_specs)
400
+ NewRelic::Agent.agent.instance_variable_set(:@transaction_rules, new_engine)
401
+ yield
402
+ ensure
403
+ NewRelic::Agent.agent.instance_variable_set(:@transaction_rules, original_engine)
404
+ end
405
+ end
406
+
407
+
396
408
  def freeze_time(now=Time.now)
397
409
  Time.stubs(:now).returns(now)
398
410
  now
@@ -22,6 +22,7 @@ Please be careful when adding new tests from real world failures.
22
22
  | [attribute_configuration](attribute_configuration.json) | These tests show how agents should respond to the various attribute configuration settings. For more information see: [Attributes SPEC](https://newrelic.atlassian.net/wiki/display/eng/Agent+Attributes) |
23
23
  | [cat_map](cat_map.json) | These tests cover the new Dirac attributes that are added for the CAT Map project. See the [CAT Map Spec](https://newrelic.jiveon.com/docs/DOC-1798) and the section below for details.|
24
24
  | [labels](labels.json) | These tests cover the Labels for Language Agents project. See the [Labels for Language Agents Spec](https://newrelic.atlassian.net/wiki/display/eng/Labels+for+Language+Agents+-+draft+spec) for details.|
25
+ | [proc_cpuinfo](proc_cpuinfo) | These test correct processing of `/proc/cpuinfo` output on Linux hosts. |
25
26
 
26
27
  ### CAT Map test details
27
28
 
@@ -0,0 +1,3 @@
1
+ processor : 0
2
+ model name : AMD Duron(tm) processor
3
+ cache size : 64 KB
@@ -0,0 +1,14 @@
1
+ processor : 0
2
+ model name : Intel(R) Pentium(R) 4 CPU 2.80GHz
3
+ cache size : 1024 KB
4
+ physical id : 0
5
+ siblings : 2
6
+ core id : 0
7
+ cpu cores : 1
8
+ processor : 1
9
+ model name : Intel(R) Pentium(R) 4 CPU 2.80GHz
10
+ cache size : 1024 KB
11
+ physical id : 0
12
+ siblings : 2
13
+ core id : 0
14
+ cpu cores : 1
@@ -0,0 +1,14 @@
1
+ processor : 0
2
+ model name : Intel(R) Pentium(R) D CPU 3.00GHz
3
+ cache size : 2048 KB
4
+ physical id : 0
5
+ siblings : 2
6
+ core id : 0
7
+ cpu cores : 2
8
+ processor : 1
9
+ model name : Intel(R) Pentium(R) D CPU 3.00GHz
10
+ cache size : 2048 KB
11
+ physical id : 0
12
+ siblings : 2
13
+ core id : 1
14
+ cpu cores : 2
@@ -0,0 +1,28 @@
1
+ processor : 0
2
+ model name : Intel(R) Xeon(R) CPU E5410 @ 2.33GHz
3
+ cache size : 6144 KB
4
+ physical id : 0
5
+ siblings : 4
6
+ core id : 0
7
+ cpu cores : 4
8
+ processor : 1
9
+ model name : Intel(R) Xeon(R) CPU E5410 @ 2.33GHz
10
+ cache size : 6144 KB
11
+ physical id : 0
12
+ siblings : 4
13
+ core id : 1
14
+ cpu cores : 4
15
+ processor : 2
16
+ model name : Intel(R) Xeon(R) CPU E5410 @ 2.33GHz
17
+ cache size : 6144 KB
18
+ physical id : 0
19
+ siblings : 4
20
+ core id : 2
21
+ cpu cores : 4
22
+ processor : 3
23
+ model name : Intel(R) Xeon(R) CPU E5410 @ 2.33GHz
24
+ cache size : 6144 KB
25
+ physical id : 0
26
+ siblings : 4
27
+ core id : 3
28
+ cpu cores : 4
@@ -0,0 +1,999 @@
1
+ processor : 0
2
+ vendor_id : GenuineIntel
3
+ cpu family : 6
4
+ model : 62
5
+ model name : Intel(R) Xeon(R) CPU E5-2680 v2 @ 2.80GHz
6
+ stepping : 4
7
+ cpu MHz : 1200.000
8
+ cache size : 25600 KB
9
+ physical id : 0
10
+ siblings : 20
11
+ core id : 0
12
+ cpu cores : 10
13
+ apicid : 0
14
+ initial apicid : 0
15
+ fpu : yes
16
+ fpu_exception : yes
17
+ cpuid level : 13
18
+ wp : yes
19
+ 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 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 dts tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
20
+ bogomips : 5586.71
21
+ clflush size : 64
22
+ cache_alignment : 64
23
+ address sizes : 46 bits physical, 48 bits virtual
24
+ power management:
25
+
26
+ processor : 1
27
+ vendor_id : GenuineIntel
28
+ cpu family : 6
29
+ model : 62
30
+ model name : Intel(R) Xeon(R) CPU E5-2680 v2 @ 2.80GHz
31
+ stepping : 4
32
+ cpu MHz : 1200.000
33
+ cache size : 25600 KB
34
+ physical id : 0
35
+ siblings : 20
36
+ core id : 1
37
+ cpu cores : 10
38
+ apicid : 2
39
+ initial apicid : 2
40
+ fpu : yes
41
+ fpu_exception : yes
42
+ cpuid level : 13
43
+ wp : yes
44
+ 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 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 dts tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
45
+ bogomips : 5586.71
46
+ clflush size : 64
47
+ cache_alignment : 64
48
+ address sizes : 46 bits physical, 48 bits virtual
49
+ power management:
50
+
51
+ processor : 2
52
+ vendor_id : GenuineIntel
53
+ cpu family : 6
54
+ model : 62
55
+ model name : Intel(R) Xeon(R) CPU E5-2680 v2 @ 2.80GHz
56
+ stepping : 4
57
+ cpu MHz : 1200.000
58
+ cache size : 25600 KB
59
+ physical id : 0
60
+ siblings : 20
61
+ core id : 2
62
+ cpu cores : 10
63
+ apicid : 4
64
+ initial apicid : 4
65
+ fpu : yes
66
+ fpu_exception : yes
67
+ cpuid level : 13
68
+ wp : yes
69
+ 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 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 dts tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
70
+ bogomips : 5586.71
71
+ clflush size : 64
72
+ cache_alignment : 64
73
+ address sizes : 46 bits physical, 48 bits virtual
74
+ power management:
75
+
76
+ processor : 3
77
+ vendor_id : GenuineIntel
78
+ cpu family : 6
79
+ model : 62
80
+ model name : Intel(R) Xeon(R) CPU E5-2680 v2 @ 2.80GHz
81
+ stepping : 4
82
+ cpu MHz : 1200.000
83
+ cache size : 25600 KB
84
+ physical id : 0
85
+ siblings : 20
86
+ core id : 3
87
+ cpu cores : 10
88
+ apicid : 6
89
+ initial apicid : 6
90
+ fpu : yes
91
+ fpu_exception : yes
92
+ cpuid level : 13
93
+ wp : yes
94
+ 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 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 dts tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
95
+ bogomips : 5586.71
96
+ clflush size : 64
97
+ cache_alignment : 64
98
+ address sizes : 46 bits physical, 48 bits virtual
99
+ power management:
100
+
101
+ processor : 4
102
+ vendor_id : GenuineIntel
103
+ cpu family : 6
104
+ model : 62
105
+ model name : Intel(R) Xeon(R) CPU E5-2680 v2 @ 2.80GHz
106
+ stepping : 4
107
+ cpu MHz : 1200.000
108
+ cache size : 25600 KB
109
+ physical id : 0
110
+ siblings : 20
111
+ core id : 4
112
+ cpu cores : 10
113
+ apicid : 8
114
+ initial apicid : 8
115
+ fpu : yes
116
+ fpu_exception : yes
117
+ cpuid level : 13
118
+ wp : yes
119
+ 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 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 dts tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
120
+ bogomips : 5586.71
121
+ clflush size : 64
122
+ cache_alignment : 64
123
+ address sizes : 46 bits physical, 48 bits virtual
124
+ power management:
125
+
126
+ processor : 5
127
+ vendor_id : GenuineIntel
128
+ cpu family : 6
129
+ model : 62
130
+ model name : Intel(R) Xeon(R) CPU E5-2680 v2 @ 2.80GHz
131
+ stepping : 4
132
+ cpu MHz : 1200.000
133
+ cache size : 25600 KB
134
+ physical id : 0
135
+ siblings : 20
136
+ core id : 8
137
+ cpu cores : 10
138
+ apicid : 16
139
+ initial apicid : 16
140
+ fpu : yes
141
+ fpu_exception : yes
142
+ cpuid level : 13
143
+ wp : yes
144
+ 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 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 dts tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
145
+ bogomips : 5586.71
146
+ clflush size : 64
147
+ cache_alignment : 64
148
+ address sizes : 46 bits physical, 48 bits virtual
149
+ power management:
150
+
151
+ processor : 6
152
+ vendor_id : GenuineIntel
153
+ cpu family : 6
154
+ model : 62
155
+ model name : Intel(R) Xeon(R) CPU E5-2680 v2 @ 2.80GHz
156
+ stepping : 4
157
+ cpu MHz : 1200.000
158
+ cache size : 25600 KB
159
+ physical id : 0
160
+ siblings : 20
161
+ core id : 9
162
+ cpu cores : 10
163
+ apicid : 18
164
+ initial apicid : 18
165
+ fpu : yes
166
+ fpu_exception : yes
167
+ cpuid level : 13
168
+ wp : yes
169
+ 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 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 dts tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
170
+ bogomips : 5586.71
171
+ clflush size : 64
172
+ cache_alignment : 64
173
+ address sizes : 46 bits physical, 48 bits virtual
174
+ power management:
175
+
176
+ processor : 7
177
+ vendor_id : GenuineIntel
178
+ cpu family : 6
179
+ model : 62
180
+ model name : Intel(R) Xeon(R) CPU E5-2680 v2 @ 2.80GHz
181
+ stepping : 4
182
+ cpu MHz : 1200.000
183
+ cache size : 25600 KB
184
+ physical id : 0
185
+ siblings : 20
186
+ core id : 10
187
+ cpu cores : 10
188
+ apicid : 20
189
+ initial apicid : 20
190
+ fpu : yes
191
+ fpu_exception : yes
192
+ cpuid level : 13
193
+ wp : yes
194
+ 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 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 dts tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
195
+ bogomips : 5586.71
196
+ clflush size : 64
197
+ cache_alignment : 64
198
+ address sizes : 46 bits physical, 48 bits virtual
199
+ power management:
200
+
201
+ processor : 8
202
+ vendor_id : GenuineIntel
203
+ cpu family : 6
204
+ model : 62
205
+ model name : Intel(R) Xeon(R) CPU E5-2680 v2 @ 2.80GHz
206
+ stepping : 4
207
+ cpu MHz : 1200.000
208
+ cache size : 25600 KB
209
+ physical id : 0
210
+ siblings : 20
211
+ core id : 11
212
+ cpu cores : 10
213
+ apicid : 22
214
+ initial apicid : 22
215
+ fpu : yes
216
+ fpu_exception : yes
217
+ cpuid level : 13
218
+ wp : yes
219
+ 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 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 dts tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
220
+ bogomips : 5586.71
221
+ clflush size : 64
222
+ cache_alignment : 64
223
+ address sizes : 46 bits physical, 48 bits virtual
224
+ power management:
225
+
226
+ processor : 9
227
+ vendor_id : GenuineIntel
228
+ cpu family : 6
229
+ model : 62
230
+ model name : Intel(R) Xeon(R) CPU E5-2680 v2 @ 2.80GHz
231
+ stepping : 4
232
+ cpu MHz : 1200.000
233
+ cache size : 25600 KB
234
+ physical id : 0
235
+ siblings : 20
236
+ core id : 12
237
+ cpu cores : 10
238
+ apicid : 24
239
+ initial apicid : 24
240
+ fpu : yes
241
+ fpu_exception : yes
242
+ cpuid level : 13
243
+ wp : yes
244
+ 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 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 dts tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
245
+ bogomips : 5586.71
246
+ clflush size : 64
247
+ cache_alignment : 64
248
+ address sizes : 46 bits physical, 48 bits virtual
249
+ power management:
250
+
251
+ processor : 10
252
+ vendor_id : GenuineIntel
253
+ cpu family : 6
254
+ model : 62
255
+ model name : Intel(R) Xeon(R) CPU E5-2680 v2 @ 2.80GHz
256
+ stepping : 4
257
+ cpu MHz : 1200.000
258
+ cache size : 25600 KB
259
+ physical id : 1
260
+ siblings : 20
261
+ core id : 0
262
+ cpu cores : 10
263
+ apicid : 32
264
+ initial apicid : 32
265
+ fpu : yes
266
+ fpu_exception : yes
267
+ cpuid level : 13
268
+ wp : yes
269
+ 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 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 dts tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
270
+ bogomips : 5585.83
271
+ clflush size : 64
272
+ cache_alignment : 64
273
+ address sizes : 46 bits physical, 48 bits virtual
274
+ power management:
275
+
276
+ processor : 11
277
+ vendor_id : GenuineIntel
278
+ cpu family : 6
279
+ model : 62
280
+ model name : Intel(R) Xeon(R) CPU E5-2680 v2 @ 2.80GHz
281
+ stepping : 4
282
+ cpu MHz : 1200.000
283
+ cache size : 25600 KB
284
+ physical id : 1
285
+ siblings : 20
286
+ core id : 1
287
+ cpu cores : 10
288
+ apicid : 34
289
+ initial apicid : 34
290
+ fpu : yes
291
+ fpu_exception : yes
292
+ cpuid level : 13
293
+ wp : yes
294
+ 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 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 dts tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
295
+ bogomips : 5585.83
296
+ clflush size : 64
297
+ cache_alignment : 64
298
+ address sizes : 46 bits physical, 48 bits virtual
299
+ power management:
300
+
301
+ processor : 12
302
+ vendor_id : GenuineIntel
303
+ cpu family : 6
304
+ model : 62
305
+ model name : Intel(R) Xeon(R) CPU E5-2680 v2 @ 2.80GHz
306
+ stepping : 4
307
+ cpu MHz : 1200.000
308
+ cache size : 25600 KB
309
+ physical id : 1
310
+ siblings : 20
311
+ core id : 2
312
+ cpu cores : 10
313
+ apicid : 36
314
+ initial apicid : 36
315
+ fpu : yes
316
+ fpu_exception : yes
317
+ cpuid level : 13
318
+ wp : yes
319
+ 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 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 dts tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
320
+ bogomips : 5585.83
321
+ clflush size : 64
322
+ cache_alignment : 64
323
+ address sizes : 46 bits physical, 48 bits virtual
324
+ power management:
325
+
326
+ processor : 13
327
+ vendor_id : GenuineIntel
328
+ cpu family : 6
329
+ model : 62
330
+ model name : Intel(R) Xeon(R) CPU E5-2680 v2 @ 2.80GHz
331
+ stepping : 4
332
+ cpu MHz : 1200.000
333
+ cache size : 25600 KB
334
+ physical id : 1
335
+ siblings : 20
336
+ core id : 3
337
+ cpu cores : 10
338
+ apicid : 38
339
+ initial apicid : 38
340
+ fpu : yes
341
+ fpu_exception : yes
342
+ cpuid level : 13
343
+ wp : yes
344
+ 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 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 dts tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
345
+ bogomips : 5585.83
346
+ clflush size : 64
347
+ cache_alignment : 64
348
+ address sizes : 46 bits physical, 48 bits virtual
349
+ power management:
350
+
351
+ processor : 14
352
+ vendor_id : GenuineIntel
353
+ cpu family : 6
354
+ model : 62
355
+ model name : Intel(R) Xeon(R) CPU E5-2680 v2 @ 2.80GHz
356
+ stepping : 4
357
+ cpu MHz : 1200.000
358
+ cache size : 25600 KB
359
+ physical id : 1
360
+ siblings : 20
361
+ core id : 4
362
+ cpu cores : 10
363
+ apicid : 40
364
+ initial apicid : 40
365
+ fpu : yes
366
+ fpu_exception : yes
367
+ cpuid level : 13
368
+ wp : yes
369
+ 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 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 dts tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
370
+ bogomips : 5585.83
371
+ clflush size : 64
372
+ cache_alignment : 64
373
+ address sizes : 46 bits physical, 48 bits virtual
374
+ power management:
375
+
376
+ processor : 15
377
+ vendor_id : GenuineIntel
378
+ cpu family : 6
379
+ model : 62
380
+ model name : Intel(R) Xeon(R) CPU E5-2680 v2 @ 2.80GHz
381
+ stepping : 4
382
+ cpu MHz : 1200.000
383
+ cache size : 25600 KB
384
+ physical id : 1
385
+ siblings : 20
386
+ core id : 8
387
+ cpu cores : 10
388
+ apicid : 48
389
+ initial apicid : 48
390
+ fpu : yes
391
+ fpu_exception : yes
392
+ cpuid level : 13
393
+ wp : yes
394
+ 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 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 dts tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
395
+ bogomips : 5585.83
396
+ clflush size : 64
397
+ cache_alignment : 64
398
+ address sizes : 46 bits physical, 48 bits virtual
399
+ power management:
400
+
401
+ processor : 16
402
+ vendor_id : GenuineIntel
403
+ cpu family : 6
404
+ model : 62
405
+ model name : Intel(R) Xeon(R) CPU E5-2680 v2 @ 2.80GHz
406
+ stepping : 4
407
+ cpu MHz : 1200.000
408
+ cache size : 25600 KB
409
+ physical id : 1
410
+ siblings : 20
411
+ core id : 9
412
+ cpu cores : 10
413
+ apicid : 50
414
+ initial apicid : 50
415
+ fpu : yes
416
+ fpu_exception : yes
417
+ cpuid level : 13
418
+ wp : yes
419
+ 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 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 dts tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
420
+ bogomips : 5585.83
421
+ clflush size : 64
422
+ cache_alignment : 64
423
+ address sizes : 46 bits physical, 48 bits virtual
424
+ power management:
425
+
426
+ processor : 17
427
+ vendor_id : GenuineIntel
428
+ cpu family : 6
429
+ model : 62
430
+ model name : Intel(R) Xeon(R) CPU E5-2680 v2 @ 2.80GHz
431
+ stepping : 4
432
+ cpu MHz : 1200.000
433
+ cache size : 25600 KB
434
+ physical id : 1
435
+ siblings : 20
436
+ core id : 10
437
+ cpu cores : 10
438
+ apicid : 52
439
+ initial apicid : 52
440
+ fpu : yes
441
+ fpu_exception : yes
442
+ cpuid level : 13
443
+ wp : yes
444
+ 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 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 dts tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
445
+ bogomips : 5585.83
446
+ clflush size : 64
447
+ cache_alignment : 64
448
+ address sizes : 46 bits physical, 48 bits virtual
449
+ power management:
450
+
451
+ processor : 18
452
+ vendor_id : GenuineIntel
453
+ cpu family : 6
454
+ model : 62
455
+ model name : Intel(R) Xeon(R) CPU E5-2680 v2 @ 2.80GHz
456
+ stepping : 4
457
+ cpu MHz : 1200.000
458
+ cache size : 25600 KB
459
+ physical id : 1
460
+ siblings : 20
461
+ core id : 11
462
+ cpu cores : 10
463
+ apicid : 54
464
+ initial apicid : 54
465
+ fpu : yes
466
+ fpu_exception : yes
467
+ cpuid level : 13
468
+ wp : yes
469
+ 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 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 dts tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
470
+ bogomips : 5585.83
471
+ clflush size : 64
472
+ cache_alignment : 64
473
+ address sizes : 46 bits physical, 48 bits virtual
474
+ power management:
475
+
476
+ processor : 19
477
+ vendor_id : GenuineIntel
478
+ cpu family : 6
479
+ model : 62
480
+ model name : Intel(R) Xeon(R) CPU E5-2680 v2 @ 2.80GHz
481
+ stepping : 4
482
+ cpu MHz : 2801.000
483
+ cache size : 25600 KB
484
+ physical id : 1
485
+ siblings : 20
486
+ core id : 12
487
+ cpu cores : 10
488
+ apicid : 56
489
+ initial apicid : 56
490
+ fpu : yes
491
+ fpu_exception : yes
492
+ cpuid level : 13
493
+ wp : yes
494
+ 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 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 dts tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
495
+ bogomips : 5585.83
496
+ clflush size : 64
497
+ cache_alignment : 64
498
+ address sizes : 46 bits physical, 48 bits virtual
499
+ power management:
500
+
501
+ processor : 20
502
+ vendor_id : GenuineIntel
503
+ cpu family : 6
504
+ model : 62
505
+ model name : Intel(R) Xeon(R) CPU E5-2680 v2 @ 2.80GHz
506
+ stepping : 4
507
+ cpu MHz : 1200.000
508
+ cache size : 25600 KB
509
+ physical id : 0
510
+ siblings : 20
511
+ core id : 0
512
+ cpu cores : 10
513
+ apicid : 1
514
+ initial apicid : 1
515
+ fpu : yes
516
+ fpu_exception : yes
517
+ cpuid level : 13
518
+ wp : yes
519
+ 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 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 dts tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
520
+ bogomips : 5586.71
521
+ clflush size : 64
522
+ cache_alignment : 64
523
+ address sizes : 46 bits physical, 48 bits virtual
524
+ power management:
525
+
526
+ processor : 21
527
+ vendor_id : GenuineIntel
528
+ cpu family : 6
529
+ model : 62
530
+ model name : Intel(R) Xeon(R) CPU E5-2680 v2 @ 2.80GHz
531
+ stepping : 4
532
+ cpu MHz : 1200.000
533
+ cache size : 25600 KB
534
+ physical id : 0
535
+ siblings : 20
536
+ core id : 1
537
+ cpu cores : 10
538
+ apicid : 3
539
+ initial apicid : 3
540
+ fpu : yes
541
+ fpu_exception : yes
542
+ cpuid level : 13
543
+ wp : yes
544
+ 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 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 dts tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
545
+ bogomips : 5586.71
546
+ clflush size : 64
547
+ cache_alignment : 64
548
+ address sizes : 46 bits physical, 48 bits virtual
549
+ power management:
550
+
551
+ processor : 22
552
+ vendor_id : GenuineIntel
553
+ cpu family : 6
554
+ model : 62
555
+ model name : Intel(R) Xeon(R) CPU E5-2680 v2 @ 2.80GHz
556
+ stepping : 4
557
+ cpu MHz : 1200.000
558
+ cache size : 25600 KB
559
+ physical id : 0
560
+ siblings : 20
561
+ core id : 2
562
+ cpu cores : 10
563
+ apicid : 5
564
+ initial apicid : 5
565
+ fpu : yes
566
+ fpu_exception : yes
567
+ cpuid level : 13
568
+ wp : yes
569
+ 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 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 dts tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
570
+ bogomips : 5586.71
571
+ clflush size : 64
572
+ cache_alignment : 64
573
+ address sizes : 46 bits physical, 48 bits virtual
574
+ power management:
575
+
576
+ processor : 23
577
+ vendor_id : GenuineIntel
578
+ cpu family : 6
579
+ model : 62
580
+ model name : Intel(R) Xeon(R) CPU E5-2680 v2 @ 2.80GHz
581
+ stepping : 4
582
+ cpu MHz : 1200.000
583
+ cache size : 25600 KB
584
+ physical id : 0
585
+ siblings : 20
586
+ core id : 3
587
+ cpu cores : 10
588
+ apicid : 7
589
+ initial apicid : 7
590
+ fpu : yes
591
+ fpu_exception : yes
592
+ cpuid level : 13
593
+ wp : yes
594
+ 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 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 dts tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
595
+ bogomips : 5586.71
596
+ clflush size : 64
597
+ cache_alignment : 64
598
+ address sizes : 46 bits physical, 48 bits virtual
599
+ power management:
600
+
601
+ processor : 24
602
+ vendor_id : GenuineIntel
603
+ cpu family : 6
604
+ model : 62
605
+ model name : Intel(R) Xeon(R) CPU E5-2680 v2 @ 2.80GHz
606
+ stepping : 4
607
+ cpu MHz : 1200.000
608
+ cache size : 25600 KB
609
+ physical id : 0
610
+ siblings : 20
611
+ core id : 4
612
+ cpu cores : 10
613
+ apicid : 9
614
+ initial apicid : 9
615
+ fpu : yes
616
+ fpu_exception : yes
617
+ cpuid level : 13
618
+ wp : yes
619
+ 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 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 dts tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
620
+ bogomips : 5586.71
621
+ clflush size : 64
622
+ cache_alignment : 64
623
+ address sizes : 46 bits physical, 48 bits virtual
624
+ power management:
625
+
626
+ processor : 25
627
+ vendor_id : GenuineIntel
628
+ cpu family : 6
629
+ model : 62
630
+ model name : Intel(R) Xeon(R) CPU E5-2680 v2 @ 2.80GHz
631
+ stepping : 4
632
+ cpu MHz : 1200.000
633
+ cache size : 25600 KB
634
+ physical id : 0
635
+ siblings : 20
636
+ core id : 8
637
+ cpu cores : 10
638
+ apicid : 17
639
+ initial apicid : 17
640
+ fpu : yes
641
+ fpu_exception : yes
642
+ cpuid level : 13
643
+ wp : yes
644
+ 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 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 dts tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
645
+ bogomips : 5586.71
646
+ clflush size : 64
647
+ cache_alignment : 64
648
+ address sizes : 46 bits physical, 48 bits virtual
649
+ power management:
650
+
651
+ processor : 26
652
+ vendor_id : GenuineIntel
653
+ cpu family : 6
654
+ model : 62
655
+ model name : Intel(R) Xeon(R) CPU E5-2680 v2 @ 2.80GHz
656
+ stepping : 4
657
+ cpu MHz : 1200.000
658
+ cache size : 25600 KB
659
+ physical id : 0
660
+ siblings : 20
661
+ core id : 9
662
+ cpu cores : 10
663
+ apicid : 19
664
+ initial apicid : 19
665
+ fpu : yes
666
+ fpu_exception : yes
667
+ cpuid level : 13
668
+ wp : yes
669
+ 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 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 dts tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
670
+ bogomips : 5586.71
671
+ clflush size : 64
672
+ cache_alignment : 64
673
+ address sizes : 46 bits physical, 48 bits virtual
674
+ power management:
675
+
676
+ processor : 27
677
+ vendor_id : GenuineIntel
678
+ cpu family : 6
679
+ model : 62
680
+ model name : Intel(R) Xeon(R) CPU E5-2680 v2 @ 2.80GHz
681
+ stepping : 4
682
+ cpu MHz : 1200.000
683
+ cache size : 25600 KB
684
+ physical id : 0
685
+ siblings : 20
686
+ core id : 10
687
+ cpu cores : 10
688
+ apicid : 21
689
+ initial apicid : 21
690
+ fpu : yes
691
+ fpu_exception : yes
692
+ cpuid level : 13
693
+ wp : yes
694
+ 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 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 dts tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
695
+ bogomips : 5586.71
696
+ clflush size : 64
697
+ cache_alignment : 64
698
+ address sizes : 46 bits physical, 48 bits virtual
699
+ power management:
700
+
701
+ processor : 28
702
+ vendor_id : GenuineIntel
703
+ cpu family : 6
704
+ model : 62
705
+ model name : Intel(R) Xeon(R) CPU E5-2680 v2 @ 2.80GHz
706
+ stepping : 4
707
+ cpu MHz : 1200.000
708
+ cache size : 25600 KB
709
+ physical id : 0
710
+ siblings : 20
711
+ core id : 11
712
+ cpu cores : 10
713
+ apicid : 23
714
+ initial apicid : 23
715
+ fpu : yes
716
+ fpu_exception : yes
717
+ cpuid level : 13
718
+ wp : yes
719
+ 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 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 dts tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
720
+ bogomips : 5586.71
721
+ clflush size : 64
722
+ cache_alignment : 64
723
+ address sizes : 46 bits physical, 48 bits virtual
724
+ power management:
725
+
726
+ processor : 29
727
+ vendor_id : GenuineIntel
728
+ cpu family : 6
729
+ model : 62
730
+ model name : Intel(R) Xeon(R) CPU E5-2680 v2 @ 2.80GHz
731
+ stepping : 4
732
+ cpu MHz : 1200.000
733
+ cache size : 25600 KB
734
+ physical id : 0
735
+ siblings : 20
736
+ core id : 12
737
+ cpu cores : 10
738
+ apicid : 25
739
+ initial apicid : 25
740
+ fpu : yes
741
+ fpu_exception : yes
742
+ cpuid level : 13
743
+ wp : yes
744
+ 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 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 dts tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
745
+ bogomips : 5586.71
746
+ clflush size : 64
747
+ cache_alignment : 64
748
+ address sizes : 46 bits physical, 48 bits virtual
749
+ power management:
750
+
751
+ processor : 30
752
+ vendor_id : GenuineIntel
753
+ cpu family : 6
754
+ model : 62
755
+ model name : Intel(R) Xeon(R) CPU E5-2680 v2 @ 2.80GHz
756
+ stepping : 4
757
+ cpu MHz : 1200.000
758
+ cache size : 25600 KB
759
+ physical id : 1
760
+ siblings : 20
761
+ core id : 0
762
+ cpu cores : 10
763
+ apicid : 33
764
+ initial apicid : 33
765
+ fpu : yes
766
+ fpu_exception : yes
767
+ cpuid level : 13
768
+ wp : yes
769
+ 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 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 dts tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
770
+ bogomips : 5585.83
771
+ clflush size : 64
772
+ cache_alignment : 64
773
+ address sizes : 46 bits physical, 48 bits virtual
774
+ power management:
775
+
776
+ processor : 31
777
+ vendor_id : GenuineIntel
778
+ cpu family : 6
779
+ model : 62
780
+ model name : Intel(R) Xeon(R) CPU E5-2680 v2 @ 2.80GHz
781
+ stepping : 4
782
+ cpu MHz : 1200.000
783
+ cache size : 25600 KB
784
+ physical id : 1
785
+ siblings : 20
786
+ core id : 1
787
+ cpu cores : 10
788
+ apicid : 35
789
+ initial apicid : 35
790
+ fpu : yes
791
+ fpu_exception : yes
792
+ cpuid level : 13
793
+ wp : yes
794
+ 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 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 dts tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
795
+ bogomips : 5585.83
796
+ clflush size : 64
797
+ cache_alignment : 64
798
+ address sizes : 46 bits physical, 48 bits virtual
799
+ power management:
800
+
801
+ processor : 32
802
+ vendor_id : GenuineIntel
803
+ cpu family : 6
804
+ model : 62
805
+ model name : Intel(R) Xeon(R) CPU E5-2680 v2 @ 2.80GHz
806
+ stepping : 4
807
+ cpu MHz : 1200.000
808
+ cache size : 25600 KB
809
+ physical id : 1
810
+ siblings : 20
811
+ core id : 2
812
+ cpu cores : 10
813
+ apicid : 37
814
+ initial apicid : 37
815
+ fpu : yes
816
+ fpu_exception : yes
817
+ cpuid level : 13
818
+ wp : yes
819
+ 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 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 dts tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
820
+ bogomips : 5585.83
821
+ clflush size : 64
822
+ cache_alignment : 64
823
+ address sizes : 46 bits physical, 48 bits virtual
824
+ power management:
825
+
826
+ processor : 33
827
+ vendor_id : GenuineIntel
828
+ cpu family : 6
829
+ model : 62
830
+ model name : Intel(R) Xeon(R) CPU E5-2680 v2 @ 2.80GHz
831
+ stepping : 4
832
+ cpu MHz : 1200.000
833
+ cache size : 25600 KB
834
+ physical id : 1
835
+ siblings : 20
836
+ core id : 3
837
+ cpu cores : 10
838
+ apicid : 39
839
+ initial apicid : 39
840
+ fpu : yes
841
+ fpu_exception : yes
842
+ cpuid level : 13
843
+ wp : yes
844
+ 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 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 dts tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
845
+ bogomips : 5585.83
846
+ clflush size : 64
847
+ cache_alignment : 64
848
+ address sizes : 46 bits physical, 48 bits virtual
849
+ power management:
850
+
851
+ processor : 34
852
+ vendor_id : GenuineIntel
853
+ cpu family : 6
854
+ model : 62
855
+ model name : Intel(R) Xeon(R) CPU E5-2680 v2 @ 2.80GHz
856
+ stepping : 4
857
+ cpu MHz : 1200.000
858
+ cache size : 25600 KB
859
+ physical id : 1
860
+ siblings : 20
861
+ core id : 4
862
+ cpu cores : 10
863
+ apicid : 41
864
+ initial apicid : 41
865
+ fpu : yes
866
+ fpu_exception : yes
867
+ cpuid level : 13
868
+ wp : yes
869
+ 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 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 dts tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
870
+ bogomips : 5585.83
871
+ clflush size : 64
872
+ cache_alignment : 64
873
+ address sizes : 46 bits physical, 48 bits virtual
874
+ power management:
875
+
876
+ processor : 35
877
+ vendor_id : GenuineIntel
878
+ cpu family : 6
879
+ model : 62
880
+ model name : Intel(R) Xeon(R) CPU E5-2680 v2 @ 2.80GHz
881
+ stepping : 4
882
+ cpu MHz : 1200.000
883
+ cache size : 25600 KB
884
+ physical id : 1
885
+ siblings : 20
886
+ core id : 8
887
+ cpu cores : 10
888
+ apicid : 49
889
+ initial apicid : 49
890
+ fpu : yes
891
+ fpu_exception : yes
892
+ cpuid level : 13
893
+ wp : yes
894
+ 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 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 dts tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
895
+ bogomips : 5585.83
896
+ clflush size : 64
897
+ cache_alignment : 64
898
+ address sizes : 46 bits physical, 48 bits virtual
899
+ power management:
900
+
901
+ processor : 36
902
+ vendor_id : GenuineIntel
903
+ cpu family : 6
904
+ model : 62
905
+ model name : Intel(R) Xeon(R) CPU E5-2680 v2 @ 2.80GHz
906
+ stepping : 4
907
+ cpu MHz : 1200.000
908
+ cache size : 25600 KB
909
+ physical id : 1
910
+ siblings : 20
911
+ core id : 9
912
+ cpu cores : 10
913
+ apicid : 51
914
+ initial apicid : 51
915
+ fpu : yes
916
+ fpu_exception : yes
917
+ cpuid level : 13
918
+ wp : yes
919
+ 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 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 dts tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
920
+ bogomips : 5585.83
921
+ clflush size : 64
922
+ cache_alignment : 64
923
+ address sizes : 46 bits physical, 48 bits virtual
924
+ power management:
925
+
926
+ processor : 37
927
+ vendor_id : GenuineIntel
928
+ cpu family : 6
929
+ model : 62
930
+ model name : Intel(R) Xeon(R) CPU E5-2680 v2 @ 2.80GHz
931
+ stepping : 4
932
+ cpu MHz : 1200.000
933
+ cache size : 25600 KB
934
+ physical id : 1
935
+ siblings : 20
936
+ core id : 10
937
+ cpu cores : 10
938
+ apicid : 53
939
+ initial apicid : 53
940
+ fpu : yes
941
+ fpu_exception : yes
942
+ cpuid level : 13
943
+ wp : yes
944
+ 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 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 dts tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
945
+ bogomips : 5585.83
946
+ clflush size : 64
947
+ cache_alignment : 64
948
+ address sizes : 46 bits physical, 48 bits virtual
949
+ power management:
950
+
951
+ processor : 38
952
+ vendor_id : GenuineIntel
953
+ cpu family : 6
954
+ model : 62
955
+ model name : Intel(R) Xeon(R) CPU E5-2680 v2 @ 2.80GHz
956
+ stepping : 4
957
+ cpu MHz : 1200.000
958
+ cache size : 25600 KB
959
+ physical id : 1
960
+ siblings : 20
961
+ core id : 11
962
+ cpu cores : 10
963
+ apicid : 55
964
+ initial apicid : 55
965
+ fpu : yes
966
+ fpu_exception : yes
967
+ cpuid level : 13
968
+ wp : yes
969
+ 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 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 dts tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
970
+ bogomips : 5585.83
971
+ clflush size : 64
972
+ cache_alignment : 64
973
+ address sizes : 46 bits physical, 48 bits virtual
974
+ power management:
975
+
976
+ processor : 39
977
+ vendor_id : GenuineIntel
978
+ cpu family : 6
979
+ model : 62
980
+ model name : Intel(R) Xeon(R) CPU E5-2680 v2 @ 2.80GHz
981
+ stepping : 4
982
+ cpu MHz : 1200.000
983
+ cache size : 25600 KB
984
+ physical id : 1
985
+ siblings : 20
986
+ core id : 12
987
+ cpu cores : 10
988
+ apicid : 57
989
+ initial apicid : 57
990
+ fpu : yes
991
+ fpu_exception : yes
992
+ cpuid level : 13
993
+ wp : yes
994
+ 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 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 dts tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
995
+ bogomips : 5585.83
996
+ clflush size : 64
997
+ cache_alignment : 64
998
+ address sizes : 46 bits physical, 48 bits virtual
999
+ power management: