| tierno | f7aa8c4 | 2016-09-06 16:43:04 +0200 | [diff] [blame] | 1 | /* |
| 2 | ## |
| 3 | # Copyright 2015 Telefónica Investigación y Desarrollo, S.A.U. |
| tierno | 9a61c6b | 2016-09-08 10:57:02 +0200 | [diff] [blame] | 4 | # This file is part of openvim |
| tierno | f7aa8c4 | 2016-09-06 16:43:04 +0200 | [diff] [blame] | 5 | # All Rights Reserved. |
| 6 | # |
| 7 | # Licensed under the Apache License, Version 2.0 (the "License"); you may |
| 8 | # not use this file except in compliance with the License. You may obtain |
| 9 | # a copy of the License at |
| 10 | # |
| 11 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | # |
| 13 | # Unless required by applicable law or agreed to in writing, software |
| 14 | # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| 15 | # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the |
| 16 | # License for the specific language governing permissions and limitations |
| 17 | # under the License. |
| 18 | # |
| 19 | # For those usages not covered by the Apache License, Version 2.0 please |
| 20 | # contact with: nfvlabs@tid.es |
| 21 | ## |
| 22 | */ |
| 23 | |
| 24 | /* This table contains a list of processor ranking |
| 25 | The larger ranking the better performance |
| 26 | All physical host models must be included in this table |
| 27 | before being adding to openvim |
| 28 | processor information is obtained with commnand cat /proc/cpuinfo |
| 29 | NOTE: Current version of openvim ignores the ranking |
| 30 | */ |
| 31 | |
| 32 | |
| 33 | LOCK TABLES `host_ranking` WRITE; |
| 34 | /*!40000 ALTER TABLE `host_ranking` DISABLE KEYS */; |
| 35 | INSERT INTO `host_ranking` |
| 36 | (family, manufacturer, version, description, ranking) |
| 37 | VALUES |
| 38 | ('Xeon','Intel','Intel(R) Xeon(R) CPU E5-2680 0 @ 2.70GHz','sandy bridge',170), |
| 39 | ('Xeon','Intel','Intel(R) Xeon(R) CPU E5-4620 0 @ 2.20GHz','sandy bridge',200), |
| 40 | ('Xeon','Intel','Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz','ivy bridge',300), |
| 41 | ('Xeon','Intel','Intel(R) Xeon(R) CPU E5-2680 v2 @ 2.80GHz','ivy bridge',310); /*last entry ends with ';' */ |
| 42 | |
| 43 | UNLOCK TABLES; |