Created
November 6, 2014 19:26
-
-
Save asford/4f06d8195cce1f9b9306 to your computer and use it in GitHub Desktop.
DIG/GNA /proc/cpuinfo analysis.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"metadata": { | |
"name": "" | |
}, | |
"nbformat": 3, | |
"nbformat_minor": 0, | |
"worksheets": [ | |
{ | |
"cells": [ | |
{ | |
"cell_type": "code", | |
"collapsed": false, | |
"input": [ | |
"def read_cpuinfo(infile):\n", | |
" lb = []\n", | |
" cur_lb = {}\n", | |
" \n", | |
" for l in open(infile).readlines():\n", | |
" l = l.strip()\n", | |
" if l:\n", | |
" i, v = [r.strip() for r in l.split(\":\")]\n", | |
" cur_lb[i] = v\n", | |
" else:\n", | |
" lb.append(cur_lb)\n", | |
" cur_lb = {}\n", | |
" \n", | |
" import pandas\n", | |
" cpu_records = pandas.DataFrame.from_records( lb )\n", | |
" return cpu_records" | |
], | |
"language": "python", | |
"metadata": {}, | |
"outputs": [], | |
"prompt_number": 13 | |
}, | |
{ | |
"cell_type": "code", | |
"collapsed": false, | |
"input": [ | |
"read_cpuinfo(\"gna_cpuinfo\")[[\"processor\", \"physical id\", \"core id\", \"cpu cores\", \"siblings\"]]" | |
], | |
"language": "python", | |
"metadata": {}, | |
"outputs": [ | |
{ | |
"html": [ | |
"<div style=\"max-height:1000px;max-width:1500px;overflow:auto;\">\n", | |
"<table border=\"1\" class=\"dataframe\">\n", | |
" <thead>\n", | |
" <tr style=\"text-align: right;\">\n", | |
" <th></th>\n", | |
" <th>processor</th>\n", | |
" <th>physical id</th>\n", | |
" <th>core id</th>\n", | |
" <th>cpu cores</th>\n", | |
" <th>siblings</th>\n", | |
" </tr>\n", | |
" </thead>\n", | |
" <tbody>\n", | |
" <tr>\n", | |
" <th>0 </th>\n", | |
" <td> 0</td>\n", | |
" <td> 0</td>\n", | |
" <td> 0</td>\n", | |
" <td> 8</td>\n", | |
" <td> 16</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>1 </th>\n", | |
" <td> 1</td>\n", | |
" <td> 0</td>\n", | |
" <td> 1</td>\n", | |
" <td> 8</td>\n", | |
" <td> 16</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>2 </th>\n", | |
" <td> 2</td>\n", | |
" <td> 0</td>\n", | |
" <td> 2</td>\n", | |
" <td> 8</td>\n", | |
" <td> 16</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>3 </th>\n", | |
" <td> 3</td>\n", | |
" <td> 0</td>\n", | |
" <td> 3</td>\n", | |
" <td> 8</td>\n", | |
" <td> 16</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>4 </th>\n", | |
" <td> 4</td>\n", | |
" <td> 0</td>\n", | |
" <td> 4</td>\n", | |
" <td> 8</td>\n", | |
" <td> 16</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>5 </th>\n", | |
" <td> 5</td>\n", | |
" <td> 0</td>\n", | |
" <td> 5</td>\n", | |
" <td> 8</td>\n", | |
" <td> 16</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>6 </th>\n", | |
" <td> 6</td>\n", | |
" <td> 0</td>\n", | |
" <td> 6</td>\n", | |
" <td> 8</td>\n", | |
" <td> 16</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>7 </th>\n", | |
" <td> 7</td>\n", | |
" <td> 0</td>\n", | |
" <td> 7</td>\n", | |
" <td> 8</td>\n", | |
" <td> 16</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>8 </th>\n", | |
" <td> 8</td>\n", | |
" <td> 0</td>\n", | |
" <td> 0</td>\n", | |
" <td> 8</td>\n", | |
" <td> 16</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>9 </th>\n", | |
" <td> 9</td>\n", | |
" <td> 0</td>\n", | |
" <td> 1</td>\n", | |
" <td> 8</td>\n", | |
" <td> 16</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>10</th>\n", | |
" <td> 10</td>\n", | |
" <td> 0</td>\n", | |
" <td> 2</td>\n", | |
" <td> 8</td>\n", | |
" <td> 16</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>11</th>\n", | |
" <td> 11</td>\n", | |
" <td> 0</td>\n", | |
" <td> 3</td>\n", | |
" <td> 8</td>\n", | |
" <td> 16</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>12</th>\n", | |
" <td> 12</td>\n", | |
" <td> 0</td>\n", | |
" <td> 4</td>\n", | |
" <td> 8</td>\n", | |
" <td> 16</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>13</th>\n", | |
" <td> 13</td>\n", | |
" <td> 0</td>\n", | |
" <td> 5</td>\n", | |
" <td> 8</td>\n", | |
" <td> 16</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>14</th>\n", | |
" <td> 14</td>\n", | |
" <td> 0</td>\n", | |
" <td> 6</td>\n", | |
" <td> 8</td>\n", | |
" <td> 16</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>15</th>\n", | |
" <td> 15</td>\n", | |
" <td> 0</td>\n", | |
" <td> 7</td>\n", | |
" <td> 8</td>\n", | |
" <td> 16</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>16</th>\n", | |
" <td> 16</td>\n", | |
" <td> 1</td>\n", | |
" <td> 0</td>\n", | |
" <td> 8</td>\n", | |
" <td> 16</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>17</th>\n", | |
" <td> 17</td>\n", | |
" <td> 1</td>\n", | |
" <td> 1</td>\n", | |
" <td> 8</td>\n", | |
" <td> 16</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>18</th>\n", | |
" <td> 18</td>\n", | |
" <td> 1</td>\n", | |
" <td> 2</td>\n", | |
" <td> 8</td>\n", | |
" <td> 16</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>19</th>\n", | |
" <td> 19</td>\n", | |
" <td> 1</td>\n", | |
" <td> 3</td>\n", | |
" <td> 8</td>\n", | |
" <td> 16</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>20</th>\n", | |
" <td> 20</td>\n", | |
" <td> 1</td>\n", | |
" <td> 4</td>\n", | |
" <td> 8</td>\n", | |
" <td> 16</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>21</th>\n", | |
" <td> 21</td>\n", | |
" <td> 1</td>\n", | |
" <td> 5</td>\n", | |
" <td> 8</td>\n", | |
" <td> 16</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>22</th>\n", | |
" <td> 22</td>\n", | |
" <td> 1</td>\n", | |
" <td> 6</td>\n", | |
" <td> 8</td>\n", | |
" <td> 16</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>23</th>\n", | |
" <td> 23</td>\n", | |
" <td> 1</td>\n", | |
" <td> 7</td>\n", | |
" <td> 8</td>\n", | |
" <td> 16</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>24</th>\n", | |
" <td> 24</td>\n", | |
" <td> 1</td>\n", | |
" <td> 0</td>\n", | |
" <td> 8</td>\n", | |
" <td> 16</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>25</th>\n", | |
" <td> 25</td>\n", | |
" <td> 1</td>\n", | |
" <td> 1</td>\n", | |
" <td> 8</td>\n", | |
" <td> 16</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>26</th>\n", | |
" <td> 26</td>\n", | |
" <td> 1</td>\n", | |
" <td> 2</td>\n", | |
" <td> 8</td>\n", | |
" <td> 16</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>27</th>\n", | |
" <td> 27</td>\n", | |
" <td> 1</td>\n", | |
" <td> 3</td>\n", | |
" <td> 8</td>\n", | |
" <td> 16</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>28</th>\n", | |
" <td> 28</td>\n", | |
" <td> 1</td>\n", | |
" <td> 4</td>\n", | |
" <td> 8</td>\n", | |
" <td> 16</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>29</th>\n", | |
" <td> 29</td>\n", | |
" <td> 1</td>\n", | |
" <td> 5</td>\n", | |
" <td> 8</td>\n", | |
" <td> 16</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>30</th>\n", | |
" <td> 30</td>\n", | |
" <td> 1</td>\n", | |
" <td> 6</td>\n", | |
" <td> 8</td>\n", | |
" <td> 16</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>31</th>\n", | |
" <td> 31</td>\n", | |
" <td> 1</td>\n", | |
" <td> 7</td>\n", | |
" <td> 8</td>\n", | |
" <td> 16</td>\n", | |
" </tr>\n", | |
" </tbody>\n", | |
"</table>\n", | |
"<p>32 rows \u00d7 5 columns</p>\n", | |
"</div>" | |
], | |
"metadata": {}, | |
"output_type": "pyout", | |
"prompt_number": 15, | |
"text": [ | |
" processor physical id core id cpu cores siblings\n", | |
"0 0 0 0 8 16\n", | |
"1 1 0 1 8 16\n", | |
"2 2 0 2 8 16\n", | |
"3 3 0 3 8 16\n", | |
"4 4 0 4 8 16\n", | |
"5 5 0 5 8 16\n", | |
"6 6 0 6 8 16\n", | |
"7 7 0 7 8 16\n", | |
"8 8 0 0 8 16\n", | |
"9 9 0 1 8 16\n", | |
"10 10 0 2 8 16\n", | |
"11 11 0 3 8 16\n", | |
"12 12 0 4 8 16\n", | |
"13 13 0 5 8 16\n", | |
"14 14 0 6 8 16\n", | |
"15 15 0 7 8 16\n", | |
"16 16 1 0 8 16\n", | |
"17 17 1 1 8 16\n", | |
"18 18 1 2 8 16\n", | |
"19 19 1 3 8 16\n", | |
"20 20 1 4 8 16\n", | |
"21 21 1 5 8 16\n", | |
"22 22 1 6 8 16\n", | |
"23 23 1 7 8 16\n", | |
"24 24 1 0 8 16\n", | |
"25 25 1 1 8 16\n", | |
"26 26 1 2 8 16\n", | |
"27 27 1 3 8 16\n", | |
"28 28 1 4 8 16\n", | |
"29 29 1 5 8 16\n", | |
"30 30 1 6 8 16\n", | |
"31 31 1 7 8 16\n", | |
"\n", | |
"[32 rows x 5 columns]" | |
] | |
} | |
], | |
"prompt_number": 15 | |
}, | |
{ | |
"cell_type": "code", | |
"collapsed": false, | |
"input": [ | |
"read_cpuinfo(\"dig_cpuinfo\")[[\"processor\", \"physical id\", \"core id\", \"cpu cores\", \"siblings\"]]" | |
], | |
"language": "python", | |
"metadata": {}, | |
"outputs": [ | |
{ | |
"html": [ | |
"<div style=\"max-height:1000px;max-width:1500px;overflow:auto;\">\n", | |
"<table border=\"1\" class=\"dataframe\">\n", | |
" <thead>\n", | |
" <tr style=\"text-align: right;\">\n", | |
" <th></th>\n", | |
" <th>processor</th>\n", | |
" <th>physical id</th>\n", | |
" <th>core id</th>\n", | |
" <th>cpu cores</th>\n", | |
" <th>siblings</th>\n", | |
" </tr>\n", | |
" </thead>\n", | |
" <tbody>\n", | |
" <tr>\n", | |
" <th>0 </th>\n", | |
" <td> 0</td>\n", | |
" <td> 0</td>\n", | |
" <td> 0</td>\n", | |
" <td> 10</td>\n", | |
" <td> 20</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>1 </th>\n", | |
" <td> 1</td>\n", | |
" <td> 1</td>\n", | |
" <td> 0</td>\n", | |
" <td> 10</td>\n", | |
" <td> 20</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>2 </th>\n", | |
" <td> 2</td>\n", | |
" <td> 0</td>\n", | |
" <td> 1</td>\n", | |
" <td> 10</td>\n", | |
" <td> 20</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>3 </th>\n", | |
" <td> 3</td>\n", | |
" <td> 1</td>\n", | |
" <td> 1</td>\n", | |
" <td> 10</td>\n", | |
" <td> 20</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>4 </th>\n", | |
" <td> 4</td>\n", | |
" <td> 0</td>\n", | |
" <td> 2</td>\n", | |
" <td> 10</td>\n", | |
" <td> 20</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>5 </th>\n", | |
" <td> 5</td>\n", | |
" <td> 1</td>\n", | |
" <td> 2</td>\n", | |
" <td> 10</td>\n", | |
" <td> 20</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>6 </th>\n", | |
" <td> 6</td>\n", | |
" <td> 0</td>\n", | |
" <td> 8</td>\n", | |
" <td> 10</td>\n", | |
" <td> 20</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>7 </th>\n", | |
" <td> 7</td>\n", | |
" <td> 1</td>\n", | |
" <td> 8</td>\n", | |
" <td> 10</td>\n", | |
" <td> 20</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>8 </th>\n", | |
" <td> 8</td>\n", | |
" <td> 0</td>\n", | |
" <td> 9</td>\n", | |
" <td> 10</td>\n", | |
" <td> 20</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>9 </th>\n", | |
" <td> 9</td>\n", | |
" <td> 1</td>\n", | |
" <td> 9</td>\n", | |
" <td> 10</td>\n", | |
" <td> 20</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>10</th>\n", | |
" <td> 10</td>\n", | |
" <td> 0</td>\n", | |
" <td> 16</td>\n", | |
" <td> 10</td>\n", | |
" <td> 20</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>11</th>\n", | |
" <td> 11</td>\n", | |
" <td> 1</td>\n", | |
" <td> 16</td>\n", | |
" <td> 10</td>\n", | |
" <td> 20</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>12</th>\n", | |
" <td> 12</td>\n", | |
" <td> 0</td>\n", | |
" <td> 17</td>\n", | |
" <td> 10</td>\n", | |
" <td> 20</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>13</th>\n", | |
" <td> 13</td>\n", | |
" <td> 1</td>\n", | |
" <td> 17</td>\n", | |
" <td> 10</td>\n", | |
" <td> 20</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>14</th>\n", | |
" <td> 14</td>\n", | |
" <td> 0</td>\n", | |
" <td> 18</td>\n", | |
" <td> 10</td>\n", | |
" <td> 20</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>15</th>\n", | |
" <td> 15</td>\n", | |
" <td> 1</td>\n", | |
" <td> 18</td>\n", | |
" <td> 10</td>\n", | |
" <td> 20</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>16</th>\n", | |
" <td> 16</td>\n", | |
" <td> 0</td>\n", | |
" <td> 24</td>\n", | |
" <td> 10</td>\n", | |
" <td> 20</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>17</th>\n", | |
" <td> 17</td>\n", | |
" <td> 1</td>\n", | |
" <td> 24</td>\n", | |
" <td> 10</td>\n", | |
" <td> 20</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>18</th>\n", | |
" <td> 18</td>\n", | |
" <td> 0</td>\n", | |
" <td> 25</td>\n", | |
" <td> 10</td>\n", | |
" <td> 20</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>19</th>\n", | |
" <td> 19</td>\n", | |
" <td> 1</td>\n", | |
" <td> 25</td>\n", | |
" <td> 10</td>\n", | |
" <td> 20</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>20</th>\n", | |
" <td> 20</td>\n", | |
" <td> 0</td>\n", | |
" <td> 0</td>\n", | |
" <td> 10</td>\n", | |
" <td> 20</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>21</th>\n", | |
" <td> 21</td>\n", | |
" <td> 1</td>\n", | |
" <td> 0</td>\n", | |
" <td> 10</td>\n", | |
" <td> 20</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>22</th>\n", | |
" <td> 22</td>\n", | |
" <td> 0</td>\n", | |
" <td> 1</td>\n", | |
" <td> 10</td>\n", | |
" <td> 20</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>23</th>\n", | |
" <td> 23</td>\n", | |
" <td> 1</td>\n", | |
" <td> 1</td>\n", | |
" <td> 10</td>\n", | |
" <td> 20</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>24</th>\n", | |
" <td> 24</td>\n", | |
" <td> 0</td>\n", | |
" <td> 2</td>\n", | |
" <td> 10</td>\n", | |
" <td> 20</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>25</th>\n", | |
" <td> 25</td>\n", | |
" <td> 1</td>\n", | |
" <td> 2</td>\n", | |
" <td> 10</td>\n", | |
" <td> 20</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>26</th>\n", | |
" <td> 26</td>\n", | |
" <td> 0</td>\n", | |
" <td> 8</td>\n", | |
" <td> 10</td>\n", | |
" <td> 20</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>27</th>\n", | |
" <td> 27</td>\n", | |
" <td> 1</td>\n", | |
" <td> 8</td>\n", | |
" <td> 10</td>\n", | |
" <td> 20</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>28</th>\n", | |
" <td> 28</td>\n", | |
" <td> 0</td>\n", | |
" <td> 9</td>\n", | |
" <td> 10</td>\n", | |
" <td> 20</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>29</th>\n", | |
" <td> 29</td>\n", | |
" <td> 1</td>\n", | |
" <td> 9</td>\n", | |
" <td> 10</td>\n", | |
" <td> 20</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>30</th>\n", | |
" <td> 30</td>\n", | |
" <td> 0</td>\n", | |
" <td> 16</td>\n", | |
" <td> 10</td>\n", | |
" <td> 20</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>31</th>\n", | |
" <td> 31</td>\n", | |
" <td> 1</td>\n", | |
" <td> 16</td>\n", | |
" <td> 10</td>\n", | |
" <td> 20</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>32</th>\n", | |
" <td> 32</td>\n", | |
" <td> 0</td>\n", | |
" <td> 17</td>\n", | |
" <td> 10</td>\n", | |
" <td> 20</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>33</th>\n", | |
" <td> 33</td>\n", | |
" <td> 1</td>\n", | |
" <td> 17</td>\n", | |
" <td> 10</td>\n", | |
" <td> 20</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>34</th>\n", | |
" <td> 34</td>\n", | |
" <td> 0</td>\n", | |
" <td> 18</td>\n", | |
" <td> 10</td>\n", | |
" <td> 20</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>35</th>\n", | |
" <td> 35</td>\n", | |
" <td> 1</td>\n", | |
" <td> 18</td>\n", | |
" <td> 10</td>\n", | |
" <td> 20</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>36</th>\n", | |
" <td> 36</td>\n", | |
" <td> 0</td>\n", | |
" <td> 24</td>\n", | |
" <td> 10</td>\n", | |
" <td> 20</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>37</th>\n", | |
" <td> 37</td>\n", | |
" <td> 1</td>\n", | |
" <td> 24</td>\n", | |
" <td> 10</td>\n", | |
" <td> 20</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>38</th>\n", | |
" <td> 38</td>\n", | |
" <td> 0</td>\n", | |
" <td> 25</td>\n", | |
" <td> 10</td>\n", | |
" <td> 20</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>39</th>\n", | |
" <td> 39</td>\n", | |
" <td> 1</td>\n", | |
" <td> 25</td>\n", | |
" <td> 10</td>\n", | |
" <td> 20</td>\n", | |
" </tr>\n", | |
" </tbody>\n", | |
"</table>\n", | |
"<p>40 rows \u00d7 5 columns</p>\n", | |
"</div>" | |
], | |
"metadata": {}, | |
"output_type": "pyout", | |
"prompt_number": 16, | |
"text": [ | |
" processor physical id core id cpu cores siblings\n", | |
"0 0 0 0 10 20\n", | |
"1 1 1 0 10 20\n", | |
"2 2 0 1 10 20\n", | |
"3 3 1 1 10 20\n", | |
"4 4 0 2 10 20\n", | |
"5 5 1 2 10 20\n", | |
"6 6 0 8 10 20\n", | |
"7 7 1 8 10 20\n", | |
"8 8 0 9 10 20\n", | |
"9 9 1 9 10 20\n", | |
"10 10 0 16 10 20\n", | |
"11 11 1 16 10 20\n", | |
"12 12 0 17 10 20\n", | |
"13 13 1 17 10 20\n", | |
"14 14 0 18 10 20\n", | |
"15 15 1 18 10 20\n", | |
"16 16 0 24 10 20\n", | |
"17 17 1 24 10 20\n", | |
"18 18 0 25 10 20\n", | |
"19 19 1 25 10 20\n", | |
"20 20 0 0 10 20\n", | |
"21 21 1 0 10 20\n", | |
"22 22 0 1 10 20\n", | |
"23 23 1 1 10 20\n", | |
"24 24 0 2 10 20\n", | |
"25 25 1 2 10 20\n", | |
"26 26 0 8 10 20\n", | |
"27 27 1 8 10 20\n", | |
"28 28 0 9 10 20\n", | |
"29 29 1 9 10 20\n", | |
"30 30 0 16 10 20\n", | |
"31 31 1 16 10 20\n", | |
"32 32 0 17 10 20\n", | |
"33 33 1 17 10 20\n", | |
"34 34 0 18 10 20\n", | |
"35 35 1 18 10 20\n", | |
"36 36 0 24 10 20\n", | |
"37 37 1 24 10 20\n", | |
"38 38 0 25 10 20\n", | |
"39 39 1 25 10 20\n", | |
"\n", | |
"[40 rows x 5 columns]" | |
] | |
} | |
], | |
"prompt_number": 16 | |
}, | |
{ | |
"cell_type": "code", | |
"collapsed": false, | |
"input": [ | |
"cat dig_cpuinfo" | |
], | |
"language": "python", | |
"metadata": {}, | |
"outputs": [ | |
{ | |
"output_type": "stream", | |
"stream": "stdout", | |
"text": [ | |
"processor\t: 0\r\n", | |
"vendor_id\t: GenuineIntel\r\n", | |
"cpu family\t: 6\r\n", | |
"model\t\t: 47\r\n", | |
"model name\t: Intel(R) Xeon(R) CPU E7- 2850 @ 2.00GHz\r\n", | |
"stepping\t: 2\r\n", | |
"cpu MHz\t\t: 1995.032\r\n", | |
"cache size\t: 24576 KB\r\n", | |
"physical id\t: 0\r\n", | |
"siblings\t: 20\r\n", | |
"core id\t\t: 0\r\n", | |
"cpu cores\t: 10\r\n", | |
"apicid\t\t: 0\r\n", | |
"initial apicid\t: 0\r\n", | |
"fpu\t\t: yes\r\n", | |
"fpu_exception\t: yes\r\n", | |
"cpuid level\t: 11\r\n", | |
"wp\t\t: yes\r\n", | |
"flags\t\t: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm 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 aes lahf_lm ida arat dts tpr_shadow vnmi flexpriority ept vpid\r\n", | |
"bogomips\t: 3990.06\r\n", | |
"clflush size\t: 64\r\n", | |
"cache_alignment\t: 64\r\n", | |
"address sizes\t: 44 bits physical, 48 bits virtual\r\n", | |
"power management:\r\n", | |
"\r\n", | |
"processor\t: 1\r\n", | |
"vendor_id\t: GenuineIntel\r\n", | |
"cpu family\t: 6\r\n", | |
"model\t\t: 47\r\n", | |
"model name\t: Intel(R) Xeon(R) CPU E7- 2850 @ 2.00GHz\r\n", | |
"stepping\t: 2\r\n", | |
"cpu MHz\t\t: 1995.032\r\n", | |
"cache size\t: 24576 KB\r\n", | |
"physical id\t: 1\r\n", | |
"siblings\t: 20\r\n", | |
"core id\t\t: 0\r\n", | |
"cpu cores\t: 10\r\n", | |
"apicid\t\t: 64\r\n", | |
"initial apicid\t: 64\r\n", | |
"fpu\t\t: yes\r\n", | |
"fpu_exception\t: yes\r\n", | |
"cpuid level\t: 11\r\n", | |
"wp\t\t: yes\r\n", | |
"flags\t\t: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm 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 aes lahf_lm ida arat dts tpr_shadow vnmi flexpriority ept vpid\r\n", | |
"bogomips\t: 3989.85\r\n", | |
"clflush size\t: 64\r\n", | |
"cache_alignment\t: 64\r\n", | |
"address sizes\t: 44 bits physical, 48 bits virtual\r\n", | |
"power management:\r\n", | |
"\r\n", | |
"processor\t: 2\r\n", | |
"vendor_id\t: GenuineIntel\r\n", | |
"cpu family\t: 6\r\n", | |
"model\t\t: 47\r\n", | |
"model name\t: Intel(R) Xeon(R) CPU E7- 2850 @ 2.00GHz\r\n", | |
"stepping\t: 2\r\n", | |
"cpu MHz\t\t: 1995.032\r\n", | |
"cache size\t: 24576 KB\r\n", | |
"physical id\t: 0\r\n", | |
"siblings\t: 20\r\n", | |
"core id\t\t: 1\r\n", | |
"cpu cores\t: 10\r\n", | |
"apicid\t\t: 2\r\n", | |
"initial apicid\t: 2\r\n", | |
"fpu\t\t: yes\r\n", | |
"fpu_exception\t: yes\r\n", | |
"cpuid level\t: 11\r\n", | |
"wp\t\t: yes\r\n", | |
"flags\t\t: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm 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 aes lahf_lm ida arat dts tpr_shadow vnmi flexpriority ept vpid\r\n", | |
"bogomips\t: 3990.06\r\n", | |
"clflush size\t: 64\r\n", | |
"cache_alignment\t: 64\r\n", | |
"address sizes\t: 44 bits physical, 48 bits virtual\r\n", | |
"power management:\r\n", | |
"\r\n", | |
"processor\t: 3\r\n", | |
"vendor_id\t: GenuineIntel\r\n", | |
"cpu family\t: 6\r\n", | |
"model\t\t: 47\r\n", | |
"model name\t: Intel(R) Xeon(R) CPU E7- 2850 @ 2.00GHz\r\n", | |
"stepping\t: 2\r\n", | |
"cpu MHz\t\t: 1995.032\r\n", | |
"cache size\t: 24576 KB\r\n", | |
"physical id\t: 1\r\n", | |
"siblings\t: 20\r\n", | |
"core id\t\t: 1\r\n", | |
"cpu cores\t: 10\r\n", | |
"apicid\t\t: 66\r\n", | |
"initial apicid\t: 66\r\n", | |
"fpu\t\t: yes\r\n", | |
"fpu_exception\t: yes\r\n", | |
"cpuid level\t: 11\r\n", | |
"wp\t\t: yes\r\n", | |
"flags\t\t: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 c" | |
] | |
}, | |
{ | |
"output_type": "stream", | |
"stream": "stdout", | |
"text": [ | |
"lflush 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 aes lahf_lm ida arat dts tpr_shadow vnmi flexpriority ept vpid\r\n", | |
"bogomips\t: 3989.85\r\n", | |
"clflush size\t: 64\r\n", | |
"cache_alignment\t: 64\r\n", | |
"address sizes\t: 44 bits physical, 48 bits virtual\r\n", | |
"power management:\r\n", | |
"\r\n", | |
"processor\t: 4\r\n", | |
"vendor_id\t: GenuineIntel\r\n", | |
"cpu family\t: 6\r\n", | |
"model\t\t: 47\r\n", | |
"model name\t: Intel(R) Xeon(R) CPU E7- 2850 @ 2.00GHz\r\n", | |
"stepping\t: 2\r\n", | |
"cpu MHz\t\t: 1995.032\r\n", | |
"cache size\t: 24576 KB\r\n", | |
"physical id\t: 0\r\n", | |
"siblings\t: 20\r\n", | |
"core id\t\t: 2\r\n", | |
"cpu cores\t: 10\r\n", | |
"apicid\t\t: 4\r\n", | |
"initial apicid\t: 4\r\n", | |
"fpu\t\t: yes\r\n", | |
"fpu_exception\t: yes\r\n", | |
"cpuid level\t: 11\r\n", | |
"wp\t\t: yes\r\n", | |
"flags\t\t: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm 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 aes lahf_lm ida arat dts tpr_shadow vnmi flexpriority ept vpid\r\n", | |
"bogomips\t: 3990.06\r\n", | |
"clflush size\t: 64\r\n", | |
"cache_alignment\t: 64\r\n", | |
"address sizes\t: 44 bits physical, 48 bits virtual\r\n", | |
"power management:\r\n", | |
"\r\n", | |
"processor\t: 5\r\n", | |
"vendor_id\t: GenuineIntel\r\n", | |
"cpu family\t: 6\r\n", | |
"model\t\t: 47\r\n", | |
"model name\t: Intel(R) Xeon(R) CPU E7- 2850 @ 2.00GHz\r\n", | |
"stepping\t: 2\r\n", | |
"cpu MHz\t\t: 1995.032\r\n", | |
"cache size\t: 24576 KB\r\n", | |
"physical id\t: 1\r\n", | |
"siblings\t: 20\r\n", | |
"core id\t\t: 2\r\n", | |
"cpu cores\t: 10\r\n", | |
"apicid\t\t: 68\r\n", | |
"initial apicid\t: 68\r\n", | |
"fpu\t\t: yes\r\n", | |
"fpu_exception\t: yes\r\n", | |
"cpuid level\t: 11\r\n", | |
"wp\t\t: yes\r\n", | |
"flags\t\t: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm 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 aes lahf_lm ida arat dts tpr_shadow vnmi flexpriority ept vpid\r\n", | |
"bogomips\t: 3989.85\r\n", | |
"clflush size\t: 64\r\n", | |
"cache_alignment\t: 64\r\n", | |
"address sizes\t: 44 bits physical, 48 bits virtual\r\n", | |
"power management:\r\n", | |
"\r\n", | |
"processor\t: 6\r\n", | |
"vendor_id\t: GenuineIntel\r\n", | |
"cpu family\t: 6\r\n", | |
"model\t\t: 47\r\n", | |
"model name\t: Intel(R) Xeon(R) CPU E7- 2850 @ 2.00GHz\r\n", | |
"stepping\t: 2\r\n", | |
"cpu MHz\t\t: 1995.032\r\n", | |
"cache size\t: 24576 KB\r\n", | |
"physical id\t: 0\r\n", | |
"siblings\t: 20\r\n", | |
"core id\t\t: 8\r\n", | |
"cpu cores\t: 10\r\n", | |
"apicid\t\t: 16\r\n", | |
"initial apicid\t: 16\r\n", | |
"fpu\t\t: yes\r\n", | |
"fpu_exception\t: yes\r\n", | |
"cpuid level\t: 11\r\n", | |
"wp\t\t: yes\r\n", | |
"flags\t\t: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm 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 aes lahf_lm ida arat dts tpr_shadow vnmi flexpriority ept vpid\r\n", | |
"bogomips\t: 3990.06\r\n", | |
"clflush size\t: 64\r\n", | |
"cache_alignment\t: 64\r\n", | |
"address sizes\t: 44 bits physical, 48 bits virtual\r\n", | |
"power management:\r\n", | |
"\r\n", | |
"processor\t: 7\r\n", | |
"vendor_id\t: GenuineIntel\r\n", | |
"cpu family\t: 6\r\n", | |
"model\t\t: 47\r\n", | |
"model name\t: Intel(R) Xeon(R) CPU E7- 2850 @ 2.00GHz\r\n", | |
"stepping\t: 2\r\n", | |
"cpu MHz\t\t: 1995.032\r\n", | |
"cache size\t: 24576 KB\r\n", | |
"physical id\t: 1\r\n", | |
"siblings\t: 20\r\n", | |
"core id\t\t: 8\r\n", | |
"cpu cores\t: 10\r\n", | |
"apicid\t\t: 80\r\n", | |
"initial apicid\t: 80\r\n", | |
"fpu\t\t: yes\r\n", | |
"fpu_exception\t: yes\r\n", | |
"cpuid level\t: 11\r\n", | |
"wp\t\t: yes\r\n", | |
"flags\t\t: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm 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 aes lahf_lm ida arat dts tpr_shadow vnmi flexpriority ept vpid\r\n", | |
"bogomips\t: 3989.85\r\n", | |
"clflush size\t: 64\r\n", | |
"cache_alignment\t: 64\r\n", | |
"address sizes\t: 44 bits physical, 48 bits virtual\r\n", | |
"power management:\r\n", | |
"\r\n", | |
"processor\t: 8\r\n", | |
"vendor_id\t: GenuineIntel\r\n", | |
"cpu family\t: 6\r\n", | |
"model\t\t: 47\r\n", | |
"model name\t: Intel(R) Xeon(R) CPU E7- 2850 @ 2.00GHz\r\n", | |
"stepping\t: 2\r\n", | |
"cpu MHz\t\t: 1995.032\r\n", | |
"cache size\t: 24576 KB\r\n", | |
"physical id\t: 0\r\n", | |
"siblings\t: 20\r\n", | |
"core id\t\t: 9\r\n", | |
"cpu cores\t: 10\r\n", | |
"apicid\t\t: 18\r\n", | |
"initial apicid\t: 18\r\n", | |
"fpu\t\t: yes\r\n", | |
"fpu_exception\t: yes\r\n", | |
"cpuid level\t: 11\r\n", | |
"wp\t\t: yes\r\n", | |
"flags\t\t: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm 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 aes lahf_lm ida arat dts tpr_shadow vnmi flexpriority ept vpid\r\n", | |
"bogomips\t: 3990.06\r\n", | |
"clflush size\t: 64\r\n", | |
"cache_alignment\t: 64\r\n", | |
"address sizes\t: 44 bits physical, 48 bits virtual\r\n", | |
"power management:\r\n", | |
"\r\n", | |
"processor\t: 9\r\n", | |
"vendor_id\t: GenuineIntel\r\n", | |
"cpu family\t: 6\r\n", | |
"model\t\t: 47\r\n", | |
"model name\t: Intel(R) Xeon(R) CPU E7- 2850 @ 2.00GHz\r\n", | |
"stepping\t: 2\r\n", | |
"cpu MHz\t\t: 1995.032\r\n", | |
"cache size\t: 24576 KB\r\n", | |
"physical id\t: 1\r\n", | |
"siblings\t: 20\r\n", | |
"core id\t\t: 9\r\n", | |
"cpu cores\t: 10\r\n", | |
"apicid\t\t: 82\r\n", | |
"initial apicid\t: 82\r\n", | |
"fpu\t\t: yes\r\n", | |
"fpu_exception\t: yes\r\n", | |
"cpuid level\t: 11\r\n", | |
"wp\t\t: yes\r\n", | |
"flags\t\t: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm 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 aes lahf_lm ida arat dts tpr_shadow vnmi flexpriority ept vpid\r\n", | |
"bogomips\t: 3989.85\r\n", | |
"clflush size\t: 64\r\n", | |
"cache_alignment\t: 64\r\n", | |
"address sizes\t: 44 bits physical, 48 bits virtual\r\n", | |
"power management:\r\n", | |
"\r\n", | |
"processor\t: 10\r\n", | |
"vendor_id\t: GenuineIntel\r\n", | |
"cpu family\t: 6\r\n", | |
"model\t\t: 47\r\n", | |
"model name\t: Intel(R) Xeon(R) CPU E7- 2850 @ 2.00GHz\r\n", | |
"stepping\t: 2\r\n", | |
"cpu MHz\t\t: 1995.032\r\n", | |
"cache size\t: 24576 KB\r\n", | |
"physical id\t: 0\r\n", | |
"siblings\t: 20\r\n", | |
"core id\t\t: 16\r\n", | |
"cpu cores\t: 10\r\n", | |
"apicid\t\t: 32\r\n", | |
"initial apicid\t: 32\r\n", | |
"fpu\t\t: yes\r\n", | |
"fpu_exception\t: yes\r\n", | |
"cpuid level\t: 11\r\n", | |
"wp\t\t: yes\r\n", | |
"flags\t\t: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm 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 aes lahf_lm ida arat dts tpr_shadow vnmi flexpriority ept vpid\r\n", | |
"bogomips\t: 3990.06\r\n", | |
"clflush size\t: 64\r\n", | |
"cache_alignment\t: 64\r\n", | |
"address sizes\t: 44 bits physical, 48 bits virtual\r\n", | |
"power management:\r\n", | |
"\r\n", | |
"processor\t: 11\r\n", | |
"vendor_id\t: GenuineIntel\r\n", | |
"cpu family\t: 6\r\n", | |
"model\t\t: 47\r\n", | |
"model name\t: Intel(R) Xeon(R) CPU E7- 2850 @ 2.00GHz\r\n", | |
"stepping\t: 2\r\n", | |
"cpu MHz\t\t: 1995.032\r\n", | |
"cache size\t: 24576 KB\r\n", | |
"physical id\t: 1\r\n", | |
"siblings\t: 20\r\n", | |
"core id\t\t: 16\r\n", | |
"cpu cores\t: 10\r\n", | |
"apicid\t\t: 96\r\n", | |
"initial apicid\t: 96\r\n", | |
"fpu\t\t: yes\r\n", | |
"fpu_exception\t: yes\r\n", | |
"cpuid level\t: 11\r\n", | |
"wp\t\t: yes\r\n", | |
"flags\t\t: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm 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 aes lahf_lm ida arat dts tpr_shadow vnmi flexpriority ept vpid\r\n", | |
"bogomips\t: 3989.85\r\n", | |
"clflush size\t: 64\r\n", | |
"cache_alignment\t: 64\r\n", | |
"address sizes\t: 44 bits physical, 48 bits virtual\r\n", | |
"power management:\r\n", | |
"\r\n", | |
"processor\t: 12\r\n", | |
"vendor_id\t: GenuineIntel\r\n", | |
"cpu family\t: 6\r\n", | |
"model\t\t: 47\r\n", | |
"model name\t: Intel(R) Xeon(R) CPU E7- 2850 @ 2.00GHz\r\n", | |
"stepping\t: 2\r\n", | |
"cpu MHz\t\t: 1995.032\r\n", | |
"cache size\t: 24576 KB\r\n", | |
"physical id\t: 0\r\n", | |
"siblings\t: 20\r\n", | |
"core id\t\t: 17\r\n", | |
"cpu cores\t: 10\r\n", | |
"apicid\t\t: 34\r\n", | |
"initial apicid\t: 34\r\n", | |
"fpu\t\t: yes\r\n", | |
"fpu_exception\t: yes\r\n", | |
"cpuid level\t: 11\r\n", | |
"wp\t\t: yes\r\n", | |
"flags\t\t: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm 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 aes lahf_lm ida arat dts tpr_shadow vnmi flexpriority ept vpid\r\n", | |
"bogomips\t: 3990.06\r\n", | |
"clflush size\t: 64\r\n", | |
"cache_alignment\t: 64\r\n", | |
"address sizes\t: 44 bits physical, 48 bits virtual\r\n", | |
"power management:\r\n", | |
"\r\n", | |
"processor\t: 13\r\n", | |
"vendor_id\t: GenuineIntel\r\n", | |
"cpu family\t: 6\r\n", | |
"model\t\t: 47\r\n", | |
"model name\t: Intel(R) Xeon(R) CPU E7- 2850 @ 2.00GHz\r\n", | |
"stepping\t: 2\r\n", | |
"cpu MHz\t\t: 1995.032\r\n", | |
"cache size\t: 24576 KB\r\n", | |
"physical id\t: 1\r\n", | |
"siblings\t: 20\r\n", | |
"core id\t\t: 17\r\n", | |
"cpu cores\t: 10\r\n", | |
"apicid\t\t: 98\r\n", | |
"initial apicid\t: 98\r\n", | |
"fpu\t\t: yes\r\n", | |
"fpu_exception\t: yes\r\n", | |
"cpuid level\t: 11\r\n", | |
"wp\t\t: yes\r\n", | |
"flags\t\t: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm 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 aes lahf_lm ida arat dts tpr_shadow vnmi flexpriority ept vpid\r\n", | |
"bogomips\t: 3989.85\r\n", | |
"clflush size\t: 64\r\n", | |
"cache_alignment\t: 64\r\n", | |
"address sizes\t: 44 bits physical, 48 bits virtual\r\n", | |
"power management:\r\n", | |
"\r\n", | |
"processor\t: 14\r\n", | |
"vendor_id\t: GenuineIntel\r\n", | |
"cpu family\t: 6\r\n", | |
"model\t\t: 47\r\n", | |
"model name\t: Intel(R) Xeon(R) CPU E7- 2850 @ 2.00GHz\r\n", | |
"stepping\t: 2\r\n", | |
"cpu MHz\t\t: 1995.032\r\n", | |
"cache size\t: 24576 KB\r\n", | |
"physical id\t: 0\r\n", | |
"siblings\t: 20\r\n", | |
"core id\t\t: 18\r\n", | |
"cpu cores\t: 10\r\n", | |
"apicid\t\t: 36\r\n", | |
"initial apicid\t: 36\r\n", | |
"fpu\t\t: yes\r\n", | |
"fpu_exception\t: yes\r\n", | |
"cpuid level\t: 11\r\n", | |
"wp\t\t: yes\r\n", | |
"flags\t\t: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm 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 aes lahf_lm ida arat dts tpr_shadow vnmi flexpriority ept vpid\r\n", | |
"bogomips\t: 3990.06\r\n", | |
"clflush size\t: 64\r\n", | |
"cache_alignment\t: 64\r\n", | |
"address sizes\t: 44 bits physical, 48 bits virtual\r\n", | |
"power management:\r\n", | |
"\r\n", | |
"processor\t: 15\r\n", | |
"vendor_id\t: GenuineIntel\r\n", | |
"cpu family\t: 6\r\n", | |
"model\t\t: 47\r\n", | |
"model name\t: Intel(R) Xeon(R) CPU E7- 2850 @ 2.00GHz\r\n", | |
"stepping\t: 2\r\n", | |
"cpu MHz\t\t: 1995.032\r\n", | |
"cache size\t: 24576 KB\r\n", | |
"physical id\t: 1\r\n", | |
"siblings\t: 20\r\n", | |
"core id\t\t: 18\r\n", | |
"cpu cores\t: 10\r\n", | |
"apicid\t\t: 100\r\n", | |
"initial apicid\t: 100\r\n", | |
"fpu\t\t: yes\r\n", | |
"fpu_exception\t: yes\r\n", | |
"cpuid level\t: 11\r\n", | |
"wp\t\t: yes\r\n", | |
"flags\t\t: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm 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 aes lahf_lm ida arat dts tpr_shadow vnmi flexpriority ept vpid\r\n", | |
"bogomips\t: 3989.85\r\n", | |
"clflush size\t: 64\r\n", | |
"cache_alignment\t: 64\r\n", | |
"address sizes\t: 44 bits physical, 48 bits virtual\r\n", | |
"power management:\r\n", | |
"\r\n", | |
"processor\t: 16\r\n", | |
"vendor_id\t: GenuineIntel\r\n", | |
"cpu family\t: 6\r\n", | |
"model\t\t: 47\r\n", | |
"model name\t: Intel(R) Xeon(R) CPU E7- 2850 @ 2.00GHz\r\n", | |
"stepping\t: 2\r\n", | |
"cpu MHz\t\t: 1995.032\r\n", | |
"cache size\t: 24576 KB\r\n", | |
"physical id\t: 0\r\n", | |
"siblings\t: 20\r\n", | |
"core id\t\t: 24\r\n", | |
"cpu cores\t: 10\r\n", | |
"apicid\t\t: 48\r\n", | |
"initial apicid\t: 48\r\n", | |
"fpu\t\t: yes\r\n", | |
"fpu_exception\t: yes\r\n", | |
"cpuid level\t: 11\r\n", | |
"wp\t\t: yes\r\n", | |
"flags\t\t: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm 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 aes lahf_lm ida arat dts tpr_shadow vnmi flexpriority ept vpid\r\n", | |
"bogomips\t: 3990.06\r\n", | |
"clflush size\t: 64\r\n", | |
"cache_alignment\t: 64\r\n", | |
"address sizes\t: 44 bits physical, 48 bits virtual\r\n", | |
"power management:\r\n", | |
"\r\n", | |
"processor\t: 17\r\n", | |
"vendor_id\t: GenuineIntel\r\n", | |
"cpu family\t: 6\r\n", | |
"model\t\t: 47\r\n", | |
"model name\t: Intel(R) Xeon(R) CPU E7- 2850 @ 2.00GHz\r\n", | |
"stepping\t: 2\r\n", | |
"cpu MHz\t\t: 1995.032\r\n", | |
"cache size\t: 24576 KB\r\n", | |
"physical id\t: 1\r\n", | |
"siblings\t: 20\r\n", | |
"core id\t\t: 24\r\n", | |
"cpu cores\t: 10\r\n", | |
"apicid\t\t: 112\r\n", | |
"initial apicid\t: 112\r\n", | |
"fpu\t\t: yes\r\n", | |
"fpu_exception\t: yes\r\n", | |
"cpuid level\t: 11\r\n", | |
"wp\t\t: yes\r\n", | |
"flags\t\t: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm 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 aes lahf_lm ida arat dts tpr_shadow vnmi flexpriority ept vpid\r\n", | |
"bogomips\t: 3989.85\r\n", | |
"clflush size\t: 64\r\n", | |
"cache_alignment\t: 64\r\n", | |
"address sizes\t: 44 bits physical, 48 bits virtual\r\n", | |
"power management:\r\n", | |
"\r\n", | |
"processor\t: 18\r\n", | |
"vendor_id\t: GenuineIntel\r\n", | |
"cpu family\t: 6\r\n", | |
"model\t\t: 47\r\n", | |
"model name\t: Intel(R) Xeon(R) CPU E7- 2850 @ 2.00GHz\r\n", | |
"stepping\t: 2\r\n", | |
"cpu MHz\t\t: 1995.032\r\n", | |
"cache size\t: 24576 KB\r\n", | |
"physical id\t: 0\r\n", | |
"siblings\t: 20\r\n", | |
"core id\t\t: 25\r\n", | |
"cpu cores\t: 10\r\n", | |
"apicid\t\t: 50\r\n", | |
"initial apicid\t: 50\r\n", | |
"fpu\t\t: yes\r\n", | |
"fpu_exception\t: yes\r\n", | |
"cpuid level\t: 11\r\n", | |
"wp\t\t: yes\r\n", | |
"flags\t\t: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm 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 aes lahf_lm ida arat dts tpr_shadow vnmi flexpriority ept vpid\r\n", | |
"bogomips\t: 3990.06\r\n", | |
"clflush size\t: 64\r\n", | |
"cache_alignment\t: 64\r\n", | |
"address sizes\t: 44 bits physical, 48 bits virtual\r\n", | |
"power management:\r\n", | |
"\r\n", | |
"processor\t: 19\r\n", | |
"vendor_id\t: GenuineIntel\r\n", | |
"cpu family\t: 6\r\n", | |
"model\t\t: 47\r\n", | |
"model name\t: Intel(R) Xeon(R) CPU E7- 2850 @ 2.00GHz\r\n", | |
"stepping\t: 2\r\n", | |
"cpu MHz\t\t: 1995.032\r\n", | |
"cache size\t: 24576 KB\r\n", | |
"physical id\t: 1\r\n", | |
"siblings\t: 20\r\n", | |
"core id\t\t: 25\r\n", | |
"cpu cores\t: 10\r\n", | |
"apicid\t\t: 114\r\n", | |
"initial apicid\t: 114\r\n", | |
"fpu\t\t: yes\r\n", | |
"fpu_exception\t: yes\r\n", | |
"cpuid level\t: 11\r\n", | |
"wp\t\t: yes\r\n", | |
"flags\t\t: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm 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 aes lahf_lm ida arat dts tpr_shadow vnmi flexpriority ept vpid\r\n", | |
"bogomips\t: 3989.85\r\n", | |
"clflush size\t: 64\r\n", | |
"cache_alignment\t: 64\r\n", | |
"address sizes\t: 44 bits physical, 48 bits virtual\r\n", | |
"power management:\r\n", | |
"\r\n", | |
"processor\t: 20\r\n", | |
"vendor_id\t: GenuineIntel\r\n", | |
"cpu family\t: 6\r\n", | |
"model\t\t: 47\r\n", | |
"model name\t: Intel(R) Xeon(R) CPU E7- 2850 @ 2.00GHz\r\n", | |
"stepping\t: 2\r\n", | |
"cpu MHz\t\t: 1995.032\r\n", | |
"cache size\t: 24576 KB\r\n", | |
"physical id\t: 0\r\n", | |
"siblings\t: 20\r\n", | |
"core id\t\t: 0\r\n", | |
"cpu cores\t: 10\r\n", | |
"apicid\t\t: 1\r\n", | |
"initial apicid\t: 1\r\n", | |
"fpu\t\t: yes\r\n", | |
"fpu_exception\t: yes\r\n", | |
"cpuid level\t: 11\r\n", | |
"wp\t\t: yes\r\n", | |
"flags\t\t: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm 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 aes lahf_lm ida arat dts tpr_shadow vnmi flexpriority ept vpid\r\n", | |
"bogomips\t: 3990.06\r\n", | |
"clflush size\t: 64\r\n", | |
"cache_alignment\t: 64\r\n", | |
"address sizes\t: 44 bits physical, 48 bits virtual\r\n", | |
"power management:\r\n", | |
"\r\n", | |
"processor\t: 21\r\n", | |
"vendor_id\t: GenuineIntel\r\n", | |
"cpu family\t: 6\r\n", | |
"model\t\t: 47\r\n", | |
"model name\t: Intel(R) Xeon(R) CPU E7- 2850 @ 2.00GHz\r\n", | |
"stepping\t: 2\r\n", | |
"cpu MHz\t\t: 1995.032\r\n", | |
"cache size\t: 24576 KB\r\n", | |
"physical id\t: 1\r\n", | |
"siblings\t: 20\r\n", | |
"core id\t\t: 0\r\n", | |
"cpu cores\t: 10\r\n", | |
"apicid\t\t: 65\r\n", | |
"initial apicid\t: 65\r\n", | |
"fpu\t\t: yes\r\n", | |
"fpu_exception\t: yes\r\n", | |
"cpuid level\t: 11\r\n", | |
"wp\t\t: yes\r\n", | |
"flags\t\t: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm 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 aes lahf_lm ida arat dts tpr_shadow vnmi flexpriority ept vpid\r\n", | |
"bogomips\t: 3989.85\r\n", | |
"clflush size\t: 64\r\n", | |
"cache_alignment\t: 64\r\n", | |
"address sizes\t: 44 bits physical, 48 bits virtual\r\n", | |
"power management:\r\n", | |
"\r\n", | |
"processor\t: 22\r\n", | |
"vendor_id\t: GenuineIntel\r\n", | |
"cpu family\t: 6\r\n", | |
"model\t\t: 47\r\n", | |
"model name\t: Intel(R) Xeon(R) CPU E7- 2850 @ 2.00GHz\r\n", | |
"stepping\t: 2\r\n", | |
"cpu MHz\t\t: 1995.032\r\n", | |
"cache size\t: 24576 KB\r\n", | |
"physical id\t: 0\r\n", | |
"siblings\t: 20\r\n", | |
"core id\t\t: 1\r\n", | |
"cpu cores\t: 10\r\n", | |
"apicid\t\t: 3\r\n", | |
"initial apicid\t: 3\r\n", | |
"fpu\t\t: yes\r\n", | |
"fpu_exception\t: yes\r\n", | |
"cpuid level\t: 11\r\n", | |
"wp\t\t: yes\r\n", | |
"flags\t\t: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm 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 aes lahf_lm ida arat dts tpr_shadow vnmi flexpriority ept vpid\r\n", | |
"bogomips\t: 3990.06\r\n", | |
"clflush size\t: 64\r\n", | |
"cache_alignment\t: 64\r\n", | |
"address sizes\t: 44 bits physical, 48 bits virtual\r\n", | |
"power management:\r\n", | |
"\r\n", | |
"processor\t: 23\r\n", | |
"vendor_id\t: GenuineIntel\r\n", | |
"cpu family\t: 6\r\n", | |
"model\t\t: 47\r\n", | |
"model name\t: Intel(R) Xeon(R) CPU E7- 2850 @ 2.00GHz\r\n", | |
"stepping\t: 2\r\n", | |
"cpu MHz\t\t: 1995.032\r\n", | |
"cache size\t: 24576 KB\r\n", | |
"physical id\t: 1\r\n", | |
"siblings\t: 20\r\n", | |
"core id\t\t: 1\r\n", | |
"cpu cores\t: 10\r\n", | |
"apicid\t\t: 67\r\n", | |
"initial apicid\t: 67\r\n", | |
"fpu\t\t: yes\r\n", | |
"fpu_exception\t: yes\r\n", | |
"cpuid level\t: 11\r\n", | |
"wp\t\t: yes\r\n", | |
"flags\t\t: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm 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 aes lahf_lm ida arat dts tpr_shadow vnmi flexpriority ept vpid\r\n", | |
"bogomips\t: 3989.85\r\n", | |
"clflush size\t: 64\r\n", | |
"cache_alignment\t: 64\r\n", | |
"address sizes\t: 44 bits physical, 48 bits virtual\r\n", | |
"power management:\r\n", | |
"\r\n", | |
"processor\t: 24\r\n", | |
"vendor_id\t: GenuineIntel\r\n", | |
"cpu family\t: 6\r\n", | |
"model\t\t: 47\r\n", | |
"model name\t: Intel(R) Xeon(R) CPU E7- 2850 @ 2.00GHz\r\n", | |
"stepping\t: 2\r\n", | |
"cpu MHz\t\t: 1995.032\r\n", | |
"cache size\t: 24576 KB\r\n", | |
"physical id\t: 0\r\n", | |
"siblings\t: 20\r\n", | |
"core id\t\t: 2\r\n", | |
"cpu cores\t: 10\r\n", | |
"apicid\t\t: 5\r\n", | |
"initial apicid\t: 5\r\n", | |
"fpu\t\t: yes\r\n", | |
"fpu_exception\t: yes\r\n", | |
"cpuid level\t: 11\r\n", | |
"wp\t\t: yes\r\n", | |
"flags\t\t: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm 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 aes lahf_lm ida arat dts tpr_shadow vnmi flexpriority ept vpid\r\n", | |
"bogomips\t: 3990.06\r\n", | |
"clflush size\t: 64\r\n", | |
"cache_alignment\t: 64\r\n", | |
"address sizes\t: 44 bits physical, 48 bits virtual\r\n", | |
"power management:\r\n", | |
"\r\n", | |
"processor\t: 25\r\n", | |
"vendor_id\t: GenuineIntel\r\n", | |
"cpu family\t: 6\r\n", | |
"model\t\t: 47\r\n", | |
"model name\t: Intel(R) Xeon(R) CPU E7- 2850 @ 2.00GHz\r\n", | |
"stepping\t: 2\r\n", | |
"cpu MHz\t\t: 1995.032\r\n", | |
"cache size\t: 24576 KB\r\n", | |
"physical id\t: 1\r\n", | |
"siblings\t: 20\r\n", | |
"core id\t\t: 2\r\n", | |
"cpu cores\t: 10\r\n", | |
"apicid\t\t: 69\r\n", | |
"initial apicid\t: 69\r\n", | |
"fpu\t\t: yes\r\n", | |
"fpu_exception\t: yes\r\n", | |
"cpuid level\t: 11\r\n", | |
"wp\t\t: yes\r\n", | |
"flags\t\t: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm 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 aes lahf_lm ida arat dts tpr_shadow vnmi flexpriority ept vpid\r\n", | |
"bogomips\t: 3989.85\r\n", | |
"clflush size\t: 64\r\n", | |
"cache_alignment\t: 64\r\n", | |
"address sizes\t: 44 bits physical, 48 bits virtual\r\n", | |
"power management:\r\n", | |
"\r\n", | |
"processor\t: 26\r\n", | |
"vendor_id\t: GenuineIntel\r\n", | |
"cpu family\t: 6\r\n", | |
"model\t\t: 47\r\n", | |
"model name\t: Intel(R) Xeon(R) CPU E7- 2850 @ 2.00GHz\r\n", | |
"stepping\t: 2\r\n", | |
"cpu MHz\t\t: 1995.032\r\n", | |
"cache size\t: 24576 KB\r\n", | |
"physical id\t: 0\r\n", | |
"siblings\t: 20\r\n", | |
"core id\t\t: 8\r\n", | |
"cpu cores\t: 10\r\n", | |
"apicid\t\t: 17\r\n", | |
"initial apicid\t: 17\r\n", | |
"fpu\t\t: yes\r\n", | |
"fpu_exception\t: yes\r\n", | |
"cpuid level\t: 11\r\n", | |
"wp\t\t: yes\r\n", | |
"flags\t\t: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm 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 aes lahf_lm ida arat dts tpr_shadow vnmi flexpriority ept vpid\r\n", | |
"bogomips\t: 3990.06\r\n", | |
"clflush size\t: 64\r\n", | |
"cache_alignment\t: 64\r\n", | |
"address sizes\t: 44 bits physical, 48 bits virtual\r\n", | |
"power management:\r\n", | |
"\r\n", | |
"processor\t: 27\r\n", | |
"vendor_id\t: GenuineIntel\r\n", | |
"cpu family\t: 6\r\n", | |
"model\t\t: 47\r\n", | |
"model name\t: Intel(R) Xeon(R) CPU E7- 2850 @ 2.00GHz\r\n", | |
"stepping\t: 2\r\n", | |
"cpu MHz\t\t: 1995.032\r\n", | |
"cache size\t: 24576 KB\r\n", | |
"physical id\t: 1\r\n", | |
"siblings\t: 20\r\n", | |
"core id\t\t: 8\r\n", | |
"cpu cores\t: 10\r\n", | |
"apicid\t\t: 81\r\n", | |
"initial apicid\t: 81\r\n", | |
"fpu\t\t: yes\r\n", | |
"fpu_exception\t: yes\r\n", | |
"cpuid level\t: 11\r\n", | |
"wp\t\t: yes\r\n", | |
"flags\t\t: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm 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 aes lahf_lm ida arat dts tpr_shadow vnmi flexpriority ept vpid\r\n", | |
"bogomips\t: 3989.85\r\n", | |
"clflush size\t: 64\r\n", | |
"cache_alignment\t: 64\r\n", | |
"address sizes\t: 44 bits physical, 48 bits virtual\r\n", | |
"power management:\r\n", | |
"\r\n", | |
"processor\t: 28\r\n", | |
"vendor_id\t: GenuineIntel\r\n", | |
"cpu family\t: 6\r\n", | |
"model\t\t: 47\r\n", | |
"model name\t: Intel(R) Xeon(R) CPU E7- 2850 @ 2.00GHz\r\n", | |
"stepping\t: 2\r\n", | |
"cpu MHz\t\t: 1995.032\r\n", | |
"cache size\t: 24576 KB\r\n", | |
"physical id\t: 0\r\n", | |
"siblings\t: 20\r\n", | |
"core id\t\t: 9\r\n", | |
"cpu cores\t: 10\r\n", | |
"apicid\t\t: 19\r\n", | |
"initial apicid\t: 19\r\n", | |
"fpu\t\t: yes\r\n", | |
"fpu_exception\t: yes\r\n", | |
"cpuid level\t: 11\r\n", | |
"wp\t\t: yes\r\n", | |
"flags\t\t: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm 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 aes lahf_lm ida arat dts tpr_shadow vnmi flexpriority ept vpid\r\n", | |
"bogomips\t: 3990.06\r\n", | |
"clflush size\t: 64\r\n", | |
"cache_alignment\t: 64\r\n", | |
"address sizes\t: 44 bits physical, 48 bits virtual\r\n", | |
"power management:\r\n", | |
"\r\n", | |
"processor\t: 29\r\n", | |
"vendor_id\t: GenuineIntel\r\n", | |
"cpu family\t: 6\r\n", | |
"model\t\t: 47\r\n", | |
"model name\t: Intel(R) Xeon(R) CPU E7- 2850 @ 2.00GHz\r\n", | |
"stepping\t: 2\r\n", | |
"cpu MHz\t\t: 1995.032\r\n", | |
"cache size\t: 24576 KB\r\n", | |
"physical id\t: 1\r\n", | |
"siblings\t: 20\r\n", | |
"core id\t\t: 9\r\n", | |
"cpu cores\t: 10\r\n", | |
"apicid\t\t: 83\r\n", | |
"initial apicid\t: 83\r\n", | |
"fpu\t\t: yes\r\n", | |
"fpu_exception\t: yes\r\n", | |
"cpuid level\t: 11\r\n", | |
"wp\t\t: yes\r\n", | |
"flags\t\t: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm 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 aes lahf_lm ida arat dts tpr_shadow vnmi flexpriority ept vpid\r\n", | |
"bogomips\t: 3989.85\r\n", | |
"clflush size\t: 64\r\n", | |
"cache_alignment\t: 64\r\n", | |
"address sizes\t: 44 bits physical, 48 bits virtual\r\n", | |
"power management:\r\n", | |
"\r\n", | |
"processor\t: 30\r\n", | |
"vendor_id\t: GenuineIntel\r\n", | |
"cpu family\t: 6\r\n", | |
"model\t\t: 47\r\n", | |
"model name\t: Intel(R) Xeon(R) CPU E7- 2850 @ 2.00GHz\r\n", | |
"stepping\t: 2\r\n", | |
"cpu MHz\t\t: 1995.032\r\n", | |
"cache size\t: 24576 KB\r\n", | |
"physical id\t: 0\r\n", | |
"siblings\t: 20\r\n", | |
"core id\t\t: 16\r\n", | |
"cpu cores\t: 10\r\n", | |
"apicid\t\t: 33\r\n", | |
"initial apicid\t: 33\r\n", | |
"fpu\t\t: yes\r\n", | |
"fpu_exception\t: yes\r\n", | |
"cpuid level\t: 11\r\n", | |
"wp\t\t: yes\r\n", | |
"flags\t\t: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm 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 aes lahf_lm ida arat dts tpr_shadow vnmi flexpriority ept vpid\r\n", | |
"bogomips\t: 3990.06\r\n", | |
"clflush size\t: 64\r\n", | |
"cache_alignment\t: 64\r\n", | |
"address sizes\t: 44 bits physical, 48 bits virtual\r\n", | |
"power management:\r\n", | |
"\r\n", | |
"processor\t: 31\r\n", | |
"vendor_id\t: GenuineIntel\r\n", | |
"cpu family\t: 6\r\n", | |
"model\t\t: 47\r\n", | |
"model name\t: Intel(R) Xeon(R) CPU E7- 2850 @ 2.00GHz\r\n", | |
"stepping\t: 2\r\n", | |
"cpu MHz\t\t: 1995.032\r\n", | |
"cache size\t: 24576 KB\r\n", | |
"physical id\t: 1\r\n", | |
"siblings\t: 20\r\n", | |
"core id\t\t: 16\r\n", | |
"cpu cores\t: 10\r\n", | |
"apicid\t\t: 97\r\n", | |
"initial apicid\t: 97\r\n", | |
"fpu\t\t: yes\r\n", | |
"fpu_exception\t: yes\r\n", | |
"cpuid level\t: 11\r\n", | |
"wp\t\t: yes\r\n", | |
"flags\t\t: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm 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 aes lahf_lm ida arat dts tpr_shadow vnmi flexpriority ept vpid\r\n", | |
"bogomips\t: 3989.85\r\n", | |
"clflush size\t: 64\r\n", | |
"cache_alignment\t: 64\r\n", | |
"address sizes\t: 44 bits physical, 48 bits virtual\r\n", | |
"power management:\r\n", | |
"\r\n", | |
"processor\t: 32\r\n", | |
"vendor_id\t: GenuineIntel\r\n", | |
"cpu family\t: 6\r\n", | |
"model\t\t: 47\r\n", | |
"model name\t: Intel(R) Xeon(R) CPU E7- 2850 @ 2.00GHz\r\n", | |
"stepping\t: 2\r\n", | |
"cpu MHz\t\t: 1995.032\r\n", | |
"cache size\t: 24576 KB\r\n", | |
"physical id\t: 0\r\n", | |
"siblings\t: 20\r\n", | |
"core id\t\t: 17\r\n", | |
"cpu cores\t: 10\r\n", | |
"apicid\t\t: 35\r\n", | |
"initial apicid\t: 35\r\n", | |
"fpu\t\t: yes\r\n", | |
"fpu_exception\t: yes\r\n", | |
"cpuid level\t: 11\r\n", | |
"wp\t\t: yes\r\n", | |
"flags\t\t: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm 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 aes lahf_lm ida arat dts tpr_shadow vnmi flexpriority ept vpid\r\n", | |
"bogomips\t: 3990.06\r\n", | |
"clflush size\t: 64\r\n", | |
"cache_alignment\t: 64\r\n", | |
"address sizes\t: 44 bits physical, 48 bits virtual\r\n", | |
"power management:\r\n", | |
"\r\n", | |
"processor\t: 33\r\n", | |
"vendor_id\t: GenuineIntel\r\n", | |
"cpu family\t: 6\r\n", | |
"model\t\t: 47\r\n", | |
"model name\t: Intel(R) Xeon(R) CPU E7- 2850 @ 2.00GHz\r\n", | |
"stepping\t: 2\r\n", | |
"cpu MHz\t\t: 1995.032\r\n", | |
"cache size\t: 24576 KB\r\n", | |
"physical id\t: 1\r\n", | |
"siblings\t: 20\r\n", | |
"core id\t\t: 17\r\n", | |
"cpu cores\t: 10\r\n", | |
"apicid\t\t: 99\r\n", | |
"initial apicid\t: 99\r\n", | |
"fpu\t\t: yes\r\n", | |
"fpu_exception\t: yes\r\n", | |
"cpuid level\t: 11\r\n", | |
"wp\t\t: yes\r\n", | |
"flags\t\t: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm 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 aes lahf_lm ida arat dts tpr_shadow vnmi flexpriority ept vpid\r\n", | |
"bogomips\t: 3989.85\r\n", | |
"clflush size\t: 64\r\n", | |
"cache_alignment\t: 64\r\n", | |
"address sizes\t: 44 bits physical, 48 bits virtual\r\n", | |
"power management:\r\n", | |
"\r\n", | |
"processor\t: 34\r\n", | |
"vendor_id\t: GenuineIntel\r\n", | |
"cpu family\t: 6\r\n", | |
"model\t\t: 47\r\n", | |
"model name\t: Intel(R) Xeon(R) CPU E7- 2850 @ 2.00GHz\r\n", | |
"stepping\t: 2\r\n", | |
"cpu MHz\t\t: 1995.032\r\n", | |
"cache size\t: 24576 KB\r\n", | |
"physical id\t: 0\r\n", | |
"siblings\t: 20\r\n", | |
"core id\t\t: 18\r\n", | |
"cpu cores\t: 10\r\n", | |
"apicid\t\t: 37\r\n", | |
"initial apicid\t: 37\r\n", | |
"fpu\t\t: yes\r\n", | |
"fpu_exception\t: yes\r\n", | |
"cpuid level\t: 11\r\n", | |
"wp\t\t: yes\r\n", | |
"flags\t\t: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm 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 aes lahf_lm ida arat dts tpr_shadow vnmi flexpriority ept vpid\r\n", | |
"bogomips\t: 3990.06\r\n", | |
"clflush size\t: 64\r\n", | |
"cache_alignment\t: 64\r\n", | |
"address sizes\t: 44 bits physical, 48 bits virtual\r\n", | |
"power management:\r\n", | |
"\r\n", | |
"processor\t: 35\r\n", | |
"vendor_id\t: GenuineIntel\r\n", | |
"cpu family\t: 6\r\n", | |
"model\t\t: 47\r\n", | |
"model name\t: Intel(R) Xeon(R) CPU E7- 2850 @ 2.00GHz\r\n", | |
"stepping\t: 2\r\n", | |
"cpu MHz\t\t: 1995.032\r\n", | |
"cache size\t: 24576 KB\r\n", | |
"physical id\t: 1\r\n", | |
"siblings\t: 20\r\n", | |
"core id\t\t: 18\r\n", | |
"cpu cores\t: 10\r\n", | |
"apicid\t\t: 101\r\n", | |
"initial apicid\t: 101\r\n", | |
"fpu\t\t: yes\r\n", | |
"fpu_exception\t: yes\r\n", | |
"cpuid level\t: 11\r\n", | |
"wp\t\t: yes\r\n", | |
"flags\t\t: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm 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 aes lahf_lm ida arat dts tpr_shadow vnmi flexpriority ept vpid\r\n", | |
"bogomips\t: 3989.85\r\n", | |
"clflush size\t: 64\r\n", | |
"cache_alignment\t: 64\r\n", | |
"address sizes\t: 44 bits physical, 48 bits virtual\r\n", | |
"power management:\r\n", | |
"\r\n", | |
"processor\t: 36\r\n", | |
"vendor_id\t: GenuineIntel\r\n", | |
"cpu family\t: 6\r\n", | |
"model\t\t: 47\r\n", | |
"model name\t: Intel(R) Xeon(R) CPU E7- 2850 @ 2.00GHz\r\n", | |
"stepping\t: 2\r\n", | |
"cpu MHz\t\t: 1995.032\r\n", | |
"cache size\t: 24576 KB\r\n", | |
"physical id\t: 0\r\n", | |
"siblings\t: 20\r\n", | |
"core id\t\t: 24\r\n", | |
"cpu cores\t: 10\r\n", | |
"apicid\t\t: 49\r\n", | |
"initial apicid\t: 49\r\n", | |
"fpu\t\t: yes\r\n", | |
"fpu_exception\t: yes\r\n", | |
"cpuid level\t: 11\r\n", | |
"wp\t\t: yes\r\n", | |
"flags\t\t: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm 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 aes lahf_lm ida arat dts tpr_shadow vnmi flexpriority ept vpid\r\n", | |
"bogomips\t: 3990.06\r\n", | |
"clflush size\t: 64\r\n", | |
"cache_alignment\t: 64\r\n", | |
"address sizes\t: 44 bits physical, 48 bits virtual\r\n", | |
"power management:\r\n", | |
"\r\n", | |
"processor\t: 37\r\n", | |
"vendor_id\t: GenuineIntel\r\n", | |
"cpu family\t: 6\r\n", | |
"model\t\t: 47\r\n", | |
"model name\t: Intel(R) Xeon(R) CPU E7- 2850 @ 2.00GHz\r\n", | |
"stepping\t: 2\r\n", | |
"cpu MHz\t\t: 1995.032\r\n", | |
"cache size\t: 24576 KB\r\n", | |
"physical id\t: 1\r\n", | |
"siblings\t: 20\r\n", | |
"core id\t\t: 24\r\n", | |
"cpu cores\t: 10\r\n", | |
"apicid\t\t: 113\r\n", | |
"initial apicid\t: 113\r\n", | |
"fpu\t\t: yes\r\n", | |
"fpu_exception\t: yes\r\n", | |
"cpuid level\t: 11\r\n", | |
"wp\t\t: yes\r\n", | |
"flags\t\t: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm 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 aes lahf_lm ida arat dts tpr_shadow vnmi flexpriority ept vpid\r\n", | |
"bogomips\t: 3989.85\r\n", | |
"clflush size\t: 64\r\n", | |
"cache_alignment\t: 64\r\n", | |
"address sizes\t: 44 bits physical, 48 bits virtual\r\n", | |
"power management:\r\n", | |
"\r\n", | |
"processor\t: 38\r\n", | |
"vendor_id\t: GenuineIntel\r\n", | |
"cpu family\t: 6\r\n", | |
"model\t\t: 47\r\n", | |
"model name\t: Intel(R) Xeon(R) CPU E7- 2850 @ 2.00GHz\r\n", | |
"stepping\t: 2\r\n", | |
"cpu MHz\t\t: 1995.032\r\n", | |
"cache size\t: 24576 KB\r\n", | |
"physical id\t: 0\r\n", | |
"siblings\t: 20\r\n", | |
"core id\t\t: 25\r\n", | |
"cpu cores\t: 10\r\n", | |
"apicid\t\t: 51\r\n", | |
"initial apicid\t: 51\r\n", | |
"fpu\t\t: yes\r\n", | |
"fpu_exception\t: yes\r\n", | |
"cpuid level\t: 11\r\n", | |
"wp\t\t: yes\r\n", | |
"flags\t\t: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm 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 aes lahf_lm ida arat dts tpr_shadow vnmi flexpriority ept vpid\r\n", | |
"bogomips\t: 3990.06\r\n", | |
"clflush size\t: 64\r\n", | |
"cache_alignment\t: 64\r\n", | |
"address sizes\t: 44 bits physical, 48 bits virtual\r\n", | |
"power management:\r\n", | |
"\r\n", | |
"processor\t: 39\r\n", | |
"vendor_id\t: GenuineIntel\r\n", | |
"cpu family\t: 6\r\n", | |
"model\t\t: 47\r\n", | |
"model name\t: Intel(R) Xeon(R) CPU E7- 2850 @ 2.00GHz\r\n", | |
"stepping\t: 2\r\n", | |
"cpu MHz\t\t: 1995.032\r\n", | |
"cache size\t: 24576 KB\r\n", | |
"physical id\t: 1\r\n", | |
"siblings\t: 20\r\n", | |
"core id\t\t: 25\r\n", | |
"cpu cores\t: 10\r\n", | |
"apicid\t\t: 115\r\n", | |
"initial apicid\t: 115\r\n", | |
"fpu\t\t: yes\r\n", | |
"fpu_exception\t: yes\r\n", | |
"cpuid level\t: 11\r\n", | |
"wp\t\t: yes\r\n", | |
"flags\t\t: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm 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 aes lahf_lm ida arat dts tpr_shadow vnmi flexpriority ept vpid\r\n", | |
"bogomips\t: 3989.85\r\n", | |
"clflush size\t: 64\r\n", | |
"cache_alignment\t: 64\r\n", | |
"address sizes\t: 44 bits physical, 48 bits virtual\r\n", | |
"power management:\r\n", | |
"\r\n" | |
] | |
} | |
], | |
"prompt_number": 17 | |
}, | |
{ | |
"cell_type": "code", | |
"collapsed": false, | |
"input": [ | |
"cat gna_cpuinfo" | |
], | |
"language": "python", | |
"metadata": {}, | |
"outputs": [ | |
{ | |
"output_type": "stream", | |
"stream": "stdout", | |
"text": [ | |
"processor\t: 0\r\n", | |
"vendor_id\t: AuthenticAMD\r\n", | |
"cpu family\t: 21\r\n", | |
"model\t\t: 2\r\n", | |
"model name\t: AMD Opteron(tm) Processor 6376 \r\n", | |
"stepping\t: 0\r\n", | |
"cpu MHz\t\t: 2300.118\r\n", | |
"cache size\t: 2048 KB\r\n", | |
"physical id\t: 0\r\n", | |
"siblings\t: 16\r\n", | |
"core id\t\t: 0\r\n", | |
"cpu cores\t: 8\r\n", | |
"apicid\t\t: 0\r\n", | |
"initial apicid\t: 0\r\n", | |
"fpu\t\t: yes\r\n", | |
"fpu_exception\t: yes\r\n", | |
"cpuid level\t: 13\r\n", | |
"wp\t\t: yes\r\n", | |
"flags\t\t: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 popcnt aes xsave avx f16c lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 tce nodeid_msr tbm topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold bmi1\r\n", | |
"bogomips\t: 4600.23\r\n", | |
"TLB size\t: 1536 4K pages\r\n", | |
"clflush size\t: 64\r\n", | |
"cache_alignment\t: 64\r\n", | |
"address sizes\t: 48 bits physical, 48 bits virtual\r\n", | |
"power management: ts ttp tm 100mhzsteps hwpstate cpb eff_freq_ro\r\n", | |
"\r\n", | |
"processor\t: 1\r\n", | |
"vendor_id\t: AuthenticAMD\r\n", | |
"cpu family\t: 21\r\n", | |
"model\t\t: 2\r\n", | |
"model name\t: AMD Opteron(tm) Processor 6376 \r\n", | |
"stepping\t: 0\r\n", | |
"cpu MHz\t\t: 2300.118\r\n", | |
"cache size\t: 2048 KB\r\n", | |
"physical id\t: 0\r\n", | |
"siblings\t: 16\r\n", | |
"core id\t\t: 1\r\n", | |
"cpu cores\t: 8\r\n", | |
"apicid\t\t: 1\r\n", | |
"initial apicid\t: 1\r\n", | |
"fpu\t\t: yes\r\n", | |
"fpu_exception\t: yes\r\n", | |
"cpuid level\t: 13\r\n", | |
"wp\t\t: yes\r\n", | |
"flags\t\t: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 popcnt aes xsave avx f16c lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 tce nodeid_msr tbm topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold bmi1\r\n", | |
"bogomips\t: 4600.23\r\n", | |
"TLB size\t: 1536 4K pages\r\n", | |
"clflush size\t: 64\r\n", | |
"cache_alignment\t: 64\r\n", | |
"address sizes\t: 48 bits physical, 48 bits virtual\r\n", | |
"power management: ts ttp tm 100mhzsteps hwpstate cpb eff_freq_ro\r\n", | |
"\r\n", | |
"processor\t: 2\r\n", | |
"vendor_id\t: AuthenticAMD\r\n", | |
"cpu family\t: 21\r\n", | |
"model\t\t: 2\r\n", | |
"model name\t: AMD Opteron(tm) Processor 6376 \r\n", | |
"stepping\t: 0\r\n", | |
"cpu MHz\t\t: 2300.118\r\n", | |
"cache size\t: 2048 KB\r\n", | |
"physical id\t: 0\r\n", | |
"siblings\t: 16\r\n", | |
"core id\t\t: 2\r\n", | |
"cpu cores\t: 8\r\n", | |
"apicid\t\t: 2\r\n", | |
"initial apicid\t: 2\r\n", | |
"fpu\t\t: yes\r\n", | |
"fpu_exception\t: yes\r\n", | |
"cpuid level\t: 13\r\n", | |
"wp\t\t: yes\r\n", | |
"flags\t\t: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 popcnt aes xsave avx f16c lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 tce nodeid_msr tbm topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold bmi1\r\n", | |
"bogomips\t: 4600.23\r\n", | |
"TLB size\t: 1536 4K pages\r\n", | |
"clflush size\t: 64\r\n", | |
"cache_alignment\t: 64\r\n", | |
"address sizes\t: 48 bits physical, 48 bits virtual\r\n", | |
"power management: ts ttp tm 100mhzsteps hwpstate cpb eff_freq_ro\r\n", | |
"\r\n", | |
"processor\t: 3\r\n", | |
"vendor_id\t: AuthenticAMD\r\n", | |
"cpu family\t: 21\r\n", | |
"model\t\t: 2\r\n", | |
"model name\t: AMD Opteron(tm) Processor 6376 \r\n", | |
"stepping\t: 0\r\n", | |
"cpu MHz\t\t: 2300.118\r\n", | |
"cache size\t: 2048 KB\r\n", | |
"physical id\t: 0\r\n", | |
"siblings\t: 16\r\n", | |
"core id\t\t: 3\r\n", | |
"cpu cores\t: 8\r\n", | |
"apicid\t\t: 3\r\n", | |
"initial apicid\t: 3\r\n", | |
"fpu\t\t: yes\r\n", | |
"fpu_exception\t: yes\r\n", | |
"cpuid level\t: 13\r\n", | |
"wp\t\t: yes\r\n", | |
"flags\t\t: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 popcnt aes xsave avx f16c lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 tce nodeid_msr tbm topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold bmi1\r\n", | |
"bogomips\t: 4600.23\r\n", | |
"TLB size\t: 1536 4K pages\r\n", | |
"clflush size\t: 64\r\n", | |
"cache_alignment\t: 64\r\n", | |
"address sizes\t: 48 bits physical, 48 bits virtual\r\n", | |
"power management: ts ttp tm 100mhzsteps hwpstate cpb eff_freq_ro\r\n", | |
"\r\n", | |
"processor\t: 4\r\n", | |
"vendor_id\t: AuthenticAMD\r\n", | |
"cpu family\t: 21\r\n", | |
"model\t\t: 2\r\n", | |
"model name\t: AMD Opteron(tm) Processor 6376 \r\n", | |
"stepping\t: 0\r\n", | |
"cpu MHz\t\t: 2300.118\r\n", | |
"cache size\t: 2048 KB\r\n", | |
"physical id\t: 0\r\n", | |
"siblings\t: 16\r\n", | |
"core id\t\t: 4\r\n", | |
"cpu cores\t: 8\r\n", | |
"apicid\t\t: 4\r\n", | |
"initial apicid\t: 4\r\n", | |
"fpu\t\t: yes\r\n", | |
"fpu_exception\t: yes\r\n", | |
"cpuid level\t: 13\r\n", | |
"wp\t\t: yes\r\n", | |
"flags\t\t: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 popcnt aes xsave avx f16c lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 tce nodeid_msr tbm topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold bmi1\r\n", | |
"bogomips\t: 4600.23\r\n", | |
"TLB size\t: 1536 4K pages\r\n", | |
"clflush size\t: 64\r\n", | |
"cache_alignment\t: 64\r\n", | |
"address sizes\t: 48 bits physical, 48 bits virtual\r\n", | |
"power management: ts ttp tm 100mhzsteps hwpstate cpb eff_freq_ro\r\n", | |
"\r\n", | |
"processor\t: 5\r\n", | |
"vendor_id\t: AuthenticAMD\r\n", | |
"cpu family\t: 21\r\n", | |
"model\t\t: 2\r\n", | |
"model name\t: AMD Opteron(tm) Processor 6376 \r\n", | |
"stepping\t: 0\r\n", | |
"cpu MHz\t\t: 2300.118\r\n", | |
"cache size\t: 2048 KB\r\n", | |
"physical id\t: 0\r\n", | |
"siblings\t: 16\r\n", | |
"core id\t\t: 5\r\n", | |
"cpu cores\t: 8\r\n", | |
"apicid\t\t: 5\r\n", | |
"initial apicid\t: 5\r\n", | |
"fpu\t\t: yes\r\n", | |
"fpu_exception\t: yes\r\n", | |
"cpuid level\t: 13\r\n", | |
"wp\t\t: yes\r\n", | |
"flags\t\t: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 popcnt aes xsave avx f16c lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 tce nodeid_msr tbm topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold bmi1\r\n", | |
"bogomips\t: 4600.23\r\n", | |
"TLB size\t: 1536 4K pages\r\n", | |
"clflush size\t: 64\r\n", | |
"cache_alignment\t: 64\r\n", | |
"address sizes\t: 48 bits physical, 48 bits virtual\r\n", | |
"power management: ts ttp tm 100mhzsteps hwpstate cpb eff_freq_ro\r\n", | |
"\r\n", | |
"processor\t: 6\r\n", | |
"vendor_id\t: AuthenticAMD\r\n", | |
"cpu family\t: 21\r\n", | |
"model\t\t: 2\r\n", | |
"model name\t: AMD Opteron(tm) Processor 6376 \r\n", | |
"stepping\t: 0\r\n", | |
"cpu MHz\t\t: 2300.118\r\n", | |
"cache size\t: 2048 KB\r\n", | |
"physical id\t: 0\r\n", | |
"siblings\t: 16\r\n", | |
"core id\t\t: 6\r\n", | |
"cpu cores\t: 8\r\n", | |
"apicid\t\t: 6\r\n", | |
"initial apicid\t: 6\r\n", | |
"fpu\t\t: yes\r\n", | |
"fpu_exception\t: yes\r\n", | |
"cpuid level\t: 13\r\n", | |
"wp\t\t: yes\r\n", | |
"flags\t\t: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 popcnt aes xsave avx f16c lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 tce nodeid_msr tbm topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold bmi1\r\n", | |
"bogomips\t: 4600.23\r\n", | |
"TLB size\t: 1536 4K pages\r\n", | |
"clflush size\t: 64\r\n", | |
"cache_alignment\t: 64\r\n", | |
"address sizes\t: 48 bits physical, 48 bits virtual\r\n", | |
"power management: ts ttp tm 100mhzsteps hwpstate cpb eff_freq_ro\r\n", | |
"\r\n", | |
"processor\t: 7\r\n", | |
"vendor_id\t: AuthenticAMD\r\n", | |
"cpu family\t: 21\r\n", | |
"model\t\t: 2\r\n", | |
"model name\t: AMD Opteron(tm) Processor 6376 \r\n", | |
"stepping\t: 0\r\n", | |
"cpu MHz\t\t: 2300.118\r\n", | |
"cache size\t: 2048 KB\r\n", | |
"physical id\t: 0\r\n", | |
"siblings\t: 16\r\n", | |
"core id\t\t: 7\r\n", | |
"cpu cores\t: 8\r\n", | |
"apicid\t\t: 7\r\n", | |
"initial apicid\t: 7\r\n", | |
"fpu\t\t: yes\r\n", | |
"fpu_exception\t: yes\r\n", | |
"cpuid level\t: 13\r\n", | |
"wp\t\t: yes\r\n", | |
"flags\t\t: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 popcnt aes xsave avx f16c lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 tce nodeid_msr tbm topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold bmi1\r\n", | |
"bogomips\t: 4600.23\r\n", | |
"TLB size\t: 1536 4K pages\r\n", | |
"clflush size\t: 64\r\n", | |
"cache_alignment\t: 64\r\n", | |
"address sizes\t: 48 bits physical, 48 bits virtual\r\n", | |
"power management: ts ttp tm 100mhzsteps hwpstate cpb eff_freq_ro\r\n", | |
"\r\n", | |
"processor\t: 8\r\n", | |
"vendor_id\t: AuthenticAMD\r\n", | |
"cpu family\t: 21\r\n", | |
"model\t\t: 2\r\n", | |
"model name\t: AMD Opteron(tm) Processor 6376 \r\n", | |
"stepping\t: 0\r\n", | |
"cpu MHz\t\t: 2300.118\r\n", | |
"cache size\t: 2048 KB\r\n", | |
"physical id\t: 0\r\n", | |
"siblings\t: 16\r\n", | |
"core id\t\t: 0\r\n", | |
"cpu cores\t: 8\r\n", | |
"apicid\t\t: 8\r\n", | |
"initial apicid\t: 8\r\n", | |
"fpu\t\t: yes\r\n", | |
"fpu_exception\t: yes\r\n", | |
"cpuid level\t: 13\r\n", | |
"wp\t\t: yes\r\n", | |
"flags\t\t: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 popcnt aes xsave avx f16c lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 tce nodeid_msr tbm topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold bmi1\r\n", | |
"bogomips\t: 4600.23\r\n", | |
"TLB size\t: 1536 4K pages\r\n", | |
"clflush size\t: 64\r\n", | |
"cache_alignment\t: 64\r\n", | |
"address sizes\t: 48 bits physical, 48 bits virtual\r\n", | |
"power management: ts ttp tm 100mhzsteps hwpstate cpb eff_freq_ro\r\n", | |
"\r\n", | |
"processor\t: 9\r\n", | |
"vendor_id\t: AuthenticAMD\r\n", | |
"cpu family\t: 21\r\n", | |
"model\t\t: 2\r\n", | |
"model name\t: AMD Opteron(tm) Processor 6376 \r\n", | |
"stepping\t: 0\r\n", | |
"cpu MHz\t\t: 2300.118\r\n", | |
"cache size\t: 2048 KB\r\n", | |
"physical id\t: 0\r\n", | |
"siblings\t: 16\r\n", | |
"core id\t\t: 1\r\n", | |
"cpu cores\t: 8\r\n", | |
"apicid\t\t: 9\r\n", | |
"initial apicid\t: 9\r\n", | |
"fpu\t\t: yes\r\n", | |
"fpu_exception\t: yes\r\n", | |
"cpuid level\t: 13\r\n", | |
"wp\t\t: yes\r\n", | |
"flags\t\t: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 popcnt aes xsave avx f16c lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 tce nodeid_msr tbm topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold bmi1\r\n", | |
"bogomips\t: 4600.23\r\n", | |
"TLB size\t: 1536 4K pages\r\n", | |
"clflush size\t: 64\r\n", | |
"cache_alignment\t: 64\r\n", | |
"address sizes\t: 48 bits physical, 48 bits virtual\r\n", | |
"power management: ts ttp tm 100mhzsteps hwpstate cpb eff_freq_ro\r\n", | |
"\r\n", | |
"processor\t: 10\r\n", | |
"vendor_id\t: AuthenticAMD\r\n", | |
"cpu family\t: 21\r\n", | |
"model\t\t: 2\r\n", | |
"model name\t: AMD Opteron(tm) Processor 6376 \r\n", | |
"stepping\t: 0\r\n", | |
"cpu MHz\t\t: 2300.118\r\n", | |
"cache size\t: 2048 KB\r\n", | |
"physical id\t: 0\r\n", | |
"siblings\t: 16\r\n", | |
"core id\t\t: 2\r\n", | |
"cpu cores\t: 8\r\n", | |
"apicid\t\t: 10\r\n", | |
"initial apicid\t: 10\r\n", | |
"fpu\t\t: yes\r\n", | |
"fpu_exception\t: yes\r\n", | |
"cpuid level\t: 13\r\n", | |
"wp\t\t: yes\r\n", | |
"flags\t\t: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 popcnt aes xsave avx f16c lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 tce nodeid_msr tbm topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold bmi1\r\n", | |
"bogomips\t: 4600.23\r\n", | |
"TLB size\t: 1536 4K pages\r\n", | |
"clflush size\t: 64\r\n", | |
"cache_alignment\t: 64\r\n", | |
"address sizes\t: 48 bits physical, 48 bits virtual\r\n", | |
"power management: ts ttp tm 100mhzsteps hwpstate cpb eff_freq_ro\r\n", | |
"\r\n", | |
"processor\t: 11\r\n", | |
"vendor_id\t: AuthenticAMD\r\n", | |
"cpu family\t: 21\r\n", | |
"model\t\t: 2\r\n", | |
"model name\t: AMD Opteron(tm) Processor 6376 \r\n", | |
"stepping\t: 0\r\n", | |
"cpu MHz\t\t: 2300.118\r\n", | |
"cache size\t: 2048 KB\r\n", | |
"physical id\t: 0\r\n", | |
"siblings\t: 16\r\n", | |
"core id\t\t: 3\r\n", | |
"cpu cores\t: 8\r\n", | |
"apicid\t\t: 11\r\n", | |
"initial apicid\t: 11\r\n", | |
"fpu\t\t: yes\r\n", | |
"fpu_exception\t: yes\r\n", | |
"cpuid level\t: 13\r\n", | |
"wp\t\t: yes\r\n", | |
"flags\t\t: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 popcnt aes xsave avx f16c lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 tce nodeid_msr tbm topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold bmi1\r\n", | |
"bogomips\t: 4600.23\r\n", | |
"TLB size\t: 1536 4K pages\r\n", | |
"clflush size\t: 64\r\n", | |
"cache_alignment\t: 64\r\n", | |
"address sizes\t: 48 bits physical, 48 bits virtual\r\n", | |
"power management: ts ttp tm 100mhzsteps hwpstate cpb eff_freq_ro\r\n", | |
"\r\n", | |
"processor\t: 12\r\n", | |
"vendor_id\t: AuthenticAMD\r\n", | |
"cpu family\t: 21\r\n", | |
"model\t\t: 2\r\n", | |
"model name\t: AMD Opteron(tm) Processor 6376 \r\n", | |
"stepping\t: 0\r\n", | |
"cpu MHz\t\t: 2300.118\r\n", | |
"cache size\t: 2048 KB\r\n", | |
"physical id\t: 0\r\n", | |
"siblings\t: 16\r\n", | |
"core id\t\t: 4\r\n", | |
"cpu cores\t: 8\r\n", | |
"apicid\t\t: 12\r\n", | |
"initial apicid\t: 12\r\n", | |
"fpu\t\t: yes\r\n", | |
"fpu_exception\t: yes\r\n", | |
"cpuid level\t: 13\r\n", | |
"wp\t\t: yes\r\n", | |
"flags\t\t: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 popcnt aes xsave avx f16c lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 tce nodeid_msr tbm topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold bmi1\r\n", | |
"bogomips\t: 4600.23\r\n", | |
"TLB size\t: 1536 4K pages\r\n", | |
"clflush size\t: 64\r\n", | |
"cache_alignment\t: 64\r\n", | |
"address sizes\t: 48 bits physical, 48 bits virtual\r\n", | |
"power management: ts ttp tm 100mhzsteps hwpstate cpb eff_freq_ro\r\n", | |
"\r\n", | |
"processor\t: 13\r\n", | |
"vendor_id\t: AuthenticAMD\r\n", | |
"cpu family\t: 21\r\n", | |
"model\t\t: 2\r\n", | |
"model name\t: AMD Opteron(tm) Processor 6376 \r\n", | |
"stepping\t: 0\r\n", | |
"cpu MHz\t\t: 2300.118\r\n", | |
"cache size\t: 2048 KB\r\n", | |
"physical id\t: 0\r\n", | |
"siblings\t: 16\r\n", | |
"core id\t\t: 5\r\n", | |
"cpu cores\t: 8\r\n", | |
"apicid\t\t: 13\r\n", | |
"initial apicid\t: 13\r\n", | |
"fpu\t\t: yes\r\n", | |
"fpu_exception\t: yes\r\n", | |
"cpuid level\t: 13\r\n", | |
"wp\t\t: yes\r\n", | |
"flags\t\t: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 popcnt aes xsave avx f16c lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 tce nodeid_msr tbm topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold bmi1\r\n", | |
"bogomips\t: 4600.23\r\n", | |
"TLB size\t: 1536 4K pages\r\n", | |
"clflush size\t: 64\r\n", | |
"cache_alignment\t: 64\r\n", | |
"address sizes\t: 48 bits physical, 48 bits virtual\r\n", | |
"power management: ts ttp tm 100mhzsteps hwpstate cpb eff_freq_ro\r\n", | |
"\r\n", | |
"processor\t: 14\r\n", | |
"vendor_id\t: AuthenticAMD\r\n", | |
"cpu family\t: 21\r\n", | |
"model\t\t: 2\r\n", | |
"model name\t: AMD Opteron(tm) Processor 6376 \r\n", | |
"stepping\t: 0\r\n", | |
"cpu MHz\t\t: 2300.118\r\n", | |
"cache size\t: 2048 KB\r\n", | |
"physical id\t: 0\r\n", | |
"siblings\t: 16\r\n", | |
"core id\t\t: 6\r\n", | |
"cpu cores\t: 8\r\n", | |
"apicid\t\t: 14\r\n", | |
"initial apicid\t: 14\r\n", | |
"fpu\t\t: yes\r\n", | |
"fpu_exception\t: yes\r\n", | |
"cpuid level\t: 13\r\n", | |
"wp\t\t: yes\r\n", | |
"flags\t\t: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 popcnt aes xsave avx f16c lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 tce nodeid_msr tbm topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold bmi1\r\n", | |
"bogomips\t: 4600.23\r\n", | |
"TLB size\t: 1536 4K pages\r\n", | |
"clflush size\t: 64\r\n", | |
"cache_alignment\t: 64\r\n", | |
"address sizes\t: 48 bits physical, 48 bits virtual\r\n", | |
"power management: ts ttp tm 100mhzsteps hwpstate cpb eff_freq_ro\r\n", | |
"\r\n", | |
"processor\t: 15\r\n", | |
"vendor_id\t: AuthenticAMD\r\n", | |
"cpu family\t: 21\r\n", | |
"model\t\t: 2\r\n", | |
"model name\t: AMD Opteron(tm) Processor 6376 \r\n", | |
"stepping\t: 0\r\n", | |
"cpu MHz\t\t: 2300.118\r\n", | |
"cache size\t: 2048 KB\r\n", | |
"physical id\t: 0\r\n", | |
"siblings\t: 16\r\n", | |
"core id\t\t: 7\r\n", | |
"cpu cores\t: 8\r\n", | |
"apicid\t\t: 15\r\n", | |
"initial apicid\t: 15\r\n", | |
"fpu\t\t: yes\r\n", | |
"fpu_exception\t: yes\r\n", | |
"cpuid level\t: 13\r\n", | |
"wp\t\t: yes\r\n", | |
"flags\t\t: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 popcnt aes xsave avx f16c lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 tce nodeid_msr tbm topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold bmi1\r\n", | |
"bogomips\t: 4600.23\r\n", | |
"TLB size\t: 1536 4K pages\r\n", | |
"clflush size\t: 64\r\n", | |
"cache_alignment\t: 64\r\n", | |
"address sizes\t: 48 bits physical, 48 bits virtual\r\n", | |
"power management: ts ttp tm 100mhzsteps hwpstate cpb eff_freq_ro\r\n", | |
"\r\n", | |
"processor\t: 16\r\n", | |
"vendor_id\t: AuthenticAMD\r\n", | |
"cpu family\t: 21\r\n", | |
"model\t\t: 2\r\n", | |
"model name\t: AMD Opteron(tm) Processor 6376 \r\n", | |
"stepping\t: 0\r\n", | |
"cpu MHz\t\t: 2300.118\r\n", | |
"cache size\t: 2048 KB\r\n", | |
"physical id\t: 1\r\n", | |
"siblings\t: 16\r\n", | |
"core id\t\t: 0\r\n", | |
"cpu cores\t: 8\r\n", | |
"apicid\t\t: 32\r\n", | |
"initial apicid\t: 32\r\n", | |
"fpu\t\t: yes\r\n", | |
"fpu_exception\t: yes\r\n", | |
"cpuid level\t: 13\r\n", | |
"wp\t\t: yes\r\n", | |
"flags\t\t: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 popcnt aes xsave avx f16c lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 tce nodeid_msr tbm topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold bmi1\r\n", | |
"bogomips\t: 4600.92\r\n", | |
"TLB size\t: 1536 4K pages\r\n", | |
"clflush size\t: 64\r\n", | |
"cache_alignment\t: 64\r\n", | |
"address sizes\t: 48 bits physical, 48 bits virtual\r\n", | |
"power management: ts ttp tm 100mhzsteps hwpstate cpb eff_freq_ro\r\n", | |
"\r\n", | |
"processor\t: 17\r\n", | |
"vendor_id\t: AuthenticAMD\r\n", | |
"cpu family\t: 21\r\n", | |
"model\t\t: 2\r\n", | |
"model name\t: AMD Opteron(tm) Processor 6376 \r\n", | |
"stepping\t: 0\r\n", | |
"cpu MHz\t\t: 2300.118\r\n", | |
"cache size\t: 2048 KB\r\n", | |
"physical id\t: 1\r\n", | |
"siblings\t: 16\r\n", | |
"core id\t\t: 1\r\n", | |
"cpu cores\t: 8\r\n", | |
"apicid\t\t: 33\r\n", | |
"initial apicid\t: 33\r\n", | |
"fpu\t\t: yes\r\n", | |
"fpu_exception\t: yes\r\n", | |
"cpuid level\t: 13\r\n", | |
"wp\t\t: yes\r\n", | |
"flags\t\t: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 popcnt aes xsave avx f16c lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 tce nodeid_msr tbm topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold bmi1\r\n", | |
"bogomips\t: 4600.92\r\n", | |
"TLB size\t: 1536 4K pages\r\n", | |
"clflush size\t: 64\r\n", | |
"cache_alignment\t: 64\r\n", | |
"address sizes\t: 48 bits physical, 48 bits virtual\r\n", | |
"power management: ts ttp tm 100mhzsteps hwpstate cpb eff_freq_ro\r\n", | |
"\r\n", | |
"processor\t: 18\r\n", | |
"vendor_id\t: AuthenticAMD\r\n", | |
"cpu family\t: 21\r\n", | |
"model\t\t: 2\r\n", | |
"model name\t: AMD Opteron(tm) Processor 6376 \r\n", | |
"stepping\t: 0\r\n", | |
"cpu MHz\t\t: 2300.118\r\n", | |
"cache size\t: 2048 KB\r\n", | |
"physical id\t: 1\r\n", | |
"siblings\t: 16\r\n", | |
"core id\t\t: 2\r\n", | |
"cpu cores\t: 8\r\n", | |
"apicid\t\t: 34\r\n", | |
"initial apicid\t: 34\r\n", | |
"fpu\t\t: yes\r\n", | |
"fpu_exception\t: yes\r\n", | |
"cpuid level\t: 13\r\n", | |
"wp\t\t: yes\r\n", | |
"flags\t\t: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 popcnt aes xsave avx f16c lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 tce nodeid_msr tbm topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold bmi1\r\n", | |
"bogomips\t: 4600.92\r\n", | |
"TLB size\t: 1536 4K pages\r\n", | |
"clflush size\t: 64\r\n", | |
"cache_alignment\t: 64\r\n", | |
"address sizes\t: 48 bits physical, 48 bits virtual\r\n", | |
"power management: ts ttp tm 100mhzsteps hwpstate cpb eff_freq_ro\r\n", | |
"\r\n", | |
"processor\t: 19\r\n", | |
"vendor_id\t: AuthenticAMD\r\n", | |
"cpu family\t: 21\r\n", | |
"model\t\t: 2\r\n", | |
"model name\t: AMD Opteron(tm) Processor 6376 \r\n", | |
"stepping\t: 0\r\n", | |
"cpu MHz\t\t: 2300.118\r\n", | |
"cache size\t: 2048 KB\r\n", | |
"physical id\t: 1\r\n", | |
"siblings\t: 16\r\n", | |
"core id\t\t: 3\r\n", | |
"cpu cores\t: 8\r\n", | |
"apicid\t\t: 35\r\n", | |
"initial apicid\t: 35\r\n", | |
"fpu\t\t: yes\r\n", | |
"fpu_exception\t: yes\r\n", | |
"cpuid level\t: 13\r\n", | |
"wp\t\t: yes\r\n", | |
"flags\t\t: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 popcnt aes xsave avx f16c lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 tce nodeid_msr tbm topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold bmi1\r\n", | |
"bogomips\t: 4600.92\r\n", | |
"TLB size\t: 1536 4K pages\r\n", | |
"clflush size\t: 64\r\n", | |
"cache_alignment\t: 64\r\n", | |
"address sizes\t: 48 bits physical, 48 bits virtual\r\n", | |
"power management: ts ttp tm 100mhzsteps hwpstate cpb eff_freq_ro\r\n", | |
"\r\n", | |
"processor\t: 20\r\n", | |
"vendor_id\t: AuthenticAMD\r\n", | |
"cpu family\t: 21\r\n", | |
"model\t\t: 2\r\n", | |
"model name\t: AMD Opteron(tm) Processor 6376 \r\n", | |
"stepping\t: 0\r\n", | |
"cpu MHz\t\t: 2300.118\r\n", | |
"cache size\t: 2048 KB\r\n", | |
"physical id\t: 1\r\n", | |
"siblings\t: 16\r\n", | |
"core id\t\t: 4\r\n", | |
"cpu cores\t: 8\r\n", | |
"apicid\t\t: 36\r\n", | |
"initial apicid\t: 36\r\n", | |
"fpu\t\t: yes\r\n", | |
"fpu_exception\t: yes\r\n", | |
"cpuid level\t: 13\r\n", | |
"wp\t\t: yes\r\n", | |
"flags\t\t: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 popcnt aes xsave avx f16c lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 tce nodeid_msr tbm topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold bmi1\r\n", | |
"bogomips\t: 4600.92\r\n", | |
"TLB size\t: 1536 4K pages\r\n", | |
"clflush size\t: 64\r\n", | |
"cache_alignment\t: 64\r\n", | |
"address sizes\t: 48 bits physical, 48 bits virtual\r\n", | |
"power management: ts ttp tm 100mhzsteps hwpstate cpb eff_freq_ro\r\n", | |
"\r\n", | |
"processor\t: 21\r\n", | |
"vendor_id\t: AuthenticAMD\r\n", | |
"cpu family\t: 21\r\n", | |
"model\t\t: 2\r\n", | |
"model name\t: AMD Opteron(tm) Processor 6376 \r\n", | |
"stepping\t: 0\r\n", | |
"cpu MHz\t\t: 2300.118\r\n", | |
"cache size\t: 2048 KB\r\n", | |
"physical id\t: 1\r\n", | |
"siblings\t: 16\r\n", | |
"core id\t\t: 5\r\n", | |
"cpu cores\t: 8\r\n", | |
"apicid\t\t: 37\r\n", | |
"initial apicid\t: 37\r\n", | |
"fpu\t\t: yes\r\n", | |
"fpu_exception\t: yes\r\n", | |
"cpuid level\t: 13\r\n", | |
"wp\t\t: yes\r\n", | |
"flags\t\t: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 popcnt aes xsave avx f16c lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 tce nodeid_msr tbm topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold bmi1\r\n", | |
"bogomips\t: 4600.92\r\n", | |
"TLB size\t: 1536 4K pages\r\n", | |
"clflush size\t: 64\r\n", | |
"cache_alignment\t: 64\r\n", | |
"address sizes\t: 48 bits physical, 48 bits virtual\r\n", | |
"power management: ts ttp tm 100mhzsteps hwpstate cpb eff_freq_ro\r\n", | |
"\r\n", | |
"processor\t: 22\r\n", | |
"vendor_id\t: AuthenticAMD\r\n", | |
"cpu family\t: 21\r\n", | |
"model\t\t: 2\r\n", | |
"model name\t: AMD Opteron(tm) Processor 6376 \r\n", | |
"stepping\t: 0\r\n", | |
"cpu MHz\t\t: 2300.118\r\n", | |
"cache size\t: 2048 KB\r\n", | |
"physical id\t: 1\r\n", | |
"siblings\t: 16\r\n", | |
"core id\t\t: 6\r\n", | |
"cpu cores\t: 8\r\n", | |
"apicid\t\t: 38\r\n", | |
"initial apicid\t: 38\r\n", | |
"fpu\t\t: yes\r\n", | |
"fpu_exception\t: yes\r\n", | |
"cpuid level\t: 13\r\n", | |
"wp\t\t: yes\r\n", | |
"flags\t\t: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 popcnt aes xsave avx f16c lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 tce nodeid_msr tbm topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold bmi1\r\n", | |
"bogomips\t: 4600.92\r\n", | |
"TLB size\t: 1536 4K pages\r\n", | |
"clflush size\t: 64\r\n", | |
"cache_alignment\t: 64\r\n", | |
"address sizes\t: 48 bits physical, 48 bits virtual\r\n", | |
"power management: ts ttp tm 100mhzsteps hwpstate cpb eff_freq_ro\r\n", | |
"\r\n", | |
"processor\t: 23\r\n", | |
"vendor_id\t: AuthenticAMD\r\n", | |
"cpu family\t: 21\r\n", | |
"model\t\t: 2\r\n", | |
"model name\t: AMD Opteron(tm) Processor 6376 \r\n", | |
"stepping\t: 0\r\n", | |
"cpu MHz\t\t: 2300.118\r\n", | |
"cache size\t: 2048 KB\r\n", | |
"physical id\t: 1\r\n", | |
"siblings\t: 16\r\n", | |
"core id\t\t: 7\r\n", | |
"cpu cores\t: 8\r\n", | |
"apicid\t\t: 39\r\n", | |
"initial apicid\t: 39\r\n", | |
"fpu\t\t: yes\r\n", | |
"fpu_exception\t: yes\r\n", | |
"cpuid level\t: 13\r\n", | |
"wp\t\t: yes\r\n", | |
"flags\t\t: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 popcnt aes xsave avx f16c lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 tce nodeid_msr tbm topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold bmi1\r\n", | |
"bogomips\t: 4600.92\r\n", | |
"TLB size\t: 1536 4K pages\r\n", | |
"clflush size\t: 64\r\n", | |
"cache_alignment\t: 64\r\n", | |
"address sizes\t: 48 bits physical, 48 bits virtual\r\n", | |
"power management: ts ttp tm 100mhzsteps hwpstate cpb eff_freq_ro\r\n", | |
"\r\n", | |
"processor\t: 24\r\n", | |
"vendor_id\t: AuthenticAMD\r\n", | |
"cpu family\t: 21\r\n", | |
"model\t\t: 2\r\n", | |
"model name\t: AMD Opteron(tm) Processor 6376 \r\n", | |
"stepping\t: 0\r\n", | |
"cpu MHz\t\t: 2300.118\r\n", | |
"cache size\t: 2048 KB\r\n", | |
"physical id\t: 1\r\n", | |
"siblings\t: 16\r\n", | |
"core id\t\t: 0\r\n", | |
"cpu cores\t: 8\r\n", | |
"apicid\t\t: 40\r\n", | |
"initial apicid\t: 40\r\n", | |
"fpu\t\t: yes\r\n", | |
"fpu_exception\t: yes\r\n", | |
"cpuid level\t: 13\r\n", | |
"wp\t\t: yes\r\n", | |
"flags\t\t: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 popcnt aes xsave avx f16c lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 tce nodeid_msr tbm topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold bmi1\r\n", | |
"bogomips\t: 4600.92\r\n", | |
"TLB size\t: 1536 4K pages\r\n", | |
"clflush size\t: 64\r\n", | |
"cache_alignment\t: 64\r\n", | |
"address sizes\t: 48 bits physical, 48 bits virtual\r\n", | |
"power management: ts ttp tm 100mhzsteps hwpstate cpb eff_freq_ro\r\n", | |
"\r\n", | |
"processor\t: 25\r\n", | |
"vendor_id\t: AuthenticAMD\r\n", | |
"cpu family\t: 21\r\n", | |
"model\t\t: 2\r\n", | |
"model name\t: AMD Opteron(tm) Processor 6376 \r\n", | |
"stepping\t: 0\r\n", | |
"cpu MHz\t\t: 2300.118\r\n", | |
"cache size\t: 2048 KB\r\n", | |
"physical id\t: 1\r\n", | |
"siblings\t: 16\r\n", | |
"core id\t\t: 1\r\n", | |
"cpu cores\t: 8\r\n", | |
"apicid\t\t: 41\r\n", | |
"initial apicid\t: 41\r\n", | |
"fpu\t\t: yes\r\n", | |
"fpu_exception\t: yes\r\n", | |
"cpuid level\t: 13\r\n", | |
"wp\t\t: yes\r\n", | |
"flags\t\t: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 popcnt aes xsave avx f16c lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 tce nodeid_msr tbm topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold bmi1\r\n", | |
"bogomips\t: 4600.92\r\n", | |
"TLB size\t: 1536 4K pages\r\n", | |
"clflush size\t: 64\r\n", | |
"cache_alignment\t: 64\r\n", | |
"address sizes\t: 48 bits physical, 48 bits virtual\r\n", | |
"power management: ts ttp tm 100mhzsteps hwpstate cpb eff_freq_ro\r\n", | |
"\r\n", | |
"processor\t: 26\r\n", | |
"vendor_id\t: AuthenticAMD\r\n", | |
"cpu family\t: 21\r\n", | |
"model\t\t: 2\r\n", | |
"model name\t: AMD Opteron(tm) Processor 6376 \r\n", | |
"stepping\t: 0\r\n", | |
"cpu MHz\t\t: 2300.118\r\n", | |
"cache size\t: 2048 KB\r\n", | |
"physical id\t: 1\r\n", | |
"siblings\t: 16\r\n", | |
"core id\t\t: 2\r\n", | |
"cpu cores\t: 8\r\n", | |
"apicid\t\t: 42\r\n", | |
"initial apicid\t: 42\r\n", | |
"fpu\t\t: yes\r\n", | |
"fpu_exception\t: yes\r\n", | |
"cpuid level\t: 13\r\n", | |
"wp\t\t: yes\r\n", | |
"flags\t\t: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 popcnt aes xsave avx f16c lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 tce nodeid_msr tbm topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold bmi1\r\n", | |
"bogomips\t: 4600.92\r\n", | |
"TLB size\t: 1536 4K pages\r\n", | |
"clflush size\t: 64\r\n", | |
"cache_alignment\t: 64\r\n", | |
"address sizes\t: 48 bits physical, 48 bits virtual\r\n", | |
"power management: ts ttp tm 100mhzsteps hwpstate cpb eff_freq_ro\r\n", | |
"\r\n", | |
"processor\t: 27\r\n", | |
"vendor_id\t: AuthenticAMD\r\n", | |
"cpu family\t: 21\r\n", | |
"model\t\t: 2\r\n", | |
"model name\t: AMD Opteron(tm) Processor 6376 \r\n", | |
"stepping\t: 0\r\n", | |
"cpu MHz\t\t: 2300.118\r\n", | |
"cache size\t: 2048 KB\r\n", | |
"physical id\t: 1\r\n", | |
"siblings\t: 16\r\n", | |
"core id\t\t: 3\r\n", | |
"cpu cores\t: 8\r\n", | |
"apicid\t\t: 43\r\n", | |
"initial apicid\t: 43\r\n", | |
"fpu\t\t: yes\r\n", | |
"fpu_exception\t: yes\r\n", | |
"cpuid level\t: 13\r\n", | |
"wp\t\t: yes\r\n", | |
"flags\t\t: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 popcnt aes xsave avx f16c lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 tce nodeid_msr tbm topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold bmi1\r\n", | |
"bogomips\t: 4600.92\r\n", | |
"TLB size\t: 1536 4K pages\r\n", | |
"clflush size\t: 64\r\n", | |
"cache_alignment\t: 64\r\n", | |
"address sizes\t: 48 bits physical, 48 bits virtual\r\n", | |
"power management: ts ttp tm 100mhzsteps hwpstate cpb eff_freq_ro\r\n", | |
"\r\n", | |
"processor\t: 28\r\n", | |
"vendor_id\t: AuthenticAMD\r\n", | |
"cpu family\t: 21\r\n", | |
"model\t\t: 2\r\n", | |
"model name\t: AMD Opteron(tm) Processor 6376 \r\n", | |
"stepping\t: 0\r\n", | |
"cpu MHz\t\t: 2300.118\r\n", | |
"cache size\t: 2048 KB\r\n", | |
"physical id\t: 1\r\n", | |
"siblings\t: 16\r\n", | |
"core id\t\t: 4\r\n", | |
"cpu cores\t: 8\r\n", | |
"apicid\t\t: 44\r\n", | |
"initial apicid\t: 44\r\n", | |
"fpu\t\t: yes\r\n", | |
"fpu_exception\t: yes\r\n", | |
"cpuid level\t: 13\r\n", | |
"wp\t\t: yes\r\n", | |
"flags\t\t: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 popcnt aes xsave avx f16c lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 tce nodeid_msr tbm topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold bmi1\r\n", | |
"bogomips\t: 4600.92\r\n", | |
"TLB size\t: 1536 4K pages\r\n", | |
"clflush size\t: 64\r\n", | |
"cache_alignment\t: 64\r\n", | |
"address sizes\t: 48 bits physical, 48 bits virtual\r\n", | |
"power management: ts ttp tm 100mhzsteps hwpstate cpb eff_freq_ro\r\n", | |
"\r\n", | |
"processor\t: 29\r\n", | |
"vendor_id\t: AuthenticAMD\r\n", | |
"cpu family\t: 21\r\n", | |
"model\t\t: 2\r\n", | |
"model name\t: AMD Opteron(tm) Processor 6376 \r\n", | |
"stepping\t: 0\r\n", | |
"cpu MHz\t\t: 2300.118\r\n", | |
"cache size\t: 2048 KB\r\n", | |
"physical id\t: 1\r\n", | |
"siblings\t: 16\r\n", | |
"core id\t\t: 5\r\n", | |
"cpu cores\t: 8\r\n", | |
"apicid\t\t: 45\r\n", | |
"initial apicid\t: 45\r\n", | |
"fpu\t\t: yes\r\n", | |
"fpu_exception\t: yes\r\n", | |
"cpuid level\t: 13\r\n", | |
"wp\t\t: yes\r\n", | |
"flags\t\t: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 popcnt aes xsave avx f16c lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 tce nodeid_msr tbm topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold bmi1\r\n", | |
"bogomips\t: 4600.92\r\n", | |
"TLB size\t: 1536 4K pages\r\n", | |
"clflush size\t: 64\r\n", | |
"cache_alignment\t: 64\r\n", | |
"address sizes\t: 48 bits physical, 48 bits virtual\r\n", | |
"power management: ts ttp tm 100mhzsteps hwpstate cpb eff_freq_ro\r\n", | |
"\r\n", | |
"processor\t: 30\r\n", | |
"vendor_id\t: AuthenticAMD\r\n", | |
"cpu family\t: 21\r\n", | |
"model\t\t: 2\r\n", | |
"model name\t: AMD Opteron(tm) Processor 6376 \r\n", | |
"stepping\t: 0\r\n", | |
"cpu MHz\t\t: 2300.118\r\n", | |
"cache size\t: 2048 KB\r\n", | |
"physical id\t: 1\r\n", | |
"siblings\t: 16\r\n", | |
"core id\t\t: 6\r\n", | |
"cpu cores\t: 8\r\n", | |
"apicid\t\t: 46\r\n", | |
"initial apicid\t: 46\r\n", | |
"fpu\t\t: yes\r\n", | |
"fpu_exception\t: yes\r\n", | |
"cpuid level\t: 13\r\n", | |
"wp\t\t: yes\r\n", | |
"flags\t\t: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 popcnt aes xsave avx f16c lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 tce nodeid_msr tbm topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold bmi1\r\n", | |
"bogomips\t: 4600.92\r\n", | |
"TLB size\t: 1536 4K pages\r\n", | |
"clflush size\t: 64\r\n", | |
"cache_alignment\t: 64\r\n", | |
"address sizes\t: 48 bits physical, 48 bits virtual\r\n", | |
"power management: ts ttp tm 100mhzsteps hwpstate cpb eff_freq_ro\r\n", | |
"\r\n", | |
"processor\t: 31\r\n", | |
"vendor_id\t: AuthenticAMD\r\n", | |
"cpu family\t: 21\r\n", | |
"model\t\t: 2\r\n", | |
"model name\t: AMD Opteron(tm) Processor 6376 \r\n", | |
"stepping\t: 0\r\n", | |
"cpu MHz\t\t: 2300.118\r\n", | |
"cache size\t: 2048 KB\r\n", | |
"physical id\t: 1\r\n", | |
"siblings\t: 16\r\n", | |
"core id\t\t: 7\r\n", | |
"cpu cores\t: 8\r\n", | |
"apicid\t\t: 47\r\n", | |
"initial apicid\t: 47\r\n", | |
"fpu\t\t: yes\r\n", | |
"fpu_exception\t: yes\r\n", | |
"cpuid level\t: 13\r\n", | |
"wp\t\t: yes\r\n", | |
"flags\t\t: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 popcnt aes xsave avx f16c lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 tce nodeid_msr tbm topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold bmi1\r\n", | |
"bogomips\t: 4600.92\r\n", | |
"TLB size\t: 1536 4K pages\r\n", | |
"clflush size\t: 64\r\n", | |
"cache_alignment\t: 64\r\n", | |
"address sizes\t: 48 bits physical, 48 bits virtual\r\n", | |
"power management: ts ttp tm 100mhzsteps hwpstate cpb eff_freq_ro\r\n", | |
"\r\n" | |
] | |
} | |
], | |
"prompt_number": 18 | |
}, | |
{ | |
"cell_type": "code", | |
"collapsed": false, | |
"input": [], | |
"language": "python", | |
"metadata": {}, | |
"outputs": [] | |
} | |
], | |
"metadata": {} | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment