diff --git a/codecarbon/data/hardware/CPU_Create_Dataset.ipynb b/codecarbon/data/hardware/cpu_dataset_builder/CPU_Create_Dataset.ipynb similarity index 94% rename from codecarbon/data/hardware/CPU_Create_Dataset.ipynb rename to codecarbon/data/hardware/cpu_dataset_builder/CPU_Create_Dataset.ipynb index 8fe1a92ac..a0c819716 100644 --- a/codecarbon/data/hardware/CPU_Create_Dataset.ipynb +++ b/codecarbon/data/hardware/cpu_dataset_builder/CPU_Create_Dataset.ipynb @@ -357,7 +357,7 @@ "\n", "url = \"https://www.intel.com/content/www/us/en/ark/products/series/236644/5th-gen-intel-xeon-scalable-processors.html\"\n", "response = requests.get(url)\n", - "soup = BeautifulSoup(response.text, 'html.parser')" + "soup = BeautifulSoup(response.text, \"html.parser\")" ] }, { @@ -454,25 +454,26 @@ ], "source": [ "# Find the table\n", - "table = soup.find('table', id='product-table')\n", + "table = soup.find(\"table\", id=\"product-table\")\n", "\n", "# Extract headers\n", "headers = []\n", - "for th in table.find_all('th'):\n", - " header_text = th.find('div', class_='header-text-space').text.strip()\n", + "for th in table.find_all(\"th\"):\n", + " header_text = th.find(\"div\", class_=\"header-text-space\").text.strip()\n", " headers.append(header_text)\n", "\n", "# Extract rows\n", "data = []\n", - "for row in table.find('tbody').find_all('tr'):\n", + "for row in table.find(\"tbody\").find_all(\"tr\"):\n", " row_data = {}\n", - " cells = row.find_all('td')\n", + " cells = row.find_all(\"td\")\n", " for i, cell in enumerate(cells):\n", " row_data[headers[i]] = cell.text.strip()\n", " data.append(row_data)\n", "\n", "# Convert to pandas DataFrame for easy viewing/export\n", "import pandas as pd\n", + "\n", "df = pd.DataFrame(data)\n", "print(df)" ] @@ -526,7 +527,7 @@ } ], "source": [ - "df['TDP'].replace(\"W\", \"\")" + "df[\"TDP\"].replace(\"W\", \"\")" ] }, { @@ -554,24 +555,28 @@ "\n", "# Path to your manually exported AMD CPU dataset.\n", "# (Adjust the file path as needed.)\n", - "amd_csv_path = './AMD_CPU_desktop_laptop.csv'\n", + "amd_csv_path = \"./AMD_CPU_desktop_laptop.csv\"\n", "\n", "try:\n", " amd_df = pd.read_csv(amd_csv_path)\n", - " amd_df = amd_df[amd_df['Launch Date'].str.contains(\"2024|2025\", na=False)]\n", - " amd_df = amd_df[amd_df['Form Factor'].str.contains(\"Desktops\", na=False)]\n", - " \n", + " amd_df = amd_df[amd_df[\"Launch Date\"].str.contains(\"2024|2025\", na=False)]\n", + " amd_df = amd_df[amd_df[\"Form Factor\"].str.contains(\"Desktops\", na=False)]\n", + "\n", " # Convert columns to numeric, forcing errors to NaN\n", " # amd_df['Default TDP'] = amd_df['Default TDP'].str.replace('W', '').astype(float)\n", - " amd_df['TDP'] = pd.to_numeric(amd_df['Default TDP'].str.replace('W', ''), errors='coerce')\n", - " amd_df['# of Threads'] = pd.to_numeric(amd_df['# of Threads'], errors='coerce')\n", - " \n", + " amd_df[\"TDP\"] = pd.to_numeric(\n", + " amd_df[\"Default TDP\"].str.replace(\"W\", \"\"), errors=\"coerce\"\n", + " )\n", + " amd_df[\"# of Threads\"] = pd.to_numeric(amd_df[\"# of Threads\"], errors=\"coerce\")\n", + "\n", " # It is assumed the CSV contains columns named 'TDP' (in Watts) and 'Total Cores'\n", " # Adjust the column names if they differ.\n", - " amd_df['TDP_per_core'] = amd_df['TDP'] / amd_df['# of Threads']\n", - " \n", - " average_tdp_per_core = amd_df['TDP_per_core'].mean()\n", - " print(\"Average TDP per core from AMD dataset: {:.2f} W\".format(average_tdp_per_core))\n", + " amd_df[\"TDP_per_core\"] = amd_df[\"TDP\"] / amd_df[\"# of Threads\"]\n", + "\n", + " average_tdp_per_core = amd_df[\"TDP_per_core\"].mean()\n", + " print(\n", + " \"Average TDP per core from AMD dataset: {:.2f} W\".format(average_tdp_per_core)\n", + " )\n", "except Exception as e:\n", " print(\"Error loading or processing AMD dataset:\", e)" ] @@ -595,23 +600,27 @@ "\n", "# Path to your manually exported AMD CPU dataset.\n", "# (Adjust the file path as needed.)\n", - "amd_csv_path = './AMD_Server_Processor_Specifications.csv'\n", + "amd_csv_path = \"./AMD_Server_Processor_Specifications.csv\"\n", "\n", "try:\n", " amd_df = pd.read_csv(amd_csv_path)\n", - " amd_df = amd_df[amd_df['Launch Date'].str.contains(\"2024|2025\", na=False)]\n", - " \n", + " amd_df = amd_df[amd_df[\"Launch Date\"].str.contains(\"2024|2025\", na=False)]\n", + "\n", " # Convert columns to numeric, forcing errors to NaN\n", " # amd_df['Default TDP'] = amd_df['Default TDP'].str.replace('W', '').astype(float)\n", - " amd_df['TDP'] = pd.to_numeric(amd_df['Default TDP'].str.replace('W', ''), errors='coerce')\n", - " amd_df['# of Threads'] = pd.to_numeric(amd_df['# of Threads'], errors='coerce')\n", - " \n", + " amd_df[\"TDP\"] = pd.to_numeric(\n", + " amd_df[\"Default TDP\"].str.replace(\"W\", \"\"), errors=\"coerce\"\n", + " )\n", + " amd_df[\"# of Threads\"] = pd.to_numeric(amd_df[\"# of Threads\"], errors=\"coerce\")\n", + "\n", " # It is assumed the CSV contains columns named 'TDP' (in Watts) and 'Total Cores'\n", " # Adjust the column names if they differ.\n", - " amd_df['TDP_per_core'] = amd_df['TDP'] / amd_df['# of Threads']\n", - " \n", - " average_tdp_per_core = amd_df['TDP_per_core'].mean()\n", - " print(\"Average TDP per core from AMD dataset: {:.2f} W\".format(average_tdp_per_core))\n", + " amd_df[\"TDP_per_core\"] = amd_df[\"TDP\"] / amd_df[\"# of Threads\"]\n", + "\n", + " average_tdp_per_core = amd_df[\"TDP_per_core\"].mean()\n", + " print(\n", + " \"Average TDP per core from AMD dataset: {:.2f} W\".format(average_tdp_per_core)\n", + " )\n", "except Exception as e:\n", " print(\"Error loading or processing AMD dataset:\", e)" ] @@ -1055,7 +1064,7 @@ } ], "source": [ - "amd_df[['Name', 'TDP', '# of Threads', 'TDP_per_core', 'Launch Date']]" + "amd_df[[\"Name\", \"TDP\", \"# of Threads\", \"TDP_per_core\", \"Launch Date\"]]" ] }, { @@ -1179,7 +1188,7 @@ } ], "source": [ - "df = pd.read_csv('cpu_power.csv')\n", + "df = pd.read_csv(\"cpu_power.csv\")\n", "df" ] }, @@ -1246,12 +1255,14 @@ } ], "source": [ - "amd_csv_path = './AMD_Server_Processor_Specifications.csv'\n", + "amd_csv_path = \"./AMD_Server_Processor_Specifications.csv\"\n", "amd_df = pd.read_csv(amd_csv_path)\n", - "amd_df['TDP'] = pd.to_numeric(amd_df['Default TDP'].str.replace('W', ''), errors='coerce')\n", - "amd_df['Name'] = amd_df['Name'].str.replace('™', '')\n", - "amd_server = amd_df[['Name', 'TDP' ]]\n", - "amd_server = amd_server.dropna(subset=['TDP'])\n", + "amd_df[\"TDP\"] = pd.to_numeric(\n", + " amd_df[\"Default TDP\"].str.replace(\"W\", \"\"), errors=\"coerce\"\n", + ")\n", + "amd_df[\"Name\"] = amd_df[\"Name\"].str.replace(\"™\", \"\")\n", + "amd_server = amd_df[[\"Name\", \"TDP\"]]\n", + "amd_server = amd_server.dropna(subset=[\"TDP\"])\n", "amd_server.head(3)" ] }, @@ -1406,11 +1417,13 @@ ], "source": [ "# Merge df with amd_server, avoiding duplicates\n", - "amd_server['TDP'] = amd_server['TDP'].astype(int).astype(str)\n", - "merged_df = df.merge(amd_server, on='Name', how='outer', suffixes=('', '_AMD'), indicator=True)\n", + "amd_server[\"TDP\"] = amd_server[\"TDP\"].astype(int).astype(str)\n", + "merged_df = df.merge(\n", + " amd_server, on=\"Name\", how=\"outer\", suffixes=(\"\", \"_AMD\"), indicator=True\n", + ")\n", "# Filter for new entries that are only in amd_server\n", - "new_cpus = merged_df[merged_df['_merge'] == 'right_only']\n", - "new_cpus['TDP'] = new_cpus['TDP_AMD']\n", + "new_cpus = merged_df[merged_df[\"_merge\"] == \"right_only\"]\n", + "new_cpus[\"TDP\"] = new_cpus[\"TDP_AMD\"]\n", "new_cpus" ] }, @@ -1528,11 +1541,9 @@ } ], "source": [ - "\n", - "\n", "# merged_df.query('Name.str.contains(\"EPYC\")')\n", - "new_cpus_to_add = new_cpus.drop(columns=['_merge']).loc[:, df.columns]\n", - "new_cpus_to_add\n" + "new_cpus_to_add = new_cpus.drop(columns=[\"_merge\"]).loc[:, df.columns]\n", + "new_cpus_to_add" ] }, { @@ -1588,7 +1599,7 @@ "source": [ "# Option 2: Append the new CPUs to the original df\n", "df = pd.concat([df, new_cpus_to_add], ignore_index=True)\n", - "df.sort_values('Name', ascending=True, inplace=True)\n", + "df.sort_values(\"Name\", ascending=True, inplace=True)\n", "df.query('Name.str.contains(\"AMD EPYC 4124P\")')" ] }, @@ -1598,7 +1609,36 @@ "metadata": {}, "outputs": [], "source": [ - "df.to_csv('cpu_power.csv', index=False)" + "df.to_csv(\"cpu_power.csv\", index=False)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Remove with..." + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "# Load the existing dataset\n", + "df = pd.read_csv(\"../cpu_power.csv\")\n", + "# Replace with re.sub(r\" with.*\", \"\", name)\n", + "def clean_cpu_name(name):\n", + " import re\n", + " # Remove \"with\" and everything after it\n", + " name = re.sub(r\" with.*\", \"\", name)\n", + " # Remove \"™\" symbol\n", + " name = name.replace(\"™\", \"\")\n", + " return name.strip()\n", + "df[\"Name\"] = df[\"Name\"].apply(clean_cpu_name)\n", + "# Save the cleaned dataset\n", + "df.to_csv(\"../cpu_power.csv\", index=False)" ] }, { @@ -1609,7 +1649,7 @@ ], "metadata": { "kernelspec": { - "display_name": "codecarbon", + "display_name": "3.10.5", "language": "python", "name": "python3" }, @@ -1623,7 +1663,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.12.3" + "version": "3.10.5" } }, "nbformat": 4, diff --git a/codecarbon/data/hardware/cpu_dataset_builder/README.md b/codecarbon/data/hardware/cpu_dataset_builder/README.md new file mode 100644 index 000000000..2bf7aab1b --- /dev/null +++ b/codecarbon/data/hardware/cpu_dataset_builder/README.md @@ -0,0 +1,15 @@ +# How to update the CPU database + +To update the CPU database, you have to run: + +```bash +cd codecarbon/data/hardware/cpu_dataset_builder +hatch run pip install playwright beautifulsoup4 +hatch run python intel_cpu_scrapper.py +hatch run python amd_cpu_scrapper.py +hatch run python merge_scrapped_cpu_power.py +``` + +Then commit the changes to the CSV files. + +CodeCarbon only use the `cpu_power.csv` file, but we keep the other files for reference and to allow someone else to use them if needed. diff --git a/codecarbon/data/hardware/AMD_CPU_desktop_laptop.csv b/codecarbon/data/hardware/cpu_dataset_builder/amd_cpu_desktop_dataset.csv similarity index 96% rename from codecarbon/data/hardware/AMD_CPU_desktop_laptop.csv rename to codecarbon/data/hardware/cpu_dataset_builder/amd_cpu_desktop_dataset.csv index 1416eed18..a99d01fdb 100644 --- a/codecarbon/data/hardware/AMD_CPU_desktop_laptop.csv +++ b/codecarbon/data/hardware/cpu_dataset_builder/amd_cpu_desktop_dataset.csv @@ -1,11 +1,20 @@ "Name","Family","Series","Form Factor","# of CPU Cores","# of Threads","Max. Boost Clock","Base Clock","L2 Cache","L3 Cache","Default TDP","L1 Cache","AMD Configurable TDP (cTDP)","Processor Technology for CPU Cores","Unlocked for Overclocking","CPU Socket","Thermal Solution (PIB)","Recommended Cooler","Thermal Solution (MPK)","Max. Operating Temperature (Tjmax)","Launch Date","*OS Support","PCI Express® Version","System Memory Type","Memory Channels","System Memory Specification","Graphics Model","Graphics Core Count","Graphics Frequency","AMD Ryzen™ AI","Product ID Boxed","Product ID Tray","Product ID MPK","Supported Technologies" +"AMD Ryzen™ Threadripper™ PRO 9995WX","Ryzen Threadripper PRO","Ryzen Threadripper PRO 9000 WX-Series","Desktops","96","192","Up to 5.4 GHz","2.5 GHz","96 MB","384 MB","350W","7680 KB","","TSMC 4nm FinFET","Yes","sTR5","Not Included","","","95°C","","Windows 11 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit , Windows 10 - 64-Bit Edition","PCIe® 5.0","DDR5","8","Up to 6400 MT/s","Discrete Graphics Card Required","","","","100-100001361WOF","100-000001361","","AMD EXPO™ Technology , AMD PRO technologies , AMD Ryzen™ Technologies" +"AMD Ryzen™ Threadripper™ PRO 9985WX","Ryzen Threadripper PRO","Ryzen Threadripper PRO 9000 WX-Series","Desktops","64","128","Up to 5.4 GHz","3.2 GHz","64 MB","256 MB","350W","5120 KB","","TSMC 4nm FinFET","Yes","sTR5","Not Included","","","95°C","","Windows 11 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit , Windows 10 - 64-Bit Edition","PCIe® 5.0","DDR5","8","Up to 6400 MT/s","Discrete Graphics Card Required","","","","100-100000722WOZ","100-000000722","","AMD EXPO™ Technology , AMD PRO technologies , AMD Ryzen™ Technologies" "AMD Ryzen™ AI Max+ PRO 395","Ryzen PRO","Ryzen AI Max PRO 300 Series","Laptops , Desktops","16","32","Up to 5.1 GHz","3 GHz","16 MB","64 MB","55W","","45-120W","TSMC 4nm FinFET","","FP11","","","","100°C","","Windows 11 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 4.0","256-bit LPDDR5x","","","Radeon 8060S Graphics","40","2900 MHz","Available","","100-000001243","","" +"AMD Ryzen™ Threadripper™ PRO 9975WX","Ryzen Threadripper PRO","Ryzen Threadripper PRO 9000 WX-Series","Desktops","32","64","Up to 5.4 GHz","4 GHz","32 MB","128 MB","350W","2560 KB","","TSMC 4nm FinFET","Yes","sTR5","Not Included","","","95°C","","Windows 11 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit , Windows 10 - 64-Bit Edition","PCIe® 5.0","DDR5","8","Up to 6400 MT/s","Discrete Graphics Card Required","","","","100-100000723WOF","100-000000723","","AMD EXPO™ Technology , AMD PRO technologies , AMD Ryzen™ Technologies" "AMD Ryzen™ AI Max PRO 390","Ryzen PRO","Ryzen AI Max PRO 300 Series","Laptops , Desktops","12","24","Up to 5 GHz","3.2 GHz","12 MB","64 MB","55W","","45-120W","TSMC 4nm FinFET","","FP11","","","","100°C","","Windows 11 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 4.0","256-bit LPDDR5x","","","Radeon 8050S Graphics","32","2800 MHz","Available","","100-000001421","","" +"AMD Ryzen™ Threadripper™ PRO 9965WX","Ryzen Threadripper PRO","Ryzen Threadripper PRO 9000 WX-Series","Desktops","24","48","Up to 5.4 GHz","4.2 GHz","24 MB","128 MB","350W","1920 KB","","TSMC 4nm FinFET","Yes","sTR5","Not Included","","","95°C","","Windows 11 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit , Windows 10 - 64-Bit Edition","PCIe® 5.0","DDR5","8","Up to 6400 MT/s","Discrete Graphics Card Required","","","","100-100000724WOF","100-000000724","","AMD EXPO™ Technology , AMD PRO technologies , AMD Ryzen™ Technologies" "AMD Ryzen™ AI Max PRO 385","Ryzen PRO","Ryzen AI Max PRO 300 Series","Laptops , Desktops","8","16","Up to 5 GHz","3.6 GHz","8 MB","32 MB","55W","","45-120W","TSMC 4nm FinFET","","FP11","","","","100°C","","Windows 11 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 4.0","256-bit LPDDR5x","","","Radeon 8050S Graphics","32","2800 MHz","Available","","100-000001422","","" +"AMD Ryzen™ Threadripper™ PRO 9955WX","Ryzen Threadripper PRO","Ryzen Threadripper PRO 9000 WX-Series","Desktops","16","32","Up to 5.4 GHz","4.5 GHz","16 MB","64 MB","350W","1280 KB","","TSMC 4nm FinFET","Yes","sTR5","Not Included","","","95°C","","Windows 11 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit , Windows 10 - 64-Bit Edition","PCIe® 5.0","DDR5","8","Up to 6400 MT/s","Discrete Graphics Card Required","","","","","100-000000725","","AMD EXPO™ Technology , AMD PRO technologies , AMD Ryzen™ Technologies" "AMD Ryzen™ AI Max PRO 380","Ryzen PRO","Ryzen AI Max PRO 300 Series","Laptops , Desktops","6","12","Up to 4.9 GHz","3.6 GHz","6 MB","16 MB","55W","","45-120W","TSMC 4nm FinFET","","FP11","","","","100°C","","Windows 11 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 4.0","128-bit LPDDR5x","","","Radeon 8040S Graphics","16","2800 MHz","Available","","100-000001425","","" -"AMD Ryzen™ AI 9 HX PRO 375","Ryzen","Ryzen AI PRO 300 Series","Laptops , Desktops","12","24","Up to 5.1 GHz","2 GHz","12 MB","24 MB","28W","","15-54W","TSMC 4nm FinFET","","FP8","","","","100°C","","Windows 11 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 4.0","DDR5 (FP8) , LPDDR5X (FP8)","2","","AMD Radeon™ 890M","16","2900 MHz","Available","","100-000001683","","" -"AMD Ryzen™ AI 9 HX PRO 370","Ryzen","Ryzen AI PRO 300 Series","Laptops , Desktops","12","24","Up to 5.1 GHz","2 GHz","12 MB","24 MB","28W","","15-54W","TSMC 4nm FinFET","","FP8","","","","100°C","","Windows 11 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 4.0","DDR5 (FP8) , LPDDR5X (FP8)","2","","AMD Radeon™ 890M","16","2900 MHz","Available","","100-000001569","","" -"AMD Ryzen™ AI 7 PRO 360","Ryzen","Ryzen AI PRO 300 Series","Laptops , Desktops","8","16","Up to 5 GHz","2 GHz","8 MB","16 MB","28W","","15-54W","TSMC 4nm FinFET","","FP8","","","","100°C","","Windows 11 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 4.0","DDR5 (FP8) , LPDDR5X (FP8)","2","","AMD Radeon™ 880M","12","2900 MHz","Available","","100-000001571","","" +"AMD Ryzen™ Threadripper™ PRO 9945WX","Ryzen Threadripper PRO","Ryzen Threadripper PRO 9000 WX-Series","Desktops","12","24","Up to 5.4 GHz","4.7 GHz","12 MB","64 MB","350W","960 KB","","TSMC 4nm FinFET","Yes","sTR5","Not Included","","","95°C","","Windows 11 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit , Windows 10 - 64-Bit Edition","PCIe® 5.0","DDR5","8","Up to 6400 MT/s","Discrete Graphics Card Required","","","","","100-000000726","","AMD EXPO™ Technology , AMD PRO technologies , AMD Ryzen™ Technologies" +"AMD Ryzen™ AI 9 HX PRO 375","Ryzen PRO","Ryzen AI PRO 300 Series","Laptops , Desktops","12","24","Up to 5.1 GHz","2 GHz","12 MB","24 MB","28W","","15-54W","TSMC 4nm FinFET","","FP8","","","","100°C","","Windows 11 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 4.0","DDR5 (FP8) , LPDDR5X (FP8)","2","","AMD Radeon™ 890M","16","2900 MHz","Available","","100-000001683","","" +"AMD Ryzen™ Threadripper™ 9980X","Ryzen Threadripper","Ryzen Threadripper 9000 Series","Desktops","64","128","Up to 5.4 GHz","3.2 GHz","64 MB","256 MB","350W","5120 KB","","TSMC 4nm FinFET","Yes","sTR5","Not Included","","","95°C","","Windows 11 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit , Windows 10 - 64-Bit Edition","PCIe® 5.0","DDR5","4","Up to 6400 MT/s","Discrete Graphics Card Required","","","","100-100001593WOF","100-000001593","","AMD EXPO™ Technology , AMD Ryzen™ Technologies" +"AMD Ryzen™ AI 9 HX PRO 370","Ryzen PRO","Ryzen AI PRO 300 Series","Laptops , Desktops","12","24","Up to 5.1 GHz","2 GHz","12 MB","24 MB","28W","","15-54W","TSMC 4nm FinFET","","FP8","","","","100°C","","Windows 11 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 4.0","DDR5 (FP8) , LPDDR5X (FP8)","2","","AMD Radeon™ 890M","16","2900 MHz","Available","","100-000001569","","" +"AMD Ryzen™ Threadripper™ 9970X","Ryzen Threadripper","Ryzen Threadripper 9000 Series","Desktops","32","64","Up to 5.4 GHz","4 GHz","32 MB","128 MB","350W","2560 KB","","TSMC 4nm FinFET","Yes","sTR5","Not Included","","","95°C","","Windows 11 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit , Windows 10 - 64-Bit Edition","PCIe® 5.0","DDR5","4","Up to 6400 MT/s","Discrete Graphics Card Required","","","","100-100001594WOF","100-000001594","","AMD EXPO™ Technology , AMD Ryzen™ Technologies" +"AMD Ryzen™ AI 7 PRO 360","Ryzen PRO","Ryzen AI PRO 300 Series","Laptops , Desktops","8","16","Up to 5 GHz","2 GHz","8 MB","16 MB","28W","","15-54W","TSMC 4nm FinFET","","FP8","","","","100°C","","Windows 11 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 4.0","DDR5 (FP8) , LPDDR5X (FP8)","2","","AMD Radeon™ 880M","12","2900 MHz","Available","","100-000001571","","" +"AMD Ryzen™ Threadripper™ 9960X","Ryzen Threadripper","Ryzen Threadripper 9000 Series","Desktops","24","48","Up to 5.4 GHz","4.2 GHz","24 MB","128 MB","350W","1920 KB","","TSMC 4nm FinFET","Yes","sTR5","Not Included","","","95°C","","Windows 11 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit , Windows 10 - 64-Bit Edition","PCIe® 5.0","DDR5","4","Up to 6400 MT/s","Discrete Graphics Card Required","","","","100-100001595WOF","100-000001595","","AMD EXPO™ Technology , AMD Ryzen™ Technologies" "AMD Ryzen™ AI 7 PRO 350","Ryzen PRO","Ryzen AI PRO 300 Series","Laptops , Desktops","8","16","Up to 5 GHz","2 GHz","8 MB","16 MB","28W","","15-54W","TSMC 4nm FinFET","","FP8","","","","100°C","","Windows 11 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 4.0","DDR5 (FP8) , LPDDR5X (FP8)","2","","AMD Radeon™ 860M","8","3000 MHz","Available","","100-000000713","","" "AMD Ryzen™ AI 5 PRO 340","Ryzen PRO","Ryzen AI PRO 300 Series","Laptops , Desktops","6","12","Up to 4.8 GHz","2 GHz","6 MB","16 MB","28W","","15-54W","TSMC 4nm FinFET","","FP8","","","","100°C","","Windows 11 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 4.0","DDR5 (FP8) , LPDDR5X (FP8)","2","","AMD Radeon™ 840M","4","2900 MHz","Available","","100-000001600","","" "AMD Ryzen™ AI Max+ 395","Ryzen","Ryzen AI Max 300 Series","Laptops , Desktops","16","32","Up to 5.1 GHz","3 GHz","16 MB","64 MB","55W","","45-120W","TSMC 4nm FinFET","","FP11","","","","100°C","","Windows 11 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 4.0","256-bit LPDDR5x","","","Radeon 8060S Graphics","40","2900 MHz","Available","","100-000001099","","" @@ -13,10 +22,10 @@ "AMD Ryzen™ AI Max 385","Ryzen","Ryzen AI Max 300 Series","Laptops , Desktops","8","16","Up to 5 GHz","3.6 GHz","8 MB","32 MB","55W","","45-120W","TSMC 4nm FinFET","","FP11","","","","100°C","","Windows 11 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 4.0","256-bit LPDDR5x","","","Radeon 8050S Graphics","32","2800 MHz","Available","","100-000001424","","" "AMD Ryzen™ AI 9 HX 375","Ryzen","Ryzen AI 300 Series","Laptops , Desktops","12","24","Up to 5.1 GHz","2 GHz","12 MB","24 MB","28W","","15-54W","TSMC 4nm FinFET","","FP8","","","","100°C","","Windows 11 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 4.0","DDR5 (FP8) , LPDDR5X (FP8)","2","","AMD Radeon™ 890M","16","2900 MHz","Available","","100-000001682","","" "AMD Ryzen™ Z2 Extreme","Ryzen","Ryzen Z2","Handheld","8","16","Up to 5 GHz","2 GHz","8 MB","16 MB","28W","","15-35W","","","","","","","","","","","","","","AMD Radeon™ Graphics","16","","","","100-000001684","","AMD Radeon™ Super Resolution , AMD Radeon™ Boost , AMD Radeon™ Anti-Lag , AMD FreeSync™ Technology , AMD Radeon™ Chill , AMD HYPR-RX , AMD FidelityFX™ Super Resolution" -"AMD Ryzen™ AI 9 HX 370","Ryzen","Ryzen AI 300 Series","Laptops , Desktops","12","24","Up to 5.1 GHz","2 GHz","12 MB","24 MB","28W","","15-54W","TSMC 4nm FinFET","","FP8","","","","100°C","","Windows 11 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 4.0","DDR5 (FP8) , LPDDR5X (FP8)","2","","AMD Radeon™ 890M","16","2900 MHz","Available","","100-000000994 (FP8)","","" "AMD Ryzen™ Z2","Ryzen","Ryzen Z2","Handheld","8","16","Up to 5.1 GHz","3.3 GHz","8 MB","16 MB","28W","","15-30W","","","","","","","","","","","","","","AMD Radeon™ Graphics","12","","","","100-000001753","","AMD Radeon™ Super Resolution , AMD Radeon™ Boost , AMD Radeon™ Anti-Lag , AMD FreeSync™ Technology , AMD Radeon™ Chill , AMD HYPR-RX , AMD FidelityFX™ Super Resolution" -"AMD Ryzen™ AI 9 365","Ryzen","Ryzen AI 300 Series","Laptops , Desktops","10","20","Up to 5 GHz","2 GHz","10 MB","24 MB","28W","","15-54W","TSMC 4nm FinFET","","FP8","","","","100°C","","Windows 11 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 4.0","DDR5 (FP8) , LPDDR5X (FP8)","2","","AMD Radeon™ 880M","12","2900 MHz","Available","","100-000001530 (FP8)","","" +"AMD Ryzen™ AI 9 HX 370","Ryzen","Ryzen AI 300 Series","Laptops , Desktops","12","24","Up to 5.1 GHz","2 GHz","12 MB","24 MB","28W","","15-54W","TSMC 4nm FinFET","","FP8","","","","100°C","","Windows 11 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 4.0","DDR5 (FP8) , LPDDR5X (FP8)","2","","AMD Radeon™ 890M","16","2900 MHz","Available","","100-000000994 (FP8)","","" "AMD Ryzen™ Z2 Go","Ryzen","Ryzen Z2","Handheld","4","8","Up to 4.3 GHz","3 GHz","2 MB","8 MB","28W","","15-30W","","","","","","","","","","","","","","AMD Radeon™ Graphics","12","","","","100-000001672","","AMD Radeon™ Super Resolution , AMD Radeon™ Boost , AMD Radeon™ Anti-Lag , AMD FreeSync™ Technology , AMD Radeon™ Chill" +"AMD Ryzen™ AI 9 365","Ryzen","Ryzen AI 300 Series","Laptops , Desktops","10","20","Up to 5 GHz","2 GHz","10 MB","24 MB","28W","","15-54W","TSMC 4nm FinFET","","FP8","","","","100°C","","Windows 11 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 4.0","DDR5 (FP8) , LPDDR5X (FP8)","2","","AMD Radeon™ 880M","12","2900 MHz","Available","","100-000001530 (FP8)","","" "AMD Ryzen™ AI 7 350","Ryzen","Ryzen AI 300 Series","Laptops , Desktops","8","16","Up to 5 GHz","2 GHz","8 MB","16 MB","28W","","15-54W","TSMC 4nm FinFET","","FP8","","","","100°C","","Windows 11 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 4.0","DDR5 (FP8) , LPDDR5X (FP8)","2","","AMD Radeon™ 860M","8","3000 MHz","Available","","100-000001601","","" "AMD Ryzen™ AI 5 340","Ryzen","Ryzen AI 300 Series","Laptops , Desktops","6","12","Up to 4.8 GHz","2 GHz","6 MB","16 MB","28W","","15-54W","TSMC 4nm FinFET","","FP8","","","","100°C","","Windows 11 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 4.0","DDR5 (FP8) , LPDDR5X (FP8)","2","","AMD Radeon™ 840M","4","2900 MHz","Available","","100-000001602","","" "AMD Ryzen™ 7 PRO 250","Ryzen PRO","Ryzen PRO 200 Series","Laptops , Desktops","8","16","Up to 5.1 GHz","3.3 GHz","8 MB","16 MB","28W","","15-30W","TSMC 4nm FinFET","No","FP8","","","","100°C","","Windows 11 - 64-Bit Edition , Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 4.0","DDR5 (FP8) , LPDDR5X (FP8)","2","","AMD Radeon™ 780M","12","2700 MHz","Available","","100-000001725","","" @@ -31,16 +40,16 @@ "AMD Ryzen™ 5 220","Ryzen","Ryzen 200 Series","Laptops , Desktops","6","12","Up to 4.9 GHz","3.2 GHz","6 MB","16 MB","28W","","15-30W","TSMC 4nm FinFET","No","FP8","","","","100°C","","Windows 11 - 64-Bit Edition , Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 4.0","DDR5 (FP8) , LPDDR5X (FP8)","2","","AMD Radeon™ 740M","4","2800 MHz","Not Available","","100-000001611","","" "AMD Ryzen™ 3 210","Ryzen","Ryzen 200 Series","Laptops , Desktops","4","8","Up to 4.7 GHz","3 GHz","4 MB","8 MB","28W","","15-30W","TSMC 4nm FinFET","No","FP8","","","","100°C","","Windows 11 - 64-Bit Edition , Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 4.0","DDR5 (FP8) , LPDDR5X (FP8)","2","","AMD Radeon™ 740M","4","2500 MHz","Not Available","","100-000001612","","" "AMD Ryzen™ 9 9955HX3D","Ryzen","Ryzen 9000 Series","Laptops , Desktops","16","32","Up to 5.4 GHz","2.5 GHz","16 MB","128 MB","55W","1280 KB","55-75W","TSMC 4nm FinFET","Yes","FL1","","","","100°C","","Windows 11 - 64-Bit Edition , Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 5.0","DDR5","2","","AMD Radeon™ 610M","2","2200 MHz","","","100-000001030","","" -"AMD Ryzen™ 9 9950X3D","Ryzen","Ryzen 9000 Series","Desktops , Boxed Processor","16","32","Up to 5.7 GHz","4.3 GHz","16 MB","128 MB","170W","1280 KB","","TSMC 4nm FinFET","Yes","AM5","Not Included","Liquid cooler recommended for optimal performance","","95°C","","Windows 11 - 64-Bit Edition , Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 5.0","DDR5","2","","AMD Radeon™ Graphics","2","2200 MHz","","100-100000719WOF","100-000000719","","AMD EXPO™ Technology , AMD Ryzen™ Technologies" +"AMD Ryzen™ 9 9950X3D","Ryzen","Ryzen 9000 Series","Desktops , Boxed Processor","16","32","Up to 5.7 GHz","4.3 GHz","16 MB","128 MB","170W","1280 KB","","TSMC 4nm FinFET","Yes","AM5","Not Included","Liquid cooler recommended for optimal performance","","95°C","03/12/2025","Windows 11 - 64-Bit Edition , Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 5.0","DDR5","2","","AMD Radeon™ Graphics","2","2200 MHz","","100-100000719WOF","100-000000719","","AMD EXPO™ Technology , AMD Ryzen™ Technologies" "AMD Ryzen™ 9 9955HX","Ryzen","Ryzen 9000 Series","Laptops , Desktops","16","32","Up to 5.4 GHz","2.5 GHz","16 MB","64 MB","55W","1280 KB","55-75W","TSMC 4nm FinFET","Yes","FL1","","","","100°C","","Windows 11 - 64-Bit Edition , Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 5.0","DDR5","2","","AMD Radeon™ 610M","2","2200 MHz","","","100-000001028","","" "AMD Ryzen™ 9 9950X","Ryzen","Ryzen 9000 Series","Desktops , Boxed Processor","16","32","Up to 5.7 GHz","4.3 GHz","16 MB","64 MB","170W","1280 KB","","TSMC 4nm FinFET","Yes","AM5","Not Included","Liquid cooler recommended for optimal performance","","95°C","08/15/2024","Windows 11 - 64-Bit Edition , Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 5.0","DDR5","2","","AMD Radeon™ Graphics","2","2200 MHz","","100-100001277WOF","100-000001277","","AMD EXPO™ Technology , AMD Ryzen™ Technologies" -"AMD Ryzen™ 9 9900X3D","Ryzen","Ryzen 9000 Series","Desktops , Boxed Processor","12","24","Up to 5.5 GHz","4.4 GHz","12 MB","128 MB","120W","960 KB","","TSMC 4nm FinFET","Yes","AM5","Not Included","Liquid cooler recommended for optimal performance","","95°C","","Windows 11 - 64-Bit Edition , Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 5.0","DDR5","2","","AMD Radeon™ Graphics","2","2200 MHz","","100-1000001368WOF","100-000001368","","AMD EXPO™ Technology , AMD Ryzen™ Technologies" +"AMD Ryzen™ 9 9900X3D","Ryzen","Ryzen 9000 Series","Desktops , Boxed Processor","12","24","Up to 5.5 GHz","4.4 GHz","12 MB","128 MB","120W","960 KB","","TSMC 4nm FinFET","Yes","AM5","Not Included","Liquid cooler recommended for optimal performance","","95°C","03/12/2025","Windows 11 - 64-Bit Edition , Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 5.0","DDR5","2","","AMD Radeon™ Graphics","2","2200 MHz","","100-100001368WOF","100-000001368","","AMD EXPO™ Technology , AMD Ryzen™ Technologies" "AMD Ryzen™ 9 9900X","Ryzen","Ryzen 9000 Series","Desktops , Boxed Processor","12","24","Up to 5.6 GHz","4.4 GHz","12 MB","64 MB","120W","960 KB","","TSMC 4nm FinFET","Yes","AM5","Not Included","Liquid cooler recommended for optimal performance","","95°C","08/15/2024","Windows 11 - 64-Bit Edition , Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 5.0","DDR5","2","","AMD Radeon™ Graphics","2","2200 MHz","","100-100000662WOF","100-000000662","","AMD EXPO™ Technology , AMD Ryzen™ Technologies" "AMD Ryzen™ 9 9850HX","Ryzen","Ryzen 9000 Series","Laptops , Desktops","12","24","Up to 5.2 GHz","3 GHz","12 MB","64 MB","55W","960 KB","45-75W","TSMC 4nm FinFET","Yes","FL1","","","","100°C","","Windows 11 - 64-Bit Edition , Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 5.0","DDR5","2","","AMD Radeon™ 610M","2","2200 MHz","","","100-000001366","","" "AMD Ryzen™ 7 9800X3D","Ryzen","Ryzen 9000 Series","Desktops , Boxed Processor","8","16","Up to 5.2 GHz","4.7 GHz","8 MB","96 MB","120W","640 KB","","TSMC 4nm FinFET","Yes","AM5","Not Included","Liquid cooler recommended for optimal performance","","95°C","11/07/2024","Windows 11 - 64-Bit Edition , Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 5.0","DDR5","2","","AMD Radeon™ Graphics","2","2200 MHz","","100-100001084WOF","100-000001084","","AMD EXPO™ Technology , AMD Ryzen™ Technologies" "AMD Ryzen™ 7 9700X","Ryzen","Ryzen 9000 Series","Desktops , Boxed Processor","8","16","Up to 5.5 GHz","3.8 GHz","8 MB","32 MB","65W","640 KB","","TSMC 4nm FinFET","Yes","AM5","Not Included","Premium air cooler recommended for optimal performance","","95°C","08/08/2024","Windows 11 - 64-Bit Edition , Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 5.0","DDR5","2","","AMD Radeon™ Graphics","2","2200 MHz","","100-100001404WOF","100-000001404","","AMD EXPO™ Technology , AMD Ryzen™ Technologies" "AMD Ryzen™ 5 9600X","Ryzen","Ryzen 9000 Series","Desktops , Boxed Processor","6","12","Up to 5.4 GHz","3.9 GHz","6 MB","32 MB","65W","480 KB","","TSMC 4nm FinFET","Yes","AM5","Not Included","Premium air cooler recommended for optimal performance","","95°C","08/08/2024","Windows 11 - 64-Bit Edition , Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 5.0","DDR5","2","","AMD Radeon™ Graphics","2","2200 MHz","","100-100001405WOF","100-000001405","","AMD EXPO™ Technology , AMD Ryzen™ Technologies" -"AMD Ryzen™ 5 9600","Ryzen","Ryzen 9000 Series","Desktops , Boxed Processor","6","12","Up to 5.2 GHz","3.8 GHz","6 MB","32 MB","65W","480 KB","","TSMC 4nm FinFET","Yes","AM5","AMD Wraith Stealth","","","95°C","","Windows 11 - 64-Bit Edition , Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 5.0","DDR5","2","","AMD Radeon™ Graphics","2","2200 MHz","","100-100000718BOX","100-000000718","","AMD EXPO™ Technology , AMD Ryzen™ Technologies" +"AMD Ryzen™ 5 9600","Ryzen","Ryzen 9000 Series","Desktops , Boxed Processor","6","12","Up to 5.2 GHz","3.8 GHz","6 MB","32 MB","65W","480 KB","","TSMC 4nm FinFET","Yes","AM5","AMD Wraith Stealth","","","95°C","02/19/2025","Windows 11 - 64-Bit Edition , Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 5.0","DDR5","2","","AMD Radeon™ Graphics","2","2200 MHz","","100-100000718BOX","100-000000718","","AMD EXPO™ Technology , AMD Ryzen™ Technologies" "AMD Ryzen™ 9 PRO 8945HS","Ryzen PRO","Ryzen PRO 8000 Series","Desktops , 1L Desktops , Laptops , Mobile Workstations","8","16","Up to 5.2 GHz","4 GHz","8 MB","16 MB","45W","","35-54W","TSMC 4nm FinFET","No","FP7 , FP7r2","","","","100°C","","Windows 11 - 64-Bit Edition , Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 4.0","DDR5 (FP7r2) , LPDDR5X (FP7)","2","","AMD Radeon™ 780M","12","2800 MHz","Available","","100-000001314 (FP7r2) , 100-000001386 (FP7)","","" "AMD Ryzen™ 7 PRO 8840U","Ryzen PRO","Ryzen PRO 8000 Series","Desktops , 1L Desktops , Laptops , Mobile Workstations","8","16","Up to 5.1 GHz","3.3 GHz","8 MB","16 MB","28W","","15-30W","TSMC 4nm FinFET","No","FP7 , FP7r2","","","","100°C","","Windows 11 - 64-Bit Edition , Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 4.0","DDR5 (FP7r2) , LPDDR5X (FP7)","2","","AMD Radeon™ 780M","12","2700 MHz","Available","","100-000001317 (FP7r2) , 100-000001377 (FP7)","","" "AMD Ryzen™ 7 PRO 8845HS","Ryzen PRO","Ryzen PRO 8000 Series","Desktops , 1L Desktops , Laptops , Mobile Workstations","8","16","Up to 5.1 GHz","3.8 GHz","8 MB","16 MB","45W","","35-54W","TSMC 4nm FinFET","No","FP7 , FP7r2","","","","100°C","04/16/2024","Windows 11 - 64-Bit Edition , Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 4.0","DDR5 (FP7r2) , LPDDR5X (FP7)","2","","AMD Radeon™ 780M","12","2700 MHz","Available","","100-000001316 (FP7r2) , 100-000001387 (FP7)","","" @@ -55,12 +64,16 @@ "AMD Ryzen™ 5 PRO 8540U","Ryzen PRO","Ryzen PRO 8000 Series","Desktops , 1L Desktops , Laptops , Mobile Workstations","6","12","Up to 4.9 GHz","3.2 GHz","6 MB","16 MB","28W","","15-30W","TSMC 4nm FinFET","No","FP7 , FP7r2","","","","100°C","","Windows 11 - 64-Bit Edition , Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 4.0","DDR5 (FP7r2) , LPDDR5X (FP7)","2","","AMD Radeon™ 740M","4","2800 MHz","Not Available","","100-000001329 (FP7r2) , 100-000001331 (FP7)","","" "AMD Ryzen™ 5 PRO 8500GE","Ryzen PRO","Ryzen PRO 8000 Series","Desktops","6","12","Up to 5 GHz","3.4 GHz","6 MB","16 MB","35W","","","TSMC 4nm FinFET","","AM5","","","","95°C","4/16/2024","RHEL x86 64-Bit , Ubuntu x86 64-Bit , Windows 11 - 64-Bit Edition , Windows 10 - 64-Bit Edition","PCIe® 4.0","DDR5","2","","AMD Radeon™ 740M","4","2800 MHz","Not Available","","100-000001185 (AM5)","","" "AMD Ryzen™ 5 PRO 8500G","Ryzen PRO","Ryzen PRO 8000 Series","Desktops","6","12","Up to 5 GHz","3.5 GHz","6 MB","16 MB","65W","","45-65W","TSMC 4nm FinFET","","AM5","","","","95°C","4/16/2024","RHEL x86 64-Bit , Ubuntu x86 64-Bit , Windows 11 - 64-Bit Edition , Windows 10 - 64-Bit Edition","PCIe® 4.0","DDR5","2","","AMD Radeon™ 740M","4","2800 MHz","Not Available","","100-000001183 (AM5)","","" -"AMD Ryzen™ 9 8945HS","Ryzen","Ryzen 8000 Series","Laptops , Desktops","8","16","Up to 5.2 GHz","4 GHz","8 MB","16 MB","45W","","35-54W","TSMC 4nm FinFET","No","FP7 , FP7r2 , FP8","","","","100°C","","Windows 11 - 64-Bit Edition , Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 4.0","DDR5 (FP7r2) , LPDDR5X (FP7-FP8)","2","","AMD Radeon™ 780M","12","2800 MHz","Available","","100-000001319 (FP7r2) , 100-000001383 (FP7) , 100-000001309 (FP8)","","" "AMD Ryzen™ 3 PRO 8300GE","Ryzen PRO","Ryzen PRO 8000 Series","Desktops","4","8","Up to 4.9 GHz","3.5 GHz","4 MB","8 MB","35W","","","TSMC 4nm FinFET","","AM5","","","","95°C","4/16/2024","RHEL x86 64-Bit , Ubuntu x86 64-Bit , Windows 11 - 64-Bit Edition , Windows 10 - 64-Bit Edition","PCIe® 4.0","DDR5","2","","AMD Radeon™ 740M","4","2600 MHz","Not Available","","100-000001189 (AM5)","","" "AMD Ryzen™ 3 PRO 8300G","Ryzen PRO","Ryzen PRO 8000 Series","Desktops","4","8","Up to 4.9 GHz","3.4 GHz","4 MB","8 MB","65W","","45-65W","TSMC 4nm FinFET","","AM5","","","","95°C","4/16/2024","RHEL x86 64-Bit , Ubuntu x86 64-Bit , Windows 11 - 64-Bit Edition , Windows 10 - 64-Bit Edition","PCIe® 4.0","DDR5","2","","AMD Radeon™ 740M","4","2600 MHz","Not Available","","100-000001187 (AM5)","","" +"AMD Ryzen™ 9 8945HX","Ryzen","Ryzen 8000 Series","Laptops , Desktops","16","32","Up to 5.4 GHz","2.5 GHz","16 MB","64 MB","55W","1024 KB","55-75W","TSMC 5nm FinFET","Yes","FL1","","","","100°C","4/23/25","Windows 11 - 64-Bit Edition , Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 5.0","DDR5","2","","AMD Radeon™ 610M","2","2200 MHz","","","100-000001848","","" +"AMD Ryzen™ 9 8945HS","Ryzen","Ryzen 8000 Series","Laptops , Desktops","8","16","Up to 5.2 GHz","4 GHz","8 MB","16 MB","45W","","35-54W","TSMC 4nm FinFET","No","FP7 , FP7r2 , FP8","","","","100°C","","Windows 11 - 64-Bit Edition , Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 4.0","DDR5 (FP7r2) , LPDDR5X (FP7-FP8)","2","","AMD Radeon™ 780M","12","2800 MHz","Available","","100-000001319 (FP7r2) , 100-000001383 (FP7) , 100-000001309 (FP8)","","" +"AMD Ryzen™ 9 8940HX","Ryzen","Ryzen 8000 Series","Laptops , Desktops","16","32","Up to 5.3 GHz","2.4 GHz","16 MB","64 MB","55W","1024 KB","55-75W","TSMC 5nm FinFET","Yes","FL1","","","","100°C","4/23/25","Windows 11 - 64-Bit Edition , Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 5.0","DDR5","2","","AMD Radeon™ 610M","2","2200 MHz","","","100-000001849","","" "AMD Ryzen™ 7 8845HS","Ryzen","Ryzen 8000 Series","Laptops , Desktops","8","16","Up to 5.1 GHz","3.8 GHz","8 MB","16 MB","45W","","35-54W","TSMC 4nm FinFET","No","FP7 , FP7r2 , FP8","","","","100°C","12/06/2023","Windows 11 - 64-Bit Edition , Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 4.0","DDR5 (FP7r2) , LPDDR5X (FP7-FP8)","2","","AMD Radeon™ 780M","12","2700 MHz","Available","","100-000001322 (FP7r2) , 100-000001384 (FP7) , 100-000001311 (FP8)","","" "AMD Ryzen™ 7 8840U","Ryzen","Ryzen 8000 Series","Laptops , Desktops","8","16","Up to 5.1 GHz","3.3 GHz","8 MB","16 MB","28W","","15-30W","TSMC 4nm FinFET","No","FP7 , FP7r2 , FP8","","","","100°C","","Windows 11 - 64-Bit Edition , Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 4.0","DDR5 (FP7r2) , LPDDR5X (FP7-FP8)","2","","AMD Radeon™ 780M","12","2700 MHz","Available","","100-000001323 (FP7r2) , 100-000001375 (FP7) , 100-000001312 (FP8)","","" +"AMD Ryzen™ 7 8840HX","Ryzen","Ryzen 8000 Series","Laptops , Desktops","12","24","Up to 5.1 GHz","2.9 GHz","12 MB","64 MB","55W","768 KB","45-75W","TSMC 5nm FinFET","Yes","FL1","","","","100°C","4/23/25","Windows 11 - 64-Bit Edition , Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 5.0","DDR5","2","","AMD Radeon™ 610M","2","2200 MHz","","","100-000001850","","" "AMD Ryzen™ 7 8840HS","Ryzen","Ryzen 8000 Series","Laptops , Desktops","8","16","Up to 5.1 GHz","3.3 GHz","8 MB","16 MB","28W","","20-30W","TSMC 4nm FinFET","No","FP7 , FP7r2 , FP8","","","","100°C","","Windows 11 - 64-Bit Edition , Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 4.0","DDR5 (FP7r2) , LPDDR5X (FP7-FP8)","2","","AMD Radeon™ 780M","12","2700 MHz","Available","","100-000001372 (FP7r2) , 100-000001379 (FP7) , 100-000001357 (FP8)","","" +"AMD Ryzen™ 7 8745HX","Ryzen","Ryzen 8000 Series","Laptops , Desktops","8","16","Up to 5.1 GHz","3.6 GHz","8 MB","32 MB","55W","512 KB","45-75W","TSMC 5nm FinFET","Yes","FL1","","","","100°C","4/23/25","Windows 11 - 64-Bit Edition , Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 5.0","DDR5","2","","AMD Radeon™ 610M","2","2200 MHz","","","100-000001851","","" "AMD Ryzen™ 7 8700G","Ryzen","Ryzen 8000 Series","Desktops","8","16","Up to 5.1 GHz","4.2 GHz","8 MB","16 MB","65W","","45-65W","TSMC 4nm FinFET","Yes","AM5","","","","95°C","1/31/2024","Windows 11 - 64-Bit Edition , Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 4.0","DDR5","2","","AMD Radeon™ 780M","12","2900 MHz","Available","100-100001236BOX","100-000001236","100-100001236MPK","" "AMD Ryzen™ 7 8700F","Ryzen","Ryzen 8000 Series","Desktops","8","16","Up to 5 GHz","4.1 GHz","8 MB","16 MB","65W","","45-65W","TSMC 4nm FinFET","Yes","AM5","","","","95°C","04/01/2024","Windows 11 - 64-Bit Edition , Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 4.0","DDR5","2","","Discrete Graphics Card Required","","","Available","100-100001590BOX , 100-100001590CBX","100-000001590 (AM5)","100-100001590MPK , 100-100001590CPK","" "AMD Ryzen™ 5 8645HS","Ryzen","Ryzen 8000 Series","Laptops , Desktops","6","12","Up to 5 GHz","4.3 GHz","6 MB","16 MB","45W","","35-54W","TSMC 4nm FinFET","No","FP7 , FP7r2 , FP8","","","","100°C","","Windows 11 - 64-Bit Edition , Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 4.0","DDR5 (FP7r2) , LPDDR5X (FP7-FP8)","2","","AMD Radeon™ 760M","8","2600 MHz","Available","","100-000001320 (FP7r2) , 100-000001385 (FP7) , 100-000001310 (FP8)","","" @@ -130,6 +143,7 @@ "AMD Ryzen™ 5 7540U","Ryzen","Ryzen 7000 Series","Laptops , Desktops","6","12","Up to 4.9 GHz","3.2 GHz","6 MB","16 MB","28W","","15-30W","TSMC 4nm FinFET","No","FP7 , FP7r2","","","","100°C","05/03/2023","Windows 11 - 64-Bit Edition , Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 4.0","DDR5 (FP7r2) , LPDDR5X (FP7-FP8)","2","","AMD Radeon™ 740M","4","2500 MHz","Not Available","","100-000000957 (FP7r2) , 100-000000966 (FP7)","","" "AMD Ryzen™ 5 7535U","Ryzen","Ryzen 7000 Series","Laptops , Desktops","6","12","Up to 4.55 GHz","2.9 GHz","3 MB","16 MB","28W","512 KB","15-30W","TSMC 6nm FinFET","No","FP7","","","","95°C","Q1 2023","Windows 11 - 64-Bit Edition , Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 4.0","DDR5 , LPDDR5","2","","AMD Radeon™ 660M","6","1900 MHz","","","FP7: 100-000000988 FP7r2: 100-000000992","","" "AMD Ryzen™ 5 7535HS","Ryzen","Ryzen 7000 Series","Laptops , Desktops","6","12","Up to 4.55 GHz","3.3 GHz","3 MB","16 MB","35-54W","512 KB","35-54W","TSMC 6nm FinFET","No","FP7","","","","95°C","Q2 2023","Windows 11 - 64-Bit Edition , Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 4.0","DDR5 , LPDDR5","2","","AMD Radeon™ 660M","6","1900 MHz","","","FP7: 100-000000986 , FP7r2: 100-000000990","","" +"AMD Ryzen™ 5 7533HS","Ryzen","Ryzen 7000 Series","Laptops","6","12","Up to 4.4 GHz","3.3 GHz","3 MB","16 MB","35-54W","512 KB","35-54W","TSMC 6nm FinFET","No","FP7","","","","95°C","Q3 2024","Windows 11 - 64-Bit Edition , Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 4.0","DDR5 , LPDDR5","2","","AMD Radeon™ 660M","6","1800 MHz","","","FP7: 100-000001632 , FP7r2: 100-000001634","","" "AMD Ryzen™ 5 7530U","Ryzen","Ryzen 7000 Series","Laptops , Desktops","6","12","Up to 4.5 GHz","2 GHz","3 MB","16 MB","15W","384 KB","","TSMC 7nm FinFET","No","FP6","","","","95°C","Q1 2023","Windows 11 - 64-Bit Edition , Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 3.0","DDR4","2","","AMD Radeon™ Graphics","7","2000 MHz","","","100-000000943","","" "AMD Ryzen™ 5 7520U","Ryzen","Ryzen 7000 Series","Laptops , Desktops","4","8","Up to 4.3 GHz","2.8 GHz","2 MB","4 MB","15W","256 KB","","TSMC 6nm FinFET","No","","","","","","09/20/2022","Windows 11 - 64-Bit Edition , Ubuntu x86 64-Bit","PCIe® 3.0","LPDDR5","2","","AMD Radeon™ 610M","2","1900 MHz","","","100-000000770","","" "AMD Ryzen™ 5 7520C","Ryzen","Ryzen 7000 Series","Laptops , Desktops","4","8","Up to 4.3 GHz","2.8 GHz","2 MB","4 MB","15W","256 KB","","TSMC 6nm FinFET","No","FT6","","","","","05/23/2023","ChromeOS","PCIe® 3.0","LPDDR5","2","","AMD Radeon™ 610M","2","1900 MHz","","","100-000000773","","" @@ -191,9 +205,9 @@ "AMD Ryzen™ 3 PRO 5475U","Ryzen PRO","Ryzen PRO 5000 Series","Laptops , Desktops","4","8","Up to 4.1 GHz","2.7 GHz","2 MB","8 MB","15W","256 KB","","TSMC 7nm FinFET","No","FP6","","","","95°C","01/30/2022","Windows 11 - 64-Bit Edition , Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 3.0","DDR4","2","","AMD Radeon™ Graphics","6","1600 MHz","","","100-000000587","","" "AMD Ryzen™ 3 PRO 5450U","Ryzen PRO","Ryzen PRO 5000 Series","Laptops , Desktops","4","8","Up to 4 GHz","2.6 GHz","2 MB","8 MB","15W","","","TSMC 7nm FinFET","No","FP6","","","","105°C","3/16/2021","Windows 11 - 64-Bit Edition , Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 3.0","DDR4 , LPDDR4","","3200 MT/s / 4266 MT/s","AMD Radeon™ Graphics","6","1600 MHz","","","100-000000291","","" "AMD Ryzen™ 3 PRO 5355GE","Ryzen PRO","Ryzen PRO 5000 Series","Desktops","4","8","Up to 4.2 GHz","3.6 GHz","2 MB","8 MB","35W","","","TSMC 7nm FinFET","No","AM4","","","","95°C","9/5/2024","Windows 11 - 64-Bit Edition , Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 3.0","DDR4","2","Up to 3200 MT/s","Radeon™ Graphics","6","1700 MHz","","","100-000001751","","AMD PRO technologies" -"AMD Ryzen™ 3 PRO 5355G","Ryzen PRO","Ryzen PRO 5000 Series","Desktops","4","8","Up to 4.2 GHz","4 GHz","2 MB","8 MB","65W","","","TSMC 7nm FinFET","No","AM4","","","","95°C","9/5/2024","Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 3.0","DDR4","2","Up to 3200 MT/s","Radeon™ Graphics","6","1700 MHz","","","100-000001749","","AMD PRO technologies" -"AMD Ryzen™ 3 PRO 5350GE","Ryzen PRO","Ryzen PRO 5000 Series","Desktops","4","8","Up to 4.2 GHz","3.6 GHz","2 MB","8 MB","35W","","","TSMC 7nm FinFET","No","AM4","","","","95°C","6/1/2021","Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 3.0","DDR4","2","Up to 3200 MT/s","Radeon™ Graphics","6","1700 MHz","","","100-000000259","","AMD PRO technologies" -"AMD Ryzen™ 3 PRO 5350G","Ryzen PRO","Ryzen PRO 5000 Series","Desktops","4","8","Up to 4.2 GHz","4 GHz","2 MB","8 MB","65W","","","TSMC 7nm FinFET","No","AM4","","","","95°C","6/1/2021","Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 3.0","DDR4","2","Up to 3200 MT/s","Radeon™ Graphics","6","1700 MHz","","","100-000000256","","AMD PRO technologies" +"AMD Ryzen™ 3 PRO 5355G","Ryzen PRO","Ryzen PRO 5000 Series","Desktops","4","8","Up to 4.2 GHz","4 GHz","2 MB","8 MB","65W","","","TSMC 7nm FinFET","No","AM4","","","","95°C","9/5/2024","Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit , Windows 11 - 64-Bit Edition","PCIe® 3.0","DDR4","2","Up to 3200 MT/s","Radeon™ Graphics","6","1700 MHz","","","100-000001749","","AMD PRO technologies" +"AMD Ryzen™ 3 PRO 5350GE","Ryzen PRO","Ryzen PRO 5000 Series","Desktops","4","8","Up to 4.2 GHz","3.6 GHz","2 MB","8 MB","35W","","","TSMC 7nm FinFET","No","AM4","","","","95°C","6/1/2021","Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit , Windows 11 - 64-Bit Edition","PCIe® 3.0","DDR4","2","Up to 3200 MT/s","Radeon™ Graphics","6","1700 MHz","","","100-000000259","","AMD PRO technologies" +"AMD Ryzen™ 3 PRO 5350G","Ryzen PRO","Ryzen PRO 5000 Series","Desktops","4","8","Up to 4.2 GHz","4 GHz","2 MB","8 MB","65W","","","TSMC 7nm FinFET","No","AM4","","","","95°C","6/1/2021","Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit , Windows 11 - 64-Bit Edition","PCIe® 3.0","DDR4","2","Up to 3200 MT/s","Radeon™ Graphics","6","1700 MHz","","","100-000000256","","AMD PRO technologies" "AMD Ryzen™ 9 5980HX","Ryzen","Ryzen 5000 Series","Laptops , Desktops","8","16","Up to 4.8 GHz","3.3 GHz","4 MB","16 MB","45+W","","35-54W","TSMC 7nm FinFET","","FP6","","","","105°C","1/12/2021","Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 3.0","DDR4 - Up to 3200 , LPDDR4 - Up to 4266","","","AMD Radeon™ Graphics","8","2100 MHz","","","100-000000474","","AMD Zen 3 Core Architecture" "AMD Ryzen™ 9 5980HS","Ryzen","Ryzen 5000 Series","Laptops , Desktops","8","16","Up to 4.8 GHz","3 GHz","4 MB","16 MB","35W","","","TSMC 7nm FinFET","","FP6","","","","105°C","1/12/2021","Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 3.0","DDR4 - Up to 3200 , LPDDR4 - Up to 4266","","","AMD Radeon™ Graphics","8","2100 MHz","","","100-000000474","","AMD Zen 3 Core Architecture" "AMD Ryzen™ 9 5950X","Ryzen","Ryzen 5000 Series","Desktops , Boxed Processor","16","32","Up to 4.9 GHz","3.4 GHz","8 MB","64 MB","105W","","","TSMC 7nm FinFET","Yes","AM4","Not Included","Liquid cooler recommended for optimal performance","","90°C","11/5/2020","Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 4.0","DDR4","","Up to 3200 MT/s","Discrete Graphics Card Required","","","","100-100000059WOF","100-000000059","","AMD StoreMI Technology , AMD Zen 3 Core Architecture , AMD Ryzen™ Master Utility , AMD Ryzen™ VR-Ready Premium" @@ -211,18 +225,18 @@ "AMD Ryzen™ 7 5800HS","Ryzen","Ryzen 5000 Series","Laptops , Desktops","8","16","Up to 4.4 GHz","2.8 GHz","4 MB","16 MB","35W","","","TSMC 7nm FinFET","","FP6","","","","105°C","1/12/2021","Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 3.0","DDR4 - Up to 3200 , LPDDR4 - Up to 4266","","","AMD Radeon™ Graphics","8","2000 MHz","","","100-000000295","","AMD Zen 3 Core Architecture" "AMD Ryzen™ 7 5800H","Ryzen","Ryzen 5000 Series","Laptops , Desktops","8","16","Up to 4.4 GHz","3.2 GHz","4 MB","16 MB","45W","","35-54W","TSMC 7nm FinFET","","FP6","","","","105°C","1/12/2021","Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 3.0","DDR4 - Up to 3200 , LPDDR4 - Up to 4266","","","AMD Radeon™ Graphics","8","2000 MHz","","","100-000000295","","AMD Zen 3 Core Architecture" "AMD Ryzen™ 7 5800 (OEM Only)","Ryzen","Ryzen 5000 Series","Desktops","8","16","Up to 4.6 GHz","3.4 GHz","4 MB","32 MB","65W","","","TSMC 7nm FinFET","Yes","AM4","","","","95°C","1/12/2021","Windows 11 - 64-Bit Edition , Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 4.0","DDR4","","Up to 3200 MT/s","Discrete Graphics Card Required","","","","","100-000000456","","AMD Zen 3 Core Architecture , AMD Ryzen™ Master Utility , AMD Ryzen™ VR-Ready Premium" -"AMD Ryzen™ 7 5705GE","Ryzen","Ryzen 5000 Series","Desktops","8","16","Up to 4.6 GHz","3.2 GHz","4 MB","16 MB","35W","","","TSMC 7nm FinFET","Yes","AM4","","","","95°C","","Windows 11 - 64-Bit Edition , Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 3.0","DDR4","2","Up to 3200 MT/s","Radeon™ Graphics","8","2000 MHz","","","100-000001803","","" -"AMD Ryzen™ 7 5705G","Ryzen","Ryzen 5000 Series","Desktops","8","16","Up to 4.6 GHz","3.8 GHz","4 MB","16 MB","65W","","45-65WW","TSMC 7nm FinFET","Yes","AM4","","","","95°C","","Windows 11 - 64-Bit Edition , Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 3.0","DDR4","2","Up to 3200 MT/s","Radeon™ Graphics","8","2000 MHz","","","100-000001800","","" +"AMD Ryzen™ 7 5705GE","Ryzen","Ryzen 5000 Series","Desktops , Boxed Processor","8","16","Up to 4.6 GHz","3.2 GHz","4 MB","16 MB","35W","","","TSMC 7nm FinFET","Yes","AM4","","","","95°C","","Windows 11 - 64-Bit Edition , Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 3.0","DDR4","2","Up to 3200 MT/s","Radeon™ Graphics","8","2000 MHz","","","100-000001803","","" +"AMD Ryzen™ 7 5705G","Ryzen","Ryzen 5000 Series","Desktops , Boxed Processor","8","16","Up to 4.6 GHz","3.8 GHz","4 MB","16 MB","65W","","45-65WW","TSMC 7nm FinFET","Yes","AM4","","","","95°C","","Windows 11 - 64-Bit Edition , Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 3.0","DDR4","2","Up to 3200 MT/s","Radeon™ Graphics","8","2000 MHz","","","100-000001800","","" "AMD Ryzen™ 7 5700X3D","Ryzen","Ryzen 5000 Series","Desktops , Boxed Processor","8","16","Up to 4.1 GHz","3 GHz","4 MB","96 MB","105W","512 KB","","TSMC 7nm FinFET","","AM4","Not Included","","","90°C","01/08/2024","Windows 11 - 64-Bit Edition , Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 4.0","DDR4","2","","Discrete Graphics Card Required","","","","100-100001503WOF , 100-100001503","100-000001503","","AMD StoreMI Technology , AMD Zen 3 Core Architecture , AMD Ryzen™ Master Utility , AMD Ryzen™ VR-Ready Premium" "AMD Ryzen™ 7 5700X","Ryzen","Ryzen 5000 Series","Desktops , Boxed Processor","8","16","Up to 4.6 GHz","3.4 GHz","4 MB","32 MB","65W","512 KB","","TSMC 7nm FinFET","Yes","AM4","Not Included","","","90°C","04/04/2022","Windows 11 - 64-Bit Edition , Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 4.0","DDR4","2","Up to 3200 MT/s","Discrete Graphics Card Required","","","","100-100000926WOF","100-000000926","","AMD StoreMI Technology , AMD Ryzen™ VR-Ready Premium" "AMD Ryzen™ 7 5700U","Ryzen","Ryzen 5000 Series","Laptops , Desktops","8","16","Up to 4.3 GHz","1.8 GHz","4 MB","8 MB","15W","","10-25W","TSMC 7nm FinFET","","FP6","","","","105°C","1/12/2021","Windows 11 - 64-Bit Edition , Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 3.0","DDR4 - Up to 3200 , LPDDR4 - Up to 4266","","","AMD Radeon™ Graphics","8","1900 MHz","","","100-000000371","","" -"AMD Ryzen™ 7 5700GE","Ryzen","Ryzen 5000 Series","Desktops","8","16","Up to 4.6 GHz","3.2 GHz","4 MB","16 MB","35W","","","TSMC 7nm FinFET","Yes","AM4","AMD Wraith Stealth","","","95°C","4/13/2021","Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 3.0","DDR4","2","Up to 3200 MT/s","Radeon™ Graphics","8","2000 MHz","","","100-000000260","100-100000260MPK","" -"AMD Ryzen™ 7 5700G","Ryzen","Ryzen 5000 Series","Desktops , Boxed Processor","8","16","Up to 4.6 GHz","3.8 GHz","4 MB","16 MB","65W","","45-65W","TSMC 7nm FinFET","Yes","AM4","AMD Wraith Stealth","","","95°C","4/13/2021","Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 3.0","DDR4","2","Up to 3200 MT/s","Radeon™ Graphics","8","2000 MHz","","100-100000263BOX","100-000000263","100-100000263MPK","" -"AMD Ryzen™ 7 5700","Ryzen","Ryzen 5000 Series","Desktops , Boxed Processor","8","16","Up to 4.6 GHz","3.7 GHz","4 MB","16 MB","65W","512 KB","45-65W","TSMC 7nm FinFET","Yes","AM4","AMD Wraith Stealth","","","95°C","01/31/2024","Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 3.0","DDR4","2","Up to 3200 MT/s","Discrete Graphics Card Required","","","","100-000000743BOX","100-000000743","100-000000743MPK","AMD StoreMI Technology , AMD Ryzen™ VR-Ready Premium" +"AMD Ryzen™ 7 5700GE","Ryzen","Ryzen 5000 Series","Desktops","8","16","Up to 4.6 GHz","3.2 GHz","4 MB","16 MB","35W","","","TSMC 7nm FinFET","Yes","AM4","AMD Wraith Stealth","","","95°C","4/13/2021","Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit , Windows 11 - 64-Bit Edition","PCIe® 3.0","DDR4","2","Up to 3200 MT/s","Radeon™ Graphics","8","2000 MHz","","","100-000000260","100-100000260MPK","" +"AMD Ryzen™ 7 5700G","Ryzen","Ryzen 5000 Series","Desktops , Boxed Processor","8","16","Up to 4.6 GHz","3.8 GHz","4 MB","16 MB","65W","","45-65W","TSMC 7nm FinFET","Yes","AM4","AMD Wraith Stealth","","","95°C","4/13/2021","Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit , Windows 11 - 64-Bit Edition","PCIe® 3.0","DDR4","2","Up to 3200 MT/s","Radeon™ Graphics","8","2000 MHz","","100-100000263BOX","100-000000263","100-100000263MPK","" +"AMD Ryzen™ 7 5700","Ryzen","Ryzen 5000 Series","Desktops , Boxed Processor","8","16","Up to 4.6 GHz","3.7 GHz","4 MB","16 MB","65W","512 KB","45-65W","TSMC 7nm FinFET","Yes","AM4","AMD Wraith Stealth","","","95°C","01/31/2024","Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit , Windows 11 - 64-Bit Edition","PCIe® 3.0","DDR4","2","Up to 3200 MT/s","Discrete Graphics Card Required","","","","100-000000743BOX","100-000000743","100-000000743MPK","AMD StoreMI Technology , AMD Ryzen™ VR-Ready Premium" "AMD Ryzen™ 5 5625U","Ryzen","Ryzen 5000 Series","Laptops , Desktops","6","12","Up to 4.3 GHz","2.3 GHz","3 MB","16 MB","15W","384 KB","","TSMC 7nm FinFET","No","FP6","","","","95°C","01/30/2022","Windows 11 - 64-Bit Edition , Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 3.0","DDR4","2","","AMD Radeon™ Graphics","7","1800 MHz","","","100-000000583","","" "AMD Ryzen™ 5 5625C","Ryzen","Ryzen 5000 Series","Laptops , Desktops","6","12","Up to 4.3 GHz","2.3 GHz","3 MB","16 MB","15W","384 KB","","TSMC 7nm FinFET","No","FP6","","","","95°C","","ChromeOS","PCIe® 3.0","DDR4","2","","AMD Radeon™ Graphics","7","","","","","","" -"AMD Ryzen™ 5 5605GE","Ryzen","Ryzen 5000 Series","Desktops","6","12","Up to 4.4 GHz","3.4 GHz","3 MB","16 MB","35W","","","TSMC 7nm FinFET","Yes","AM4","","","","95°C","","Windows 11 - 64-Bit Edition , Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 3.0","DDR4","2","Up to 3200 MT/s","Radeon™ Graphics","7","1900 MHz","","","100-000001804","","" -"AMD Ryzen™ 5 5605G","Ryzen","Ryzen 5000 Series","Desktops","6","12","Up to 4.4 GHz","3.9 GHz","3 MB","16 MB","65W","","45-65WW","TSMC 7nm FinFET","Yes","AM4","","","","95°C","","Windows 11 - 64-Bit Edition , Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 3.0","DDR4","2","Up to 3200 MT/s","Radeon™ Graphics","7","1900 MHz","","","100-000001801","","" +"AMD Ryzen™ 5 5605GE","Ryzen","Ryzen 5000 Series","Desktops , Boxed Processor","6","12","Up to 4.4 GHz","3.4 GHz","3 MB","16 MB","35W","","","TSMC 7nm FinFET","Yes","AM4","","","","95°C","","Windows 11 - 64-Bit Edition , Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 3.0","DDR4","2","Up to 3200 MT/s","Radeon™ Graphics","7","1900 MHz","","","100-000001804","","" +"AMD Ryzen™ 5 5605G","Ryzen","Ryzen 5000 Series","Desktops , Boxed Processor","6","12","Up to 4.4 GHz","3.9 GHz","3 MB","16 MB","65W","","45-65WW","TSMC 7nm FinFET","Yes","AM4","","","","95°C","","Windows 11 - 64-Bit Edition , Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 3.0","DDR4","2","Up to 3200 MT/s","Radeon™ Graphics","7","1900 MHz","","","100-000001801","","" "AMD Ryzen™ 5 5600X3D","Ryzen","Ryzen 5000 Series","Desktops , Boxed Processor","6","12","Up to 4.4 GHz","3.3 GHz","3 MB","96 MB","105W","384 KB","","TSMC 7nm FinFET","","AM4","Not Included","","","90°C","07/07/2023","Windows 11 - 64-Bit Edition , Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 4.0","DDR4","2","","Discrete Graphics Card Required","","","","100-100001176WOF","100-000001176","","AMD 3D V-Cache™ Technology , Windows® 11 Gaming , AMD Ryzen™ VR-Ready Premium" "AMD Ryzen™ 5 5600X","Ryzen","Ryzen 5000 Series","Desktops , Boxed Processor","6","12","Up to 4.6 GHz","3.7 GHz","3 MB","32 MB","65W","","","TSMC 7nm FinFET","Yes","AM4","AMD Wraith Stealth","","","95°C","11/5/2020","Windows 11 - 64-Bit Edition , Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 4.0","DDR4","","Up to 3200 MT/s","Discrete Graphics Card Required","","","","100-100000065BOX","100-000000065","100-100000065MPK","AMD Zen 3 Core Architecture , AMD StoreMI Technology , AMD Ryzen™ Master Utility , AMD Ryzen™ VR-Ready Premium" "AMD Ryzen™ 5 5600U","Ryzen","Ryzen 5000 Series","Laptops , Desktops","6","12","Up to 4.2 GHz","2.3 GHz","3 MB","16 MB","15W","","10-25W","TSMC 7nm FinFET","","FP6","","","","105°C","1/12/2021","Windows 11 - 64-Bit Edition , Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 3.0","DDR4 - Up to 3200 , LPDDR4 - Up to 4266","","","AMD Radeon™ Graphics","7","1800 MHz","","","100-000000287","","AMD Zen 3 Core Architecture" @@ -242,8 +256,8 @@ "AMD Ryzen™ 3 5425U","Ryzen","Ryzen 5000 Series","Laptops , Desktops","4","8","Up to 4.1 GHz","2.7 GHz","2 MB","8 MB","15W","256 KB","","TSMC 7nm FinFET","No","FP6","","","","95°C","01/30/2022","Windows 11 - 64-Bit Edition , Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 3.0","DDR4","2","","AMD Radeon™ Graphics","6","1600 MHz","","","100-000000586","","" "AMD Ryzen™ 3 5425C","Ryzen","Ryzen 5000 Series","Laptops , Desktops","4","8","Up to 4.1 GHz","2.7 GHz","2 MB","8 MB","15W","256 KB","","TSMC 7nm FinFET","No","FP6","","","","95°C","","ChromeOS","PCIe® 3.0","DDR4","2","","AMD Radeon™ Graphics","6","","","","","","" "AMD Ryzen™ 3 5400U","Ryzen","Ryzen 5000 Series","Laptops , Desktops","4","8","Up to 4 GHz","2.6 GHz","2 MB","8 MB","15W","","10-25W","TSMC 7nm FinFET","","FP6","","","","105°C","1/12/2021","Windows 11 - 64-Bit Edition , Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 3.0","DDR4 - Up to 3200 , LPDDR4 - Up to 4266","","","AMD Radeon™ Graphics","6","1600 MHz","","","100-000000288","","" -"AMD Ryzen™ 3 5305GE","Ryzen","Ryzen 5000 Series","Desktops","4","8","Up to 4.2 GHz","3.6 GHz","2 MB","8 MB","35W","","","TSMC 7nm FinFET","Yes","AM4","","","","95°C","","Windows 11 - 64-Bit Edition , Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 3.0","DDR4","2","Up to 3200 MT/s","Radeon™ Graphics","6","1700 MHz","","","100-000001805","","" -"AMD Ryzen™ 3 5305G","Ryzen","Ryzen 5000 Series","Desktops","4","8","Up to 4.2 GHz","4 GHz","2 MB","8 MB","65W","","45-65WW","TSMC 7nm FinFET","Yes","AM4","","","","95°C","","Windows 11 - 64-Bit Edition , Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 3.0","DDR4","2","Up to 3200 MT/s","Radeon™ Graphics","6","1700 MHz","","","100-000001802","","" +"AMD Ryzen™ 3 5305GE","Ryzen","Ryzen 5000 Series","Desktops , Boxed Processor","4","8","Up to 4.2 GHz","3.6 GHz","2 MB","8 MB","35W","","","TSMC 7nm FinFET","Yes","AM4","","","","95°C","","Windows 11 - 64-Bit Edition , Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 3.0","DDR4","2","Up to 3200 MT/s","Radeon™ Graphics","6","1700 MHz","","","100-000001805","","" +"AMD Ryzen™ 3 5305G","Ryzen","Ryzen 5000 Series","Desktops , Boxed Processor","4","8","Up to 4.2 GHz","4 GHz","2 MB","8 MB","65W","","45-65WW","TSMC 7nm FinFET","Yes","AM4","","","","95°C","","Windows 11 - 64-Bit Edition , Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 3.0","DDR4","2","Up to 3200 MT/s","Radeon™ Graphics","6","1700 MHz","","","100-000001802","","" "AMD Ryzen™ 3 5300U","Ryzen","Ryzen 5000 Series","Laptops , Desktops","4","8","Up to 3.8 GHz","2.6 GHz","2 MB","4 MB","15W","","10-25W","TSMC 7nm FinFET","","FP6","","","","105°C","1/12/2021","Windows 11 - 64-Bit Edition , Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 3.0","DDR4 - Up to 3200 , LPDDR4 - Up to 4266","","","AMD Radeon™ Graphics","6","1500 MHz","","","100-000000376","","" "AMD Ryzen™ 3 5300GE (OEM Only)","Ryzen","Ryzen 5000 Series","Desktops","4","8","Up to 4.2 GHz","3.6 GHz","2 MB","8 MB","35W","","","TSMC 7nm FinFET","Yes","AM4","","","","95°C","4/13/2021","Windows 11 - 64-Bit Edition , Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 3.0","DDR4","2","Up to 3200 MT/s","Radeon™ Graphics","6","1700 MHz","","","100-000000262 (OEM Only)","","" "AMD Ryzen™ 3 5300G (OEM Only)","Ryzen","Ryzen 5000 Series","Desktops","4","8","Up to 4.2 GHz","4 GHz","2 MB","8 MB","65W","","45-65W","TSMC 7nm FinFET","Yes","AM4","","","","95°C","4/13/2021","Windows 11 - 64-Bit Edition , Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 3.0","DDR4","2","Up to 3200 MT/s","Radeon™ Graphics","6","1700 MHz","","","100-000000253 (OEM Only)","","" @@ -400,8 +414,8 @@ "AMD Ryzen™ 7 1700X","Ryzen","Ryzen 1000 Series","Desktops , Boxed Processor","8","16","Up to 3.8 GHz","3.4 GHz","4 MB","16 MB","95W","768 KB","","14nm","Yes","AM4","Not Included","","AMD Wraith Max","95°C","3/2/2017","Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 3.0 x16","DDR4","2","Up to 2667 MT/s","Discrete Graphics Card Required","","","","YD170XBCAEWOF","YD170XBCM88AE","YD170XBCAEMPK","AMD SenseMI Technology , AMD Zen Core Architecture , AMD Ryzen™ Master Utility , Virtualization , Enmotus FuzeDrive™ for AMD Ryzen™ , AES , AVX , FMA3 , XFR (Extended Frequency Range)" "AMD Ryzen™ 7 1700 Processor","Ryzen","Ryzen 1000 Series","Desktops , Boxed Processor","8","16","Up to 3.7 GHz","3 GHz","4 MB","16 MB","65W","768 KB","","14nm","Yes","AM4","Wraith Spire (LED)","","AMD Wraith Spire","95°C","3/2/2017","Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 3.0 x16","DDR4","2","Up to 2667 MT/s","Discrete Graphics Card Required","","","","YD1700BBAEBOX","YD1700BBM88AE","YD1700BBAEMPK","AMD GuardMI Technology , AMD SenseMI Technology , AMD Zen Core Architecture , AMD Ryzen™ Master Utility , Virtualization , Enmotus FuzeDrive™ for AMD Ryzen™ , DASH 1.2 , AES , AVX , FMA3 , XFR (Extended Frequency Range)" "AMD Ryzen™ 5 1600X","Ryzen","Ryzen 1000 Series","Desktops , Boxed Processor","6","12","Up to 4 GHz","3.6 GHz","3 MB","16 MB","95W","576 KB","","14nm","Yes","AM4","Not Included","","AMD Wraith Max","95°C","4/11/2017","Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 3.0 x16","DDR4","2","Up to 2667 MT/s","Discrete Graphics Card Required","","","","YD160XBCAEWOF","YD160XBCM6IAE","YD160XBCAEMPK","AMD SenseMI Technology , AMD Zen Core Architecture , AMD Ryzen™ Master Utility , Virtualization , Enmotus FuzeDrive™ for AMD Ryzen™ , AES , AVX2 , FMA3 , XFR (Extended Frequency Range)" -"AMD Ryzen™ 5 1600","Ryzen","Ryzen 1000 Series","Desktops , Boxed Processor","6","12","Up to 3.6 GHz","3.2 GHz","3 MB","16 MB","65W","576 KB","","14nm","Yes","AM4","Wraith Spire (No LED)","","AMD Wraith Spire","95°C","4/11/2017","Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 3.0 x16","DDR4","2","Up to 2667 MT/s","Discrete Graphics Card Required","","","","YD1600BBAEBOX","YD1600BBM6IAE","YD1600BBAEMPK","AMD SenseMI Technology , AMD Zen Core Architecture , AMD Ryzen™ Master Utility , Virtualization , Enmotus FuzeDrive™ for AMD Ryzen™ , AES , AVX2 , FMA3 , XFR (Extended Frequency Range)" "AMD Ryzen™ 5 1600 (AF)","Ryzen","Ryzen 1000 Series","Desktops , Boxed Processor","6","12","Up to 3.6 GHz","3.2 GHz","3 MB","16 MB","65W","576 KB","","12nm","Yes","AM4","AMD Wraith Stealth","","","95°C","","Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 3.0 x16","DDR4","2","Up to 2667 MT/s","Discrete Graphics Card Required","","","","YD1600BBAFBOX","","","AMD SenseMI Technology , AMD Zen Core Architecture , AMD Ryzen™ Master Utility , Virtualization , Enmotus FuzeDrive™ for AMD Ryzen™ , AES , AVX2 , FMA3 , XFR (Extended Frequency Range)" +"AMD Ryzen™ 5 1600","Ryzen","Ryzen 1000 Series","Desktops , Boxed Processor","6","12","Up to 3.6 GHz","3.2 GHz","3 MB","16 MB","65W","576 KB","","14nm","Yes","AM4","Wraith Spire (No LED)","","AMD Wraith Spire","95°C","4/11/2017","Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 3.0 x16","DDR4","2","Up to 2667 MT/s","Discrete Graphics Card Required","","","","YD1600BBAEBOX","YD1600BBM6IAE","YD1600BBAEMPK","AMD SenseMI Technology , AMD Zen Core Architecture , AMD Ryzen™ Master Utility , Virtualization , Enmotus FuzeDrive™ for AMD Ryzen™ , AES , AVX2 , FMA3 , XFR (Extended Frequency Range)" "AMD Ryzen™ 5 1500X","Ryzen","Ryzen 1000 Series","Desktops , Boxed Processor","4","8","Up to 3.7 GHz","3.5 GHz","2 MB","16 MB","65W","384 KB","","14nm","Yes","AM4","Wraith Spire (No LED)","","AMD Wraith Spire","95°C","4/11/2017","Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 3.0 x16","DDR4","2","Up to 2667 MT/s","Discrete Graphics Card Required","","","","YD150XBBAEBOX","YD150XBBM4GAE","YD150XBBAEMPK","AMD SenseMI Technology , AMD Zen Core Architecture , AMD Ryzen™ Master Utility , Virtualization , Enmotus FuzeDrive™ for AMD Ryzen™ , AES , AVX2 , FMA3 , XFR (Extended Frequency Range)" "AMD Ryzen™ 5 1400","Ryzen","Ryzen 1000 Series","Desktops , Boxed Processor","4","8","Up to 3.4 GHz","3.2 GHz","2 MB","8 MB","65W","384 KB","","14nm","Yes","AM4","AMD Wraith Stealth","","AMD Wraith Stealth","95°C","4/11/2017","Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 3.0 x16","DDR4","2","Up to 2667 MT/s","Discrete Graphics Card Required","","","","YD1400BBAEBOX","YD1400BBM4KAE","YD1400BBAEMPK","AMD SenseMI Technology , AMD Zen Core Architecture , AMD Ryzen™ Master Utility , Virtualization , Enmotus FuzeDrive™ for AMD Ryzen™ , AVX2 , FMA3 , XFR (Extended Frequency Range)" "AMD Ryzen™ 3 1300X","Ryzen","Ryzen 1000 Series","Desktops , Boxed Processor","4","4","Up to 3.7 GHz","3.5 GHz","2 MB","8 MB","65W","384 KB","","14nm","Yes","AM4","AMD Wraith Stealth","","AMD Wraith Stealth","95°C","7/27/2017","Windows 10 - 64-Bit Edition , RHEL x86 64-Bit , Ubuntu x86 64-Bit","PCIe® 3.0 x16","DDR4","2","Up to 2667 MT/s","Discrete Graphics Card Required","","","","YD130XBBAEBOX","YD130XBBM4KAE","YD130XBBAEMPK","AMD SenseMI Technology , AMD Zen Core Architecture , AMD Ryzen™ Master Utility , Enmotus FuzeDrive™ for AMD Ryzen™ , AVX2 , FMA3 , XFR (Extended Frequency Range)" diff --git a/codecarbon/data/hardware/cpu_dataset_builder/amd_cpu_scrapper.py b/codecarbon/data/hardware/cpu_dataset_builder/amd_cpu_scrapper.py new file mode 100644 index 000000000..c32812e7f --- /dev/null +++ b/codecarbon/data/hardware/cpu_dataset_builder/amd_cpu_scrapper.py @@ -0,0 +1,120 @@ +""" +This script uses Playwright to scrape AMD CPU data from their website and save it as a CSV file. + +hatch run pip install playwright +hatch run python amd_cpu_scrapper.py +""" + +import asyncio + +from playwright.async_api import Page, async_playwright + + +async def handle_cookie_banner(page: Page): + """Attempts to find and click a 'Reject All' button for cookie consent.""" + try: + reject_button_selectors = [ + "button:has-text('Reject All')", + "button:has-text('Decline All')", + "button[id*='reject']", + "button[class*='reject']", + "//button[contains(translate(text(), 'ABCDEFGHIJKLMNOPQRSTUVWXYZ', 'abcdefghijklmnopqrstuvwxyz'), 'reject all')]", + "//button[contains(translate(text(), 'ABCDEFGHIJKLMNOPQRSTUVWXYZ', 'abcdefghijklmnopqrstuvwxyz'), 'decline all')]", + ] + + reject_button = None + for selector in reject_button_selectors: + try: + button = page.locator(selector).first + if await button.is_visible( + timeout=2000 + ): # Short timeout for visibility check + reject_button = button + print(f"Found cookie consent button with selector: {selector}") + break + except Exception: + pass # Selector not found or button not visible, try next + + if reject_button: + await reject_button.click() + print("Clicked 'Reject All' on cookie banner.") + await page.wait_for_timeout(1000) # Wait a bit for the banner to disappear + else: + print( + "Cookie banner 'Reject All' button not found or not visible after trying common selectors." + ) + + except Exception as cookie_error: + print(f"Could not handle cookie banner: {cookie_error}") + + +async def download_csv_from_url(page: Page, url: str, output_filename: str): + """Navigates to a URL, handles cookie banner, and downloads a CSV file.""" + print(f"Attempting to download from: {url}") + retries = 2 + for attempt in range(retries): + try: + await page.goto(url, timeout=30000) # Increased timeout for page load + await handle_cookie_banner(page) + break # If goto is successful, break the loop + except Exception as e: + print(f"Attempt {attempt + 1} to navigate to {url} failed: {e}") + if attempt < retries - 1: + await asyncio.sleep(5) # Wait for 5 seconds before retrying + else: + print(f"All retries failed for {url}.") + return # Exit if all retries fail + + try: + # Wait for the download to start after clicking the button + async with page.expect_download( + timeout=30000 + ) as download_info: # Increased timeout for download + # Click the button with the class "buttons-csv" + await page.locator(".buttons-csv").click() + print(f"Clicked download button for {url}") + + download = await download_info.value + + # Save the downloaded file + file_path = f"{output_filename}" + await download.save_as(file_path) + print(f"File downloaded from {url} and saved as {file_path}") + + except Exception as e: + print(f"An error occurred while downloading from {url}: {e}") + + +async def main(): + async with async_playwright() as p: + browser = await p.chromium.launch( + headless=False, # Set to True for production + args=[ + "--no-sandbox", + "--disable-setuid-sandbox", + "--disable-dev-shm-usage", + "--disable-gpu", + ], + ) + page = await browser.new_page() + + urls_to_download = [ + { + "url": "https://www.amd.com/en/products/specifications/server-processor.html", + "filename": "amd_cpu_server_dataset.csv", + }, + { + "url": "https://www.amd.com/en/products/specifications/processors.html", + "filename": "amd_cpu_desktop_dataset.csv", + }, + ] + + for item in urls_to_download: + await download_csv_from_url(page, item["url"], item["filename"]) + await asyncio.sleep(2) # Small delay between downloads + + await browser.close() + + +if __name__ == "__main__": + asyncio.run(main()) diff --git a/codecarbon/data/hardware/AMD_Server_Processor_Specifications.csv b/codecarbon/data/hardware/cpu_dataset_builder/amd_cpu_server_dataset.csv similarity index 92% rename from codecarbon/data/hardware/AMD_Server_Processor_Specifications.csv rename to codecarbon/data/hardware/cpu_dataset_builder/amd_cpu_server_dataset.csv index 8362ba283..fbdb759bf 100644 --- a/codecarbon/data/hardware/AMD_Server_Processor_Specifications.csv +++ b/codecarbon/data/hardware/cpu_dataset_builder/amd_cpu_server_dataset.csv @@ -1,31 +1,31 @@ "Name","Series","# of CPU Cores","# of Threads","Max. Boost Clock","All Core Boost Speed","Base Clock","L3 Cache","1kU Pricing","Default TDP","AMD Configurable TDP (cTDP)","CPU Socket","Socket Count","Launch Date","PCI Express® Version","System Memory Type","Memory Channels","System Memory Specification","Per Socket Mem BW","Product ID Boxed","Product ID Tray","AMD Infinity Guard","Supported Technologies","Workload Affinity" -"AMD EPYC™ 9965","EPYC 9005 Series","192","384","Up to 3.7 GHz","3.35 GHz","2.25 GHz","384 MB","14813 USD","500W","450-500W","SP5","1P / 2P","10/10/2024","PCIe® 5.0 x128","DDR5","12","Up to 6000 MT/s","576 GB/s","","100-000000976","","AMD Infinity Guard , AMD Infinity Architecture","Analytics , App dev|test , Content mgmt , HPC , Media streaming , Networking|NFV , Security , VDI , VM Density , Web Serving , CDC" -"AMD EPYC™ 9845","EPYC 9005 Series","160","320","Up to 3.7 GHz","3.25 GHz","2.1 GHz","320 MB","13564 USD","390W","320-400W","SP5","1P / 2P","10/10/2024","PCIe® 5.0 x128","DDR5","12","Up to 6000 MT/s","576 GB/s","","100-000001458","","AMD Infinity Guard , AMD Infinity Architecture","Analytics , App dev|test , CDC , Content mgmt , HPC , Media streaming , Networking|NFV , Security , VDI , VM Density , Web Serving" -"AMD EPYC™ 9825","EPYC 9005 Series","144","288","Up to 3.7 GHz","3.3 GHz","2.2 GHz","384 MB","13006 USD","390W","320-400W","SP5","1P / 2P","10/10/2024","PCIe® 5.0 x128","DDR5","12","Up to 6000 MT/s","576 GB/s","","100-000000837","","AMD Infinity Guard , AMD Infinity Architecture","Analytics , App dev|test , CDC , Content mgmt , HPC , Media streaming , Networking|NFV , Security , VDI , VM Density , Web Serving" -"AMD EPYC™ 9755","EPYC 9005 Series","128","256","Up to 4.1 GHz","4.1 GHz","2.7 GHz","512 MB","12984 USD","500W","450-500W","SP5","1P / 2P","10/10/2024","PCIe® 5.0 x128","DDR5","12","Up to 6000 MT/s","576 GB/s","","100-000001443","","AMD Infinity Guard , AMD Infinity Architecture","Analytics , App dev|test , Content mgmt , HPC , Media streaming , Networking|NFV , Security , VDI , VM Density , Web Serving , CDC" -"AMD EPYC™ 9745","EPYC 9005 Series","128","256","Up to 3.7 GHz","3.45 GHz","2.4 GHz","256 MB","12141 USD","400W","320-400W","SP5","1P / 2P","10/10/2024","PCIe® 5.0 x128","DDR5","12","Up to 6000 MT/s","576 GB/s","","100-000001460","","AMD Infinity Guard , AMD Infinity Architecture","Analytics , App dev|test , Content mgmt , HPC , Media streaming , Networking|NFV , Security , VDI , VM Density , Web Serving , CDC" -"AMD EPYC™ 9655P","EPYC 9005 Series","96","192","Up to 4.5 GHz","4.1 GHz","2.6 GHz","384 MB","10811 USD","400W","320-400W","SP5","1P","10/10/2024","PCIe® 5.0 x128","DDR5","12","Up to 6000 MT/s","576 GB/s","","100-000001522","","AMD Infinity Guard , AMD Infinity Architecture","CAE|CFD|FEA , High capacity data mgmt (NR|RDBMS) , HPC" -"AMD EPYC™ 9655","EPYC 9005 Series","96","192","Up to 4.5 GHz","4.1 GHz","2.6 GHz","384 MB","11852 USD","400W","320-400W","SP5","1P / 2P","10/10/2024","PCIe® 5.0 x128","DDR5","12","Up to 6000 MT/s","576 GB/s","","100-000000674","","AMD Infinity Guard , AMD Infinity Architecture","CAE|CFD|FEA , High capacity data mgmt (NR|RDBMS) , HPC" -"AMD EPYC™ 9645","EPYC 9005 Series","96","192","Up to 3.7 GHz","3.3 GHz","2.3 GHz","256 MB","11048 USD","320W","320-400W","SP5","1P / 2P","10/10/2024","PCIe® 5.0 x128","DDR5","12","Up to 6000 MT/s","576 GB/s","","100-000001461","","AMD Infinity Guard , AMD Infinity Architecture","App dev|test , Consumer-Oriented Digital Services , Content mgmt , ERM|SCM|CRM apps" -"AMD EPYC™ 9575F","EPYC 9005 Series","64","128","Up to 5 GHz","4.5 GHz","3.3 GHz","256 MB","11791 USD","400W","320-400W","SP5","1P / 2P","10/10/2024","PCIe® 5.0 x128","DDR5","12","Up to 6000 MT/s","576 GB/s","","100-000001554","","AMD Infinity Guard , AMD Infinity Architecture","Analytics , App dev|test , CAE|CFD|FEA , ERM|SCM|CRM apps , High capacity data mgmt (NR|RDBMS) , VDI , VM Density" -"AMD EPYC™ 9565","EPYC 9005 Series","72","144","Up to 4.3 GHz","4.2 GHz","3.15 GHz","384 MB","10486 USD","400W","320-400W","SP5","1P / 2P","10/10/2024","PCIe® 5.0 x128","DDR5","12","Up to 6000 MT/s","576 GB/s","","100-000001447","","AMD Infinity Guard , AMD Infinity Architecture","Analytics , CAE|CFD|FEA , ERM|SCM|CRM apps , High capacity data mgmt (NR|RDBMS) , HPC , VM Density" -"AMD EPYC™ 9555P","EPYC 9005 Series","64","128","Up to 4.4 GHz","4.2 GHz","3.2 GHz","256 MB","7983 USD","360W","320-400W","SP5","1P","10/10/2024","PCIe® 5.0 x128","DDR5","12","Up to 6000 MT/s","576 GB/s","","100-000001523","","AMD Infinity Guard , 4th Gen AMD Infinity Architecture","App dev|test , ERM|SCM|CRM apps , Value data mgmt (NR|RDBMS) , VDI , VM Density" -"AMD EPYC™ 9555","EPYC 9005 Series","64","128","Up to 4.4 GHz","4.2 GHz","3.2 GHz","256 MB","9826 USD","360W","320-400W","SP5","1P / 2P","10/10/2024","PCIe® 5.0 x128","DDR5","12","Up to 6000 MT/s","576 GB/s","","100-000001142","","AMD Infinity Guard , AMD Infinity Architecture","Analytics , CAE|CFD|FEA , ERM|SCM|CRM apps , High capacity data mgmt (NR|RDBMS) , HPC , VM Density" -"AMD EPYC™ 9535","EPYC 9005 Series","64","128","Up to 4.3 GHz","3.5 GHz","2.4 GHz","256 MB","8992 USD","300W","240-300W","SP5","1P / 2P","10/10/2024","PCIe® 5.0 x128","DDR5","12","Up to 6000 MT/s","576 GB/s","","100-000001147","","AMD Infinity Guard , AMD Infinity Architecture","Analytics , App dev|test , CAE , ERM|SCM|CRM apps , High capacity data mgmt (NR|RDBMS) , VDI , VM Density" -"AMD EPYC™ 9475F","EPYC 9005 Series","48","96","Up to 4.8 GHz","4.4 GHz","3.65 GHz","256 MB","7592 USD","400W","320-400W","SP5","1P / 2P","10/10/2024","PCIe® 5.0 x128","DDR5","12","Up to 6000 MT/s","576 GB/s","","100-000001143","","AMD Infinity Guard , AMD Infinity Architecture","Analytics , App dev|test , CAE|CFD|FEA , ERM|SCM|CRM apps , High capacity data mgmt (NR|RDBMS) , VDI , VM Density" -"AMD EPYC™ 9455P","EPYC 9005 Series","48","96","Up to 4.4 GHz","4.1 GHz","3.15 GHz","256 MB","4819 USD","300W","240-300W","SP5","1P","10/10/2024","PCIe® 5.0 x128","DDR5","12","Up to 6000 MT/s","576 GB/s","","100-000001563","","AMD Infinity Guard , AMD Infinity Architecture","Analytics , App dev|test , CAE|CFD|FEA , ERM|SCM|CRM apps , High capacity data mgmt (NR|RDBMS) , VDI , VM Density" -"AMD EPYC™ 9455","EPYC 9005 Series","48","96","Up to 4.4 GHz","4.1 GHz","3.15 GHz","256 MB","5412 USD","300W","240-300W","SP5","1P / 2P","10/10/2024","PCIe® 5.0 x128","DDR5","12","Up to 6000 MT/s","576 GB/s","","100-000001542","","AMD Infinity Guard , AMD Infinity Architecture","Analytics , App dev|test , CAE|CFD|FEA , ERM|SCM|CRM apps , High capacity data mgmt (NR|RDBMS) , VDI , VM Density" -"AMD EPYC™ 9375F","EPYC 9005 Series","32","64","Up to 4.8 GHz","4.4 GHz","3.8 GHz","256 MB","5306 USD","320W","320-400W","SP5","1P / 2P","10/10/2024","PCIe® 5.0 x128","DDR5","12","Up to 6000 MT/s","576 GB/s","","100-000001197","","AMD Infinity Guard , AMD Infinity Architecture","EDA , HCI , High performance VM Density , Per core CAE|CFD|FEA , VDI" -"AMD EPYC™ 9365","EPYC 9005 Series","36","72","Up to 4.3 GHz","4.15 GHz","3.4 GHz","192 MB","4341 USD","300W","240-300W","SP5","1P / 2P","10/10/2024","PCIe® 5.0 x128","DDR5","12","Up to 6000 MT/s","576 GB/s","","100-000001448","","AMD Infinity Guard , AMD Infinity Architecture","Content mgmt , ERM|SCM|CRM apps , General Purpose , CDN" -"AMD EPYC™ 9355P","EPYC 9005 Series","32","64","Up to 4.4 GHz","4.2 GHz","3.55 GHz","256 MB","2998 USD","280W","240-300W","SP5","1P","10/10/2024","PCIe® 5.0 x128","DDR5","12","Up to 6000 MT/s","576 GB/s","","100-000001521","","AMD Infinity Guard , AMD Infinity Architecture","ERM|SCM|CRM apps , Value data mgmt (NR|RDBMS) , VDI , VM Density" -"AMD EPYC™ 9355","EPYC 9005 Series","32","64","Up to 4.4 GHz","4.2 GHz","3.55 GHz","256 MB","3694 USD","280W","240-300W","SP5","1P / 2P","10/10/2024","PCIe® 5.0 x128","DDR5","12","Up to 6000 MT/s","576 GB/s","","100-000001148","","AMD Infinity Guard , AMD Infinity Architecture","Analytics , CAE|CFD|FEA , ERM|SCM|CRM apps , Media streaming , Medium capacity data mgmt (NR|RDBMS) , VDI , VM Density" -"AMD EPYC™ 9335","EPYC 9005 Series","32","64","Up to 4.4 GHz","4 GHz","3 GHz","128 MB","3178 USD","210W","200-240W","SP5","1P / 2P","10/10/2024","PCIe® 5.0 x128","DDR5","12","Up to 6000 MT/s","576 GB/s","","100-000001149","","AMD Infinity Guard , AMD Infinity Architecture","Analytics , CAE|CFD|FEA , ERM|SCM|CRM apps , Media streaming , Medium capacity data mgmt (NR|RDBMS) , VDI , VM Density" -"AMD EPYC™ 9275F","EPYC 9005 Series","24","48","Up to 4.8 GHz","4.5 GHz","4.1 GHz","256 MB","3439 USD","320W","320-400W","SP5","1P / 2P","10/10/2024","PCIe® 5.0 x128","DDR5","12","Up to 6000 MT/s","576 GB/s","","100-000001144","","AMD Infinity Architecture , AMD Infinity Guard","General Purpose , GPU|FPGA Accelerated , Per core CAE|CFD|FEA , SW-defined storage" -"AMD EPYC™ 9255","EPYC 9005 Series","24","48","Up to 4.3 GHz","4 GHz","3.2 GHz","128 MB","2495 USD","200W","200-240W","SP5","1P / 2P","10/10/2024","PCIe® 5.0 x128","DDR5","12","Up to 6000 MT/s","576 GB/s","","100-000000694","","AMD Infinity Architecture , AMD Infinity Guard","ERM|SCM|CRM apps , General Purpose , Networking|NFV , Web Serving" -"AMD EPYC™ 9175F","EPYC 9005 Series","16","32","Up to 5 GHz","4.55 GHz","4.2 GHz","512 MB","4256 USD","320W","320-400W","SP5","1P / 2P","10/10/2024","PCIe® 5.0 x128","DDR5","12","Up to 6000 MT/s","576 GB/s","","100-000001145","","AMD Infinity Architecture , AMD Infinity Guard","CAE|CFD|FEA , EDA , HPC" -"AMD EPYC™ 9135","EPYC 9005 Series","16","32","Up to 4.3 GHz","4.25 GHz","3.65 GHz","64 MB","1214 USD","200W","200-240W","SP5","1P / 2P","10/10/2024","PCIe® 5.0 x128","DDR5","12","Up to 6000 MT/s","576 GB/s","","100-000001150","","AMD Infinity Architecture , AMD Infinity Guard","EDA , High-speed data mgmt (NR|RDBMS) , Per core CAE|CFD|FEA" -"AMD EPYC™ 9115","EPYC 9005 Series","16","32","Up to 4.1 GHz","3.3 GHz","2.6 GHz","64 MB","726 USD","125W","120-155W","SP5","1P / 2P","10/10/2024","PCIe® 5.0 x128","DDR5","12","Up to 6000 MT/s","576 GB/s","","100-000001552","","AMD Infinity Architecture , AMD Infinity Guard","Media streaming , Per core CAE|CFD|FEA , Value" -"AMD EPYC™ 9015","EPYC 9005 Series","8","16","Up to 4.1 GHz","3.95 GHz","3.6 GHz","64 MB","527 USD","125W","120-155W","SP5","1P / 2P","10/10/2024","PCIe® 5.0 x128","DDR5","12","Up to 6000 MT/s","576 GB/s","","100-000001553","","AMD Infinity Architecture , AMD Infinity Guard","Collaborative , ERM|SCM|CRM apps , General Purpose" +"AMD EPYC™ 9965","EPYC 9005 Series","192","384","Up to 3.7 GHz","3.35 GHz","2.25 GHz","384 MB","14813 USD","500W","450-500W","SP5","1P / 2P","10/10/2024","PCIe® 5.0 x128","DDR5","12","Up to 6400 MT/s","614 GB/s","","100-000000976","","AMD Infinity Guard , AMD Infinity Architecture","Analytics , App dev|test , Content mgmt , HPC , Media streaming , Networking|NFV , Security , VDI , VM Density , Web Serving , CDC" +"AMD EPYC™ 9845","EPYC 9005 Series","160","320","Up to 3.7 GHz","3.25 GHz","2.1 GHz","320 MB","13564 USD","390W","320-400W","SP5","1P / 2P","10/10/2024","PCIe® 5.0 x128","DDR5","12","Up to 6400 MT/s","614 GB/s","","100-000001458","","AMD Infinity Guard , AMD Infinity Architecture","Analytics , App dev|test , CDC , Content mgmt , HPC , Media streaming , Networking|NFV , Security , VDI , VM Density , Web Serving" +"AMD EPYC™ 9825","EPYC 9005 Series","144","288","Up to 3.7 GHz","3.3 GHz","2.2 GHz","384 MB","13006 USD","390W","320-400W","SP5","1P / 2P","10/10/2024","PCIe® 5.0 x128","DDR5","12","Up to 6400 MT/s","614 GB/s","","100-000000837","","AMD Infinity Guard , AMD Infinity Architecture","Analytics , App dev|test , CDC , Content mgmt , HPC , Media streaming , Networking|NFV , Security , VDI , VM Density , Web Serving" +"AMD EPYC™ 9755","EPYC 9005 Series","128","256","Up to 4.1 GHz","4.1 GHz","2.7 GHz","512 MB","12984 USD","500W","450-500W","SP5","1P / 2P","10/10/2024","PCIe® 5.0 x128","DDR5","12","Up to 6400 MT/s","614 GB/s","","100-000001443","","AMD Infinity Guard , AMD Infinity Architecture","Analytics , App dev|test , Content mgmt , HPC , Media streaming , Networking|NFV , Security , VDI , VM Density , Web Serving , CDC" +"AMD EPYC™ 9745","EPYC 9005 Series","128","256","Up to 3.7 GHz","3.45 GHz","2.4 GHz","256 MB","12141 USD","400W","320-400W","SP5","1P / 2P","10/10/2024","PCIe® 5.0 x128","DDR5","12","Up to 6400 MT/s","614 GB/s","","100-000001460","","AMD Infinity Guard , AMD Infinity Architecture","Analytics , App dev|test , Content mgmt , HPC , Media streaming , Networking|NFV , Security , VDI , VM Density , Web Serving , CDC" +"AMD EPYC™ 9655P","EPYC 9005 Series","96","192","Up to 4.5 GHz","4.1 GHz","2.6 GHz","384 MB","10811 USD","400W","320-400W","SP5","1P","10/10/2024","PCIe® 5.0 x128","DDR5","12","Up to 6400 MT/s","614 GB/s","","100-000001522","","AMD Infinity Guard , AMD Infinity Architecture","CAE|CFD|FEA , High capacity data mgmt (NR|RDBMS) , HPC" +"AMD EPYC™ 9655","EPYC 9005 Series","96","192","Up to 4.5 GHz","4.1 GHz","2.6 GHz","384 MB","11852 USD","400W","320-400W","SP5","1P / 2P","10/10/2024","PCIe® 5.0 x128","DDR5","12","Up to 6400 MT/s","614 GB/s","","100-000000674","","AMD Infinity Guard , AMD Infinity Architecture","CAE|CFD|FEA , High capacity data mgmt (NR|RDBMS) , HPC" +"AMD EPYC™ 9645","EPYC 9005 Series","96","192","Up to 3.7 GHz","3.3 GHz","2.3 GHz","256 MB","11048 USD","320W","320-400W","SP5","1P / 2P","10/10/2024","PCIe® 5.0 x128","DDR5","12","Up to 6400 MT/s","614 GB/s","","100-000001461","","AMD Infinity Guard , AMD Infinity Architecture","App dev|test , Consumer-Oriented Digital Services , Content mgmt , ERM|SCM|CRM apps" +"AMD EPYC™ 9575F","EPYC 9005 Series","64","128","Up to 5 GHz","4.5 GHz","3.3 GHz","256 MB","11791 USD","400W","320-400W","SP5","1P / 2P","10/10/2024","PCIe® 5.0 x128","DDR5","12","Up to 6400 MT/s","614 GB/s","","100-000001554","","AMD Infinity Guard , AMD Infinity Architecture","Analytics , App dev|test , CAE|CFD|FEA , ERM|SCM|CRM apps , High capacity data mgmt (NR|RDBMS) , VDI , VM Density" +"AMD EPYC™ 9565","EPYC 9005 Series","72","144","Up to 4.3 GHz","4.2 GHz","3.15 GHz","384 MB","10486 USD","400W","320-400W","SP5","1P / 2P","10/10/2024","PCIe® 5.0 x128","DDR5","12","Up to 6400 MT/s","614 GB/s","","100-000001447","","AMD Infinity Guard , AMD Infinity Architecture","Analytics , CAE|CFD|FEA , ERM|SCM|CRM apps , High capacity data mgmt (NR|RDBMS) , HPC , VM Density" +"AMD EPYC™ 9555P","EPYC 9005 Series","64","128","Up to 4.4 GHz","4.2 GHz","3.2 GHz","256 MB","7983 USD","360W","320-400W","SP5","1P","10/10/2024","PCIe® 5.0 x128","DDR5","12","Up to 6400 MT/s","614 GB/s","","100-000001523","","AMD Infinity Guard , 4th Gen AMD Infinity Architecture","App dev|test , ERM|SCM|CRM apps , Value data mgmt (NR|RDBMS) , VDI , VM Density" +"AMD EPYC™ 9555","EPYC 9005 Series","64","128","Up to 4.4 GHz","4.2 GHz","3.2 GHz","256 MB","9826 USD","360W","320-400W","SP5","1P / 2P","10/10/2024","PCIe® 5.0 x128","DDR5","12","Up to 6400 MT/s","614 GB/s","","100-000001142","","AMD Infinity Guard , AMD Infinity Architecture","Analytics , CAE|CFD|FEA , ERM|SCM|CRM apps , High capacity data mgmt (NR|RDBMS) , HPC , VM Density" +"AMD EPYC™ 9535","EPYC 9005 Series","64","128","Up to 4.3 GHz","3.5 GHz","2.4 GHz","256 MB","8992 USD","300W","240-300W","SP5","1P / 2P","10/10/2024","PCIe® 5.0 x128","DDR5","12","Up to 6400 MT/s","614 GB/s","","100-000001147","","AMD Infinity Guard , AMD Infinity Architecture","Analytics , App dev|test , CAE , ERM|SCM|CRM apps , High capacity data mgmt (NR|RDBMS) , VDI , VM Density" +"AMD EPYC™ 9475F","EPYC 9005 Series","48","96","Up to 4.8 GHz","4.4 GHz","3.65 GHz","256 MB","7592 USD","400W","320-400W","SP5","1P / 2P","10/10/2024","PCIe® 5.0 x128","DDR5","12","Up to 6400 MT/s","614 GB/s","","100-000001143","","AMD Infinity Guard , AMD Infinity Architecture","Analytics , App dev|test , CAE|CFD|FEA , ERM|SCM|CRM apps , High capacity data mgmt (NR|RDBMS) , VDI , VM Density" +"AMD EPYC™ 9455P","EPYC 9005 Series","48","96","Up to 4.4 GHz","4.1 GHz","3.15 GHz","256 MB","4819 USD","300W","240-300W","SP5","1P","10/10/2024","PCIe® 5.0 x128","DDR5","12","Up to 6400 MT/s","614 GB/s","","100-000001563","","AMD Infinity Guard , AMD Infinity Architecture","Analytics , App dev|test , CAE|CFD|FEA , ERM|SCM|CRM apps , High capacity data mgmt (NR|RDBMS) , VDI , VM Density" +"AMD EPYC™ 9455","EPYC 9005 Series","48","96","Up to 4.4 GHz","4.1 GHz","3.15 GHz","256 MB","5412 USD","300W","240-300W","SP5","1P / 2P","10/10/2024","PCIe® 5.0 x128","DDR5","12","Up to 6400 MT/s","614 GB/s","","100-000001542","","AMD Infinity Guard , AMD Infinity Architecture","Analytics , App dev|test , CAE|CFD|FEA , ERM|SCM|CRM apps , High capacity data mgmt (NR|RDBMS) , VDI , VM Density" +"AMD EPYC™ 9375F","EPYC 9005 Series","32","64","Up to 4.8 GHz","4.4 GHz","3.8 GHz","256 MB","5306 USD","320W","320-400W","SP5","1P / 2P","10/10/2024","PCIe® 5.0 x128","DDR5","12","Up to 6400 MT/s","614 GB/s","","100-000001197","","AMD Infinity Guard , AMD Infinity Architecture","EDA , HCI , High performance VM Density , Per core CAE|CFD|FEA , VDI" +"AMD EPYC™ 9365","EPYC 9005 Series","36","72","Up to 4.3 GHz","4.15 GHz","3.4 GHz","192 MB","4341 USD","300W","240-300W","SP5","1P / 2P","10/10/2024","PCIe® 5.0 x128","DDR5","12","Up to 6400 MT/s","614 GB/s","","100-000001448","","AMD Infinity Guard , AMD Infinity Architecture","Content mgmt , ERM|SCM|CRM apps , General Purpose , CDN" +"AMD EPYC™ 9355P","EPYC 9005 Series","32","64","Up to 4.4 GHz","4.2 GHz","3.55 GHz","256 MB","2998 USD","280W","240-300W","SP5","1P","10/10/2024","PCIe® 5.0 x128","DDR5","12","Up to 6400 MT/s","614 GB/s","","100-000001521","","AMD Infinity Guard , AMD Infinity Architecture","ERM|SCM|CRM apps , Value data mgmt (NR|RDBMS) , VDI , VM Density" +"AMD EPYC™ 9355","EPYC 9005 Series","32","64","Up to 4.4 GHz","4.2 GHz","3.55 GHz","256 MB","3694 USD","280W","240-300W","SP5","1P / 2P","10/10/2024","PCIe® 5.0 x128","DDR5","12","Up to 6400 MT/s","614 GB/s","","100-000001148","","AMD Infinity Guard , AMD Infinity Architecture","Analytics , CAE|CFD|FEA , ERM|SCM|CRM apps , Media streaming , Medium capacity data mgmt (NR|RDBMS) , VDI , VM Density" +"AMD EPYC™ 9335","EPYC 9005 Series","32","64","Up to 4.4 GHz","4 GHz","3 GHz","128 MB","3178 USD","210W","200-240W","SP5","1P / 2P","10/10/2024","PCIe® 5.0 x128","DDR5","12","Up to 6400 MT/s","614 GB/s","","100-000001149","","AMD Infinity Guard , AMD Infinity Architecture","Analytics , CAE|CFD|FEA , ERM|SCM|CRM apps , Media streaming , Medium capacity data mgmt (NR|RDBMS) , VDI , VM Density" +"AMD EPYC™ 9275F","EPYC 9005 Series","24","48","Up to 4.8 GHz","4.5 GHz","4.1 GHz","256 MB","3439 USD","320W","320-400W","SP5","1P / 2P","10/10/2024","PCIe® 5.0 x128","DDR5","12","Up to 6400 MT/s","614 GB/s","","100-000001144","","AMD Infinity Architecture , AMD Infinity Guard","General Purpose , GPU|FPGA Accelerated , Per core CAE|CFD|FEA , SW-defined storage" +"AMD EPYC™ 9255","EPYC 9005 Series","24","48","Up to 4.3 GHz","4 GHz","3.2 GHz","128 MB","2495 USD","200W","200-240W","SP5","1P / 2P","10/10/2024","PCIe® 5.0 x128","DDR5","12","Up to 6400 MT/s","614 GB/s","","100-000000694","","AMD Infinity Architecture , AMD Infinity Guard","ERM|SCM|CRM apps , General Purpose , Networking|NFV , Web Serving" +"AMD EPYC™ 9175F","EPYC 9005 Series","16","32","Up to 5 GHz","4.55 GHz","4.2 GHz","512 MB","4256 USD","320W","320-400W","SP5","1P / 2P","10/10/2024","PCIe® 5.0 x128","DDR5","12","Up to 6400 MT/s","614 GB/s","","100-000001145","","AMD Infinity Architecture , AMD Infinity Guard","CAE|CFD|FEA , EDA , HPC" +"AMD EPYC™ 9135","EPYC 9005 Series","16","32","Up to 4.3 GHz","4.25 GHz","3.65 GHz","64 MB","1214 USD","200W","200-240W","SP5","1P / 2P","10/10/2024","PCIe® 5.0 x128","DDR5","12","Up to 6400 MT/s","614 GB/s","","100-000001150","","AMD Infinity Architecture , AMD Infinity Guard","EDA , High-speed data mgmt (NR|RDBMS) , Per core CAE|CFD|FEA" +"AMD EPYC™ 9115","EPYC 9005 Series","16","32","Up to 4.1 GHz","3.3 GHz","2.6 GHz","64 MB","726 USD","125W","120-155W","SP5","1P / 2P","10/10/2024","PCIe® 5.0 x128","DDR5","12","Up to 6400 MT/s","614 GB/s","","100-000001552","","AMD Infinity Architecture , AMD Infinity Guard","Media streaming , Per core CAE|CFD|FEA , Value" +"AMD EPYC™ 9015","EPYC 9005 Series","8","16","Up to 4.1 GHz","3.95 GHz","3.6 GHz","64 MB","527 USD","125W","120-155W","SP5","1P / 2P","10/10/2024","PCIe® 5.0 x128","DDR5","12","Up to 6400 MT/s","614 GB/s","","100-000001553","","AMD Infinity Architecture , AMD Infinity Guard","Collaborative , ERM|SCM|CRM apps , General Purpose" "AMD EPYC™ 9754S","EPYC 9004 Series","128","128","Up to 3.1 GHz","3.1 GHz","2.25 GHz","256 MB","10200 USD","360W","320-400W","SP5","1P / 2P","06/13/2023","PCIe® 5.0 x128","DDR5","12","Up to 4800 MT/s","460.8 GB/s","","100-000001371","","AMD Infinity Guard , AMD Infinity Architecture","App dev|test , Collaborative , Consumer-Oriented Digital Services , Content mgmt , General Purpose , HPC , Media streaming , VDI , VM Density , Web Serving" "AMD EPYC™ 9754","EPYC 9004 Series","128","256","Up to 3.1 GHz","3.1 GHz","2.25 GHz","256 MB","11900 USD","360W","320-400W","SP5","1P / 2P","06/13/2023","PCIe® 5.0 x128","DDR5","12","Up to 4800 MT/s","460.8 GB/s","","100-000001234","","AMD Infinity Guard , AMD Infinity Architecture","App dev|test , Collaborative , Consumer-Oriented Digital Services , Content mgmt , General Purpose , HPC , Media streaming , VDI , VM Density , Web Serving" "AMD EPYC™ 9734","EPYC 9004 Series","112","224","Up to 3 GHz","3 GHz","2.2 GHz","256 MB","9600 USD","340W","320-400W","SP5","1P / 2P","06/13/2023","PCIe® 5.0 x128","DDR5","12","Up to 4800 MT/s","460.8 GB/s","","100-000001235","","AMD Infinity Guard , AMD Infinity Architecture","App dev|test , Collaborative , Consumer-Oriented Digital Services , Content mgmt , General Purpose , HPC , Media streaming , VDI , VM Density , Web Serving" @@ -95,9 +95,15 @@ "AMD EPYC™ 7F72","EPYC 7002 Series","24","48","Up to 3.7 GHz","","3.2 GHz","192 MB","2450 USD","240W","","SP3","1P / 2P","","PCIe® 4.0 x128","DDR4","8","Up to 3200 MT/s","204.8 GB/s","100-000000141WOF","100-000000141","","AMD Infinity Guard , AMD Infinity Architecture","EDA , HCI , High performance VM Density , Per core CAE|CFD|FEA , VDI" "AMD EPYC™ 7F52","EPYC 7002 Series","16","32","Up to 3.9 GHz","","3.5 GHz","256 MB","3100 USD","240W","","SP3","1P / 2P","","PCIe® 4.0 x128","DDR4","8","Up to 3200 MT/s","204.8 GB/s","100-000000140WOF","100-000000140","","AMD Infinity Guard , AMD Infinity Architecture","EDA , High-speed data mgmt (NR|RDBMS) , Per core CAE|CFD|FEA" "AMD EPYC™ 7F32","EPYC 7002 Series","8","16","Up to 3.9 GHz","","3.7 GHz","128 MB","2100 USD","180W","","SP3","1P / 2P","","PCIe® 4.0 x128","DDR4","8","Up to 3200 MT/s","204.8 GB/s","100-000000139WOF","100-000000139","","AMD Infinity Guard , AMD Infinity Architecture","Departmental CAE|CFD|FEA , EDA , FSI risk analysis , Licensed per core data mgmt (RDBMS)" +"AMD EPYC™ 4585PX","EPYC 4005 Series","16","32","Up to 5.7 GHz","","4.3 GHz","128 MB","699 USD","170W","","AM5","1P","5/13/2025","PCIe® 5.0 x28","DDR5","2","Up to 5600 MT/s","89.6 GB/s","100-100001561WOF","100-000001561","","AMD Infinity Guard , AMD Infinity Architecture","" "AMD EPYC™ 7742","EPYC 7002 Series","64","128","Up to 3.4 GHz","","2.25 GHz","256 MB","6950 USD","225W","","SP3","1P / 2P","","PCIe® 4.0 x128","DDR4","8","Up to 3200 MT/s","204.8 GB/s","100-100000053WOF","100-000000053","","AMD Infinity Guard , AMD Infinity Architecture","Analytics , Cache-sensitive scale-up|out , CAE|CFD|FEA , ERM|SCM|CRM apps , High capacity data mgmt (NR|RDBMS) , VM Density" +"AMD EPYC™ 4565P","EPYC 4005 Series","16","32","Up to 5.7 GHz","","4.3 GHz","64 MB","589 USD","170W","","AM5","1P","5/13/2025","PCIe® 5.0 x28","DDR5","2","Up to 5600 MT/s","89.6 GB/s","100-100001559WOF","100-000001559","","AMD Infinity Architecture , AMD Infinity Guard","" +"AMD EPYC™ 4545P","EPYC 4005 Series","16","32","Up to 5.4 GHz","","3 GHz","64 MB","549 USD","65W","","AM5","1P","5/13/2025","PCIe® 5.0 x28","DDR5","2","Up to 5600 MT/s","89.6 GB/s","100-100001764WOF","100-000001764","","AMD Infinity Guard , AMD Infinity Architecture","" "AMD EPYC™ 7702P","EPYC 7002 Series","64","128","Up to 3.35 GHz","","2 GHz","256 MB","4425 USD","200W","","SP3","1P","","PCIe® 4.0 x128","DDR4","8","Up to 3200 MT/s","204.8 GB/s","100-100000047WOF","100-000000047","","AMD Infinity Guard , AMD Infinity Architecture","ERM|SCM|CRM apps , Security , Value data mgmt (NR|RDBMS) , VM Density" +"AMD EPYC™ 4465P","EPYC 4005 Series","12","24","Up to 5.4 GHz","","3.4 GHz","64 MB","399 USD","65W","","AM5","1P","5/13/2025","PCIe® 5.0 x28","DDR5","2","Up to 5600 MT/s","89.6 GB/s","100-100001558WOF","100-000001558","","AMD Infinity Guard , AMD Infinity Architecture","" +"AMD EPYC™ 4345P","EPYC 4005 Series","8","16","Up to 5.5 GHz","","3.8 GHz","32 MB","329 USD","65W","","AM5","1P","5/13/2025","PCIe® 5.0 x28","DDR5","2","Up to 5600 MT/s","89.6 GB/s","100-100001556WOF","100-000001556","","AMD Infinity Guard , AMD Infinity Architecture","" "AMD EPYC™ 7702","EPYC 7002 Series","64","128","Up to 3.35 GHz","","2 GHz","256 MB","6450 USD","200W","","SP3","1P / 2P","","PCIe® 4.0 x128","DDR4","8","Up to 3200 MT/s","204.8 GB/s","100-100000038WOF","100-000000038","","AMD Infinity Guard , AMD Infinity Architecture","Analytics , Cache-sensitive scale-up|out , CAE|CFD|FEA , ERM|SCM|CRM apps , High capacity data mgmt (NR|RDBMS) , VM Density" +"AMD EPYC™ 4245P","EPYC 4005 Series","6","12","Up to 5.4 GHz","","3.9 GHz","32 MB","239 USD","65W","","AM5","1P","5/13/2025","PCIe® 5.0 x28","DDR5","2","Up to 5600 MT/s","89.6 GB/s","100-100001555WOF","100-000001555","","AMD Infinity Guard , AMD Infinity Architecture","" "AMD EPYC™ 7662","EPYC 7002 Series","64","128","Up to 3.3 GHz","","2 GHz","256 MB","6150 USD","225W","","SP3","1P / 2P","","PCIe® 4.0 x128","DDR4","8","Up to 3200 MT/s","204.8 GB/s","100-000000137WOF","100-000000137","","AMD Infinity Guard , AMD Infinity Architecture","Analytics , App dev|test , CAE|CFD|FEA , ERM|SCM|CRM apps , High capacity data mgmt (NR|RDBMS) , VDI , VM Density" "AMD EPYC™ 7642","EPYC 7002 Series","48","96","Up to 3.3 GHz","","2.3 GHz","256 MB","4775 USD","225W","","SP3","1P / 2P","","PCIe® 4.0 x128","DDR4","8","Up to 3200 MT/s","204.8 GB/s","100-100000074WOF","100-000000074","","AMD Infinity Guard , AMD Infinity Architecture","Analytics , App dev|test , CAE|CFD|FEA , ERM|SCM|CRM apps , High capacity data mgmt (NR|RDBMS) , VDI , VM Density" "AMD EPYC™ 7552","EPYC 7002 Series","48","96","Up to 3.3 GHz","","2.2 GHz","192 MB","4025 USD","200W","","SP3","1P / 2P","","PCIe® 4.0 x128","DDR4","8","Up to 3200 MT/s","204.8 GB/s","100-100000076WOF","100-000000076","","AMD Infinity Guard , AMD Infinity Architecture","Analytics , App dev|test , CAE|CFD|FEA , ERM|SCM|CRM apps , High capacity data mgmt (NR|RDBMS) , VDI , VM Density" diff --git a/codecarbon/data/hardware/cpu_dataset_builder/intel_cpu_ark_dataset.csv b/codecarbon/data/hardware/cpu_dataset_builder/intel_cpu_ark_dataset.csv new file mode 100644 index 000000000..b1b834553 --- /dev/null +++ b/codecarbon/data/hardware/cpu_dataset_builder/intel_cpu_ark_dataset.csv @@ -0,0 +1,2025 @@ +cpu_name,launch_date,total_cores,max_turbo_frequency,processor_base_frequency,cache,tdp +Intel® Xeon® 6732P Processor,Q2'25,32,4.3 GHz,3.8 GHz,144 MB,350.0 +Intel® Xeon® 6774P Processor,Q2'25,64,3.90 GHz,2.50 GHz,336 MB,350.0 +Intel® Xeon® 6776P Processor,Q2'25,64,3.90 GHz,2.30 GHz,336 MB,350.0 +Intel® Xeon® 6716P-B Processor,Q2'25,40,3.5 GHz,2.5 GHz,160 MB,235.0 +Intel® Xeon® 6745P Processor,Q1'25,32,4.30 GHz,3.10 GHz,336 MB,300.0 +Intel® Xeon® 6315P Processor,Q1'25,4,5.2 GHz,2.8 GHz,12 MB,55.0 +Intel® Xeon® 6325P Processor,Q1'25,4,5.2 GHz,3.5 GHz,12 MB,55.0 +Intel® Xeon® 6333P Processor,Q1'25,6,4.6 GHz,3.1 GHz,18 MB,65.0 +Intel® Xeon® 6337P Processor,Q1'25,6,5.3 GHz,3.5 GHz,18 MB,80.0 +Intel® Xeon® 6349P Processor,Q1'25,6,5.7 GHz,3.6 GHz,18 MB,95.0 +Intel® Xeon® 6353P Processor,Q1'25,8,5.4 GHz,2.7 GHz,24 MB,65.0 +Intel® Xeon® 6357P Processor,Q1'25,8,5.4 GHz,3 GHz,24 MB,80.0 +Intel® Xeon® 6369P Processor,Q1'25,8,5.7 GHz,3.3 GHz,24 MB,95.0 +Intel® Xeon® 6505P Processor,Q1'25,12,4.10 GHz,2.20 GHz,48 MB,150.0 +Intel® Xeon® 6507P Processor,Q1'25,8,4.30 GHz,3.50 GHz,48 MB,150.0 +Intel® Xeon® 6511P Processor,Q1'25,16,4.20 GHz,2.30 GHz,72 MB,150.0 +Intel® Xeon® 6513P-B Processor,Q1'25,20,3.3 GHz,2 GHz,80 MB,130.0 +Intel® Xeon® 6515P Processor,Q1'25,16,3.80 GHz,2.30 GHz,72 MB,150.0 +Intel® Xeon® 6516P-B Processor,Q1'25,20,3.5 GHz,2.3 GHz,80 MB,145.0 +Intel® Xeon® 6517P Processor,Q1'25,16,4.20 GHz,3.20 GHz,72 MB,190.0 +Intel® Xeon® 6520P Processor,Q1'25,24,4 GHz,2.4 GHz,144 MB,210.0 +Intel® Xeon® 6521P Processor,Q1'25,24,4.1 GHz,2.6 GHz,144 MB,225.0 +Intel® Xeon® 6523P-B Processor,Q1'25,24,3.9 GHz,2.5 GHz,96 MB,175.0 +Intel® Xeon® 6527P Processor,Q1'25,24,4.2 GHz,3 GHz,144 MB,255.0 +Intel® Xeon® 6530P Processor,Q1'25,32,4.1 GHz,2.3 GHz,144 MB,225.0 +Intel® Xeon® 6533P-B Processor,Q1'25,32,3.9 GHz,2.2 GHz,128 MB,205.0 +Intel® Xeon® 6543P-B Processor,Q1'25,32,3.3 GHz,2 GHz,128 MB,160.0 +Intel® Xeon® 6546P-B Processor,Q1'25,32,3.5 GHz,2.3 GHz,128 MB,195.0 +Intel® Xeon® 6553P-B Processor,Q1'25,36,4 GHz,2.6 GHz,144 MB,235.0 +Intel® Xeon® 6556P-B Processor,Q1'25,36,3.5 GHz,2.3 GHz,144 MB,215.0 +Intel® Xeon® 6563P-B Processor,Q1'25,38,4 GHz,2.4 GHz,152 MB,235.0 +Intel® Xeon® 6706P-B Processor,Q1'25,40,3.5 GHz,2.5 GHz,160 MB,235.0 +Intel® Xeon® 6724P Processor,Q1'25,16,4.30 GHz,3.60 GHz,72 MB,210.0 +Intel® Xeon® 6728P Processor,Q1'25,24,4.1 GHz,2.7 GHz,144 MB,210.0 +Intel® Xeon® 6730P Processor,Q1'25,32,3.80 GHz,2.50 GHz,288 MB,250.0 +Intel® Xeon® 6731P Processor,Q1'25,32,4.1 GHz,2.5 GHz,144 MB,245.0 +Intel® Xeon® 6736P Processor,Q1'25,36,4.1 GHz,2 GHz,144 MB,205.0 +Intel® Xeon® 6737P Processor,Q1'25,32,4 GHz,2.9 GHz,144 MB,270.0 +Intel® Xeon® 6738P Processor,Q1'25,32,4.2 GHz,2.9 GHz,144 MB,270.0 +Intel® Xeon® 6740P Processor,Q1'25,48,3.80 GHz,2.10 GHz,288 MB,270.0 +Intel® Xeon® 6741P Processor,Q1'25,48,3.80 GHz,2.50 GHz,288 MB,300.0 +Intel® Xeon® 6747P Processor,Q1'25,48,3.90 GHz,2.70 GHz,288 MB,330.0 +Intel® Xeon® 6748P Processor,Q1'25,48,4.1 GHz,2.5 GHz,192 MB,300.0 +Intel® Xeon® 6760P Processor,Q1'25,64,3.80 GHz,2.20 GHz,320 MB,330.0 +Intel® Xeon® 6761P Processor,Q1'25,64,3.90 GHz,2.50 GHz,336 MB,350.0 +Intel® Xeon® 6767P Processor,Q1'25,64,3.90 GHz,2.40 GHz,336 MB,350.0 +Intel® Xeon® 6768P Processor,Q1'25,64,3.90 GHz,2.40 GHz,336 MB,330.0 +Intel® Xeon® 6781P Processor,Q1'25,80,3.80 GHz,2.00 GHz,336 MB,350.0 +Intel® Xeon® 6787P Processor,Q1'25,86,3.80 GHz,2.00 GHz,336 MB,350.0 +Intel® Xeon® 6788P Processor,Q1'25,86,3.80 GHz,2.00 GHz,336 MB,350.0 +Intel® Xeon® 6503P-B Processor,Q1'25,12,3.5 GHz,2 GHz,48 MB,110.0 +Intel® Xeon® 6714P Processor,Q1'25,8,4.30 GHz,4.00 GHz,48 MB,165.0 +Intel® Xeon® 6726P-B Processor,Q1'25,42,3.5 GHz,2.3 GHz,168 MB,235.0 +Intel® Xeon® 6944P Processor,Q1'25,72,3.9 GHz,1.8 GHz,432 MB,350.0 +Intel® Core™ 3 Processor 201EF,Q1'25,4,4.8 GHz,,12 MB,58.0 +Intel® Core™ 3 Processor 201E,Q1'25,4,4.8 GHz,,12 MB,60.0 +Intel® Core™ 3 Processor 201TE,Q1'25,4,4.6 GHz,,12 MB,45.0 +Intel® Core™ 5 Processor 211E,Q1'25,10,4.9 GHz,,20 MB,65.0 +Intel® Core™ 5 Processor 211EF,Q1'25,10,4.9 GHz,,20 MB,65.0 +Intel® Core™ 5 Processor 211TE,Q1'25,10,4.8 GHz,,20 MB,45.0 +Intel® Core™ 5 Processor 221E,Q1'25,14,5.2 GHz,,24 MB,65.0 +Intel® Core™ 5 Processor 221TE,Q1'25,14,5 GHz,,24 MB,45.0 +Intel® Core™ 7 Processor 251E,Q1'25,24,5.6 GHz,,36 MB,65.0 +Intel® Core™ 7 Processor 251TE,Q1'25,24,5.4 GHz,,36 MB,45.0 +Intel® Xeon® 6952P Processor,Q3'24,96,3.9 GHz,2.1 GHz,480 MB,400.0 +Intel® Xeon® 6960P Processor,Q3'24,72,3.9 GHz,2.7 GHz,432 MB,500.0 +Intel® Xeon® 6972P Processor,Q3'24,96,3.9 GHz,2.4 GHz,480 MB,500.0 +Intel® Xeon® 6979P Processor,Q3'24,120,3.9 GHz,2.1 GHz,504 MB,500.0 +Intel® Xeon® 6980P Processor,Q3'24,128,3.9 GHz,2 GHz,504 MB,500.0 +Intel® Core™ i5 processor 14401E,Q3'24,6,4.7 GHz,,24 MB Intel® Smart Cache,65.0 +Intel® Core™ i5 processor 14401TE,Q3'24,6,4.5 GHz,,24 MB Intel® Smart Cache,45.0 +Intel® Core™ i5 processor 14501E,Q3'24,6,5.2 GHz,,24 MB Intel® Smart Cache,65.0 +Intel® Core™ i5 processor 14501TE,Q3'24,6,5.1 GHz,,24 MB Intel® Smart Cache,45.0 +Intel® Core™ i7 processor 14701E,Q3'24,8,5.4 GHz,,33 MB Intel® Smart Cache,65.0 +Intel® Core™ i7 processor 14701TE,Q3'24,8,5.2 GHz,,33 MB Intel® Smart Cache,45.0 +Intel® Core™ i9 processor 14901E,Q3'24,8,5.6 GHz,,36 MB Intel® Smart Cache,65.0 +Intel® Core™ i9 processor 14901KE,Q3'24,8,5.8 GHz,,36 MB Intel® Smart Cache,125.0 +Intel® Core™ i9 processor 14901TE,Q3'24,8,5.5 GHz,,36 MB Intel® Smart Cache,45.0 +Intel® Xeon® 6710E Processor,Q2'24,64,3.2 GHz,2.4 GHz,96 MB,205.0 +Intel® Xeon® 6731E Processor,Q2'24,96,3.1 GHz,2.2 GHz,96 MB,250.0 +Intel® Xeon® 6740E Processor,Q2'24,96,3.2 GHz,2.4 GHz,96 MB,250.0 +Intel® Xeon® 6746E Processor,Q2'24,112,2.7 GHz,2 GHz,96 MB,250.0 +Intel® Xeon® 6756E Processor,Q2'24,128,2.6 GHz,1.8 GHz,96 MB,225.0 +Intel® Xeon® 6766E Processor,Q2'24,144,2.7 GHz,1.9 GHz,108 MB,250.0 +Intel® Xeon® 6780E Processor,Q2'24,144,3 GHz,2.2 GHz,108 MB,330.0 +Intel Atom® x7203C Processor,Q2'24,2,3.2 GHz,,6 MB,9.0 +Intel Atom® x7211RE Processor,Q2'24,2,3.2 GHz,,6 MB,6.0 +Intel Atom® x7213RE Processor,Q2'24,2,3.4 GHz,,6 MB,9.0 +Intel Atom® x7405C Processor,Q2'24,4,3.4 GHz,,6 MB,12.0 +Intel Atom® x7433RE Processor,Q2'24,4,3.4 GHz,,6 MB,9.0 +Intel Atom® x7809C Processor,Q2'24,8,3.6 GHz,,6 MB,25.0 +Intel Atom® x7835RE Processor,Q2'24,8,3.6 GHz,,6 MB,12.0 +Intel® Xeon® Bronze 3508U Processor,Q4'23,8,2.2 GHz,2.10 GHz,22.5 MB,125.0 +Intel® Xeon® Gold 5515+ Processor,Q4'23,8,4.1 GHz,3.2 GHz,22.5 MB,165.0 +Intel® Xeon® Gold 6544Y Processor,Q4'23,16,4.1 GHz,3.6 GHz,45 MB,270.0 +Intel® Xeon® Platinum 8568Y+ Processor,Q4'23,48,4 GHz,2.3 GHz,300 MB,350.0 +Intel® Xeon® Platinum 8571N Processor,Q4'23,52,4 GHz,2.4 GHz,300 MB,300.0 +Intel® Xeon® Silver 4509Y Processor,Q4'23,8,4.1 GHz,2.60 GHz,22.5 MB,125.0 +Intel® Xeon® Silver 4510 Processor,Q4'23,12,4.1 GHz,2.40 GHz,30 MB,150.0 +Intel® Xeon® Silver 4510T Processor,Q4'23,12,3.7 GHz,2.00 GHz,30 MB,115.0 +Intel® Xeon® D-1813NT Processor,Q4'23,4,2.4 GHz,2.20 GHz,10240,42.0 +Intel® Xeon® D-1823NT Processor,Q4'23,6,3.5 GHz,2.80 GHz,10240,55.0 +Intel® Xeon® D-1834 Processor,Q4'23,8,2.9 GHz,1.80 GHz,15360,42.0 +Intel® Xeon® D-1844NT Processor,Q4'23,10,3.1 GHz,2.00 GHz,15360,55.0 +Intel® Xeon® D-1846 Processor,Q4'23,10,3.1 GHz,2.00 GHz,15360,55.0 +Intel® Xeon® D-1848TER Processor,Q4'23,10,3.1 GHz,2.00 GHz,15360,57.0 +Intel® Xeon® D-2832NT Processor,Q4'23,8,3.2 GHz,2.10 GHz,15 MB,70.0 +Intel® Xeon® D-2843NT Processor,Q4'23,10,3.2 GHz,2.00 GHz,15 MB,80.0 +Intel® Xeon® D-2876NT Processor,Q4'23,16,3.1 GHz,2.00 GHz,20 MB,100.0 +Intel® Xeon® D-2896NT Processor,Q4'23,20,3.2 GHz,2.00 GHz,30 MB,117.0 +Intel® Xeon® D-2896TER Processor,Q4'23,20,3.2 GHz,2.00 GHz,30 MB,110.0 +Intel® Xeon® D-2899NT Processor,Q4'23,22,3.1 GHz,2.20 GHz,30 MB,135.0 +Intel® Xeon® E-2414 Processor,Q4'23,4,4.50 GHz,2.60 GHz,12 MB,55.0 +Intel® Xeon® E-2434 Processor,Q4'23,4,5.00 GHz,3.40 GHz,12 MB,55.0 +Intel® Xeon® E-2436 Processor,Q4'23,6,5.00 GHz,2.90 GHz,18 MB,65.0 +Intel® Xeon® E-2456 Processor,Q4'23,6,5.10 GHz,3.30 GHz,18 MB,80.0 +Intel® Xeon® E-2468 Processor,Q4'23,8,5.2 GHz,2.6 GHz,24 MB,65.0 +Intel® Xeon® E-2478 Processor,Q4'23,8,5.20 GHz,2.8 GHz,24 MB,80.0 +Intel® Xeon® E-2486 Processor,Q4'23,6,5.6 GHz,3.5 GHz,18 MB,95.0 +Intel® Xeon® E-2488 Processor,Q4'23,8,5.60 GHz,3.20 GHz,24 MB,95.0 +Intel® Xeon® Gold 5512U Processor,Q4'23,28,3.7 GHz,2.1 GHz,52.5 MB,185.0 +Intel® Xeon® Gold 5520+ Processor,Q4'23,28,4 GHz,2.2 GHz,52.5 MB,205.0 +Intel® Xeon® Gold 6526Y Processor,Q4'23,16,3.9 GHz,2.8 GHz,37.5 MB,195.0 +Intel® Xeon® Gold 6530 Processor,Q4'23,32,4 GHz,2.1 GHz,160 MB,270.0 +Intel® Xeon® Gold 6534 Processor,Q4'23,8,4.2 GHz,3.9 GHz,22.5 MB,195.0 +Intel® Xeon® Gold 6538N Processor,Q4'23,32,4.1 GHz,2.1 GHz,60 MB,205.0 +Intel® Xeon® Gold 6538Y+ Processor,Q4'23,32,4 GHz,2.2 GHz,60 MB,225.0 +Intel® Xeon® Gold 6542Y Processor,Q4'23,24,4.1 GHz,2.9 GHz,60 MB,250.0 +Intel® Xeon® Gold 6548N Processor,Q4'23,32,4.1 GHz,2.8 GHz,60 MB,250.0 +Intel® Xeon® Gold 6548Y+ Processor,Q4'23,32,4.1 GHz,2.5 GHz,60 MB,250.0 +Intel® Xeon® Gold 6554S Processor,Q4'23,36,4 GHz,2.2 GHz,180 MB,270.0 +Intel® Xeon® Gold 6558Q Processor,Q4'23,32,4.1 GHz,3.2 GHz,60 MB,350.0 +Intel® Xeon® Platinum 8558 Processor,Q4'23,48,4 GHz,2.1 GHz,260 MB,330.0 +Intel® Xeon® Platinum 8558P Processor,Q4'23,48,4 GHz,2.7 GHz,260 MB,350.0 +Intel® Xeon® Platinum 8558U Processor,Q4'23,48,4 GHz,2 GHz,260 MB,300.0 +Intel® Xeon® Platinum 8562Y+ Processor,Q4'23,32,4.1 GHz,2.8 GHz,60 MB,300.0 +Intel® Xeon® Platinum 8570 Processor,Q4'23,56,4 GHz,2.1 GHz,300 MB,350.0 +Intel® Xeon® Platinum 8580 Processor,Q4'23,60,4 GHz,2 GHz,300 MB,350.0 +Intel® Xeon® Platinum 8581V Processor,Q4'23,60,3.9 GHz,2 GHz,300 MB,270.0 +Intel® Xeon® Platinum 8592+ Processor,Q4'23,64,3.9 GHz,1.9 GHz,320 MB,350.0 +Intel® Xeon® Platinum 8592V Processor,Q4'23,64,3.9 GHz,2 GHz,320 MB,330.0 +Intel® Xeon® Platinum 8593Q Processor,Q4'23,64,3.9 GHz,2.2 GHz,320 MB,385.0 +Intel® Xeon® Silver 4514Y Processor,Q4'23,16,3.4 GHz,2 GHz,30 MB,150.0 +Intel® Xeon® Silver 4516Y+ Processor,Q4'23,24,3.7 GHz,2.2 GHz,45 MB,185.0 +Intel® Xeon® Gold 5403N Processor,Q4'23,12,3.9 GHz,2 GHz,22.5 MB,115.0 +Intel® Xeon® Gold 6403N Processor,Q3'23,24,3.60 GHz,1.90 GHz,45 MB,185.0 +Intel® Xeon® Gold 6423N Processor,Q3'23,28,3.60 GHz,2.00 GHz,52.5 MB,195.0 +Intel® Xeon® Gold 6433N Processor,Q3'23,32,3.60 GHz,2.00 GHz,60 MB,205.0 +Intel® Xeon® Gold 6433NE Processor,Q3'23,32,3.60 GHz,2.00 GHz,60 MB,205.0 +Intel® Xeon® Gold 6443N Processor,Q3'23,32,3.60 GHz,2.00 GHz,60 MB,195.0 +Intel® Xeon® Platinum 8444H Processor,Q1'23,16,4.00 GHz,2.90 GHz,45 MB,270.0 +Intel® Xeon® Platinum 8450H Processor,Q1'23,28,3.50 GHz,2.00 GHz,75 MB,250.0 +Intel® Xeon® Platinum 8452Y Processor,Q1'23,36,3.20 GHz,2.00 GHz,67.5 MB,300.0 +Intel® Xeon® Platinum 8454H Processor,Q1'23,32,3.40 GHz,2.10 GHz,82.5 MB,270.0 +Intel® Xeon® Platinum 8458P Processor,Q1'23,44,3.80 GHz,2.70 GHz,82.5 MB,350.0 +Intel® Xeon® Platinum 8460H Processor,Q1'23,40,3.80 GHz,2.20 GHz,105 MB,330.0 +Intel® Xeon® Platinum 8460Y+ Processor,Q1'23,40,3.70 GHz,2.00 GHz,105 MB,300.0 +Intel® Xeon® Platinum 8461V Processor,Q1'23,48,3.70 GHz,2.20 GHz,97.5 MB,300.0 +Intel® Xeon® Platinum 8462Y+ Processor,Q1'23,32,4.10 GHz,2.80 GHz,60 MB,300.0 +Intel® Xeon® Platinum 8468 Processor,Q1'23,48,3.80 GHz,2.10 GHz,105 MB,350.0 +Intel® Xeon® Platinum 8468H Processor,Q1'23,48,3.80 GHz,2.10 GHz,105 MB,330.0 +Intel® Xeon® Platinum 8468V Processor,Q1'23,48,3.80 GHz,2.40 GHz,97.5 MB,330.0 +Intel® Xeon® Platinum 8470 Processor,Q1'23,52,3.80 GHz,2.00 GHz,105 MB,350.0 +Intel® Xeon® Platinum 8470N Processor,Q1'23,52,3.60 GHz,1.70 GHz,97.5 MB,300.0 +Intel® Xeon® Platinum 8470Q Processor,Q1'23,52,3.80 GHz,2.10 GHz,105 MB,350.0 +Intel® Xeon® Platinum 8471N Processor,Q1'23,52,3.60 GHz,1.80 GHz,97.5 MB,300.0 +Intel® Xeon® Platinum 8480+ Processor,Q1'23,56,3.80 GHz,2.00 GHz,105 MB,350.0 +Intel® Xeon® Platinum 8490H Processor,Q1'23,60,3.50 GHz,1.90 GHz,112.5 MB,350.0 +Intel® Xeon® Gold 5411N Processor,Q1'23,24,3.90 GHz,1.90 GHz,45 MB,165.0 +Intel® Xeon® Gold 5412U Processor,Q1'23,24,3.90 GHz,2.10 GHz,45 MB,185.0 +Intel® Xeon® Gold 5415+ Processor,Q1'23,8,4.10 GHz,2.90 GHz,22.5 MB,150.0 +Intel® Xeon® Gold 5416S Processor,Q1'23,16,4.00 GHz,2.00 GHz,30 MB,150.0 +Intel® Xeon® Gold 5418N Processor,Q1'23,24,3.80 GHz,1.80 GHz,45 MB,165.0 +Intel® Xeon® Gold 5418Y Processor,Q1'23,24,3.80 GHz,2.00 GHz,45 MB,185.0 +Intel® Xeon® Gold 5420+ Processor,Q1'23,28,4.10 GHz,2.00 GHz,52.5 MB,205.0 +Intel® Xeon® Gold 5423N Processor,Q1'23,20,4.00 GHz,2.10 GHz,37.5 MB,145.0 +Intel® Xeon® Gold 5433N Processor,Q1'23,20,4.10 GHz,2.30 GHz,37.5 MB,160.0 +Intel® Xeon® Gold 6414U Processor,Q1'23,32,3.40 GHz,2.00 GHz,60 MB,250.0 +Intel® Xeon® Gold 6416H Processor,Q1'23,18,4.20 GHz,2.20 GHz,45 MB,165.0 +Intel® Xeon® Gold 6418H Processor,Q1'23,24,4.00 GHz,2.10 GHz,60 MB,185.0 +Intel® Xeon® Gold 6421N Processor,Q1'23,32,3.60 GHz,1.80 GHz,60 MB,185.0 +Intel® Xeon® Gold 6426Y Processor,Q1'23,16,4.10 GHz,2.50 GHz,37.5 MB,185.0 +Intel® Xeon® Gold 6428N Processor,Q1'23,32,3.80 GHz,1.80 GHz,60 MB,185.0 +Intel® Xeon® Gold 6430 Processor,Q1'23,32,3.40 GHz,2.10 GHz,60 MB,270.0 +Intel® Xeon® Gold 6434 Processor,Q1'23,8,4.10 GHz,3.70 GHz,22.5 MB,195.0 +Intel® Xeon® Gold 6434H Processor,Q1'23,8,4.10 GHz,3.70 GHz,22.5 MB,195.0 +Intel® Xeon® Gold 6438M Processor,Q1'23,32,3.90 GHz,2.20 GHz,60 MB,205.0 +Intel® Xeon® Gold 6438N Processor,Q1'23,32,3.60 GHz,2.00 GHz,60 MB,205.0 +Intel® Xeon® Gold 6438Y+ Processor,Q1'23,32,4.00 GHz,2.00 GHz,60 MB,205.0 +Intel® Xeon® Gold 6442Y Processor,Q1'23,24,4.00 GHz,2.60 GHz,60 MB,225.0 +Intel® Xeon® Gold 6444Y Processor,Q1'23,16,4.00 GHz,3.60 GHz,45 MB,270.0 +Intel® Xeon® Gold 6448H Processor,Q1'23,32,4.10 GHz,2.40 GHz,60 MB,250.0 +Intel® Xeon® Gold 6448Y Processor,Q1'23,32,4.10 GHz,2.10 GHz,60 MB,225.0 +Intel® Xeon® Gold 6454S Processor,Q1'23,32,3.40 GHz,2.20 GHz,60 MB,270.0 +Intel® Xeon® Gold 6458Q Processor,Q1'23,32,4.00 GHz,3.10 GHz,60 MB,350.0 +Intel® Xeon® Silver 4410T Processor,Q1'23,10,4.00 GHz,2.70 GHz,26.25 MB,150.0 +Intel® Xeon® Silver 4410Y Processor,Q1'23,12,3.90 GHz,2.00 GHz,30 MB,150.0 +Intel® Xeon® Silver 4416+ Processor,Q1'23,20,3.90 GHz,2.00 GHz,37.5 MB,165.0 +Intel® Xeon® Bronze 3408U Processor,Q1'23,8,1.90 GHz,1.80 GHz,22.5 MB,125.0 +Intel® Xeon® CPU Max 9460 Processor,Q1'23,40,3.50 GHz,2.20 GHz,97.5 MB,350.0 +Intel® Xeon® CPU Max 9462 Processor,Q1'23,32,3.50 GHz,2.70 GHz,75 MB,350.0 +Intel® Xeon® CPU Max 9468 Processor,Q1'23,48,3.50 GHz,2.10 GHz,105 MB,350.0 +Intel® Xeon® CPU Max 9470 Processor,Q1'23,52,3.50 GHz,2.00 GHz,105 MB,350.0 +Intel® Xeon® CPU Max 9480 Processor,Q1'23,56,3.50 GHz,1.90 GHz,112.5 MB,350.0 +Intel Atom® x6214RE Processor,Q1'23,2,,1.40 GHz,1.5 MB L2 Cache,6.0 +Intel Atom® x6416RE Processor,Q1'23,4,,1.70 GHz,1.5 MB L2 Cache,9.0 +Intel Atom® x7211E Processor,Q1'23,2,3.20 GHz,,6 MB,6.0 +Intel Atom® x7213E Processor,Q1'23,2,3.20 GHz,,6 MB,10.0 +Intel Atom® x7425E Processor,Q1'23,4,3.40 GHz,,6 MB,12.0 +Intel® Core™ i3-13100E Processor,Q1'23,4,4.40 GHz,3.30 GHz,12 MB Intel® Smart Cache,60.0 +Intel® Core™ i3-13100TE Processor,Q1'23,4,4.10 GHz,2.40 GHz,12 MB Intel® Smart Cache,35.0 +Intel® Core™ i3-1315UE Processor,Q1'23,6,4.50 GHz,1.20 GHz,10 MB Intel® Smart Cache,15.0 +Intel® Core™ i3-1315URE Processor,Q1'23,6,4.50 GHz,1.20 GHz,10 MB Intel® Smart Cache,15.0 +Intel® Core™ i3-1320PE Processor,Q1'23,8,4.50 GHz,1.70 GHz,12 MB Intel® Smart Cache,28.0 +Intel® Core™ i3-13300HE Processor,Q1'23,8,4.6 GHz,2.1 GHz,12 MB Intel® Smart Cache,45.0 +Intel® Core™ i3-N300 Processor,Q1'23,8,3.80 GHz,,6 MB Intel® Smart Cache,7.0 +Intel® Core™ i3-N305 Processor,Q1'23,8,3.80 GHz,,6 MB Intel® Smart Cache,15.0 +Intel® Core™ i5-13400E Processor,Q1'23,10,4.60 GHz,2.40 GHz,20 MB Intel® Smart Cache,65.0 +Intel® Core™ i5-1345UE Processor,Q1'23,10,4.60 GHz,1.40 GHz,12 MB Intel® Smart Cache,15.0 +Intel® Core™ i5-1345URE Processor,Q1'23,10,4.60 GHz,1.40 GHz,12 MB Intel® Smart Cache,15.0 +Intel® Core™ i5-13500E Processor,Q1'23,14,4.60 GHz,2.40 GHz,24 MB Intel® Smart Cache,65.0 +Intel® Core™ i5-13500TE Processor,Q1'23,14,4.50 GHz,1.30 GHz,24 MB Intel® Smart Cache,35.0 +Intel® Core™ i7-1365UE Processor,Q1'23,10,4.90 GHz,1.70 GHz,12 MB Intel® Smart Cache,15.0 +Intel® Core™ i7-13700E Processor,Q1'23,16,5.10 GHz,1.90 GHz,30 MB Intel® Smart Cache,65.0 +Intel® Core™ i7-13700TE Processor,Q1'23,16,4.80 GHz,1.10 GHz,30 MB Intel® Smart Cache,35.0 +Intel® Core™ i7-1370PE Processor,Q1'23,14,4.80 GHz,1.90 GHz,24 MB Intel® Smart Cache,28.0 +Intel® Core™ i7-1375PRE Processor,Q1'23,14,4.8 GHz,1.90 GHz,24 MB Intel® Smart Cache,28.0 +Intel® Core™ i7-13800HE Processor,Q1'23,14,5.00 GHz,2.50 GHz,24 MB Intel® Smart Cache,45.0 +Intel® Core™ i9-13900E Processor,Q1'23,24,5.20 GHz,1.80 GHz,36 MB Intel® Smart Cache,65.0 +Intel® Core™ i9-13900TE Processor,Q1'23,24,5.00 GHz,1.00 GHz,36 MB Intel® Smart Cache,35.0 +Intel® Processor N100,Q1'23,4,3.40 GHz,,6 MB Intel® Smart Cache,6.0 +Intel® Processor N200,Q1'23,4,3.70 GHz,,6 MB Intel® Smart Cache,6.0 +Intel® Processor N50,Q1'23,2,3.40 GHz,,6 MB,6.0 +Intel® Processor N97,Q1'23,4,3.60 GHz,,6 MB Intel® Smart Cache,12.0 +Intel® Core™ i3-1320PRE Processor,Q1'23,8,4.50 GHz,1.70 GHz,12 MB Intel® Smart Cache,28.0 +Intel® Core™ i3-13300HRE Processor,Q1'23,8,4.60 GHz,2.10 GHz,12 MB Intel® Smart Cache,45.0 +Intel® Core™ i5-1350PRE Processor,Q1'23,12,4.60 GHz,1.80 GHz,12 MB Intel® Smart Cache,28.0 +Intel® Core™ i5-13600HRE Processor,Q1'23,12,4.80 GHz,2.70 GHz,18 MB Intel® Smart Cache,45.0 +Intel® Core™ i7-13800HRE Processor,Q1'23,14,5.00 GHz,2.50 GHz,24 MB Intel® Smart Cache,45.0 +Intel® Celeron® Processor 7305L,Q3'22,5,1.1 GHz,1.1 GHz,8 MB Intel® Smart Cache,15.0 +Intel® Core™ i3-1215UL Processor,Q3'22,6,4.40 GHz,1.20 GHz,10 MB Intel® Smart Cache,15.0 +Intel® Core™ i5-1235UL Processor,Q3'22,10,4.40 GHz,1.30 GHz,12 MB Intel® Smart Cache,15.0 +Intel® Core™ i5-1245UL Processor,Q3'22,10,4.40 GHz,1.60 GHz,12 MB Intel® Smart Cache,15.0 +Intel® Core™ i7-1255UL Processor,Q3'22,10,4.70 GHz,1.70 GHz,12 MB Intel® Smart Cache,15.0 +Intel® Core™ i7-1265UL Processor,Q3'22,10,4.80 GHz,1.80 GHz,12 MB Intel® Smart Cache,15.0 +Intel® Xeon® D-2745NX Processor,Q3'22,10,3.50 GHz,2.40 GHz,17.5 MB,96.0 +Intel® Xeon® D-2757NX Processor,Q3'22,12,3.50 GHz,2.50 GHz,20 MB,107.0 +Intel® Xeon® D-2777NX Processor,Q3'22,16,3.30 GHz,2.20 GHz,25 MB,116.0 +Intel® Xeon® D-2798NX Processor,Q3'22,20,3.10 GHz,2.10 GHz,30 MB,126.0 +Intel Atom® Processor P5731,Q2'22,12,,2.20 GHz,13.5 MB,54.5 +Intel Atom® Processor C5115,Q2'22,4,,2.80 GHz,9 MB,43.0 +Intel Atom® Processor C5125,Q2'22,8,,2.80 GHz,9 MB,50.0 +Intel Atom® Processor C5310,Q2'22,4,,1.60 GHz,9 MB,32.0 +Intel Atom® Processor C5315,Q2'22,4,,2.40 GHz,9 MB,38.0 +Intel Atom® Processor C5320,Q2'22,8,,2.40 GHz,9 MB,41.0 +Intel Atom® Processor C5325,Q2'22,8,,2.40 GHz,9 MB,41.0 +Intel Atom® Processor C5335C1,Q2'22,12,,2.4 GHz,13.5 MB,50.0 +Intel Atom® Processor P5322,Q2'22,8,,2.20 GHz,9 MB,55.0 +Intel Atom® Processor P5332,Q2'22,12,,2.20 GHz,13.5 MB,61.0 +Intel Atom® Processor P5342,Q2'22,16,,2.20 GHz,18 MB,71.0 +Intel Atom® Processor P5352,Q2'22,20,,2.20 GHz,22.5 MB,78.0 +Intel Atom® Processor P5362,Q2'22,24,,2.20 GHz,27 MB,83.0 +Intel Atom® Processor P5721,Q2'22,8,,2.20 GHz,9 MB,48.0 +Intel Atom® Processor P5742,Q2'22,16,,2.20 GHz,18 MB,67.0 +Intel Atom® Processor P5752,Q2'22,20,,2.20 GHz,22.5 MB,74.5 +Intel® Xeon® D-1702 Processor,Q1'22,2,1.70 GHz,1.60 GHz,5 MB,25.0 +Intel® Xeon® D-1712TR Processor,Q1'22,4,3.10 GHz,2.00 GHz,10 MB,40.0 +Intel® Xeon® D-1713NT Processor,Q1'22,4,3.50 GHz,2.20 GHz,10 MB,45.0 +Intel® Xeon® D-1713NTE Processor,Q1'22,4,3.30 GHz,2.20 GHz,10 MB,45.0 +Intel® Xeon® D-1714 Processor,Q1'22,4,3.40 GHz,2.30 GHz,10 MB,38.0 +Intel® Xeon® D-1715TER Processor,Q1'22,4,3.50 GHz,2.40 GHz,10 MB,50.0 +Intel® Xeon® D-1718T Processor,Q1'22,4,3.50 GHz,2.60 GHz,10 MB,46.0 +Intel® Xeon® D-1722NE Processor,Q1'22,6,2.70 GHz,1.70 GHz,10 MB,36.0 +Intel® Xeon® D-1726 Processor,Q1'22,6,3.50 GHz,2.90 GHz,10 MB,70.0 +Intel® Xeon® D-1732TE Processor,Q1'22,8,3.00 GHz,1.90 GHz,15 MB,52.0 +Intel® Xeon® D-1734NT Processor,Q1'22,8,3.10 GHz,2.00 GHz,15 MB,50.0 +Intel® Xeon® D-1735TR Processor,Q1'22,8,3.40 GHz,2.20 GHz,15 MB,59.0 +Intel® Xeon® D-1736 Processor,Q1'22,8,3.40 GHz,2.30 GHz,15 MB,55.0 +Intel® Xeon® D-1736NT Processor,Q1'22,8,3.50 GHz,2.70 GHz,15 MB,67.0 +Intel® Xeon® D-1739 Processor,Q1'22,8,3.50 GHz,3.00 GHz,15 MB,83.0 +Intel® Xeon® D-1747NTE Processor,Q1'22,10,3.50 GHz,2.50 GHz,15 MB,80.0 +Intel® Xeon® D-1748TE Processor,Q1'22,10,3.40 GHz,2.30 GHz,15 MB,65.0 +Intel® Xeon® D-1749NT Processor,Q1'22,10,3.50 GHz,3.00 GHz,15 MB,90.0 +Intel® Xeon® D-2712T Processor,Q1'22,4,3.00 GHz,1.90 GHz,15 MB,65.0 +Intel® Xeon® D-2733NT Processor,Q1'22,8,3.20 GHz,2.10 GHz,15 MB,80.0 +Intel® Xeon® D-2738 Processor,Q1'22,8,3.50 GHz,2.50 GHz,15 MB,88.0 +Intel® Xeon® D-2739NT Processor,Q1'22,8,3.5 GHz,2.50 GHz,15 MB,97.0 +Intel® Xeon® D-2752NTE Processor,Q1'22,12,3.00 GHz,1.90 GHz,20 MB,84.0 +Intel® Xeon® D-2752TER Processor,Q1'22,12,2.80 GHz,1.80 GHz,20 MB,77.0 +Intel® Xeon® D-2753NT Processor,Q1'22,12,3.10 GHz,2.00 GHz,20 MB,87.0 +Intel® Xeon® D-2766NT Processor,Q1'22,14,3.10 GHz,2.00 GHz,20 MB,97.0 +Intel® Xeon® D-2775TE Processor,Q1'22,16,3.10 GHz,2.00 GHz,25 MB,100.0 +Intel® Xeon® D-2776NT Processor,Q1'22,16,3.20 GHz,2.10 GHz,25 MB,117.0 +Intel® Xeon® D-2779 Processor,Q1'22,16,3.40 GHz,2.50 GHz,25 MB,126.0 +Intel® Xeon® D-2786NTE Processor,Q1'22,18,3.10 GHz,2.10 GHz,27.5 MB,118.0 +Intel® Xeon® D-2795NT Processor,Q1'22,20,3.10 GHz,2.00 GHz,30 MB,110.0 +Intel® Xeon® D-2796NT Processor,Q1'22,20,3.10 GHz,2.00 GHz,30 MB,120.0 +Intel® Xeon® D-2796TE Processor,Q1'22,20,3.10 GHz,2.00 GHz,30 MB,118.0 +Intel® Xeon® D-2798NT Processor,Q1'22,20,3.10 GHz,2.10 GHz,30 MB,125.0 +Intel® Xeon® D-2799 Processor,Q1'22,20,3.40 GHz,2.40 GHz,30 MB,129.0 +Intel® Xeon® D-1733NT Processor,Q1'22,8,3.10 GHz,2.00 GHz,15 MB,53.0 +Intel® Xeon® D-1746TER Processor,Q1'22,10,3.10 GHz,2.00 GHz,15 MB,67.0 +Intel® Xeon® D-1731NTE Processor,Q1'22,8,2.8 GHz,1.70 GHz,15 MB,45.0 +Intel® Xeon® E-2314 Processor,Q3'21,4,4.50 GHz,2.80 GHz,8 MB Intel® Smart Cache,65.0 +Intel® Xeon® E-2324G Processor,Q3'21,4,4.60 GHz,3.10 GHz,8 MB Intel® Smart Cache,65.0 +Intel® Xeon® E-2334 Processor,Q3'21,4,4.80 GHz,3.40 GHz,8 MB Intel® Smart Cache,65.0 +Intel® Xeon® E-2336 Processor,Q3'21,6,4.80 GHz,2.90 GHz,12 MB Intel® Smart Cache,65.0 +Intel® Xeon® E-2356G Processor,Q3'21,6,5.00 GHz,3.20 GHz,12 MB Intel® Smart Cache,80.0 +Intel® Xeon® E-2374G Processor,Q3'21,4,5.00 GHz,3.70 GHz,8 MB Intel® Smart Cache,80.0 +Intel® Xeon® E-2378 Processor,Q3'21,8,4.80 GHz,2.60 GHz,16 MB Intel® Smart Cache,65.0 +Intel® Xeon® E-2378G Processor,Q3'21,8,5.10 GHz,2.80 GHz,16 MB Intel® Smart Cache,80.0 +Intel® Xeon® E-2386G Processor,Q3'21,6,5.10 GHz,3.50 GHz,12 MB Intel® Smart Cache,95.0 +Intel® Xeon® E-2388G Processor,Q3'21,8,5.10 GHz,3.20 GHz,16 MB Intel® Smart Cache,95.0 +Intel® Celeron® 6600HE Processor,Q3'21,2,,2.60 GHz,8 MB Intel® Smart Cache,35.0 +Intel® Xeon® W-11155MLE Processor,Q3'21,4,3.10 GHz,1.80 GHz,8 MB Intel® Smart Cache,25.0 +Intel® Xeon® W-11555MLE Processor,Q3'21,6,4.40 GHz,1.90 GHz,12 MB Intel® Smart Cache,25.0 +Intel® Xeon® W-11865MLE Processor,Q3'21,8,4.50 GHz,1.50 GHz,24 MB Intel® Smart Cache,25.0 +Intel® Xeon® W-3323 Processor,Q3'21,12,3.90 GHz,3.50 GHz,21 MB,220.0 +Intel® Xeon® W-3335 Processor,Q3'21,16,4.00 GHz,3.40 GHz,24 MB,250.0 +Intel® Xeon® W-3345 Processor,Q3'21,24,4.00 GHz,3.00 GHz,36 MB,250.0 +Intel® Xeon® W-3365 Processor,Q3'21,32,4.00 GHz,2.70 GHz,48 MB,270.0 +Intel® Xeon® W-3375 Processor,Q3'21,38,4.00 GHz,2.50 GHz,57 MB,270.0 +Intel® Xeon® W-1350 Processor,Q2'21,6,5.00 GHz,3.30 GHz,12 MB Intel® Smart Cache,80.0 +Intel® Xeon® W-1350P Processor,Q2'21,6,5.10 GHz,4.00 GHz,12 MB Intel® Smart Cache,125.0 +Intel® Xeon® W-1370 Processor,Q2'21,8,5.10 GHz,2.90 GHz,16 MB Intel® Smart Cache,80.0 +Intel® Xeon® W-1370P Processor,Q2'21,8,5.20 GHz,3.60 GHz,16 MB Intel® Smart Cache,125.0 +Intel® Xeon® W-1390 Processor,Q2'21,8,5.20 GHz,2.80 GHz,16 MB Intel® Smart Cache,80.0 +Intel® Xeon® W-1390P Processor,Q2'21,8,5.30 GHz,3.50 GHz,16 MB Intel® Smart Cache,125.0 +Intel® Xeon® W-1390T Processor,Q2'21,8,4.90 GHz,1.50 GHz,16 MB Intel® Smart Cache,35.0 +Intel® Xeon® Gold 5318N Processor,Q2'21,24,3.40 GHz,2.10 GHz,36 MB,150.0 +Intel® Xeon® Gold 5318S Processor,Q2'21,24,3.40 GHz,2.10 GHz,36 MB,165.0 +Intel® Xeon® Gold 5320 Processor,Q2'21,26,3.40 GHz,2.20 GHz,39 MB,185.0 +Intel® Xeon® Gold 5320T Processor,Q2'21,20,3.50 GHz,2.30 GHz,30 MB,150.0 +Intel® Xeon® Gold 6312U Processor,Q2'21,24,3.60 GHz,2.40 GHz,36 MB,185.0 +Intel® Xeon® Gold 6326 Processor,Q2'21,16,3.50 GHz,2.90 GHz,24 MB,185.0 +Intel® Xeon® Gold 6330N Processor,Q2'21,28,3.40 GHz,2.20 GHz,42 MB,165.0 +Intel® Xeon® Gold 6336Y Processor,Q2'21,24,3.60 GHz,2.40 GHz,36 MB,185.0 +Intel® Xeon® Gold 6338 Processor,Q2'21,32,3.20 GHz,2.00 GHz,48 MB,205.0 +Intel® Xeon® Gold 6338T Processor,Q2'21,24,3.40 GHz,2.10 GHz,36 MB,165.0 +Intel® Xeon® Gold 6342 Processor,Q2'21,24,3.50 GHz,2.80 GHz,36 MB,230.0 +Intel® Xeon® Platinum 8351N Processor,Q2'21,36,3.50 GHz,2.40 GHz,54 MB,225.0 +Intel® Xeon® Platinum 8352S Processor,Q2'21,32,3.40 GHz,2.20 GHz,48 MB,205.0 +Intel® Xeon® Platinum 8352Y Processor,Q2'21,32,3.40 GHz,2.20 GHz,48 MB,205.0 +Intel® Xeon® Platinum 8358 Processor,Q2'21,32,3.40 GHz,2.60 GHz,48 MB,250.0 +Intel® Xeon® Platinum 8358P Processor,Q2'21,32,3.40 GHz,2.60 GHz,48 MB,240.0 +Intel® Xeon® Platinum 8368Q Processor,Q2'21,38,3.70 GHz,2.60 GHz,57 MB,270.0 +Intel® Xeon® Platinum 8380 Processor,Q2'21,40,3.40 GHz,2.30 GHz,60 MB,270.0 +Intel® Xeon® Silver 4309Y Processor,Q2'21,8,3.60 GHz,2.80 GHz,12 MB,105.0 +Intel® Xeon® Silver 4310 Processor,Q2'21,12,3.30 GHz,2.10 GHz,18 MB,120.0 +Intel® Xeon® Silver 4310T Processor,Q2'21,10,3.40 GHz,2.30 GHz,15 MB,105.0 +Intel® Xeon® Gold 5315Y Processor,Q2'21,8,3.60 GHz,3.20 GHz,12 MB,140.0 +Intel® Xeon® Gold 5317 Processor,Q2'21,12,3.60 GHz,3.00 GHz,18 MB,150.0 +Intel® Xeon® Gold 5318Y Processor,Q2'21,24,3.40 GHz,2.10 GHz,36 MB,165.0 +Intel® Xeon® Gold 6314U Processor,Q2'21,32,3.40 GHz,2.30 GHz,48 MB,205.0 +Intel® Xeon® Gold 6330 Processor,Q2'21,28,3.10 GHz,2.00 GHz,42 MB,205.0 +Intel® Xeon® Gold 6334 Processor,Q2'21,8,3.70 GHz,3.60 GHz,18 MB,165.0 +Intel® Xeon® Gold 6338N Processor,Q2'21,32,3.50 GHz,2.20 GHz,48 MB,185.0 +Intel® Xeon® Gold 6346 Processor,Q2'21,16,3.60 GHz,3.10 GHz,36 MB,205.0 +Intel® Xeon® Gold 6348 Processor,Q2'21,28,3.50 GHz,2.60 GHz,42 MB,235.0 +Intel® Xeon® Gold 6354 Processor,Q2'21,18,3.60 GHz,3.00 GHz,39 MB,205.0 +Intel® Xeon® Platinum 8352M Processor,Q2'21,32,3.50 GHz,2.30 GHz,48 MB,185.0 +Intel® Xeon® Platinum 8352V Processor,Q2'21,36,3.50 GHz,2.10 GHz,54 MB,195.0 +Intel® Xeon® Platinum 8360Y Processor,Q2'21,36,3.50 GHz,2.40 GHz,54 MB,250.0 +Intel® Xeon® Platinum 8362 Processor,Q2'21,32,3.60 GHz,2.80 GHz,48 MB,265.0 +Intel® Xeon® Platinum 8368 Processor,Q2'21,38,3.40 GHz,2.40 GHz,57 MB,270.0 +Intel® Xeon® Silver 4314 Processor,Q2'21,16,3.40 GHz,2.40 GHz,24 MB,135.0 +Intel® Xeon® Silver 4316 Processor,Q2'21,20,3.40 GHz,2.30 GHz,30 MB,150.0 +Intel® Core™ i3-10105 Processor,Q1'21,4,4.40 GHz,3.70 GHz,6 MB Intel® Smart Cache,65.0 +Intel® Core™ i3-10105F Processor,Q1'21,4,4.40 GHz,3.70 GHz,6 MB Intel® Smart Cache,65.0 +Intel® Core™ i3-10105T Processor,Q1'21,4,3.90 GHz,3.00 GHz,6 MB Intel® Smart Cache,35.0 +Intel® Core™ i3-10305 Processor,Q1'21,4,4.50 GHz,3.80 GHz,8 MB Intel® Smart Cache,65.0 +Intel® Core™ i3-10305T Processor,Q1'21,4,4.00 GHz,3.00 GHz,8 MB Intel® Smart Cache,35.0 +Intel® Core™ i3-10325 Processor,Q1'21,4,4.70 GHz,3.90 GHz,8 MB Intel® Smart Cache,65.0 +Intel® Core™ i5-10505 Processor,Q1'21,6,4.60 GHz,3.20 GHz,12 MB Intel® Smart Cache,65.0 +Intel® Core™ i5-11400 Processor,Q1'21,6,4.40 GHz,2.60 GHz,12 MB Intel® Smart Cache,65.0 +Intel® Core™ i5-11400F Processor,Q1'21,6,4.40 GHz,2.60 GHz,12 MB Intel® Smart Cache,65.0 +Intel® Core™ i5-11400T Processor,Q1'21,6,3.70 GHz,1.30 GHz,12 MB Intel® Smart Cache,35.0 +Intel® Core™ i5-11500 Processor,Q1'21,6,4.60 GHz,2.70 GHz,12 MB Intel® Smart Cache,65.0 +Intel® Core™ i5-11500T Processor,Q1'21,6,3.90 GHz,1.50 GHz,12 MB Intel® Smart Cache,35.0 +Intel® Core™ i5-11600 Processor,Q1'21,6,4.80 GHz,2.80 GHz,12 MB Intel® Smart Cache,65.0 +Intel® Core™ i5-11600K Processor,Q1'21,6,4.90 GHz,3.90 GHz,12 MB Intel® Smart Cache,125.0 +Intel® Core™ i5-11600KF Processor,Q1'21,6,4.90 GHz,3.90 GHz,12 MB Intel® Smart Cache,125.0 +Intel® Core™ i5-11600T Processor,Q1'21,6,4.10 GHz,1.70 GHz,12 MB Intel® Smart Cache,35.0 +Intel® Core™ i7-11700 Processor,Q1'21,8,4.90 GHz,2.50 GHz,16 MB Intel® Smart Cache,65.0 +Intel® Core™ i7-11700F Processor,Q1'21,8,4.90 GHz,2.50 GHz,16 MB Intel® Smart Cache,65.0 +Intel® Core™ i7-11700K Processor,Q1'21,8,5.00 GHz,3.60 GHz,16 MB Intel® Smart Cache,125.0 +Intel® Core™ i7-11700KF Processor,Q1'21,8,5.00 GHz,3.60 GHz,16 MB Intel® Smart Cache,125.0 +Intel® Core™ i7-11700T Processor,Q1'21,8,4.60 GHz,1.40 GHz,16 MB Intel® Smart Cache,35.0 +Intel® Core™ i9-11900 Processor,Q1'21,8,5.20 GHz,2.50 GHz,16 MB Intel® Smart Cache,65.0 +Intel® Core™ i9-11900F Processor,Q1'21,8,5.20 GHz,2.50 GHz,16 MB Intel® Smart Cache,65.0 +Intel® Core™ i9-11900K Processor,Q1'21,8,5.30 GHz,3.50 GHz,16 MB Intel® Smart Cache,125.0 +Intel® Core™ i9-11900KF Processor,Q1'21,8,5.30 GHz,3.50 GHz,16 MB Intel® Smart Cache,125.0 +Intel® Core™ i9-11900T Processor,Q1'21,8,4.90 GHz,1.50 GHz,16 MB Intel® Smart Cache,35.0 +Intel® Pentium® Gold G6405 Processor,Q1'21,2,,4.10 GHz,4 MB Intel® Smart Cache,58.0 +Intel® Pentium® Gold G6405T Processor,Q1'21,2,,3.50 GHz,4 MB Intel® Smart Cache,35.0 +Intel® Pentium® Gold G6505 Processor,Q1'21,2,,4.20 GHz,4 MB Intel® Smart Cache,58.0 +Intel® Pentium® Gold G6505T Processor,Q1'21,2,,3.60 GHz,4 MB Intel® Smart Cache,35.0 +Intel® Pentium® Gold G6605 Processor,Q1'21,2,,4.30 GHz,4 MB Intel® Smart Cache,58.0 +Intel® Celeron® Processor J6412,Q1'21,4,,2.00 GHz,1.5 MB L2 Cache,10.0 +Intel® Celeron® Processor N6210,Q1'21,2,,1.20 GHz,1.5 MB L2 Cache,6.5 +Intel® Core™ i3-10100Y Processor,Q1'21,2,3.90 GHz,1.30 GHz,4 MB Intel® Smart Cache,5.0 +Intel® Pentium® Gold 6500Y Processor,Q1'21,2,3.40 GHz,1.10 GHz,4 MB Intel® Smart Cache,5.0 +Intel® Celeron® Processor N4500,Q1'21,2,,1.10 GHz,4 MB Intel® Smart Cache,6.0 +Intel® Celeron® Processor N4505,Q1'21,2,,2.00 GHz,4 MB Intel® Smart Cache,10.0 +Intel® Celeron® Processor N5100,Q1'21,4,,1.10 GHz,4 MB Intel® Smart Cache,6.0 +Intel® Celeron® Processor N5105,Q1'21,4,,2.00 GHz,4 MB Intel® Smart Cache,10.0 +Intel® Pentium® Silver N6000 Processor,Q1'21,4,,1.10 GHz,4 MB Intel® Smart Cache,6.0 +Intel® Pentium® Silver N6005 Processor,Q1'21,4,,2.00 GHz,4 MB Intel® Smart Cache,10.0 +Intel® Core™ i5-10500H Processor,Q4'20,6,4.50 GHz,2.50 GHz,12 MB Intel® Smart Cache,45.0 +Intel® Celeron® 6305E Processor,Q4'20,2,,1.80 GHz,4 MB Intel® Smart Cache,15.0 +Intel® Pentium® Processor 6805,Q4'20,2,3.00 GHz,1.10 GHz,4 MB,15.0 +Intel® Core™ i3-10100F Processor,Q4'20,4,4.30 GHz,3.60 GHz,6 MB Intel® Smart Cache,65.0 +Intel Atom® x6200FE Processor,Q1'21,2,,1.00 GHz,1.5 MB,4.5 +Intel Atom® x6211E Processor,Q1'21,2,,1.30 GHz,1.5 MB L2 Cache,6.0 +Intel Atom® x6212RE Processor,Q1'21,2,,1.20 GHz,1.5 MB L2 Cache,6.0 +Intel Atom® x6413E Processor,Q1'21,4,,1.50 GHz,1.5 MB L2 Cache,9.0 +Intel Atom® x6414RE Processor,Q1'21,4,,1.50 GHz,1.5 MB L2 Cache,9.0 +Intel Atom® x6425E Processor,Q1'21,4,,2.00 GHz,1.5 MB L2 Cache,12.0 +Intel Atom® x6425RE Processor,Q1'21,4,,1.90 GHz,1.5 MB L2 Cache,12.0 +Intel Atom® x6427FE Processor,Q1'21,4,,1.90 GHz,1.5 MB L2 Cache,12.0 +Intel® Celeron® Processor J6413,Q1'21,4,,1.80 GHz,1.5 MB L2 Cache,10.0 +Intel® Celeron® Processor N6211,Q1'21,2,,1.20 GHz,1.5 MB L2 Cache,6.5 +Intel® Core™ i3-1115G4E Processor,Q3'20,2,3.90 GHz,2.20 GHz,6 MB Intel® Smart Cache,15.0 +Intel® Core™ i3-1115GRE Processor,Q3'20,2,3.90 GHz,2.20 GHz,6 MB Intel® Smart Cache,15.0 +Intel® Core™ i5-1145G7E Processor,Q3'20,4,4.10 GHz,1.50 GHz,8 MB Intel® Smart Cache,15.0 +Intel® Core™ i5-1145GRE Processor,Q3'20,4,4.10 GHz,1.50 GHz,8 MB Intel® Smart Cache,15.0 +Intel® Core™ i7-1185G7E Processor,Q3'20,4,4.40 GHz,1.80 GHz,12 MB Intel® Smart Cache,15.0 +Intel® Core™ i7-1185GRE Processor,Q3'20,4,4.40 GHz,1.80 GHz,12 MB Intel® Smart Cache,15.0 +Intel® Pentium® Processor J6426,Q1'21,4,,2.00 GHz,1.5 MB L2 Cache,10.0 +Intel® Pentium® Processor N6415,Q1'21,4,,1.20 GHz,1.5 MB L2 Cache,6.5 +Intel® Core™ i7-10870H Processor,Q3'20,8,5.00 GHz,2.20 GHz,16 MB Intel® Smart Cache,45.0 +Intel® Xeon® Gold 6330H Processor,Q3'20,24,3.70 GHz,2.00 GHz,33 MB,150.0 +Intel® Xeon® Platinum 8356H Processor,Q3'20,8,4.40 GHz,3.90 GHz,35.75 MB,190.0 +Intel® Xeon® Platinum 8360H Processor,Q3'20,24,4.20 GHz,3.00 GHz,33 MB,225.0 +Intel® Xeon® Platinum 8360HL Processor,Q3'20,24,4.20 GHz,3.00 GHz,33 MB,225.0 +Intel® Core™ i5-10200H Processor,Q3'20,4,4.10 GHz,2.40 GHz,8 MB Intel® Smart Cache,45.0 +Intel® Celeron® Processor G5905,Q3'20,2,,3.50 GHz,4 MB Intel® Smart Cache,58.0 +Intel® Celeron® Processor G5905T,Q3'20,2,,3.30 GHz,4 MB Intel® Smart Cache,35.0 +Intel® Celeron® Processor G5925,Q3'20,2,,3.60 GHz,4 MB Intel® Smart Cache,58.0 +Intel® Core™ i9-10850K Processor,Q3'20,10,5.20 GHz,3.60 GHz,20 MB Intel® Smart Cache,125.0 +Intel® Xeon® Gold 5318H Processor,Q2'20,18,3.80 GHz,2.50 GHz,24.75 MB,150.0 +Intel® Xeon® Gold 5320H Processor,Q2'20,20,4.20 GHz,2.40 GHz,27.5 MB,150.0 +Intel® Xeon® Gold 6328H Processor,Q2'20,16,4.30 GHz,2.80 GHz,22 MB,165.0 +Intel® Xeon® Gold 6328HL Processor,Q2'20,16,4.30 GHz,2.80 GHz,22 MB,165.0 +Intel® Xeon® Gold 6348H Processor,Q2'20,24,4.20 GHz,2.30 GHz,33 MB,165.0 +Intel® Xeon® Platinum 8353H Processor,Q2'20,18,3.80 GHz,2.50 GHz,24.75 MB,150.0 +Intel® Xeon® Platinum 8354H Processor,Q2'20,18,4.30 GHz,3.10 GHz,24.75 MB,205.0 +Intel® Xeon® Platinum 8376HL Processor,Q2'20,28,4.30 GHz,2.60 GHz,38.5 MB,205.0 +Intel® Xeon® Platinum 8380H Processor,Q2'20,28,4.30 GHz,2.90 GHz,38.5 MB,250.0 +Intel® Xeon® Platinum 8380HL Processor,Q2'20,28,4.30 GHz,2.90 GHz,38.5 MB,250.0 +Intel® Xeon® Platinum 8376H Processor,Q2'20,28,4.30 GHz,2.60 GHz,38.5 MB,205.0 +Intel Atom® Processor C3338R,Q2'20,2,2.20 GHz,1.80 GHz,4 MB,10.5 +Intel Atom® Processor C3436L,Q2'20,4,,1.30 GHz,8 MB,10.75 +Intel Atom® Processor C3558R,Q2'20,4,,2.40 GHz,8 MB,17.0 +Intel Atom® Processor C3758R,Q2'20,8,,2.40 GHz,16 MB,26.0 +Intel® Celeron® Processor 5305U,Q2'20,2,,2.30 GHz,2 MB,15.0 +Intel® Core™ i5-10310U Processor,Q2'20,4,4.40 GHz,1.70 GHz,6 MB Intel® Smart Cache,15.0 +Intel® Core™ i7-10610U Processor,Q2'20,4,4.90 GHz,1.80 GHz,8 MB Intel® Smart Cache,15.0 +Intel® Core™ i7-10810U Processor,Q2'20,6,4.90 GHz,1.10 GHz,12 MB Intel® Smart Cache,15.0 +Intel® Core™ i9-10885H Processor,Q2'20,8,5.30 GHz,2.40 GHz,16 MB Intel® Smart Cache,45.0 +Intel® Xeon® W-10855M Processor,Q2'20,6,5.10 GHz,2.80 GHz,12 MB Intel® Smart Cache,45.0 +Intel® Xeon® W-10885M Processor,Q2'20,8,5.30 GHz,2.40 GHz,16 MB Intel® Smart Cache,45.0 +Intel® Xeon® W-1250 Processor,Q2'20,6,4.70 GHz,3.30 GHz,12 MB Intel® Smart Cache,80.0 +Intel® Xeon® W-1250E Processor,Q2'20,6,4.70 GHz,3.50 GHz,12 MB Intel® Smart Cache,80.0 +Intel® Xeon® W-1250P Processor,Q2'20,6,4.80 GHz,4.10 GHz,12 MB Intel® Smart Cache,125.0 +Intel® Xeon® W-1250TE Processor,Q2'20,6,3.80 GHz,2.40 GHz,12 MB Intel® Smart Cache,35.0 +Intel® Xeon® W-1270 Processor,Q2'20,8,5.00 GHz,3.40 GHz,16 MB Intel® Smart Cache,80.0 +Intel® Xeon® W-1270E Processor,Q2'20,8,4.80 GHz,3.40 GHz,16 MB Intel® Smart Cache,80.0 +Intel® Xeon® W-1270P Processor,Q2'20,8,5.10 GHz,3.80 GHz,16 MB Intel® Smart Cache,125.0 +Intel® Xeon® W-1270TE Processor,Q2'20,8,4.40 GHz,2.00 GHz,16 MB Intel® Smart Cache,35.0 +Intel® Xeon® W-1290 Processor,Q2'20,10,5.20 GHz,3.20 GHz,20 MB Intel® Smart Cache,80.0 +Intel® Xeon® W-1290E Processor,Q2'20,10,4.80 GHz,3.50 GHz,20 MB Intel® Smart Cache,95.0 +Intel® Xeon® W-1290P Processor,Q2'20,10,5.30 GHz,3.70 GHz,20 MB Intel® Smart Cache,125.0 +Intel® Xeon® W-1290T Processor,Q2'20,10,4.70 GHz,1.90 GHz,20 MB Intel® Smart Cache,35.0 +Intel® Xeon® W-1290TE Processor,Q2'20,10,4.50 GHz,1.80 GHz,20 MB Intel® Smart Cache,35.0 +Intel® Celeron® Processor G5900,Q2'20,2,,3.40 GHz,2 MB Intel® Smart Cache,58.0 +Intel® Celeron® Processor G5900T,Q2'20,2,,3.20 GHz,2 MB Intel® Smart Cache,35.0 +Intel® Core™ i3-10100 Processor,Q2'20,4,4.30 GHz,3.60 GHz,6 MB Intel® Smart Cache,65.0 +Intel® Core™ i3-10100T Processor,Q2'20,4,3.80 GHz,3.00 GHz,6 MB Intel® Smart Cache,35.0 +Intel® Core™ i3-10300 Processor,Q2'20,4,4.40 GHz,3.70 GHz,8 MB Intel® Smart Cache,65.0 +Intel® Core™ i3-10300T Processor,Q2'20,4,3.90 GHz,3.00 GHz,8 MB Intel® Smart Cache,35.0 +Intel® Core™ i3-10320 Processor,Q2'20,4,4.60 GHz,3.80 GHz,8 MB Intel® Smart Cache,65.0 +Intel® Core™ i5-10400 Processor,Q2'20,6,4.30 GHz,2.90 GHz,12 MB Intel® Smart Cache,65.0 +Intel® Core™ i5-10400F Processor,Q2'20,6,4.30 GHz,2.90 GHz,12 MB Intel® Smart Cache,65.0 +Intel® Core™ i5-10400T Processor,Q2'20,6,3.60 GHz,2.00 GHz,12 MB Intel® Smart Cache,35.0 +Intel® Core™ i5-10500 Processor,Q2'20,6,4.50 GHz,3.10 GHz,12 MB Intel® Smart Cache,65.0 +Intel® Core™ i5-10500T Processor,Q2'20,6,3.80 GHz,2.30 GHz,12 MB Intel® Smart Cache,35.0 +Intel® Core™ i5-10600 Processor,Q2'20,6,4.80 GHz,3.30 GHz,12 MB Intel® Smart Cache,65.0 +Intel® Core™ i5-10600KF Processor,Q2'20,6,4.80 GHz,4.10 GHz,12 MB Intel® Smart Cache,125.0 +Intel® Core™ i5-10600T Processor,Q2'20,6,4.00 GHz,2.40 GHz,12 MB Intel® Smart Cache,35.0 +Intel® Core™ i7-10700 Processor,Q2'20,8,4.80 GHz,2.90 GHz,16 MB Intel® Smart Cache,65.0 +Intel® Core™ i7-10700E Processor,Q2'20,8,4.50 GHz,2.90 GHz,16 MB Intel® Smart Cache,65.0 +Intel® Core™ i7-10700F Processor,Q2'20,8,4.80 GHz,2.90 GHz,16 MB Intel® Smart Cache,65.0 +Intel® Core™ i7-10700K Processor,Q2'20,8,5.10 GHz,3.80 GHz,16 MB Intel® Smart Cache,125.0 +Intel® Core™ i7-10700KF Processor,Q2'20,8,5.10 GHz,3.80 GHz,16 MB Intel® Smart Cache,125.0 +Intel® Core™ i9-10900 Processor,Q2'20,10,5.20 GHz,2.80 GHz,20 MB Intel® Smart Cache,65.0 +Intel® Core™ i9-10900F Processor,Q2'20,10,5.20 GHz,2.80 GHz,20 MB Intel® Smart Cache,65.0 +Intel® Core™ i9-10900K Processor,Q2'20,10,5.30 GHz,3.70 GHz,20 MB Intel® Smart Cache,125.0 +Intel® Core™ i9-10900KF Processor,Q2'20,10,5.30 GHz,3.70 GHz,20 MB Intel® Smart Cache,125.0 +Intel® Core™ i9-10900T Processor,Q2'20,10,4.60 GHz,1.90 GHz,20 MB Intel® Smart Cache,35.0 +Intel® Celeron® Processor G5900E,Q2'20,2,,3.20 GHz,2 MB Intel® Smart Cache,58.0 +Intel® Celeron® Processor G5900TE,Q2'20,2,,3.00 GHz,2 MB Intel® Smart Cache,35.0 +Intel® Celeron® Processor G5920,Q2'20,2,,3.50 GHz,2 MB Intel® Smart Cache,58.0 +Intel® Core™ i3-10100E Processor,Q2'20,4,3.80 GHz,3.20 GHz,6 MB Intel® Smart Cache,65.0 +Intel® Core™ i3-10100TE Processor,Q2'20,4,3.60 GHz,2.30 GHz,6 MB Intel® Smart Cache,35.0 +Intel® Core™ i5-10500E Processor,Q2'20,6,4.20 GHz,3.10 GHz,12 MB Intel® Smart Cache,65.0 +Intel® Core™ i5-10500TE Processor,Q2'20,6,3.70 GHz,2.30 GHz,12 MB Intel® Smart Cache,35.0 +Intel® Core™ i5-10600K Processor,Q2'20,6,4.80 GHz,4.10 GHz,12 MB Intel® Smart Cache,125.0 +Intel® Core™ i7-10700T Processor,Q2'20,8,4.50 GHz,2.00 GHz,16 MB Intel® Smart Cache,35.0 +Intel® Core™ i7-10700TE Processor,Q2'20,8,4.40 GHz,2.00 GHz,16 MB Intel® Smart Cache,35.0 +Intel® Core™ i9-10900E Processor,Q2'20,10,4.70 GHz,2.80 GHz,20 MB Intel® Smart Cache,65.0 +Intel® Core™ i9-10900TE Processor,Q2'20,10,4.50 GHz,1.80 GHz,20 MB Intel® Smart Cache,35.0 +Intel® Pentium® Gold G6400 Processor,Q2'20,2,,4.00 GHz,4 MB Intel® Smart Cache,58.0 +Intel® Pentium® Gold G6400E Processor,Q2'20,2,,3.80 GHz,4 MB Intel® Smart Cache,58.0 +Intel® Pentium® Gold G6400T Processor,Q2'20,2,,3.40 GHz,4 MB Intel® Smart Cache,35.0 +Intel® Pentium® Gold G6400TE Processor,Q2'20,2,,3.20 GHz,4 MB Intel® Smart Cache,35.0 +Intel® Pentium® Gold G6500 Processor,Q2'20,2,,4.10 GHz,4 MB Intel® Smart Cache,58.0 +Intel® Pentium® Gold G6500T Processor,Q2'20,2,,3.50 GHz,4 MB Intel® Smart Cache,35.0 +Intel® Pentium® Gold G6600 Processor,Q2'20,2,,4.20 GHz,4 MB Intel® Smart Cache,58.0 +Intel® Core™ i5-10300H Processor,Q2'20,4,4.50 GHz,2.50 GHz,8 MB Intel® Smart Cache,45.0 +Intel® Core™ i5-10400H Processor,Q2'20,4,4.60 GHz,2.60 GHz,8 MB Intel® Smart Cache,45.0 +Intel® Core™ i7-10750H Processor,Q2'20,6,5.00 GHz,2.60 GHz,12 MB Intel® Smart Cache,45.0 +Intel® Core™ i7-10850H Processor,Q2'20,6,5.10 GHz,2.70 GHz,12 MB Intel® Smart Cache,45.0 +Intel® Core™ i7-10875H Processor,Q2'20,8,5.10 GHz,2.30 GHz,16 MB Intel® Smart Cache,45.0 +Intel® Core™ i9-10980HK Processor,Q2'20,8,5.30 GHz,2.40 GHz,16 MB Intel® Smart Cache,45.0 +Intel® Xeon® Bronze 3206R Processor,Q1'20,8,1.90 GHz,1.90 GHz,11 MB,85.0 +Intel® Xeon® Gold 5218R Processor,Q1'20,20,4.00 GHz,2.10 GHz,27.5 MB,125.0 +Intel® Xeon® Gold 5220R Processor,Q1'20,24,4.00 GHz,2.20 GHz,35.75 MB,150.0 +Intel® Xeon® Gold 6208U Processor,Q1'20,16,3.90 GHz,2.90 GHz,22 MB,150.0 +Intel® Xeon® Gold 6226R Processor,Q1'20,16,3.90 GHz,2.90 GHz,22 MB,150.0 +Intel® Xeon® Gold 6230R Processor,Q1'20,26,4.00 GHz,2.10 GHz,35.75 MB,150.0 +Intel® Xeon® Gold 6238R Processor,Q1'20,28,4.00 GHz,2.20 GHz,38.5 MB,165.0 +Intel® Xeon® Gold 6240R Processor,Q1'20,24,4.00 GHz,2.40 GHz,35.75 MB,165.0 +Intel® Xeon® Gold 6242R Processor,Q1'20,20,4.10 GHz,3.10 GHz,35.75 MB,205.0 +Intel® Xeon® Gold 6246R Processor,Q1'20,16,4.10 GHz,3.40 GHz,35.75 MB,205.0 +Intel® Xeon® Gold 6248R Processor,Q1'20,24,4.00 GHz,3.00 GHz,35.75 MB,205.0 +Intel® Xeon® Gold 6250 Processor,Q1'20,8,4.50 GHz,3.90 GHz,35.75 MB,185.0 +Intel® Xeon® Gold 6250L Processor,Q1'20,8,4.50 GHz,3.90 GHz,35.75 MB,185.0 +Intel® Xeon® Gold 6256 Processor,Q1'20,12,4.50 GHz,3.60 GHz,33 MB,205.0 +Intel® Xeon® Gold 6258R Processor,Q1'20,28,4.00 GHz,2.70 GHz,38.5 MB,205.0 +Intel® Xeon® Silver 4210R Processor,Q1'20,10,3.20 GHz,2.40 GHz,13.75 MB,100.0 +Intel® Xeon® Silver 4210T Processor,Q1'20,10,3.20 GHz,2.30 GHz,13.75 MB,95.0 +Intel® Xeon® Silver 4214R Processor,Q1'20,12,3.50 GHz,2.40 GHz,16.5 MB,100.0 +Intel® Xeon® Silver 4215R Processor,Q1'20,8,4.00 GHz,3.20 GHz,11 MB,130.0 +Intel® Celeron® Processor J4025,Q4'19,2,,2.00 GHz,4 MB,10.0 +Intel® Celeron® Processor J4125,Q4'19,4,,2.00 GHz,4 MB,10.0 +Intel® Celeron® Processor N4020,Q4'19,2,,1.10 GHz,4 MB,6.0 +Intel® Celeron® Processor N4120,Q4'19,4,,1.10 GHz,4 MB,6.0 +Intel® Pentium® Silver J5040 Processor,Q4'19,4,,2.00 GHz,4 MB,10.0 +Intel® Pentium® Silver N5030 Processor,Q4'19,4,,1.10 GHz,4 MB,6.0 +Intel® Core™ i9-9900KS Processor,Q4'19,8,5.00 GHz,4.00 GHz,16 MB Intel® Smart Cache,127.0 +Intel® Core™ i9-10900X X-series Processor,Q4'19,10,4.50 GHz,3.70 GHz,19.25 MB Intel® Smart Cache,165.0 +Intel® Core™ i9-10920X X-series Processor,Q4'19,12,4.60 GHz,3.50 GHz,19.25 MB Intel® Smart Cache,165.0 +Intel® Core™ i9-10940X X-series Processor,Q4'19,14,4.60 GHz,3.30 GHz,19.25 MB Intel® Smart Cache,165.0 +Intel® Core™ i9-10980XE Extreme Edition Processor,Q4'19,18,4.60 GHz,3.00 GHz,24.75 MB Intel® Smart Cache,165.0 +Intel® Xeon® W-2223 Processor,Q4'19,4,3.90 GHz,3.60 GHz,8.25 MB,120.0 +Intel® Xeon® W-2225 Processor,Q4'19,4,4.60 GHz,4.10 GHz,8.25 MB,105.0 +Intel® Xeon® W-2235 Processor,Q4'19,6,4.60 GHz,3.80 GHz,8.25 MB,130.0 +Intel® Xeon® W-2245 Processor,Q4'19,8,4.50 GHz,3.90 GHz,16.5 MB,155.0 +Intel® Xeon® W-2255 Processor,Q4'19,10,4.50 GHz,3.70 GHz,19.25 MB,165.0 +Intel® Xeon® W-2265 Processor,Q4'19,12,4.60 GHz,3.50 GHz,19.25 MB,165.0 +Intel® Xeon® W-2275 Processor,Q4'19,14,4.60 GHz,3.30 GHz,19.25 MB,165.0 +Intel® Xeon® W-2295 Processor,Q4'19,18,4.60 GHz,3.00 GHz,24.75 MB,165.0 +Intel® Celeron® Processor 5205U,Q4'19,2,,1.90 GHz,2 MB,15.0 +Intel® Core™ i3-8140U Processor,Q4'19,2,3.90 GHz,2.10 GHz,4 MB Intel® Smart Cache,15.0 +Intel® Core™ i5-8260U Processor,Q4'19,4,3.90 GHz,1.60 GHz,6 MB Intel® Smart Cache,15.0 +Intel® Pentium® Gold 6405U Processor,Q4'19,2,,2.40 GHz,2 MB,15.0 +Intel® Core™ i3-10110U Processor,Q3'19,2,4.10 GHz,2.10 GHz,4 MB Intel® Smart Cache,15.0 +Intel® Core™ i3-10110Y Processor,Q3'19,2,4.00 GHz,1.00 GHz,4 MB Intel® Smart Cache,7.0 +Intel® Core™ i5-10210U Processor,Q3'19,4,4.20 GHz,1.60 GHz,6 MB Intel® Smart Cache,15.0 +Intel® Core™ i5-10210Y Processor,Q3'19,4,4.00 GHz,1.00 GHz,6 MB Intel® Smart Cache,7.0 +Intel® Core™ i5-10310Y Processor,Q3'19,4,4.10 GHz,1.10 GHz,6 MB Intel® Smart Cache,7.0 +Intel® Core™ i7-10510U Processor,Q3'19,4,4.90 GHz,1.80 GHz,8 MB Intel® Smart Cache,15.0 +Intel® Core™ i7-10510Y Processor,Q3'19,4,4.50 GHz,1.20 GHz,8 MB Intel® Smart Cache,7.0 +Intel® Core™ i7-10710U Processor,Q3'19,6,4.70 GHz,1.10 GHz,12 MB Intel® Smart Cache,15.0 +Intel® Core™ i3-1005G1 Processor,Q3'19,2,3.40 GHz,1.20 GHz,4 MB Intel® Smart Cache,15.0 +Intel® Core™ i5-1035G1 Processor,Q3'19,4,3.60 GHz,1.00 GHz,6 MB Intel® Smart Cache,15.0 +Intel® Core™ i5-1035G4 Processor,Q3'19,4,3.70 GHz,1.10 GHz,6 MB Intel® Smart Cache,15.0 +Intel® Core™ i5-1035G7 Processor,Q3'19,4,3.70 GHz,1.20 GHz,6 MB Intel® Smart Cache,15.0 +Intel® Core™ i7-1065G7 Processor,Q3'19,4,3.90 GHz,1.30 GHz,8 MB Intel® Smart Cache,15.0 +Intel® Xeon® Platinum 9221 Processor,Q3'19,32,3.70 GHz,2.30 GHz,71.5 MB,250.0 +Intel® Xeon® Platinum 9222 Processor,Q3'19,32,3.70 GHz,2.30 GHz,71.5 MB,250.0 +Intel® Celeron® Processor J3355E,Q3'19,2,2.50 GHz,2.00 GHz,2 MB,10.0 +Intel® Celeron® Processor J3455E,Q3'19,4,2.30 GHz,1.50 GHz,2 MB,10.0 +Intel® Celeron® Processor N3350E,Q3'19,2,2.40 GHz,1.10 GHz,2 MB,6.0 +Intel® Pentium® Processor N4200E,Q3'19,4,2.50 GHz,1.10 GHz,2 MB,6.0 +Intel® Core™ i5-8257U Processor,Q3'19,4,3.90 GHz,1.40 GHz,6 MB Intel® Smart Cache,15.0 +Intel® Core™ i7-8557U Processor,Q3'19,4,4.50 GHz,1.70 GHz,8 MB Intel® Smart Cache,15.0 +Intel® Celeron® Processor G4930E,Q2'19,2,2.40 GHz,2.40 GHz,2 MB,35.0 +Intel® Celeron® Processor G4932E,Q2'19,2,1.90 GHz,1.90 GHz,2 MB,25.0 +Intel® Core™ i3-9100E Processor,Q2'19,4,3.70 GHz,3.10 GHz,6 MB,65.0 +Intel® Core™ i3-9100HL Processor,Q2'19,4,2.90 GHz,1.60 GHz,6 MB,25.0 +Intel® Core™ i3-9100TE Processor,Q2'19,4,3.20 GHz,2.20 GHz,6 MB,35.0 +Intel® Core™ i5-9500E Processor,Q2'19,6,4.20 GHz,3.00 GHz,9 MB,65.0 +Intel® Core™ i7-9700E Processor,Q2'19,8,4.40 GHz,2.60 GHz,12 MB,65.0 +Intel® Core™ i7-9700TE Processor,Q2'19,8,3.80 GHz,1.80 GHz,12 MB,35.0 +Intel® Core™ i7-9850HE Processor,Q2'19,6,4.40 GHz,2.70 GHz,9 MB,45.0 +Intel® Core™ i7-9850HL Processor,Q2'19,6,4.10 GHz,1.90 GHz,9 MB,25.0 +Intel® Xeon® E-2226GE Processor,Q2'19,6,4.60 GHz,3.40 GHz,12 MB Intel® Smart Cache,80.0 +Intel® Xeon® E-2278GEL Processor,Q2'19,8,3.90 GHz,2.00 GHz,16 MB,35.0 +Intel® Xeon® E-2254ME Processor,Q2'19,4,3.80 GHz,2.60 GHz,8 MB,45.0 +Intel® Xeon® E-2254ML Processor,Q2'19,4,3.50 GHz,1.70 GHz,8 MB,25.0 +Intel® Xeon® E-2276ME Processor,Q2'19,6,4.50 GHz,2.80 GHz,12 MB,45.0 +Intel® Xeon® E-2276ML Processor,Q2'19,6,4.20 GHz,2.00 GHz,12 MB,25.0 +Intel® Xeon® E-2278GE Processor,Q2'19,8,4.70 GHz,3.30 GHz,16 MB,80.0 +Intel® Xeon® W-3223 Processor,Q2'19,8,4.00 GHz,3.50 GHz,16.5 MB,160.0 +Intel® Xeon® W-3225 Processor,Q2'19,8,4.30 GHz,3.70 GHz,16.5 MB,160.0 +Intel® Xeon® W-3235 Processor,Q2'19,12,4.40 GHz,3.30 GHz,19.25 MB,180.0 +Intel® Xeon® W-3245 Processor,Q2'19,16,4.40 GHz,3.20 GHz,22 MB,205.0 +Intel® Xeon® W-3245M Processor,Q2'19,16,4.40 GHz,3.20 GHz,22 MB,205.0 +Intel® Xeon® W-3265 Processor,Q2'19,24,4.40 GHz,2.70 GHz,33 MB,205.0 +Intel® Xeon® W-3265M Processor,Q2'19,24,4.40 GHz,2.70 GHz,33 MB,205.0 +Intel® Xeon® W-3275 Processor,Q2'19,28,4.40 GHz,2.50 GHz,38.5 MB,205.0 +Intel® Xeon® W-3275M Processor,Q2'19,28,4.40 GHz,2.50 GHz,38.5 MB,205.0 +Intel® Xeon® E-2224 Processor,Q2'19,4,4.60 GHz,3.40 GHz,8 MB Intel® Smart Cache,71.0 +Intel® Xeon® E-2224G Processor,Q2'19,4,4.70 GHz,3.50 GHz,8 MB Intel® Smart Cache,71.0 +Intel® Xeon® E-2226G Processor,Q2'19,6,4.70 GHz,3.40 GHz,12 MB Intel® Smart Cache,80.0 +Intel® Xeon® E-2234 Processor,Q2'19,4,4.80 GHz,3.60 GHz,8 MB Intel® Smart Cache,71.0 +Intel® Xeon® E-2236 Processor,Q2'19,6,4.80 GHz,3.40 GHz,12 MB Intel® Smart Cache,80.0 +Intel® Xeon® E-2244G Processor,Q2'19,4,4.80 GHz,3.80 GHz,8 MB Intel® Smart Cache,71.0 +Intel® Xeon® E-2246G Processor,Q2'19,6,4.80 GHz,3.60 GHz,12 MB Intel® Smart Cache,80.0 +Intel® Xeon® E-2274G Processor,Q2'19,4,4.90 GHz,4.00 GHz,8 MB Intel® Smart Cache,83.0 +Intel® Xeon® E-2276G Processor,Q2'19,6,4.90 GHz,3.80 GHz,12 MB Intel® Smart Cache,80.0 +Intel® Xeon® E-2276M Processor,Q2'19,6,4.70 GHz,2.80 GHz,12 MB Intel® Smart Cache,45.0 +Intel® Xeon® E-2278G Processor,Q2'19,8,5.00 GHz,3.40 GHz,16 MB Intel® Smart Cache,80.0 +Intel® Xeon® E-2286G Processor,Q2'19,6,4.90 GHz,4.00 GHz,12 MB Intel® Smart Cache,95.0 +Intel® Xeon® E-2286M Processor,Q2'19,8,5.00 GHz,2.40 GHz,16 MB Intel® Smart Cache,45.0 +Intel® Xeon® E-2288G Processor,Q2'19,8,5.00 GHz,3.70 GHz,16 MB Intel® Smart Cache,95.0 +Intel® Core™ i5-8279U Processor,Q2'19,4,4.10 GHz,2.40 GHz,6 MB Intel® Smart Cache,28.0 +Intel® Core™ i7-8569U Processor,Q2'19,4,4.70 GHz,2.80 GHz,8 MB Intel® Smart Cache,28.0 +Intel® Core™ i3-9100F Processor,Q2'19,4,4.20 GHz,3.60 GHz,6 MB Intel® Smart Cache,65.0 +Intel® Core™ i3-9320 Processor,Q2'19,4,4.40 GHz,3.70 GHz,8 MB Intel® Smart Cache,62.0 +Intel® Core™ i3-9350K Processor,Q2'19,4,4.60 GHz,4.00 GHz,8 MB Intel® Smart Cache,91.0 +Intel® Core™ i5-9300H Processor,Q2'19,4,4.10 GHz,2.40 GHz,8 MB Intel® Smart Cache,45.0 +Intel® Core™ i5-9400H Processor,Q2'19,4,4.30 GHz,2.50 GHz,8 MB Intel® Smart Cache,45.0 +Intel® Core™ i5-9500F Processor,Q2'19,6,4.40 GHz,3.00 GHz,9 MB Intel® Smart Cache,65.0 +Intel® Core™ i5-9500T Processor,Q2'19,6,3.70 GHz,2.20 GHz,9 MB Intel® Smart Cache,35.0 +Intel® Core™ i5-9600T Processor,Q2'19,6,3.90 GHz,2.30 GHz,9 MB Intel® Smart Cache,35.0 +Intel® Core™ i7-9700 Processor,Q2'19,8,4.70 GHz,3.00 GHz,12 MB Intel® Smart Cache,65.0 +Intel® Core™ i7-9700F Processor,Q2'19,8,4.70 GHz,3.00 GHz,12 MB Intel® Smart Cache,65.0 +Intel® Core™ i7-9700T Processor,Q2'19,8,4.30 GHz,2.00 GHz,12 MB Intel® Smart Cache,35.0 +Intel® Core™ i7-9750H Processor,Q2'19,6,4.50 GHz,2.60 GHz,12 MB Intel® Smart Cache,45.0 +Intel® Core™ i7-9750HF Processor,Q2'19,6,4.50 GHz,2.60 GHz,12 MB Intel® Smart Cache,45.0 +Intel® Core™ i7-9850H Processor,Q2'19,6,4.60 GHz,2.60 GHz,12 MB,45.0 +Intel® Core™ i9-9880H Processor,Q2'19,8,4.80 GHz,2.30 GHz,16 MB Intel® Smart Cache,45.0 +Intel® Core™ i9-9900 Processor,Q2'19,8,5.00 GHz,3.10 GHz,16 MB Intel® Smart Cache,65.0 +Intel® Core™ i9-9900T Processor,Q2'19,8,4.40 GHz,2.10 GHz,16 MB Intel® Smart Cache,35.0 +Intel® Core™ i9-9980HK Processor,Q2'19,8,5.00 GHz,2.40 GHz,16 MB Intel® Smart Cache,45.0 +Intel® Pentium® Gold G5420 Processor,Q2'19,2,,3.80 GHz,4 MB Intel® Smart Cache,54.0 +Intel® Pentium® Gold G5620 Processor,Q2'19,2,,4.00 GHz,4 MB Intel® Smart Cache,54.0 +Intel® Celeron® Processor G4930,Q2'19,2,,3.20 GHz,2 MB Intel® Smart Cache,54.0 +Intel® Celeron® Processor G4930T,Q2'19,2,,3.00 GHz,2 MB Intel® Smart Cache,35.0 +Intel® Celeron® Processor G4950,Q2'19,2,,3.30 GHz,2 MB Intel® Smart Cache,54.0 +Intel® Core™ i3-9100 Processor,Q2'19,4,4.20 GHz,3.60 GHz,6 MB Intel® Smart Cache,65.0 +Intel® Core™ i3-9100T Processor,Q2'19,4,3.70 GHz,3.10 GHz,6 MB Intel® Smart Cache,35.0 +Intel® Core™ i3-9300 Processor,Q2'19,4,4.30 GHz,3.70 GHz,8 MB Intel® Smart Cache,62.0 +Intel® Core™ i3-9300T Processor,Q2'19,4,3.80 GHz,3.20 GHz,8 MB Intel® Smart Cache,35.0 +Intel® Core™ i5-9400T Processor,Q2'19,6,3.40 GHz,1.80 GHz,9 MB Intel® Smart Cache,35.0 +Intel® Core™ i5-9500 Processor,Q2'19,6,4.40 GHz,3.00 GHz,9 MB Intel® Smart Cache,65.0 +Intel® Core™ i5-9600 Processor,Q2'19,6,4.60 GHz,3.10 GHz,9 MB Intel® Smart Cache,65.0 +Intel® Pentium® Gold G5420T Processor,Q2'19,2,,3.20 GHz,4 MB Intel® Smart Cache,35.0 +Intel® Pentium® Gold G5600T Processor,Q2'19,2,,3.30 GHz,4 MB Intel® Smart Cache,35.0 +Intel® Celeron® Processor 4305U,Q2'19,2,,2.20 GHz,2 MB Intel® Smart Cache,15.0 +Intel® Core™ i5-8365U Processor,Q2'19,4,4.10 GHz,1.60 GHz,6 MB Intel® Smart Cache,15.0 +Intel® Core™ i7-8665U Processor,Q2'19,4,4.80 GHz,1.90 GHz,8 MB Intel® Smart Cache,15.0 +Intel® Xeon® Bronze 3204 Processor,Q2'19,6,1.90 GHz,1.90 GHz,8.25 MB,85.0 +Intel® Xeon® D-1602 Processor,Q2'19,2,3.20 GHz,2.50 GHz,3 MB,27.0 +Intel® Xeon® D-1622 Processor,Q2'19,4,3.20 GHz,2.60 GHz,6 MB,40.0 +Intel® Xeon® D-1623N Processor,Q2'19,4,3.20 GHz,2.40 GHz,6 MB,35.0 +Intel® Xeon® D-1627 Processor,Q2'19,4,3.20 GHz,2.90 GHz,6 MB,45.0 +Intel® Xeon® D-1633N Processor,Q2'19,6,3.20 GHz,2.50 GHz,9 MB,45.0 +Intel® Xeon® D-1637 Processor,Q2'19,6,3.20 GHz,2.90 GHz,9 MB,55.0 +Intel® Xeon® D-1649N Processor,Q2'19,8,3.00 GHz,2.30 GHz,12 MB,45.0 +Intel® Xeon® D-1653N Processor,Q2'19,8,3.20 GHz,2.80 GHz,12 MB,65.0 +Intel® Xeon® Gold 5215 Processor,Q2'19,10,3.40 GHz,2.50 GHz,13.75 MB,85.0 +Intel® Xeon® Gold 5215L Processor,Q2'19,10,3.40 GHz,2.50 GHz,13.75 MB,85.0 +Intel® Xeon® Gold 5217 Processor,Q2'19,8,3.70 GHz,3.00 GHz,11 MB,115.0 +Intel® Xeon® Gold 5218B Processor,Q2'19,16,3.90 GHz,2.30 GHz,22 MB,125.0 +Intel® Xeon® Gold 5218N Processor,Q2'19,16,3.70 GHz,2.30 GHz,22 MB,110.0 +Intel® Xeon® Gold 5218T Processor,Q2'19,16,3.80 GHz,2.10 GHz,22 MB,105.0 +Intel® Xeon® Gold 5220 Processor,Q2'19,18,3.90 GHz,2.20 GHz,24.75 MB,125.0 +Intel® Xeon® Gold 5220S Processor,Q2'19,18,3.90 GHz,2.70 GHz,24.75 MB,125.0 +Intel® Xeon® Gold 5220T Processor,Q2'19,18,3.90 GHz,1.90 GHz,24.75 MB,105.0 +Intel® Xeon® Gold 6222V Processor,Q2'19,20,3.60 GHz,1.80 GHz,27.5 MB,115.0 +Intel® Xeon® Gold 6226 Processor,Q2'19,12,3.70 GHz,2.70 GHz,19.25 MB,125.0 +Intel® Xeon® Gold 6230 Processor,Q2'19,20,3.90 GHz,2.10 GHz,27.5 MB,125.0 +Intel® Xeon® Gold 6230T Processor,Q2'19,20,3.90 GHz,2.10 GHz,27.5 MB,125.0 +Intel® Xeon® Gold 6234 Processor,Q2'19,8,4.00 GHz,3.30 GHz,24.75 MB,130.0 +Intel® Xeon® Gold 6238 Processor,Q2'19,22,3.70 GHz,2.10 GHz,30.25 MB,140.0 +Intel® Xeon® Gold 6238L Processor,Q2'19,22,3.70 GHz,2.10 GHz,30.25 MB,140.0 +Intel® Xeon® Gold 6240L Processor,Q2'19,18,3.90 GHz,2.60 GHz,24.75 MB,150.0 +Intel® Xeon® Gold 6246 Processor,Q2'19,12,4.20 GHz,3.30 GHz,24.75 MB,165.0 +Intel® Xeon® Gold 6252N Processor,Q2'19,24,3.60 GHz,2.30 GHz,35.75 MB,150.0 +Intel® Xeon® Silver 4208 Processor,Q2'19,8,3.20 GHz,2.10 GHz,11 MB,85.0 +Intel® Xeon® Silver 4209T Processor,Q2'19,8,3.20 GHz,2.20 GHz,11 MB,70.0 +Intel® Xeon® Silver 4210 Processor,Q2'19,10,3.20 GHz,2.20 GHz,13.75 MB,85.0 +Intel® Xeon® Silver 4214 Processor,Q2'19,12,3.20 GHz,2.20 GHz,16.5 MB,85.0 +Intel® Xeon® Silver 4214Y Processor,Q2'19,12,3.20 GHz,2.20 GHz,16.5 MB,85.0 +Intel® Xeon® Silver 4215 Processor,Q2'19,8,3.50 GHz,2.50 GHz,11 MB,85.0 +Intel® Xeon® Silver 4216 Processor,Q2'19,16,3.20 GHz,2.10 GHz,22 MB,100.0 +Intel® Xeon® Gold 5218 Processor,Q2'19,16,3.90 GHz,2.30 GHz,22 MB,125.0 +Intel® Xeon® Gold 5222 Processor,Q2'19,4,3.90 GHz,3.80 GHz,16.5 MB,105.0 +Intel® Xeon® Gold 6209U Processor,Q2'19,20,3.90 GHz,2.10 GHz,27.5 MB,125.0 +Intel® Xeon® Gold 6210U Processor,Q2'19,20,3.90 GHz,2.50 GHz,27.5 MB,150.0 +Intel® Xeon® Gold 6212U Processor,Q2'19,24,3.90 GHz,2.40 GHz,35.75 MB,165.0 +Intel® Xeon® Gold 6230N Processor,Q2'19,20,3.50 GHz,2.30 GHz,27.5 MB,125.0 +Intel® Xeon® Gold 6238T Processor,Q2'19,22,3.70 GHz,1.90 GHz,30.25 MB,125.0 +Intel® Xeon® Gold 6240 Processor,Q2'19,18,3.90 GHz,2.60 GHz,24.75 MB,150.0 +Intel® Xeon® Gold 6240Y Processor,Q2'19,18,3.90 GHz,2.60 GHz,24.75 MB,150.0 +Intel® Xeon® Gold 6242 Processor,Q2'19,16,3.90 GHz,2.80 GHz,22 MB,150.0 +Intel® Xeon® Gold 6244 Processor,Q2'19,8,4.40 GHz,3.60 GHz,24.75 MB,150.0 +Intel® Xeon® Gold 6248 Processor,Q2'19,20,3.90 GHz,2.50 GHz,27.5 MB,150.0 +Intel® Xeon® Gold 6252 Processor,Q2'19,24,3.70 GHz,2.10 GHz,35.75 MB,150.0 +Intel® Xeon® Gold 6254 Processor,Q2'19,18,4.00 GHz,3.10 GHz,24.75 MB,200.0 +Intel® Xeon® Gold 6262V Processor,Q2'19,24,3.60 GHz,1.90 GHz,33 MB,135.0 +Intel® Xeon® Platinum 8253 Processor,Q2'19,16,3.00 GHz,2.20 GHz,22 MB,125.0 +Intel® Xeon® Platinum 8256 Processor,Q2'19,4,3.90 GHz,3.80 GHz,16.5 MB,105.0 +Intel® Xeon® Platinum 8260 Processor,Q2'19,24,3.90 GHz,2.40 GHz,35.75 MB,165.0 +Intel® Xeon® Platinum 8260L Processor,Q2'19,24,3.90 GHz,2.40 GHz,35.75 MB,165.0 +Intel® Xeon® Platinum 8260Y Processor,Q2'19,24,3.90 GHz,2.40 GHz,35.75 MB,165.0 +Intel® Xeon® Platinum 8268 Processor,Q2'19,24,3.90 GHz,2.90 GHz,35.75 MB,205.0 +Intel® Xeon® Platinum 8270 Processor,Q2'19,26,4.00 GHz,2.70 GHz,35.75 MB,205.0 +Intel® Xeon® Platinum 8276 Processor,Q2'19,28,4.00 GHz,2.20 GHz,38.5 MB,165.0 +Intel® Xeon® Platinum 8276L Processor,Q2'19,28,4.00 GHz,2.20 GHz,38.5 MB,165.0 +Intel® Xeon® Platinum 8280 Processor,Q2'19,28,4.00 GHz,2.70 GHz,38.5 MB,205.0 +Intel® Xeon® Platinum 8280L Processor,Q2'19,28,4.00 GHz,2.70 GHz,38.5 MB,205.0 +Intel® Xeon® Platinum 9242 Processor,Q2'19,48,3.80 GHz,2.30 GHz,71.5 MB Intel® Smart Cache,350.0 +Intel® Xeon® Platinum 9282 Processor,Q2'19,56,3.80 GHz,2.60 GHz,77 MB Intel® Smart Cache,400.0 +Intel® Core™ i5-9300HF Processor,Q2'19,4,4.10 GHz,2.40 GHz,8 MB Intel® Smart Cache,45.0 +Intel® Xeon® W-3175X Processor,Q4'18,28,3.80 GHz,3.10 GHz,38.5 MB,255.0 +Intel® Core™ i3-9350KF Processor,Q1'19,4,4.60 GHz,4.00 GHz,8 MB Intel® Smart Cache,91.0 +Intel® Core™ i5-9400 Processor,Q1'19,6,4.10 GHz,2.90 GHz,9 MB Intel® Smart Cache,65.0 +Intel® Core™ i5-9400F Processor,Q1'19,6,4.10 GHz,2.90 GHz,9 MB Intel® Smart Cache,65.0 +Intel® Core™ i5-9600KF Processor,Q1'19,6,4.60 GHz,3.70 GHz,9 MB Intel® Smart Cache,95.0 +Intel® Core™ i7-9700KF Processor,Q1'19,8,4.90 GHz,3.60 GHz,12 MB Intel® Smart Cache,95.0 +Intel® Core™ i9-9900KF Processor,Q1'19,8,5.00 GHz,3.60 GHz,16 MB Intel® Smart Cache,95.0 +Intel® Celeron® Processor 3867U,Q1'19,2,,1.80 GHz,2 MB Intel® Smart Cache,15.0 +Intel® Celeron® Processor 4205U,Q1'19,2,,1.80 GHz,2 MB Intel® Smart Cache,15.0 +Intel® Pentium® Gold 5405U Processor,Q1'19,2,,2.30 GHz,2 MB Intel® Smart Cache,15.0 +Intel® Pentium® Gold Processor 4417U,Q1'19,2,,2.30 GHz,2 MB Intel® Smart Cache,15.0 +Intel® Pentium® Gold Processor 4425Y,Q1'19,2,,1.70 GHz,2 MB,6.0 +Intel® Xeon® Processor D-1524N,Q4'18,4,2.6 GHz,2.00 GHz,6 MB,45.0 +Intel® Core™ i7-9700K Processor,Q4'18,8,4.90 GHz,3.60 GHz,12 MB Intel® Smart Cache,95.0 +Intel® Core™ i7-9800X X-series Processor,Q4'18,8,4.40 GHz,3.80 GHz,16.5 MB Intel® Smart Cache,165.0 +Intel® Core™ i9-9820X X-series Processor,Q4'18,10,4.10 GHz,3.30 GHz,16.5 MB Intel® Smart Cache,165.0 +Intel® Core™ i9-9900K Processor,Q4'18,8,5.00 GHz,3.60 GHz,16 MB Intel® Smart Cache,95.0 +Intel® Core™ i9-9900X X-series Processor,Q4'18,10,4.40 GHz,3.50 GHz,19.25 MB Intel® Smart Cache,165.0 +Intel® Core™ i9-9940X X-series Processor,Q4'18,14,4.40 GHz,3.30 GHz,19.25 MB Intel® Smart Cache,165.0 +Intel® Core™ i9-9960X X-series Processor,Q4'18,16,4.40 GHz,3.10 GHz,22 MB Intel® Smart Cache,165.0 +Intel® Core™ i9-9980XE Extreme Edition Processor,Q4'18,18,4.40 GHz,3.00 GHz,24.75 MB Intel® Smart Cache,165.0 +Intel® Core™ i5-9600K Processor,Q4'18,6,4.60 GHz,3.70 GHz,9 MB Intel® Smart Cache,95.0 +Intel® Core™ i9-9920X X-series Processor,Q4'18,12,4.40 GHz,3.50 GHz,19.25 MB Intel® Smart Cache,165.0 +Intel® Celeron® Processor 4305UE,Q3'18,2,,2.00 GHz,2 MB Intel® Smart Cache,15.0 +Intel® Core™ i3-8145UE Processor,Q3'18,2,3.90 GHz,2.20 GHz,4 MB Intel® Smart Cache,15.0 +Intel® Core™ i5-8365UE Processor,Q3'18,4,4.10 GHz,1.60 GHz,6 MB Intel® Smart Cache,15.0 +Intel® Core™ i7-8665UE Processor,Q3'18,4,4.40 GHz,1.70 GHz,8 MB Intel® Smart Cache,15.0 +Intel® Core™ i3-8100B Processor,Q3'18,4,,3.60 GHz,6 MB Intel® Smart Cache,65.0 +Intel Atom® Processor C3336,Q3'18,2,,1.50 GHz,4 MB,11.0 +Intel® Core™ i5-8210Y Processor,Q1'19,2,3.60 GHz,1.60 GHz,4 MB Intel® Smart Cache,7.0 +Intel® Core™ i3-8145U Processor,Q3'18,2,3.90 GHz,2.10 GHz,4 MB Intel® Smart Cache,15.0 +Intel® Core™ i5-8200Y Processor,Q3'18,2,3.90 GHz,1.30 GHz,4 MB Intel® Smart Cache,5.0 +Intel® Core™ i5-8265U Processor,Q3'18,4,3.90 GHz,1.60 GHz,6 MB Intel® Smart Cache,15.0 +Intel® Core™ i7-8500Y Processor,Q1'19,2,4.20 GHz,1.50 GHz,4 MB Intel® Smart Cache,5.0 +Intel® Core™ i7-8565U Processor,Q3'18,4,4.60 GHz,1.80 GHz,8 MB Intel® Smart Cache,15.0 +Intel® Core™ m3-8100Y Processor,Q3'18,2,3.40 GHz,1.10 GHz,4 MB Intel® Smart Cache,5.0 +Intel® Xeon® E-2124 Processor,Q3'18,4,4.30 GHz,3.30 GHz,8 MB Intel® Smart Cache,71.0 +Intel® Xeon® E-2124G Processor,Q3'18,4,4.50 GHz,3.40 GHz,8 MB Intel® Smart Cache,71.0 +Intel® Xeon® E-2126G Processor,Q3'18,6,4.50 GHz,3.30 GHz,12 MB Intel® Smart Cache,80.0 +Intel® Xeon® E-2134 Processor,Q3'18,4,4.50 GHz,3.50 GHz,8 MB Intel® Smart Cache,71.0 +Intel® Xeon® E-2136 Processor,Q3'18,6,4.50 GHz,3.30 GHz,12 MB Intel® Smart Cache,80.0 +Intel® Xeon® E-2144G Processor,Q3'18,4,4.50 GHz,3.60 GHz,8 MB Intel® Smart Cache,71.0 +Intel® Xeon® E-2146G Processor,Q3'18,6,4.50 GHz,3.50 GHz,12 MB Intel® Smart Cache,80.0 +Intel® Xeon® E-2174G Processor,Q3'18,4,4.70 GHz,3.80 GHz,8 MB Intel® Smart Cache,71.0 +Intel® Xeon® E-2186G Processor,Q3'18,6,4.70 GHz,3.80 GHz,12 MB Intel® Smart Cache,95.0 +Intel® Core™ i7-8086K Processor,Q2'18,6,5.00 GHz,4.00 GHz,12 MB Intel® Smart Cache,95.0 +Intel® Xeon® Gold 6138P Processor,Q2'18,20,3.70 GHz,2.00 GHz,27.5 MB L3 Cache,195.0 +Intel® Celeron® G4900 Processor,Q2'18,2,,3.10 GHz,2 MB Intel® Smart Cache,54.0 +Intel® Celeron® G4900T Processor,Q2'18,2,,2.90 GHz,2 MB Intel® Smart Cache,35.0 +Intel® Celeron® G4920 Processor,Q2'18,2,,3.20 GHz,2 MB Intel® Smart Cache,54.0 +Intel® Core™ i3-8100T Processor,Q2'18,4,,3.10 GHz,6 MB Intel® Smart Cache,35.0 +Intel® Core™ i3-8109U Processor,Q2'18,2,3.60 GHz,3.00 GHz,4 MB Intel® Smart Cache,28.0 +Intel® Core™ i3-8300 Processor,Q2'18,4,,3.70 GHz,8 MB Intel® Smart Cache,62.0 +Intel® Core™ i3-8300T Processor,Q2'18,4,,3.20 GHz,8 MB Intel® Smart Cache,35.0 +Intel® Core™ i5-8259U Processor,Q2'18,4,3.80 GHz,2.30 GHz,6 MB Intel® Smart Cache,28.0 +Intel® Core™ i5-8269U Processor,Q2'18,4,4.20 GHz,2.60 GHz,6 MB Intel® Smart Cache,28.0 +"Intel® Core™ i5+8400 Processor (9M Cache, up to 4.00 GHz) includes Intel® Optane™ Memory",Q2'18,6,4.00 GHz,2.80 GHz,9 MB Intel® Smart Cache,65.0 +Intel® Core™ i5-8400T Processor,Q2'18,6,3.30 GHz,1.70 GHz,9 MB Intel® Smart Cache,35.0 +Intel® Core™ i5-8500 Processor,Q2'18,6,4.10 GHz,3.00 GHz,9 MB Intel® Smart Cache,65.0 +"Intel® Core™ i5+8500 Processor (9M Cache, up to 4.10 GHz) includes Intel® Optane™ Memory",Q2'18,6,4.10 GHz,3.00 GHz,9 MB Intel® Smart Cache,65.0 +Intel® Core™ i5-8500T Processor,Q2'18,6,3.50 GHz,2.10 GHz,9 MB Intel® Smart Cache,35.0 +Intel® Core™ i5-8600 Processor,Q2'18,6,4.30 GHz,3.10 GHz,9 MB Intel® Smart Cache,65.0 +Intel® Core™ i5-8600T Processor,Q2'18,6,3.70 GHz,2.30 GHz,9 MB Intel® Smart Cache,35.0 +Intel® Core™ i7-8559U Processor,Q2'18,4,4.50 GHz,2.70 GHz,8 MB Intel® Smart Cache,28.0 +"Intel® Core™ i7+8700 Processor (12M Cache, up to 4.60 GHz) includes Intel® Optane™ Memory",Q2'18,6,4.60 GHz,3.20 GHz,12 MB Intel® Smart Cache,65.0 +Intel® Core™ i7-8700T Processor,Q2'18,6,4.00 GHz,2.40 GHz,12 MB Intel® Smart Cache,35.0 +Intel® Pentium® Gold G5400 Processor,Q2'18,2,,3.70 GHz,4 MB Intel® Smart Cache,58.0 +Intel® Pentium® Gold G5400T Processor,Q2'18,2,,3.10 GHz,4 MB Intel® Smart Cache,35.0 +Intel® Pentium® Gold G5500 Processor,Q2'18,2,,3.80 GHz,4 MB Intel® Smart Cache,54.0 +Intel® Pentium® Gold G5500T Processor,Q2'18,2,,3.20 GHz,4 MB Intel® Smart Cache,35.0 +Intel® Pentium® Gold G5600 Processor,Q2'18,2,,3.90 GHz,4 MB Intel® Smart Cache,54.0 +Intel® Core™ i5-8300H Processor,Q2'18,4,4.00 GHz,2.30 GHz,8 MB Intel® Smart Cache,45.0 +Intel® Core™ i5-8400B Processor,Q2'18,6,4.00 GHz,2.80 GHz,9 MB Intel® Smart Cache,65.0 +Intel® Core™ i5-8400H Processor,Q2'18,4,4.20 GHz,2.50 GHz,8 MB Intel® Smart Cache,45.0 +Intel® Core™ i5-8500B Processor,Q2'18,6,4.10 GHz,3.00 GHz,9 MB Intel® Smart Cache,65.0 +Intel® Core™ i7-8700B Processor,Q2'18,6,4.60 GHz,3.20 GHz,12 MB Intel® Smart Cache,65.0 +Intel® Core™ i7-8750H Processor,Q2'18,6,4.10 GHz,2.20 GHz,9 MB Intel® Smart Cache,45.0 +Intel® Core™ i7-8850H Processor,Q2'18,6,4.30 GHz,2.60 GHz,9 MB Intel® Smart Cache,45.0 +Intel® Core™ i9-8950HK Processor,Q2'18,6,4.80 GHz,2.90 GHz,12 MB Intel® Smart Cache,45.0 +Intel® Xeon® E-2176M Processor,Q2'18,6,4.40 GHz,2.70 GHz,12 MB Intel® Smart Cache,45.0 +Intel® Xeon® E-2186M Processor,Q2'18,6,4.80 GHz,2.90 GHz,12 MB Intel® Smart Cache,45.0 +Intel® Core™ i3-7020U Processor,Q2'18,2,,2.30 GHz,3 MB Intel® Smart Cache,15.0 +Intel® Core™ i3-8130U Processor,Q1'18,2,3.40 GHz,2.20 GHz,4 MB Intel® Smart Cache,15.0 +Intel® Xeon® D-2123IT Processor,Q1'18,4,3.00 GHz,2.20 GHz,8 MB,60.0 +Intel® Xeon® D-2141I Processor,Q1'18,8,3.00 GHz,2.20 GHz,11 MB,65.0 +Intel® Xeon® D-2142IT Processor,Q1'18,8,3.00 GHz,1.90 GHz,11 MB,65.0 +Intel® Xeon® D-2143IT Processor,Q1'18,8,3.00 GHz,2.20 GHz,11 MB,65.0 +Intel® Xeon® D-2145NT Processor,Q1'18,8,3.00 GHz,1.90 GHz,11 MB,65.0 +Intel® Xeon® D-2146NT Processor,Q1'18,8,3.00 GHz,2.30 GHz,11 MB,80.0 +Intel® Xeon® D-2161I Processor,Q1'18,12,3.00 GHz,2.20 GHz,16.5 MB L2 Cache,90.0 +Intel® Xeon® D-2163IT Processor,Q1'18,12,3.00 GHz,2.10 GHz,17 MB,75.0 +Intel® Xeon® D-2166NT Processor,Q1'18,12,3.00 GHz,2.00 GHz,17 MB,85.0 +Intel® Xeon® D-2173IT Processor,Q1'18,14,3.00 GHz,1.70 GHz,19 MB,70.0 +Intel® Xeon® D-2177NT Processor,Q1'18,14,3.00 GHz,1.90 GHz,19 MB,105.0 +Intel® Xeon® D-2183IT Processor,Q1'18,16,3.00 GHz,2.20 GHz,22 MB,100.0 +Intel® Xeon® D-2187NT Processor,Q1'18,16,3.00 GHz,2.00 GHz,22 MB,110.0 +Intel® Core™ i3-8100H Processor,Q4'17,4,,3.00 GHz,6 MB Intel® Smart Cache,45.0 +Intel® Core™ i5-9500TE Processor,Q4'17,6,3.60 GHz,2.20 GHz,9 MB,35.0 +Intel® Xeon® E-2176G Processor,Q4'17,6,4.70 GHz,3.70 GHz,12 MB Intel® Smart Cache,80.0 +Intel® Xeon Phi™ Processor 7235,Q4'17,64,1.40 GHz,1.30 GHz,32 MB L2 Cache,250.0 +Intel® Xeon Phi™ Processor 7285,Q4'17,68,1.40 GHz,1.30 GHz,34 MB L2 Cache,250.0 +Intel® Xeon Phi™ Processor 7295,Q4'17,72,1.60 GHz,1.50 GHz,36 MB L2 Cache,320.0 +Intel® Celeron® J4005 Processor,Q4'17,2,,2.00 GHz,4 MB,10.0 +Intel® Celeron® J4105 Processor,Q4'17,4,,1.50 GHz,4 MB,10.0 +Intel® Celeron® Processor N4000,Q4'17,2,,1.10 GHz,4 MB,6.0 +Intel® Celeron® Processor N4100,Q4'17,4,,1.10 GHz,4 MB,6.0 +Intel® Pentium® Silver J5005 Processor,Q4'17,4,,1.50 GHz,4 MB,10.0 +Intel® Pentium® Silver N5000 Processor,Q4'17,4,,1.10 GHz,4 MB,6.0 +Intel® Core™ i3-8100 Processor,Q4'17,4,,3.60 GHz,6 MB Intel® Smart Cache,65.0 +Intel® Core™ i3-8350K Processor,Q4'17,4,,4.00 GHz,8 MB Intel® Smart Cache,91.0 +Intel® Core™ i5-8400 Processor,Q4'17,6,4.00 GHz,2.80 GHz,9 MB Intel® Smart Cache,65.0 +Intel® Core™ i5-8600K Processor,Q4'17,6,4.30 GHz,3.60 GHz,9 MB Intel® Smart Cache,95.0 +Intel® Core™ i7-8700 Processor,Q4'17,6,4.60 GHz,3.20 GHz,12 MB Intel® Smart Cache,65.0 +Intel® Core™ i7-8700K Processor,Q4'17,6,4.70 GHz,3.70 GHz,12 MB Intel® Smart Cache,95.0 +Intel® Core™ i9-7940X X-series Processor,Q3'17,14,4.30 GHz,3.10 GHz,19.25 MB,165.0 +Intel® Core™ i9-7960X X-series Processor,Q3'17,16,4.20 GHz,2.80 GHz,22 MB,165.0 +Intel® Core™ i9-7980XE Extreme Edition Processor,Q3'17,18,4.20 GHz,2.60 GHz,24.75 MB,165.0 +Intel® Xeon® W-2125 Processor,Q3'17,4,4.50 GHz,4.00 GHz,8.25 MB,120.0 +Intel® Xeon® W-2135 Processor,Q3'17,6,4.50 GHz,3.70 GHz,8.25 MB,140.0 +Intel® Xeon® W-2145 Processor,Q3'17,8,4.50 GHz,3.70 GHz,11 MB,140.0 +Intel® Xeon® W-2195 Processor,Q3'17,18,4.30 GHz,2.30 GHz,24.75 MB,140.0 +Intel® Xeon® W-2123 Processor,Q3'17,4,3.90 GHz,3.60 GHz,8.25 MB,120.0 +Intel® Xeon® W-2133 Processor,Q3'17,6,3.90 GHz,3.60 GHz,8.25 MB,140.0 +Intel® Xeon® W-2155 Processor,Q3'17,10,4.50 GHz,3.30 GHz,13.75 MB,140.0 +Intel® Xeon® W-2175 Processor,Q3'17,14,4.30 GHz,2.50 GHz,19 MB,140.0 +Intel® Core™ i5-8250U Processor,Q3'17,4,3.40 GHz,1.60 GHz,6 MB Intel® Smart Cache,15.0 +Intel® Core™ i5-8350U Processor,Q3'17,4,3.60 GHz,1.70 GHz,6 MB Intel® Smart Cache,15.0 +Intel® Core™ i7-8550U Processor,Q3'17,4,4.00 GHz,1.80 GHz,8192,15.0 +Intel® Core™ i7-8650U Processor,Q3'17,4,4.20 GHz,1.90 GHz,8 MB Intel® Smart Cache,15.0 +Intel Atom® Processor C3308,Q3'17,2,2.10 GHz,1.60 GHz,4 MB,9.5 +Intel Atom® Processor C3508,Q3'17,4,1.60 GHz,1.60 GHz,8 MB,11.5 +Intel Atom® Processor C3538,Q3'17,4,2.10 GHz,2.10 GHz,8 MB,15.0 +Intel Atom® Processor C3558,Q3'17,4,2.20 GHz,2.20 GHz,8 MB,16.0 +Intel Atom® Processor C3708,Q3'17,8,1.70 GHz,1.70 GHz,16 MB,17.0 +Intel Atom® Processor C3750,Q3'17,8,2.40 GHz,2.20 GHz,16 MB,21.0 +Intel Atom® Processor C3758,Q3'17,8,2.20 GHz,2.20 GHz,16 MB,25.0 +Intel Atom® Processor C3808,Q3'17,12,2.00 GHz,2.00 GHz,12 MB,25.0 +Intel Atom® Processor C3830,Q3'17,12,2.30 GHz,1.90 GHz,12 MB,21.5 +Intel Atom® Processor C3850,Q3'17,12,2.40 GHz,2.10 GHz,12 MB,25.0 +Intel Atom® Processor C3858,Q3'17,12,2.00 GHz,2.00 GHz,12 MB,25.0 +Intel Atom® Processor C3950,Q3'17,16,2.20 GHz,1.70 GHz,16 MB,24.0 +Intel Atom® Processor C3955,Q3'17,16,2.40 GHz,2.10 GHz,16 MB,32.0 +Intel Atom® Processor C3958,Q3'17,16,2.00 GHz,2.00 GHz,16 MB,31.0 +Intel® Xeon® Processor E3-1285 v6,Q3'17,4,4.50 GHz,4.10 GHz,8 MB Intel® Smart Cache,79.0 +Intel® Core™ i9-7920X X-series Processor,Q3'17,12,4.30 GHz,2.90 GHz,16.5 MB L3 Cache,140.0 +Intel® Xeon® Processor D-1513N,Q3'17,4,2.20 GHz,1.60 GHz,6 MB,35.0 +Intel® Xeon® Processor D-1523N,Q3'17,4,2.60 GHz,2.00 GHz,6 MB,45.0 +Intel® Xeon® Processor D-1533N,Q3'17,6,2.70 GHz,2.10 GHz,9 MB,45.0 +Intel® Xeon® Processor D-1543N,Q3'17,8,2.50 GHz,1.90 GHz,12 MB,45.0 +Intel® Xeon® Processor D-1553N,Q3'17,8,2.70 GHz,2.30 GHz,12 MB,65.0 +Intel® Xeon® Bronze 3104 Processor,Q3'17,6,,1.70 GHz,8.25 MB L3 Cache,85.0 +Intel® Xeon® Bronze 3106 Processor,Q3'17,8,,1.70 GHz,11 MB L3 Cache,85.0 +Intel® Xeon® Gold 5119T Processor,Q3'17,14,3.20 GHz,1.90 GHz,19.25 MB L3 Cache,85.0 +Intel® Xeon® Gold 6126F Processor,Q3'17,12,3.70 GHz,2.60 GHz,19.25 MB L3 Cache,135.0 +Intel® Xeon® Gold 6126T Processor,Q3'17,12,3.70 GHz,2.60 GHz,19.25 MB L3 Cache,125.0 +Intel® Xeon® Gold 6130F Processor,Q3'17,16,3.70 GHz,2.10 GHz,22 MB L3 Cache,135.0 +Intel® Xeon® Gold 6130T Processor,Q3'17,16,3.70 GHz,2.10 GHz,22 MB L3 Cache,125.0 +Intel® Xeon® Gold 6132 Processor,Q3'17,14,3.70 GHz,2.60 GHz,19.25 MB L3 Cache,140.0 +Intel® Xeon® Gold 6138F Processor,Q3'17,20,3.70 GHz,2.00 GHz,27.5 MB L3 Cache,135.0 +Intel® Xeon® Gold 6138T Processor,Q3'17,20,3.70 GHz,2.00 GHz,27.5 MB L3 Cache,125.0 +Intel® Xeon® Gold 6142F Processor,Q3'17,16,3.70 GHz,2.60 GHz,22 MB L3 Cache,160.0 +Intel® Xeon® Platinum 8160F Processor,Q3'17,24,3.70 GHz,2.10 GHz,33 MB L3 Cache,160.0 +Intel® Xeon® Platinum 8160T Processor,Q3'17,24,3.70 GHz,2.10 GHz,33 MB L3 Cache,150.0 +Intel® Xeon® Platinum 8176F Processor,Q3'17,28,3.80 GHz,2.10 GHz,38.5 MB L3 Cache,173.0 +Intel® Xeon® Silver 4108 Processor,Q3'17,8,3.00 GHz,1.80 GHz,11 MB L3 Cache,85.0 +Intel® Xeon® Silver 4109T Processor,Q3'17,8,3.00 GHz,2.00 GHz,11 MB L3 Cache,70.0 +Intel® Xeon® Silver 4110 Processor,Q3'17,8,3.00 GHz,2.10 GHz,11 MB L3 Cache,85.0 +Intel® Xeon® Silver 4112 Processor,Q3'17,4,3.00 GHz,2.60 GHz,8.25 MB L3 Cache,85.0 +Intel® Xeon® Silver 4114 Processor,Q3'17,10,3.00 GHz,2.20 GHz,13.75 MB L3 Cache,85.0 +Intel® Xeon® Silver 4114T Processor,Q3'17,10,3.00 GHz,2.20 GHz,13.75 MB L3 Cache,85.0 +Intel® Xeon® Silver 4116T Processor,Q3'17,12,3.00 GHz,2.10 GHz,16.5 MB L3 Cache,85.0 +Intel® Xeon® Gold 5115 Processor,Q3'17,10,3.20 GHz,2.40 GHz,13.75 MB L3 Cache,85.0 +Intel® Xeon® Gold 5118 Processor,Q3'17,12,3.20 GHz,2.3 GHz,16.5 MB L3 Cache,105.0 +Intel® Xeon® Gold 5120 Processor,Q3'17,14,3.20 GHz,2.20 GHz,19.25 MB L3 Cache,105.0 +Intel® Xeon® Gold 5120T Processor,Q3'17,14,3.20 GHz,2.20 GHz,19.25 MB L3 Cache,105.0 +Intel® Xeon® Gold 5122 Processor,Q3'17,4,3.70 GHz,3.60 GHz,16.5 MB L3 Cache,105.0 +Intel® Xeon® Gold 6126 Processor,Q3'17,12,3.70 GHz,2.60 GHz,19.25 MB L3 Cache,125.0 +Intel® Xeon® Gold 6128 Processor,Q3'17,6,3.70 GHz,3.40 GHz,19.25 MB L3 Cache,115.0 +Intel® Xeon® Gold 6130 Processor,Q3'17,16,3.70 GHz,2.10 GHz,22 MB L3 Cache,125.0 +Intel® Xeon® Gold 6134 Processor,Q3'17,8,3.70 GHz,3.20 GHz,24.75 MB L3 Cache,130.0 +Intel® Xeon® Gold 6136 Processor,Q3'17,12,3.70 GHz,3.00 GHz,24.75 MB L3 Cache,150.0 +Intel® Xeon® Gold 6138 Processor,Q3'17,20,3.70 GHz,2.00 GHz,27.5 MB L3 Cache,125.0 +Intel® Xeon® Gold 6140 Processor,Q3'17,18,3.70 GHz,2.30 GHz,24.75 MB L3 Cache,140.0 +Intel® Xeon® Gold 6142 Processor,Q3'17,16,3.70 GHz,2.60 GHz,22 MB L3 Cache,150.0 +Intel® Xeon® Gold 6144 Processor,Q3'17,8,4.20 GHz,3.50 GHz,24.75 MB L3 Cache,150.0 +Intel® Xeon® Gold 6146 Processor,Q3'17,12,4.20 GHz,3.20 GHz,24.75 MB L3 Cache,165.0 +Intel® Xeon® Gold 6148 Processor,Q3'17,20,3.70 GHz,2.40 GHz,27.5 MB L3 Cache,150.0 +Intel® Xeon® Gold 6148F Processor,Q3'17,20,3.70 GHz,2.40 GHz,27.5 MB L3 Cache,160.0 +Intel® Xeon® Gold 6150 Processor,Q3'17,18,3.70 GHz,2.70 GHz,24.75 MB L3 Cache,165.0 +Intel® Xeon® Gold 6152 Processor,Q3'17,22,3.70 GHz,2.10 GHz,30.25 MB L3 Cache,140.0 +Intel® Xeon® Gold 6154 Processor,Q3'17,18,3.70 GHz,3.00 GHz,24.75 MB L3 Cache,200.0 +Intel® Xeon® Platinum 8153 Processor,Q3'17,16,2.80 GHz,2.00 GHz,22 MB L3 Cache,125.0 +Intel® Xeon® Platinum 8156 Processor,Q3'17,4,3.70 GHz,3.60 GHz,16.5 MB L3 Cache,105.0 +Intel® Xeon® Platinum 8158 Processor,Q3'17,12,3.70 GHz,3.00 GHz,24.75 MB L3 Cache,150.0 +Intel® Xeon® Platinum 8160 Processor,Q3'17,24,3.70 GHz,2.10 GHz,33 MB L3 Cache,150.0 +Intel® Xeon® Platinum 8164 Processor,Q3'17,26,3.70 GHz,2.00 GHz,35.75 MB L3 Cache,150.0 +Intel® Xeon® Platinum 8168 Processor,Q3'17,24,3.70 GHz,2.70 GHz,33 MB L3 Cache,205.0 +Intel® Xeon® Platinum 8170 Processor,Q3'17,26,3.70 GHz,2.10 GHz,35.75 MB L3 Cache,165.0 +Intel® Xeon® Platinum 8176 Processor,Q3'17,28,3.80 GHz,2.10 GHz,38.5 MB L3 Cache,165.0 +Intel® Xeon® Platinum 8180 Processor,Q3'17,28,3.80 GHz,2.50 GHz,38.5 MB L3 Cache,205.0 +Intel® Xeon® Silver 4116 Processor,Q3'17,12,3.00 GHz,2.10 GHz,16.5 MB L3 Cache,85.0 +Intel Atom® Processor C2316,Q3'17,2,,1.50 GHz,1 MB,7.0 +Intel Atom® Processor C2516,Q3'17,4,,1.40 GHz,2 MB,10.0 +Intel® Celeron® Processor 3965Y,Q2'17,2,,1.50 GHz,2 MB Intel® Smart Cache,6.0 +Intel® Pentium® Gold Processor 4415Y,Q2'17,2,,1.60 GHz,2 MB Intel® Smart Cache,6.0 +Intel® Celeron® Processor G3930E,Q2'17,2,,2.90 GHz,2 MB,54.0 +Intel® Celeron® Processor G3930TE,Q2'17,2,,2.70 GHz,2 MB,35.0 +Intel® Core™ i3-7130U Processor,Q2'17,2,,2.70 GHz,3 MB Intel® Smart Cache,15.0 +Intel® Core™ i5-7640X X-series Processor,Q2'17,4,4.20 GHz,4.00 GHz,6 MB,112.0 +Intel® Core™ i7-7740X X-series Processor,Q2'17,4,4.50 GHz,4.30 GHz,8 MB,112.0 +Intel® Core™ i7-7800X X-series Processor,Q2'17,6,4.00 GHz,3.50 GHz,8.25 MB L3 Cache,140.0 +Intel® Core™ i7-7820X X-series Processor,Q2'17,8,4.30 GHz,3.60 GHz,11 MB L3 Cache,140.0 +Intel® Core™ i9-7900X X-series Processor,Q2'17,10,4.30 GHz,3.30 GHz,13.75 MB L3 Cache,140.0 +Intel® Itanium® Processor 9720,Q2'17,4,,1.73 GHz,20 MB,130.0 +Intel® Itanium® Processor 9740,Q2'17,8,,2.13 GHz,24 MB,170.0 +Intel® Itanium® Processor 9750,Q2'17,4,,2.53 GHz,32 MB,170.0 +Intel® Itanium® Processor 9760,Q2'17,8,,2.66 GHz,32 MB,170.0 +Intel® Core™ m3-7Y32 Processor,Q2'17,2,3.00 GHz,1.10 GHz,4 MB Intel® Smart Cache,4.5 +Intel® Xeon® Processor E3-1220 v6,Q1'17,4,3.50 GHz,3.00 GHz,8 MB Intel® Smart Cache,72.0 +Intel® Xeon® Processor E3-1240 v6,Q1'17,4,4.10 GHz,3.70 GHz,8 MB Intel® Smart Cache,72.0 +Intel® Xeon® Processor E3-1245 v6,Q1'17,4,4.10 GHz,3.70 GHz,8 MB Intel® Smart Cache,73.0 +Intel® Xeon® Processor E3-1225 v6,Q1'17,4,3.70 GHz,3.30 GHz,8 MB Intel® Smart Cache,73.0 +Intel® Xeon® Processor E3-1230 v6,Q1'17,4,3.90 GHz,3.50 GHz,8 MB Intel® Smart Cache,72.0 +Intel® Xeon® Processor E3-1270 v6,Q1'17,4,4.20 GHz,3.80 GHz,8 MB Intel® Smart Cache,72.0 +Intel® Xeon® Processor E3-1275 v6,Q1'17,4,4.20 GHz,3.80 GHz,8 MB Intel® Smart Cache,73.0 +Intel® Xeon® Processor E3-1280 v6,Q1'17,4,4.20 GHz,3.90 GHz,8 MB Intel® Smart Cache,72.0 +Intel® Xeon® Processor E7-8894 v4,Q1'17,24,3.40 GHz,2.40 GHz,60 MB,165.0 +Intel Atom® Processor C3338,Q1'17,2,2.20 GHz,1.50 GHz,4 MB,8.5 +Intel® Celeron® Processor 3865U,Q1'17,2,,1.80 GHz,2 MB Intel® Smart Cache,15.0 +Intel® Celeron® Processor 3965U,Q1'17,2,,2.20 GHz,2 MB Intel® Smart Cache,15.0 +Intel® Celeron® Processor G3930,Q1'17,2,,2.90 GHz,2 MB,51.0 +Intel® Celeron® Processor G3930T,Q1'17,2,,2.70 GHz,2 MB,35.0 +Intel® Core™ i3-7100 Processor,Q1'17,2,,3.90 GHz,3 MB Intel® Smart Cache,51.0 +Intel® Core™ i3-7100H Processor,Q1'17,2,,3.00 GHz,3 MB,35.0 +Intel® Core™ i3-7100T Processor,Q1'17,2,,3.40 GHz,3 MB Intel® Smart Cache,35.0 +Intel® Core™ i3-7101TE Processor,Q1'17,2,,3.40 GHz,3 MB Intel® Smart Cache,35.0 +Intel® Core™ i3-7102E Processor,Q1'17,2,,2.10 GHz,3 MB,25.0 +Intel® Core™ i3-7167U Processor,Q1'17,2,,2.80 GHz,3 MB,28.0 +Intel® Core™ i3-7300 Processor,Q1'17,2,,4.00 GHz,4 MB Intel® Smart Cache,51.0 +Intel® Core™ i3-7300T Processor,Q1'17,2,,3.50 GHz,4 MB Intel® Smart Cache,35.0 +Intel® Core™ i3-7320 Processor,Q1'17,2,,4.10 GHz,4 MB Intel® Smart Cache,51.0 +Intel® Core™ i3-7350K Processor,Q1'17,2,,4.20 GHz,4 MB Intel® Smart Cache,60.0 +Intel® Core™ i5-7260U Processor,Q1'17,2,3.40 GHz,2.20 GHz,4 MB,15.0 +Intel® Core™ i5-7267U Processor,Q1'17,2,3.50 GHz,3.10 GHz,4 MB,28.0 +Intel® Core™ i5-7287U Processor,Q1'17,2,3.70 GHz,3.30 GHz,4 MB,28.0 +Intel® Core™ i5-7300HQ Processor,Q1'17,4,3.50 GHz,2.50 GHz,6 MB,45.0 +Intel® Core™ i5-7300U Processor,Q1'17,2,3.50 GHz,2.60 GHz,3 MB Intel® Smart Cache,15.0 +Intel® Core™ i5-7360U Processor,Q1'17,2,3.60 GHz,2.30 GHz,4 MB,15.0 +Intel® Core™ i5-7400 Processor,Q1'17,4,3.50 GHz,3.00 GHz,6 MB Intel® Smart Cache,65.0 +Intel® Core™ i5-7440EQ Processor,Q1'17,4,3.60 GHz,2.90 GHz,6 MB,45.0 +Intel® Core™ i5-7440HQ Processor,Q1'17,4,3.80 GHz,2.80 GHz,6 MB,45.0 +Intel® Core™ i5-7442EQ Processor,Q1'17,4,2.90 GHz,2.10 GHz,6 MB,25.0 +Intel® Core™ i5-7500 Processor,Q1'17,4,3.80 GHz,3.40 GHz,6 MB Intel® Smart Cache,65.0 +Intel® Core™ i5-7500T Processor,Q1'17,4,3.30 GHz,2.70 GHz,6 MB Intel® Smart Cache,35.0 +Intel® Core™ i5-7600 Processor,Q1'17,4,4.10 GHz,3.50 GHz,6 MB Intel® Smart Cache,65.0 +Intel® Core™ i5-7600K Processor,Q1'17,4,4.20 GHz,3.80 GHz,6 MB Intel® Smart Cache,91.0 +Intel® Core™ i5-7600T Processor,Q1'17,4,3.70 GHz,2.80 GHz,6 MB Intel® Smart Cache,35.0 +Intel® Core™ i7-7560U Processor,Q1'17,2,3.80 GHz,2.40 GHz,4 MB,15.0 +Intel® Core™ i7-7567U Processor,Q1'17,2,4.00 GHz,3.50 GHz,4 MB,28.0 +Intel® Core™ i7-7660U Processor,Q1'17,2,4.00 GHz,2.50 GHz,4 MB,15.0 +Intel® Core™ i7-7700 Processor,Q1'17,4,4.20 GHz,3.60 GHz,8 MB Intel® Smart Cache,65.0 +Intel® Core™ i7-7700T Processor,Q1'17,4,3.80 GHz,2.90 GHz,8 MB Intel® Smart Cache,35.0 +Intel® Core™ i7-7820EQ Processor,Q1'17,4,3.70 GHz,3.00 GHz,8 MB,45.0 +Intel® Core™ i7-7820HQ Processor,Q1'17,4,3.90 GHz,2.90 GHz,8 MB,45.0 +Intel® Pentium® Gold Processor 4415U,Q1'17,2,,2.30 GHz,2 MB Intel® Smart Cache,15.0 +Intel® Pentium® Processor G4560,Q1'17,2,,3.50 GHz,3 MB,54.0 +Intel® Pentium® Processor G4560T,Q1'17,2,,2.90 GHz,3 MB,35.0 +Intel® Pentium® Processor G4600,Q1'17,2,,3.60 GHz,3 MB,51.0 +Intel® Pentium® Processor G4600T,Q1'17,2,,3.00 GHz,3 MB,35.0 +Intel® Pentium® Processor G4620,Q1'17,2,,3.70 GHz,3 MB,51.0 +Intel® Xeon® Processor E3-1535M v6,Q1'17,4,4.20 GHz,3.10 GHz,8 MB,45.0 +Intel® Celeron® Processor G3950,Q1'17,2,,3.00 GHz,2 MB,51.0 +Intel® Core™ i3-7100E Processor,Q1'17,2,,2.90 GHz,3 MB,35.0 +Intel® Core™ i3-7101E Processor,Q1'17,2,,3.90 GHz,3 MB Intel® Smart Cache,54.0 +Intel® Core™ i5-7400T Processor,Q1'17,4,3.00 GHz,2.40 GHz,6 MB Intel® Smart Cache,35.0 +Intel® Core™ i5-7Y57 Processor,Q1'17,2,3.30 GHz,1.20 GHz,4 MB Intel® Smart Cache,4.5 +Intel® Core™ i7-7700HQ Processor,Q1'17,4,3.80 GHz,2.80 GHz,6 MB,45.0 +Intel® Core™ i7-7700K Processor,Q1'17,4,4.50 GHz,4.20 GHz,8 MB Intel® Smart Cache,91.0 +Intel® Core™ i7-7820HK Processor,Q1'17,4,3.90 GHz,2.90 GHz,8 MB,45.0 +Intel® Core™ i7-7920HQ Processor,Q1'17,4,4.10 GHz,3.10 GHz,8 MB,45.0 +Intel® Pentium® Gold Processor 4410Y,Q1'17,2,,1.50 GHz,2 MB Intel® Smart Cache,6.0 +Intel® Xeon® Processor E3-1505L v6,Q1'17,4,3.00 GHz,2.20 GHz,8 MB,25.0 +Intel® Xeon® Processor E3-1505M v6,Q1'17,4,4.00 GHz,3.00 GHz,8 MB,45.0 +Intel® Core™ i3-6006U Processor,Q4'16,2,,2.00 GHz,3 MB Intel® Smart Cache,15.0 +Intel Atom® x5-E3930 Processor,Q4'16,2,,1.30 GHz,2 MB L2 Cache,6.5 +Intel Atom® x5-E3940 Processor,Q4'16,4,,1.60 GHz,2 MB L2 Cache,9.5 +Intel Atom® x7-E3950 Processor,Q4'16,4,,1.60 GHz,2 MB L2 Cache,12.0 +Intel® Xeon® Processor E5-2699A v4,04'16,22,3.60 GHz,2.40 GHz,55 MB,145.0 +Intel® Xeon® Processor E5-2699R v4,04'16,22,3.60 GHz,2.20 GHz,55 MB,145.0 +Intel® Core™ i7-7600U Processor,Q3'16,2,3.90 GHz,2.80 GHz,4 MB Intel® Smart Cache,15.0 +Intel® Xeon® Processor E3-1501L v6,Q3'16,4,2.90 GHz,2.10 GHz,6 MB,25.0 +Intel® Xeon® Processor E3-1501M v6,Q3'16,4,3.60 GHz,2.90 GHz,6 MB,45.0 +Intel® Core™ i3-6157U Processor,Q3'16,2,,2.40 GHz,3 MB Intel® Smart Cache,28.0 +Intel® Celeron® Processor J3355,Q3'16,2,,2.00 GHz,2 MB,10.0 +Intel® Celeron® Processor J3455,Q3'16,4,,1.50 GHz,2 MB,10.0 +Intel® Celeron® Processor N3350,Q3'16,2,,1.10 GHz,2 MB L2 Cache,6.0 +Intel® Celeron® Processor N3450,Q3'16,4,,1.10 GHz,2 MB L2 Cache,6.0 +Intel® Core™ i3-7100U Processor,Q3'16,2,,2.40 GHz,3 MB Intel® Smart Cache,15.0 +Intel® Core™ i5-7200U Processor,Q3'16,2,3.10 GHz,2.50 GHz,3 MB Intel® Smart Cache,15.0 +Intel® Core™ i5-7Y54 Processor,Q3'16,2,3.20 GHz,1.20 GHz,4 MB Intel® Smart Cache,4.5 +Intel® Core™ i7-7500U Processor,Q3'16,2,3.50 GHz,2.70 GHz,4 MB Intel® Smart Cache,15.0 +Intel® Core™ i7-7Y75 Processor,Q3'16,2,3.60 GHz,1.30 GHz,4 MB Intel® Smart Cache,4.5 +Intel® Core™ m3-7Y30 Processor,Q3'16,2,2.60 GHz,1.00 GHz,4 MB Intel® Smart Cache,4.5 +Intel® Pentium® Processor J4205,Q3'16,4,,1.50 GHz,2 MB,10.0 +Intel® Pentium® Processor N4200,Q3'16,4,,1.10 GHz,2 MB L2 Cache,6.0 +Intel® Xeon Phi™ Processor 7210,Q2'16,64,1.50 GHz,1.30 GHz,32 MB L2 Cache,215.0 +Intel® Xeon Phi™ Processor 7210F,Q4'16,64,1.50 GHz,1.30 GHz,32 MB L2 Cache,230.0 +Intel® Xeon Phi™ Processor 7230,Q2'16,64,1.50 GHz,1.30 GHz,32 MB L2 Cache,215.0 +Intel® Xeon Phi™ Processor 7230F,Q4'16,64,1.50 GHz,1.30 GHz,32 MB L2 Cache,230.0 +Intel® Xeon Phi™ Processor 7250,Q2'16,68,1.60 GHz,1.40 GHz,34 MB L2 Cache,215.0 +Intel® Xeon Phi™ Processor 7250F,Q4'16,68,1.60 GHz,1.40 GHz,34 MB L2 Cache,230.0 +Intel® Xeon Phi™ Processor 7290,Q4'16,72,1.70 GHz,1.50 GHz,36 MB L2 Cache,245.0 +Intel® Xeon Phi™ Processor 7290F,Q4'16,72,1.70 GHz,1.50 GHz,36 MB L2 Cache,260.0 +Intel® Xeon® Processor E5-4610 v4,Q2'16,10,1.80 GHz,1.80 GHz,25 MB,105.0 +Intel® Xeon® Processor E5-4620 v4,Q2'16,10,2.60 GHz,2.10 GHz,25 MB,105.0 +Intel® Xeon® Processor E5-4628L v4,Q2'16,14,2.20 GHz,1.80 GHz,35 MB,75.0 +Intel® Xeon® Processor E5-4650 v4,Q2'16,14,2.80 GHz,2.20 GHz,35 MB,105.0 +Intel® Xeon® Processor E5-4655 v4,Q2'16,8,3.20 GHz,2.50 GHz,30 MB,135.0 +Intel® Xeon® Processor E5-4660 v4,Q2'16,16,3.00 GHz,2.20 GHz,40 MB,120.0 +Intel® Xeon® Processor E5-4667 v4,Q2'16,18,3.00 GHz,2.20 GHz,45 MB,135.0 +Intel® Xeon® Processor E5-4669 v4,Q2'16,22,3.00 GHz,2.20 GHz,55 MB,135.0 +Intel® Xeon® Processor E5-4627 v4,Q2'16,10,3.20 GHz,2.60 GHz,25 MB,135.0 +Intel® Xeon® Processor E5-4640 v4,Q2'16,12,2.60 GHz,2.10 GHz,30 MB,105.0 +Intel® Xeon® Processor E5-1620 v4,Q2'16,4,3.80 GHz,3.50 GHz,10 MB,140.0 +Intel® Xeon® Processor E5-1630 v4,Q2'16,4,4.00 GHz,3.70 GHz,10 MB,140.0 +Intel® Xeon® Processor E5-1650 v4,Q2'16,6,4.00 GHz,3.60 GHz,15 MB,140.0 +Intel® Xeon® Processor E5-1660 v4,Q2'16,8,3.80 GHz,3.20 GHz,20 MB,140.0 +Intel® Xeon® Processor E5-1680 v4,Q2'16,8,4.00 GHz,3.40 GHz,20 MB,140.0 +Intel® Xeon® Processor E7-4809 v4,Q2'16,8,,2.10 GHz,20 MB,115.0 +Intel® Xeon® Processor E7-4820 v4,Q2'16,10,,2.00 GHz,25 MB,115.0 +Intel® Xeon® Processor E7-4830 v4,Q2'16,14,2.80 GHz,2.00 GHz,35 MB,115.0 +Intel® Xeon® Processor E7-4850 v4,Q2'16,16,2.80 GHz,2.10 GHz,40 MB,115.0 +Intel® Xeon® Processor E7-8860 v4,Q2'16,18,3.20 GHz,2.20 GHz,45 MB,140.0 +Intel® Xeon® Processor E7-8867 v4,Q2'16,18,3.30 GHz,2.40 GHz,45 MB,165.0 +Intel® Xeon® Processor E7-8870 v4,Q2'16,20,3.00 GHz,2.10 GHz,50 MB,140.0 +Intel® Xeon® Processor E7-8880 v4,Q2'16,22,3.30 GHz,2.20 GHz,55 MB,150.0 +Intel® Xeon® Processor E7-8890 v4,Q2'16,24,3.40 GHz,2.20 GHz,60 MB,165.0 +Intel® Xeon® Processor E7-8891 v4,Q2'16,10,3.50 GHz,2.80 GHz,60 MB,165.0 +Intel® Xeon® Processor E7-8893 v4,Q2'16,4,3.50 GHz,3.20 GHz,60 MB,140.0 +Intel® Xeon® Processor E3-1558L v5,Q2'16,4,3.30 GHz,1.90 GHz,8 MB,45.0 +Intel® Xeon® Processor E3-1565L v5,Q2'16,4,3.50 GHz,2.50 GHz,8 MB,35.0 +Intel® Xeon® Processor E3-1578L v5,Q2'16,4,3.40 GHz,2.00 GHz,8 MB,45.0 +Intel® Xeon® Processor E3-1585 v5,Q2'16,4,3.90 GHz,3.50 GHz,8 MB,65.0 +Intel® Xeon® Processor E3-1585L v5,Q2'16,4,3.70 GHz,3.00 GHz,8 MB,45.0 +Intel® Core™ i7-6800K Processor,Q2'16,6,3.60 GHz,3.40 GHz,15 MB Intel® Smart Cache,140.0 +Intel® Core™ i7-6850K Processor,Q2'16,6,3.80 GHz,3.60 GHz,15 MB,140.0 +Intel® Core™ i7-6900K Processor,Q2'16,8,3.70 GHz,3.20 GHz,20 MB,140.0 +Intel® Core™ i7-6950X Processor Extreme Edition,Q2'16,10,3.50 GHz,3.00 GHz,25 MB,140.0 +Intel® Core™ i5-6585R Processor,Q2'16,4,3.60 GHz,2.80 GHz,6 MB,65.0 +Intel® Core™ i5-6685R Processor,Q2'16,4,3.80 GHz,3.20 GHz,6 MB,65.0 +Intel® Core™ i7-6785R Processor,Q2'16,4,3.90 GHz,3.30 GHz,8 MB,65.0 +Intel® Pentium® Processor D1519,Q2'16,4,2.10 GHz,1.50 GHz,6 MB,25.0 +Intel® Xeon® Processor D-1529,Q2'16,4,1.30 GHz,1.30 GHz,6 MB,20.0 +Intel® Xeon® Processor D-1539,Q2'16,8,2.20 GHz,1.60 GHz,12 MB,35.0 +Intel® Xeon® Processor D-1559,Q2'16,12,2.10 GHz,1.50 GHz,18 MB,45.0 +Intel® Xeon® Processor E5-2603 v4,Q1'16,6,,1.70 GHz,15 MB Intel® Smart Cache,85.0 +Intel® Xeon® Processor E5-2608L v4,Q1'16,8,1.70 GHz,1.60 GHz,20 MB Intel® Smart Cache,50.0 +Intel® Xeon® Processor E5-2620 v4,Q1'16,8,3.00 GHz,2.10 GHz,20 MB Intel® Smart Cache,85.0 +Intel® Xeon® Processor E5-2630 v4,Q1'16,10,3.10 GHz,2.20 GHz,25 MB Intel® Smart Cache,85.0 +Intel® Xeon® Processor E5-2648L v4,Q1'16,14,2.50 GHz,1.80 GHz,35 MB Intel® Smart Cache,75.0 +Intel® Xeon® Processor E5-2650 v4,Q1'16,12,2.90 GHz,2.20 GHz,30 MB Intel® Smart Cache,105.0 +Intel® Xeon® Processor E5-2650L v4,Q1'16,14,2.50 GHz,1.70 GHz,35 MB Intel® Smart Cache,65.0 +Intel® Xeon® Processor E5-2680 v4,Q1'16,14,3.30 GHz,2.40 GHz,35 MB Intel® Smart Cache,120.0 +Intel® Xeon® Processor E5-2683 v4,Q1'16,16,3.00 GHz,2.10 GHz,40 MB Intel® Smart Cache,120.0 +Intel® Xeon® Processor E5-2687W v4,Q1'16,12,3.50 GHz,3.00 GHz,30 MB Intel® Smart Cache,160.0 +Intel® Xeon® Processor E5-2690 v4,Q1'16,14,3.50 GHz,2.60 GHz,35 MB Intel® Smart Cache,135.0 +Intel® Xeon® Processor E5-2695 v4,Q1'16,18,3.30 GHz,2.10 GHz,45 MB Intel® Smart Cache,120.0 +Intel® Xeon® Processor E5-2697 v4,Q1'16,18,3.60 GHz,2.30 GHz,45 MB Intel® Smart Cache,145.0 +Intel® Xeon® Processor E5-2697A v4,Q1'16,16,3.60 GHz,2.60 GHz,40 MB Intel® Smart Cache,145.0 +Intel® Xeon® Processor E5-2698 v4,Q1'16,20,3.60 GHz,2.20 GHz,50 MB Intel® Smart Cache,135.0 +Intel® Xeon® Processor E5-2699 v4,Q1'16,22,3.60 GHz,2.20 GHz,55 MB Intel® Smart Cache,145.0 +Intel® Xeon® Processor E5-2609 v4,Q1'16,8,,1.70 GHz,20 MB Intel® Smart Cache,85.0 +Intel® Xeon® Processor E5-2618L v4,Q1'16,10,3.20 GHz,2.20 GHz,25 MB Intel® Smart Cache,75.0 +Intel® Xeon® Processor E5-2623 v4,Q1'16,4,3.20 GHz,2.60 GHz,10 MB Intel® Smart Cache,85.0 +Intel® Xeon® Processor E5-2628L v4,Q1'16,12,2.40 GHz,1.90 GHz,30 MB Intel® Smart Cache,75.0 +Intel® Xeon® Processor E5-2630L v4,Q1'16,10,2.90 GHz,1.80 GHz,25 MB Intel® Smart Cache,55.0 +Intel® Xeon® Processor E5-2637 v4,Q1'16,4,3.70 GHz,3.50 GHz,15 MB Intel® Smart Cache,135.0 +Intel® Xeon® Processor E5-2640 v4,Q1'16,10,3.40 GHz,2.40 GHz,25 MB Intel® Smart Cache,90.0 +Intel® Xeon® Processor E5-2643 v4,Q1'16,6,3.70 GHz,3.40 GHz,20 MB Intel® Smart Cache,135.0 +Intel® Xeon® Processor E5-2658 v4,Q1'16,14,2.80 GHz,2.30 GHz,35 MB Intel® Smart Cache,105.0 +Intel® Xeon® Processor E5-2660 v4,Q1'16,14,3.20 GHz,2.00 GHz,35 MB,105.0 +Intel® Xeon® Processor E5-2667 v4,Q1'16,8,3.60 GHz,3.20 GHz,25 MB Intel® Smart Cache,135.0 +Intel® Core™ i7-6660U Processor,Q1'16,2,3.40 GHz,2.40 GHz,4 MB Intel® Smart Cache,15.0 +Intel® Xeon® Processor D-1557,Q1'16,12,2.10 GHz,1.50 GHz,18 MB,45.0 +Intel® Xeon® Processor D-1567,Q1'16,12,2.70 GHz,2.10 GHz,18 MB,65.0 +Intel® Xeon® Processor D-1571,Q1'16,16,2.10 GHz,1.30 GHz,24 MB,45.0 +Intel® Xeon® Processor D-1577,Q1'16,16,2.10 GHz,1.30 GHz,24 MB,45.0 +Intel® Core™ i5-6350HQ Processor,Q1'16,4,3.20 GHz,2.30 GHz,6 MB Intel® Smart Cache,45.0 +Intel® Core™ i7-6770HQ Processor,Q1'16,4,3.50 GHz,2.60 GHz,6 MB Intel® Smart Cache,45.0 +Intel® Core™ i7-6870HQ Processor,Q1'16,4,3.60 GHz,2.70 GHz,8 MB Intel® Smart Cache,45.0 +Intel® Core™ i7-6970HQ Processor,Q1'16,4,3.70 GHz,2.80 GHz,8 MB Intel® Smart Cache,45.0 +Intel® Xeon® Processor E3-1515M v5,Q1'16,4,3.70 GHz,2.80 GHz,8 MB Intel® Smart Cache,45.0 +Intel® Xeon® Processor E3-1545M v5,Q1'16,4,3.80 GHz,2.90 GHz,8 MB Intel® Smart Cache,45.0 +Intel® Xeon® Processor E3-1575M v5,Q1'16,4,3.90 GHz,3.00 GHz,8 MB Intel® Smart Cache,45.0 +Intel Atom® x5-E8000 Processor,Q1'16,4,,1.04 GHz,2 MB,5.0 +Intel® Pentium® Processor J3710,Q1'16,4,,1.60 GHz,2 MB L2 Cache,6.5 +Intel® Celeron® Processor J3060,Q1'16,2,,1.60 GHz,2 MB L2 Cache,6.0 +Intel® Celeron® Processor J3160,Q1'16,4,,1.60 GHz,2 MB L2 Cache,6.0 +Intel® Celeron® Processor N3010,Q1'16,2,,1.04 GHz,2 MB L2 Cache,4.0 +Intel® Celeron® Processor N3060,Q1'16,2,,1.60 GHz,2 MB L2 Cache,6.0 +Intel® Celeron® Processor N3160,Q1'16,4,,1.60 GHz,2 MB L2 Cache,6.0 +Intel® Pentium® Processor N3710,Q1'16,4,,1.60 GHz,2 MB L2 Cache,6.0 +Intel® Pentium® Processor A1020,Q1'16,4,,2.41 GHz,2 MB L2 Cache,10.0 +Intel® Celeron® Processor G3900E,Q1'16,2,,2.40 GHz,2 MB Intel® Smart Cache,35.0 +Intel® Celeron® Processor G3902E,Q1'16,2,,1.60 GHz,2 MB Intel® Smart Cache,25.0 +Intel® Celeron® Processor 3855U,Q4'15,2,,1.60 GHz,2 MB Intel® Smart Cache,15.0 +Intel® Celeron® Processor 3955U,Q4'15,2,,2.00 GHz,2 MB Intel® Smart Cache,15.0 +Intel® Celeron® Processor G3900,Q4'15,2,,2.80 GHz,2 MB Intel® Smart Cache,51.0 +Intel® Celeron® Processor G3900T,Q4'15,2,,2.60 GHz,2 MB Intel® Smart Cache,35.0 +Intel® Celeron® Processor G3900TE,Q4'15,2,,2.30 GHz,2 MB Intel® Smart Cache,35.0 +Intel® Celeron® Processor G3920,Q4'15,2,,2.90 GHz,2 MB Intel® Smart Cache,51.0 +Intel® Core™ i3-6098P Processor,Q4'15,2,,3.60 GHz,3 MB,54.0 +Intel® Core™ i5-6402P Processor,Q4'15,4,3.40 GHz,2.80 GHz,6 MB,65.0 +Intel® Pentium® Processor G4400TE,Q4'15,2,,2.40 GHz,3 MB Intel® Smart Cache,35.0 +Intel® Pentium® Processor D1507,Q4'15,2,,1.20 GHz,3 MB,20.0 +Intel® Pentium® Processor D1508,Q4'15,2,2.60 GHz,2.20 GHz,3 MB,25.0 +Intel® Pentium® Processor D1509,Q4'15,2,,1.50 GHz,3 MB,19.0 +Intel® Pentium® Processor D1517,Q4'15,4,2.20 GHz,1.60 GHz,6 MB,25.0 +Intel® Xeon® Processor D-1518,Q4'15,4,2.20 GHz,2.20 GHz,6 MB,35.0 +Intel® Xeon® Processor D-1521,Q4'15,4,2.70 GHz,2.40 GHz,6 MB,45.0 +Intel® Xeon® Processor D-1541,Q4'15,8,2.70 GHz,2.10 GHz,12 MB,45.0 +Intel® Xeon® Processor D-1527,Q4'15,4,2.70 GHz,2.20 GHz,6 MB,35.0 +Intel® Xeon® Processor D-1528,Q4'15,6,2.50 GHz,1.90 GHz,9 MB,35.0 +Intel® Xeon® Processor D-1531,Q4'15,6,2.70 GHz,2.20 GHz,9 MB,45.0 +Intel® Xeon® Processor D-1537,Q4'15,8,2.30 GHz,1.70 GHz,12 MB,35.0 +Intel® Xeon® Processor D-1548,Q4'15,8,2.60 GHz,2.00 GHz,12 MB,45.0 +Intel® Xeon® Processor E3-1220 v5,Q4'15,4,3.50 GHz,3.00 GHz,8 MB Intel® Smart Cache,80.0 +Intel® Xeon® Processor E3-1225 v5,Q4'15,4,3.70 GHz,3.30 GHz,8 MB Intel® Smart Cache,80.0 +Intel® Xeon® Processor E3-1230 v5,Q4'15,4,3.80 GHz,3.40 GHz,8 MB Intel® Smart Cache,80.0 +Intel® Xeon® Processor E3-1235L v5,Q4'15,4,3.00 GHz,2.00 GHz,8 MB Intel® Smart Cache,25.0 +Intel® Xeon® Processor E3-1240 v5,Q4'15,4,3.90 GHz,3.50 GHz,8 MB Intel® Smart Cache,80.0 +Intel® Xeon® Processor E3-1240L v5,Q4'15,4,3.20 GHz,2.10 GHz,8 MB Intel® Smart Cache,25.0 +Intel® Xeon® Processor E3-1245 v5,Q4'15,4,3.90 GHz,3.50 GHz,8 MB Intel® Smart Cache,80.0 +Intel® Xeon® Processor E3-1260L v5,Q4'15,4,3.90 GHz,2.90 GHz,8 MB Intel® Smart Cache,45.0 +Intel® Xeon® Processor E3-1268L v5,Q4'15,4,3.40 GHz,2.40 GHz,8 MB Intel® Smart Cache,35.0 +Intel® Xeon® Processor E3-1270 v5,Q4'15,4,4.00 GHz,3.60 GHz,8 MB Intel® Smart Cache,80.0 +Intel® Xeon® Processor E3-1275 v5,Q4'15,4,4.00 GHz,3.60 GHz,8 MB Intel® Smart Cache,80.0 +Intel® Xeon® Processor E3-1280 v5,Q4'15,4,4.00 GHz,3.70 GHz,8 MB Intel® Smart Cache,80.0 +Intel® Core™ i3-6100E Processor,Q4'15,2,,2.70 GHz,3 MB Intel® Smart Cache,35.0 +Intel® Core™ i3-6100TE Processor,Q4'15,2,,2.70 GHz,4 MB Intel® Smart Cache,35.0 +Intel® Core™ i3-6102E Processor,Q4'15,2,,1.90 GHz,3 MB Intel® Smart Cache,25.0 +Intel® Core™ i5-6440EQ Processor,Q4'15,4,3.40 GHz,2.70 GHz,6 MB Intel® Smart Cache,45.0 +Intel® Core™ i5-6442EQ Processor,Q4'15,4,2.70 GHz,1.90 GHz,6 MB Intel® Smart Cache,25.0 +Intel® Core™ i5-6500TE Processor,Q4'15,4,3.30 GHz,2.30 GHz,6 MB Intel® Smart Cache,35.0 +Intel® Core™ i7-6700TE Processor,Q4'15,4,3.40 GHz,2.40 GHz,8 MB Intel® Smart Cache,35.0 +Intel® Core™ i7-6820EQ Processor,Q4'15,4,3.50 GHz,2.80 GHz,8 MB Intel® Smart Cache,45.0 +Intel® Core™ i7-6822EQ Processor,Q4'15,4,2.80 GHz,2.00 GHz,8 MB Intel® Smart Cache,25.0 +Intel® Xeon® Processor E3-1505L v5,Q4'15,4,2.80 GHz,2.00 GHz,8 MB Intel® Smart Cache,25.0 +Intel® Core™ i3-6100H Processor,Q3'15,2,,2.70 GHz,3 MB Intel® Smart Cache,35.0 +Intel® Core™ i3-6167U Processor,Q3'15,2,,2.70 GHz,3 MB Intel® Smart Cache,28.0 +Intel® Core™ i5-6260U Processor,Q3'15,2,2.90 GHz,1.80 GHz,4 MB Intel® Smart Cache,15.0 +Intel® Core™ i5-6267U Processor,Q3'15,2,3.30 GHz,2.90 GHz,4 MB Intel® Smart Cache,28.0 +Intel® Core™ i5-6287U Processor,Q3'15,2,3.50 GHz,3.10 GHz,4 MB Intel® Smart Cache,28.0 +Intel® Core™ i5-6300HQ Processor,Q3'15,4,3.20 GHz,2.30 GHz,6 MB Intel® Smart Cache,45.0 +Intel® Core™ i5-6300U Processor,Q3'15,2,3.00 GHz,2.40 GHz,3 MB Intel® Smart Cache,15.0 +Intel® Core™ i5-6360U Processor,Q3'15,2,3.10 GHz,2.00 GHz,4 MB Intel® Smart Cache,15.0 +Intel® Core™ i5-6440HQ Processor,Q3'15,4,3.50 GHz,2.60 GHz,6 MB Intel® Smart Cache,45.0 +Intel® Core™ i7-6500U Processor,Q3'15,2,3.10 GHz,2.50 GHz,4 MB Intel® Smart Cache,15.0 +Intel® Core™ i7-6560U Processor,Q3'15,2,3.20 GHz,2.20 GHz,4 MB Intel® Smart Cache,15.0 +Intel® Core™ i7-6700HQ Processor,Q3'15,4,3.50 GHz,2.60 GHz,6 MB Intel® Smart Cache,45.0 +Intel® Core™ i7-6820HK Processor,Q3'15,4,3.60 GHz,2.70 GHz,8 MB Intel® Smart Cache,45.0 +Intel® Core™ i7-6820HQ Processor,Q3'15,4,3.60 GHz,2.70 GHz,8 MB Intel® Smart Cache,45.0 +Intel® Core™ i7-6920HQ Processor,Q3'15,4,3.80 GHz,2.90 GHz,8 MB Intel® Smart Cache,45.0 +Intel® Core™ m3-6Y30 Processor,Q3'15,2,2.20 GHz,900 MHz,4 MB Intel® Smart Cache,4.5 +Intel® Core™ m5-6Y54 Processor,Q3'15,2,2.70 GHz,1.10 GHz,4 MB Intel® Smart Cache,4.5 +Intel® Core™ m5-6Y57 Processor,Q3'15,2,2.80 GHz,1.10 GHz,4 MB Intel® Smart Cache,4.5 +Intel® Core™ m7-6Y75 Processor,Q3'15,2,3.10 GHz,1.20 GHz,4 MB Intel® Smart Cache,4.5 +Intel® Pentium® Processor 4405U,Q3'15,2,,2.10 GHz,2 MB Intel® Smart Cache,15.0 +Intel® Pentium® Processor 4405Y,Q3'15,2,,1.50 GHz,2 MB Intel® Smart Cache,6.0 +Intel® Xeon® Processor E3-1505M v5,Q3'15,4,3.70 GHz,2.80 GHz,8 MB Intel® Smart Cache,45.0 +Intel® Xeon® Processor E3-1535M v5,Q3'15,4,3.80 GHz,2.90 GHz,8 MB Intel® Smart Cache,45.0 +Intel® Core™ i3-6100 Processor,Q3'15,2,,3.70 GHz,3 MB Intel® Smart Cache,51.0 +Intel® Core™ i3-6100T Processor,Q3'15,2,,3.20 GHz,3 MB Intel® Smart Cache,35.0 +Intel® Core™ i3-6100U Processor,Q3'15,2,,2.30 GHz,3 MB Intel® Smart Cache,15.0 +Intel® Core™ i3-6300 Processor,Q3'15,2,,3.80 GHz,4 MB Intel® Smart Cache,51.0 +Intel® Core™ i3-6300T Processor,Q3'15,2,,3.30 GHz,4 MB Intel® Smart Cache,35.0 +Intel® Core™ i3-6320 Processor,Q3'15,2,,3.90 GHz,4 MB Intel® Smart Cache,51.0 +Intel® Core™ i5-6200U Processor,Q3'15,2,2.80 GHz,2.30 GHz,3 MB Intel® Smart Cache,15.0 +Intel® Core™ i5-6400 Processor,Q3'15,4,3.30 GHz,2.70 GHz,6 MB Intel® Smart Cache,65.0 +Intel® Core™ i5-6400T Processor,Q3'15,4,2.80 GHz,2.20 GHz,6 MB Intel® Smart Cache,35.0 +Intel® Core™ i5-6500 Processor,Q3'15,4,3.60 GHz,3.20 GHz,6 MB Intel® Smart Cache,65.0 +Intel® Core™ i5-6500T Processor,Q3'15,4,3.10 GHz,2.50 GHz,6 MB Intel® Smart Cache,35.0 +Intel® Core™ i5-6600 Processor,Q3'15,4,3.90 GHz,3.30 GHz,6 MB Intel® Smart Cache,65.0 +Intel® Core™ i5-6600T Processor,Q3'15,4,3.50 GHz,2.70 GHz,6 MB Intel® Smart Cache,35.0 +Intel® Core™ i7-6600U Processor,Q3'15,2,3.40 GHz,2.60 GHz,4 MB Intel® Smart Cache,15.0 +Intel® Core™ i7-6650U Processor,Q3'15,2,3.40 GHz,2.20 GHz,4 MB Intel® Smart Cache,15.0 +Intel® Core™ i7-6700 Processor,Q3'15,4,4.00 GHz,3.40 GHz,8 MB Intel® Smart Cache,65.0 +Intel® Core™ i7-6700T Processor,Q3'15,4,3.60 GHz,2.80 GHz,8 MB Intel® Smart Cache,35.0 +Intel® Pentium® Processor G4400,Q3'15,2,,3.30 GHz,3 MB Intel® Smart Cache,54.0 +Intel® Pentium® Processor G4400T,Q3'15,2,,2.90 GHz,3 MB Intel® Smart Cache,35.0 +Intel® Pentium® Processor G4500,Q3'15,2,,3.50 GHz,3 MB Intel® Smart Cache,51.0 +Intel® Pentium® Processor G4500T,Q3'15,2,,3.00 GHz,3 MB Intel® Smart Cache,35.0 +Intel® Pentium® Processor G4520,Q3'15,2,,3.60 GHz,3 MB Intel® Smart Cache,51.0 +Intel® Core™ i5-6600K Processor,Q3'15,4,3.90 GHz,3.50 GHz,6 MB Intel® Smart Cache,91.0 +Intel® Core™ i7-6700K Processor,Q3'15,4,4.20 GHz,4.00 GHz,8 MB Intel® Smart Cache,91.0 +Intel® Quark™ Microcontroller D1000,Q3'15,1,,33 MHz,0 KB,0.03 +Intel® Core™ i7-6567U Processor,Q3'15,2,3.60 GHz,3.30 GHz,4 MB Intel® Smart Cache,28.0 +Intel® Celeron® Processor 3215U,Q2'15,2,,1.70 GHz,2 MB,15.0 +Intel® Celeron® Processor 3765U,Q2'15,2,,1.90 GHz,2 MB,15.0 +Intel® Core™ i5-5350H Processor,Q2'15,2,3.50 GHz,3.10 GHz,4 MB,47.0 +Intel® Core™ i5-5575R Processor,Q2'15,4,3.30 GHz,2.80 GHz,4 MB,65.0 +Intel® Core™ i5-5675C Processor,Q2'15,4,3.60 GHz,3.10 GHz,4 MB,65.0 +Intel® Core™ i5-5675R Processor,Q2'15,4,3.60 GHz,3.10 GHz,4 MB,65.0 +Intel® Core™ i7-5700EQ Processor,Q2'15,4,3.40 GHz,2.60 GHz,6 MB Intel® Smart Cache,47.0 +Intel® Core™ i7-5700HQ Processor,Q2'15,4,3.50 GHz,2.70 GHz,6 MB,47.0 +Intel® Core™ i7-5750HQ Processor,Q2'15,4,3.40 GHz,2.50 GHz,6 MB,47.0 +Intel® Core™ i7-5775C Processor,Q2'15,4,3.70 GHz,3.30 GHz,6 MB,65.0 +Intel® Core™ i7-5775R Processor,Q2'15,4,3.80 GHz,3.30 GHz,6 MB,65.0 +Intel® Core™ i7-5850EQ Processor,Q2'15,4,3.40 GHz,2.70 GHz,6 MB Intel® Smart Cache,47.0 +Intel® Core™ i7-5850HQ Processor,Q2'15,4,3.60 GHz,2.70 GHz,6 MB,47.0 +Intel® Core™ i7-5950HQ Processor,Q2'15,4,3.80 GHz,2.90 GHz,6 MB,47.0 +Intel® Xeon® Processor E3-1258L v4,Q2'15,4,3.20 GHz,1.80 GHz,6 MB Intel® Smart Cache,47.0 +Intel® Xeon® Processor E3-1265L v4,Q2'15,4,3.30 GHz,2.30 GHz,6 MB,35.0 +Intel® Xeon® Processor E3-1278L v4,Q2'15,4,3.30 GHz,2.00 GHz,6 MB Intel® Smart Cache,47.0 +Intel® Xeon® Processor E3-1285 v4,Q2'15,4,3.80 GHz,3.50 GHz,6 MB,95.0 +Intel® Xeon® Processor E3-1285L v4,Q2'15,4,3.80 GHz,3.40 GHz,6 MB,65.0 +Intel® Xeon® Processor E5-4610 v3,Q2'15,10,1.70 GHz,1.70 GHz,25 MB,105.0 +Intel® Xeon® Processor E5-4650 v3,Q2'15,12,2.80 GHz,2.10 GHz,30 MB,105.0 +Intel® Xeon® Processor E5-4655 v3,Q2'15,6,3.20 GHz,2.90 GHz,30 MB,135.0 +Intel® Xeon® Processor E5-4660 v3,Q2'15,14,2.90 GHz,2.10 GHz,35 MB,120.0 +Intel® Xeon® Processor E5-4669 v3,Q2'15,18,2.90 GHz,2.10 GHz,45 MB,135.0 +Intel® Xeon® Processor E5-4620 v3,Q2'15,10,2.60 GHz,2.00 GHz,25 MB,105.0 +Intel® Xeon® Processor E5-4627 v3,Q2'15,10,3.20 GHz,2.60 GHz,25 MB,135.0 +Intel® Xeon® Processor E5-4640 v3,Q2'15,12,2.60 GHz,1.90 GHz,30 MB,105.0 +Intel® Xeon® Processor E5-4648 v3,Q2'15,12,2.20 GHz,1.70 GHz,30 MB,105.0 +Intel® Xeon® Processor E5-4667 v3,Q2'15,16,2.90 GHz,2.00 GHz,40 MB,135.0 +Intel® Xeon® Processor E7-4809 v3,Q2'15,8,,2.00 GHz,20 MB Last Level Cache,115.0 +Intel® Xeon® Processor E7-4820 v3,Q2'15,10,,1.90 GHz,25 MB Last Level Cache,115.0 +Intel® Xeon® Processor E7-4830 v3,Q2'15,12,2.70 GHz,2.10 GHz,30 MB Last Level Cache,115.0 +Intel® Xeon® Processor E7-4850 v3,Q2'15,14,2.80 GHz,2.20 GHz,35 MB Last Level Cache,115.0 +Intel® Xeon® Processor E7-8860 v3,Q2'15,16,3.20 GHz,2.20 GHz,40 MB Last Level Cache,140.0 +Intel® Xeon® Processor E7-8867 v3,Q2'15,16,3.30 GHz,2.50 GHz,45 MB,165.0 +Intel® Xeon® Processor E7-8870 v3,Q2'15,18,2.90 GHz,2.10 GHz,45 MB Last Level Cache,140.0 +Intel® Xeon® Processor E7-8880 v3,Q2'15,18,3.10 GHz,2.30 GHz,45 MB Last Level Cache,150.0 +Intel® Xeon® Processor E7-8880L v3,Q2'15,18,2.80 GHz,2.00 GHz,45 MB Last Level Cache,115.0 +Intel® Xeon® Processor E7-8890 v3,Q2'15,18,3.30 GHz,2.50 GHz,45 MB Last Level Cache,165.0 +Intel® Xeon® Processor E7-8891 v3,Q2'15,10,3.50 GHz,2.80 GHz,45 MB Last Level Cache,165.0 +Intel® Xeon® Processor E7-8893 v3,Q2'15,4,3.50 GHz,3.20 GHz,45 MB Last Level Cache,140.0 +Intel® Celeron® Processor N3000,Q1'15,2,,1.04 GHz,2 MB L2 Cache,4.0 +Intel® Celeron® Processor N3050,Q1'15,2,,1.60 GHz,2 MB L2 Cache,6.0 +Intel® Celeron® Processor N3150,Q1'15,4,,1.60 GHz,2 MB L2 Cache,6.0 +Intel® Core™ i3-4170 Processor,Q1'15,2,,3.70 GHz,3 MB,54.0 +Intel® Core™ i3-4170T Processor,Q1'15,2,,3.20 GHz,3 MB,35.0 +Intel® Core™ i3-4370T Processor,Q1'15,2,,3.30 GHz,4 MB,35.0 +Intel® Core™ i3-5015U Processor,Q1'15,2,,2.10 GHz,3 MB,15.0 +Intel® Core™ i3-5020U Processor,Q1'15,2,,2.20 GHz,3 MB,15.0 +Intel® Pentium® Processor 3825U,Q1'15,2,,1.90 GHz,2 MB,15.0 +Intel® Pentium® Processor G3260,Q1'15,2,,3.30 GHz,3 MB,53.0 +Intel® Pentium® Processor G3260T,Q1'15,2,,2.90 GHz,3 MB,35.0 +Intel® Pentium® Processor G3460T,Q1'15,2,,3.00 GHz,3 MB,35.0 +Intel® Pentium® Processor G3470,Q1'15,2,,3.60 GHz,3 MB,53.0 +Intel® Pentium® Processor N3700,Q1'15,4,,1.60 GHz,2 MB L2 Cache,6.0 +Intel® Xeon® Processor D-1520,Q1'15,4,2.60 GHz,2.20 GHz,6 MB,45.0 +Intel® Xeon® Processor D-1540,Q1'15,8,2.60 GHz,2.00 GHz,12 MB,45.0 +Intel® Xeon® Processor E5-2658A v3,Q1'15,12,2.90 GHz,2.20 GHz,30 MB Intel® Smart Cache,105.0 +Intel® Core™ i7-4720HQ Processor,Q1'15,4,3.60 GHz,2.60 GHz,6 MB,47.0 +Intel® Core™ i7-4722HQ Processor,Q1'15,4,3.40 GHz,2.40 GHz,6 MB,37.0 +Intel® Xeon® Processor E5-1428L v3,Q1'15,8,,2.00 GHz,20 MB,65.0 +Intel® Xeon® Processor E5-2408L v3,Q1'15,4,,1.80 GHz,10 MB,45.0 +Intel® Xeon® Processor E5-2418L v3,Q1'15,6,,2.00 GHz,15 MB,50.0 +Intel® Xeon® Processor E5-2428L v3,Q1'15,8,,1.80 GHz,20 MB,55.0 +Intel® Xeon® Processor E5-2438L v3,Q1'15,10,,1.80 GHz,25 MB,70.0 +Intel® Celeron® Processor 3205U,Q1'15,2,,1.50 GHz,2 MB,15.0 +Intel® Celeron® Processor 3755U,Q1'15,2,,1.70 GHz,2 MB,15.0 +Intel® Core™ i3-5005U Processor,Q1'15,2,,2.00 GHz,3 MB,15.0 +Intel® Core™ i3-5010U Processor,Q1'15,2,,2.10 GHz,3 MB,15.0 +Intel® Core™ i3-5157U Processor,Q1'15,2,,2.50 GHz,3 MB,28.0 +Intel® Core™ i5-5250U Processor,Q1'15,2,2.70 GHz,1.60 GHz,3 MB,15.0 +Intel® Core™ i7-5557U Processor,Q1'15,2,3.40 GHz,3.10 GHz,4 MB,28.0 +Intel® Core™ i7-5650U Processor,Q1'15,2,3.10 GHz,2.20 GHz,4 MB,15.0 +Intel® Pentium® Processor 3805U,Q1'15,2,,1.90 GHz,2 MB,15.0 +Intel® Core™ i5-5200U Processor,Q1'15,2,2.70 GHz,2.20 GHz,3 MB,15.0 +Intel® Core™ i5-5257U Processor,Q1'15,2,3.10 GHz,2.70 GHz,3 MB,28.0 +Intel® Core™ i5-5287U Processor,Q1'15,2,3.30 GHz,2.90 GHz,3 MB,28.0 +Intel® Core™ i5-5300U Processor,Q1'15,2,2.90 GHz,2.30 GHz,3 MB,15.0 +Intel® Core™ i5-5350U Processor,Q1'15,2,2.90 GHz,1.80 GHz,3 MB,15.0 +Intel® Core™ i7-5500U Processor,Q1'15,2,3.00 GHz,2.40 GHz,4 MB,15.0 +Intel® Core™ i7-5550U Processor,Q1'15,2,3.00 GHz,2.00 GHz,4 MB Intel® Smart Cache,15.0 +Intel® Core™ i7-5600U Processor,Q1'15,2,3.20 GHz,2.60 GHz,4 MB,15.0 +Intel® Core™ M-5Y10c Processor,Q4'14,2,2.00 GHz,800 MHz,4 MB,4.5 +Intel® Core™ M-5Y31 Processor,Q4'14,2,2.40 GHz,900 MHz,4 MB,4.5 +Intel® Core™ M-5Y51 Processor,Q4'14,2,2.60 GHz,1.10 GHz,4 MB,4.5 +Intel® Core™ M-5Y71 Processor,Q4'14,2,2.90 GHz,1.20 GHz,4 MB,4.5 +Intel Atom® Processor E3805,Q4'14,2,,1.33 GHz,1 MB L2 Cache,3.0 +Intel® Xeon® Processor E5-1620 v3,Q3'14,4,3.60 GHz,3.50 GHz,10 MB Intel® Smart Cache,140.0 +Intel® Xeon® Processor E5-1630 v3,Q3'14,4,3.80 GHz,3.70 GHz,10 MB Intel® Smart Cache,140.0 +Intel® Xeon® Processor E5-1650 v3,Q3'14,6,3.80 GHz,3.50 GHz,15 MB Intel® Smart Cache,140.0 +Intel® Xeon® Processor E5-1660 v3,Q3'14,8,3.50 GHz,3.00 GHz,20 MB Intel® Smart Cache,140.0 +Intel® Xeon® Processor E5-1680 v3,Q3'14,8,3.80 GHz,3.20 GHz,20 MB Intel® Smart Cache,140.0 +Intel® Xeon® Processor E5-2603 v3,Q3'14,6,,1.60 GHz,15 MB Intel® Smart Cache,85.0 +Intel® Xeon® Processor E5-2608L v3,Q3'14,6,,2.00 GHz,15 MB Intel® Smart Cache,52.0 +Intel® Xeon® Processor E5-2609 v3,Q3'14,6,,1.90 GHz,15 MB Intel® Smart Cache,85.0 +Intel® Xeon® Processor E5-2618L v3,Q3'14,8,3.40 GHz,2.30 GHz,20 MB Intel® Smart Cache,75.0 +Intel® Xeon® Processor E5-2620 v3,Q3'14,6,3.20 GHz,2.40 GHz,15 MB Intel® Smart Cache,85.0 +Intel® Xeon® Processor E5-2623 v3,Q3'14,4,3.50 GHz,3.00 GHz,10 MB Intel® Smart Cache,105.0 +Intel® Xeon® Processor E5-2628L v3,Q3'14,10,2.50 GHz,2.00 GHz,25 MB Intel® Smart Cache,75.0 +Intel® Xeon® Processor E5-2630 v3,Q3'14,8,3.20 GHz,2.40 GHz,20 MB Intel® Smart Cache,85.0 +Intel® Xeon® Processor E5-2630L v3,Q3'14,8,2.90 GHz,1.80 GHz,20 MB Intel® Smart Cache,55.0 +Intel® Xeon® Processor E5-2637 v3,Q3'14,4,3.70 GHz,3.50 GHz,15 MB Intel® Smart Cache,135.0 +Intel® Xeon® Processor E5-2640 v3,Q3'14,8,3.40 GHz,2.60 GHz,20 MB Intel® Smart Cache,90.0 +Intel® Xeon® Processor E5-2643 v3,Q3'14,6,3.70 GHz,3.40 GHz,20 MB Intel® Smart Cache,135.0 +Intel® Xeon® Processor E5-2648L v3,Q3'14,12,2.50 GHz,1.80 GHz,30 MB Intel® Smart Cache,75.0 +Intel® Xeon® Processor E5-2650 v3,Q3'14,10,3.00 GHz,2.30 GHz,25 MB Intel® Smart Cache,105.0 +Intel® Xeon® Processor E5-2650L v3,Q3'14,12,2.50 GHz,1.80 GHz,30 MB Intel® Smart Cache,65.0 +Intel® Xeon® Processor E5-2658 v3,Q3'14,12,2.90 GHz,2.20 GHz,30 MB Intel® Smart Cache,105.0 +Intel® Xeon® Processor E5-2660 v3,Q3'14,10,3.30 GHz,2.60 GHz,25 MB Intel® Smart Cache,105.0 +Intel® Xeon® Processor E5-2667 v3,Q3'14,8,3.60 GHz,3.20 GHz,20 MB Intel® Smart Cache,135.0 +Intel® Xeon® Processor E5-2670 v3,Q3'14,12,3.10 GHz,2.30 GHz,30 MB Intel® Smart Cache,120.0 +Intel® Xeon® Processor E5-2680 v3,Q3'14,12,3.30 GHz,2.50 GHz,30 MB Intel® Smart Cache,120.0 +Intel® Xeon® Processor E5-2683 v3,Q3'14,14,3.00 GHz,2.00 GHz,35 MB Intel® Smart Cache,120.0 +Intel® Xeon® Processor E5-2687W v3,Q3'14,10,3.50 GHz,3.10 GHz,25 MB Intel® Smart Cache,160.0 +Intel® Xeon® Processor E5-2690 v3,Q3'14,12,3.50 GHz,2.60 GHz,30 MB Intel® Smart Cache,135.0 +Intel® Xeon® Processor E5-2695 v3,Q3'14,14,3.30 GHz,2.30 GHz,35 MB Intel® Smart Cache,120.0 +Intel® Xeon® Processor E5-2697 v3,Q3'14,14,3.60 GHz,2.60 GHz,35 MB Intel® Smart Cache,145.0 +Intel® Xeon® Processor E5-2698 v3,Q3'14,16,3.60 GHz,2.30 GHz,40 MB Intel® Smart Cache,135.0 +Intel® Xeon® Processor E5-2699 v3,Q3'14,18,3.60 GHz,2.30 GHz,45 MB Intel® Smart Cache,145.0 +Intel® Core™ M-5Y10 Processor,Q3'14,2,2.00 GHz,800 MHz,4 MB,4.5 +Intel® Core™ M-5Y10a Processor,Q3'14,2,2.00 GHz,800 MHz,4 MB,4.5 +Intel® Core™ M-5Y70 Processor,Q3'14,2,2.60 GHz,1.10 GHz,4 MB,4.5 +Intel® Core™ i7-5930K Processor,Q3'14,6,3.70 GHz,3.50 GHz,15 MB Intel® Smart Cache,140.0 +Intel® Core™ i7-5960X Processor Extreme Edition,Q3'14,8,3.50 GHz,3.00 GHz,20 MB Intel® Smart Cache,140.0 +Intel® Core™ i7-5820K Processor,Q3'14,6,3.60 GHz,3.30 GHz,15 MB Intel® Smart Cache,140.0 +Intel® Celeron® Processor N2808,Q3'14,2,,1.58 GHz,1 MB L2 Cache,4.5 +Intel® Celeron® Processor N2840,Q3'14,2,,2.16 GHz,1 MB L2 Cache,7.5 +Intel® Celeron® Processor N2940,Q3'14,4,,1.83 GHz,2 MB L2 Cache,7.5 +Intel® Core™ i3-4160 Processor,Q3'14,2,,3.60 GHz,3 MB Intel® Smart Cache,54.0 +Intel® Core™ i3-4160T Processor,Q3'14,2,,3.10 GHz,3 MB Intel® Smart Cache,35.0 +Intel® Core™ i3-4360T Processor,Q3'14,2,,3.20 GHz,4 MB Intel® Smart Cache,35.0 +Intel® Core™ i3-4370 Processor,Q3'14,2,,3.80 GHz,4 MB Intel® Smart Cache,54.0 +Intel® Core™ i5-4210H Processor,Q3'14,2,3.50 GHz,2.90 GHz,3 MB Intel® Smart Cache,47.0 +Intel® Core™ i5-4278U Processor,Q3'14,2,3.10 GHz,2.60 GHz,3 MB,28.0 +Intel® Core™ i5-4308U Processor,Q3'14,2,3.30 GHz,2.80 GHz,3 MB,28.0 +Intel® Core™ i7-4578U Processor,Q3'14,2,3.50 GHz,3.00 GHz,4 MB,28.0 +Intel® Core™ i7-4770HQ Processor,Q3'14,4,3.40 GHz,2.20 GHz,6 MB,47.0 +Intel® Core™ i7-4870HQ Processor,Q3'14,4,3.70 GHz,2.50 GHz,6 MB,47.0 +Intel® Core™ i7-4980HQ Processor,Q3'14,4,4.00 GHz,2.80 GHz,6 MB,47.0 +Intel® Pentium® Processor G3250,Q3'14,2,,3.20 GHz,3 MB Intel® Smart Cache,53.0 +Intel® Pentium® Processor G3250T,Q3'14,2,,2.80 GHz,3 MB Intel® Smart Cache,35.0 +Intel® Pentium® Processor G3450T,Q3'14,2,,2.90 GHz,3 MB Intel® Smart Cache,35.0 +Intel® Pentium® Processor G3460,Q3'14,2,,3.50 GHz,3 MB Intel® Smart Cache,53.0 +Intel® Pentium® Processor N3540,Q3'14,4,,2.16 GHz,2 MB L2 Cache,7.5 +Intel® Core™ i5-4690K Processor,Q2'14,4,3.90 GHz,3.50 GHz,6 MB Intel® Smart Cache,88.0 +Intel® Core™ i7-4790K Processor,Q2'14,4,4.40 GHz,4.00 GHz,8 MB Intel® Smart Cache,88.0 +Intel® Pentium® Processor G3258,Q2'14,2,,3.20 GHz,3 MB,53.0 +Intel® Celeron® Processor G1840,Q2'14,2,,2.80 GHz,2 MB,53.0 +Intel® Celeron® Processor G1840T,Q2'14,2,,2.50 GHz,2 MB,35.0 +Intel® Celeron® Processor G1850,Q2'14,2,,2.90 GHz,2 MB,53.0 +Intel® Core™ i5-4460 Processor,Q2'14,4,3.40 GHz,3.20 GHz,6 MB Intel® Smart Cache,84.0 +Intel® Core™ i5-4460S Processor,Q2'14,4,3.40 GHz,2.90 GHz,6 MB Intel® Smart Cache,65.0 +Intel® Core™ i5-4460T Processor,Q2'14,4,2.70 GHz,1.90 GHz,6 MB Intel® Smart Cache,35.0 +Intel® Core™ i5-4590 Processor,Q2'14,4,3.70 GHz,3.30 GHz,6 MB Intel® Smart Cache,84.0 +Intel® Core™ i5-4590S Processor,Q2'14,4,3.70 GHz,3.00 GHz,6 MB Intel® Smart Cache,65.0 +Intel® Core™ i5-4590T Processor,Q2'14,4,3.00 GHz,2.00 GHz,6 MB Intel® Smart Cache,35.0 +Intel® Core™ i5-4690 Processor,Q2'14,4,3.90 GHz,3.50 GHz,6 MB Intel® Smart Cache,84.0 +Intel® Core™ i5-4690S Processor,Q2'14,4,3.90 GHz,3.20 GHz,6 MB Intel® Smart Cache,65.0 +Intel® Core™ i5-4690T Processor,Q2'14,4,3.50 GHz,2.50 GHz,6 MB Intel® Smart Cache,45.0 +Intel® Core™ i7-4785T Processor,Q2'14,4,3.20 GHz,2.20 GHz,8 MB Intel® Smart Cache,35.0 +Intel® Core™ i7-4790 Processor,Q2'14,4,4.00 GHz,3.60 GHz,8 MB Intel® Smart Cache,84.0 +Intel® Core™ i7-4790S Processor,Q2'14,4,4.00 GHz,3.20 GHz,8 MB Intel® Smart Cache,65.0 +Intel® Core™ i7-4790T Processor,Q2'14,4,3.90 GHz,2.70 GHz,8 MB Intel® Smart Cache,45.0 +Intel® Pentium® Processor G3240,Q2'14,2,,3.10 GHz,3 MB Intel® Smart Cache,53.0 +Intel® Pentium® Processor G3240T,Q2'14,2,,2.70 GHz,3 MB Intel® Smart Cache,35.0 +Intel® Pentium® Processor G3440,Q2'14,2,,3.30 GHz,3 MB Intel® Smart Cache,53.0 +Intel® Pentium® Processor G3440T,Q2'14,2,,2.80 GHz,3 MB Intel® Smart Cache,35.0 +Intel® Pentium® Processor G3450,Q2'14,2,,3.40 GHz,3 MB Intel® Smart Cache,53.0 +Intel® Xeon® Processor E3-1240L v3,Q2'14,4,3.00 GHz,2.00 GHz,8 MB Intel® Smart Cache,25.0 +Intel® Xeon® Processor E3-1271 v3,Q2'14,4,4.00 GHz,3.60 GHz,8 MB Intel® Smart Cache,80.0 +Intel® Xeon® Processor E3-1276 v3,Q2'14,4,4.00 GHz,3.60 GHz,8 MB Intel® Smart Cache,84.0 +Intel® Xeon® Processor E3-1281 v3,Q2'14,4,4.10 GHz,3.70 GHz,8 MB Intel® Smart Cache,82.0 +Intel® Xeon® Processor E3-1286 v3,Q2'14,4,4.10 GHz,3.70 GHz,8 MB Intel® Smart Cache,84.0 +Intel® Xeon® Processor E3-1286L v3,Q2'14,4,4.00 GHz,3.20 GHz,8 MB Intel® Smart Cache,65.0 +Intel® Core™ i3-4150 Processor,Q2'14,2,,3.50 GHz,3 MB Intel® Smart Cache,54.0 +Intel® Core™ i3-4150T Processor,Q2'14,2,,3.00 GHz,3 MB Intel® Smart Cache,35.0 +Intel® Core™ i3-4340TE Processor,Q2'14,2,,2.60 GHz,4 MB Intel® Smart Cache,35.0 +Intel® Core™ i3-4350 Processor,Q2'14,2,,3.60 GHz,4 MB Intel® Smart Cache,54.0 +Intel® Core™ i3-4350T Processor,Q2'14,2,,3.10 GHz,4 MB Intel® Smart Cache,35.0 +Intel® Core™ i3-4360 Processor,Q2'14,2,,3.70 GHz,4 MB Intel® Smart Cache,54.0 +Intel® Xeon® Processor E3-1226 v3,Q2'14,4,3.70 GHz,3.30 GHz,8 MB Intel® Smart Cache,84.0 +Intel® Xeon® Processor E3-1231 v3,Q2'14,4,3.80 GHz,3.40 GHz,8 MB Intel® Smart Cache,80.0 +Intel® Xeon® Processor E3-1241 v3,Q2'14,4,3.90 GHz,3.50 GHz,8 MB Intel® Smart Cache,80.0 +Intel® Xeon® Processor E3-1246 v3,Q2'14,4,3.90 GHz,3.50 GHz,8 MB Intel® Smart Cache,84.0 +Intel® Xeon® Processor E3-1275L v3,Q2'14,4,3.90 GHz,2.70 GHz,8 MB Intel® Smart Cache,45.0 +Intel® Celeron® Processor 2970M,Q2'14,2,,2.20 GHz,2 MB Intel® Smart Cache,37.0 +Intel® Core™ i3-4025U Processor,Q2'14,2,,1.90 GHz,3 MB Intel® Smart Cache,15.0 +Intel® Core™ i3-4030U Processor,Q2'14,2,,1.90 GHz,3 MB Intel® Smart Cache,15.0 +Intel® Core™ i3-4030Y Processor,Q2'14,2,,1.60 GHz,3 MB Intel® Smart Cache,11.5 +Intel® Core™ i3-4110E Processor,Q2'14,2,,2.60 GHz,3 MB Intel® Smart Cache,37.0 +Intel® Core™ i3-4110M Processor,Q2'14,2,,2.60 GHz,3 MB Intel® Smart Cache,37.0 +Intel® Core™ i3-4112E Processor,Q2'14,2,,1.80 GHz,3 MB Intel® Smart Cache,25.0 +Intel® Core™ i3-4120U Processor,Q2'14,2,,2.00 GHz,3 MB,15.0 +Intel® Core™ i5-4210M Processor,Q2'14,2,3.20 GHz,2.60 GHz,3 MB Intel® Smart Cache,37.0 +Intel® Core™ i5-4210U Processor,Q2'14,2,2.70 GHz,1.70 GHz,3 MB Intel® Smart Cache,15.0 +Intel® Core™ i5-4220Y Processor,Q2'14,2,2.00 GHz,1.60 GHz,3 MB,11.5 +Intel® Core™ i5-4260U Processor,Q2'14,2,2.70 GHz,1.40 GHz,3 MB Intel® Smart Cache,15.0 +Intel® Core™ i5-4410E Processor,Q2'14,2,,2.90 GHz,3 MB Intel® Smart Cache,37.0 +Intel® Core™ i5-4422E Processor,Q2'14,2,2.90 GHz,1.80 GHz,3 MB Intel® Smart Cache,25.0 +Intel® Core™ i7-4510U Processor,Q2'14,2,3.10 GHz,2.00 GHz,4 MB Intel® Smart Cache,15.0 +Intel® Core™ i7-4710HQ Processor,Q2'14,4,3.50 GHz,2.50 GHz,6 MB Intel® Smart Cache,47.0 +Intel® Core™ i7-4710MQ Processor,Q2'14,4,3.50 GHz,2.50 GHz,6 MB Intel® Smart Cache,47.0 +Intel® Core™ i7-4712HQ Processor,Q2'14,4,3.30 GHz,2.30 GHz,6 MB Intel® Smart Cache,37.0 +Intel® Core™ i7-4712MQ Processor,Q2'14,4,3.30 GHz,2.30 GHz,6 MB Intel® Smart Cache,37.0 +Intel® Core™ i7-4760HQ Processor,Q2'14,4,3.30 GHz,2.10 GHz,6 MB Intel® Smart Cache,47.0 +Intel® Pentium® Processor 3560M,Q2'14,2,,2.40 GHz,2 MB,37.0 +Intel® Quark™ SoC X1001,Q2'14,1,,400 MHz,16 KB,2.2 +Intel® Quark™ SoC X1011,Q2'14,1,,400 MHz,16 KB,2.2 +Intel® Quark™ SoC X1020,Q2'14,1,,400 MHz,16 KB,2.2 +Intel® Quark™ SoC X1021,Q2'14,1,,400 MHz,16 KB,2.2 +Intel® Quark™ SoC X1021D,Q2'14,1,,400 MHz,16 KB,2.2 +Intel® Xeon Phi™ Coprocessor 7120A,Q2'14,61,1.33 GHz,1.24 GHz,30.5 MB L2 Cache,300.0 +Intel® Core™ i5-4402EC Processor,Q1'14,2,,2.50 GHz,4 MB Intel® Smart Cache,27.0 +Intel® Core™ i7-4700EC Processor,Q1'14,4,,2.70 GHz,8 MB Intel® Smart Cache,43.0 +Intel® Core™ i7-4702EC Processor,Q1'14,4,,2.00 GHz,8 MB Intel® Smart Cache,27.0 +Intel Atom® Processor C2308,Q2'14,2,,1.25 GHz,1 MB,6.0 +Intel Atom® Processor C2508,Q2'14,4,,1.25 GHz,2 MB,9.5 +Intel® Xeon Phi™ Coprocessor 7120D,Q1'14,61,1.33 GHz,1.24 GHz,30.5 MB L2 Cache,270.0 +Intel® Xeon® Processor E5-4610 v2,Q1'14,8,2.70 GHz,2.30 GHz,16 MB Intel® Smart Cache,95.0 +Intel® Xeon® Processor E5-4620 v2,Q1'14,8,3.00 GHz,2.60 GHz,20 MB Intel® Smart Cache,95.0 +Intel® Xeon® Processor E5-4627 v2,Q1'14,8,3.60 GHz,3.30 GHz,16 MB Intel® Smart Cache,130.0 +Intel® Xeon® Processor E5-4640 v2,Q1'14,10,2.70 GHz,2.20 GHz,20 MB Intel® Smart Cache,95.0 +Intel® Xeon® Processor E5-4650 v2,Q1'14,10,2.90 GHz,2.40 GHz,25 MB Intel® Smart Cache,95.0 +Intel® Xeon® Processor E5-4657L v2,Q1'14,12,2.90 GHz,2.40 GHz,30 MB Intel® Smart Cache,115.0 +Intel® Xeon® Processor E5-4603 v2,Q1'14,4,2.20 GHz,2.20 GHz,10 MB Intel® Smart Cache,95.0 +Intel® Xeon® Processor E5-4607 v2,Q1'14,6,2.60 GHz,2.60 GHz,15 MB Intel® Smart Cache,95.0 +Intel® Xeon® Processor E5-4624L v2,Q1'14,10,2.50 GHz,1.90 GHz,25 MB Intel® Smart Cache,70.0 +Intel® Celeron® Processor N2807,Q1'14,2,,1.58 GHz,1 MB,4.3 +Intel® Xeon® Processor E7-2850 v2,Q1'14,12,2.80 GHz,2.30 GHz,24 MB,105.0 +Intel® Xeon® Processor E7-2870 v2,Q1'14,15,2.90 GHz,2.30 GHz,30 MB,130.0 +Intel® Xeon® Processor E7-2880 v2,Q1'14,15,3.10 GHz,2.50 GHz,37.5 MB,130.0 +Intel® Xeon® Processor E7-2890 v2,Q1'14,15,3.40 GHz,2.80 GHz,37.5 MB,155.0 +Intel® Xeon® Processor E7-4809 v2,Q1'14,6,,1.90 GHz,12 MB,105.0 +Intel® Xeon® Processor E7-4820 v2,Q1'14,8,2.50 GHz,2.00 GHz,16 MB,105.0 +Intel® Xeon® Processor E7-4830 v2,Q1'14,10,2.70 GHz,2.20 GHz,20 MB,105.0 +Intel® Xeon® Processor E7-4850 v2,Q1'14,12,2.80 GHz,2.30 GHz,24 MB,105.0 +Intel® Xeon® Processor E7-4860 v2,Q1'14,12,3.20 GHz,2.60 GHz,30 MB,130.0 +Intel® Xeon® Processor E7-4870 v2,Q1'14,15,2.90 GHz,2.30 GHz,30 MB,130.0 +Intel® Xeon® Processor E7-4880 v2,Q1'14,15,3.10 GHz,2.50 GHz,37.5 MB,130.0 +Intel® Xeon® Processor E7-4890 v2,Q1'14,15,3.40 GHz,2.80 GHz,37.5 MB,155.0 +Intel® Xeon® Processor E7-8850 v2,Q1'14,12,2.80 GHz,2.30 GHz,24 MB,105.0 +Intel® Xeon® Processor E7-8857 v2,Q1'14,12,3.60 GHz,3.00 GHz,30 MB,130.0 +Intel® Xeon® Processor E7-8870 v2,Q1'14,15,2.90 GHz,2.30 GHz,30 MB,130.0 +Intel® Xeon® Processor E7-8880 v2,Q1'14,15,3.10 GHz,2.50 GHz,37.5 MB,130.0 +Intel® Xeon® Processor E7-8880L v2,Q1'14,15,2.80 GHz,2.20 GHz,37.5 MB,105.0 +Intel® Xeon® Processor E7-8890 v2,Q1'14,15,3.40 GHz,2.80 GHz,37.5 MB,155.0 +Intel® Xeon® Processor E7-8891 v2,Q1'14,10,3.70 GHz,3.20 GHz,37.5 MB,155.0 +Intel® Xeon® Processor E7-8893 v2,Q1'14,6,3.70 GHz,3.40 GHz,37.5 MB,155.0 +Intel® Celeron® Processor N2830,Q1'14,2,,2.16 GHz,1 MB,7.5 +Intel® Celeron® Processor N2930,Q1'14,4,,1.83 GHz,2 MB,7.5 +Intel® Pentium® Processor N3530,Q1'14,4,,2.16 GHz,2 MB,7.5 +Intel® Quark™ SoC X1010,Q1'14,1,,400 MHz,16 KB,2.2 +Intel® Quark™ SoC X1020D,Q1'14,1,,400 MHz,16 KB,2.2 +Intel® Core™ i5-4310M Processor,Q1'14,2,3.40 GHz,2.70 GHz,3 MB Intel® Smart Cache,37.0 +Intel® Core™ i5-4310U Processor,Q1'14,2,3.00 GHz,2.00 GHz,3 MB Intel® Smart Cache,15.0 +Intel® Core™ i5-4340M Processor,Q1'14,2,3.60 GHz,2.90 GHz,3 MB Intel® Smart Cache,37.0 +Intel® Core™ i5-4360U Processor,Q1'14,2,3.00 GHz,1.50 GHz,3 MB Intel® Smart Cache,15.0 +Intel® Core™ i7-4610M Processor,Q1'14,2,3.70 GHz,3.00 GHz,4 MB Intel® Smart Cache,37.0 +Intel® Core™ i7-4810MQ Processor,Q1'14,4,3.80 GHz,2.80 GHz,6 MB Intel® Smart Cache,47.0 +Intel® Core™ i7-4860HQ Processor,Q1'14,4,3.60 GHz,2.40 GHz,6 MB Intel® Smart Cache,47.0 +Intel® Core™ i7-4910MQ Processor,Q1'14,4,3.90 GHz,2.90 GHz,8 MB Intel® Smart Cache,47.0 +Intel® Core™ i7-4940MX Processor Extreme Edition,Q1'14,4,4.00 GHz,3.10 GHz,8 MB Intel® Smart Cache,57.0 +Intel® Pentium® Processor 1405 v2,Q1'14,2,,1.40 GHz,6 MB Intel® Smart Cache,40.0 +Intel® Xeon® Processor E5-1428L v2,Q1'14,6,2.70 GHz,2.20 GHz,15 MB Intel® Smart Cache,60.0 +Intel® Xeon® Processor E5-2403 v2,Q1'14,4,1.80 GHz,1.80 GHz,10 MB Intel® Smart Cache,80.0 +Intel® Xeon® Processor E5-2407 v2,Q1'14,4,2.40 GHz,2.40 GHz,10 MB Intel® Smart Cache,80.0 +Intel® Xeon® Processor E5-2418L v2,Q1'14,6,2.00 GHz,2.00 GHz,15 MB Intel® Smart Cache,50.0 +Intel® Xeon® Processor E5-2420 v2,Q1'14,6,2.70 GHz,2.20 GHz,15 MB Intel® Smart Cache,80.0 +Intel® Xeon® Processor E5-2428L v2,Q1'14,8,2.30 GHz,1.80 GHz,20 MB Intel® Smart Cache,60.0 +Intel® Xeon® Processor E5-2440 v2,Q1'14,8,2.40 GHz,1.90 GHz,20 MB Intel® Smart Cache,95.0 +Intel® Xeon® Processor E5-2448L v2,Q1'14,10,2.40 GHz,1.80 GHz,25 MB Intel® Smart Cache,70.0 +Intel® Xeon® Processor E5-2450 v2,Q1'14,8,3.30 GHz,2.50 GHz,20 MB Intel® Smart Cache,95.0 +Intel® Xeon® Processor E5-2450L v2,Q1'14,10,2.10 GHz,1.70 GHz,25 MB Intel® Smart Cache,60.0 +Intel® Xeon® Processor E5-2470 v2,Q1'14,10,3.20 GHz,2.40 GHz,25 MB Intel® Smart Cache,95.0 +Intel® Xeon® Processor E5-2430 v2,Q1'14,6,3.00 GHz,2.50 GHz,15 MB Intel® Smart Cache,80.0 +Intel® Xeon® Processor E5-2430L v2,Q1'14,6,2.80 GHz,2.40 GHz,15 MB Intel® Smart Cache,60.0 +Intel® Celeron® Processor 2000E,Q1'14,2,,2.20 GHz,2 MB Intel® Smart Cache,37.0 +Intel® Celeron® Processor 2002E,Q1'14,2,,1.50 GHz,2 MB Intel® Smart Cache,25.0 +Intel® Celeron® Processor G1820TE,Q1'14,2,,2.20 GHz,2 MB Intel® Smart Cache,35.0 +Intel® Celeron® Processor G1820,Q1'14,2,,2.70 GHz,2 MB Intel® Smart Cache,53.0 +Intel® Celeron® Processor G1820T,Q1'14,2,,2.40 GHz,2 MB Intel® Smart Cache,35.0 +Intel® Celeron® Processor G1830,Q1'14,2,,2.80 GHz,2 MB Intel® Smart Cache,53.0 +Intel® Celeron® Processor 2957U,Q4'13,2,,1.40 GHz,2 MB Intel® Smart Cache,15.0 +Intel® Celeron® Processor 2961Y,Q4'13,2,,1.10 GHz,2 MB Intel® Smart Cache,11.5 +Intel® Celeron® Processor 2981U,Q4'13,2,,1.60 GHz,2 MB Intel® Smart Cache,15.0 +Intel® Pentium® Processor 3558U,Q4'13,2,,1.70 GHz,2 MB Intel® Smart Cache,15.0 +Intel® Pentium® Processor 3561Y,Q4'13,2,,1.20 GHz,2 MB Intel® Smart Cache,11.5 +Intel® Celeron® Processor J1800,Q4'13,2,,2.41 GHz,1 MB L2 Cache,10.0 +Intel® Celeron® Processor J1900,Q4'13,4,,2.00 GHz,2 MB L2 Cache,10.0 +Intel® Pentium® Processor J2900,Q4'13,4,,2.41 GHz,2 MB L2 Cache,10.0 +Intel® Celeron® Processor N2806,Q4'13,2,,1.60 GHz,1 MB,4.5 +Intel® Celeron® Processor N2815,Q4'13,2,,1.86 GHz,1 MB,7.5 +Intel® Celeron® Processor N2820,Q4'13,2,,2.13 GHz,1 MB,7.5 +Intel® Celeron® Processor N2920,Q4'13,4,,1.86 GHz,2 MB,7.5 +Intel® Pentium® Processor N3520,Q4'13,4,,2.17 GHz,2 MB,7.5 +Intel Atom® Processor E3815,Q4'13,1,,1.46 GHz,512 KB L2 Cache,5.0 +Intel Atom® Processor E3825,Q4'13,2,,1.33 GHz,1 MB L2 Cache,6.0 +Intel Atom® Processor E3826,Q4'13,2,,1.46 GHz,1 MB L2 Cache,7.0 +Intel Atom® Processor E3827,Q4'13,2,,1.75 GHz,1 MB L2 Cache,8.0 +Intel Atom® Processor E3845,Q4'13,4,,1.91 GHz,2 MB L2 Cache,10.0 +Intel® Celeron® Processor J1750,Q3'13,2,,2.41 GHz,1 MB L2 Cache,10.0 +Intel® Celeron® Processor J1850,Q3'13,4,,2.00 GHz,2 MB L2 Cache,10.0 +Intel® Celeron® Processor N2805,Q3'13,2,,1.46 GHz,1 MB,4.3 +Intel® Celeron® Processor N2810,Q3'13,2,,2.00 GHz,1 MB,7.5 +Intel® Celeron® Processor N2910,Q3'13,4,,1.60 GHz,2 MB,7.5 +Intel® Pentium® Processor J2850,Q3'13,4,,2.41 GHz,2 MB L2 Cache,10.0 +Intel® Pentium® Processor N3510,Q3'13,4,,2.00 GHz,2 MB,7.5 +Intel® Quark™ SoC X1000,Q4'13,1,,400 MHz,16 KB,2.2 +Intel® Xeon® Processor E5-1620 v2,Q3'13,4,3.90 GHz,3.70 GHz,10 MB Intel® Smart Cache,130.0 +Intel® Xeon® Processor E5-1650 v2,Q3'13,6,3.90 GHz,3.50 GHz,12 MB Intel® Smart Cache,130.0 +Intel® Xeon® Processor E5-1660 v2,Q3'13,6,4.00 GHz,3.70 GHz,15 MB Intel® Smart Cache,130.0 +Intel® Xeon® Processor E5-2603 v2,Q3'13,4,,1.80 GHz,10 MB Intel® Smart Cache,80.0 +Intel® Xeon® Processor E5-2609 v2,Q3'13,4,2.50 GHz,2.50 GHz,10 MB Intel® Smart Cache,80.0 +Intel® Xeon® Processor E5-2618L v2,Q3'13,6,2.00 GHz,2.00 GHz,15 MB Intel® Smart Cache,50.0 +Intel® Xeon® Processor E5-2620 v2,Q3'13,6,2.60 GHz,2.10 GHz,15 MB Intel® Smart Cache,80.0 +Intel® Xeon® Processor E5-2630 v2,Q3'13,6,3.10 GHz,2.60 GHz,15 MB Intel® Smart Cache,80.0 +Intel® Xeon® Processor E5-2630L v2,Q3'13,6,2.80 GHz,2.40 GHz,15 MB Intel® Smart Cache,60.0 +Intel® Xeon® Processor E5-2637 v2,Q3'13,4,3.80 GHz,3.50 GHz,15 MB Intel® Smart Cache,130.0 +Intel® Xeon® Processor E5-2667 v2,Q3'13,8,4.00 GHz,3.30 GHz,25 MB Intel® Smart Cache,130.0 +Intel® Xeon® Processor E5-2670 v2,Q3'13,10,3.30 GHz,2.50 GHz,25 MB Intel® Smart Cache,115.0 +Intel® Xeon® Processor E5-2680 v2,Q3'13,10,3.60 GHz,2.80 GHz,25 MB Intel® Smart Cache,115.0 +Intel® Xeon® Processor E5-2690 v2,Q3'13,10,3.60 GHz,3.00 GHz,25 MB Intel® Smart Cache,130.0 +Intel® Xeon® Processor E5-2695 v2,Q3'13,12,3.20 GHz,2.40 GHz,30 MB Intel® Smart Cache,115.0 +Intel® Xeon® Processor E5-2697 v2,Q3'13,12,3.50 GHz,2.70 GHz,30 MB Intel® Smart Cache,130.0 +Intel® Core™ i7-4820K Processor,Q3'13,4,3.90 GHz,3.70 GHz,10 MB Intel® Smart Cache,130.0 +Intel® Core™ i7-4930K Processor,Q3'13,6,3.90 GHz,3.40 GHz,12 MB Intel® Smart Cache,130.0 +Intel® Core™ i7-4960X Processor Extreme Edition,Q3'13,6,4.00 GHz,3.60 GHz,15 MB Intel® Smart Cache,130.0 +Intel® Xeon® Processor E3-1105C v2,Q3'13,4,,1.80 GHz,8 MB L3 Cache,25.0 +Intel® Xeon® Processor E3-1125C v2,Q3'13,4,,2.50 GHz,8 MB L3 Cache,40.0 +Intel® Xeon® Processor E5-2628L v2,Q3'13,8,2.40 GHz,1.90 GHz,20 MB Intel® Smart Cache,70.0 +Intel® Xeon® Processor E5-2640 v2,Q3'13,8,2.50 GHz,2.00 GHz,20 MB Intel® Smart Cache,95.0 +Intel® Xeon® Processor E5-2643 v2,Q3'13,6,3.80 GHz,3.50 GHz,25 MB Intel® Smart Cache,130.0 +Intel® Xeon® Processor E5-2648L v2,Q3'13,10,2.50 GHz,1.90 GHz,25 MB Intel® Smart Cache,70.0 +Intel® Xeon® Processor E5-2650 v2,Q3'13,8,3.40 GHz,2.60 GHz,20 MB Intel® Smart Cache,95.0 +Intel® Xeon® Processor E5-2650L v2,Q3'13,10,2.10 GHz,1.70 GHz,25 MB Intel® Smart Cache,70.0 +Intel® Xeon® Processor E5-2658 v2,Q3'13,10,3.00 GHz,2.40 GHz,25 MB Intel® Smart Cache,95.0 +Intel® Xeon® Processor E5-2660 v2,Q3'13,10,3.00 GHz,2.20 GHz,25 MB Intel® Smart Cache,95.0 +Intel® Xeon® Processor E5-2687W v2,Q3'13,8,4.00 GHz,3.40 GHz,25 MB Intel® Smart Cache,150.0 +Intel Atom® Processor C2338,Q3'13,2,2.00 GHz,1.70 GHz,1 MB,7.0 +Intel Atom® Processor C2350,Q3'13,2,2.00 GHz,1.70 GHz,1 MB,6.0 +Intel Atom® Processor C2358,Q3'13,2,2.00 GHz,1.70 GHz,1 MB,7.0 +Intel Atom® Processor C2518,Q3'13,4,,1.70 GHz,2 MB,13.0 +Intel Atom® Processor C2530,Q3'13,4,2.40 GHz,1.70 GHz,2 MB,9.0 +Intel Atom® Processor C2538,Q3'13,4,,2.40 GHz,2 MB,15.0 +Intel Atom® Processor C2550,Q3'13,4,2.60 GHz,2.40 GHz,2 MB,14.0 +Intel Atom® Processor C2558,Q3'13,4,,2.40 GHz,2 MB,15.0 +Intel Atom® Processor C2718,Q3'13,8,,2.00 GHz,4 MB,18.0 +Intel Atom® Processor C2730,Q3'13,8,2.40 GHz,1.70 GHz,4 MB,12.0 +Intel Atom® Processor C2738,Q3'13,8,,2.40 GHz,4 MB,20.0 +Intel Atom® Processor C2750,Q3'13,8,2.60 GHz,2.40 GHz,4 MB,20.0 +Intel Atom® Processor C2758,Q3'13,8,,2.40 GHz,4 MB,20.0 +Intel® Celeron® Processor 2955U,Q3'13,2,,1.40 GHz,2 MB Intel® Smart Cache,15.0 +Intel® Core™ i3-4000M Processor,Q4'13,2,,2.40 GHz,3 MB Intel® Smart Cache,37.0 +Intel® Core™ i3-4005U Processor,Q3'13,2,,1.70 GHz,3 MB Intel® Smart Cache,15.0 +Intel® Core™ i3-4012Y Processor,Q3'13,2,,1.50 GHz,3 MB Intel® Smart Cache,11.5 +Intel® Core™ i3-4020Y Processor,Q3'13,2,,1.50 GHz,3 MB Intel® Smart Cache,11.5 +Intel® Core™ i3-4130 Processor,Q3'13,2,,3.40 GHz,3 MB Intel® Smart Cache,54.0 +Intel® Core™ i3-4130T Processor,Q3'13,2,,2.90 GHz,3 MB Intel® Smart Cache,35.0 +Intel® Core™ i3-4330 Processor,Q3'13,2,,3.50 GHz,4 MB Intel® Smart Cache,54.0 +Intel® Core™ i3-4330T Processor,Q3'13,2,,3.00 GHz,4 MB Intel® Smart Cache,35.0 +Intel® Core™ i3-4330TE Processor,Q3'13,2,,2.40 GHz,4 MB Intel® Smart Cache,35.0 +Intel® Core™ i3-4340 Processor,Q3'13,2,,3.60 GHz,4 MB Intel® Smart Cache,54.0 +Intel® Core™ i5-4200M Processor,Q4'13,2,3.10 GHz,2.50 GHz,3 MB Intel® Smart Cache,37.0 +Intel® Core™ i5-4202Y Processor,Q3'13,2,2.00 GHz,1.60 GHz,3 MB Intel® Smart Cache,11.5 +Intel® Core™ i5-4210Y Processor,Q3'13,2,1.90 GHz,1.50 GHz,3 MB Intel® Smart Cache,11.5 +Intel® Core™ i5-4300M Processor,Q4'13,2,3.30 GHz,2.60 GHz,3 MB Intel® Smart Cache,37.0 +Intel® Core™ i5-4330M Processor,Q4'13,2,3.50 GHz,2.80 GHz,3 MB Intel® Smart Cache,37.0 +Intel® Core™ i7-4600M Processor,Q4'13,2,3.60 GHz,2.90 GHz,4 MB Intel® Smart Cache,37.0 +Intel® Core™ i7-4771 Processor,Q3'13,4,3.90 GHz,3.50 GHz,8 MB Intel® Smart Cache,84.0 +Intel® Pentium® Processor G3220,Q3'13,2,,3.00 GHz,3 MB Intel® Smart Cache,53.0 +Intel® Pentium® Processor G3220T,Q3'13,2,,2.60 GHz,3 MB Intel® Smart Cache,35.0 +Intel® Pentium® Processor G3420,Q3'13,2,,3.20 GHz,3 MB Intel® Smart Cache,53.0 +Intel® Pentium® Processor G3420T,Q3'13,2,,2.70 GHz,3 MB Intel® Smart Cache,35.0 +Intel® Pentium® Processor G3430,Q3'13,2,,3.30 GHz,3 MB Intel® Smart Cache,53.0 +Intel® Celeron® Processor 2950M,Q4'13,2,,2.00 GHz,2 MB Intel® Smart Cache,37.0 +Intel® Celeron® Processor 2980U,Q3'13,2,,1.60 GHz,2 MB Intel® Smart Cache,15.0 +Intel® Celeron® Processor G1620T,Q3'13,2,,2.40 GHz,2 MB Intel® Smart Cache,35.0 +Intel® Celeron® Processor G1630,Q3'13,2,,2.80 GHz,2 MB Intel® Smart Cache,55.0 +Intel® Core™ i3-4100E Processor,Q3'13,2,,2.40 GHz,3 MB Intel® Smart Cache,37.0 +Intel® Core™ i3-4100M Processor,Q4'13,2,,2.50 GHz,3 MB Intel® Smart Cache,37.0 +Intel® Core™ i3-4102E Processor,Q3'13,2,,1.60 GHz,3 MB Intel® Smart Cache,25.0 +Intel® Core™ i5-3340 Processor,Q3'13,4,3.30 GHz,3.10 GHz,6 MB Intel® Smart Cache,77.0 +Intel® Core™ i5-3340S Processor,Q3'13,4,3.30 GHz,2.80 GHz,6 MB Intel® Smart Cache,65.0 +Intel® Core™ i5-4200H Processor,Q4'13,2,3.40 GHz,2.80 GHz,3 MB Intel® Smart Cache,47.0 +Intel® Core™ i5-4300U Processor,Q3'13,2,2.90 GHz,1.90 GHz,3 MB Intel® Smart Cache,15.0 +Intel® Core™ i5-4300Y Processor,Q3'13,2,2.30 GHz,1.60 GHz,3 MB Intel® Smart Cache,11.5 +Intel® Core™ i5-4302Y Processor,Q3'13,2,2.30 GHz,1.60 GHz,3 MB Intel® Smart Cache,11.5 +Intel® Core™ i5-4400E Processor,Q3'13,2,3.30 GHz,2.70 GHz,3 MB Intel® Smart Cache,37.0 +Intel® Core™ i5-4402E Processor,Q3'13,2,2.70 GHz,1.60 GHz,3 MB Intel® Smart Cache,25.0 +Intel® Core™ i5-4440 Processor,Q3'13,4,3.30 GHz,3.10 GHz,6 MB Intel® Smart Cache,84.0 +Intel® Core™ i5-4440S Processor,Q3'13,4,3.30 GHz,2.80 GHz,6 MB Intel® Smart Cache,65.0 +Intel® Core™ i7-4600U Processor,Q3'13,2,3.30 GHz,2.10 GHz,4 MB Intel® Smart Cache,15.0 +Intel® Core™ i7-4610Y Processor,Q3'13,2,2.90 GHz,1.70 GHz,4 MB Intel® Smart Cache,11.5 +Intel® Core™ i7-4960HQ Processor,Q4'13,4,3.80 GHz,2.60 GHz,6 MB Intel® Smart Cache,47.0 +Intel® Pentium® Processor 3550M,Q4'13,2,,2.30 GHz,2 MB Intel® Smart Cache,37.0 +Intel® Pentium® Processor 3556U,Q3'13,2,,1.70 GHz,2 MB Intel® Smart Cache,15.0 +Intel® Pentium® Processor 3560Y,Q3'13,2,,1.20 GHz,2 MB Intel® Smart Cache,11.5 +Intel® Pentium® Processor G3320TE,Q3'13,2,,2.30 GHz,3 MB Intel® Smart Cache,35.0 +Intel® Xeon® Processor E3-1220L v3,Q3'13,2,1.50 GHz,1.10 GHz,4 MB Intel® Smart Cache,13.0 +Intel® Pentium® Processor A1018,Q3'13,2,,2.10 GHz,1 MB Intel® Smart Cache,35.0 +Intel® Xeon Phi™ Coprocessor 3120A,Q2'13,57,,1.10 GHz,28.5 MB L2 Cache,300.0 +Intel® Xeon Phi™ Coprocessor 3120P,Q2'13,57,,1.10 GHz,28.5 MB L2 Cache,300.0 +Intel® Xeon Phi™ Coprocessor 5120D,Q2'13,60,,1.05 GHz,30 MB L2 Cache,245.0 +Intel® Xeon Phi™ Coprocessor 7120P,Q2'13,61,1.33 GHz,1.24 GHz,30.5 MB L2 Cache,300.0 +Intel® Xeon Phi™ Coprocessor 7120X,Q2'13,61,1.33 GHz,1.24 GHz,30.5 MB L2 Cache,300.0 +Intel® Celeron® Processor 1005M,Q3'13,2,,1.90 GHz,2 MB,35.0 +Intel® Celeron® Processor 1017U,Q3'13,2,,1.60 GHz,2 MB,17.0 +Intel® Core™ i3-3245 Processor,Q2'13,2,,3.40 GHz,3 MB Intel® Smart Cache,55.0 +Intel® Core™ i3-3250 Processor,Q2'13,2,,3.50 GHz,3 MB Intel® Smart Cache,55.0 +Intel® Core™ i3-3250T Processor,Q2'13,2,,3.00 GHz,3 MB Intel® Smart Cache,35.0 +Intel® Pentium® Processor 2127U,Q3'13,2,,1.90 GHz,2 MB Intel® Smart Cache,17.0 +Intel® Pentium® Processor G2030,Q2'13,2,,3.00 GHz,3 MB Intel® Smart Cache,55.0 +Intel® Pentium® Processor G2030T,Q2'13,2,,2.60 GHz,3 MB Intel® Smart Cache,35.0 +Intel® Pentium® Processor G2120T,Q2'13,2,,2.70 GHz,3 MB Intel® Smart Cache,35.0 +Intel® Pentium® Processor G2140,Q2'13,2,,3.30 GHz,3 MB Intel® Smart Cache,55.0 +Intel® Core™ i7-4750HQ Processor,Q3'13,4,3.20 GHz,2.00 GHz,6 MB Intel® Smart Cache,47.0 +Intel® Core™ i7-4850HQ Processor,Q3'13,4,3.50 GHz,2.30 GHz,6 MB Intel® Smart Cache,47.0 +Intel® Core™ i7-4950HQ Processor,Q3'13,4,3.60 GHz,2.40 GHz,6 MB Intel® Smart Cache,47.0 +Intel® Core™ i5-4200U Processor,Q3'13,2,2.60 GHz,1.60 GHz,3 MB Intel® Smart Cache,15.0 +Intel® Core™ i5-4570R Processor,Q2'13,4,3.20 GHz,2.70 GHz,4 MB Intel® Smart Cache,65.0 +Intel® Core™ i5-4670R Processor,Q2'13,4,3.70 GHz,3.00 GHz,4 MB Intel® Smart Cache,65.0 +Intel® Core™ i7-4500U Processor,Q3'13,2,3.00 GHz,1.80 GHz,4 MB Intel® Smart Cache,15.0 +Intel® Core™ i7-4650U Processor,Q3'13,2,3.30 GHz,1.70 GHz,4 MB Intel® Smart Cache,15.0 +Intel® Core™ i7-4770R Processor,Q2'13,4,3.90 GHz,3.20 GHz,6 MB Intel® Smart Cache,65.0 +Intel® Core™ i3-4010U Processor,Q3'13,2,,1.70 GHz,3 MB Intel® Smart Cache,15.0 +Intel® Core™ i3-4010Y Processor,Q3'13,2,,1.30 GHz,3 MB Intel® Smart Cache,11.5 +Intel® Core™ i3-4100U Processor,Q3'13,2,,1.80 GHz,3 MB Intel® Smart Cache,15.0 +Intel® Core™ i3-4158U Processor,Q3'13,2,,2.00 GHz,3 MB Intel® Smart Cache,28.0 +Intel® Core™ i5-4200Y Processor,Q3'13,2,1.90 GHz,1.40 GHz,3 MB Intel® Smart Cache,11.5 +Intel® Core™ i5-4250U Processor,Q3'13,2,2.60 GHz,1.30 GHz,3 MB Intel® Smart Cache,15.0 +Intel® Core™ i5-4258U Processor,Q3'13,2,2.90 GHz,2.40 GHz,3 MB Intel® Smart Cache,28.0 +Intel® Core™ i5-4288U Processor,Q3'13,2,3.10 GHz,2.60 GHz,3 MB Intel® Smart Cache,28.0 +Intel® Core™ i5-4350U Processor,Q3'13,2,2.90 GHz,1.40 GHz,3 MB Intel® Smart Cache,15.0 +Intel® Core™ i7-4550U Processor,Q3'13,2,3.00 GHz,1.50 GHz,4 MB Intel® Smart Cache,15.0 +Intel® Core™ i7-4558U Processor,Q3'13,2,3.30 GHz,2.80 GHz,4 MB Intel® Smart Cache,28.0 +Intel® Core™ i5-4430 Processor,Q2'13,4,3.20 GHz,3.00 GHz,6 MB Intel® Smart Cache,84.0 +Intel® Core™ i5-4430S Processor,Q2'13,4,3.20 GHz,2.70 GHz,6 MB Intel® Smart Cache,65.0 +Intel® Core™ i5-4570 Processor,Q2'13,4,3.60 GHz,3.20 GHz,6 MB Intel® Smart Cache,84.0 +Intel® Core™ i5-4570S Processor,Q2'13,4,3.60 GHz,2.90 GHz,6 MB Intel® Smart Cache,65.0 +Intel® Core™ i5-4570T Processor,Q2'13,2,3.60 GHz,2.90 GHz,4 MB Intel® Smart Cache,35.0 +Intel® Core™ i5-4570TE Processor,Q2'13,2,3.30 GHz,2.70 GHz,4 MB Intel® Smart Cache,35.0 +Intel® Core™ i5-4670 Processor,Q2'13,4,3.80 GHz,3.40 GHz,6 MB Intel® Smart Cache,84.0 +Intel® Core™ i5-4670K Processor,Q2'13,4,3.80 GHz,3.40 GHz,6 MB Intel® Smart Cache,84.0 +Intel® Core™ i5-4670S Processor,Q2'13,4,3.80 GHz,3.10 GHz,6 MB Intel® Smart Cache,65.0 +Intel® Core™ i5-4670T Processor,Q2'13,4,3.30 GHz,2.30 GHz,6 MB Intel® Smart Cache,45.0 +Intel® Core™ i7-4700EQ Processor,Q2'13,4,3.40 GHz,2.40 GHz,6 MB Intel® Smart Cache,47.0 +Intel® Core™ i7-4700HQ Processor,Q2'13,4,3.40 GHz,2.40 GHz,6 MB Intel® Smart Cache,47.0 +Intel® Core™ i7-4700MQ Processor,Q2'13,4,3.40 GHz,2.40 GHz,6 MB Intel® Smart Cache,47.0 +Intel® Core™ i7-4702HQ Processor,Q2'13,4,3.20 GHz,2.20 GHz,6 MB Intel® Smart Cache,37.0 +Intel® Core™ i7-4702MQ Processor,Q2'13,4,3.20 GHz,2.20 GHz,6 MB Intel® Smart Cache,37.0 +Intel® Core™ i7-4765T Processor,Q2'13,4,3.00 GHz,2.00 GHz,8 MB Intel® Smart Cache,35.0 +Intel® Core™ i7-4770 Processor,Q2'13,4,3.90 GHz,3.40 GHz,8 MB Intel® Smart Cache,84.0 +Intel® Core™ i7-4770K Processor,Q2'13,4,3.90 GHz,3.50 GHz,8 MB Intel® Smart Cache,84.0 +Intel® Core™ i7-4770S Processor,Q2'13,4,3.90 GHz,3.10 GHz,8 MB Intel® Smart Cache,65.0 +Intel® Core™ i7-4770T Processor,Q2'13,4,3.70 GHz,2.50 GHz,8 MB Intel® Smart Cache,45.0 +Intel® Core™ i7-4770TE Processor,Q2'13,4,3.30 GHz,2.30 GHz,8 MB Intel® Smart Cache,45.0 +Intel® Core™ i7-4800MQ Processor,Q2'13,4,3.70 GHz,2.70 GHz,6 MB Intel® Smart Cache,47.0 +Intel® Core™ i7-4900MQ Processor,Q2'13,4,3.80 GHz,2.80 GHz,8 MB Intel® Smart Cache,47.0 +Intel® Core™ i7-4930MX Processor Extreme Edition,Q2'13,4,3.90 GHz,3.00 GHz,8 MB Intel® Smart Cache,57.0 +Intel® Xeon® Processor E3-1220 v3,Q2'13,4,3.50 GHz,3.10 GHz,8 MB Intel® Smart Cache,80.0 +Intel® Xeon® Processor E3-1225 v3,Q2'13,4,3.60 GHz,3.20 GHz,8 MB Intel® Smart Cache,84.0 +Intel® Xeon® Processor E3-1230 v3,Q2'13,4,3.70 GHz,3.30 GHz,8 MB Intel® Smart Cache,80.0 +Intel® Xeon® Processor E3-1230L v3,Q2'13,4,2.80 GHz,1.80 GHz,8 MB Intel® Smart Cache,25.0 +Intel® Xeon® Processor E3-1240 v3,Q2'13,4,3.80 GHz,3.40 GHz,8 MB Intel® Smart Cache,80.0 +Intel® Xeon® Processor E3-1245 v3,Q2'13,4,3.80 GHz,3.40 GHz,8 MB Intel® Smart Cache,84.0 +Intel® Xeon® Processor E3-1265L v3,Q2'13,4,3.70 GHz,2.50 GHz,8 MB Intel® Smart Cache,45.0 +Intel® Xeon® Processor E3-1268L v3,Q2'13,4,3.30 GHz,2.30 GHz,8 MB Intel® Smart Cache,45.0 +Intel® Xeon® Processor E3-1270 v3,Q2'13,4,3.90 GHz,3.50 GHz,8 MB Intel® Smart Cache,80.0 +Intel® Xeon® Processor E3-1275 v3,Q2'13,4,3.90 GHz,3.50 GHz,8 MB Intel® Smart Cache,84.0 +Intel® Xeon® Processor E3-1280 v3,Q2'13,4,4.00 GHz,3.60 GHz,8 MB Intel® Smart Cache,82.0 +Intel® Xeon® Processor E3-1285 v3,Q2'13,4,4.00 GHz,3.60 GHz,8 MB Intel® Smart Cache,84.0 +Intel® Xeon® Processor E3-1285L v3,Q2'13,4,3.90 GHz,3.10 GHz,8 MB Intel® Smart Cache,65.0 +Intel® Celeron® Processor 1019Y,Q2'13,2,,1.00 GHz,2 MB,10.0 +Intel® Core™ i5-3230M Processor,Q1'13,2,3.20 GHz,2.60 GHz,3 MB Intel® Smart Cache,35.0 +Intel® Celeron® Processor 1000M,Q1'13,2,,1.80 GHz,2 MB Intel® Smart Cache,35.0 +Intel® Celeron® Processor 1007U,Q1'13,2,,1.50 GHz,2 MB Intel® Smart Cache,17.0 +Intel® Celeron® Processor 1020E,Q1'13,2,,2.20 GHz,2 MB Intel® Smart Cache,35.0 +Intel® Celeron® Processor 1020M,Q1'13,2,,2.10 GHz,2 MB Intel® Smart Cache,35.0 +Intel® Celeron® Processor 1037U,Q1'13,2,,1.80 GHz,2 MB Intel® Smart Cache,17.0 +Intel® Celeron® Processor 1047UE,Q1'13,2,,1.40 GHz,2 MB Intel® Smart Cache,17.0 +Intel® Celeron® Processor G1610,Q1'13,2,,2.60 GHz,2 MB Intel® Smart Cache,55.0 +Intel® Celeron® Processor G1610T,Q1'13,2,,2.30 GHz,2 MB Intel® Smart Cache,35.0 +Intel® Celeron® Processor G1620,Q1'13,2,,2.70 GHz,2 MB Intel® Smart Cache,55.0 +Intel® Core™ i3-3130M Processor,Q1'13,2,,2.60 GHz,3 MB Intel® Smart Cache,35.0 +Intel® Core™ i3-3210 Processor,Q1'13,2,,3.20 GHz,3 MB Intel® Smart Cache,55.0 +Intel® Core™ i3-3227U Processor,Q1'13,2,,1.90 GHz,3 MB Intel® Smart Cache,17.0 +Intel® Core™ i5-3337U Processor,Q1'13,2,2.70 GHz,1.80 GHz,3 MB Intel® Smart Cache,17.0 +Intel® Core™ i5-3340M Processor,Q1'13,2,3.40 GHz,2.70 GHz,3 MB Intel® Smart Cache,35.0 +Intel® Core™ i5-3380M Processor,Q1'13,2,3.60 GHz,2.90 GHz,3 MB Intel® Smart Cache,35.0 +Intel® Core™ i5-3437U Processor,Q1'13,2,2.90 GHz,1.90 GHz,3 MB Intel® Smart Cache,17.0 +Intel® Core™ i7-3537U Processor,Q1'13,2,3.10 GHz,2.00 GHz,4 MB Intel® Smart Cache,17.0 +Intel® Core™ i7-3540M Processor,Q1'13,2,3.70 GHz,3.00 GHz,4 MB Intel® Smart Cache,35.0 +Intel® Core™ i7-3687U Processor,Q1'13,2,3.30 GHz,2.10 GHz,4 MB Intel® Smart Cache,17.0 +Intel® Pentium® Processor 2030M,Q1'13,2,,2.50 GHz,2 MB Intel® Smart Cache,35.0 +Intel® Pentium® Processor G2010,Q1'13,2,,2.80 GHz,3 MB Intel® Smart Cache,55.0 +Intel® Pentium® Processor G2020,Q1'13,2,,2.90 GHz,3 MB Intel® Smart Cache,55.0 +Intel® Pentium® Processor G2020T,Q1'13,2,,2.50 GHz,3 MB Intel® Smart Cache,35.0 +Intel® Pentium® Processor G2130,Q1'13,2,,3.20 GHz,3 MB Intel® Smart Cache,55.0 +Intel® Core™ i3-3229Y Processor,Q1'13,2,,1.40 GHz,3 MB,13.0 +Intel® Core™ i5-3339Y Processor,Q1'13,2,2.00 GHz,1.50 GHz,3 MB,13.0 +Intel® Core™ i5-3439Y Processor,Q1'13,2,2.30 GHz,1.50 GHz,3 MB,13.0 +Intel® Core™ i7-3689Y Processor,Q1'13,2,2.60 GHz,1.50 GHz,4 MB,13.0 +Intel® Pentium® Processor 2129Y,Q1'13,2,,1.10 GHz,2 MB Intel® Smart Cache,10.0 +Intel® Core™ i3-2348M Processor,Q1'13,2,,2.30 GHz,3 MB Intel® Smart Cache,35.0 +Intel® Core™ i3-2375M Processor,Q1'13,2,,1.50 GHz,3 MB Intel® Smart Cache,17.0 +Intel Atom® Processor S1220,Q4'12,2,,1.60 GHz,1 MB,8.1 +Intel Atom® Processor S1240,Q4'12,2,,1.60 GHz,1 MB,6.1 +Intel Atom® Processor S1260,Q4'12,2,,2.00 GHz,1 MB,8.5 +Intel® Core™ i7-3970X Processor Extreme Edition,Q4'12,6,4.00 GHz,3.50 GHz,15 MB Intel® Smart Cache,150.0 +Intel® Xeon Phi™ Coprocessor 5110P,Q4'12,60,,1.05 GHz,30 MB L2 Cache,225.0 +Intel® Itanium® Processor 9520,Q4'12,4,,1.73 GHz,20 MB,130.0 +Intel® Itanium® Processor 9540,Q4'12,8,,2.13 GHz,24 MB,170.0 +Intel® Itanium® Processor 9550,Q4'12,4,,2.40 GHz,32 MB,170.0 +Intel® Itanium® Processor 9560,Q4'12,8,,2.53 GHz,32 MB,170.0 +Intel® Core™ i3-3120M Processor,Q3'12,2,,2.50 GHz,3 MB Intel® Smart Cache,35.0 +Intel® Core™ i7-3630QM Processor,Q3'12,4,3.40 GHz,2.40 GHz,6 MB Intel® Smart Cache,45.0 +Intel® Core™ i7-3632QM Processor,Q3'12,4,3.20 GHz,2.20 GHz,6 MB Intel® Smart Cache,35.0 +Intel® Core™ i7-3635QM Processor,Q3'12,4,3.40 GHz,2.40 GHz,6 MB Intel® Smart Cache,45.0 +Intel® Core™ i7-3840QM Processor,Q3'12,4,3.80 GHz,2.80 GHz,8 MB Intel® Smart Cache,45.0 +Intel® Core™ i7-3940XM Processor Extreme Edition,Q3'12,4,3.90 GHz,3.00 GHz,8 MB Intel® Smart Cache,55.0 +Intel® Pentium® Processor 2020M,Q3'12,2,,2.40 GHz,2 MB Intel® Smart Cache,35.0 +Intel® Pentium® Processor 2117U,Q3'12,2,,1.80 GHz,2 MB Intel® Smart Cache,17.0 +Intel® Core™ i7-3740QM Processor,Q3'12,4,3.70 GHz,2.70 GHz,6 MB Intel® Smart Cache,45.0 +Intel® Core™ i3-3220 Processor,Q3'12,2,,3.30 GHz,3 MB Intel® Smart Cache,55.0 +Intel® Core™ i3-3220T Processor,Q3'12,2,,2.80 GHz,3 MB Intel® Smart Cache,35.0 +Intel® Core™ i3-3225 Processor,Q3'12,2,,3.30 GHz,3 MB Intel® Smart Cache,55.0 +Intel® Core™ i3-3240 Processor,Q3'12,2,,3.40 GHz,3 MB Intel® Smart Cache,55.0 +Intel® Core™ i3-3240T Processor,Q3'12,2,,2.90 GHz,3 MB Intel® Smart Cache,35.0 +Intel® Core™ i5-3330 Processor,Q3'12,4,3.20 GHz,3.00 GHz,6 MB Intel® Smart Cache,77.0 +Intel® Core™ i5-3330S Processor,Q3'12,4,3.20 GHz,2.70 GHz,6 MB Intel® Smart Cache,65.0 +Intel® Core™ i5-3350P Processor,Q3'12,4,3.30 GHz,3.10 GHz,6 MB Intel® Smart Cache,69.0 +Intel® Pentium® Processor G2100T,Q3'12,2,,2.60 GHz,3 MB Intel® Smart Cache,35.0 +Intel® Pentium® Processor G2120,Q3'12,2,,3.10 GHz,3 MB Intel® Smart Cache,55.0 +Intel® Core™ i3-2328M Processor,Q3'12,2,,2.20 GHz,3 MB,35.0 +Intel® Core™ i3-2365M Processor,Q3'12,2,,1.40 GHz,3 MB Intel® Smart Cache,17.0 +Intel® Core™ i3-3120ME Processor,Q3'12,2,,2.40 GHz,3 MB Intel® Smart Cache,35.0 +Intel® Core™ i3-3217UE Processor,Q3'12,2,,1.60 GHz,3 MB Intel® Smart Cache,17.0 +Intel® Core™ i3-2377M Processor,Q2'12,2,,1.50 GHz,3 MB Intel® Smart Cache,17.0 +Intel® Core™ i3-3110M Processor,Q2'12,2,,2.40 GHz,3 MB Intel® Smart Cache,35.0 +Intel® Core™ i3-3217U Processor,Q2'12,2,,1.80 GHz,3 MB Intel® Smart Cache,17.0 +Intel® Core™ i5-3610ME Processor,Q2'12,2,3.30 GHz,2.70 GHz,3 MB Intel® Smart Cache,35.0 +Intel® Core™ i7-3517UE Processor,Q2'12,2,2.80 GHz,1.70 GHz,4 MB Intel® Smart Cache,17.0 +Intel® Core™ i7-3555LE Processor,Q2'12,2,3.20 GHz,2.50 GHz,4 MB Intel® Smart Cache,25.0 +Intel® Core™ i5-3210M Processor,Q2'12,2,3.10 GHz,2.50 GHz,3 MB Intel® Smart Cache,35.0 +Intel® Core™ i5-3317U Processor,Q2'12,2,2.60 GHz,1.70 GHz,3 MB Intel® Smart Cache,17.0 +Intel® Core™ i5-3320M Processor,Q2'12,2,3.30 GHz,2.60 GHz,3 MB Intel® Smart Cache,35.0 +Intel® Core™ i5-3360M Processor,Q2'12,2,3.50 GHz,2.80 GHz,3 MB Intel® Smart Cache,35.0 +Intel® Core™ i5-3427U Processor,Q2'12,2,2.80 GHz,1.80 GHz,3 MB Intel® Smart Cache,17.0 +Intel® Core™ i5-3470 Processor,Q2'12,4,3.60 GHz,3.20 GHz,6 MB Intel® Smart Cache,77.0 +Intel® Core™ i5-3470S Processor,Q2'12,4,3.60 GHz,2.90 GHz,6 MB Intel® Smart Cache,65.0 +Intel® Core™ i5-3470T Processor,Q2'12,2,3.60 GHz,2.90 GHz,3 MB Intel® Smart Cache,35.0 +Intel® Core™ i5-3475S Processor,Q2'12,4,3.60 GHz,2.90 GHz,6 MB Intel® Smart Cache,65.0 +Intel® Core™ i5-3570 Processor,Q2'12,4,3.80 GHz,3.40 GHz,6 MB Intel® Smart Cache,77.0 +Intel® Core™ i5-3570S Processor,Q2'12,4,3.80 GHz,3.10 GHz,6 MB Intel® Smart Cache,65.0 +Intel® Core™ i7-3517U Processor,Q2'12,2,3.00 GHz,1.90 GHz,4 MB Intel® Smart Cache,17.0 +Intel® Core™ i7-3520M Processor,Q2'12,2,3.60 GHz,2.90 GHz,4 MB Intel® Smart Cache,35.0 +Intel® Core™ i7-3667U Processor,Q2'12,2,3.20 GHz,2.00 GHz,4 MB Intel® Smart Cache,17.0 +Intel® Xeon® Processor E3-1105C,Q2'12,4,,1.00 GHz,6 MB L3 Cache,25.0 +Intel® Xeon® Processor E3-1125C,Q2'12,4,,2.00 GHz,8 MB L3 Cache,40.0 +Intel® Xeon® Processor E3-1225 v2,Q2'12,4,3.60 GHz,3.20 GHz,8 MB Intel® Smart Cache,77.0 +Intel® Xeon® Processor E3-1230 v2,Q2'12,4,3.70 GHz,3.30 GHz,8 MB Intel® Smart Cache,69.0 +Intel® Xeon® Processor E3-1240 v2,Q2'12,4,3.80 GHz,3.40 GHz,8 MB Intel® Smart Cache,69.0 +Intel® Xeon® Processor E3-1245 v2,Q2'12,4,3.80 GHz,3.40 GHz,8 MB Intel® Smart Cache,77.0 +Intel® Xeon® Processor E3-1265L v2,Q2'12,4,3.50 GHz,2.50 GHz,8 MB Intel® Smart Cache,45.0 +Intel® Xeon® Processor E3-1270 v2,Q2'12,4,3.90 GHz,3.50 GHz,8 MB Intel® Smart Cache,69.0 +Intel® Xeon® Processor E5-2418L,Q2'12,4,2.10 GHz,2.00 GHz,10 MB Intel® Smart Cache,50.0 +Intel® Xeon® Processor E5-2428L,Q2'12,6,2.00 GHz,1.80 GHz,15 MB Intel® Smart Cache,60.0 +Intel® Xeon® Processor E5-2448L,Q2'12,8,2.10 GHz,1.80 GHz,20 MB Intel® Smart Cache,70.0 +Intel® Xeon® Processor E5-4607,Q2'12,6,,2.20 GHz,12 MB Intel® Smart Cache,95.0 +Intel® Xeon® Processor E5-4610,Q2'12,6,2.90 GHz,2.40 GHz,15 MB Intel® Smart Cache,95.0 +Intel® Xeon® Processor E5-4640,Q2'12,8,2.80 GHz,2.40 GHz,20 MB Intel® Smart Cache,95.0 +Intel® Pentium® Processor 1405,Q2'12,2,1.80 GHz,1.20 GHz,5 MB Intel® Smart Cache,40.0 +Intel® Xeon® Processor E3-1220 v2,Q2'12,4,3.50 GHz,3.10 GHz,8 MB Intel® Smart Cache,69.0 +Intel® Xeon® Processor E3-1220L v2,Q2'12,2,3.50 GHz,2.30 GHz,3 MB Intel® Smart Cache,17.0 +Intel® Xeon® Processor E3-1275 v2,Q2'12,4,3.90 GHz,3.50 GHz,8 MB Intel® Smart Cache,77.0 +Intel® Xeon® Processor E3-1280 v2,Q2'12,4,4.00 GHz,3.60 GHz,8 MB Intel® Smart Cache,69.0 +Intel® Xeon® Processor E3-1290 v2,Q2'12,4,4.10 GHz,3.70 GHz,8 MB Intel® Smart Cache,87.0 +Intel® Xeon® Processor E5-1428L,Q2'12,6,,1.80 GHz,15 MB L3 Cache,60.0 +Intel® Xeon® Processor E5-2403,Q2'12,4,,1.80 GHz,10 MB Intel® Smart Cache,80.0 +Intel® Xeon® Processor E5-2407,Q2'12,4,,2.20 GHz,10 MB Intel® Smart Cache,80.0 +Intel® Xeon® Processor E5-2420,Q2'12,6,2.40 GHz,1.90 GHz,15 MB Intel® Smart Cache,95.0 +Intel® Xeon® Processor E5-2430,Q2'12,6,2.70 GHz,2.20 GHz,15 MB Intel® Smart Cache,95.0 +Intel® Xeon® Processor E5-2430L,Q2'12,6,2.50 GHz,2.00 GHz,15 MB Intel® Smart Cache,60.0 +Intel® Xeon® Processor E5-2440,Q2'12,6,2.90 GHz,2.40 GHz,15 MB Intel® Smart Cache,95.0 +Intel® Xeon® Processor E5-2450,Q2'12,8,2.90 GHz,2.10 GHz,20 MB Intel® Smart Cache,95.0 +Intel® Xeon® Processor E5-2450L,Q2'12,8,2.30 GHz,1.80 GHz,20 MB Intel® Smart Cache,70.0 +Intel® Xeon® Processor E5-2470,Q2'12,8,3.10 GHz,2.30 GHz,20 MB Intel® Smart Cache,95.0 +Intel® Xeon® Processor E5-4603,Q2'12,4,,2.00 GHz,10 MB Intel® Smart Cache,95.0 +Intel® Xeon® Processor E5-4617,Q2'12,6,3.40 GHz,2.90 GHz,15 MB Intel® Smart Cache,130.0 +Intel® Xeon® Processor E5-4620,Q2'12,8,2.60 GHz,2.20 GHz,16 MB Intel® Smart Cache,95.0 +Intel® Xeon® Processor E5-4650,Q2'12,8,3.30 GHz,2.70 GHz,20 MB Intel® Smart Cache,130.0 +Intel® Xeon® Processor E5-4650L,Q2'12,8,3.10 GHz,2.60 GHz,20 MB Intel® Smart Cache,115.0 +Intel® Core™ i5-3450 Processor,Q2'12,4,3.50 GHz,3.10 GHz,6 MB Intel® Smart Cache,77.0 +Intel® Core™ i5-3450S Processor,Q2'12,4,3.50 GHz,2.80 GHz,6 MB Intel® Smart Cache,65.0 +Intel® Core™ i5-3550 Processor,Q2'12,4,3.70 GHz,3.30 GHz,6 MB Intel® Smart Cache,77.0 +Intel® Core™ i5-3550S Processor,Q2'12,4,3.70 GHz,3.00 GHz,6 MB Intel® Smart Cache,65.0 +Intel® Core™ i5-3570K Processor,Q2'12,4,3.80 GHz,3.40 GHz,6 MB Intel® Smart Cache,77.0 +Intel® Core™ i5-3570T Processor,Q2'12,4,3.30 GHz,2.30 GHz,6 MB Intel® Smart Cache,45.0 +Intel® Core™ i7-3610QE Processor,Q2'12,4,3.30 GHz,2.30 GHz,6 MB Intel® Smart Cache,45.0 +Intel® Core™ i7-3610QM Processor,Q2'12,4,3.30 GHz,2.30 GHz,6 MB Intel® Smart Cache,45.0 +Intel® Core™ i7-3612QE Processor,Q2'12,4,3.10 GHz,2.10 GHz,6 MB Intel® Smart Cache,35.0 +Intel® Core™ i7-3612QM Processor,Q2'12,4,3.10 GHz,2.10 GHz,6 MB Intel® Smart Cache,35.0 +Intel® Core™ i7-3615QE Processor,Q2'12,4,3.30 GHz,2.30 GHz,6 MB Intel® Smart Cache,45.0 +Intel® Core™ i7-3615QM Processor,Q2'12,4,3.30 GHz,2.30 GHz,6 MB Intel® Smart Cache,45.0 +Intel® Core™ i7-3720QM Processor,Q2'12,4,3.60 GHz,2.60 GHz,6 MB Intel® Smart Cache,45.0 +Intel® Core™ i7-3770 Processor,Q2'12,4,3.90 GHz,3.40 GHz,8 MB Intel® Smart Cache,77.0 +Intel® Core™ i7-3770K Processor,Q2'12,4,3.90 GHz,3.50 GHz,8 MB Intel® Smart Cache,77.0 +Intel® Core™ i7-3770S Processor,Q2'12,4,3.90 GHz,3.10 GHz,8 MB Intel® Smart Cache,65.0 +Intel® Core™ i7-3770T Processor,Q2'12,4,3.70 GHz,2.50 GHz,8 MB Intel® Smart Cache,45.0 +Intel® Core™ i7-3820QM Processor,Q2'12,4,3.70 GHz,2.70 GHz,8 MB Intel® Smart Cache,45.0 +Intel® Core™ i7-3920XM Processor Extreme Edition,Q2'12,4,3.80 GHz,2.90 GHz,8 MB Intel® Smart Cache,55.0 +Intel® Xeon® Processor E5-1620,Q1'12,4,3.80 GHz,3.60 GHz,10 MB Intel® Smart Cache,130.0 +Intel® Xeon® Processor E5-1650,Q1'12,6,3.80 GHz,3.20 GHz,12 MB Intel® Smart Cache,130.0 +Intel® Xeon® Processor E5-1660,Q1'12,6,3.90 GHz,3.30 GHz,15 MB Intel® Smart Cache,130.0 +Intel® Xeon® Processor E5-2603,Q1'12,4,,1.80 GHz,10 MB Intel® Smart Cache,80.0 +Intel® Xeon® Processor E5-2620,Q1'12,6,2.50 GHz,2.00 GHz,15 MB Intel® Smart Cache,95.0 +Intel® Xeon® Processor E5-2630,Q1'12,6,2.80 GHz,2.30 GHz,15 MB Intel® Smart Cache,95.0 +Intel® Xeon® Processor E5-2640,Q1'12,6,3.00 GHz,2.50 GHz,15 MB Intel® Smart Cache,95.0 +Intel® Xeon® Processor E5-2643,Q1'12,4,3.50 GHz,3.30 GHz,10 MB Intel® Smart Cache,130.0 +Intel® Xeon® Processor E5-2687W,Q1'12,8,3.80 GHz,3.10 GHz,20 MB Intel® Smart Cache,150.0 +Intel® Xeon® Processor E5-2609,Q1'12,4,,2.40 GHz,10 MB Intel® Smart Cache,80.0 +Intel® Xeon® Processor E5-2630L,Q1'12,6,2.50 GHz,2.00 GHz,15 MB Intel® Smart Cache,60.0 +Intel® Xeon® Processor E5-2637,Q1'12,2,3.50 GHz,3.00 GHz,5 MB Intel® Smart Cache,80.0 +Intel® Xeon® Processor E5-2648L,Q1'12,8,2.10 GHz,1.80 GHz,20 MB Intel® Smart Cache,70.0 +Intel® Xeon® Processor E5-2650,Q1'12,8,2.80 GHz,2.00 GHz,20 MB Intel® Smart Cache,95.0 +Intel® Xeon® Processor E5-2650L,Q1'12,8,2.30 GHz,1.80 GHz,20 MB Intel® Smart Cache,70.0 +Intel® Xeon® Processor E5-2658,Q1'12,8,2.40 GHz,2.10 GHz,20 MB Intel® Smart Cache,95.0 +Intel® Xeon® Processor E5-2660,Q1'12,8,3.00 GHz,2.20 GHz,20 MB Intel® Smart Cache,95.0 +Intel® Xeon® Processor E5-2665,Q1'12,8,3.10 GHz,2.40 GHz,20 MB Intel® Smart Cache,115.0 +Intel® Xeon® Processor E5-2667,Q1'12,6,3.50 GHz,2.90 GHz,15 MB Intel® Smart Cache,130.0 +Intel® Xeon® Processor E5-2670,Q1'12,8,3.30 GHz,2.60 GHz,20 MB Intel® Smart Cache,115.0 +Intel® Xeon® Processor E5-2680,Q1'12,8,3.50 GHz,2.70 GHz,20 MB Intel® Smart Cache,130.0 +Intel® Xeon® Processor E5-2690,Q1'12,8,3.80 GHz,2.90 GHz,20 MB Intel® Smart Cache,135.0 +Intel Atom® Processor D2550,Q1'12,2,,1.86 GHz,1 MB L2 Cache,10.0 +Intel® Core™ i7-3820 Processor,Q1'12,4,3.80 GHz,3.60 GHz,10 MB Intel® Smart Cache,130.0 +Intel® Core™ i5-2380P Processor,Q1'12,4,3.40 GHz,3.10 GHz,6 MB Intel® Smart Cache,95.0 +Intel® Core™ i5-2450P Processor,Q1'12,4,3.50 GHz,3.20 GHz,6 MB Intel® Smart Cache,95.0 +Intel® Core™ i5-2550K Processor,Q1'12,4,3.80 GHz,3.40 GHz,6 MB Intel® Smart Cache,95.0 +Intel® Core™ i3-2370M Processor,Q1'12,2,,2.40 GHz,3 MB Intel® Smart Cache,35.0 +Intel® Core™ i5-2450M Processor,Q1'12,2,3.10 GHz,2.50 GHz,3 MB Intel® Smart Cache,35.0 +Intel Atom® Processor N2600,Q4'11,2,,1.60 GHz,1 MB L2 Cache,3.5 +Intel Atom® Processor N2800,Q4'11,2,,1.86 GHz,1 MB L2 Cache,6.5 +Intel® Core™ i7-3930K Processor,Q4'11,6,3.80 GHz,3.20 GHz,12 MB Intel® Smart Cache,130.0 +Intel® Core™ i7-3960X Processor Extreme Edition,Q4'11,6,3.90 GHz,3.30 GHz,15 MB Intel® Smart Cache,130.0 +Intel® Core™ i7-2700K Processor,Q4'11,4,3.90 GHz,3.50 GHz,8 MB Intel® Smart Cache,95.0 +Intel® Core™ i3-2350M Processor,Q4'11,2,,2.30 GHz,3 MB Intel® Smart Cache,35.0 +Intel® Core™ i3-2367M Processor,Q4'11,2,,1.40 GHz,3 MB Intel® Smart Cache,17.0 +Intel® Core™ i5-2430M Processor,Q4'11,2,3.00 GHz,2.40 GHz,3 MB Intel® Smart Cache,35.0 +Intel® Core™ i5-2435M Processor,Q4'11,2,3.00 GHz,2.40 GHz,3 MB Intel® Smart Cache,35.0 +Intel® Core™ i7-2670QM Processor,Q4'11,4,3.10 GHz,2.20 GHz,6 MB Intel® Smart Cache,45.0 +Intel® Core™ i7-2675QM Processor,Q4'11,4,3.10 GHz,2.20 GHz,6 MB Intel® Smart Cache,45.0 +Intel Atom® Processor D2500,Q3'11,2,,1.86 GHz,1 MB L2 Cache,10.0 +Intel Atom® Processor D2700,Q3'11,2,,2.13 GHz,1 MB L2 Cache,10.0 +Intel® Core™ i3-2120T Processor,Q3'11,2,,2.60 GHz,3 MB Intel® Smart Cache,35.0 +Intel® Core™ i3-2125 Processor,Q3'11,2,,3.30 GHz,3 MB Intel® Smart Cache,65.0 +Intel® Core™ i3-2130 Processor,Q3'11,2,,3.40 GHz,3 MB Intel® Smart Cache,65.0 +Intel® Core™ i5-2320 Processor,Q3'11,4,3.30 GHz,3.00 GHz,6 MB Intel® Smart Cache,95.0 +Intel® Core™ i7-2640M Processor,Q4'11,2,3.50 GHz,2.80 GHz,4 MB Intel® Smart Cache,35.0 +Intel® Core™ i7-2760QM Processor,Q4'11,4,3.50 GHz,2.40 GHz,6 MB Intel® Smart Cache,45.0 +Intel® Core™ i7-2860QM Processor,Q4'11,4,3.60 GHz,2.50 GHz,8 MB Intel® Smart Cache,45.0 +Intel® Core™ i7-2960XM Processor Extreme Edition,Q4'11,4,3.70 GHz,2.70 GHz,8 MB Intel® Smart Cache,55.0 +Intel® Xeon® Processor E3-1290,Q3'11,4,4.00 GHz,3.60 GHz,8 MB Intel® Smart Cache,95.0 +Intel® Core™ i3-2330E Processor,Q2'11,2,,2.20 GHz,3 MB Intel® Smart Cache,35.0 +Intel® Core™ i3-2330M Processor,Q2'11,2,,2.20 GHz,3 MB L3 Cache,35.0 +Intel® Core™ i3-2340UE Processor,Q2'11,2,,1.30 GHz,3 MB Intel® Smart Cache,17.0 +Intel® Core™ i3-2357M Processor,Q2'11,2,,1.30 GHz,3 MB L3 Cache,17.0 +Intel® Core™ i5-2467M Processor,Q2'11,2,2.30 GHz,1.60 GHz,3 MB L3 Cache,17.0 +Intel® Core™ i5-2557M Processor,Q2'11,2,2.70 GHz,1.70 GHz,3 MB L3 Cache,17.0 +Intel® Core™ i7-2637M Processor,Q2'11,2,2.80 GHz,1.70 GHz,4 MB L3 Cache,17.0 +Intel® Core™ i7-2677M Processor,Q2'11,2,2.90 GHz,1.80 GHz,4 MB L3 Cache,17.0 +Intel® Core™ i5-2310 Processor,Q2'11,4,3.20 GHz,2.90 GHz,6 MB Intel® Smart Cache,95.0 +Intel® Core™ i5-2405S Processor,Q2'11,4,3.30 GHz,2.50 GHz,6 MB Intel® Smart Cache,65.0 +Intel® Xeon® Processor E3-1220,Q2'11,4,3.40 GHz,3.10 GHz,8 MB Intel® Smart Cache,80.0 +Intel® Xeon® Processor E3-1220L,Q2'11,2,3.40 GHz,2.20 GHz,3 MB Intel® Smart Cache,20.0 +Intel® Xeon® Processor E3-1225,Q2'11,4,3.40 GHz,3.10 GHz,6 MB Intel® Smart Cache,95.0 +Intel® Xeon® Processor E3-1230,Q2'11,4,3.60 GHz,3.20 GHz,8 MB Intel® Smart Cache,80.0 +Intel® Xeon® Processor E3-1235,Q2'11,4,3.60 GHz,3.20 GHz,8 MB Intel® Smart Cache,95.0 +Intel® Xeon® Processor E3-1240,Q2'11,4,3.70 GHz,3.30 GHz,8 MB Intel® Smart Cache,80.0 +Intel® Xeon® Processor E3-1245,Q2'11,4,3.70 GHz,3.30 GHz,8 MB Intel® Smart Cache,95.0 +Intel® Xeon® Processor E3-1260L,Q2'11,4,3.30 GHz,2.40 GHz,8 MB Intel® Smart Cache,45.0 +Intel® Xeon® Processor E3-1270,Q2'11,4,3.80 GHz,3.40 GHz,8 MB Intel® Smart Cache,80.0 +Intel® Xeon® Processor E3-1275,Q2'11,4,3.80 GHz,3.40 GHz,8 MB Intel® Smart Cache,95.0 +Intel® Xeon® Processor E3-1280,Q2'11,4,3.90 GHz,3.50 GHz,8 MB Intel® Smart Cache,95.0 +Intel® Xeon® Processor E7-2803,Q2'11,6,,1.73 GHz,18 MB Intel® Smart Cache,105.0 +Intel® Xeon® Processor E7-2820,Q2'11,8,2.27 GHz,2.00 GHz,18 MB Intel® Smart Cache,105.0 +Intel® Xeon® Processor E7-2830,Q2'11,8,2.40 GHz,2.13 GHz,24 MB Intel® Smart Cache,105.0 +Intel® Xeon® Processor E7-2850,Q2'11,10,2.40 GHz,2.00 GHz,24 MB Intel® Smart Cache,130.0 +Intel® Xeon® Processor E7-2860,Q2'11,10,2.67 GHz,2.26 GHz,24 MB Intel® Smart Cache,130.0 +Intel® Xeon® Processor E7-2870,Q2'11,10,2.80 GHz,2.40 GHz,30 MB Intel® Smart Cache,130.0 +Intel® Xeon® Processor E7-4807,Q2'11,6,,1.86 GHz,18 MB Intel® Smart Cache,95.0 +Intel® Xeon® Processor E7-4820,Q2'11,8,2.27 GHz,2.00 GHz,18 MB Intel® Smart Cache,105.0 +Intel® Xeon® Processor E7-4830,Q2'11,8,2.40 GHz,2.13 GHz,24 MB Intel® Smart Cache,105.0 +Intel® Xeon® Processor E7-4850,Q2'11,10,2.40 GHz,2.00 GHz,24 MB Intel® Smart Cache,130.0 +Intel® Xeon® Processor E7-4860,Q2'11,10,2.67 GHz,2.26 GHz,24 MB Intel® Smart Cache,130.0 +Intel® Xeon® Processor E7-4870,Q2'11,10,2.80 GHz,2.40 GHz,30 MB Intel® Smart Cache,130.0 +Intel® Xeon® Processor E7-8830,Q2'11,8,2.40 GHz,2.13 GHz,24 MB Intel® Smart Cache,105.0 +Intel® Xeon® Processor E7-8837,Q2'11,8,2.80 GHz,2.66 GHz,24 MB Intel® Smart Cache,130.0 +Intel® Xeon® Processor E7-8850,Q2'11,10,2.40 GHz,2.00 GHz,24 MB Intel® Smart Cache,130.0 +Intel® Xeon® Processor E7-8860,Q2'11,10,2.67 GHz,2.26 GHz,24 MB Intel® Smart Cache,130.0 +Intel® Xeon® Processor E7-8867L,Q2'11,10,2.53 GHz,2.13 GHz,30 MB Intel® Smart Cache,105.0 +Intel® Xeon® Processor E7-8870,Q2'11,10,2.80 GHz,2.40 GHz,30 MB Intel® Smart Cache,130.0 +Intel® Core™ i3-2102 Processor,Q2'11,2,,3.10 GHz,3 MB Intel® Smart Cache,65.0 +Intel® Core™ i3-2105 Processor,Q2'11,2,,3.10 GHz,3 MB Intel® Smart Cache,65.0 +Intel® Core™ i3-2312M Processor,Q2'11,2,,2.10 GHz,3 MB Intel® Smart Cache,35.0 +Intel® Core™ i7-2610UE Processor,Q1'11,2,2.40 GHz,1.50 GHz,4 MB Intel® Smart Cache,17.0 +Intel® Core™ i7-2655LE Processor,Q1'11,2,2.90 GHz,2.20 GHz,4 MB Intel® Smart Cache,25.0 +Intel® Core™ i3-2100 Processor,Q1'11,2,,3.10 GHz,3 MB Intel® Smart Cache,65.0 +Intel® Core™ i3-2100T Processor,Q1'11,2,,2.50 GHz,3 MB Intel® Smart Cache,35.0 +Intel® Core™ i3-2120 Processor,Q1'11,2,,3.30 GHz,3 MB Intel® Smart Cache,65.0 +Intel® Core™ i5-2390T Processor,Q1'11,2,3.50 GHz,2.70 GHz,3 MB Intel® Smart Cache,35.0 +Intel® Core™ i5-2510E Processor,Q1'11,2,3.10 GHz,2.50 GHz,3 MB Intel® Smart Cache,35.0 +Intel® Core™ i5-2515E Processor,Q1'11,2,3.10 GHz,2.50 GHz,3 MB Intel® Smart Cache,35.0 +Intel® Core™ i5-2520M Processor,Q1'11,2,3.20 GHz,2.50 GHz,3 MB Intel® Smart Cache,35.0 +Intel® Core™ i5-2537M Processor,Q1'11,2,2.30 GHz,1.40 GHz,3 MB Intel® Smart Cache,17.0 +Intel® Core™ i5-2540M Processor,Q1'11,2,3.30 GHz,2.60 GHz,3 MB Intel® Smart Cache,35.0 +Intel® Core™ i7-2617M Processor,Q1'11,2,2.60 GHz,1.50 GHz,4 MB Intel® Smart Cache,17.0 +Intel® Core™ i7-2620M Processor,Q1'11,2,3.40 GHz,2.70 GHz,4 MB Intel® Smart Cache,35.0 +Intel® Core™ i7-2629M Processor,Q1'11,2,3.00 GHz,2.10 GHz,4 MB Intel® Smart Cache,25.0 +Intel® Core™ i7-2649M Processor,Q1'11,2,3.20 GHz,2.30 GHz,4 MB Intel® Smart Cache,25.0 +Intel® Core™ i7-2657M Processor,Q1'11,2,2.70 GHz,1.60 GHz,4 MB Intel® Smart Cache,17.0 +Intel® Core™ i3-2310M Processor,Q1'11,2,,2.10 GHz,3 MB Intel® Smart Cache,35.0 +Intel® Core™ i5-2410M Processor,Q1'11,2,2.90 GHz,2.30 GHz,3 MB Intel® Smart Cache,35.0 +Intel® Xeon® Processor E5603,Q1'11,4,,1.60 GHz,4 MB Intel® Smart Cache,80.0 +Intel® Xeon® Processor E5606,Q1'11,4,,2.13 GHz,8 MB Intel® Smart Cache,80.0 +Intel® Xeon® Processor E5607,Q1'11,4,,2.26 GHz,8 MB Intel® Smart Cache,80.0 +Intel® Xeon® Processor E5649,Q1'11,6,2.93 GHz,2.53 GHz,12 MB Intel® Smart Cache,80.0 +Intel® Xeon® Processor X5647,Q1'11,4,3.20 GHz,2.93 GHz,12 MB Intel® Smart Cache,130.0 +Intel® Xeon® Processor X5672,Q1'11,4,3.60 GHz,3.20 GHz,12 MB Intel® Smart Cache,95.0 +Intel® Xeon® Processor X5675,Q1'11,6,3.46 GHz,3.06 GHz,12 MB Intel® Smart Cache,95.0 +Intel® Xeon® Processor X5687,Q1'11,4,3.86 GHz,3.60 GHz,12 MB Intel® Smart Cache,130.0 +Intel® Xeon® Processor X5690,Q1'11,6,3.73 GHz,3.46 GHz,12 MB Intel® Smart Cache,130.0 +Intel® Core™ i5-2300 Processor,Q1'11,4,3.10 GHz,2.80 GHz,6 MB Intel® Smart Cache,95.0 +Intel® Core™ i5-2400 Processor,Q1'11,4,3.40 GHz,3.10 GHz,6 MB Intel® Smart Cache,95.0 +Intel® Core™ i5-2400S Processor,Q1'11,4,3.30 GHz,2.50 GHz,6 MB Intel® Smart Cache,65.0 +Intel® Core™ i5-2500 Processor,Q1'11,4,3.70 GHz,3.30 GHz,6 MB Intel® Smart Cache,95.0 +Intel® Core™ i5-2500K Processor,Q1'11,4,3.70 GHz,3.30 GHz,6 MB Intel® Smart Cache,95.0 +Intel® Core™ i5-2500S Processor,Q1'11,4,3.70 GHz,2.70 GHz,6 MB Intel® Smart Cache,65.0 +Intel® Core™ i5-2500T Processor,Q1'11,4,3.30 GHz,2.30 GHz,6 MB Intel® Smart Cache,45.0 +Intel® Core™ i7-2600 Processor,Q1'11,4,3.80 GHz,3.40 GHz,8 MB Intel® Smart Cache,95.0 +Intel® Core™ i7-2600K Processor,Q1'11,4,3.80 GHz,3.40 GHz,8 MB Intel® Smart Cache,95.0 +Intel® Core™ i7-2600S Processor,Q1'11,4,3.80 GHz,2.80 GHz,8 MB Intel® Smart Cache,65.0 +Intel® Core™ i7-2630QM Processor,Q1'11,4,2.90 GHz,2.00 GHz,6 MB Intel® Smart Cache,45.0 +Intel® Core™ i7-2635QM Processor,Q1'11,4,2.90 GHz,2.00 GHz,6 MB Intel® Smart Cache,45.0 +Intel® Core™ i7-2710QE Processor,Q1'11,4,3.00 GHz,2.10 GHz,6 MB Intel® Smart Cache,45.0 +Intel® Core™ i7-2715QE Processor,Q1'11,4,3.00 GHz,2.10 GHz,6 MB Intel® Smart Cache,45.0 +Intel® Core™ i7-2720QM Processor,Q1'11,4,3.30 GHz,2.20 GHz,6 MB Intel® Smart Cache,45.0 +Intel® Core™ i7-2820QM Processor,Q1'11,4,3.40 GHz,2.30 GHz,8 MB Intel® Smart Cache,45.0 +Intel® Core™ i7-2920XM Processor Extreme Edition,Q1'11,4,3.50 GHz,2.50 GHz,8 MB Intel® Smart Cache,55.0 +Intel® Core™ i3-2310E Processor,Q1'11,2,,2.10 GHz,3 MB Intel® Smart Cache,35.0 +Intel® Xeon® Processor W3670,Q3'10,6,3.46 GHz,3.20 GHz,12 MB Intel® Smart Cache,130.0 +Intel® Xeon® Processor E5620,Q1'10,4,2.66 GHz,2.40 GHz,12 MB Intel® Smart Cache,80.0 +Intel® Xeon® Processor E5630,Q1'10,4,2.80 GHz,2.53 GHz,12 MB Intel® Smart Cache,80.0 +Intel® Xeon® Processor E5640,Q1'10,4,2.93 GHz,2.66 GHz,12 MB Intel® Smart Cache,80.0 +Intel® Xeon® Processor E5645,Q1'10,6,2.67 GHz,2.40 GHz,12 MB Intel® Smart Cache,80.0 +Intel® Xeon® Processor L5609,Q1'10,4,1.86 GHz,1.86 GHz,12 MB Intel® Smart Cache,40.0 +Intel® Xeon® Processor L5618,Q1'10,4,2.26 GHz,1.87 GHz,12 MB,40.0 +Intel® Xeon® Processor L5630,Q1'10,4,2.40 GHz,2.13 GHz,12 MB Intel® Smart Cache,40.0 +Intel® Xeon® Processor L5638,Q1'10,6,2.40 GHz,2.00 GHz,12 MB,60.0 +Intel® Xeon® Processor L5640,Q1'10,6,2.80 GHz,2.26 GHz,12 MB Intel® Smart Cache,60.0 +Intel® Xeon® Processor W3680,Q1'10,6,3.60 GHz,3.33 GHz,12 MB Intel® Smart Cache,130.0 +Intel® Xeon® Processor X5650,Q1'10,6,3.06 GHz,2.66 GHz,12 MB Intel® Smart Cache,95.0 +Intel® Xeon® Processor X5660,Q1'10,6,3.20 GHz,2.80 GHz,12 MB Intel® Smart Cache,95.0 +Intel® Xeon® Processor X5667,Q1'10,4,3.46 GHz,3.06 GHz,12 MB Intel® Smart Cache,95.0 +Intel® Xeon® Processor X5670,Q1'10,6,3.33 GHz,2.93 GHz,12 MB Intel® Smart Cache,95.0 +Intel® Xeon® Processor X5677,Q1'10,4,3.73 GHz,3.46 GHz,12 MB Intel® Smart Cache,130.0 +Intel® Xeon® Processor X5680,Q1'10,6,3.60 GHz,3.33 GHz,12 MB Intel® Smart Cache,130.0 +Intel® Itanium® Processor 9310,Q1'10,2,,1.60 GHz,10 MB L3 Cache,130.0 +Intel® Itanium® Processor 9320,Q1'10,4,1.47 GHz,1.33 GHz,16 MB L3 Cache,155.0 +Intel® Itanium® Processor 9330,Q1'10,4,1.60 GHz,1.46 GHz,20 MB L3 Cache,155.0 +Intel® Itanium® Processor 9340,Q1'10,4,1.73 GHz,1.60 GHz,20 MB L3 Cache,185.0 +Intel® Itanium® Processor 9350,Q1'10,4,1.87 GHz,1.73 GHz,24 MB L3 Cache,185.0 +"Intel® EP80579 Integrated Processor, 1066 MHz",Q3'08,1,,1.00 GHz,256 KB L2 Cache,18.0 +"Intel® EP80579 Integrated Processor, 1200 MHz",Q3'08,1,,1.20 GHz,256 KB L2 Cache,19.0 +"Intel® EP80579 Integrated Processor, 600 MHz",Q3'08,1,,600 MHz,256 KB L2 Cache,11.0 +"Intel® EP80579 Integrated Processor with Intel® QuickAssist Technology, 1066 MHz",Q3'08,1,,1.00 GHz,256 KB L2 Cache,20.0 +"Intel® EP80579 Integrated Processor with Intel® QuickAssist Technology, 1200 MHz",Q3'08,1,,1.20 GHz,256 KB L2 Cache,21.0 +"Intel® EP80579 Integrated Processor with Intel® QuickAssist Technology, 600 MHz",Q3'08,1,,600 MHz,256 KB L2 Cache,13.0 +Intel® Itanium® Processor 9110N,Q4'07,1,,1.60 GHz,12 MB L3 Cache,75.0 +Intel® Itanium® Processor 9120N,Q4'07,2,,1.42 GHz,12 MB L3 Cache,104.0 +Intel® Itanium® Processor 9130M,Q4'07,2,,1.66 GHz,8 MB L3 Cache,104.0 +Intel® Itanium® Processor 9140M,Q4'07,2,,1.66 GHz,18 MB L3 Cache,104.0 +Intel® Itanium® Processor 9140N,Q4'07,2,,1.60 GHz,18 MB L3 Cache,104.0 +Intel® Itanium® Processor 9150M,Q4'07,2,,1.66 GHz,24 MB L3 Cache,104.0 +Intel® Itanium® Processor 9150N,Q4'07,2,,1.60 GHz,24 MB L3 Cache,104.0 +Intel® Itanium® Processor 9152M,Q4'07,2,,1.66 GHz,24 MB L3 Cache,104.0 +Intel® IOC340 I/O Controller,Q1'07,1,,1.20 GHz,512 KB L2 Cache,11.21 +Intel® IOC340 I/O Controller,Q1'07,1,,800 MHz,0 KBL2,9.88 +Intel® IOP341 I/O Processor,Q1'07,1,,1.20 GHz,512 KB L2 Cache,11.45 +Intel® IOP341 I/O Processor,Q1'07,1,,800 MHz,512 KB L2 Cache,10.13 +Intel® IOP342 I/O Processor,Q1'07,2,,1.20 GHz,1 MB L2 Cache,11.45 +Intel® IOP342 I/O Processor,Q1'07,2,,800 MHz,1 MB L2 Cache,10.13 +Intel® IOP348 I/O Processor,Q1'07,1,,1.20 GHz,512 KB L2 Cache,12.7 +Intel® IOP348 I/O Processor,Q1'07,1,,800 MHz,512 KB L2 Cache,11.0 +Intel® IOP348 I/O Processor,Q1'07,1,,667 MHz,512 KB L2 Cache,11.0 +Intel® Itanium® Processor 9015,Q1'07,2,,1.40 GHz,12 MB L2 Cache,104.0 +Intel® Core™ i7-1365URE Processor,Q1'23,10,4.90 GHz,1.70 GHz,12 MB Intel® Smart Cache,15.0 +Intel® Core™ i7-1366URE Processor,Q1'23,10,4.9 GHz,1.70 GHz,12 MB Intel® Smart Cache,15.0 +Intel® Core™ i7-1370PRE Processor,Q1'23,14,4.80 GHz,1.90 GHz,24 MB Intel® Smart Cache,28.0 diff --git a/codecarbon/data/hardware/cpu_dataset_builder/intel_cpu_scrapper.py b/codecarbon/data/hardware/cpu_dataset_builder/intel_cpu_scrapper.py new file mode 100644 index 000000000..a64cb3fe7 --- /dev/null +++ b/codecarbon/data/hardware/cpu_dataset_builder/intel_cpu_scrapper.py @@ -0,0 +1,284 @@ +#!/usr/bin/env python3 +""" +Intel CPU Scraper + +This script uses requests and BeautifulSoup to scrape CPU names and their associated TDP values +from the Intel ARK website using the advanced filter search URL. + +hatch run pip install beautifulsoup4 +hatch run python intel_cpu_scrapper.py + +""" + +import csv +import os +import re +import time + +import requests +from bs4 import BeautifulSoup + + +class IntelCpuScraper: + """Scraper for Intel CPU data from ARK website.""" + + def __init__(self): + """Initialize the scraper.""" + self.base_url = "https://www.intel.com/libs/apps/intel/support/ark/advancedFilterSearch?productType=873&3_MaxTDP-Min=0.03&3_MaxTDP-Max=500&forwardPath=/content/www/us/en/ark/featurefilter.html&pageNo={page_num}&sort=&sortType=" + self.results = [] + self.headers = { + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36" + } + + def fetch_page(self, page_num): + """Fetch a single page of results.""" + url = self.base_url.format(page_num=page_num) + print(f"Fetching URL: {url}") + try: + response = requests.get(url, headers=self.headers, timeout=30) + response.raise_for_status() # Raise an exception for bad status codes + return response.text + except requests.exceptions.RequestException as e: + print(f"Error fetching page {page_num}: {e}") + return None + + def parse_html(self, html_content): + """Parse HTML content to extract CPU data.""" + soup = BeautifulSoup(html_content, "html.parser") + # Prioritize rows with 'data-product-id' as they are likely the CPU entries + rows = soup.find_all("tr", {"data-product-id": True}) + + if not rows: + no_results_message = soup.find("div", class_="no-results-message") + if ( + no_results_message + and "no results found" in no_results_message.text.lower() + ): + print("No results found on this page (no-results-message).") + return [] + if "No products matching your selection were found" in html_content: + print("No results found on this page (No products matching text).") + return [] + print("No CPU data rows with 'data-product-id' found on the page.") + return None # Indicate an issue or unexpected structure if no specific "no results" message + + page_results = [] + for row in rows: + try: + # Get all direct child elements of the row + tds = row.find_all("td", recursive=False) + + # Expected columns: Name, Launch, Cores, Max Turbo, Base Freq, Cache, TDP + if len(tds) < 7: + # print(f"Skipping row, expected at least 7 columns, got {len(tds)}.") + continue + + # 1. Product Name + cpu_name_tag = tds[0].find("a") + if not cpu_name_tag: + # print("Skipping row: CPU name tag not found in first cell.") + continue + cpu_name = cpu_name_tag.text.strip() + + # Helper to get text from a td cell + def get_cell_text(cell_index, tds): + if cell_index < len(tds) and tds[cell_index]: + return tds[cell_index].text.strip() + return "" + + # 2. Launch Date (e.g., "Q2'25") + launch_date = get_cell_text(1, tds) + + # 3. Total Cores (e.g., "40") + total_cores = get_cell_text(2, tds) + + # 4. Max Turbo Frequency (e.g., "3.5 GHz") + max_turbo_frequency = get_cell_text(3, tds) + + # 5. Processor Base Frequency (e.g., "2.5 GHz") + processor_base_frequency = get_cell_text(4, tds) + + # 6. Cache (e.g., "160 MB") + cache = get_cell_text(5, tds) + + # 7. TDP (e.g., "235 W") + tdp_text_content = get_cell_text(6, tds) + tdp_data_value = ( + tds[6].get("data-value") if len(tds) > 6 and tds[6] else None + ) + + tdp_numeric = None + if tdp_data_value and tdp_data_value.replace(".", "", 1).isdigit(): + tdp_numeric = float(tdp_data_value) + elif "W" in tdp_text_content: + tdp_match = re.search(r"([\\d.]+)\\s*W", tdp_text_content) + if tdp_match: + tdp_numeric = float(tdp_match.group(1)) + + if not cpu_name: # Basic validation + # print("Skipping row: CPU name is empty.") + continue + + result_item = { + "cpu_name": cpu_name, + "launch_date": launch_date, + "total_cores": total_cores, + "max_turbo_frequency": max_turbo_frequency, + "processor_base_frequency": processor_base_frequency, + "cache": cache, + "tdp": ( + tdp_numeric if tdp_numeric is not None else "" + ), # Store numeric TDP in Watts + } + page_results.append(result_item) + # print(f"Processed: {cpu_name}, TDP: {tdp_numeric if tdp_numeric is not None else 'N/A'}") + + except Exception as e: + print(f"Error parsing a row: {e}") + # print(f"Problematic row HTML snippet: {str(row)[:500]}") + return page_results + + def scrape_all_cpus(self): + """Scrape all CPU data by iterating through pages.""" + page_num = 1 + consecutive_empty_pages = 0 # To detect end of results + max_consecutive_empty = ( + 2 # Stop after 2 consecutive pages with no new valid entries + ) + + while True: + print(f"Processing page {page_num}...") + html_content = self.fetch_page(page_num) + + if html_content is None: + print(f"Failed to fetch page {page_num} after retries. Stopping.") + break + + page_results = self.parse_html(html_content) + + if page_results is None: # Indicates an unexpected page structure or error + print( + f"Could not parse data from page {page_num} or unexpected structure. Stopping." + ) + break + + if not page_results: + consecutive_empty_pages += 1 + print( + f"No results extracted from page {page_num}. Consecutive empty pages: {consecutive_empty_pages}" + ) + if consecutive_empty_pages >= max_consecutive_empty: + print("Reached max consecutive empty pages. Assuming end of data.") + break + else: + consecutive_empty_pages = 0 # Reset counter if we found data + new_cpus_found_on_page = 0 + for res in page_results: + if ( + res not in self.results + ): # Avoid duplicates if any page re-processing happens + self.results.append(res) + new_cpus_found_on_page += 1 + print( + f"Added {new_cpus_found_on_page} new CPUs from page {page_num}. Total CPUs: {len(self.results)}" + ) + if new_cpus_found_on_page == 0 and len(page_results) > 0: + # This means all CPUs on this page were duplicates, could be an issue or end of new data + print( + f"All {len(page_results)} CPUs on page {page_num} are duplicates. Considering this as end of new data." + ) + break + + page_num += 1 + time.sleep(1) # Be respectful to the server + + print(f"Scraping complete. Found {len(self.results)} CPUs.") + + def save_to_csv(self, filename="intel_cpu_ark_dataset.csv"): + """Save the scraped data to a CSV file.""" + filepath = os.path.join(os.path.dirname(os.path.abspath(__file__)), filename) + if not self.results: + print("No data to save to CSV.") + return + + keys = self.results[0].keys() + with open(filepath, "w", newline="", encoding="utf-8") as f: + writer = csv.DictWriter(f, fieldnames=keys) + writer.writeheader() + writer.writerows(self.results) + print(f"Data saved to {filepath}") + + +def main(): + """Main function to run the scraper.""" + scraper = IntelCpuScraper() + scraper.scrape_all_cpus() + + if scraper.results: + scraper.save_to_csv() + else: + print("No data was scraped.") + + +if __name__ == "__main__": + main() + + +""" + +Sample content from the Intel ARK page: + +Product Name +Launch Date +Total Cores +Max Turbo Frequency +Processor Base Frequency +Cache +TDP + + + +
+ + Intel® Xeon® 6716P-B Processor +
+ + + + Q2'25 + + + + 40 + + + 3.5 GHz + + + 2.5 GHz + + + 160 MB + + + 235 W + + +""" diff --git a/codecarbon/data/hardware/cpu_dataset_builder/merge_scrapped_cpu_power.py b/codecarbon/data/hardware/cpu_dataset_builder/merge_scrapped_cpu_power.py new file mode 100644 index 000000000..62c83e11d --- /dev/null +++ b/codecarbon/data/hardware/cpu_dataset_builder/merge_scrapped_cpu_power.py @@ -0,0 +1,159 @@ +""" +This script updates the CPU power data by reading from Intel and AMD CPU data file, +cleaning the CPU names, and merging the data into an existing CPU power CSV file. +It ensures that the TDP values are numeric and updates existing entries or adds new ones. + +cd codecarbon/data/hardware/cpu_dataset_builder +hatch run python merge_scrapped_cpu_power.py + +""" + +import re + +import pandas as pd + +# Define file paths +intel_cpu_file = "intel_cpu_ark_dataset.csv" +amd_desktop_cpu_file = "amd_cpu_desktop_dataset.csv" +amd_server_cpu_file = "amd_cpu_server_dataset.csv" +cpu_power_file = "../cpu_power.csv" + +# Read Intel CPU data +try: + intel_df = pd.read_csv(intel_cpu_file) + amd_desktop_df = pd.read_csv(amd_desktop_cpu_file) + amd_server_df = pd.read_csv(amd_server_cpu_file) +except FileNotFoundError as e: + print(f"FATAL Error: Data file not found {e}") + exit(1) + + +# Clean Intel CPU names and select relevant columns +def clean_intel_cpu_name(name): + if pd.isna(name): + return None + name = re.sub(r"®", "", name) + name = name.replace(r"(R)", "") + name = name.replace(r"(TM)", "") + name = re.sub(r" Processor", "", name) + name = re.sub(r" Coprocessor", "", name) + name = re.sub(r"™", "", name) + name = re.sub(r" with.*", "", name) + name = name.strip() + if not name.startswith("Intel "): + name = "Intel " + name + return name + + +if not intel_df.empty: + intel_df["Name"] = intel_df["cpu_name"].apply(clean_intel_cpu_name) + intel_df = intel_df[["Name", "tdp"]].copy() + intel_df.rename(columns={"tdp": "TDP"}, inplace=True) +else: + intel_df = pd.DataFrame(columns=["Name", "TDP"]) + + +# Clean AMD CPU names +def clean_amd_cpu_name(name): + if pd.isna(name): + return None + name = str(name) # Ensure name is a string + name = re.sub(r"®", "", name) + name = name.replace(r"(R)", "") + name = name.replace(r"(TM)", "") + name = re.sub(r" Processor", "", name) + name = re.sub(r"™", "", name) + name = re.sub(r" with.*", "", name) + name = name.strip() + if not name.startswith("AMD "): + name = "AMD " + name + return name + + +def extract_tdp_value(tdp_str): + if pd.isna(tdp_str): + return None + tdp_str = str(tdp_str).replace("W", "").strip() + # If it's a range like "15-54", take the upper value + if "-" in tdp_str: + try: + return float(tdp_str.split("-")[-1]) + except ValueError: + return None + try: + return float(tdp_str) + except ValueError: + return None + + +amd_desktop_df["Name"] = amd_desktop_df["Name"].apply(clean_amd_cpu_name) +amd_desktop_df.rename(columns={"Default TDP": "TDP"}, inplace=True) +amd_desktop_df = amd_desktop_df[["Name", "TDP"]].copy() +amd_desktop_df["TDP"] = amd_desktop_df["TDP"].apply(extract_tdp_value) + +amd_server_df["Name"] = amd_server_df["Name"].apply(clean_amd_cpu_name) +amd_server_df = amd_server_df[["Name", "Default TDP"]].copy() +amd_server_df.rename(columns={"Default TDP": "TDP"}, inplace=True) +amd_server_df["TDP"] = amd_server_df["TDP"].apply(extract_tdp_value) + +# Concatenate all CPU data +all_cpus_df = pd.concat([intel_df, amd_desktop_df, amd_server_df], ignore_index=True) + +print( + f"Total CPUs found: {len(all_cpus_df)} using Intel {len(intel_df)}, AMD Desktop {len(amd_desktop_df)}, and AMD Server {len(amd_server_df)} datasets." +) + +# Ensure TDP is numeric, coercing errors to NaN (which will be dropped) +all_cpus_df["TDP"] = pd.to_numeric(all_cpus_df["TDP"], errors="coerce") +all_cpus_df.dropna(subset=["Name", "TDP"], inplace=True) +all_cpus_df["TDP"] = all_cpus_df["TDP"].astype(int) + + +# Read existing CPU power data +try: + cpu_power_df = pd.read_csv(cpu_power_file) +except FileNotFoundError: + print(f"FATAL ERROR: cpu_power.csv not found at {cpu_power_file}. Exiting.") + exit(1) + + +# Ensure 'Name' column is string type for merging +cpu_power_df["Name"] = cpu_power_df["Name"].astype(str) +all_cpus_df["Name"] = all_cpus_df["Name"].astype(str) + +# Remove duplicates from cpu_power_df before setting index +cpu_power_df.drop_duplicates(subset=["Name"], keep="first", inplace=True) +# Remove duplicates from all_cpus_df before setting index to avoid issues if source data also has dupes +all_cpus_df.drop_duplicates(subset=["Name"], keep="first", inplace=True) + +# Set 'Name' as index for easier update/merge +cpu_power_df.set_index("Name", inplace=True) +all_cpus_df.set_index("Name", inplace=True) + +# Update existing entries and add new ones +# For CPUs in all_cpus_df, their TDP will overwrite existing TDP in cpu_power_df +# New CPUs from all_cpus_df will be added +cpu_power_df.update(all_cpus_df) +# Add CPUs from all_cpus_df that were not in cpu_power_df +new_cpus = all_cpus_df[~all_cpus_df.index.isin(cpu_power_df.index)] +combined_df = pd.concat([cpu_power_df, new_cpus]) + + +# Reset index and sort +combined_df.reset_index(inplace=True) +combined_df.sort_values(by="Name", inplace=True, kind="mergesort") + +# Drop duplicates, keeping the first occurrence (which would be the updated/new one if there were any issues) +combined_df.drop_duplicates(subset=["Name"], keep="first", inplace=True) + + +# Save the updated dataframe +try: + combined_df.to_csv(cpu_power_file, index=False) + print( + f"Successfully updated {cpu_power_file} with data from Intel and AMD CPU datasets." + ) +except Exception as e: + print(f"Error writing to {cpu_power_file}: {e}") + +print(f"Script finished. {cpu_power_file} has been updated.") diff --git a/codecarbon/data/hardware/cpu_power.csv b/codecarbon/data/hardware/cpu_power.csv index cf2866a0c..4c817a1a9 100644 --- a/codecarbon/data/hardware/cpu_power.csv +++ b/codecarbon/data/hardware/cpu_power.csv @@ -132,75 +132,139 @@ Name,TDP 840,95 850,95 860K,95 -860K with Near Silent Thermal Solution,95 -870K with Near Silent Thermal Solution,95 -880K with Near Silent Thermal Solution,95 +870K,95 +880K,95 960T,95 965,80 975,125 980,125 -A10 Micro-6700T with Radeon R6 Graphics,4.5 -A10 PRO-7350B with Radeon R6 Graphics,19 -A10 PRO-7800B with Radeon R7 Graphics,65 -A10 PRO-7850B with Radeon R7 Graphics,95 -A10-6700 with Radeon HD 8670D,65 -A10-6700T with Radeon HD 8650D,45 -A10-6790B with Radeon HD 8670D,45 -A10-6790K with Radeon HD 8670D,100 -A10-6800B with Radeon HD 8670D,45 -A10-6800K with Radeon HD 8670D,100 -A10-7300 with Radeon R6 Graphics,20 -A10-7400P with Radeon R6 Graphics,35 -A10-7850K with Radeon R7 Series,95 -A10-7860K with Radeon R7 Graphics and Near Silent Thermal Solution,65 -A10-7860K with Radeon R7 Series,65 -A10-7870K with Radeon R7 Graphics and Near Silent Thermal Solution,95 -A10-7870K with Radeon R7 Series,95 -A10-7890K with Radeon R7 Graphics and Wraith cooler,95 -A4 Micro-6400T with Radeon R3 Graphics,4.5 -A4 PRO-3340B with Radeon HD 8240 Graphics,25 -A4 PRO-3350B with Radeon R4 Graphics,15 -A4 PRO-7300B with Radeon HD 8470D,65 -A4 PRO-7350B with Radeon R5 Graphics,65 -A4-5000 with Radeon HD 8330,15 -A4-5100 with Radeon HD 8330,15 -A4-6210 with Radeon R3 Graphics,15 -A4-6300 with Radeon HD 8370D,65 -A4-6320 with Radeon HD 8370D,65 -A4-7210 with Radeon R3 Graphics,65 -A4-7300 with Radeon HD 8470D,65 -A6 PRO-7050B with Radeon R4 Graphics,100 -A6 PRO-7400B with Radeon R5 Graphics,65 -A6-5200 with Radeon HD 8400,25 -A6-5200M with Radeon HD 8400,25 -A6-5350M with Radeon HD 8450G,35 -A6-6310 with Radeon R4 Graphics,15 -A6-6400B with Radeon HD 8470D,65 -A6-6400K with Radeon HD 8470D,65 -A6-6420B with Radeon HD 8470D,65 -A6-6420K with Radeon HD 8470D,65 -A6-7000 with Radeon R4 Graphics,17 -A6-7310 with Radeon R4 Graphics,15 -A6-7400K with Radeon R5 Series,65 -A6-7470K with Radeon R5 Series,65 -A6-8500P with Radeon R5 Graphics,15 -A8 PRO-7150B with Radeon R5 Graphics,100 -A8 PRO-7600B with Radeon R7 Graphics,65 -A8-6410 with Radeon R5 Graphics,15 -A8-6500 with Radeon HD 8570D,65 -A8-6500B with Radeon HD 8570D,65 -A8-6500T with Radeon HD 8550D,45 -A8-6600K with Radeon HD 8570D,65 -A8-7100 with Radeon R5 Graphics,20 -A8-7200P with Radeon R5 Graphics,100 -A8-7410 with Radeon R5 Graphics,15 -A8-7600 with Radeon R7 Series,65 -A8-7650K with Radeon R7 Graphics and Near Silent Thermal Solution,95 -A8-7650K with Radeon R7 Series,95 -A8-7670K with Radeon R7 Graphics and Near Silent Thermal Solution,95 -AMD 3015Ce,6 -AMD 3015e,6 -AMD 3020e,6 +A10 Micro-6700T,4.5 +A10 PRO-7350B,19 +A10 PRO-7800B,65 +A10 PRO-7850B,95 +A10-6700,65 +A10-6700T,45 +A10-6790B,45 +A10-6790K,100 +A10-6800B,45 +A10-6800K,100 +A10-7300,20 +A10-7400P,35 +A10-7850K,95 +A10-7860K,65 +A10-7870K,95 +A10-7890K,95 +A4 Micro-6400T,4.5 +A4 PRO-3340B,25 +A4 PRO-3350B,15 +A4 PRO-7300B,65 +A4 PRO-7350B,65 +A4-5000,15 +A4-5100,15 +A4-6210,15 +A4-6300,65 +A4-6320,65 +A4-7210,65 +A4-7300,65 +A6 PRO-7050B,100 +A6 PRO-7400B,65 +A6-5200,25 +A6-5200M,25 +A6-5350M,35 +A6-6310,15 +A6-6400B,65 +A6-6400K,65 +A6-6420B,65 +A6-6420K,65 +A6-7000,17 +A6-7310,15 +A6-7400K,65 +A6-7470K,65 +A6-8500P,15 +A8 PRO-7150B,100 +A8 PRO-7600B,65 +A8-6410,15 +A8-6500,65 +A8-6500B,65 +A8-6500T,45 +A8-6600K,65 +A8-7100,20 +A8-7200P,100 +A8-7410,15 +A8-7600,65 +A8-7650K,95 +A8-7670K,95 +AMD 3015Ce,6.0 +AMD 3015e,6.0 +AMD 3020e,6.0 +AMD 6th Gen A10-8700P APU,15.0 +AMD 6th Gen A8-8600P APU,15.0 +AMD 6th Gen AMD PRO A10-8700B APU,15.0 +AMD 6th Gen AMD PRO A10-8750B APU,65.0 +AMD 6th Gen AMD PRO A10-8770 APU,65.0 +AMD 6th Gen AMD PRO A10-8770E APU,35.0 +AMD 6th Gen AMD PRO A10-8850B APU,95.0 +AMD 6th Gen AMD PRO A12-8800B APU,15.0 +AMD 6th Gen AMD PRO A12-8870 APU,65.0 +AMD 6th Gen AMD PRO A12-8870E APU,35.0 +AMD 6th Gen AMD PRO A4-8350B APU,65.0 +AMD 6th Gen AMD PRO A6-8500B APU,15.0 +AMD 6th Gen AMD PRO A6-8550B APU,65.0 +AMD 6th Gen AMD PRO A6-8570 APU,65.0 +AMD 6th Gen AMD PRO A6-8570E APU,35.0 +AMD 6th Gen AMD PRO A8-8600B APU,15.0 +AMD 6th Gen AMD PRO A8-8650B APU,65.0 +AMD 6th Gen FX-8800P APU,15.0 +AMD 7th Gen A10-9600P APU,15.0 +AMD 7th Gen A10-9630P APU,35.0 +AMD 7th Gen A10-9700 APU,65.0 +AMD 7th Gen A10-9700E APU,35.0 +AMD 7th Gen A12-9700P APU,15.0 +AMD 7th Gen A12-9730P APU,35.0 +AMD 7th Gen A12-9800 APU,65.0 +AMD 7th Gen A12-9800E APU,35.0 +AMD 7th Gen A4-9120 APU,15.0 +AMD 7th Gen A4-9120C APU,6.0 +AMD 7th Gen A4-9125 APU,15.0 +AMD 7th Gen A6-9210 APU,15.0 +AMD 7th Gen A6-9220 APU,15.0 +AMD 7th Gen A6-9220C APU,6.0 +AMD 7th Gen A6-9225 APU,15.0 +AMD 7th Gen A6-9500 APU,65.0 +AMD 7th Gen A6-9500E APU,35.0 +AMD 7th Gen A6-9550 APU,65.0 +AMD 7th Gen A8-9600 APU,65.0 +AMD 7th Gen A9-9420 APU,15.0 +AMD 7th Gen A9-9425 APU,15.0 +AMD 7th Gen AMD Athlon X4 970,65.0 +AMD 7th Gen AMD PRO A10-9700 APU,65.0 +AMD 7th Gen AMD PRO A10-9700B APU,15.0 +AMD 7th Gen AMD PRO A10-9700E APU,35.0 +AMD 7th Gen AMD PRO A10-9730B APU,35.0 +AMD 7th Gen AMD PRO A12-9800 APU,65.0 +AMD 7th Gen AMD PRO A12-9800B APU,15.0 +AMD 7th Gen AMD PRO A12-9800E APU,35.0 +AMD 7th Gen AMD PRO A12-9830B APU,35.0 +AMD 7th Gen AMD PRO A4-4350B APU,15.0 +AMD 7th Gen AMD PRO A4-5350B APU,15.0 +AMD 7th Gen AMD PRO A6-7350B APU,15.0 +AMD 7th Gen AMD PRO A6-8350B APU,15.0 +AMD 7th Gen AMD PRO A6-9500 APU,65.0 +AMD 7th Gen AMD PRO A6-9500B APU,15.0 +AMD 7th Gen AMD PRO A6-9500E APU,35.0 +AMD 7th Gen AMD PRO A8-9600 APU,65.0 +AMD 7th Gen AMD PRO A8-9600B APU,15.0 +AMD 7th Gen AMD PRO A8-9630B,35.0 +AMD 7th Gen E2-9010 APU,15.0 +AMD 7th Gen FX 9800P APU,15.0 +AMD 7th Gen FX 9830P APU,35.0 +AMD 860K,95.0 +AMD 870K,95.0 +AMD 880K,95.0 +AMD A10 Micro-6700T,4.0 +AMD A10 PRO-7350B,19.0 +AMD A10 PRO-7800B,65.0 +AMD A10 PRO-7850B,95.0 AMD A10-4600M,35 AMD A10-4655M,25 AMD A10-5700,65 @@ -209,18 +273,31 @@ AMD A10-5750M,35 AMD A10-5757M,35 AMD A10-5800B,100 AMD A10-5800K,100 -AMD A10-6700,65 -AMD A10-6700T,45 -AMD A10-6790K,100 -AMD A10-6800K,100 +AMD A10-6700,65.0 +AMD A10-6700T,45.0 +AMD A10-6790B,45.0 +AMD A10-6790K,100.0 +AMD A10-6800B,45.0 +AMD A10-6800K,100.0 +AMD A10-7300,20.0 +AMD A10-7400P,35.0 AMD A10-7700K,95 -AMD A10-7850K,95 -AMD A10-7870K,95 -AMD A10-7890K,95 +AMD A10-7850K,95.0 +AMD A10-7860K,65.0 +AMD A10-7860K and Near Silent Thermal Solution,65 +AMD A10-7870K,95.0 +AMD A10-7870K and Near Silent Thermal Solution,95 +AMD A10-7890K,95.0 +AMD A10-7890K and Wraith cooler,95 AMD A10-9700,65 AMD A10-9700E,35 AMD A12-9800,65 AMD A12-9800E,35 +AMD A4 Micro-6400T,4.0 +AMD A4 PRO-3340B,25.0 +AMD A4 PRO-3350B,15.0 +AMD A4 PRO-7300B,65.0 +AMD A4 PRO-7350B,65.0 AMD A4-1200,4 AMD A4-1250,8 AMD A4-1350,8 @@ -235,13 +312,20 @@ AMD A4-3420,65 AMD A4-4000,65 AMD A4-4300M,35 AMD A4-4355M,17 -AMD A4-5000,15 +AMD A4-5000,15.0 AMD A4-5050,15 +AMD A4-5100,15.0 AMD A4-5145M,17 AMD A4-5150M,35 AMD A4-5300,65 AMD A4-5300B,65 -AMD A4-6300,65 +AMD A4-6210,15.0 +AMD A4-6300,65.0 +AMD A4-6320,65.0 +AMD A4-7210,65.0 +AMD A4-7300,65.0 +AMD A6 PRO-7050B,100.0 +AMD A6 PRO-7400B,65.0 AMD A6-1450,8 AMD A6-3400M,35 AMD A6-3410MX,45 @@ -254,18 +338,30 @@ AMD A6-3650,100 AMD A6-3670K,100 AMD A6-4400M,35 AMD A6-4455M,17 -AMD A6-5200,25 +AMD A6-5200,25.0 +AMD A6-5200M,25.0 AMD A6-5345M,17 -AMD A6-5350M,35 +AMD A6-5350M,35.0 AMD A6-5357M,35 AMD A6-5400B,65 AMD A6-5400K,65 -AMD A6-6400K,65 +AMD A6-6310,15.0 +AMD A6-6400B,65.0 +AMD A6-6400K,65.0 +AMD A6-6420B,65.0 +AMD A6-6420K,65.0 +AMD A6-7000,17.0 +AMD A6-7310,15.0 +AMD A6-7400K,65.0 +AMD A6-7470K,65.0 +AMD A6-8500P,15.0 AMD A6-9120C SoC,6 AMD A6-9220C SoC,6 AMD A6-9500,65 AMD A6-9500E,35 AMD A6-9550,65 +AMD A8 PRO-7150B,100.0 +AMD A8 PRO-7600B,65.0 AMD A8-3500M,35 AMD A8-3510MX,45 AMD A8-3520M,35 @@ -283,14 +379,26 @@ AMD A8-5545M,25 AMD A8-5550M,35 AMD A8-5557M,35 AMD A8-5600K,100 -AMD A8-6500,65 -AMD A8-6600K,100 +AMD A8-6410,15.0 +AMD A8-6500,65.0 +AMD A8-6500B,65.0 +AMD A8-6500T,45.0 +AMD A8-6600K,65.0 +AMD A8-7100,20.0 +AMD A8-7200P,100.0 +AMD A8-7410,15.0 +AMD A8-7600,65.0 +AMD A8-7650K,95.0 +AMD A8-7650K and Near Silent Thermal Solution,95 +AMD A8-7670K,95.0 +AMD A8-7670K and Near Silent Thermal Solution,95 AMD A8-7680,45 AMD A8-9600,65 AMD A9-9400 SoC,10 AMD A9-9410 SoC,25 AMD A9-9420 SoC,15 AMD A9-9425 SoC,15 +AMD Athlon Silver 3050C,15.0 AMD Athlon 1000,54 AMD Athlon 1100,60 AMD Athlon 1133,63 @@ -298,14 +406,24 @@ AMD Athlon 1200,66 AMD Athlon 1300,68 AMD Athlon 1333,70 AMD Athlon 1400,72 -AMD Athlon 200GE,35 -AMD Athlon 220GE,35 -AMD Athlon 240GE,35 -AMD Athlon 3000G,35 -AMD Athlon 300GE,35 -AMD Athlon 300U,15 -AMD Athlon 320GE,35 +AMD Athlon 200GE,35.0 +AMD Athlon 220GE,35.0 +AMD Athlon 240GE,35.0 +AMD Athlon 255e,45.0 +AMD Athlon 3000G,35.0 +AMD Athlon 300GE,35.0 +AMD Athlon 300U,15.0 +AMD Athlon 320GE,35.0 +AMD Athlon 425e,45.0 +AMD Athlon 460,95.0 +AMD Athlon 5150 APU,25.0 +AMD Athlon 5350 APU,25.0 +AMD Athlon 5370 APU,25.0 AMD Athlon 600,38 +AMD Athlon 620e,45.0 +AMD Athlon 631,100.0 +AMD Athlon 631 (65W),65.0 +AMD Athlon 638,65.0 AMD Athlon 64 1500+,9 AMD Athlon 64 2000+,8 AMD Athlon 64 2600+,15 @@ -368,21 +486,28 @@ AMD Athlon 64 X2 5600+,65 AMD Athlon 64 X2 5800+,89 AMD Athlon 64 X2 6000+,125 AMD Athlon 64 X2 6400+ BE,125 +AMD Athlon 641,100.0 AMD Athlon 650,38 AMD Athlon 700,40 -AMD Athlon 750,43 +AMD Athlon 740,65.0 +AMD Athlon 750,65.0 +AMD Athlon 750K,100.0 +AMD Athlon 760K,100.0 AMD Athlon 800,45 AMD Athlon 850,47 +AMD Athlon 860K,95.0 AMD Athlon 900,50 AMD Athlon 950,52 -AMD Athlon Gold 3150C,15 +AMD Athlon Gold 3150C,15.0 AMD Athlon Gold 3150G,65 -AMD Athlon Gold 3150G (OEM Only),65 +AMD Athlon Gold 3150G (OEM Only),65.0 AMD Athlon Gold 3150GE,35 -AMD Athlon Gold 3150GE (OEM Only),35 -AMD Athlon Gold 3150U,15 -AMD Athlon Gold PRO 3150G,65 -AMD Athlon Gold PRO 3150GE,35 +AMD Athlon Gold 3150GE (OEM Only),35.0 +AMD Athlon Gold 3150U,15.0 +AMD Athlon Gold 7220C,15.0 +AMD Athlon Gold 7220U,15.0 +AMD Athlon Gold PRO 3150G,65.0 +AMD Athlon Gold PRO 3150GE,35.0 AMD Athlon II X2 210e,45 AMD Athlon II X2 215,65 AMD Athlon II X2 220,65 @@ -428,19 +553,23 @@ AMD Athlon II X4 641,100 AMD Athlon II X4 645,95 AMD Athlon II X4 651,100 AMD Athlon II X4 651K,100 -AMD Athlon PRO 200GE,35 -AMD Athlon PRO 200U Mobile Processor with Radeon Vega 3 Graphics,15 -AMD Athlon PRO 300GE,35 +AMD Athlon PRO 200GE,35.0 +AMD Athlon PRO 200U Mobile,15.0 +AMD Athlon PRO 200U Mobile Processor,15 +AMD Athlon PRO 300GE,35.0 AMD Athlon PRO 300U,15 -AMD Athlon PRO 300U Mobile Processor with Radeon Vega 3 Graphics,15 -AMD Athlon PRO 3045B,15 -AMD Athlon PRO 3145B,15 +AMD Athlon PRO 300U Mobile,15.0 +AMD Athlon PRO 300U Mobile Processor,15 +AMD Athlon PRO 3045B,15.0 +AMD Athlon PRO 3145B,15.0 AMD Athlon Silver 3050C,15 AMD Athlon Silver 3050GE,35 -AMD Athlon Silver 3050GE (OEM Only),35 -AMD Athlon Silver 3050U,15 -AMD Athlon Silver 3050e,6 -AMD Athlon Silver PRO 3125GE,35 +AMD Athlon Silver 3050GE (OEM Only),35.0 +AMD Athlon Silver 3050U,15.0 +AMD Athlon Silver 3050e,6.0 +AMD Athlon Silver 7120C,15.0 +AMD Athlon Silver 7120U,15.0 +AMD Athlon Silver PRO 3125GE,35.0 AMD Athlon X2 4050e,45 AMD Athlon X2 4450e,45 AMD Athlon X2 4850e,45 @@ -486,6 +615,14 @@ AMD Athlon XP-M 2400+,45 AMD Athlon XP-M 2500+,45 AMD Athlon XP-M 2600+,45 AMD Athlon XP-M 3000+,45 +AMD B57,80.0 +AMD B59,80.0 +AMD B60,80.0 +AMD B75,95.0 +AMD B77,95.0 +AMD B95,95.0 +AMD B97,95.0 +AMD B99,95.0 AMD C-30,9 AMD C-50,9 AMD C-60,9 @@ -494,193 +631,214 @@ AMD E-240,18 AMD E-300,18 AMD E-350,18 AMD E-450,18 +AMD E1 Micro-6200T,3.0 AMD E1-1200,18 AMD E1-1500,18 -AMD E1-2100,9 +AMD E1-2100,9.0 AMD E1-2150,9 -AMD E1-2500,15 +AMD E1-2200,9.0 +AMD E1-2500,15.0 +AMD E1-6010,10.0 +AMD E1-7010,10.0 AMD E2-1800,18 AMD E2-2000,18 -AMD E2-3000,15 +AMD E2-3000,15.0 AMD E2-3000M,35 AMD E2-3200,65 -AMD EPYC 4124P,65 -AMD EPYC 4244P,65 -AMD EPYC 4344P,65 -AMD EPYC 4364P,105 -AMD EPYC 4464P,65 -AMD EPYC 4484PX,120 -AMD EPYC 4564P,170 -AMD EPYC 4584PX,120 -AMD EPYC 7203,120 -AMD EPYC 7203P,120 -AMD EPYC 7232P,120 -AMD EPYC 7251,120 -AMD EPYC 7252,120 +AMD E2-3800,15.0 +AMD E2-6110,15.0 +AMD E2-7110,65.0 +AMD EPYC 4124P,65.0 +AMD EPYC 4244P,65.0 +AMD EPYC 4245P,65.0 +AMD EPYC 4344P,65.0 +AMD EPYC 4345P,65.0 +AMD EPYC 4364P,105.0 +AMD EPYC 4464P,65.0 +AMD EPYC 4465P,65.0 +AMD EPYC 4484PX,120.0 +AMD EPYC 4545P,65.0 +AMD EPYC 4564P,170.0 +AMD EPYC 4565P,170.0 +AMD EPYC 4584PX,120.0 +AMD EPYC 4585PX,170.0 +AMD EPYC 7203,120.0 +AMD EPYC 7203P,120.0 +AMD EPYC 7232P,120.0 +AMD EPYC 7251,120.0 +AMD EPYC 7252,120.0 AMD EPYC 7261,170 -AMD EPYC 7262,155 -AMD EPYC 7272,120 +AMD EPYC 7262,155.0 +AMD EPYC 7272,120.0 AMD EPYC 7281,170 -AMD EPYC 7282,120 -AMD EPYC 72F3,180 +AMD EPYC 7282,120.0 +AMD EPYC 72F3,180.0 AMD EPYC 7301,170 -AMD EPYC 7302,155 -AMD EPYC 7302P,155 -AMD EPYC 7303,130 -AMD EPYC 7303P,130 -AMD EPYC 7313,155 -AMD EPYC 7313P,155 -AMD EPYC 7343,190 +AMD EPYC 7302,155.0 +AMD EPYC 7302P,155.0 +AMD EPYC 7303,130.0 +AMD EPYC 7303P,130.0 +AMD EPYC 7313,155.0 +AMD EPYC 7313P,155.0 +AMD EPYC 7343,190.0 AMD EPYC 7351,170 AMD EPYC 7351P,170 -AMD EPYC 7352,155 -AMD EPYC 7371,200 -AMD EPYC 7373X,240 -AMD EPYC 73F3,240 +AMD EPYC 7352,155.0 +AMD EPYC 7371,200.0 +AMD EPYC 7373X,240.0 +AMD EPYC 73F3,240.0 AMD EPYC 7401,170 AMD EPYC 7401P,170 -AMD EPYC 7402,180 -AMD EPYC 7402P,180 -AMD EPYC 7413,180 -AMD EPYC 7443,200 -AMD EPYC 7443P,200 -AMD EPYC 7451,180 -AMD EPYC 7452,155 -AMD EPYC 7453,225 -AMD EPYC 7473X,240 -AMD EPYC 74F3,240 +AMD EPYC 7402,180.0 +AMD EPYC 7402P,180.0 +AMD EPYC 7413,180.0 +AMD EPYC 7443,200.0 +AMD EPYC 7443P,200.0 +AMD EPYC 7451,180.0 +AMD EPYC 7452,155.0 +AMD EPYC 7453,225.0 +AMD EPYC 7473X,240.0 +AMD EPYC 74F3,240.0 AMD EPYC 7501,170 -AMD EPYC 7502,180 -AMD EPYC 7502P,180 -AMD EPYC 7513,200 -AMD EPYC 7532,200 -AMD EPYC 7542,225 -AMD EPYC 7543,225 -AMD EPYC 7543P,225 -AMD EPYC 7551,180 -AMD EPYC 7551P,180 -AMD EPYC 7552,200 -AMD EPYC 7573X,280 -AMD EPYC 75F3,280 -AMD EPYC 7601,180 -AMD EPYC 7642,225 -AMD EPYC 7643,225 -AMD EPYC 7643P,225 -AMD EPYC 7662,225 -AMD EPYC 7663,240 -AMD EPYC 7663P,240 -AMD EPYC 7702,200 -AMD EPYC 7702P,200 -AMD EPYC 7713,225 -AMD EPYC 7713P,225 -AMD EPYC 7742,225 -AMD EPYC 7763,280 -AMD EPYC 7773X,280 +AMD EPYC 7502,180.0 +AMD EPYC 7502P,180.0 +AMD EPYC 7513,200.0 +AMD EPYC 7532,200.0 +AMD EPYC 7542,225.0 +AMD EPYC 7543,225.0 +AMD EPYC 7543P,225.0 +AMD EPYC 7551,180.0 +AMD EPYC 7551P,180.0 +AMD EPYC 7552,200.0 +AMD EPYC 7573X,280.0 +AMD EPYC 75F3,280.0 +AMD EPYC 7601,180.0 +AMD EPYC 7642,225.0 +AMD EPYC 7643,225.0 +AMD EPYC 7643P,225.0 +AMD EPYC 7662,225.0 +AMD EPYC 7663,240.0 +AMD EPYC 7663P,240.0 +AMD EPYC 7702,200.0 +AMD EPYC 7702P,200.0 +AMD EPYC 7713,225.0 +AMD EPYC 7713P,225.0 +AMD EPYC 7742,225.0 +AMD EPYC 7763,280.0 +AMD EPYC 7773X,280.0 AMD EPYC 7B12,240 -AMD EPYC 7F32,180 -AMD EPYC 7F52,240 -AMD EPYC 7F72,240 -AMD EPYC 7H12,280 -AMD EPYC 9454,290 +AMD EPYC 7F32,180.0 +AMD EPYC 7F52,240.0 +AMD EPYC 7F72,240.0 +AMD EPYC 7H12,280.0 AMD EPYC 7R13,225 -AMD EPYC 8024P,90 -AMD EPYC 8024PN,80 -AMD EPYC 8124P,125 -AMD EPYC 8124PN,100 -AMD EPYC 8224P,160 -AMD EPYC 8224PN,120 -AMD EPYC 8324P,180 -AMD EPYC 8324PN,130 -AMD EPYC 8434P,200 -AMD EPYC 8434PN,155 -AMD EPYC 8534P,200 -AMD EPYC 8534PN,175 -AMD EPYC 9015,125 -AMD EPYC 9115,125 -AMD EPYC 9124,200 -AMD EPYC 9135,200 -AMD EPYC 9174F,320 -AMD EPYC 9175F,320 -AMD EPYC 9184X,320 -AMD EPYC 9224,200 -AMD EPYC 9254,200 -AMD EPYC 9255,200 -AMD EPYC 9274F,320 -AMD EPYC 9275F,320 -AMD EPYC 9334,210 -AMD EPYC 9335,210 -AMD EPYC 9354,280 -AMD EPYC 9354P,280 -AMD EPYC 9355,280 -AMD EPYC 9355P,280 -AMD EPYC 9365,300 -AMD EPYC 9374F,320 -AMD EPYC 9375F,320 -AMD EPYC 9384X,320 -AMD EPYC 9454,290 -AMD EPYC 9454P,290 -AMD EPYC 9455,300 -AMD EPYC 9455P,300 -AMD EPYC 9474F,360 -AMD EPYC 9475F,400 -AMD EPYC 9534,280 -AMD EPYC 9535,300 -AMD EPYC 9554,360 -AMD EPYC 9554P,360 -AMD EPYC 9555,360 -AMD EPYC 9555P,360 -AMD EPYC 9565,400 -AMD EPYC 9575F,400 -AMD EPYC 9634,290 -AMD EPYC 9645,320 -AMD EPYC 9654,360 -AMD EPYC 9654P,360 -AMD EPYC 9655,400 -AMD EPYC 9655P,400 -AMD EPYC 9684X,400 -AMD EPYC 9734,340 -AMD EPYC 9745,400 -AMD EPYC 9754,360 -AMD EPYC 9754S,360 -AMD EPYC 9755,500 -AMD EPYC 9825,390 -AMD EPYC 9845,390 -AMD EPYC 9965,500 +AMD EPYC 8024P,90.0 +AMD EPYC 8024PN,80.0 +AMD EPYC 8124P,125.0 +AMD EPYC 8124PN,100.0 +AMD EPYC 8224P,160.0 +AMD EPYC 8224PN,120.0 +AMD EPYC 8324P,180.0 +AMD EPYC 8324PN,130.0 +AMD EPYC 8434P,200.0 +AMD EPYC 8434PN,155.0 +AMD EPYC 8534P,200.0 +AMD EPYC 8534PN,175.0 +AMD EPYC 9015,125.0 +AMD EPYC 9115,125.0 +AMD EPYC 9124,200.0 +AMD EPYC 9135,200.0 +AMD EPYC 9174F,320.0 +AMD EPYC 9175F,320.0 +AMD EPYC 9184X,320.0 +AMD EPYC 9224,200.0 +AMD EPYC 9254,200.0 +AMD EPYC 9255,200.0 +AMD EPYC 9274F,320.0 +AMD EPYC 9275F,320.0 +AMD EPYC 9334,210.0 +AMD EPYC 9335,210.0 +AMD EPYC 9354,280.0 +AMD EPYC 9354P,280.0 +AMD EPYC 9355,280.0 +AMD EPYC 9355P,280.0 +AMD EPYC 9365,300.0 +AMD EPYC 9374F,320.0 +AMD EPYC 9375F,320.0 +AMD EPYC 9384X,320.0 +AMD EPYC 9454,290.0 +AMD EPYC 9454P,290.0 +AMD EPYC 9455,300.0 +AMD EPYC 9455P,300.0 +AMD EPYC 9474F,360.0 +AMD EPYC 9475F,400.0 +AMD EPYC 9534,280.0 +AMD EPYC 9535,300.0 +AMD EPYC 9554,360.0 +AMD EPYC 9554P,360.0 +AMD EPYC 9555,360.0 +AMD EPYC 9555P,360.0 +AMD EPYC 9565,400.0 +AMD EPYC 9575F,400.0 +AMD EPYC 9634,290.0 +AMD EPYC 9645,320.0 +AMD EPYC 9654,360.0 +AMD EPYC 9654P,360.0 +AMD EPYC 9655,400.0 +AMD EPYC 9655P,400.0 +AMD EPYC 9684X,400.0 +AMD EPYC 9734,340.0 +AMD EPYC 9745,400.0 +AMD EPYC 9754,360.0 +AMD EPYC 9754S,360.0 +AMD EPYC 9755,500.0 +AMD EPYC 9825,390.0 +AMD EPYC 9845,390.0 +AMD EPYC 9965,500.0 AMD EPYC Embedded 3251,50 -AMD FX-4100,95 +AMD FX 6100,95.0 +AMD FX-4100,95.0 AMD FX-4120,95 -AMD FX-4130,125 +AMD FX-4130,125.0 AMD FX-4150,95 -AMD FX-4170,125 -AMD FX-4300,95 -AMD FX-4320,95 -AMD FX-4350,125 +AMD FX-4170,125.0 +AMD FX-4300,95.0 +AMD FX-4320,95.0 +AMD FX-4350,125.0 AMD FX-6100,95 AMD FX-6120,95 AMD FX-6130,95 -AMD FX-6200,125 -AMD FX-6300,95 +AMD FX-6200,125.0 +AMD FX-6300,95.0 AMD FX-6330,125 -AMD FX-6350,125 +AMD FX-6350,125.0 +AMD FX-7500,20.0 +AMD FX-7600P,35.0 AMD FX-8100,95 -AMD FX-8120,125 +AMD FX-8120,125.0 AMD FX-8140,95 -AMD FX-8150,125 +AMD FX-8150,125.0 AMD FX-8170,125 -AMD FX-8300,95 -AMD FX-8320,125 -AMD FX-8320E,95 -AMD FX-8350,125 -AMD FX-8370,125 -AMD FX-8370E,95 -AMD FX-9370,220 -AMD FX-9590,220 +AMD FX-8300,95.0 +AMD FX-8310,95.0 +AMD FX-8320,125.0 +AMD FX-8320E,95.0 +AMD FX-8350,125.0 +AMD FX-8370,125.0 +AMD FX-8370E,95.0 +AMD FX-9370,220.0 +AMD FX-9590,220.0 AMD Mobile Athlon 64 2700+,35 AMD Mobile Athlon 64 2800+,82 AMD Mobile Athlon 64 3000+,62 AMD Mobile Athlon 64 3200+,62 AMD Mobile Athlon 64 3400+,62 AMD Mobile Athlon 64 3700+,82 +AMD N640,35.0 +AMD N660,35.0 +AMD N870,35.0 +AMD N960,35.0 +AMD N970,35.0 AMD Opteron 140,85 AMD Opteron 140 EE,30 AMD Opteron 142,82 @@ -706,63 +864,63 @@ AMD Opteron 250,85 AMD Opteron 250 HE,55 AMD Opteron 252,92 AMD Opteron 254,92 -AMD Opteron 3250 HE,45 -AMD Opteron 3260 HE,45 -AMD Opteron 3280,65 -AMD Opteron 3320 EE,25 -AMD Opteron 3350 HE,45 -AMD Opteron 3365,65 -AMD Opteron 3380,65 -AMD Opteron 4226,95 -AMD Opteron 4228 HE,65 -AMD Opteron 4230 HE,65 -AMD Opteron 4234,95 -AMD Opteron 4238,95 -AMD Opteron 4240,95 -AMD Opteron 4256 EE,35 -AMD Opteron 4274 HE,65 -AMD Opteron 4276 HE,65 -AMD Opteron 4280,95 -AMD Opteron 4284,95 -AMD Opteron 4310 EE,35 -AMD Opteron 4332 HE,65 -AMD Opteron 4334,95 -AMD Opteron 4340,95 -AMD Opteron 4365,40 -AMD Opteron 4376 HE,65 -AMD Opteron 4386,95 +AMD Opteron 3250 HE,45.0 +AMD Opteron 3260 HE,45.0 +AMD Opteron 3280,65.0 +AMD Opteron 3320 EE,25.0 +AMD Opteron 3350 HE,45.0 +AMD Opteron 3365,65.0 +AMD Opteron 3380,65.0 +AMD Opteron 4226,95.0 +AMD Opteron 4228 HE,65.0 +AMD Opteron 4230 HE,65.0 +AMD Opteron 4234,95.0 +AMD Opteron 4238,95.0 +AMD Opteron 4240,95.0 +AMD Opteron 4256 EE,35.0 +AMD Opteron 4274 HE,65.0 +AMD Opteron 4276 HE,65.0 +AMD Opteron 4280,95.0 +AMD Opteron 4284,95.0 +AMD Opteron 4310 EE,35.0 +AMD Opteron 4332 HE,65.0 +AMD Opteron 4334,95.0 +AMD Opteron 4340,95.0 +AMD Opteron 4365,40.0 +AMD Opteron 4376 HE,65.0 +AMD Opteron 4386,95.0 AMD Opteron 43CX EE,35 AMD Opteron 43GK HE,65 -AMD Opteron 6132 HE,85 -AMD Opteron 6140,115 -AMD Opteron 6166 HE,85 +AMD Opteron 6132 HE,85.0 +AMD Opteron 6140,115.0 +AMD Opteron 6166 HE,85.0 AMD Opteron 6168,115 -AMD Opteron 6176,115 -AMD Opteron 6180 SE,140 -AMD Opteron 6204,115 -AMD Opteron 6212,115 -AMD Opteron 6220,115 -AMD Opteron 6234,115 -AMD Opteron 6238,115 -AMD Opteron 6262 HE,85 -AMD Opteron 6272,115 -AMD Opteron 6274,115 -AMD Opteron 6276,115 -AMD Opteron 6278,115 -AMD Opteron 6282 SE,140 -AMD Opteron 6284 SE,140 -AMD Opteron 6308,115 -AMD Opteron 6320,115 -AMD Opteron 6328,115 -AMD Opteron 6338P,99 -AMD Opteron 6344,115 -AMD Opteron 6348,115 -AMD Opteron 6366 HE,85 -AMD Opteron 6370P,99 -AMD Opteron 6376,115 -AMD Opteron 6378,115 -AMD Opteron 6380,115 -AMD Opteron 6386 SE,140 +AMD Opteron 6176,115.0 +AMD Opteron 6180 SE,140.0 +AMD Opteron 6204,115.0 +AMD Opteron 6212,115.0 +AMD Opteron 6220,115.0 +AMD Opteron 6234,115.0 +AMD Opteron 6238,115.0 +AMD Opteron 6262 HE,85.0 +AMD Opteron 6272,115.0 +AMD Opteron 6274,115.0 +AMD Opteron 6276,115.0 +AMD Opteron 6278,115.0 +AMD Opteron 6282 SE,140.0 +AMD Opteron 6284 SE,140.0 +AMD Opteron 6308,115.0 +AMD Opteron 6320,115.0 +AMD Opteron 6328,115.0 +AMD Opteron 6338P,99.0 +AMD Opteron 6344,115.0 +AMD Opteron 6348,115.0 +AMD Opteron 6366 HE,85.0 +AMD Opteron 6370P,99.0 +AMD Opteron 6376,115.0 +AMD Opteron 6378,115.0 +AMD Opteron 6380,115.0 +AMD Opteron 6386 SE,140.0 AMD Opteron 840,82 AMD Opteron 840 EE,30 AMD Opteron 842,82 @@ -779,7 +937,7 @@ AMD Opteron 856,92 AMD Opteron A1120,25 AMD Opteron A1150,32 AMD Opteron A1170,32 -AMD Opteron X1150,17 +AMD Opteron X1150,17.0 AMD Opteron X2 165,110 AMD Opteron X2 170,110 AMD Opteron X2 175,110 @@ -806,10 +964,23 @@ AMD Opteron X2 880,95 AMD Opteron X2 885,95 AMD Opteron X2 890,95 AMD Opteron X2150,22 -AMD Opteron X2150 APU,22 +AMD Opteron X2150 APU,22.0 AMD Opteron X2170,25 -AMD Opteron X2170 APU,25 +AMD Opteron X2170 APU,25.0 +AMD P650,35.0 +AMD P860,35.0 +AMD Phenom II 1045T,95.0 +AMD Phenom II 1075T,95.0 AMD Phenom II 42 TWKR Black Edition,125 +AMD Phenom II 555,80.0 +AMD Phenom II 565,80.0 +AMD Phenom II 570,80.0 +AMD Phenom II 840,95.0 +AMD Phenom II 850,95.0 +AMD Phenom II 960T,95.0 +AMD Phenom II 965,80.0 +AMD Phenom II 975,125.0 +AMD Phenom II 980,125.0 AMD Phenom II X2 545,80 AMD Phenom II X2 550,80 AMD Phenom II X2 550 BE,80 @@ -896,204 +1067,415 @@ AMD Phenom X4 9850 BE,125 AMD Phenom X4 9850B,95 AMD Phenom X4 9950 BE (125W),125 AMD Phenom X4 9950 BE (140W),140 -AMD Ryzen 3 1200,65 +AMD Ryzen 3 1200,65.0 AMD Ryzen 3 1300,65 -AMD Ryzen 3 1300X,65 -AMD Ryzen 3 2200G,65 -AMD Ryzen 3 2200G with Radeon Vega 8 Graphics,65 -AMD Ryzen 3 2200GE with Radeon Vega 8 Graphics,35 -AMD Ryzen 3 2200U,15 -AMD Ryzen 3 2300U,15 -AMD Ryzen 3 2300X,65 -AMD Ryzen 3 3100,65 -AMD Ryzen 3 3200G,65 -AMD Ryzen 3 3200G with Radeon Vega 8 Graphics,65 -AMD Ryzen 3 3200GE (OEM Only),35 -AMD Ryzen 3 3200U,15 -AMD Ryzen 3 3250C,15 -AMD Ryzen 3 3250U,15 -AMD Ryzen 3 3300U,15 -AMD Ryzen 3 3300X,65 -AMD Ryzen 3 3350U,15 +AMD Ryzen 3 1300X,65.0 +AMD Ryzen 3 210,28.0 +AMD Ryzen 3 2200G,65.0 +AMD Ryzen 3 2200GE,35.0 +AMD Ryzen 3 2200U,15.0 +AMD Ryzen 3 2300U,15.0 +AMD Ryzen 3 2300X,65.0 +AMD Ryzen 3 3100,65.0 +AMD Ryzen 3 3200G,65.0 +AMD Ryzen 3 3200GE (OEM Only),35.0 +AMD Ryzen 3 3200U,15.0 +AMD Ryzen 3 3250C,15.0 +AMD Ryzen 3 3250U,15.0 +AMD Ryzen 3 3300U,15.0 +AMD Ryzen 3 3300X,65.0 +AMD Ryzen 3 3350U,15.0 +AMD Ryzen 3 4100,65.0 AMD Ryzen 3 4300G,65 -AMD Ryzen 3 4300G (OEM Only),65 +AMD Ryzen 3 4300G (OEM Only),65.0 AMD Ryzen 3 4300GE,35 -AMD Ryzen 3 4300GE (OEM Only),35 -AMD Ryzen 3 4300U,25 -AMD Ryzen 3 5300G (OEM Only),65 -AMD Ryzen 3 5300GE (OEM Only),35 -AMD Ryzen 3 5300U,15 -AMD Ryzen 3 5400U,15 -AMD Ryzen 3 PRO 1200,65 -AMD Ryzen 3 PRO 1300,65 -AMD Ryzen 3 PRO 2200G with Radeon Vega 8 Graphics,65 -AMD Ryzen 3 PRO 2200GE with Radeon Vega 8 Graphics,35 -AMD Ryzen 3 PRO 2300U,15 -AMD Ryzen 3 PRO 3200G,65 -AMD Ryzen 3 PRO 3200GE,35 -AMD Ryzen 3 PRO 3300U,15 -AMD Ryzen 3 PRO 4350G,65 -AMD Ryzen 3 PRO 4350GE,35 -AMD Ryzen 3 PRO 4450U,15 -AMD Ryzen 3 PRO 5350G,65 -AMD Ryzen 3 PRO 5350GE,35 -AMD Ryzen 3 PRO 5450U,15 -AMD Ryzen 5 1400,65 -AMD Ryzen 5 1500X,65 -AMD Ryzen 5 1600,65 -AMD Ryzen 5 1600 (AF),65 -AMD Ryzen 5 1600X,95 -AMD Ryzen 5 2400G,65 -AMD Ryzen 5 2400G with Radeon RX Vega 11 Graphics,65 -AMD Ryzen 5 2400GE with Radeon RX Vega 11 Graphics,35 -AMD Ryzen 5 2500U,15 -AMD Ryzen 5 2500X,65 -AMD Ryzen 5 2600,65 -AMD Ryzen 5 2600E,45 -AMD Ryzen 5 2600H,45 -AMD Ryzen 5 2600X,95 -AMD Ryzen 5 3400G,65 -AMD Ryzen 5 3400G with Radeon RX Vega 11 Graphics,65 -AMD Ryzen 5 3400GE (OEM Only),35 -AMD Ryzen 5 3450U,15 +AMD Ryzen 3 4300GE (OEM Only),35.0 +AMD Ryzen 3 4300U,15.0 +AMD Ryzen 3 5125C,15.0 +AMD Ryzen 3 5300G (OEM Only),65.0 +AMD Ryzen 3 5300GE (OEM Only),35.0 +AMD Ryzen 3 5300U,15.0 +AMD Ryzen 3 5305G,65.0 +AMD Ryzen 3 5305GE,35.0 +AMD Ryzen 3 5400U,15.0 +AMD Ryzen 3 5425C,15.0 +AMD Ryzen 3 5425U,15.0 +AMD Ryzen 3 7320C,15.0 +AMD Ryzen 3 7320U,15.0 +AMD Ryzen 3 7330U,15.0 +AMD Ryzen 3 7335U,28.0 +AMD Ryzen 3 7440U,28.0 +AMD Ryzen 3 8300G,65.0 +AMD Ryzen 3 8300GE,35.0 +AMD Ryzen 3 8440U,28.0 +AMD Ryzen 3 PRO 1200,65.0 +AMD Ryzen 3 PRO 1300,65.0 +AMD Ryzen 3 PRO 210,28.0 +AMD Ryzen 3 PRO 2200G,65.0 +AMD Ryzen 3 PRO 2200GE,35.0 +AMD Ryzen 3 PRO 2300U,15.0 +AMD Ryzen 3 PRO 3200G,65.0 +AMD Ryzen 3 PRO 3200GE,35.0 +AMD Ryzen 3 PRO 3300U,15.0 +AMD Ryzen 3 PRO 4350G,65.0 +AMD Ryzen 3 PRO 4350GE,35.0 +AMD Ryzen 3 PRO 4355G,65.0 +AMD Ryzen 3 PRO 4355GE,35.0 +AMD Ryzen 3 PRO 4450U,15.0 +AMD Ryzen 3 PRO 5350G,65.0 +AMD Ryzen 3 PRO 5350GE,35.0 +AMD Ryzen 3 PRO 5355G,65.0 +AMD Ryzen 3 PRO 5355GE,35.0 +AMD Ryzen 3 PRO 5450U,15.0 +AMD Ryzen 3 PRO 5475U,15.0 +AMD Ryzen 3 PRO 7330U,15.0 +AMD Ryzen 3 PRO 8300G,65.0 +AMD Ryzen 3 PRO 8300GE,35.0 +AMD Ryzen 5 1400,65.0 +AMD Ryzen 5 1500X,65.0 +AMD Ryzen 5 1600,65.0 +AMD Ryzen 5 1600 (AF),65.0 +AMD Ryzen 5 1600X,95.0 +AMD Ryzen 5 220,28.0 +AMD Ryzen 5 230,28.0 +AMD Ryzen 5 240,45.0 +AMD Ryzen 5 2400G,65.0 +AMD Ryzen 5 2400GE,35.0 +AMD Ryzen 5 2500U,15.0 +AMD Ryzen 5 2500X,65.0 +AMD Ryzen 5 2600,65.0 +AMD Ryzen 5 2600E,45.0 +AMD Ryzen 5 2600H,45.0 +AMD Ryzen 5 2600X,95.0 +AMD Ryzen 5 3400G,65.0 +AMD Ryzen 5 3400GE (OEM Only),35.0 +AMD Ryzen 5 3450U,15.0 +AMD Ryzen 5 3500 (OEM Only),65.0 AMD Ryzen 5 3500 Processor (OEM Only),65 -AMD Ryzen 5 3500C,15 -AMD Ryzen 5 3500U,15 +AMD Ryzen 5 3500C,15.0 +AMD Ryzen 5 3500U,15.0 AMD Ryzen 5 3500X,65 -AMD Ryzen 5 3550H,35 +AMD Ryzen 5 3550H,35.0 AMD Ryzen 5 3580U,15 +AMD Ryzen 5 3580U Microsoft Surface Edition,15.0 AMD Ryzen 5 3580U Microsoft Surface® Edition,15 -AMD Ryzen 5 3600,65 -AMD Ryzen 5 3600X,95 -AMD Ryzen 5 3600XT,95 -AMD Ryzen 5 4500U,25 -AMD Ryzen 5 4600G,65 +AMD Ryzen 5 3600,65.0 +AMD Ryzen 5 3600X,95.0 +AMD Ryzen 5 3600XT,95.0 +AMD Ryzen 5 4500,65.0 +AMD Ryzen 5 4500U,15.0 +AMD Ryzen 5 4600G,65.0 AMD Ryzen 5 4600G (OEM Only),65 AMD Ryzen 5 4600GE,35 -AMD Ryzen 5 4600GE (OEM Only),35 -AMD Ryzen 5 4600H,54 +AMD Ryzen 5 4600GE (OEM Only),35.0 +AMD Ryzen 5 4600H,45.0 AMD Ryzen 5 4600HS,35 -AMD Ryzen 5 4600U,25 +AMD Ryzen 5 4600U,15.0 +AMD Ryzen 5 4680U Microsoft Surface Edition,15.0 AMD Ryzen 5 4680U Microsoft Surface® Edition,15 -AMD Ryzen 5 5500U,25 -AMD Ryzen 5 5600G,65 -AMD Ryzen 5 5600GE,35 -AMD Ryzen 5 5600H,45 -AMD Ryzen 5 5600HS,35 -AMD Ryzen 5 5600U,15 -AMD Ryzen 5 5600X,65 -AMD Ryzen 5 PRO 1500,65 -AMD Ryzen 5 PRO 1600,65 -AMD Ryzen 5 PRO 2400G,65 -AMD Ryzen 5 PRO 2400G with Radeon Vega 11 Graphics,65 -AMD Ryzen 5 PRO 2400GE with Radeon Vega 11 Graphics,35 -AMD Ryzen 5 PRO 2500U,15 -AMD Ryzen 5 PRO 2600,65 -AMD Ryzen 5 PRO 3350G,65 -AMD Ryzen 5 PRO 3350GE,35 -AMD Ryzen 5 PRO 3400G,65 -AMD Ryzen 5 PRO 3400GE,35 -AMD Ryzen 5 PRO 3500U,15 -AMD Ryzen 5 PRO 3600,65 -AMD Ryzen 5 PRO 4650G,65 -AMD Ryzen 5 PRO 4650GE,35 -AMD Ryzen 5 PRO 4650U,15 -AMD Ryzen 5 PRO 5650G,65 -AMD Ryzen 5 PRO 5650GE,35 -AMD Ryzen 5 PRO 5650U,15 -AMD Ryzen 7 1700,65 +AMD Ryzen 5 5500,65.0 +AMD Ryzen 5 5500GT,65.0 +AMD Ryzen 5 5500H,45.0 +AMD Ryzen 5 5500U,15.0 +AMD Ryzen 5 5560U,15.0 +AMD Ryzen 5 5600,65.0 +AMD Ryzen 5 5600G,65.0 +AMD Ryzen 5 5600GE,35.0 +AMD Ryzen 5 5600GT,65.0 +AMD Ryzen 5 5600H,45.0 +AMD Ryzen 5 5600HS,35.0 +AMD Ryzen 5 5600T,65.0 +AMD Ryzen 5 5600U,15.0 +AMD Ryzen 5 5600X,65.0 +AMD Ryzen 5 5600X3D,105.0 +AMD Ryzen 5 5600XT,65.0 +AMD Ryzen 5 5605G,65.0 +AMD Ryzen 5 5605GE,35.0 +AMD Ryzen 5 5625C,15.0 +AMD Ryzen 5 5625U,15.0 +AMD Ryzen 5 6600H,45.0 +AMD Ryzen 5 6600HS​,35.0 +AMD Ryzen 5 7235HS,45.0 +AMD Ryzen 5 7400F,65.0 +AMD Ryzen 5 7430U,15.0 +AMD Ryzen 5 7500F,65.0 +AMD Ryzen 5 7520C,15.0 +AMD Ryzen 5 7520U,15.0 +AMD Ryzen 5 7530U,15.0 +AMD Ryzen 5 7533HS,54.0 +AMD Ryzen 5 7535HS,54.0 +AMD Ryzen 5 7535U,28.0 +AMD Ryzen 5 7540U,28.0 +AMD Ryzen 5 7545U,28.0 +AMD Ryzen 5 7600,65.0 +AMD Ryzen 5 7600X,105.0 +AMD Ryzen 5 7600X3D,65.0 +AMD Ryzen 5 7640HS,54.0 +AMD Ryzen 5 7640U,28.0 +AMD Ryzen 5 7645HX,55.0 +AMD Ryzen 5 8400F,65.0 +AMD Ryzen 5 8500G,65.0 +AMD Ryzen 5 8500GE,35.0 +AMD Ryzen 5 8540U,28.0 +AMD Ryzen 5 8600G,65.0 +AMD Ryzen 5 8640HS,28.0 +AMD Ryzen 5 8640U,28.0 +AMD Ryzen 5 8645HS,45.0 +AMD Ryzen 5 9600,65.0 +AMD Ryzen 5 9600X,65.0 +AMD Ryzen 5 PRO 1500,65.0 +AMD Ryzen 5 PRO 1600,65.0 +AMD Ryzen 5 PRO 220,28.0 +AMD Ryzen 5 PRO 230,28.0 +AMD Ryzen 5 PRO 2400G,65.0 +AMD Ryzen 5 PRO 2400GE,35.0 +AMD Ryzen 5 PRO 2500U,15.0 +AMD Ryzen 5 PRO 2600,65.0 +AMD Ryzen 5 PRO 3350G,65.0 +AMD Ryzen 5 PRO 3350GE,35.0 +AMD Ryzen 5 PRO 3400G,65.0 +AMD Ryzen 5 PRO 3400GE,35.0 +AMD Ryzen 5 PRO 3500U,15.0 +AMD Ryzen 5 PRO 3600,65.0 +AMD Ryzen 5 PRO 4650G,65.0 +AMD Ryzen 5 PRO 4650GE,35.0 +AMD Ryzen 5 PRO 4650U,15.0 +AMD Ryzen 5 PRO 4655G,65.0 +AMD Ryzen 5 PRO 4655GE,35.0 +AMD Ryzen 5 PRO 5645,65.0 +AMD Ryzen 5 PRO 5650G,65.0 +AMD Ryzen 5 PRO 5650GE,35.0 +AMD Ryzen 5 PRO 5650U,15.0 +AMD Ryzen 5 PRO 5655G,65.0 +AMD Ryzen 5 PRO 5655GE,35.0 +AMD Ryzen 5 PRO 5675U,15.0 +AMD Ryzen 5 PRO 6650H,45.0 +AMD Ryzen 5 PRO 6650HS,35.0 +AMD Ryzen 5 PRO 7530U,15.0 +AMD Ryzen 5 PRO 7645,65.0 +AMD Ryzen 5 PRO 8500G,65.0 +AMD Ryzen 5 PRO 8500GE,35.0 +AMD Ryzen 5 PRO 8540U,28.0 +AMD Ryzen 5 PRO 8600G,65.0 +AMD Ryzen 5 PRO 8600GE,35.0 +AMD Ryzen 5 PRO 8640HS,28.0 +AMD Ryzen 5 PRO 8640U,28.0 +AMD Ryzen 5 PRO 8645HS,45.0 +AMD Ryzen 7 1700,65.0 AMD Ryzen 7 1700 Processor,65 -AMD Ryzen 7 1700X,95 -AMD Ryzen 7 1800X,95 -AMD Ryzen 7 2700,65 -AMD Ryzen 7 2700E,65 +AMD Ryzen 7 1700X,95.0 +AMD Ryzen 7 1800X,95.0 +AMD Ryzen 7 250,28.0 +AMD Ryzen 7 260,45.0 +AMD Ryzen 7 2700,65.0 +AMD Ryzen 7 2700E,45.0 AMD Ryzen 7 2700E Processor,45 -AMD Ryzen 7 2700U,15 -AMD Ryzen 7 2700X,105 +AMD Ryzen 7 2700U,15.0 +AMD Ryzen 7 2700X,105.0 AMD Ryzen 7 2700X 50th Anniversary,105 -AMD Ryzen 7 2800H,45 -AMD Ryzen 7 3700C,15 -AMD Ryzen 7 3700U,15 -AMD Ryzen 7 3700X,65 -AMD Ryzen 7 3750H,35 +AMD Ryzen 7 2800H,45.0 +AMD Ryzen 7 3700C,15.0 +AMD Ryzen 7 3700U,15.0 +AMD Ryzen 7 3700X,65.0 +AMD Ryzen 7 3750H,35.0 AMD Ryzen 7 3780U,15 +AMD Ryzen 7 3780U Microsoft Surface Edition,15.0 AMD Ryzen 7 3780U Microsoft Surface® Edition,15 -AMD Ryzen 7 3800X,105 -AMD Ryzen 7 3800XT,105 +AMD Ryzen 7 3800X,105.0 +AMD Ryzen 7 3800XT,105.0 AMD Ryzen 7 4700G,65 -AMD Ryzen 7 4700G (OEM Only),65 +AMD Ryzen 7 4700G (OEM Only),65.0 AMD Ryzen 7 4700GE,35 -AMD Ryzen 7 4700GE (OEM Only),35 -AMD Ryzen 7 4700U,25 -AMD Ryzen 7 4800H,54 -AMD Ryzen 7 4800HS,35 -AMD Ryzen 7 4800U,25 +AMD Ryzen 7 4700GE (OEM Only),35.0 +AMD Ryzen 7 4700U,15.0 +AMD Ryzen 7 4800H,45.0 +AMD Ryzen 7 4800HS,45.0 +AMD Ryzen 7 4800U,15.0 +AMD Ryzen 7 4980U Microsoft Surface Edition,15.0 AMD Ryzen 7 4980U Microsoft Surface® Edition,15 -AMD Ryzen 7 5700G,65 -AMD Ryzen 7 5700GE,35 -AMD Ryzen 7 5700U,15 -AMD Ryzen 7 5800 (OEM Only),65 -AMD Ryzen 7 5800H,54 -AMD Ryzen 7 5800HS,35 -AMD Ryzen 7 5800U,15 -AMD Ryzen 7 5800X,105 -AMD Ryzen 7 PRO 1700,65 -AMD Ryzen 7 PRO 1700X,95 +AMD Ryzen 7 5700,65.0 +AMD Ryzen 7 5700G,65.0 +AMD Ryzen 7 5700GE,35.0 +AMD Ryzen 7 5700U,15.0 +AMD Ryzen 7 5700X,65.0 +AMD Ryzen 7 5700X3D,105.0 +AMD Ryzen 7 5705G,65.0 +AMD Ryzen 7 5705GE,35.0 +AMD Ryzen 7 5800 (OEM Only),65.0 +AMD Ryzen 7 5800H,45.0 +AMD Ryzen 7 5800HS,35.0 +AMD Ryzen 7 5800U,15.0 +AMD Ryzen 7 5800X,105.0 +AMD Ryzen 7 5800X3D,105.0 +AMD Ryzen 7 5800XT,105.0 +AMD Ryzen 7 5825C,15.0 +AMD Ryzen 7 5825U,15.0 +AMD Ryzen 7 6800H,45.0 +AMD Ryzen 7 6800HS,35.0 +AMD Ryzen 7 7435HS,45.0 +AMD Ryzen 7 7700,65.0 +AMD Ryzen 7 7700X,105.0 +AMD Ryzen 7 7730U,15.0 +AMD Ryzen 7 7735HS,54.0 +AMD Ryzen 7 7735U,28.0 +AMD Ryzen 7 7745HX,55.0 +AMD Ryzen 7 7800X3D,120.0 +AMD Ryzen 7 7840HS,54.0 +AMD Ryzen 7 7840HX,55.0 +AMD Ryzen 7 7840U,28.0 +AMD Ryzen 7 8700F,65.0 +AMD Ryzen 7 8700G,65.0 +AMD Ryzen 7 8745HX,55.0 +AMD Ryzen 7 8840HS,28.0 +AMD Ryzen 7 8840HX,55.0 +AMD Ryzen 7 8840U,28.0 +AMD Ryzen 7 8845HS,45.0 +AMD Ryzen 7 9700X,65.0 +AMD Ryzen 7 9800X3D,120.0 +AMD Ryzen 7 PRO 1700,65.0 +AMD Ryzen 7 PRO 1700X,95.0 AMD Ryzen 7 PRO 1700X Processor,95 -AMD Ryzen 7 PRO 2700,65 -AMD Ryzen 7 PRO 2700U,15 -AMD Ryzen 7 PRO 2700X,95 -AMD Ryzen 7 PRO 3700,65 -AMD Ryzen 7 PRO 3700U,15 -AMD Ryzen 7 PRO 4750G,65 -AMD Ryzen 7 PRO 4750GE,35 -AMD Ryzen 7 PRO 4750U,15 -AMD Ryzen 7 PRO 5750G,65 -AMD Ryzen 7 PRO 5750GE,35 -AMD Ryzen 7 PRO 5850U,15 +AMD Ryzen 7 PRO 250,28.0 +AMD Ryzen 7 PRO 2700,65.0 +AMD Ryzen 7 PRO 2700U,15.0 +AMD Ryzen 7 PRO 2700X,95.0 +AMD Ryzen 7 PRO 3700,65.0 +AMD Ryzen 7 PRO 3700U,15.0 +AMD Ryzen 7 PRO 4750G,65.0 +AMD Ryzen 7 PRO 4750GE,35.0 +AMD Ryzen 7 PRO 4750U,15.0 +AMD Ryzen 7 PRO 5750G,65.0 +AMD Ryzen 7 PRO 5750GE,35.0 +AMD Ryzen 7 PRO 5755G,65.0 +AMD Ryzen 7 PRO 5755GE,35.0 +AMD Ryzen 7 PRO 5845,65.0 +AMD Ryzen 7 PRO 5850U,15.0 +AMD Ryzen 7 PRO 5875U,15.0 +AMD Ryzen 7 PRO 6850H,45.0 +AMD Ryzen 7 PRO 6850HS,35.0 +AMD Ryzen 7 PRO 6860Z,28.0 +AMD Ryzen 7 PRO 7730U,15.0 +AMD Ryzen 7 PRO 7745,65.0 +AMD Ryzen 7 PRO 8700G,65.0 +AMD Ryzen 7 PRO 8700GE,35.0 +AMD Ryzen 7 PRO 8840HS,28.0 +AMD Ryzen 7 PRO 8840U,28.0 +AMD Ryzen 7 PRO 8845HS,45.0 +AMD Ryzen 9 270,45.0 +AMD Ryzen 9 3900 (OEM Only),65.0 AMD Ryzen 9 3900 Processor (OEM Only),65 -AMD Ryzen 9 3900X,105 -AMD Ryzen 9 3900XT,105 -AMD Ryzen 9 3950X,105 -AMD Ryzen 9 4900H,54 -AMD Ryzen 9 4900HS,35 -AMD Ryzen 9 5900 (OEM Only),65 -AMD Ryzen 9 5900HS,35 +AMD Ryzen 9 3900X,105.0 +AMD Ryzen 9 3900XT,105.0 +AMD Ryzen 9 3950X,105.0 +AMD Ryzen 9 4900H,54.0 +AMD Ryzen 9 4900HS,35.0 +AMD Ryzen 9 5900 (OEM Only),65.0 +AMD Ryzen 9 5900HS,35.0 AMD Ryzen 9 5900HX,45 -AMD Ryzen 9 5900X,105 -AMD Ryzen 9 5950X,105 -AMD Ryzen 9 5980HS,35 +AMD Ryzen 9 5900X,105.0 +AMD Ryzen 9 5900XT,105.0 +AMD Ryzen 9 5950X,105.0 +AMD Ryzen 9 5980HS,35.0 AMD Ryzen 9 5980HX,45 -AMD Ryzen 9 PRO 3900,65 +AMD Ryzen 9 6900HS​,35.0 +AMD Ryzen 9 6900HX,45.0 +AMD Ryzen 9 6980HS,35.0 +AMD Ryzen 9 6980HX,45.0 +AMD Ryzen 9 7845HX,55.0 +AMD Ryzen 9 7900,65.0 +AMD Ryzen 9 7900X,170.0 +AMD Ryzen 9 7900X3D,120.0 +AMD Ryzen 9 7940HS,54.0 +AMD Ryzen 9 7940HX,55.0 +AMD Ryzen 9 7945HX,55.0 +AMD Ryzen 9 7945HX3D,55.0 +AMD Ryzen 9 7950X,170.0 +AMD Ryzen 9 7950X3D,120.0 +AMD Ryzen 9 8940HX,55.0 +AMD Ryzen 9 8945HS,45.0 +AMD Ryzen 9 8945HX,55.0 +AMD Ryzen 9 9850HX,55.0 +AMD Ryzen 9 9900X,120.0 +AMD Ryzen 9 9900X3D,120.0 +AMD Ryzen 9 9950X,170.0 +AMD Ryzen 9 9950X3D,170.0 +AMD Ryzen 9 9955HX,55.0 +AMD Ryzen 9 9955HX3D,55.0 +AMD Ryzen 9 PRO 3900,65.0 +AMD Ryzen 9 PRO 5945,65.0 +AMD Ryzen 9 PRO 6950H,45.0 +AMD Ryzen 9 PRO 6950HS,35.0 +AMD Ryzen 9 PRO 7945,65.0 +AMD Ryzen 9 PRO 8945HS,45.0 +AMD Ryzen AI 5 340,28.0 +AMD Ryzen AI 5 PRO 340,28.0 +AMD Ryzen AI 7 350,28.0 +AMD Ryzen AI 7 PRO 350,28.0 +AMD Ryzen AI 7 PRO 360,28.0 +AMD Ryzen AI 9 365,28.0 +AMD Ryzen AI 9 HX 370,28.0 +AMD Ryzen AI 9 HX 375,28.0 +AMD Ryzen AI 9 HX PRO 370,28.0 +AMD Ryzen AI 9 HX PRO 375,28.0 +AMD Ryzen AI Max 385,55.0 +AMD Ryzen AI Max 390,55.0 +AMD Ryzen AI Max PRO 380,55.0 +AMD Ryzen AI Max PRO 385,55.0 +AMD Ryzen AI Max PRO 390,55.0 +AMD Ryzen AI Max+ 395,55.0 +AMD Ryzen AI Max+ PRO 395,55.0 AMD Ryzen Embedded V1202B,15 AMD Ryzen Embedded V1605B,15 AMD Ryzen Embedded V1756B,45 AMD Ryzen Embedded V1807B,45 AMD Ryzen Threadripper 1900,125 -AMD Ryzen Threadripper 1900X,180 +AMD Ryzen Threadripper 1900X,180.0 AMD Ryzen Threadripper 1920,140 -AMD Ryzen Threadripper 1920X,180 +AMD Ryzen Threadripper 1920X,180.0 AMD Ryzen Threadripper 1940,180 AMD Ryzen Threadripper 1940X,180 AMD Ryzen Threadripper 1950,180 -AMD Ryzen Threadripper 1950X,180 -AMD Ryzen Threadripper 2920X,180 -AMD Ryzen Threadripper 2950X,180 -AMD Ryzen Threadripper 2970WX,250 -AMD Ryzen Threadripper 2990WX,250 -AMD Ryzen Threadripper 3960X,280 -AMD Ryzen Threadripper 3970X,280 +AMD Ryzen Threadripper 1950X,180.0 +AMD Ryzen Threadripper 2920X,180.0 +AMD Ryzen Threadripper 2950X,180.0 +AMD Ryzen Threadripper 2970WX,250.0 +AMD Ryzen Threadripper 2990WX,250.0 +AMD Ryzen Threadripper 3960X,280.0 +AMD Ryzen Threadripper 3970X,280.0 AMD Ryzen Threadripper 3980X,280 -AMD Ryzen Threadripper 3990X,280 -AMD Ryzen Threadripper PRO 3945WX,280 -AMD Ryzen Threadripper PRO 3955WX,280 -AMD Ryzen Threadripper PRO 3975WX,280 -AMD Ryzen Threadripper PRO 3995WX,280 -AMD Ryzen Threadripper PRO 5945WX,280 -AMD Ryzen Threadripper PRO 5955WX,280 -AMD Ryzen Threadripper PRO 5965WX,280 -AMD Ryzen Threadripper PRO 5975WX,280 -AMD Ryzen Threadripper PRO 5995WX,280 +AMD Ryzen Threadripper 3990X,280.0 +AMD Ryzen Threadripper 7960X,350.0 +AMD Ryzen Threadripper 7970X,350.0 +AMD Ryzen Threadripper 7980X,350.0 +AMD Ryzen Threadripper 9960X,350.0 +AMD Ryzen Threadripper 9970X,350.0 +AMD Ryzen Threadripper 9980X,350.0 +AMD Ryzen Threadripper PRO 3945WX,280.0 +AMD Ryzen Threadripper PRO 3955WX,280.0 +AMD Ryzen Threadripper PRO 3975WX,280.0 +AMD Ryzen Threadripper PRO 3995WX,280.0 +AMD Ryzen Threadripper PRO 5945WX,280.0 +AMD Ryzen Threadripper PRO 5955WX,280.0 +AMD Ryzen Threadripper PRO 5965WX,280.0 +AMD Ryzen Threadripper PRO 5975WX,280.0 +AMD Ryzen Threadripper PRO 5995WX,280.0 +AMD Ryzen Threadripper PRO 7945WX,350.0 +AMD Ryzen Threadripper PRO 7955WX,350.0 +AMD Ryzen Threadripper PRO 7965WX,350.0 +AMD Ryzen Threadripper PRO 7975WX,350.0 +AMD Ryzen Threadripper PRO 7985WX,350.0 +AMD Ryzen Threadripper PRO 7995WX,350.0 +AMD Ryzen Threadripper PRO 9945WX,350.0 +AMD Ryzen Threadripper PRO 9955WX,350.0 +AMD Ryzen Threadripper PRO 9965WX,350.0 +AMD Ryzen Threadripper PRO 9975WX,350.0 +AMD Ryzen Threadripper PRO 9985WX,350.0 +AMD Ryzen Threadripper PRO 9995WX,350.0 +AMD Ryzen Z1,28.0 +AMD Ryzen Z1 Extreme,28.0 +AMD Ryzen Z2,28.0 +AMD Ryzen Z2 Extreme,28.0 +AMD Ryzen Z2 Go,28.0 AMD Sempron 130,45 AMD Sempron 140,45 AMD Sempron 145,45 @@ -1104,6 +1486,7 @@ AMD Sempron 2300+,62 AMD Sempron 2400+,62 AMD Sempron 2500+,62 AMD Sempron 2600+,62 +AMD Sempron 2650 APU,25.0 AMD Sempron 2800+,62 AMD Sempron 3000+,62 AMD Sempron 3000+ EE SFF,35 @@ -1117,6 +1500,7 @@ AMD Sempron 3500+,62 AMD Sempron 3500+ EE SFF,35 AMD Sempron 3600+,62 AMD Sempron 3800+,62 +AMD Sempron 3850 APU,25.0 AMD Sempron LE-1100,45 AMD Sempron LE-1150,45 AMD Sempron LE-1200,45 @@ -1151,12 +1535,13 @@ AMD Turion X2 Ultra ZM-85,35 AMD Turion X2 Ultra ZM-86,35 AMD Turion X2 Ultra ZM-87,35 AMD Turion X2 Ultra ZM-88,35 +AMD X940,45.0 AMD Z-01,6 AMD Z-60,5 Apple M1,10 -Athlon 5150 APU with Radeon R3 Series,25 -Athlon 5350 APU with Radeon R3 Series,25 -Athlon 5370 APU with Radeon R3 Series,25 +Athlon 5150 APU,25 +Athlon 5350 APU,25 +Athlon 5370 APU,25 B57,80 B59,80 B60,80 @@ -1164,16 +1549,16 @@ B75,95 B77,95 B97,95 B99,95 -E1 Micro-6200T with Radeon R2 Graphics,3.95 -E1-2100 with Radeon HD 8210,9 -E1-2200 with Radeon HD 8210,9 -E1-2500 with Radeon HD 8240,15 -E1-6010 with Radeon R2 Graphics,10 -E1-7010 with Radeon R2 Graphics,10 -E2-3000 with Radeon HD 8280,15 -E2-3800 with Radeon HD 8280,15 -E2-6110 with Radeon R2 Graphics,15 -E2-7110 with Radeon R2 Graphics,65 +E1 Micro-6200T,3.95 +E1-2100,9 +E1-2200,9 +E1-2500,15 +E1-6010,10 +E1-7010,10 +E2-3000,15 +E2-3800,15 +E2-6110,15 +E2-7110,65 FX 6100,95 FX-4100,95 FX-4130,125 @@ -1184,9 +1569,8 @@ FX-4350,125 FX-6200,125 FX-6300,95 FX-6350,125 -FX-6350 with Wraith cooler,125 -FX-7500 with Radeon R7 Graphics,20 -FX-7600P with Radeon R7 Graphics,35 +FX-7500,20 +FX-7600P,35 FX-8120,125 FX-8150,125 FX-8300,95 @@ -1194,9 +1578,7 @@ FX-8310,95 FX-8320,125 FX-8320E,95 FX-8350,125 -FX-8350 with Wraith cooler,125 FX-8370,125 -FX-8370 with Wraith cooler,125 FX-8370E,95 FX-9370,220 FX-9590,220 @@ -1204,43 +1586,50 @@ Intel A100,3 Intel A110,3 Intel Atom 230,4 Intel Atom 330,8 -Intel Atom C2308,6 -Intel Atom C2316,7 -Intel Atom C2338,7 -Intel Atom C2350,6 -Intel Atom C2358,7 -Intel Atom C2508,9.5 -Intel Atom C2516,10 -Intel Atom C2518,13 -Intel Atom C2530,9 -Intel Atom C2538,15 -Intel Atom C2550,14 -Intel Atom C2558,15 -Intel Atom C2718,18 -Intel Atom C2730,12 -Intel Atom C2738,20 -Intel Atom C2750,20 -Intel Atom C2758,20 -Intel Atom C3308,9.5 -Intel Atom C3336,11 -Intel Atom C3338,8.5 -Intel Atom C3338R,10.5 -Intel Atom C3436L,10.75 -Intel Atom C3508,11.5 -Intel Atom C3538,15 -Intel Atom C3558,16 -Intel Atom C3558R,17 -Intel Atom C3708,17 -Intel Atom C3750,21 -Intel Atom C3758,25 -Intel Atom C3758R,26 -Intel Atom C3808,25 -Intel Atom C3830,21 -Intel Atom C3850,25 -Intel Atom C3858,25 -Intel Atom C3950,24 -Intel Atom C3955,32 -Intel Atom C3958,31 +Intel Atom C2308,6.0 +Intel Atom C2316,7.0 +Intel Atom C2338,7.0 +Intel Atom C2350,6.0 +Intel Atom C2358,7.0 +Intel Atom C2508,9.0 +Intel Atom C2516,10.0 +Intel Atom C2518,13.0 +Intel Atom C2530,9.0 +Intel Atom C2538,15.0 +Intel Atom C2550,14.0 +Intel Atom C2558,15.0 +Intel Atom C2718,18.0 +Intel Atom C2730,12.0 +Intel Atom C2738,20.0 +Intel Atom C2750,20.0 +Intel Atom C2758,20.0 +Intel Atom C3308,9.0 +Intel Atom C3336,11.0 +Intel Atom C3338,8.0 +Intel Atom C3338R,10.0 +Intel Atom C3436L,10.0 +Intel Atom C3508,11.0 +Intel Atom C3538,15.0 +Intel Atom C3558,16.0 +Intel Atom C3558R,17.0 +Intel Atom C3708,17.0 +Intel Atom C3750,21.0 +Intel Atom C3758,25.0 +Intel Atom C3758R,26.0 +Intel Atom C3808,25.0 +Intel Atom C3830,21.0 +Intel Atom C3850,25.0 +Intel Atom C3858,25.0 +Intel Atom C3950,24.0 +Intel Atom C3955,32.0 +Intel Atom C3958,31.0 +Intel Atom C5115,43.0 +Intel Atom C5125,50.0 +Intel Atom C5310,32.0 +Intel Atom C5315,38.0 +Intel Atom C5320,41.0 +Intel Atom C5325,41.0 +Intel Atom C5335C1,50.0 Intel Atom CE4100,7 Intel Atom CE4110,7 Intel Atom CE4130,7 @@ -1254,21 +1643,21 @@ Intel Atom CE4270,7 Intel Atom CE4275,7 Intel Atom CE4277,7 Intel Atom CE5315,15 -Intel Atom D2500,10 -Intel Atom D2550,10 +Intel Atom D2500,10.0 +Intel Atom D2550,10.0 Intel Atom D2560,10 -Intel Atom D2700,10 +Intel Atom D2700,10.0 Intel Atom D2701,10 Intel Atom D410,10 Intel Atom D425,10 Intel Atom D510,13 Intel Atom D525,13 -Intel Atom E3805,3 -Intel Atom E3815,5 -Intel Atom E3825,6 -Intel Atom E3826,7 -Intel Atom E3827,8 -Intel Atom E3845,10 +Intel Atom E3805,3.0 +Intel Atom E3815,5.0 +Intel Atom E3825,6.0 +Intel Atom E3826,7.0 +Intel Atom E3827,8.0 +Intel Atom E3845,10.0 Intel Atom E620,3.3 Intel Atom E620T,3.3 Intel Atom E625C,2.7 @@ -1283,10 +1672,10 @@ Intel Atom E665C,3.6 Intel Atom E665CT,7 Intel Atom E680,4.5 Intel Atom E680T,4.5 -Intel Atom N2600,3.5 +Intel Atom N2600,3.0 Intel Atom N270,2.5 Intel Atom N280,2.5 -Intel Atom N2800,6.5 +Intel Atom N2800,6.0 Intel Atom N435,5.0 Intel Atom N450,5.5 Intel Atom N455,6.5 @@ -1294,9 +1683,18 @@ Intel Atom N470,6.5 Intel Atom N475,6.5 Intel Atom N550,8.5 Intel Atom N570,8.5 -Intel Atom S1220,8.1 -Intel Atom S1240,6.1 -Intel Atom S1260,8.5 +Intel Atom P5322,55.0 +Intel Atom P5332,61.0 +Intel Atom P5342,71.0 +Intel Atom P5352,78.0 +Intel Atom P5362,83.0 +Intel Atom P5721,48.0 +Intel Atom P5731,54.0 +Intel Atom P5742,67.0 +Intel Atom P5752,74.0 +Intel Atom S1220,8.0 +Intel Atom S1240,6.0 +Intel Atom S1260,8.0 Intel Atom S1269,11.7 Intel Atom S1279,13.1 Intel Atom S1289,14.1 @@ -1328,25 +1726,37 @@ Intel Atom Z620,1.3 Intel Atom Z625,2.2 Intel Atom Z650,3 Intel Atom Z670,3 -Intel Atom x5-E3930,6.5 -Intel Atom x5-E3940,9.5 -Intel Atom x5-E8000,5 +Intel Atom x5-E3930,6.0 +Intel Atom x5-E3940,9.0 +Intel Atom x5-E8000,5.0 Intel Atom x5-Z8300,2.17 Intel Atom x5-Z8330,2.17 Intel Atom x5-Z8350,2.17 Intel Atom x5-Z8500,2.17 Intel Atom x5-Z8550,2.17 -Intel Atom x6200FE,4.5 -Intel Atom x6211E,6 -Intel Atom x6212RE,6 -Intel Atom x6413E,9 -Intel Atom x6414RE,9 -Intel Atom x6425E,12 -Intel Atom x6425RE,12 -Intel Atom x6427FE,12 -Intel Atom x7-E3950,12 +Intel Atom x6200FE,4.0 +Intel Atom x6211E,6.0 +Intel Atom x6212RE,6.0 +Intel Atom x6214RE,6.0 +Intel Atom x6413E,9.0 +Intel Atom x6414RE,9.0 +Intel Atom x6416RE,9.0 +Intel Atom x6425E,12.0 +Intel Atom x6425RE,12.0 +Intel Atom x6427FE,12.0 +Intel Atom x7-E3950,12.0 Intel Atom x7-Z8700,2.17 Intel Atom x7-Z8750,2.17 +Intel Atom x7203C,9.0 +Intel Atom x7211E,6.0 +Intel Atom x7211RE,6.0 +Intel Atom x7213E,10.0 +Intel Atom x7213RE,9.0 +Intel Atom x7405C,12.0 +Intel Atom x7425E,12.0 +Intel Atom x7433RE,9.0 +Intel Atom x7809C,25.0 +Intel Atom x7835RE,12.0 Intel Atom E625CT,2.7 Intel Atom E645CT,3.6 Intel Atom E665CT,3.6 @@ -1359,15 +1769,15 @@ Intel Celeron 1.7,63.5 Intel Celeron 1.8,66.1 Intel Celeron 1.83,27 Intel Celeron 1000A,27.29.5 -Intel Celeron 1000M,35 -Intel Celeron 1005M,35 -Intel Celeron 1007U,17 -Intel Celeron 1017U,17 -Intel Celeron 1019Y,10 -Intel Celeron 1020E,35 -Intel Celeron 1020M,35 -Intel Celeron 1037U,17 -Intel Celeron 1047UE,17 +Intel Celeron 1000M,35.0 +Intel Celeron 1005M,35.0 +Intel Celeron 1007U,17.0 +Intel Celeron 1017U,17.0 +Intel Celeron 1019Y,10.0 +Intel Celeron 1020E,35.0 +Intel Celeron 1020M,35.0 +Intel Celeron 1037U,17.0 +Intel Celeron 1047UE,17.0 Intel Celeron 1100A,27.29.5 Intel Celeron 1200,29.32.9 Intel Celeron 1300,33.4 @@ -1388,48 +1798,48 @@ Intel Celeron 2.7,66.8 Intel Celeron 2.70,73 Intel Celeron 2.8,68.4 Intel Celeron 2.80,73 -Intel Celeron 2000E,37 -Intel Celeron 2002E,25 +Intel Celeron 2000E,37.0 +Intel Celeron 2002E,25.0 Intel Celeron 205,21 Intel Celeron 215,27 Intel Celeron 220,19 Intel Celeron 266,16.59 -Intel Celeron 2950M,37 -Intel Celeron 2955U,15 -Intel Celeron 2957U,15 -Intel Celeron 2961Y,11.5 -Intel Celeron 2970M,37 -Intel Celeron 2980U,15 -Intel Celeron 2981U,15 +Intel Celeron 2950M,37.0 +Intel Celeron 2955U,15.0 +Intel Celeron 2957U,15.0 +Intel Celeron 2961Y,11.0 +Intel Celeron 2970M,37.0 +Intel Celeron 2980U,15.0 +Intel Celeron 2981U,15.0 Intel Celeron 300,18.48 Intel Celeron 300A,17.8 -Intel Celeron 3205U,15 -Intel Celeron 3215U,15 +Intel Celeron 3205U,15.0 +Intel Celeron 3215U,15.0 Intel Celeron 333,19.7 Intel Celeron 366,21.7 -Intel Celeron 3755U,15 -Intel Celeron 3765U,15 -Intel Celeron 3855U,15 -Intel Celeron 3865U,15 -Intel Celeron 3867U,15 -Intel Celeron 3955U,15 -Intel Celeron 3965U,15 -Intel Celeron 3965Y,6 +Intel Celeron 3755U,15.0 +Intel Celeron 3765U,15.0 +Intel Celeron 3855U,15.0 +Intel Celeron 3865U,15.0 +Intel Celeron 3867U,15.0 +Intel Celeron 3955U,15.0 +Intel Celeron 3965U,15.0 +Intel Celeron 3965Y,6.0 Intel Celeron 400,23.7 Intel Celeron 420,35 -Intel Celeron 4205U,15 +Intel Celeron 4205U,15.0 Intel Celeron 430,35 -Intel Celeron 4305U,15 -Intel Celeron 4305UE,15 +Intel Celeron 4305U,15.0 +Intel Celeron 4305UE,15.0 Intel Celeron 433,24.1 Intel Celeron 440,35 Intel Celeron 445,65 Intel Celeron 450,35 Intel Celeron 466,25.7 Intel Celeron 500,27 -Intel Celeron 5205U,15 +Intel Celeron 5205U,15.0 Intel Celeron 530,27 -Intel Celeron 5305U,15 +Intel Celeron 5305U,15.0 Intel Celeron 533,28.3 Intel Celeron 533A,14 Intel Celeron 540,30 @@ -1441,12 +1851,13 @@ Intel Celeron 575,31 Intel Celeron 585,31 Intel Celeron 600,15.8 Intel Celeron 6305,15 -Intel Celeron 6305E,15 +Intel Celeron 6305E,15.0 Intel Celeron 633,16.5 -Intel Celeron 6600HE,35 +Intel Celeron 6600HE,35.0 Intel Celeron 667,17.5 Intel Celeron 700,18.3 Intel Celeron 725C,17 +Intel Celeron 7305L,15.0 Intel Celeron 733,23.6 Intel Celeron 766,20 Intel Celeron 787,17 @@ -1512,41 +1923,41 @@ Intel Celeron E3300,65 Intel Celeron E3400,65 Intel Celeron E3500,65 Intel Celeron G1101,73 -Intel Celeron G1610,55 -Intel Celeron G1610T,35 -Intel Celeron G1620,55 -Intel Celeron G1620T,35 -Intel Celeron G1630,55 -Intel Celeron G1820,54 -Intel Celeron G1820T,54 -Intel Celeron G1820TE,54 -Intel Celeron G1830,54 -Intel Celeron G1840,54 -Intel Celeron G1840T,54 -Intel Celeron G1850,54 -Intel Celeron G3900,51 -Intel Celeron G3900E,35 -Intel Celeron G3900T,35 -Intel Celeron G3900TE,35 -Intel Celeron G3902E,25 -Intel Celeron G3920,51 -Intel Celeron G3930,51 -Intel Celeron G3930E,54 -Intel Celeron G3930T,35 -Intel Celeron G3930TE,35 -Intel Celeron G3950,51 +Intel Celeron G1610,55.0 +Intel Celeron G1610T,35.0 +Intel Celeron G1620,55.0 +Intel Celeron G1620T,35.0 +Intel Celeron G1630,55.0 +Intel Celeron G1820,53.0 +Intel Celeron G1820T,35.0 +Intel Celeron G1820TE,35.0 +Intel Celeron G1830,53.0 +Intel Celeron G1840,53.0 +Intel Celeron G1840T,35.0 +Intel Celeron G1850,53.0 +Intel Celeron G3900,51.0 +Intel Celeron G3900E,35.0 +Intel Celeron G3900T,35.0 +Intel Celeron G3900TE,35.0 +Intel Celeron G3902E,25.0 +Intel Celeron G3920,51.0 +Intel Celeron G3930,51.0 +Intel Celeron G3930E,54.0 +Intel Celeron G3930T,35.0 +Intel Celeron G3930TE,35.0 +Intel Celeron G3950,51.0 Intel Celeron G440,35 Intel Celeron G460,35 Intel Celeron G465,35 Intel Celeron G470,35 -Intel Celeron G4900,51 -Intel Celeron G4900T,35 -Intel Celeron G4920,51 -Intel Celeron G4930,54 -Intel Celeron G4930E,35 -Intel Celeron G4930T,35 -Intel Celeron G4932E,25 -Intel Celeron G4950,54 +Intel Celeron G4900,54.0 +Intel Celeron G4900T,35.0 +Intel Celeron G4920,54.0 +Intel Celeron G4930,54.0 +Intel Celeron G4930E,35.0 +Intel Celeron G4930T,35.0 +Intel Celeron G4932E,25.0 +Intel Celeron G4950,54.0 Intel Celeron G530,65 Intel Celeron G530T,35 Intel Celeron G540,65 @@ -1554,28 +1965,30 @@ Intel Celeron G540T,35 Intel Celeron G550,65 Intel Celeron G550T,35 Intel Celeron G555,65 -Intel Celeron G5900,58 -Intel Celeron G5900E,58 -Intel Celeron G5900T,35 -Intel Celeron G5900TE,35 -Intel Celeron G5905,58 -Intel Celeron G5905T,35 -Intel Celeron G5920,58 -Intel Celeron G5925,58 -Intel Celeron J1750,10 -Intel Celeron J1800,10 -Intel Celeron J1850,10 -Intel Celeron J1900,10 -Intel Celeron J3060,6 -Intel Celeron J3160,6 -Intel Celeron J3355,10 -Intel Celeron J3455,10 -Intel Celeron J4005,10 -Intel Celeron J4025,10 -Intel Celeron J4105,10 -Intel Celeron J4125,10 -Intel Celeron J6412,10 -Intel Celeron J6413,10 +Intel Celeron G5900,58.0 +Intel Celeron G5900E,58.0 +Intel Celeron G5900T,35.0 +Intel Celeron G5900TE,35.0 +Intel Celeron G5905,58.0 +Intel Celeron G5905T,35.0 +Intel Celeron G5920,58.0 +Intel Celeron G5925,58.0 +Intel Celeron J1750,10.0 +Intel Celeron J1800,10.0 +Intel Celeron J1850,10.0 +Intel Celeron J1900,10.0 +Intel Celeron J3060,6.0 +Intel Celeron J3160,6.0 +Intel Celeron J3355,10.0 +Intel Celeron J3355E,10.0 +Intel Celeron J3455,10.0 +Intel Celeron J3455E,10.0 +Intel Celeron J4005,10.0 +Intel Celeron J4025,10.0 +Intel Celeron J4105,10.0 +Intel Celeron J4125,10.0 +Intel Celeron J6412,10.0 +Intel Celeron J6413,10.0 Intel Celeron M 310,24.5 Intel Celeron M 320,24.5 Intel Celeron M 330,24.5 @@ -1604,37 +2017,38 @@ Intel Celeron M ULV 722,5.5 Intel Celeron M ULV 723,10 Intel Celeron M ULV 743,10 Intel Celeron M ULV 800,7 -Intel Celeron N2805,4.3 -Intel Celeron N2806,4.5 -Intel Celeron N2807,4.3 -Intel Celeron N2808,4.5 -Intel Celeron N2810,7.5 -Intel Celeron N2815,7.5 -Intel Celeron N2820,7.5 -Intel Celeron N2830,7.5 -Intel Celeron N2840,7.5 -Intel Celeron N2910,7.5 -Intel Celeron N2920,7.5 -Intel Celeron N2930,7.5 -Intel Celeron N2940,7.5 -Intel Celeron N3000,4 -Intel Celeron N3010,4 -Intel Celeron N3050,6 -Intel Celeron N3060,6 -Intel Celeron N3150,6 -Intel Celeron N3160,6 -Intel Celeron N3350,6 -Intel Celeron N3450,6 -Intel Celeron N4000,6 -Intel Celeron N4020,6 -Intel Celeron N4100,6 -Intel Celeron N4120,6 -Intel Celeron N4500,6 -Intel Celeron N4505,10 -Intel Celeron N5100,6 -Intel Celeron N5105,10 -Intel Celeron N6210,6.5 -Intel Celeron N6211,6.5 +Intel Celeron N2805,4.0 +Intel Celeron N2806,4.0 +Intel Celeron N2807,4.0 +Intel Celeron N2808,4.0 +Intel Celeron N2810,7.0 +Intel Celeron N2815,7.0 +Intel Celeron N2820,7.0 +Intel Celeron N2830,7.0 +Intel Celeron N2840,7.0 +Intel Celeron N2910,7.0 +Intel Celeron N2920,7.0 +Intel Celeron N2930,7.0 +Intel Celeron N2940,7.0 +Intel Celeron N3000,4.0 +Intel Celeron N3010,4.0 +Intel Celeron N3050,6.0 +Intel Celeron N3060,6.0 +Intel Celeron N3150,6.0 +Intel Celeron N3160,6.0 +Intel Celeron N3350,6.0 +Intel Celeron N3350E,6.0 +Intel Celeron N3450,6.0 +Intel Celeron N4000,6.0 +Intel Celeron N4020,6.0 +Intel Celeron N4100,6.0 +Intel Celeron N4120,6.0 +Intel Celeron N4500,6.0 +Intel Celeron N4505,10.0 +Intel Celeron N5100,6.0 +Intel Celeron N5105,10.0 +Intel Celeron N6210,6.0 +Intel Celeron N6211,6.0 Intel Celeron P1053,30 Intel Celeron P4500,35 Intel Celeron P4505,35 @@ -1805,6 +2219,16 @@ Intel Core 2 Solo ULV SU3300,5 Intel Core 2 Solo ULV SU3500,5 Intel Core 2 Solo ULV U2100,5.5 Intel Core 2 Solo ULV U2200,5.5 +Intel Core 3 201E,60.0 +Intel Core 3 201EF,58.0 +Intel Core 3 201TE,45.0 +Intel Core 5 211E,65.0 +Intel Core 5 211EF,65.0 +Intel Core 5 211TE,45.0 +Intel Core 5 221E,65.0 +Intel Core 5 221TE,45.0 +Intel Core 7 251E,65.0 +Intel Core 7 251TE,45.0 Intel Core Duo LV L2300,15 Intel Core Duo LV L2400,15 Intel Core Duo LV L2500,15 @@ -1817,13 +2241,13 @@ Intel Core Duo T2600,31 Intel Core Duo T2700,31 Intel Core Duo ULV L2400,9 Intel Core Duo ULV L2500,9 -Intel Core M-5Y10,5 -Intel Core M-5Y10a,5 -Intel Core M-5Y10c,5 -Intel Core M-5Y31,5 -Intel Core M-5Y51,5 -Intel Core M-5Y70,5 -Intel Core M-5Y71,5 +Intel Core M-5Y10,4.0 +Intel Core M-5Y10a,4.0 +Intel Core M-5Y10c,4.0 +Intel Core M-5Y31,4.0 +Intel Core M-5Y51,4.0 +Intel Core M-5Y70,4.0 +Intel Core M-5Y71,4.0 Intel Core Solo T1200,27 Intel Core Solo T1300,27 Intel Core Solo T1350,27 @@ -1831,79 +2255,89 @@ Intel Core Solo T1400,27 Intel Core Solo ULV U1300,5 Intel Core Solo ULV U1400,5 Intel Core Solo ULV U1500,5 +Intel Core Ultra 7 165H,28 Intel Core i3-1000G1,12 Intel Core i3-1000G4,12 Intel Core i3-1000NG4,9 -Intel Core i3-1005G1,25 -Intel Core i3-10100,65 -Intel Core i3-10100E,65 -Intel Core i3-10100F,65 -Intel Core i3-10100T,35 -Intel Core i3-10100TE,35 -Intel Core i3-10100Y,5 -Intel Core i3-10105,65 -Intel Core i3-10105F,65 -Intel Core i3-10105T,35 -Intel Core i3-10110U,25 -Intel Core i3-10110Y,9 -Intel Core i3-10300,62 -Intel Core i3-10300T,35 -Intel Core i3-10305,65 -Intel Core i3-10305T,35 -Intel Core i3-10320,91 -Intel Core i3-10325,65 +Intel Core i3-1005G1,15.0 +Intel Core i3-10100,65.0 +Intel Core i3-10100E,65.0 +Intel Core i3-10100F,65.0 +Intel Core i3-10100T,35.0 +Intel Core i3-10100TE,35.0 +Intel Core i3-10100Y,5.0 +Intel Core i3-10105,65.0 +Intel Core i3-10105F,65.0 +Intel Core i3-10105T,35.0 +Intel Core i3-10110U,15.0 +Intel Core i3-10110Y,7.0 +Intel Core i3-10300,65.0 +Intel Core i3-10300T,35.0 +Intel Core i3-10305,65.0 +Intel Core i3-10305T,35.0 +Intel Core i3-10320,65.0 +Intel Core i3-10325,65.0 Intel Core i3-10350K,91 -Intel Core i3-11100HE ,45 +Intel Core i3-11100HE,45 Intel Core i3-1110G4,15 Intel Core i3-1115G4,28 -Intel Core i3-1115G4E,15 -Intel Core i3-1115GRE,15 +Intel Core i3-1115G4E,15.0 +Intel Core i3-1115GRE,15.0 Intel Core i3-1120G4,15 Intel Core i3-1125G4,28 -Intel Core i3-2100,65 -Intel Core i3-2100T,35 -Intel Core i3-2102,65 -Intel Core i3-2105,65 +Intel Core i3-1215UL,15.0 +Intel Core i3-13100E,60.0 +Intel Core i3-13100TE,35.0 +Intel Core i3-1315UE,15.0 +Intel Core i3-1315URE,15.0 +Intel Core i3-1320PE,28.0 +Intel Core i3-1320PRE,28.0 +Intel Core i3-13300HE,45.0 +Intel Core i3-13300HRE,45.0 +Intel Core i3-2100,65.0 +Intel Core i3-2100T,35.0 +Intel Core i3-2102,65.0 +Intel Core i3-2105,65.0 Intel Core i3-2115C,25 -Intel Core i3-2120,65 -Intel Core i3-2120T,35 -Intel Core i3-2125,65 -Intel Core i3-2130,65 +Intel Core i3-2120,65.0 +Intel Core i3-2120T,35.0 +Intel Core i3-2125,65.0 +Intel Core i3-2130,65.0 Intel Core i3-2308M,35 -Intel Core i3-2310E,35 -Intel Core i3-2310M,35 -Intel Core i3-2312M,35 -Intel Core i3-2328M,35 -Intel Core i3-2330E,35 -Intel Core i3-2330M,35 +Intel Core i3-2310E,35.0 +Intel Core i3-2310M,35.0 +Intel Core i3-2312M,35.0 +Intel Core i3-2328M,35.0 +Intel Core i3-2330E,35.0 +Intel Core i3-2330M,35.0 Intel Core i3-2332M,35 -Intel Core i3-2340UE,17 -Intel Core i3-2348M,35 -Intel Core i3-2350M,35 -Intel Core i3-2357M,17 -Intel Core i3-2365M,17 -Intel Core i3-2367M,17 -Intel Core i3-2370M,35 -Intel Core i3-2375M,17 -Intel Core i3-2377M,17 -Intel Core i3-3110M,35 +Intel Core i3-2340UE,17.0 +Intel Core i3-2348M,35.0 +Intel Core i3-2350M,35.0 +Intel Core i3-2357M,17.0 +Intel Core i3-2365M,17.0 +Intel Core i3-2367M,17.0 +Intel Core i3-2370M,35.0 +Intel Core i3-2375M,17.0 +Intel Core i3-2377M,17.0 +Intel Core i3-3110M,35.0 Intel Core i3-3115C,25 -Intel Core i3-3120M,35 -Intel Core i3-3120ME,35 -Intel Core i3-3130M,35 -Intel Core i3-3210,55 -Intel Core i3-3217U,17 -Intel Core i3-3217UE,17 -Intel Core i3-3220,55 -Intel Core i3-3220T,35 -Intel Core i3-3225,55 -Intel Core i3-3227U,17 -Intel Core i3-3229Y,13 -Intel Core i3-3240,55 -Intel Core i3-3240T,35 -Intel Core i3-3245,55 -Intel Core i3-3250,55 -Intel Core i3-3250T,35 +Intel Core i3-3120M,35.0 +Intel Core i3-3120ME,35.0 +Intel Core i3-3130M,35.0 +Intel Core i3-3210,55.0 +Intel Core i3-3217U,17.0 +Intel Core i3-3217UE,17.0 +Intel Core i3-3220,55.0 +Intel Core i3-3220T,35.0 +Intel Core i3-3225,55.0 +Intel Core i3-3227U,17.0 +Intel Core i3-3229Y,13.0 +Intel Core i3-3240,55.0 +Intel Core i3-3240T,35.0 +Intel Core i3-3245,55.0 +Intel Core i3-3250,55.0 +Intel Core i3-3250T,35.0 Intel Core i3-330E,35 Intel Core i3-330M,35 Intel Core i3-330UM,18 @@ -1912,419 +2346,441 @@ Intel Core i3-370M,35 Intel Core i3-380M,35 Intel Core i3-380UM,18 Intel Core i3-390M,35 -Intel Core i3-4000M,37 -Intel Core i3-4005U,15 +Intel Core i3-4000M,37.0 +Intel Core i3-4005U,15.0 Intel Core i3-4010M,37 -Intel Core i3-4010U,15 -Intel Core i3-4010Y,11.5 -Intel Core i3-4012Y,11.5 -Intel Core i3-4020Y,11.5 -Intel Core i3-4025U,15 -Intel Core i3-4030U,15 -Intel Core i3-4030Y,11.5 -Intel Core i3-4100E,37 -Intel Core i3-4100M,37 -Intel Core i3-4100U,15 -Intel Core i3-4102E,25 -Intel Core i3-4110E,37 -Intel Core i3-4110M,37 -Intel Core i3-4112E,25 -Intel Core i3-4120U,15 -Intel Core i3-4130,54 -Intel Core i3-4130T,35 -Intel Core i3-4150,54 -Intel Core i3-4150T,35 -Intel Core i3-4158U,28 -Intel Core i3-4160,54 -Intel Core i3-4160T,35 -Intel Core i3-4170,54 -Intel Core i3-4170T,35 -Intel Core i3-4330,54 -Intel Core i3-4330T,35 -Intel Core i3-4330TE,35 -Intel Core i3-4340,54 -Intel Core i3-4340TE,35 -Intel Core i3-4350,54 -Intel Core i3-4350T,35 -Intel Core i3-4360,54 -Intel Core i3-4360T,35 -Intel Core i3-4370,54 -Intel Core i3-4370T,35 -Intel Core i3-5005U,15 -Intel Core i3-5010U,15 -Intel Core i3-5015U,15 -Intel Core i3-5020U,15 -Intel Core i3-5157U,28 +Intel Core i3-4010U,15.0 +Intel Core i3-4010Y,11.0 +Intel Core i3-4012Y,11.0 +Intel Core i3-4020Y,11.0 +Intel Core i3-4025U,15.0 +Intel Core i3-4030U,15.0 +Intel Core i3-4030Y,11.0 +Intel Core i3-4100E,37.0 +Intel Core i3-4100M,37.0 +Intel Core i3-4100U,15.0 +Intel Core i3-4102E,25.0 +Intel Core i3-4110E,37.0 +Intel Core i3-4110M,37.0 +Intel Core i3-4112E,25.0 +Intel Core i3-4120U,15.0 +Intel Core i3-4130,54.0 +Intel Core i3-4130T,35.0 +Intel Core i3-4150,54.0 +Intel Core i3-4150T,35.0 +Intel Core i3-4158U,28.0 +Intel Core i3-4160,54.0 +Intel Core i3-4160T,35.0 +Intel Core i3-4170,54.0 +Intel Core i3-4170T,35.0 +Intel Core i3-4330,54.0 +Intel Core i3-4330T,35.0 +Intel Core i3-4330TE,35.0 +Intel Core i3-4340,54.0 +Intel Core i3-4340TE,35.0 +Intel Core i3-4350,54.0 +Intel Core i3-4350T,35.0 +Intel Core i3-4360,54.0 +Intel Core i3-4360T,35.0 +Intel Core i3-4370,54.0 +Intel Core i3-4370T,35.0 +Intel Core i3-5005U,15.0 +Intel Core i3-5010U,15.0 +Intel Core i3-5015U,15.0 +Intel Core i3-5020U,15.0 +Intel Core i3-5157U,28.0 Intel Core i3-530,73 Intel Core i3-540,73 Intel Core i3-550,73 Intel Core i3-560,73 -Intel Core i3-6006U,15 -Intel Core i3-6098P,54 -Intel Core i3-6100,51 -Intel Core i3-6100E,35 -Intel Core i3-6100H,35 -Intel Core i3-6100T,35 -Intel Core i3-6100TE,35 -Intel Core i3-6100U,15 -Intel Core i3-6102E,25 -Intel Core i3-6157U,28 -Intel Core i3-6167U,28 -Intel Core i3-6300,51 -Intel Core i3-6300T,35 -Intel Core i3-6320,51 -Intel Core i3-7020U,15 -Intel Core i3-7100,51 -Intel Core i3-7100E,35 +Intel Core i3-6006U,15.0 +Intel Core i3-6098P,54.0 +Intel Core i3-6100,51.0 +Intel Core i3-6100E,35.0 +Intel Core i3-6100H,35.0 +Intel Core i3-6100T,35.0 +Intel Core i3-6100TE,35.0 +Intel Core i3-6100U,15.0 +Intel Core i3-6102E,25.0 +Intel Core i3-6157U,28.0 +Intel Core i3-6167U,28.0 +Intel Core i3-6300,51.0 +Intel Core i3-6300T,35.0 +Intel Core i3-6320,51.0 +Intel Core i3-7020U,15.0 +Intel Core i3-7100,51.0 +Intel Core i3-7100E,35.0 Intel Core i3-7100H,35.0 -Intel Core i3-7100T,35 +Intel Core i3-7100T,35.0 Intel Core i3-7100U,15.0 -Intel Core i3-7101E,54 -Intel Core i3-7101TE,35 -Intel Core i3-7102E,25 +Intel Core i3-7101E,54.0 +Intel Core i3-7101TE,35.0 +Intel Core i3-7102E,25.0 Intel Core i3-7120,51 Intel Core i3-7120T,35 Intel Core i3-7130U,15.0 Intel Core i3-7167U,28.0 -Intel Core i3-7300,51 -Intel Core i3-7300T,35 -Intel Core i3-7320,51 +Intel Core i3-7300,51.0 +Intel Core i3-7300T,35.0 +Intel Core i3-7320,51.0 Intel Core i3-7320T,35 Intel Core i3-7340,51 -Intel Core i3-7350K,60 +Intel Core i3-7350K,60.0 Intel Core i3-7360X,112 Intel Core i3-8000,65 Intel Core i3-8020,65 -Intel Core i3-8100,62 -Intel Core i3-8100B,65 +Intel Core i3-8100,65.0 +Intel Core i3-8100B,65.0 Intel Core i3-8100F,65 -Intel Core i3-8100H,45 -Intel Core i3-8100T,35 -Intel Core i3-8109U,28 +Intel Core i3-8100H,45.0 +Intel Core i3-8100T,35.0 +Intel Core i3-8109U,28.0 Intel Core i3-8120,65 Intel Core i3-8121U,28 -Intel Core i3-8130U,15 -Intel Core i3-8140U,15 -Intel Core i3-8145U,28 -Intel Core i3-8145UE,15 -Intel Core i3-8300,62 -Intel Core i3-8300T,35 -Intel Core i3-8350K,91 +Intel Core i3-8130U,15.0 +Intel Core i3-8140U,15.0 +Intel Core i3-8145U,15.0 +Intel Core i3-8145UE,15.0 +Intel Core i3-8300,62.0 +Intel Core i3-8300T,35.0 +Intel Core i3-8350K,91.0 Intel Core i3-9000,65 -Intel Core i3-9100,65 -Intel Core i3-9100E,65 -Intel Core i3-9100F,65 -Intel Core i3-9100HL,25 -Intel Core i3-9100T,35 -Intel Core i3-9100TE,35 -Intel Core i3-9300,62 -Intel Core i3-9300T,35 -Intel Core i3-9320,62 -Intel Core i3-9350K,91 -Intel Core i3-9350KF,91 -Intel Core i5-10200H,45 -Intel Core i5-10210U,25 -Intel Core i5-10210Y,9 -Intel Core i5-10300H,45 +Intel Core i3-9100,65.0 +Intel Core i3-9100E,65.0 +Intel Core i3-9100F,65.0 +Intel Core i3-9100HL,25.0 +Intel Core i3-9100T,35.0 +Intel Core i3-9100TE,35.0 +Intel Core i3-9300,62.0 +Intel Core i3-9300T,35.0 +Intel Core i3-9320,62.0 +Intel Core i3-9350K,91.0 +Intel Core i3-9350KF,91.0 +Intel Core i3-N300,7.0 +Intel Core i3-N305,15.0 +Intel Core i5 processor 14401E,65.0 +Intel Core i5 processor 14401TE,45.0 +Intel Core i5 processor 14501E,65.0 +Intel Core i5 processor 14501TE,45.0 +"Intel Core i5+8400 (9M Cache, up to 4.00 GHz) includes Intel Optane Memory",65.0 +"Intel Core i5+8500 (9M Cache, up to 4.10 GHz) includes Intel Optane Memory",65.0 +Intel Core i5-10200H,45.0 +Intel Core i5-10210U,15.0 +Intel Core i5-10210Y,7.0 +Intel Core i5-10300H,45.0 Intel Core i5-1030G4,12 Intel Core i5-1030G7,12 Intel Core i5-1030NG7,10 -Intel Core i5-10310U,15 -Intel Core i5-10310Y,9 -Intel Core i5-1035G1,25 -Intel Core i5-1035G4,25 -Intel Core i5-1035G7,25 +Intel Core i5-10310U,15.0 +Intel Core i5-10310Y,7.0 +Intel Core i5-1035G1,15.0 +Intel Core i5-1035G4,15.0 +Intel Core i5-1035G7,15.0 Intel Core i5-1038NG7,28 -Intel Core i5-10400,65 -Intel Core i5-10400F,65 -Intel Core i5-10400H,45 -Intel Core i5-10400T,35 -Intel Core i5-10500,65 -Intel Core i5-10500E,65 -Intel Core i5-10500H,45 -Intel Core i5-10500T,35 -Intel Core i5-10500TE,35 -Intel Core i5-10600,65 -Intel Core i5-10600K,125 -Intel Core i5-10600KF,95 -Intel Core i5-10600T,35 +Intel Core i5-10400,65.0 +Intel Core i5-10400F,65.0 +Intel Core i5-10400H,45.0 +Intel Core i5-10400T,35.0 +Intel Core i5-10500,65.0 +Intel Core i5-10500E,65.0 +Intel Core i5-10500H,45.0 +Intel Core i5-10500T,35.0 +Intel Core i5-10500TE,35.0 +Intel Core i5-10505,65.0 +Intel Core i5-10600,65.0 +Intel Core i5-10600K,125.0 +Intel Core i5-10600KF,125.0 +Intel Core i5-10600T,35.0 Intel Core i5-11260H,45 Intel Core i5-11300H,35 Intel Core i5-1130G7,15 Intel Core i5-11320H,35 Intel Core i5-1135G7,28 -Intel Core i5-11400,65 -Intel Core i5-11400F,65 +Intel Core i5-11400,65.0 +Intel Core i5-11400F,65.0 Intel Core i5-11400H,45 -Intel Core i5-11400T,35 +Intel Core i5-11400T,35.0 Intel Core i5-1140G7,15 Intel Core i5-1145G7,28 -Intel Core i5-1145G7E,15 -Intel Core i5-1145GRE,15 -Intel Core i5-11500,65 +Intel Core i5-1145G7E,15.0 +Intel Core i5-1145GRE,15.0 +Intel Core i5-11500,65.0 Intel Core i5-11500H,45 Intel Core i5-11500HE,45 -Intel Core i5-11500T,35 +Intel Core i5-11500T,35.0 Intel Core i5-1155G7,28 -Intel Core i5-11600,65 -Intel Core i5-11600K,125 -Intel Core i5-11600KF,125 -Intel Core i5-11600T,35 -Intel Core i5-2300,95 -Intel Core i5-2310,95 -Intel Core i5-2320,95 -Intel Core i5-2380P,95 -Intel Core i5-2390T,35 -Intel Core i5-2400,95 -Intel Core i5-2400S,65 -Intel Core i5-2405S,65 -Intel Core i5-2410M,35 +Intel Core i5-11600,65.0 +Intel Core i5-11600K,125.0 +Intel Core i5-11600KF,125.0 +Intel Core i5-11600T,35.0 +Intel Core i5-1235UL,15.0 +Intel Core i5-1245UL,15.0 +Intel Core i5-13400E,65.0 +Intel Core i5-1345UE,15.0 +Intel Core i5-1345URE,15.0 +Intel Core i5-13500E,65.0 +Intel Core i5-13500TE,35.0 +Intel Core i5-1350PRE,28.0 +Intel Core i5-13600HRE,45.0 +Intel Core i5-2300,95.0 +Intel Core i5-2310,95.0 +Intel Core i5-2320,95.0 +Intel Core i5-2380P,95.0 +Intel Core i5-2390T,35.0 +Intel Core i5-2400,95.0 +Intel Core i5-2400S,65.0 +Intel Core i5-2405S,65.0 +Intel Core i5-2410M,35.0 Intel Core i5-2415M,35 -Intel Core i5-2430M,35 -Intel Core i5-2435M,35 -Intel Core i5-2450M,35 -Intel Core i5-2450P,95 -Intel Core i5-2467M,17 -Intel Core i5-2500,95 -Intel Core i5-2500K,95 -Intel Core i5-2500S,65 -Intel Core i5-2500T,45 -Intel Core i5-2510E,35 -Intel Core i5-2515E,35 -Intel Core i5-2520M,35 -Intel Core i5-2537M,17 -Intel Core i5-2540M,35 -Intel Core i5-2550K,95 -Intel Core i5-2557M,17 -Intel Core i5-3210M,35 -Intel Core i5-3230M,35 -Intel Core i5-3317U,17 -Intel Core i5-3320M,35 -Intel Core i5-3330,77 -Intel Core i5-3330S,77 +Intel Core i5-2430M,35.0 +Intel Core i5-2435M,35.0 +Intel Core i5-2450M,35.0 +Intel Core i5-2450P,95.0 +Intel Core i5-2467M,17.0 +Intel Core i5-2500,95.0 +Intel Core i5-2500K,95.0 +Intel Core i5-2500S,65.0 +Intel Core i5-2500T,45.0 +Intel Core i5-2510E,35.0 +Intel Core i5-2515E,35.0 +Intel Core i5-2520M,35.0 +Intel Core i5-2537M,17.0 +Intel Core i5-2540M,35.0 +Intel Core i5-2550K,95.0 +Intel Core i5-2557M,17.0 +Intel Core i5-3210M,35.0 +Intel Core i5-3230M,35.0 +Intel Core i5-3317U,17.0 +Intel Core i5-3320M,35.0 +Intel Core i5-3330,77.0 +Intel Core i5-3330S,65.0 Intel Core i5-3335S,65 -Intel Core i5-3337U,17 -Intel Core i5-3339Y,13 -Intel Core i5-3340,77 -Intel Core i5-3340M,35 -Intel Core i5-3340S,65 -Intel Core i5-3350P,69 -Intel Core i5-3360M,35 +Intel Core i5-3337U,17.0 +Intel Core i5-3339Y,13.0 +Intel Core i5-3340,77.0 +Intel Core i5-3340M,35.0 +Intel Core i5-3340S,65.0 +Intel Core i5-3350P,69.0 +Intel Core i5-3360M,35.0 Intel Core i5-3365M,35 -Intel Core i5-3380M,35 -Intel Core i5-3427U,17 -Intel Core i5-3437U,17 -Intel Core i5-3439Y,13 -Intel Core i5-3450,77 -Intel Core i5-3450S,65 -Intel Core i5-3470,77 -Intel Core i5-3470S,65 -Intel Core i5-3470T,35 -Intel Core i5-3475S,65 -Intel Core i5-3550,77 -Intel Core i5-3550S,65 -Intel Core i5-3570,77 -Intel Core i5-3570K,77 -Intel Core i5-3570S,65 -Intel Core i5-3570T,45 -Intel Core i5-3610ME,35 -Intel Core i5-4200H,47 -Intel Core i5-4200M,37 -Intel Core i5-4200U,15 -Intel Core i5-4200Y,11.5 -Intel Core i5-4202Y,11.5 -Intel Core i5-4210H,47 -Intel Core i5-4210M,37 -Intel Core i5-4210U,15 -Intel Core i5-4210Y,11.5 -Intel Core i5-4220Y,11.5 -Intel Core i5-4250U,15 -Intel Core i5-4258U,28 -Intel Core i5-4260U,15 -Intel Core i5-4278U,28 -Intel Core i5-4288U,28 -Intel Core i5-4300M,37 -Intel Core i5-4300U,15 -Intel Core i5-4300Y,11.5 -Intel Core i5-4302Y,11.5 -Intel Core i5-4308U,28 +Intel Core i5-3380M,35.0 +Intel Core i5-3427U,17.0 +Intel Core i5-3437U,17.0 +Intel Core i5-3439Y,13.0 +Intel Core i5-3450,77.0 +Intel Core i5-3450S,65.0 +Intel Core i5-3470,77.0 +Intel Core i5-3470S,65.0 +Intel Core i5-3470T,35.0 +Intel Core i5-3475S,65.0 +Intel Core i5-3550,77.0 +Intel Core i5-3550S,65.0 +Intel Core i5-3570,77.0 +Intel Core i5-3570K,77.0 +Intel Core i5-3570S,65.0 +Intel Core i5-3570T,45.0 +Intel Core i5-3610ME,35.0 +Intel Core i5-4200H,47.0 +Intel Core i5-4200M,37.0 +Intel Core i5-4200U,15.0 +Intel Core i5-4200Y,11.0 +Intel Core i5-4202Y,11.0 +Intel Core i5-4210H,47.0 +Intel Core i5-4210M,37.0 +Intel Core i5-4210U,15.0 +Intel Core i5-4210Y,11.0 +Intel Core i5-4220Y,11.0 +Intel Core i5-4250U,15.0 +Intel Core i5-4258U,28.0 +Intel Core i5-4260U,15.0 +Intel Core i5-4278U,28.0 +Intel Core i5-4288U,28.0 +Intel Core i5-4300M,37.0 +Intel Core i5-4300U,15.0 +Intel Core i5-4300Y,11.0 +Intel Core i5-4302Y,11.0 +Intel Core i5-4308U,28.0 Intel Core i5-430M,35 Intel Core i5-430UM,18 -Intel Core i5-4310M,37 -Intel Core i5-4310U,15 -Intel Core i5-4330M,37 -Intel Core i5-4340M,37 -Intel Core i5-4350U,15 -Intel Core i5-4360U,15 -Intel Core i5-4400E,37 -Intel Core i5-4402E,25 -Intel Core i5-4402EC,27 -Intel Core i5-4410E,37 -Intel Core i5-4422E,25 -Intel Core i5-4430,84 -Intel Core i5-4430S,65 -Intel Core i5-4440,84 -Intel Core i5-4440S,65 -Intel Core i5-4460,84 -Intel Core i5-4460S,65 -Intel Core i5-4460T,35 +Intel Core i5-4310M,37.0 +Intel Core i5-4310U,15.0 +Intel Core i5-4330M,37.0 +Intel Core i5-4340M,37.0 +Intel Core i5-4350U,15.0 +Intel Core i5-4360U,15.0 +Intel Core i5-4400E,37.0 +Intel Core i5-4402E,25.0 +Intel Core i5-4402EC,27.0 +Intel Core i5-4410E,37.0 +Intel Core i5-4422E,25.0 +Intel Core i5-4430,84.0 +Intel Core i5-4430S,65.0 +Intel Core i5-4440,84.0 +Intel Core i5-4440S,65.0 +Intel Core i5-4460,84.0 +Intel Core i5-4460S,65.0 +Intel Core i5-4460T,35.0 Intel Core i5-450M,35 -Intel Core i5-4570,84 -Intel Core i5-4570R,65 -Intel Core i5-4570S,65 -Intel Core i5-4570T,35 -Intel Core i5-4570TE,35 -Intel Core i5-4590,84 -Intel Core i5-4590S,65 -Intel Core i5-4590T,35 +Intel Core i5-4570,84.0 +Intel Core i5-4570R,65.0 +Intel Core i5-4570S,65.0 +Intel Core i5-4570T,35.0 +Intel Core i5-4570TE,35.0 +Intel Core i5-4590,84.0 +Intel Core i5-4590S,65.0 +Intel Core i5-4590T,35.0 Intel Core i5-460M,35 -Intel Core i5-4670,84 -Intel Core i5-4670K,84 -Intel Core i5-4670R,65 -Intel Core i5-4670S,65 -Intel Core i5-4670T,45 -Intel Core i5-4690,84 -Intel Core i5-4690K,88 -Intel Core i5-4690S,65 -Intel Core i5-4690T,45 +Intel Core i5-4670,84.0 +Intel Core i5-4670K,84.0 +Intel Core i5-4670R,65.0 +Intel Core i5-4670S,65.0 +Intel Core i5-4670T,45.0 +Intel Core i5-4690,84.0 +Intel Core i5-4690K,88.0 +Intel Core i5-4690S,65.0 +Intel Core i5-4690T,45.0 Intel Core i5-470UM,18 Intel Core i5-480M,35 -Intel Core i5-5200U,15 +Intel Core i5-5200U,15.0 Intel Core i5-520E,35 Intel Core i5-520M,35 Intel Core i5-520UM,18 -Intel Core i5-5250U,15 -Intel Core i5-5257U,28 -Intel Core i5-5287U,28 -Intel Core i5-5300U,15 -Intel Core i5-5350H,47 -Intel Core i5-5350U,15 +Intel Core i5-5250U,15.0 +Intel Core i5-5257U,28.0 +Intel Core i5-5287U,28.0 +Intel Core i5-5300U,15.0 +Intel Core i5-5350H,47.0 +Intel Core i5-5350U,15.0 Intel Core i5-540M,35 Intel Core i5-540UM,18 -Intel Core i5-5575R,65 +Intel Core i5-5575R,65.0 Intel Core i5-560M,35 Intel Core i5-560UM,18 -Intel Core i5-5675C,65 -Intel Core i5-5675R,65 +Intel Core i5-5675C,65.0 +Intel Core i5-5675R,65.0 Intel Core i5-580M,35 Intel Core i5-6198DU,15 -Intel Core i5-6200U,15 -Intel Core i5-6260U,15 -Intel Core i5-6267U,28 -Intel Core i5-6287U,28 -Intel Core i5-6300HQ,45 -Intel Core i5-6300U,15 -Intel Core i5-6350HQ,45 -Intel Core i5-6360U,15 -Intel Core i5-6400,65 -Intel Core i5-6400T,35 -Intel Core i5-6402P,65 -Intel Core i5-6440EQ,45 -Intel Core i5-6440HQ,45 -Intel Core i5-6442EQ,25 +Intel Core i5-6200U,15.0 +Intel Core i5-6260U,15.0 +Intel Core i5-6267U,28.0 +Intel Core i5-6287U,28.0 +Intel Core i5-6300HQ,45.0 +Intel Core i5-6300U,15.0 +Intel Core i5-6350HQ,45.0 +Intel Core i5-6360U,15.0 +Intel Core i5-6400,65.0 +Intel Core i5-6400T,35.0 +Intel Core i5-6402P,65.0 +Intel Core i5-6440EQ,45.0 +Intel Core i5-6440HQ,45.0 +Intel Core i5-6442EQ,25.0 Intel Core i5-650,73 -Intel Core i5-6500,65 -Intel Core i5-6500T,35 -Intel Core i5-6500TE,35 +Intel Core i5-6500,65.0 +Intel Core i5-6500T,35.0 +Intel Core i5-6500TE,35.0 Intel Core i5-655K,73 -Intel Core i5-6585R,65 +Intel Core i5-6585R,65.0 Intel Core i5-660,73 -Intel Core i5-6600,65 -Intel Core i5-6600K,95 -Intel Core i5-6600T,35 +Intel Core i5-6600,65.0 +Intel Core i5-6600K,91.0 +Intel Core i5-6600T,35.0 Intel Core i5-661,87 -Intel Core i5-6685R,65 +Intel Core i5-6685R,65.0 Intel Core i5-670,73 Intel Core i5-680,73 Intel Core i5-7200U,15.0 Intel Core i5-7260U,15.0 Intel Core i5-7267U,28.0 Intel Core i5-7287U,28.0 -Intel Core i5-7300HQ,45 +Intel Core i5-7300HQ,45.0 Intel Core i5-7300U,15.0 Intel Core i5-7360U,15.0 -Intel Core i5-7400,65 -Intel Core i5-7400T,35 -Intel Core i5-7440EQ,45 +Intel Core i5-7400,65.0 +Intel Core i5-7400T,35.0 +Intel Core i5-7440EQ,45.0 Intel Core i5-7440HQ,45.0 -Intel Core i5-7442EQ,25 +Intel Core i5-7442EQ,25.0 Intel Core i5-750,95 -Intel Core i5-7500,65 -Intel Core i5-7500T,35 +Intel Core i5-7500,65.0 +Intel Core i5-7500T,35.0 Intel Core i5-750S,82 Intel Core i5-750s,82 Intel Core i5-760,95 -Intel Core i5-7600,65 -Intel Core i5-7600K,91 -Intel Core i5-7600T,35 +Intel Core i5-7600,65.0 +Intel Core i5-7600K,91.0 +Intel Core i5-7600T,35.0 Intel Core i5-7640X,112 -Intel Core i5-7Y54,4.5 -Intel Core i5-7Y57,4.5 -Intel Core i5-8200Y,5 -Intel Core i5-8210Y,7 -Intel Core i5-8250U,15 -Intel Core i5-8257U,15 -Intel Core i5-8259U,28 -Intel Core i5-8260U,15 -Intel Core i5-8265U,28 -Intel Core i5-8269U,28 -Intel Core i5-8279U,28 -Intel Core i5-8300H,45 +Intel Core i5-7640X X-series,112.0 +Intel Core i5-7Y54,4.0 +Intel Core i5-7Y57,4.0 +Intel Core i5-8200Y,5.0 +Intel Core i5-8210Y,7.0 +Intel Core i5-8250U,15.0 +Intel Core i5-8257U,15.0 +Intel Core i5-8259U,28.0 +Intel Core i5-8260U,15.0 +Intel Core i5-8265U,15.0 +Intel Core i5-8269U,28.0 +Intel Core i5-8279U,28.0 +Intel Core i5-8300H,45.0 Intel Core i5-8305G,65 Intel Core i5-8310Y,7 -Intel Core i5-8350U,15 -Intel Core i5-8365U,15 -Intel Core i5-8365UE,15 -Intel Core i5-8400,65 -Intel Core i5-8400B,65 -Intel Core i5-8400H,45 -Intel Core i5-8400T,35 +Intel Core i5-8350U,15.0 +Intel Core i5-8365U,15.0 +Intel Core i5-8365UE,15.0 +Intel Core i5-8400,65.0 +Intel Core i5-8400B,65.0 +Intel Core i5-8400H,45.0 +Intel Core i5-8400T,35.0 Intel Core i5-8420,65 Intel Core i5-8420T,35 -Intel Core i5-8500,65 -Intel Core i5-8500B,65 -Intel Core i5-8500T,35 +Intel Core i5-8500,65.0 +Intel Core i5-8500B,65.0 +Intel Core i5-8500T,35.0 Intel Core i5-8550,65 -Intel Core i5-8600,65 -Intel Core i5-8600K,95 -Intel Core i5-8600T,35 +Intel Core i5-8600,65.0 +Intel Core i5-8600K,95.0 +Intel Core i5-8600T,35.0 Intel Core i5-8650,65 Intel Core i5-8650K,95 -Intel Core i5-9300H,45 -Intel Core i5-9300HF,45 -Intel Core i5-9400,65 -Intel Core i5-9400F,65 -Intel Core i5-9400H,45 -Intel Core i5-9400T,35 -Intel Core i5-9500,65 -Intel Core i5-9500E,65 -Intel Core i5-9500F,65 -Intel Core i5-9500T,35 -Intel Core i5-9500TE,35 -Intel Core i5-9600,65 -Intel Core i5-9600K,95 -Intel Core i5-9600KF,95 -Intel Core i5-9600T,35 -Intel Core i7-10510U,25 -Intel Core i7-10510Y,9 +Intel Core i5-9300H,45.0 +Intel Core i5-9300HF,45.0 +Intel Core i5-9400,65.0 +Intel Core i5-9400F,65.0 +Intel Core i5-9400H,45.0 +Intel Core i5-9400T,35.0 +Intel Core i5-9500,65.0 +Intel Core i5-9500E,65.0 +Intel Core i5-9500F,65.0 +Intel Core i5-9500T,35.0 +Intel Core i5-9500TE,35.0 +Intel Core i5-9600,65.0 +Intel Core i5-9600K,95.0 +Intel Core i5-9600KF,95.0 +Intel Core i5-9600T,35.0 +Intel Core i7 processor 14701E,65.0 +Intel Core i7 processor 14701TE,45.0 +"Intel Core i7+8700 (12M Cache, up to 4.60 GHz) includes Intel Optane Memory",65.0 +Intel Core i7-10510U,15.0 +Intel Core i7-10510Y,7.0 Intel Core i7-1060G7,12 -Intel Core i7-10610U,25 -Intel Core i7-1065G7,25 +Intel Core i7-10610U,15.0 +Intel Core i7-1065G7,15.0 Intel Core i7-1068G7,28 Intel Core i7-1068NG7,28 -Intel Core i7-10700,65 -Intel Core i7-10700E,65 -Intel Core i7-10700F,65 -Intel Core i7-10700K,125 -Intel Core i7-10700KF,125 -Intel Core i7-10700T,35 -Intel Core i7-10700TE,35 -Intel Core i7-10710U,25 -Intel Core i7-10750H,45 -Intel Core i7-10810U,25 -Intel Core i7-10850H,45 -Intel Core i7-10870H,45 -Intel Core i7-10875H,45 +Intel Core i7-10700,65.0 +Intel Core i7-10700E,65.0 +Intel Core i7-10700F,65.0 +Intel Core i7-10700K,125.0 +Intel Core i7-10700KF,125.0 +Intel Core i7-10700T,35.0 +Intel Core i7-10700TE,35.0 +Intel Core i7-10710U,15.0 +Intel Core i7-10750H,45.0 +Intel Core i7-10810U,15.0 +Intel Core i7-10850H,45.0 +Intel Core i7-10870H,45.0 +Intel Core i7-10875H,45.0 Intel Core i7-10885H,45 Intel Core i7-11370H,28 Intel Core i7-11375H,35 @@ -2332,155 +2788,178 @@ Intel Core i7-11390H,35 Intel Core i7-11600H,45 Intel Core i7-1160G7,15 Intel Core i7-1165G7,28 -Intel Core i7-11700,65 +Intel Core i7-11700,65.0 Intel Core i7-11700B,65 -Intel Core i7-11700F,65 -Intel Core i7-11700K,125 -Intel Core i7-11700KF,125 -Intel Core i7-11700T,35 +Intel Core i7-11700F,65.0 +Intel Core i7-11700K,125.0 +Intel Core i7-11700KF,125.0 +Intel Core i7-11700T,35.0 Intel Core i7-11800H,45 Intel Core i7-1180G7,15 Intel Core i7-11850H,45 Intel Core i7-11850HE,45 Intel Core i7-1185G7,28 -Intel Core i7-1185G7E,28 -Intel Core i7-1185GRE,28 +Intel Core i7-1185G7E,15.0 +Intel Core i7-1185GRE,15.0 Intel Core i7-1195G7,28 +Intel Core i7-1255UL,15.0 +Intel Core i7-1265UL,15.0 Intel Core i7-12700K,190 Intel Core i7-1270P,64 Intel Core i7-1360P,28 -Intel Core i7-2600,95 -Intel Core i7-2600K,95 -Intel Core i7-2600S,65 -Intel Core i7-2610UE,17 -Intel Core i7-2617M,17 -Intel Core i7-2620M,35 -Intel Core i7-2629M,25 -Intel Core i7-2630QM,45 -Intel Core i7-2635QM,45 -Intel Core i7-2637M,17 -Intel Core i7-2640M,35 -Intel Core i7-2649M,25 -Intel Core i7-2655LE,25 -Intel Core i7-2657M,17 -Intel Core i7-2670QM,45 -Intel Core i7-2675QM,45 -Intel Core i7-2677M,17 -Intel Core i7-2700K,95 -Intel Core i7-2710QE,45 -Intel Core i7-2715QE,45 -Intel Core i7-2760QM,45 -Intel Core i7-2820QM,45 -Intel Core i7-2860QM,45 +Intel Core i7-1365UE,15.0 +Intel Core i7-1365URE,15.0 +Intel Core i7-1366URE,15.0 +Intel Core i7-13700E,65.0 +Intel Core i7-13700TE,35.0 +Intel Core i7-1370PE,28.0 +Intel Core i7-1370PRE,28.0 +Intel Core i7-1375PRE,28.0 +Intel Core i7-13800HE,45.0 +Intel Core i7-13800HRE,45.0 +Intel Core i7-2600,95.0 +Intel Core i7-2600K,95.0 +Intel Core i7-2600S,65.0 +Intel Core i7-2610UE,17.0 +Intel Core i7-2617M,17.0 +Intel Core i7-2620M,35.0 +Intel Core i7-2629M,25.0 +Intel Core i7-2630QM,45.0 +Intel Core i7-2635QM,45.0 +Intel Core i7-2637M,17.0 +Intel Core i7-2640M,35.0 +Intel Core i7-2649M,25.0 +Intel Core i7-2655LE,25.0 +Intel Core i7-2657M,17.0 +Intel Core i7-2670QM,45.0 +Intel Core i7-2675QM,45.0 +Intel Core i7-2677M,17.0 +Intel Core i7-2700K,95.0 +Intel Core i7-2710QE,45.0 +Intel Core i7-2715QE,45.0 +Intel Core i7-2720QM,45.0 +Intel Core i7-2760QM,45.0 +Intel Core i7-2820QM,45.0 +Intel Core i7-2860QM,45.0 Intel Core i7-2920XM,55 +Intel Core i7-2920XM Extreme Edition,55.0 Intel Core i7-2960XM,55 -Intel Core i7-3517U,17 -Intel Core i7-3517UE,17 -Intel Core i7-3520M,35 +Intel Core i7-2960XM Extreme Edition,55.0 +Intel Core i7-3517U,17.0 +Intel Core i7-3517UE,17.0 +Intel Core i7-3520M,35.0 Intel Core i7-3525M,35 -Intel Core i7-3537U,17 -Intel Core i7-3540M,35 -Intel Core i7-3555LE,25 -Intel Core i7-3610QE,45 -Intel Core i7-3610QM,45 -Intel Core i7-3612QE,35 -Intel Core i7-3612QM,35 -Intel Core i7-3615QE,45 -Intel Core i7-3615QM,45 -Intel Core i7-3630QM,45 -Intel Core i7-3632QM,35 -Intel Core i7-3635QM,45 -Intel Core i7-3667U,17 -Intel Core i7-3687U,17 -Intel Core i7-3689Y,13 -Intel Core i7-3720QM,45 -Intel Core i7-3740QM,45 -Intel Core i7-3770,77 -Intel Core i7-3770K,77 -Intel Core i7-3770S,65 -Intel Core i7-3770T,45 -Intel Core i7-3820,130 -Intel Core i7-3820QM,45 -Intel Core i7-3840QM,45 +Intel Core i7-3537U,17.0 +Intel Core i7-3540M,35.0 +Intel Core i7-3555LE,25.0 +Intel Core i7-3610QE,45.0 +Intel Core i7-3610QM,45.0 +Intel Core i7-3612QE,35.0 +Intel Core i7-3612QM,35.0 +Intel Core i7-3615QE,45.0 +Intel Core i7-3615QM,45.0 +Intel Core i7-3630QM,45.0 +Intel Core i7-3632QM,35.0 +Intel Core i7-3635QM,45.0 +Intel Core i7-3667U,17.0 +Intel Core i7-3687U,17.0 +Intel Core i7-3689Y,13.0 +Intel Core i7-3720QM,45.0 +Intel Core i7-3740QM,45.0 +Intel Core i7-3770,77.0 +Intel Core i7-3770K,77.0 +Intel Core i7-3770S,65.0 +Intel Core i7-3770T,45.0 +Intel Core i7-3820,130.0 +Intel Core i7-3820QM,45.0 +Intel Core i7-3840QM,45.0 Intel Core i7-3910K,130 Intel Core i7-3920XM,55 -Intel Core i7-3930K,130 +Intel Core i7-3920XM Extreme Edition,55.0 +Intel Core i7-3930K,130.0 Intel Core i7-3940XM,55 +Intel Core i7-3940XM Extreme Edition,55.0 Intel Core i7-3960X,130 +Intel Core i7-3960X Extreme Edition,130.0 Intel Core i7-3970X,150 -Intel Core i7-4500U,15 -Intel Core i7-4510U,15 -Intel Core i7-4550U,15 -Intel Core i7-4558U,28 -Intel Core i7-4578U,28 -Intel Core i7-4600M,37 -Intel Core i7-4600U,15 -Intel Core i7-4610M,37 -Intel Core i7-4610Y,11.5 -Intel Core i7-4650U,15 -Intel Core i7-4700EC,43 -Intel Core i7-4700EQ,47 -Intel Core i7-4700HQ,47 -Intel Core i7-4700MQ,47 +Intel Core i7-3970X Extreme Edition,150.0 +Intel Core i7-4500U,15.0 +Intel Core i7-4510U,15.0 +Intel Core i7-4550U,15.0 +Intel Core i7-4558U,28.0 +Intel Core i7-4578U,28.0 +Intel Core i7-4600M,37.0 +Intel Core i7-4600U,15.0 +Intel Core i7-4610M,37.0 +Intel Core i7-4610Y,11.0 +Intel Core i7-4650U,15.0 +Intel Core i7-4700EC,43.0 +Intel Core i7-4700EQ,47.0 +Intel Core i7-4700HQ,47.0 +Intel Core i7-4700MQ,47.0 Intel Core i7-4701EQ,47 -Intel Core i7-4702EC,27 -Intel Core i7-4702HQ,37 -Intel Core i7-4702MQ,37 -Intel Core i7-4710HQ,47 -Intel Core i7-4710MQ,47 -Intel Core i7-4712HQ,37 -Intel Core i7-4712MQ,37 -Intel Core i7-4720HQ,47 -Intel Core i7-4722HQ,37 -Intel Core i7-4750HQ,47 -Intel Core i7-4760HQ,47 -Intel Core i7-4765T,35 -Intel Core i7-4770,84 -Intel Core i7-4770HQ,47 -Intel Core i7-4770K,84 -Intel Core i7-4770R,65 -Intel Core i7-4770S,65 -Intel Core i7-4770T,45 -Intel Core i7-4770TE,45 -Intel Core i7-4771,84 -Intel Core i7-4785T,35 -Intel Core i7-4790,84 -Intel Core i7-4790K,88 -Intel Core i7-4790S,65 -Intel Core i7-4790T,45 -Intel Core i7-4800MQ,47 -Intel Core i7-4810MQ,47 -Intel Core i7-4820K,130 +Intel Core i7-4702EC,27.0 +Intel Core i7-4702HQ,37.0 +Intel Core i7-4702MQ,37.0 +Intel Core i7-4710HQ,47.0 +Intel Core i7-4710MQ,47.0 +Intel Core i7-4712HQ,37.0 +Intel Core i7-4712MQ,37.0 +Intel Core i7-4720HQ,47.0 +Intel Core i7-4722HQ,37.0 +Intel Core i7-4750HQ,47.0 +Intel Core i7-4760HQ,47.0 +Intel Core i7-4765T,35.0 +Intel Core i7-4770,84.0 +Intel Core i7-4770HQ,47.0 +Intel Core i7-4770K,84.0 +Intel Core i7-4770R,65.0 +Intel Core i7-4770S,65.0 +Intel Core i7-4770T,45.0 +Intel Core i7-4770TE,45.0 +Intel Core i7-4771,84.0 +Intel Core i7-4785T,35.0 +Intel Core i7-4790,84.0 +Intel Core i7-4790K,88.0 +Intel Core i7-4790S,65.0 +Intel Core i7-4790T,45.0 +Intel Core i7-4800MQ,47.0 +Intel Core i7-4810MQ,47.0 +Intel Core i7-4820K,130.0 Intel Core i7-4850EQ,47 -Intel Core i7-4850HQ,47 +Intel Core i7-4850HQ,47.0 Intel Core i7-4860EQ,47 -Intel Core i7-4860HQ,47 -Intel Core i7-4870HQ,47 -Intel Core i7-4900MQ,47 -Intel Core i7-4910MQ,47 -Intel Core i7-4930K,130 +Intel Core i7-4860HQ,47.0 +Intel Core i7-4870HQ,47.0 +Intel Core i7-4900MQ,47.0 +Intel Core i7-4910MQ,47.0 +Intel Core i7-4930K,130.0 Intel Core i7-4930MX,57 +Intel Core i7-4930MX Extreme Edition,57.0 Intel Core i7-4940MX,57 -Intel Core i7-4950HQ,47 -Intel Core i7-4960HQ,47 +Intel Core i7-4940MX Extreme Edition,57.0 +Intel Core i7-4950HQ,47.0 +Intel Core i7-4960HQ,47.0 Intel Core i7-4960X,130 -Intel Core i7-4980HQ,47 -Intel Core i7-5500U,15 -Intel Core i7-5550U,15 -Intel Core i7-5557U,28 -Intel Core i7-5600U,15 -Intel Core i7-5650U,15 -Intel Core i7-5700EQ,47 -Intel Core i7-5700HQ,47 -Intel Core i7-5750HQ,47 -Intel Core i7-5775C,65 -Intel Core i7-5775R,65 -Intel Core i7-5820K,140 -Intel Core i7-5850EQ,47 -Intel Core i7-5850HQ,47 -Intel Core i7-5930K,140 -Intel Core i7-5950HQ,47 +Intel Core i7-4960X Extreme Edition,130.0 +Intel Core i7-4980HQ,47.0 +Intel Core i7-5500U,15.0 +Intel Core i7-5550U,15.0 +Intel Core i7-5557U,28.0 +Intel Core i7-5600U,15.0 +Intel Core i7-5650U,15.0 +Intel Core i7-5700EQ,47.0 +Intel Core i7-5700HQ,47.0 +Intel Core i7-5750HQ,47.0 +Intel Core i7-5775C,65.0 +Intel Core i7-5775R,65.0 +Intel Core i7-5820K,140.0 +Intel Core i7-5850EQ,47.0 +Intel Core i7-5850HQ,47.0 +Intel Core i7-5930K,140.0 +Intel Core i7-5950HQ,47.0 Intel Core i7-5960X,140 +Intel Core i7-5960X Extreme Edition,140.0 Intel Core i7-610E,35 Intel Core i7-620LE,25 Intel Core i7-620LM,25 @@ -2491,84 +2970,87 @@ Intel Core i7-640LM,25 Intel Core i7-640M,35 Intel Core i7-640UM,18 Intel Core i7-6498DU,15 -Intel Core i7-6500U,15 -Intel Core i7-6560U,15 -Intel Core i7-6567U,28 -Intel Core i7-6600U,15 +Intel Core i7-6500U,15.0 +Intel Core i7-6560U,15.0 +Intel Core i7-6567U,28.0 +Intel Core i7-6600U,15.0 Intel Core i7-660LM,25 Intel Core i7-660UE,18 Intel Core i7-660UM,18 -Intel Core i7-6650U,15 -Intel Core i7-6660U,15 -Intel Core i7-6700,65 -Intel Core i7-6700HQ,45 -Intel Core i7-6700HQ,45 -Intel Core i7-6700K,95 -Intel Core i7-6700T,35 -Intel Core i7-6700TE,35 -Intel Core i7-6770HQ,45 -Intel Core i7-6785R,65 -Intel Core i7-6800K,140 +Intel Core i7-6650U,15.0 +Intel Core i7-6660U,15.0 +Intel Core i7-6700,65.0 +Intel Core i7-6700HQ,45.0 +Intel Core i7-6700K,91.0 +Intel Core i7-6700T,35.0 +Intel Core i7-6700TE,35.0 +Intel Core i7-6770HQ,45.0 +Intel Core i7-6785R,65.0 +Intel Core i7-6800K,140.0 Intel Core i7-680UM,18 -Intel Core i7-6820EQ,45 -Intel Core i7-6820HK,45 -Intel Core i7-6820HQ,45 -Intel Core i7-6822EQ,25 -Intel Core i7-6850K,140 -Intel Core i7-6870HQ,45 -Intel Core i7-6900K,140 -Intel Core i7-6920HQ,45 +Intel Core i7-6820EQ,45.0 +Intel Core i7-6820HK,45.0 +Intel Core i7-6820HQ,45.0 +Intel Core i7-6822EQ,25.0 +Intel Core i7-6850K,140.0 +Intel Core i7-6870HQ,45.0 +Intel Core i7-6900K,140.0 +Intel Core i7-6920HQ,45.0 Intel Core i7-6950X,140 -Intel Core i7-6970HQ,45 +Intel Core i7-6950X Extreme Edition,140.0 +Intel Core i7-6970HQ,45.0 Intel Core i7-720QM,45 Intel Core i7-740QM,45 Intel Core i7-7500U,15.0 Intel Core i7-7560U,15.0 Intel Core i7-7567U,28.0 -Intel Core i7-7600U,15 +Intel Core i7-7600U,15.0 Intel Core i7-7660U,15.0 -Intel Core i7-7700,65 +Intel Core i7-7700,65.0 Intel Core i7-7700HQ,45.0 -Intel Core i7-7700K,91 -Intel Core i7-7700T,35 +Intel Core i7-7700K,91.0 +Intel Core i7-7700T,35.0 Intel Core i7-7740X,112 +Intel Core i7-7740X X-series,112.0 Intel Core i7-7800X,140 -Intel Core i7-7820EQ,45 +Intel Core i7-7800X X-series,140.0 +Intel Core i7-7820EQ,45.0 Intel Core i7-7820HK,45.0 Intel Core i7-7820HQ,45.0 Intel Core i7-7820X,140 +Intel Core i7-7820X X-series,140.0 Intel Core i7-7920HQ,45.0 -Intel Core i7-7Y75,4.5 -Intel Core i7-8086K,95 +Intel Core i7-7Y75,4.0 +Intel Core i7-8086K,95.0 Intel Core i7-820QM,45 Intel Core i7-840QM,45 -Intel Core i7-8500Y,5 -Intel Core i7-8550U,15 -Intel Core i7-8557U,15 -Intel Core i7-8559U,28 -Intel Core i7-8565U,28 -Intel Core i7-8569U,28 +Intel Core i7-8500Y,5.0 +Intel Core i7-8550U,15.0 +Intel Core i7-8557U,15.0 +Intel Core i7-8559U,28.0 +Intel Core i7-8565U,15.0 +Intel Core i7-8569U,28.0 Intel Core i7-860,95 Intel Core i7-860S,82 -Intel Core i7-8650U,15 -Intel Core i7-8665U,15 -Intel Core i7-8665UE,15 +Intel Core i7-8650U,15.0 +Intel Core i7-8665U,15.0 +Intel Core i7-8665UE,15.0 Intel Core i7-8670,65 Intel Core i7-8670T,35 Intel Core i7-870,95 -Intel Core i7-8700,65 -Intel Core i7-8700B,65 -Intel Core i7-8700K,95 -Intel Core i7-8700T,35 +Intel Core i7-8700,65.0 +Intel Core i7-8700B,65.0 +Intel Core i7-8700K,95.0 +Intel Core i7-8700T,35.0 Intel Core i7-8705G,65 Intel Core i7-8706G,65 Intel Core i7-8709G,65 Intel Core i7-870S,82 -Intel Core i7-8750H,45 +Intel Core i7-8750H,45.0 Intel Core i7-875K,95 Intel Core i7-880,95 Intel Core i7-8809G,65 -Intel Core i7-8850H,45 +Intel Core i7-8850H,45.0 Intel Core i7-920,130 Intel Core i7-920XM,55 Intel Core i7-930,130 @@ -2579,69 +3061,127 @@ Intel Core i7-960,130 Intel Core i7-965,130 Intel Core i7-965 Extreme Edition,130 Intel Core i7-970,130 -Intel Core i7-9700,65 -Intel Core i7-9700E,65 -Intel Core i7-9700F,65 -Intel Core i7-9700K,95 -Intel Core i7-9700KF,95 -Intel Core i7-9700T,35 -Intel Core i7-9700TE,35 +Intel Core i7-9700,65.0 +Intel Core i7-9700E,65.0 +Intel Core i7-9700F,65.0 +Intel Core i7-9700K,95.0 +Intel Core i7-9700KF,95.0 +Intel Core i7-9700T,35.0 +Intel Core i7-9700TE,35.0 Intel Core i7-975,130 Intel Core i7-975 Extreme Edition,130 -Intel Core i7-9750H,45 -Intel Core i7-9750HF,45 +Intel Core i7-9750H,45.0 +Intel Core i7-9750HF,45.0 Intel Core i7-980,130 Intel Core i7-9800X,165 +Intel Core i7-9800X X-series,165.0 Intel Core i7-980X,130 -Intel Core i7-9850H,45 -Intel Core i7-9850HE,45 -Intel Core i7-9850HL,25 +Intel Core i7-9850H,45.0 +Intel Core i7-9850HE,45.0 +Intel Core i7-9850HL,25.0 Intel Core i7-990X,130 +Intel Core i9 processor 14901E,65.0 +Intel Core i9 processor 14901KE,125.0 +Intel Core i9 processor 14901TE,45.0 Intel Core i9-10800F,65 -Intel Core i9-10850K,125 -Intel Core i9-10900,65 -Intel Core i9-10900E,65 -Intel Core i9-10900F,65 -Intel Core i9-10900K,125 -Intel Core i9-10900KF,125 -Intel Core i9-10900T,35 +Intel Core i9-10850K,125.0 +Intel Core i9-10885H,45.0 +Intel Core i9-10900,65.0 +Intel Core i9-10900E,65.0 +Intel Core i9-10900F,65.0 +Intel Core i9-10900K,125.0 +Intel Core i9-10900KF,125.0 +Intel Core i9-10900T,35.0 +Intel Core i9-10900TE,35.0 Intel Core i9-10900X,165 +Intel Core i9-10900X X-series,165.0 Intel Core i9-10910,125 Intel Core i9-10920X,165 +Intel Core i9-10920X X-series,165.0 Intel Core i9-10940X,165 -Intel Core i9-10980HK,45 +Intel Core i9-10940X X-series,165.0 +Intel Core i9-10980HK,45.0 Intel Core i9-10980XE,165 +Intel Core i9-10980XE Extreme Edition,165.0 Intel Core i9-10990XE,380 -Intel Core i9-11900,65 -Intel Core i9-11900F,65 -Intel Core i9-11900K,125 -Intel Core i9-11900KF,125 -Intel Core i9-11900T,35 +Intel Core i9-11900,65.0 +Intel Core i9-11900F,65.0 +Intel Core i9-11900K,125.0 +Intel Core i9-11900KF,125.0 +Intel Core i9-11900T,35.0 +Intel Core i9-13900E,65.0 +Intel Core i9-13900TE,35.0 Intel Core i9-7900X,140 +Intel Core i9-7900X X-series,140.0 Intel Core i9-7920X,140 +Intel Core i9-7920X X-series,140.0 Intel Core i9-7940X,165 +Intel Core i9-7940X X-series,165.0 Intel Core i9-7960X,165 +Intel Core i9-7960X X-series,165.0 Intel Core i9-7980XE,165 -Intel Core i9-8950HK,95 +Intel Core i9-7980XE Extreme Edition,165.0 +Intel Core i9-8950HK,45.0 Intel Core i9-9820X,165 -Intel Core i9-9880H,45 -Intel Core i9-9900,65 -Intel Core i9-9900K,95 -Intel Core i9-9900KF,95 -Intel Core i9-9900KS,127 -Intel Core i9-9900T,35 +Intel Core i9-9820X X-series,165.0 +Intel Core i9-9880H,45.0 +Intel Core i9-9900,65.0 +Intel Core i9-9900K,95.0 +Intel Core i9-9900KF,95.0 +Intel Core i9-9900KS,127.0 +Intel Core i9-9900T,35.0 Intel Core i9-9900X,165 +Intel Core i9-9900X X-series,165.0 Intel Core i9-9920X,165 +Intel Core i9-9920X X-series,165.0 Intel Core i9-9940X,165 +Intel Core i9-9940X X-series,165.0 Intel Core i9-9960X,165 -Intel Core i9-9980HK,45 +Intel Core i9-9960X X-series,165.0 +Intel Core i9-9980HK,45.0 Intel Core i9-9980XE,165 +Intel Core i9-9980XE Extreme Edition,165.0 Intel Core i9-9990XE,255 -Intel Core m3-8100Y,5 +Intel Core m3-6Y30,4.0 +Intel Core m3-7Y30,4.0 +Intel Core m3-7Y32,4.0 +Intel Core m3-8100Y,5.0 Intel Core m3-8114Y,28 +Intel Core m5-6Y54,4.0 +Intel Core m5-6Y57,4.0 +Intel Core m7-6Y75,4.0 Intel Core i7-2720QM,45 Intel Core i7-2760QM,45 -Intel(R) Core(TM) Ultra 7 165H,28 +Intel EP80579 Integrated,20.0 +"Intel EP80579 Integrated, 1066 MHz",18.0 +"Intel EP80579 Integrated, 1200 MHz",19.0 +"Intel EP80579 Integrated, 600 MHz",11.0 +Intel IOC340 I/O Controller,11.0 +Intel IOP341 I/O,11.0 +Intel IOP342 I/O,11.0 +Intel IOP348 I/O,12.0 +Intel Itanium 9015,104.0 +Intel Itanium 9110N,75.0 +Intel Itanium 9120N,104.0 +Intel Itanium 9130M,104.0 +Intel Itanium 9140M,104.0 +Intel Itanium 9140N,104.0 +Intel Itanium 9150M,104.0 +Intel Itanium 9150N,104.0 +Intel Itanium 9152M,104.0 +Intel Itanium 9310,130.0 +Intel Itanium 9320,155.0 +Intel Itanium 9330,155.0 +Intel Itanium 9340,185.0 +Intel Itanium 9350,185.0 +Intel Itanium 9520,130.0 +Intel Itanium 9540,170.0 +Intel Itanium 9550,170.0 +Intel Itanium 9560,170.0 +Intel Itanium 9720,130.0 +Intel Itanium 9740,170.0 +Intel Itanium 9750,170.0 +Intel Itanium 9760,170.0 Intel Mobile Celeron 266,9.8 Intel Mobile Celeron 300,11.1 Intel Mobile Celeron 333,11.8 @@ -2663,31 +3203,35 @@ Intel Mobile Pentium 4 HT 532,88 Intel Mobile Pentium 4 HT 538,88 Intel Mobile Pentium 4 HT 548,88 Intel Mobile Pentium 4 HT 552,88 +Intel N100,6.0 +Intel N200,6.0 +Intel N50,6.0 +Intel N97,12.0 Intel Pentium 100,10.1 Intel Pentium 120,12.81 Intel Pentium 133,11.2 Intel Pentium 1403,80 Intel Pentium 1403 v2,80 -Intel Pentium 1405,40 -Intel Pentium 1405 v2,40 +Intel Pentium 1405,40.0 +Intel Pentium 1405 v2,40.0 Intel Pentium 1407,80 Intel Pentium 150,11.6 Intel Pentium 166,14.5 Intel Pentium 200,15.5 -Intel Pentium 2020M,35 -Intel Pentium 2030M,35 -Intel Pentium 2117U,17 -Intel Pentium 2127U,17 -Intel Pentium 2129Y,10 +Intel Pentium 2020M,35.0 +Intel Pentium 2030M,35.0 +Intel Pentium 2117U,17.0 +Intel Pentium 2127U,17.0 +Intel Pentium 2129Y,10.0 Intel Pentium 350,15 -Intel Pentium 3550M,37 -Intel Pentium 3556U,15 -Intel Pentium 3558U,15 -Intel Pentium 3560M,37 -Intel Pentium 3560Y,11.5 -Intel Pentium 3561Y,11.5 -Intel Pentium 3805U,15 -Intel Pentium 3825U,15 +Intel Pentium 3550M,37.0 +Intel Pentium 3556U,15.0 +Intel Pentium 3558U,15.0 +Intel Pentium 3560M,37.0 +Intel Pentium 3560Y,11.0 +Intel Pentium 3561Y,11.0 +Intel Pentium 3805U,15.0 +Intel Pentium 3825U,15.0 Intel Pentium 4 1.3,52 Intel Pentium 4 1.4,55 Intel Pentium 4 1.5,58 @@ -2766,11 +3310,11 @@ Intel Pentium 4-M 2.20,35 Intel Pentium 4-M 2.40,35 Intel Pentium 4-M 2.50,35 Intel Pentium 4-M 2.60,35 -Intel Pentium 4405U,15 -Intel Pentium 4405Y,6 +Intel Pentium 4405U,15.0 +Intel Pentium 4405Y,6.0 Intel Pentium 60,14.6 Intel Pentium 66,16 -Intel Pentium 6805,15 +Intel Pentium 6805,15.0 Intel Pentium 75,8 Intel Pentium 90,9 Intel Pentium 957,17 @@ -2778,7 +3322,8 @@ Intel Pentium 967,17 Intel Pentium 977,17 Intel Pentium 987,17 Intel Pentium 997,17 -Intel Pentium A1018,35 +Intel Pentium A1018,35.0 +Intel Pentium A1020,10.0 Intel Pentium B915C,15 Intel Pentium B925C,15 Intel Pentium B940,35 @@ -2801,11 +3346,11 @@ Intel Pentium D 950,130 Intel Pentium D 955 EE,130 Intel Pentium D 960,130 Intel Pentium D 965 EE,130 -Intel Pentium D1507,20 -Intel Pentium D1508,25 -Intel Pentium D1509,19 -Intel Pentium D1517,25 -Intel Pentium D1519,25 +Intel Pentium D1507,20.0 +Intel Pentium D1508,25.0 +Intel Pentium D1509,19.0 +Intel Pentium D1517,25.0 +Intel Pentium D1519,25.0 Intel Pentium Dual-Core E2140,65 Intel Pentium Dual-Core E2160,65 Intel Pentium Dual-Core E2180,65 @@ -2841,47 +3386,47 @@ Intel Pentium E6500K,65 Intel Pentium E6600,65 Intel Pentium E6700,65 Intel Pentium E6800,65 -Intel Pentium G2010,55 -Intel Pentium G2020,55 -Intel Pentium G2020T,35 -Intel Pentium G2030,55 -Intel Pentium G2030T,35 -Intel Pentium G2100T,35 -Intel Pentium G2120,55 -Intel Pentium G2120T,35 -Intel Pentium G2130,55 -Intel Pentium G2140,55 -Intel Pentium G3220,54 -Intel Pentium G3220T,35 -Intel Pentium G3240,53 -Intel Pentium G3240T,35 -Intel Pentium G3250,54 -Intel Pentium G3250T,35 -Intel Pentium G3258,54 -Intel Pentium G3260,53 -Intel Pentium G3260T,35 -Intel Pentium G3320TE,35 -Intel Pentium G3420,54 -Intel Pentium G3420T,35 -Intel Pentium G3430,54 -Intel Pentium G3440,54 -Intel Pentium G3440T,35 -Intel Pentium G3450,54 -Intel Pentium G3450T,35 -Intel Pentium G3460,54 -Intel Pentium G3460T,35 -Intel Pentium G3470,53 -Intel Pentium G4400,51 -Intel Pentium G4400T,35 -Intel Pentium G4400TE,35 -Intel Pentium G4500,51 -Intel Pentium G4500T,35 -Intel Pentium G4520,51 -Intel Pentium G4560,51 -Intel Pentium G4560T,35 -Intel Pentium G4600,51 -Intel Pentium G4600T,35 -Intel Pentium G4620,51 +Intel Pentium G2010,55.0 +Intel Pentium G2020,55.0 +Intel Pentium G2020T,35.0 +Intel Pentium G2030,55.0 +Intel Pentium G2030T,35.0 +Intel Pentium G2100T,35.0 +Intel Pentium G2120,55.0 +Intel Pentium G2120T,35.0 +Intel Pentium G2130,55.0 +Intel Pentium G2140,55.0 +Intel Pentium G3220,53.0 +Intel Pentium G3220T,35.0 +Intel Pentium G3240,53.0 +Intel Pentium G3240T,35.0 +Intel Pentium G3250,53.0 +Intel Pentium G3250T,35.0 +Intel Pentium G3258,53.0 +Intel Pentium G3260,53.0 +Intel Pentium G3260T,35.0 +Intel Pentium G3320TE,35.0 +Intel Pentium G3420,53.0 +Intel Pentium G3420T,35.0 +Intel Pentium G3430,53.0 +Intel Pentium G3440,53.0 +Intel Pentium G3440T,35.0 +Intel Pentium G3450,53.0 +Intel Pentium G3450T,35.0 +Intel Pentium G3460,53.0 +Intel Pentium G3460T,35.0 +Intel Pentium G3470,53.0 +Intel Pentium G4400,54.0 +Intel Pentium G4400T,35.0 +Intel Pentium G4400TE,35.0 +Intel Pentium G4500,51.0 +Intel Pentium G4500T,35.0 +Intel Pentium G4520,51.0 +Intel Pentium G4560,54.0 +Intel Pentium G4560T,35.0 +Intel Pentium G4600,51.0 +Intel Pentium G4600T,35.0 +Intel Pentium G4620,51.0 Intel Pentium G620,65 Intel Pentium G620T,35 Intel Pentium G622,65 @@ -2900,37 +3445,37 @@ Intel Pentium G850,65 Intel Pentium G860,65 Intel Pentium G860T,35 Intel Pentium G870,65 -Intel Pentium Gold 4410Y,6 -Intel Pentium Gold 4415U,15 -Intel Pentium Gold 4415Y,6 -Intel Pentium Gold 4417U,15 -Intel Pentium Gold 4425Y,6 -Intel Pentium Gold 5405U,15 -Intel Pentium Gold 6405U,15 -Intel Pentium Gold 6500Y,5 +Intel Pentium Gold 4410Y,6.0 +Intel Pentium Gold 4415U,15.0 +Intel Pentium Gold 4415Y,6.0 +Intel Pentium Gold 4417U,15.0 +Intel Pentium Gold 4425Y,6.0 +Intel Pentium Gold 5405U,15.0 +Intel Pentium Gold 6405U,15.0 +Intel Pentium Gold 6500Y,5.0 Intel Pentium Gold 7505,15 -Intel Pentium Gold G5400,58 -Intel Pentium Gold G5400T,35 -Intel Pentium Gold G5420,54 -Intel Pentium Gold G5420T,35 -Intel Pentium Gold G5500,51 -Intel Pentium Gold G5500T,35 -Intel Pentium Gold G5600,51 +Intel Pentium Gold G5400,58.0 +Intel Pentium Gold G5400T,35.0 +Intel Pentium Gold G5420,54.0 +Intel Pentium Gold G5420T,35.0 +Intel Pentium Gold G5500,54.0 +Intel Pentium Gold G5500T,35.0 +Intel Pentium Gold G5600,54.0 Intel Pentium Gold G5600E,35 -Intel Pentium Gold G5600T,35 -Intel Pentium Gold G5620,51 -Intel Pentium Gold G6400,58 -Intel Pentium Gold G6400E,58 -Intel Pentium Gold G6400T,35 -Intel Pentium Gold G6400TE,35 -Intel Pentium Gold G6405,65 -Intel Pentium Gold G6405T,35 -Intel Pentium Gold G6500,58 -Intel Pentium Gold G6500T,35 -Intel Pentium Gold G6505,65 -Intel Pentium Gold G6505T,35 -Intel Pentium Gold G6600,58 -Intel Pentium Gold G6605,65 +Intel Pentium Gold G5600T,35.0 +Intel Pentium Gold G5620,54.0 +Intel Pentium Gold G6400,58.0 +Intel Pentium Gold G6400E,58.0 +Intel Pentium Gold G6400T,35.0 +Intel Pentium Gold G6400TE,35.0 +Intel Pentium Gold G6405,58.0 +Intel Pentium Gold G6405T,35.0 +Intel Pentium Gold G6500,58.0 +Intel Pentium Gold G6500T,35.0 +Intel Pentium Gold G6505,58.0 +Intel Pentium Gold G6505T,35.0 +Intel Pentium Gold G6600,58.0 +Intel Pentium Gold G6605,58.0 Intel Pentium II Xeon 400,38.1 Intel Pentium II Xeon 450,46.7 Intel Pentium III 1000,29 @@ -2956,11 +3501,11 @@ Intel Pentium III Xeon 800,25.4 Intel Pentium III Xeon 866,29.6 Intel Pentium III Xeon 900,39.3 Intel Pentium III Xeon 933,29.6 -Intel Pentium J2850,10 -Intel Pentium J2900,10 -Intel Pentium J3710,6.5 -Intel Pentium J4205,10 -Intel Pentium J6426,10 +Intel Pentium J2850,10.0 +Intel Pentium J2900,10.0 +Intel Pentium J3710,6.0 +Intel Pentium J4205,10.0 +Intel Pentium J6426,10.0 Intel Pentium M 1.30,24 Intel Pentium M 1.40,24 Intel Pentium M 1.50,24 @@ -2981,32 +3526,42 @@ Intel Pentium M 780,27 Intel Pentium MMX 166,13.1 Intel Pentium MMX 200,15.7 Intel Pentium MMX 233,17 -Intel Pentium N3510,7.5 -Intel Pentium N3520,7.5 -Intel Pentium N3530,7.5 -Intel Pentium N3540,7.5 -Intel Pentium N3700,6 -Intel Pentium N3710,6 -Intel Pentium N4200,6 -Intel Pentium N6415,6.5 +Intel Pentium N3510,7.0 +Intel Pentium N3520,7.0 +Intel Pentium N3530,7.0 +Intel Pentium N3540,7.0 +Intel Pentium N3700,6.0 +Intel Pentium N3710,6.0 +Intel Pentium N4200,6.0 +Intel Pentium N4200E,6.0 +Intel Pentium N6415,6.0 Intel Pentium P6000,35 Intel Pentium P6100,35 Intel Pentium P6200,35 Intel Pentium P6300,35 Intel Pentium SU2700,10 Intel Pentium SU4100,10 -Intel Pentium Silver J5005,10 -Intel Pentium Silver J5040,10 -Intel Pentium Silver N5000,6 -Intel Pentium Silver N5030,6 -Intel Pentium Silver N6000,6 -Intel Pentium Silver N6005,10 +Intel Pentium Silver J5005,10.0 +Intel Pentium Silver J5040,10.0 +Intel Pentium Silver N5000,6.0 +Intel Pentium Silver N5030,6.0 +Intel Pentium Silver N6000,6.0 +Intel Pentium Silver N6005,10.0 Intel Pentium T4200,35 Intel Pentium T4300,35 Intel Pentium T4400,35 Intel Pentium T4500,35 Intel Pentium U5400,18 Intel Pentium U5600,18 +Intel Quark Microcontroller D1000,0.0 +Intel Quark SoC X1000,2.0 +Intel Quark SoC X1001,2.0 +Intel Quark SoC X1010,2.0 +Intel Quark SoC X1011,2.0 +Intel Quark SoC X1020,2.0 +Intel Quark SoC X1020D,2.0 +Intel Quark SoC X1021,2.0 +Intel Quark SoC X1021D,2.0 Intel Xeon 1.4,56 Intel Xeon 1.5,59.2 Intel Xeon 1.7,65.8 @@ -3059,6 +3614,72 @@ Intel Xeon 5148,40 Intel Xeon 5150,65 Intel Xeon 5160,80 Intel Xeon 5320,185 +Intel Xeon 6315P,55.0 +Intel Xeon 6325P,55.0 +Intel Xeon 6333P,65.0 +Intel Xeon 6337P,80.0 +Intel Xeon 6349P,95.0 +Intel Xeon 6353P,65.0 +Intel Xeon 6357P,80.0 +Intel Xeon 6369P,95.0 +Intel Xeon 6503P-B,110.0 +Intel Xeon 6505P,150.0 +Intel Xeon 6507P,150.0 +Intel Xeon 6511P,150.0 +Intel Xeon 6513P-B,130.0 +Intel Xeon 6515P,150.0 +Intel Xeon 6516P-B,145.0 +Intel Xeon 6517P,190.0 +Intel Xeon 6520P,210.0 +Intel Xeon 6521P,225.0 +Intel Xeon 6523P-B,175.0 +Intel Xeon 6527P,255.0 +Intel Xeon 6530P,225.0 +Intel Xeon 6533P-B,205.0 +Intel Xeon 6543P-B,160.0 +Intel Xeon 6546P-B,195.0 +Intel Xeon 6553P-B,235.0 +Intel Xeon 6556P-B,215.0 +Intel Xeon 6563P-B,235.0 +Intel Xeon 6706P-B,235.0 +Intel Xeon 6710E,205.0 +Intel Xeon 6714P,165.0 +Intel Xeon 6716P-B,235.0 +Intel Xeon 6724P,210.0 +Intel Xeon 6726P-B,235.0 +Intel Xeon 6728P,210.0 +Intel Xeon 6730P,250.0 +Intel Xeon 6731E,250.0 +Intel Xeon 6731P,245.0 +Intel Xeon 6732P,350.0 +Intel Xeon 6736P,205.0 +Intel Xeon 6737P,270.0 +Intel Xeon 6738P,270.0 +Intel Xeon 6740E,250.0 +Intel Xeon 6740P,270.0 +Intel Xeon 6741P,300.0 +Intel Xeon 6745P,300.0 +Intel Xeon 6746E,250.0 +Intel Xeon 6747P,330.0 +Intel Xeon 6748P,300.0 +Intel Xeon 6756E,225.0 +Intel Xeon 6760P,330.0 +Intel Xeon 6761P,350.0 +Intel Xeon 6766E,250.0 +Intel Xeon 6767P,350.0 +Intel Xeon 6768P,330.0 +Intel Xeon 6774P,350.0 +Intel Xeon 6776P,350.0 +Intel Xeon 6780E,330.0 +Intel Xeon 6781P,350.0 +Intel Xeon 6787P,350.0 +Intel Xeon 6788P,350.0 +Intel Xeon 6944P,350.0 +Intel Xeon 6952P,400.0 +Intel Xeon 6960P,500.0 +Intel Xeon 6972P,500.0 +Intel Xeon 6979P,500.0 +Intel Xeon 6980P,500.0 Intel Xeon 7020,165 Intel Xeon 7030,165 Intel Xeon 7040,165 @@ -3073,345 +3694,486 @@ Intel Xeon 7140M,150 Intel Xeon 7140N,150 Intel Xeon 7150N,150 Intel Xeon AWS-1100 v4,145 -Intel Xeon Bronze 3104,85 -Intel Xeon Bronze 3106,85 -Intel Xeon Bronze 3204,85 -Intel Xeon Bronze 3206R,85 -Intel Xeon D-1513N,35 -Intel Xeon D-1518,35 -Intel Xeon D-1520,45 -Intel Xeon D-1521,45 -Intel Xeon D-1523N,45 -Intel Xeon D-1527,35 -Intel Xeon D-1528,35 -Intel Xeon D-1529,20 -Intel Xeon D-1531,45 -Intel Xeon D-1533N,45 -Intel Xeon D-1537,35 -Intel Xeon D-1539,35 -Intel Xeon D-1540,45 -Intel Xeon D-1541,45 -Intel Xeon D-1543N,45 -Intel Xeon D-1548,45 -Intel Xeon D-1553N,65 -Intel Xeon D-1557,45 -Intel Xeon D-1559,45 -Intel Xeon D-1567,65 -Intel Xeon D-1571,45 -Intel Xeon D-1577,45 +Intel Xeon Bronze 3104,85.0 +Intel Xeon Bronze 3106,85.0 +Intel Xeon Bronze 3204,85.0 +Intel Xeon Bronze 3206R,85.0 +Intel Xeon Bronze 3408U,125.0 +Intel Xeon Bronze 3508U,125.0 +Intel Xeon CPU Max 9460,350.0 +Intel Xeon CPU Max 9462,350.0 +Intel Xeon CPU Max 9468,350.0 +Intel Xeon CPU Max 9470,350.0 +Intel Xeon CPU Max 9480,350.0 +Intel Xeon D-1513N,35.0 +Intel Xeon D-1518,35.0 +Intel Xeon D-1520,45.0 +Intel Xeon D-1521,45.0 +Intel Xeon D-1523N,45.0 +Intel Xeon D-1524N,45.0 +Intel Xeon D-1527,35.0 +Intel Xeon D-1528,35.0 +Intel Xeon D-1529,20.0 +Intel Xeon D-1531,45.0 +Intel Xeon D-1533N,45.0 +Intel Xeon D-1537,35.0 +Intel Xeon D-1539,35.0 +Intel Xeon D-1540,45.0 +Intel Xeon D-1541,45.0 +Intel Xeon D-1543N,45.0 +Intel Xeon D-1548,45.0 +Intel Xeon D-1553N,65.0 +Intel Xeon D-1557,45.0 +Intel Xeon D-1559,45.0 +Intel Xeon D-1567,65.0 +Intel Xeon D-1571,45.0 +Intel Xeon D-1577,45.0 Intel Xeon D-1581,65 Intel Xeon D-1587,65 -Intel Xeon D-1602,27 -Intel Xeon D-1622,40 -Intel Xeon D-1623N,35 -Intel Xeon D-1627,45 -Intel Xeon D-1633N,45 -Intel Xeon D-1637,55 -Intel Xeon D-1649N,45 -Intel Xeon D-1653N,65 -Intel Xeon D-2123IT,60 -Intel Xeon D-2141I,65 -Intel Xeon D-2142IT,65 -Intel Xeon D-2143IT,65 -Intel Xeon D-2145NT,65 -Intel Xeon D-2146NT,80 -Intel Xeon D-2161I,90 -Intel Xeon D-2163IT,75 -Intel Xeon D-2166NT,85 -Intel Xeon D-2173IT,70 -Intel Xeon D-2177NT,105 -Intel Xeon D-2183IT,100 -Intel Xeon D-2187NT,110 +Intel Xeon D-1602,27.0 +Intel Xeon D-1622,40.0 +Intel Xeon D-1623N,35.0 +Intel Xeon D-1627,45.0 +Intel Xeon D-1633N,45.0 +Intel Xeon D-1637,55.0 +Intel Xeon D-1649N,45.0 +Intel Xeon D-1653N,65.0 +Intel Xeon D-1702,25.0 +Intel Xeon D-1712TR,40.0 +Intel Xeon D-1713NT,45.0 +Intel Xeon D-1713NTE,45.0 +Intel Xeon D-1714,38.0 +Intel Xeon D-1715TER,50.0 +Intel Xeon D-1718T,46.0 +Intel Xeon D-1722NE,36.0 +Intel Xeon D-1726,70.0 +Intel Xeon D-1731NTE,45.0 +Intel Xeon D-1732TE,52.0 +Intel Xeon D-1733NT,53.0 +Intel Xeon D-1734NT,50.0 +Intel Xeon D-1735TR,59.0 +Intel Xeon D-1736,55.0 +Intel Xeon D-1736NT,67.0 +Intel Xeon D-1739,83.0 +Intel Xeon D-1746TER,67.0 +Intel Xeon D-1747NTE,80.0 +Intel Xeon D-1748TE,65.0 +Intel Xeon D-1749NT,90.0 +Intel Xeon D-1813NT,42.0 +Intel Xeon D-1823NT,55.0 +Intel Xeon D-1834,42.0 +Intel Xeon D-1844NT,55.0 +Intel Xeon D-1846,55.0 +Intel Xeon D-1848TER,57.0 +Intel Xeon D-2123IT,60.0 +Intel Xeon D-2141I,65.0 +Intel Xeon D-2142IT,65.0 +Intel Xeon D-2143IT,65.0 +Intel Xeon D-2145NT,65.0 +Intel Xeon D-2146NT,80.0 +Intel Xeon D-2161I,90.0 +Intel Xeon D-2163IT,75.0 +Intel Xeon D-2166NT,85.0 +Intel Xeon D-2173IT,70.0 +Intel Xeon D-2177NT,105.0 +Intel Xeon D-2183IT,100.0 +Intel Xeon D-2187NT,110.0 Intel Xeon D-2191,86 +Intel Xeon D-2712T,65.0 +Intel Xeon D-2733NT,80.0 +Intel Xeon D-2738,88.0 +Intel Xeon D-2739NT,97.0 +Intel Xeon D-2745NX,96.0 +Intel Xeon D-2752NTE,84.0 +Intel Xeon D-2752TER,77.0 +Intel Xeon D-2753NT,87.0 +Intel Xeon D-2757NX,107.0 +Intel Xeon D-2766NT,97.0 +Intel Xeon D-2775TE,100.0 +Intel Xeon D-2776NT,117.0 +Intel Xeon D-2777NX,116.0 +Intel Xeon D-2779,126.0 +Intel Xeon D-2786NTE,118.0 +Intel Xeon D-2795NT,110.0 +Intel Xeon D-2796NT,120.0 +Intel Xeon D-2796TE,118.0 +Intel Xeon D-2798NT,125.0 +Intel Xeon D-2798NX,126.0 +Intel Xeon D-2799,129.0 +Intel Xeon D-2832NT,70.0 +Intel Xeon D-2843NT,80.0 +Intel Xeon D-2876NT,100.0 +Intel Xeon D-2896NT,117.0 +Intel Xeon D-2896TER,110.0 +Intel Xeon D-2899NT,135.0 Intel Xeon E-2104G,65 -Intel Xeon E-2124,72 -Intel Xeon E-2124G,72 -Intel Xeon E-2126G,80 -Intel Xeon E-2134,71 -Intel Xeon E-2136,80 -Intel Xeon E-2144G,71 -Intel Xeon E-2146G,80 -Intel Xeon E-2174G,71 -Intel Xeon E-2176G,80 -Intel Xeon E-2176M,45 -Intel Xeon E-2186G,95 -Intel Xeon E-2186M,45 -Intel Xeon E-2224,71 -Intel Xeon E-2224G,71 -Intel Xeon E-2226G,80 -Intel Xeon E-2226GE,80 -Intel Xeon E-2234,71 -Intel Xeon E-2236,80 -Intel Xeon E-2244G,71 -Intel Xeon E-2246G,80 -Intel Xeon E-2254ME,45 -Intel Xeon E-2254ML,25 -Intel Xeon E-2274G,83 -Intel Xeon E-2276G,80 -Intel Xeon E-2276M,45 -Intel Xeon E-2276ME,45 -Intel Xeon E-2276ML,25 -Intel Xeon E-2278G,80 -Intel Xeon E-2278GE,80 -Intel Xeon E-2278GEL,35 -Intel Xeon E-2286G,95 -Intel Xeon E-2286M,45 -Intel Xeon E-2288G,95 -Intel Xeon E-2314,65 -Intel Xeon E-2324G,65 -Intel Xeon E-2334,65 -Intel Xeon E-2336,65 -Intel Xeon E-2356G,80 -Intel Xeon E-2374G,80 -Intel Xeon E-2378,65 -Intel Xeon E-2378G,80 -Intel Xeon E-2386G,95 -Intel Xeon E-2388G,95 -Intel Xeon E3-1105C,25 -Intel Xeon E3-1105C v2,25 -Intel Xeon E3-1125C,40 -Intel Xeon E3-1125C v2,40 +Intel Xeon E-2124,71.0 +Intel Xeon E-2124G,71.0 +Intel Xeon E-2126G,80.0 +Intel Xeon E-2134,71.0 +Intel Xeon E-2136,80.0 +Intel Xeon E-2144G,71.0 +Intel Xeon E-2146G,80.0 +Intel Xeon E-2174G,71.0 +Intel Xeon E-2176G,80.0 +Intel Xeon E-2176M,45.0 +Intel Xeon E-2186G,95.0 +Intel Xeon E-2186M,45.0 +Intel Xeon E-2224,71.0 +Intel Xeon E-2224G,71.0 +Intel Xeon E-2226G,80.0 +Intel Xeon E-2226GE,80.0 +Intel Xeon E-2234,71.0 +Intel Xeon E-2236,80.0 +Intel Xeon E-2244G,71.0 +Intel Xeon E-2246G,80.0 +Intel Xeon E-2254ME,45.0 +Intel Xeon E-2254ML,25.0 +Intel Xeon E-2274G,83.0 +Intel Xeon E-2276G,80.0 +Intel Xeon E-2276M,45.0 +Intel Xeon E-2276ME,45.0 +Intel Xeon E-2276ML,25.0 +Intel Xeon E-2278G,80.0 +Intel Xeon E-2278GE,80.0 +Intel Xeon E-2278GEL,35.0 +Intel Xeon E-2286G,95.0 +Intel Xeon E-2286M,45.0 +Intel Xeon E-2288G,95.0 +Intel Xeon E-2314,65.0 +Intel Xeon E-2324G,65.0 +Intel Xeon E-2334,65.0 +Intel Xeon E-2336,65.0 +Intel Xeon E-2356G,80.0 +Intel Xeon E-2374G,80.0 +Intel Xeon E-2378,65.0 +Intel Xeon E-2378G,80.0 +Intel Xeon E-2386G,95.0 +Intel Xeon E-2388G,95.0 +Intel Xeon E-2414,55.0 +Intel Xeon E-2434,55.0 +Intel Xeon E-2436,65.0 +Intel Xeon E-2456,80.0 +Intel Xeon E-2468,65.0 +Intel Xeon E-2478,80.0 +Intel Xeon E-2486,95.0 +Intel Xeon E-2488,95.0 +Intel Xeon E3-1105C,25.0 +Intel Xeon E3-1105C v2,25.0 +Intel Xeon E3-1125C,40.0 +Intel Xeon E3-1125C v2,40.0 Intel Xeon E3-1135C v2,55 Intel Xeon E3-1205 v6,65 -Intel Xeon E3-1220,80 -Intel Xeon E3-1220 v2,69 -Intel Xeon E3-1220 v5,80 -Intel Xeon E3-1220 v6,72 -Intel Xeon E3-1220L,20 -Intel Xeon E3-1220L v2,17 -Intel Xeon E3-1225,95 -Intel Xeon E3-1225 v2,77 -Intel Xeon E3-1225 v5,80 -Intel Xeon E3-1225 v6,73 -Intel Xeon E3-1230,80 -Intel Xeon E3-1230 v2,69 -Intel Xeon E3-1230 v5,80 -Intel Xeon E3-1230 v6,72 -Intel Xeon E3-1235,95 -Intel Xeon E3-1235L v5,25 -Intel Xeon E3-1240,80 -Intel Xeon E3-1240 v2,69 -Intel Xeon E3-1240 v5,80 -Intel Xeon E3-1240 v6,72 -Intel Xeon E3-1240L v5,25 -Intel Xeon E3-1245,95 -Intel Xeon E3-1245 v2,77 -Intel Xeon E3-1245 v5,80 -Intel Xeon E3-1245 v6,73 -Intel Xeon E3-1258L v4,47 -Intel Xeon E3-1260L,45 -Intel Xeon E3-1260L v5,45 +Intel Xeon E3-1220,80.0 +Intel Xeon E3-1220 v2,69.0 +Intel Xeon E3-1220 v3,80.0 +Intel Xeon E3-1220 v5,80.0 +Intel Xeon E3-1220 v6,72.0 +Intel Xeon E3-1220L,20.0 +Intel Xeon E3-1220L v2,17.0 +Intel Xeon E3-1220L v3,13.0 +Intel Xeon E3-1225,95.0 +Intel Xeon E3-1225 v2,77.0 +Intel Xeon E3-1225 v3,84.0 +Intel Xeon E3-1225 v5,80.0 +Intel Xeon E3-1225 v6,73.0 +Intel Xeon E3-1226 v3,84.0 +Intel Xeon E3-1230,80.0 +Intel Xeon E3-1230 v2,69.0 +Intel Xeon E3-1230 v3,80.0 +Intel Xeon E3-1230 v5,80.0 +Intel Xeon E3-1230 v6,72.0 +Intel Xeon E3-1230L v3,25.0 +Intel Xeon E3-1231 v3,80.0 +Intel Xeon E3-1235,95.0 +Intel Xeon E3-1235L v5,25.0 +Intel Xeon E3-1240,80.0 +Intel Xeon E3-1240 v2,69.0 +Intel Xeon E3-1240 v3,80.0 +Intel Xeon E3-1240 v5,80.0 +Intel Xeon E3-1240 v6,72.0 +Intel Xeon E3-1240L v3,25.0 +Intel Xeon E3-1240L v5,25.0 +Intel Xeon E3-1241 v3,80.0 +Intel Xeon E3-1245,95.0 +Intel Xeon E3-1245 v2,77.0 +Intel Xeon E3-1245 v3,84.0 +Intel Xeon E3-1245 v5,80.0 +Intel Xeon E3-1245 v6,73.0 +Intel Xeon E3-1246 v3,84.0 +Intel Xeon E3-1258L v4,47.0 +Intel Xeon E3-1260L,45.0 +Intel Xeon E3-1260L v5,45.0 Intel Xeon E3-1265L,45 -Intel Xeon E3-1265L v2,45 -Intel Xeon E3-1265L v4,35 -Intel Xeon E3-1268L v5,35 -Intel Xeon E3-1270,80 -Intel Xeon E3-1270 v2,69 -Intel Xeon E3-1270 v5,80 -Intel Xeon E3-1270 v6,72 +Intel Xeon E3-1265L v2,45.0 +Intel Xeon E3-1265L v3,45.0 +Intel Xeon E3-1265L v4,35.0 +Intel Xeon E3-1268L v3,45.0 +Intel Xeon E3-1268L v5,35.0 +Intel Xeon E3-1270,80.0 +Intel Xeon E3-1270 v2,69.0 +Intel Xeon E3-1270 v3,80.0 +Intel Xeon E3-1270 v5,80.0 +Intel Xeon E3-1270 v6,72.0 Intel Xeon E3-1270L v4,45 -Intel Xeon E3-1275,95 -Intel Xeon E3-1275 v2,77 -Intel Xeon E3-1275 v5,80 -Intel Xeon E3-1275 v6,73 -Intel Xeon E3-1278L v4,47 -Intel Xeon E3-1280,95 -Intel Xeon E3-1280 v2,69 -Intel Xeon E3-1280 v5,80 -Intel Xeon E3-1280 v6,72 +Intel Xeon E3-1271 v3,80.0 +Intel Xeon E3-1275,95.0 +Intel Xeon E3-1275 v2,77.0 +Intel Xeon E3-1275 v3,84.0 +Intel Xeon E3-1275 v5,80.0 +Intel Xeon E3-1275 v6,73.0 +Intel Xeon E3-1275L v3,45.0 +Intel Xeon E3-1276 v3,84.0 +Intel Xeon E3-1278L v4,47.0 +Intel Xeon E3-1280,95.0 +Intel Xeon E3-1280 v2,69.0 +Intel Xeon E3-1280 v3,82.0 +Intel Xeon E3-1280 v5,80.0 +Intel Xeon E3-1280 v6,72.0 +Intel Xeon E3-1281 v3,82.0 Intel Xeon E3-1283L v4,47 Intel Xeon E3-1284L v4,47 Intel Xeon E3-1285 v2,77 -Intel Xeon E3-1285 v4,95 -Intel Xeon E3-1285 v6,79 +Intel Xeon E3-1285 v3,84.0 +Intel Xeon E3-1285 v4,95.0 +Intel Xeon E3-1285 v6,79.0 Intel Xeon E3-1285L v2,65 -Intel Xeon E3-1285L v4,65 -Intel Xeon E3-1290,95 -Intel Xeon E3-1290 v2,87 -Intel Xeon E3-1501L v6,25 -Intel Xeon E3-1501M v6,45 -Intel Xeon E3-1505L v5,25 -Intel Xeon E3-1505L v6,25 -Intel Xeon E3-1505M v5,45 -Intel Xeon E3-1505M v6,45 -Intel Xeon E3-1515M v5,45 -Intel Xeon E3-1535M v5,45 -Intel Xeon E3-1535M v6,45 -Intel Xeon E3-1545M v5,45 -Intel Xeon E3-1558L v5,45 -Intel Xeon E3-1565L v5,35 -Intel Xeon E3-1575M v5,45 -Intel Xeon E3-1578L v5,45 -Intel Xeon E3-1585 v5,65 -Intel Xeon E3-1585L v5,45 +Intel Xeon E3-1285L v3,65.0 +Intel Xeon E3-1285L v4,65.0 +Intel Xeon E3-1286 v3,84.0 +Intel Xeon E3-1286L v3,65.0 +Intel Xeon E3-1290,95.0 +Intel Xeon E3-1290 v2,87.0 +Intel Xeon E3-1501L v6,25.0 +Intel Xeon E3-1501M v6,45.0 +Intel Xeon E3-1505L v5,25.0 +Intel Xeon E3-1505L v6,25.0 +Intel Xeon E3-1505M v5,45.0 +Intel Xeon E3-1505M v6,45.0 +Intel Xeon E3-1515M v5,45.0 +Intel Xeon E3-1535M v5,45.0 +Intel Xeon E3-1535M v6,45.0 +Intel Xeon E3-1545M v5,45.0 +Intel Xeon E3-1558L v5,45.0 +Intel Xeon E3-1565L v5,35.0 +Intel Xeon E3-1575M v5,45.0 +Intel Xeon E3-1578L v5,45.0 +Intel Xeon E3-1585 v5,65.0 +Intel Xeon E3-1585L v5,45.0 Intel Xeon E3110,65 Intel Xeon E3113,65 Intel Xeon E3120,65 Intel Xeon E5-1410,80 Intel Xeon E5-1410 v2,80 -Intel Xeon E5-1428L,60 -Intel Xeon E5-1428L v2,60 +Intel Xeon E5-1428L,60.0 +Intel Xeon E5-1428L v2,60.0 +Intel Xeon E5-1428L v3,65.0 Intel Xeon E5-1603,130 Intel Xeon E5-1603 v3,140 Intel Xeon E5-1603 v4,140 Intel Xeon E5-1607,130 Intel Xeon E5-1607 v2,130 Intel Xeon E5-1607 v4,140 -Intel Xeon E5-1620,130 -Intel Xeon E5-1620 v2,130 -Intel Xeon E5-1620 v4,140 -Intel Xeon E5-1630 v4,140 -Intel Xeon E5-1650,130 -Intel Xeon E5-1650 v2,130 -Intel Xeon E5-1650 v4,140 -Intel Xeon E5-1660,130 -Intel Xeon E5-1660 v2,130 -Intel Xeon E5-1660 v4,140 +Intel Xeon E5-1620,130.0 +Intel Xeon E5-1620 v2,130.0 +Intel Xeon E5-1620 v3,140.0 +Intel Xeon E5-1620 v4,140.0 +Intel Xeon E5-1630 v3,140.0 +Intel Xeon E5-1630 v4,140.0 +Intel Xeon E5-1650,130.0 +Intel Xeon E5-1650 v2,130.0 +Intel Xeon E5-1650 v3,140.0 +Intel Xeon E5-1650 v4,140.0 +Intel Xeon E5-1660,130.0 +Intel Xeon E5-1660 v2,130.0 +Intel Xeon E5-1660 v3,140.0 +Intel Xeon E5-1660 v4,140.0 Intel Xeon E5-1680 v2,130 -Intel Xeon E5-1680 v4,140 -Intel Xeon E5-2403,80 -Intel Xeon E5-2403 v2,80 -Intel Xeon E5-2407,80 -Intel Xeon E5-2407 v2,80 -Intel Xeon E5-2418L,50 -Intel Xeon E5-2418L v2,50 -Intel Xeon E5-2420,95 -Intel Xeon E5-2420 v2,80 -Intel Xeon E5-2428L,60 -Intel Xeon E5-2428L v2,60 -Intel Xeon E5-2430,95 -Intel Xeon E5-2430 v2,80 -Intel Xeon E5-2430L,60 -Intel Xeon E5-2430L v2,60 -Intel Xeon E5-2440,95 -Intel Xeon E5-2440 v2,95 -Intel Xeon E5-2448L,70 -Intel Xeon E5-2448L v2,70 +Intel Xeon E5-1680 v3,140.0 +Intel Xeon E5-1680 v4,140.0 +Intel Xeon E5-2403,80.0 +Intel Xeon E5-2403 v2,80.0 +Intel Xeon E5-2407,80.0 +Intel Xeon E5-2407 v2,80.0 +Intel Xeon E5-2408L v3,45.0 +Intel Xeon E5-2418L,50.0 +Intel Xeon E5-2418L v2,50.0 +Intel Xeon E5-2418L v3,50.0 +Intel Xeon E5-2420,95.0 +Intel Xeon E5-2420 v2,80.0 +Intel Xeon E5-2428L,60.0 +Intel Xeon E5-2428L v2,60.0 +Intel Xeon E5-2428L v3,55.0 +Intel Xeon E5-2430,95.0 +Intel Xeon E5-2430 v2,80.0 +Intel Xeon E5-2430L,60.0 +Intel Xeon E5-2430L v2,60.0 +Intel Xeon E5-2438L v3,70.0 +Intel Xeon E5-2440,95.0 +Intel Xeon E5-2440 v2,95.0 +Intel Xeon E5-2448L,70.0 +Intel Xeon E5-2448L v2,70.0 Intel Xeon E5-2449L,50 -Intel Xeon E5-2450,95 -Intel Xeon E5-2450 v2,95 -Intel Xeon E5-2450L,70 -Intel Xeon E5-2450L v2,60 -Intel Xeon E5-2470,95 -Intel Xeon E5-2470 v2,95 -Intel Xeon E5-2603,80 -Intel Xeon E5-2603 v2,80 -Intel Xeon E5-2603 v4,85 -Intel Xeon E5-2608L v4,50 -Intel Xeon E5-2609,80 -Intel Xeon E5-2609 v2,80 -Intel Xeon E5-2609 v4,85 +Intel Xeon E5-2450,95.0 +Intel Xeon E5-2450 v2,95.0 +Intel Xeon E5-2450L,70.0 +Intel Xeon E5-2450L v2,60.0 +Intel Xeon E5-2470,95.0 +Intel Xeon E5-2470 v2,95.0 +Intel Xeon E5-2603,80.0 +Intel Xeon E5-2603 v2,80.0 +Intel Xeon E5-2603 v3,85.0 +Intel Xeon E5-2603 v4,85.0 +Intel Xeon E5-2608L v3,52.0 +Intel Xeon E5-2608L v4,50.0 +Intel Xeon E5-2609,80.0 +Intel Xeon E5-2609 v2,80.0 +Intel Xeon E5-2609 v3,85.0 +Intel Xeon E5-2609 v4,85.0 Intel Xeon E5-2618L,40 -Intel Xeon E5-2618L v2,50 -Intel Xeon E5-2618L v4,75 -Intel Xeon E5-2620,95 -Intel Xeon E5-2620 v2,80 -Intel Xeon E5-2620 v3,85 -Intel Xeon E5-2620 v4,85 -Intel Xeon E5-2623 v4,85 +Intel Xeon E5-2618L v2,50.0 +Intel Xeon E5-2618L v3,75.0 +Intel Xeon E5-2618L v4,75.0 +Intel Xeon E5-2620,95.0 +Intel Xeon E5-2620 v2,80.0 +Intel Xeon E5-2620 v3,85.0 +Intel Xeon E5-2620 v4,85.0 +Intel Xeon E5-2623 v3,105.0 +Intel Xeon E5-2623 v4,85.0 Intel Xeon E5-2628L,60 -Intel Xeon E5-2628L v2,70 -Intel Xeon E5-2628L v4,75 -Intel Xeon E5-2630,95 -Intel Xeon E5-2630 v2,80 -Intel Xeon E5-2630 v4,85 -Intel Xeon E5-2630L,60 -Intel Xeon E5-2630L v2,60 -Intel Xeon E5-2630L v4,55 -Intel Xeon E5-2637,80 -Intel Xeon E5-2637 v2,130 -Intel Xeon E5-2637 v4,135 -Intel Xeon E5-2640,95 -Intel Xeon E5-2640 v2,95 -Intel Xeon E5-2640 v4,90 -Intel Xeon E5-2643,130 -Intel Xeon E5-2643 v2,130 -Intel Xeon E5-2643 v4,135 -Intel Xeon E5-2648L,70 -Intel Xeon E5-2648L v2,70 -Intel Xeon E5-2648L v4,75 -Intel Xeon E5-2650,95 -Intel Xeon E5-2650 v2,95 -Intel Xeon E5-2650 v4,105 -Intel Xeon E5-2650L,70 -Intel Xeon E5-2650L v2,70 -Intel Xeon E5-2650L v4,65 +Intel Xeon E5-2628L v2,70.0 +Intel Xeon E5-2628L v3,75.0 +Intel Xeon E5-2628L v4,75.0 +Intel Xeon E5-2630,95.0 +Intel Xeon E5-2630 v2,80.0 +Intel Xeon E5-2630 v3,85.0 +Intel Xeon E5-2630 v4,85.0 +Intel Xeon E5-2630L,60.0 +Intel Xeon E5-2630L v2,60.0 +Intel Xeon E5-2630L v3,55.0 +Intel Xeon E5-2630L v4,55.0 +Intel Xeon E5-2637,80.0 +Intel Xeon E5-2637 v2,130.0 +Intel Xeon E5-2637 v3,135.0 +Intel Xeon E5-2637 v4,135.0 +Intel Xeon E5-2640,95.0 +Intel Xeon E5-2640 v2,95.0 +Intel Xeon E5-2640 v3,90.0 +Intel Xeon E5-2640 v4,90.0 +Intel Xeon E5-2643,130.0 +Intel Xeon E5-2643 v2,130.0 +Intel Xeon E5-2643 v3,135.0 +Intel Xeon E5-2643 v4,135.0 +Intel Xeon E5-2648L,70.0 +Intel Xeon E5-2648L v2,70.0 +Intel Xeon E5-2648L v3,75.0 +Intel Xeon E5-2648L v4,75.0 +Intel Xeon E5-2650,95.0 +Intel Xeon E5-2650 v2,95.0 +Intel Xeon E5-2650 v3,105.0 +Intel Xeon E5-2650 v4,105.0 +Intel Xeon E5-2650L,70.0 +Intel Xeon E5-2650L v2,70.0 +Intel Xeon E5-2650L v3,65.0 +Intel Xeon E5-2650L v4,65.0 Intel Xeon E5-2651 v2,105 -Intel Xeon E5-2658,95 -Intel Xeon E5-2658 v2,95 -Intel Xeon E5-2658 v4,105 -Intel Xeon E5-2660,95 -Intel Xeon E5-2660 v2,95 -Intel Xeon E5-2660 v4,105 -Intel Xeon E5-2665,115 +Intel Xeon E5-2658,95.0 +Intel Xeon E5-2658 v2,95.0 +Intel Xeon E5-2658 v3,105.0 +Intel Xeon E5-2658 v4,105.0 +Intel Xeon E5-2658A v3,105.0 +Intel Xeon E5-2660,95.0 +Intel Xeon E5-2660 v2,95.0 +Intel Xeon E5-2660 v3,105.0 +Intel Xeon E5-2660 v4,105.0 +Intel Xeon E5-2665,115.0 Intel Xeon E5-2666 v4,145 -Intel Xeon E5-2667,130 -Intel Xeon E5-2667 v2,130 -Intel Xeon E5-2667 v4,135 -Intel Xeon E5-2670,115 -Intel Xeon E5-2670 v2,115 +Intel Xeon E5-2667,130.0 +Intel Xeon E5-2667 v2,130.0 +Intel Xeon E5-2667 v3,135.0 +Intel Xeon E5-2667 v4,135.0 +Intel Xeon E5-2670,115.0 +Intel Xeon E5-2670 v2,115.0 +Intel Xeon E5-2670 v3,120.0 Intel Xeon E5-2673 v2,110 Intel Xeon E5-2673 v3,110 Intel Xeon E5-2673 v4,135 Intel Xeon E5-2676 v4,145 Intel Xeon E5-2679 v4,200 -Intel Xeon E5-2680,130 -Intel Xeon E5-2680 v2,115 -Intel Xeon E5-2680 v3,120 -Intel Xeon E5-2680 v4,120 +Intel Xeon E5-2680,130.0 +Intel Xeon E5-2680 v2,115.0 +Intel Xeon E5-2680 v3,120.0 +Intel Xeon E5-2680 v4,120.0 Intel Xeon E5-2682 v4,120 -Intel Xeon E5-2683 v4,120 +Intel Xeon E5-2683 v3,120.0 +Intel Xeon E5-2683 v4,120.0 Intel Xeon E5-2686 v4,145 -Intel Xeon E5-2687W,150 -Intel Xeon E5-2687W v2,130 -Intel Xeon E5-2687W v4,160 +Intel Xeon E5-2687W,150.0 +Intel Xeon E5-2687W v2,150.0 +Intel Xeon E5-2687W v3,160.0 +Intel Xeon E5-2687W v4,160.0 Intel Xeon E5-2689,115 Intel Xeon E5-2689 v4,165 Intel Xeon E5-2689A v4,145 -Intel Xeon E5-2690,135 -Intel Xeon E5-2690 v2,130 -Intel Xeon E5-2690 v4,135 +Intel Xeon E5-2690,135.0 +Intel Xeon E5-2690 v2,130.0 +Intel Xeon E5-2690 v3,135.0 +Intel Xeon E5-2690 v4,135.0 Intel Xeon E5-2692 v2,100 -Intel Xeon E5-2695 v2,115 -Intel Xeon E5-2695 v4,120 +Intel Xeon E5-2695 v2,115.0 +Intel Xeon E5-2695 v3,120.0 +Intel Xeon E5-2695 v4,120.0 Intel Xeon E5-2696 v2,120 Intel Xeon E5-2696 v4,150 -Intel Xeon E5-2697 v2,130 -Intel Xeon E5-2697 v4,145 -Intel Xeon E5-2697A v4,145 -Intel Xeon E5-2698 v4,135 -Intel Xeon E5-2699 v4,145 -Intel Xeon E5-2699A v4,145 +Intel Xeon E5-2697 v2,130.0 +Intel Xeon E5-2697 v3,145.0 +Intel Xeon E5-2697 v4,145.0 +Intel Xeon E5-2697A v4,145.0 +Intel Xeon E5-2698 v3,135.0 +Intel Xeon E5-2698 v4,135.0 +Intel Xeon E5-2699 v3,145.0 +Intel Xeon E5-2699 v4,145.0 +Intel Xeon E5-2699A v4,145.0 Intel Xeon E5-2699C v4,145 Intel Xeon E5-2699P v4,300 -Intel Xeon E5-2699R v4,145 -Intel Xeon E5-4603,95 -Intel Xeon E5-4603 v2,95 -Intel Xeon E5-4607,95 -Intel Xeon E5-4607 v2,95 -Intel Xeon E5-4610,130 -Intel Xeon E5-4610 v2,95 -Intel Xeon E5-4610 v4,105 -Intel Xeon E5-4617,130 -Intel Xeon E5-4620,95 -Intel Xeon E5-4620 v2,95 -Intel Xeon E5-4620 v4,105 -Intel Xeon E5-4624L v2,70 -Intel Xeon E5-4627 v2,130 -Intel Xeon E5-4627 v4,135 -Intel Xeon E5-4628L v4,75 -Intel Xeon E5-4640,95 -Intel Xeon E5-4640 v2,95 -Intel Xeon E5-4640 v4,105 -Intel Xeon E5-4650,130 -Intel Xeon E5-4650 v2,95 -Intel Xeon E5-4650 v4,105 -Intel Xeon E5-4650L,115 -Intel Xeon E5-4655 v4,135 -Intel Xeon E5-4657L v2,115 -Intel Xeon E5-4660 v4,120 -Intel Xeon E5-4667 v4,135 -Intel Xeon E5-4669 v4,135 +Intel Xeon E5-2699R v4,145.0 +Intel Xeon E5-4603,95.0 +Intel Xeon E5-4603 v2,95.0 +Intel Xeon E5-4607,95.0 +Intel Xeon E5-4607 v2,95.0 +Intel Xeon E5-4610,95.0 +Intel Xeon E5-4610 v2,95.0 +Intel Xeon E5-4610 v3,105.0 +Intel Xeon E5-4610 v4,105.0 +Intel Xeon E5-4617,130.0 +Intel Xeon E5-4620,95.0 +Intel Xeon E5-4620 v2,95.0 +Intel Xeon E5-4620 v3,105.0 +Intel Xeon E5-4620 v4,105.0 +Intel Xeon E5-4624L v2,70.0 +Intel Xeon E5-4627 v2,130.0 +Intel Xeon E5-4627 v3,135.0 +Intel Xeon E5-4627 v4,135.0 +Intel Xeon E5-4628L v4,75.0 +Intel Xeon E5-4640,95.0 +Intel Xeon E5-4640 v2,95.0 +Intel Xeon E5-4640 v3,105.0 +Intel Xeon E5-4640 v4,105.0 +Intel Xeon E5-4648 v3,105.0 +Intel Xeon E5-4650,130.0 +Intel Xeon E5-4650 v2,95.0 +Intel Xeon E5-4650 v3,105.0 +Intel Xeon E5-4650 v4,105.0 +Intel Xeon E5-4650L,115.0 +Intel Xeon E5-4655 v3,135.0 +Intel Xeon E5-4655 v4,135.0 +Intel Xeon E5-4657L v2,115.0 +Intel Xeon E5-4660 v3,120.0 +Intel Xeon E5-4660 v4,120.0 +Intel Xeon E5-4667 v3,135.0 +Intel Xeon E5-4667 v4,135.0 +Intel Xeon E5-4669 v3,135.0 +Intel Xeon E5-4669 v4,135.0 Intel Xeon E5205,65 Intel Xeon E5220,65 Intel Xeon E5240,65 @@ -3438,79 +4200,79 @@ Intel Xeon E5507,80 Intel Xeon E5520,80 Intel Xeon E5530,80 Intel Xeon E5540,80 -Intel Xeon E5603,80 -Intel Xeon E5606,80 -Intel Xeon E5607,80 -Intel Xeon E5620,80 -Intel Xeon E5630,80 -Intel Xeon E5640,80 -Intel Xeon E5645,80 -Intel Xeon E5649,80 +Intel Xeon E5603,80.0 +Intel Xeon E5606,80.0 +Intel Xeon E5607,80.0 +Intel Xeon E5620,80.0 +Intel Xeon E5630,80.0 +Intel Xeon E5640,80.0 +Intel Xeon E5645,80.0 +Intel Xeon E5649,80.0 Intel Xeon E6510,105 Intel Xeon E6540,105 -Intel Xeon E7-2803,105 -Intel Xeon E7-2820,105 -Intel Xeon E7-2830,105 -Intel Xeon E7-2850,130 -Intel Xeon E7-2850 v2,105 -Intel Xeon E7-2860,130 -Intel Xeon E7-2870,130 -Intel Xeon E7-2870 v2,130 -Intel Xeon E7-2880 v2,130 -Intel Xeon E7-2890 v2,155 -Intel Xeon E7-4807,95 -Intel Xeon E7-4809 v2,105 -Intel Xeon E7-4809 v3,115 -Intel Xeon E7-4809 v4,115 -Intel Xeon E7-4820,105 -Intel Xeon E7-4820 v2,105 -Intel Xeon E7-4820 v3,115 -Intel Xeon E7-4820 v4,115 -Intel Xeon E7-4830,105 -Intel Xeon E7-4830 v2,105 -Intel Xeon E7-4830 v3,115 -Intel Xeon E7-4830 v4,115 -Intel Xeon E7-4850,130 -Intel Xeon E7-4850 v2,105 -Intel Xeon E7-4850 v3,115 -Intel Xeon E7-4850 v4,115 -Intel Xeon E7-4860,130 -Intel Xeon E7-4860 v2,130 -Intel Xeon E7-4870,130 -Intel Xeon E7-4870 v2,130 -Intel Xeon E7-4880 v2,130 -Intel Xeon E7-4890 v2,155 -Intel Xeon E7-8830,105 -Intel Xeon E7-8837,130 -Intel Xeon E7-8850,130 -Intel Xeon E7-8850 v2,105 +Intel Xeon E7-2803,105.0 +Intel Xeon E7-2820,105.0 +Intel Xeon E7-2830,105.0 +Intel Xeon E7-2850,130.0 +Intel Xeon E7-2850 v2,105.0 +Intel Xeon E7-2860,130.0 +Intel Xeon E7-2870,130.0 +Intel Xeon E7-2870 v2,130.0 +Intel Xeon E7-2880 v2,130.0 +Intel Xeon E7-2890 v2,155.0 +Intel Xeon E7-4807,95.0 +Intel Xeon E7-4809 v2,105.0 +Intel Xeon E7-4809 v3,115.0 +Intel Xeon E7-4809 v4,115.0 +Intel Xeon E7-4820,105.0 +Intel Xeon E7-4820 v2,105.0 +Intel Xeon E7-4820 v3,115.0 +Intel Xeon E7-4820 v4,115.0 +Intel Xeon E7-4830,105.0 +Intel Xeon E7-4830 v2,105.0 +Intel Xeon E7-4830 v3,115.0 +Intel Xeon E7-4830 v4,115.0 +Intel Xeon E7-4850,130.0 +Intel Xeon E7-4850 v2,105.0 +Intel Xeon E7-4850 v3,115.0 +Intel Xeon E7-4850 v4,115.0 +Intel Xeon E7-4860,130.0 +Intel Xeon E7-4860 v2,130.0 +Intel Xeon E7-4870,130.0 +Intel Xeon E7-4870 v2,130.0 +Intel Xeon E7-4880 v2,130.0 +Intel Xeon E7-4890 v2,155.0 +Intel Xeon E7-8830,105.0 +Intel Xeon E7-8837,130.0 +Intel Xeon E7-8850,130.0 +Intel Xeon E7-8850 v2,105.0 Intel Xeon E7-8855 v4,140 -Intel Xeon E7-8857 v2,130 -Intel Xeon E7-8860,130 -Intel Xeon E7-8860 v3,140 -Intel Xeon E7-8860 v4,140 -Intel Xeon E7-8867 v3,165 -Intel Xeon E7-8867 v4,165 -Intel Xeon E7-8867L,105 -Intel Xeon E7-8870,130 -Intel Xeon E7-8870 v2,130 -Intel Xeon E7-8870 v3,140 -Intel Xeon E7-8870 v4,140 -Intel Xeon E7-8880 v2,130 -Intel Xeon E7-8880 v3,150 -Intel Xeon E7-8880 v4,150 -Intel Xeon E7-8880L v2,105 -Intel Xeon E7-8880L v3,115 -Intel Xeon E7-8890 v2,155 -Intel Xeon E7-8890 v3,165 -Intel Xeon E7-8890 v4,165 -Intel Xeon E7-8891 v2,155 -Intel Xeon E7-8891 v3,165 -Intel Xeon E7-8891 v4,165 -Intel Xeon E7-8893 v2,155 -Intel Xeon E7-8893 v3,140 -Intel Xeon E7-8893 v4,140 -Intel Xeon E7-8894 v4,165 +Intel Xeon E7-8857 v2,130.0 +Intel Xeon E7-8860,130.0 +Intel Xeon E7-8860 v3,140.0 +Intel Xeon E7-8860 v4,140.0 +Intel Xeon E7-8867 v3,165.0 +Intel Xeon E7-8867 v4,165.0 +Intel Xeon E7-8867L,105.0 +Intel Xeon E7-8870,130.0 +Intel Xeon E7-8870 v2,130.0 +Intel Xeon E7-8870 v3,140.0 +Intel Xeon E7-8870 v4,140.0 +Intel Xeon E7-8880 v2,130.0 +Intel Xeon E7-8880 v3,150.0 +Intel Xeon E7-8880 v4,150.0 +Intel Xeon E7-8880L v2,105.0 +Intel Xeon E7-8880L v3,115.0 +Intel Xeon E7-8890 v2,155.0 +Intel Xeon E7-8890 v3,165.0 +Intel Xeon E7-8890 v4,165.0 +Intel Xeon E7-8891 v2,155.0 +Intel Xeon E7-8891 v3,165.0 +Intel Xeon E7-8891 v4,165.0 +Intel Xeon E7-8893 v2,155.0 +Intel Xeon E7-8893 v3,140.0 +Intel Xeon E7-8893 v4,140.0 +Intel Xeon E7-8894 v4,165.0 Intel Xeon E7-8895 v2,155 Intel Xeon E7210,80 Intel Xeon E7220,80 @@ -3530,137 +4292,150 @@ Intel Xeon EC3539,65 Intel Xeon EC5509,85 Intel Xeon EC5539,65 Intel Xeon EC5549,85 -Intel Xeon Gold 5115,85 +Intel Xeon Gold 5115,85.0 Intel Xeon Gold 5117,105 Intel Xeon Gold 5117F,113 -Intel Xeon Gold 5118,105 -Intel Xeon Gold 5119T,85 -Intel Xeon Gold 5120,105 -Intel Xeon Gold 5120T,105 -Intel Xeon Gold 5122,105 +Intel Xeon Gold 5118,105.0 +Intel Xeon Gold 5119T,85.0 +Intel Xeon Gold 5120,105.0 +Intel Xeon Gold 5120T,105.0 +Intel Xeon Gold 5122,105.0 Intel Xeon Gold 5213W,100 -Intel Xeon Gold 5215,85 -Intel Xeon Gold 5215L,85 +Intel Xeon Gold 5215,85.0 +Intel Xeon Gold 5215L,85.0 Intel Xeon Gold 5215M,85 Intel Xeon Gold 5215R,100 Intel Xeon Gold 5216W,160 -Intel Xeon Gold 5217,115 -Intel Xeon Gold 5218,125 -Intel Xeon Gold 5218B,125 -Intel Xeon Gold 5218N,110 -Intel Xeon Gold 5218R,125 -Intel Xeon Gold 5218T,105 +Intel Xeon Gold 5217,115.0 +Intel Xeon Gold 5218,125.0 +Intel Xeon Gold 5218B,125.0 +Intel Xeon Gold 5218N,110.0 +Intel Xeon Gold 5218R,125.0 +Intel Xeon Gold 5218T,105.0 Intel Xeon Gold 5219Y,125 -Intel Xeon Gold 5220,125 -Intel Xeon Gold 5220R,150 -Intel Xeon Gold 5220S,125 -Intel Xeon Gold 5220T,105 -Intel Xeon Gold 5222,105 -Intel Xeon Gold 5315Y,140 -Intel Xeon Gold 5317,150 -Intel Xeon Gold 5318H,150 -Intel Xeon Gold 5318N,150 -Intel Xeon Gold 5318S,165 -Intel Xeon Gold 5318Y,165 -Intel Xeon Gold 5320,185 -Intel Xeon Gold 5320H,150 -Intel Xeon Gold 5320T,150 +Intel Xeon Gold 5220,125.0 +Intel Xeon Gold 5220R,150.0 +Intel Xeon Gold 5220S,125.0 +Intel Xeon Gold 5220T,105.0 +Intel Xeon Gold 5222,105.0 +Intel Xeon Gold 5315Y,140.0 +Intel Xeon Gold 5317,150.0 +Intel Xeon Gold 5318H,150.0 +Intel Xeon Gold 5318N,150.0 +Intel Xeon Gold 5318S,165.0 +Intel Xeon Gold 5318Y,165.0 +Intel Xeon Gold 5320,185.0 +Intel Xeon Gold 5320H,150.0 +Intel Xeon Gold 5320T,150.0 +Intel Xeon Gold 5403N,115.0 +Intel Xeon Gold 5411N,165.0 +Intel Xeon Gold 5412U,185.0 +Intel Xeon Gold 5415+,150.0 +Intel Xeon Gold 5416S,150.0 +Intel Xeon Gold 5418N,165.0 +Intel Xeon Gold 5418Y,185.0 +Intel Xeon Gold 5420+,205.0 +Intel Xeon Gold 5423N,145.0 +Intel Xeon Gold 5433N,160.0 +Intel Xeon Gold 5512U,185.0 +Intel Xeon Gold 5515+,165.0 +Intel Xeon Gold 5520+,205.0 Intel Xeon Gold 6122,120 -Intel Xeon Gold 6126,125 -Intel Xeon Gold 6126F,135 -Intel Xeon Gold 6126T,125 +Intel Xeon Gold 6126,125.0 +Intel Xeon Gold 6126F,135.0 +Intel Xeon Gold 6126T,125.0 Intel Xeon Gold 6127M,145 -Intel Xeon Gold 6128,115 -Intel Xeon Gold 6130,125 -Intel Xeon Gold 6130F,135 +Intel Xeon Gold 6128,115.0 +Intel Xeon Gold 6130,125.0 +Intel Xeon Gold 6130F,135.0 Intel Xeon Gold 6130H,125 -Intel Xeon Gold 6130T,125 +Intel Xeon Gold 6130T,125.0 Intel Xeon Gold 6131,205 -Intel Xeon Gold 6132,140 +Intel Xeon Gold 6132,140.0 Intel Xeon Gold 6133,150 -Intel Xeon Gold 6134,130 +Intel Xeon Gold 6134,130.0 Intel Xeon Gold 6134M,130 Intel Xeon Gold 6135,155 Intel Xeon Gold 6135M,155 -Intel Xeon Gold 6136,150 +Intel Xeon Gold 6136,150.0 Intel Xeon Gold 6137,205 Intel Xeon Gold 6137M,205 -Intel Xeon Gold 6138,125 -Intel Xeon Gold 6138F,135 -Intel Xeon Gold 6138P,195 -Intel Xeon Gold 6138T,125 +Intel Xeon Gold 6138,125.0 +Intel Xeon Gold 6138F,135.0 +Intel Xeon Gold 6138P,195.0 +Intel Xeon Gold 6138T,125.0 Intel Xeon Gold 6139,135 Intel Xeon Gold 6139M,135 -Intel Xeon Gold 6140,140 +Intel Xeon Gold 6140,140.0 Intel Xeon Gold 6140M,140 -Intel Xeon Gold 6142,150 -Intel Xeon Gold 6142F,160 +Intel Xeon Gold 6142,150.0 +Intel Xeon Gold 6142F,160.0 Intel Xeon Gold 6142M,150 Intel Xeon Gold 6143,165 -Intel Xeon Gold 6144,150 +Intel Xeon Gold 6144,150.0 Intel Xeon Gold 6145,145 -Intel Xeon Gold 6146,165 +Intel Xeon Gold 6146,165.0 Intel Xeon Gold 6147M,150 -Intel Xeon Gold 6148,150 -Intel Xeon Gold 6148F,150 +Intel Xeon Gold 6148,150.0 +Intel Xeon Gold 6148F,160.0 Intel Xeon Gold 6149,205 -Intel Xeon Gold 6150,165 +Intel Xeon Gold 6150,165.0 Intel Xeon Gold 6151,205 -Intel Xeon Gold 6152,140 -Intel Xeon Gold 6154,200 +Intel Xeon Gold 6152,140.0 +Intel Xeon Gold 6154,200.0 Intel Xeon Gold 6155,200 Intel Xeon Gold 6159,145 Intel Xeon Gold 6161,165 Intel Xeon Gold 6162,150 Intel Xeon Gold 6164,150 -Intel Xeon Gold 6208U,150 -Intel Xeon Gold 6209U,125 -Intel Xeon Gold 6210U,150 -Intel Xeon Gold 6212U,165 +Intel Xeon Gold 6208U,150.0 +Intel Xeon Gold 6209U,125.0 +Intel Xeon Gold 6210U,150.0 +Intel Xeon Gold 6212U,165.0 Intel Xeon Gold 6222,115 -Intel Xeon Gold 6222V,115 -Intel Xeon Gold 6226,125 -Intel Xeon Gold 6226R,150 -Intel Xeon Gold 6230,125 -Intel Xeon Gold 6230N,125 -Intel Xeon Gold 6230R,150 -Intel Xeon Gold 6230T,125 +Intel Xeon Gold 6222V,115.0 +Intel Xeon Gold 6226,125.0 +Intel Xeon Gold 6226R,150.0 +Intel Xeon Gold 6230,125.0 +Intel Xeon Gold 6230N,125.0 +Intel Xeon Gold 6230R,150.0 +Intel Xeon Gold 6230T,125.0 Intel Xeon Gold 6231,185 Intel Xeon Gold 6231C,185 Intel Xeon Gold 6233,165 -Intel Xeon Gold 6234,130 -Intel Xeon Gold 6238,140 -Intel Xeon Gold 6238L,140 +Intel Xeon Gold 6234,130.0 +Intel Xeon Gold 6238,140.0 +Intel Xeon Gold 6238L,140.0 Intel Xeon Gold 6238M,140 -Intel Xeon Gold 6238R,165 -Intel Xeon Gold 6238T,125 -Intel Xeon Gold 6240,150 +Intel Xeon Gold 6238R,165.0 +Intel Xeon Gold 6238T,125.0 +Intel Xeon Gold 6240,150.0 Intel Xeon Gold 6240C,150 -Intel Xeon Gold 6240L,150 +Intel Xeon Gold 6240L,150.0 Intel Xeon Gold 6240M,150 -Intel Xeon Gold 6240R,165 -Intel Xeon Gold 6240Y,150 +Intel Xeon Gold 6240R,165.0 +Intel Xeon Gold 6240Y,150.0 Intel Xeon Gold 6241W,205 -Intel Xeon Gold 6242,150 -Intel Xeon Gold 6242R,205 -Intel Xeon Gold 6244,150 +Intel Xeon Gold 6242,150.0 +Intel Xeon Gold 6242R,205.0 +Intel Xeon Gold 6244,150.0 Intel Xeon Gold 6245W,180 -Intel Xeon Gold 6246,165 -Intel Xeon Gold 6246R,205 -Intel Xeon Gold 6248,150 -Intel Xeon Gold 6248R,205 -Intel Xeon Gold 6250,185 -Intel Xeon Gold 6250L,185 -Intel Xeon Gold 6252,150 -Intel Xeon Gold 6252N,150 +Intel Xeon Gold 6246,165.0 +Intel Xeon Gold 6246R,205.0 +Intel Xeon Gold 6248,150.0 +Intel Xeon Gold 6248R,205.0 +Intel Xeon Gold 6250,185.0 +Intel Xeon Gold 6250L,185.0 +Intel Xeon Gold 6252,150.0 +Intel Xeon Gold 6252N,150.0 Intel Xeon Gold 6253CL,205 Intel Xeon Gold 6253W,200 -Intel Xeon Gold 6254,200 -Intel Xeon Gold 6256,205 -Intel Xeon Gold 6258R,205 +Intel Xeon Gold 6254,200.0 +Intel Xeon Gold 6256,205.0 +Intel Xeon Gold 6258R,205.0 Intel Xeon Gold 6261,205 Intel Xeon Gold 6262,135 -Intel Xeon Gold 6262V,135 +Intel Xeon Gold 6262V,135.0 Intel Xeon Gold 6263CY,205 Intel Xeon Gold 6266C,205 Intel Xeon Gold 6267,165 @@ -3671,24 +4446,58 @@ Intel Xeon Gold 6271C,165 Intel Xeon Gold 6273C,165 Intel Xeon Gold 6278C,185 Intel Xeon Gold 6290,240 -Intel Xeon Gold 6312U,185 -Intel Xeon Gold 6314U,205 -Intel Xeon Gold 6326,185 -Intel Xeon Gold 6328H,165 -Intel Xeon Gold 6328HL,165 -Intel Xeon Gold 6330,205 -Intel Xeon Gold 6330H,150 -Intel Xeon Gold 6330N,165 -Intel Xeon Gold 6334,165 -Intel Xeon Gold 6336Y,185 -Intel Xeon Gold 6338,205 -Intel Xeon Gold 6338N,185 -Intel Xeon Gold 6338T,165 -Intel Xeon Gold 6342,230 -Intel Xeon Gold 6346,205 -Intel Xeon Gold 6348,235 -Intel Xeon Gold 6348H,165 -Intel Xeon Gold 6354,205 +Intel Xeon Gold 6312U,185.0 +Intel Xeon Gold 6314U,205.0 +Intel Xeon Gold 6326,185.0 +Intel Xeon Gold 6328H,165.0 +Intel Xeon Gold 6328HL,165.0 +Intel Xeon Gold 6330,205.0 +Intel Xeon Gold 6330H,150.0 +Intel Xeon Gold 6330N,165.0 +Intel Xeon Gold 6334,165.0 +Intel Xeon Gold 6336Y,185.0 +Intel Xeon Gold 6338,205.0 +Intel Xeon Gold 6338N,185.0 +Intel Xeon Gold 6338T,165.0 +Intel Xeon Gold 6342,230.0 +Intel Xeon Gold 6346,205.0 +Intel Xeon Gold 6348,235.0 +Intel Xeon Gold 6348H,165.0 +Intel Xeon Gold 6354,205.0 +Intel Xeon Gold 6403N,185.0 +Intel Xeon Gold 6414U,250.0 +Intel Xeon Gold 6416H,165.0 +Intel Xeon Gold 6418H,185.0 +Intel Xeon Gold 6421N,185.0 +Intel Xeon Gold 6423N,195.0 +Intel Xeon Gold 6426Y,185.0 +Intel Xeon Gold 6428N,185.0 +Intel Xeon Gold 6430,270.0 +Intel Xeon Gold 6433N,205.0 +Intel Xeon Gold 6433NE,205.0 +Intel Xeon Gold 6434,195.0 +Intel Xeon Gold 6434H,195.0 +Intel Xeon Gold 6438M,205.0 +Intel Xeon Gold 6438N,205.0 +Intel Xeon Gold 6438Y+,205.0 +Intel Xeon Gold 6442Y,225.0 +Intel Xeon Gold 6443N,195.0 +Intel Xeon Gold 6444Y,270.0 +Intel Xeon Gold 6448H,250.0 +Intel Xeon Gold 6448Y,225.0 +Intel Xeon Gold 6454S,270.0 +Intel Xeon Gold 6458Q,350.0 +Intel Xeon Gold 6526Y,195.0 +Intel Xeon Gold 6530,270.0 +Intel Xeon Gold 6534,195.0 +Intel Xeon Gold 6538N,205.0 +Intel Xeon Gold 6538Y+,225.0 +Intel Xeon Gold 6542Y,250.0 +Intel Xeon Gold 6544Y,270.0 +Intel Xeon Gold 6548N,250.0 +Intel Xeon Gold 6548Y+,250.0 +Intel Xeon Gold 6554S,270.0 +Intel Xeon Gold 6558Q,350.0 Intel Xeon L3014,30 Intel Xeon L3110,45 Intel Xeon L3360,65 @@ -3712,12 +4521,12 @@ Intel Xeon L5508,38 Intel Xeon L5518,60 Intel Xeon L5520,60 Intel Xeon L5530,60 -Intel Xeon L5609,40 -Intel Xeon L5618,40 -Intel Xeon L5630,40 -Intel Xeon L5638,60 +Intel Xeon L5609,40.0 +Intel Xeon L5618,40.0 +Intel Xeon L5630,40.0 +Intel Xeon L5638,60.0 Intel Xeon L5639,60 -Intel Xeon L5640,60 +Intel Xeon L5640,60.0 Intel Xeon L5645,60 Intel Xeon L7345,50 Intel Xeon L7445,50 @@ -3761,210 +4570,251 @@ Intel Xeon MP 7041 Dual-Core,135 Intel Xeon MV 3.2,90 Intel Xeon MV 5063,95 Intel Xeon Phi 3110X,300 -Intel Xeon Phi 3120A,300 -Intel Xeon Phi 3120P,300 +Intel Xeon Phi 3120A,300.0 +Intel Xeon Phi 3120P,300.0 Intel Xeon Phi 31S1P,270 -Intel Xeon Phi 5110P,225 -Intel Xeon Phi 5120D,245 +Intel Xeon Phi 5110P,225.0 +Intel Xeon Phi 5120D,245.0 Intel Xeon Phi 7110P,300 Intel Xeon Phi 7110X,300 -Intel Xeon Phi 7120A,300 -Intel Xeon Phi 7120D,270 -Intel Xeon Phi 7120P,300 -Intel Xeon Phi 7120X,300 -Intel Xeon Phi 7210,215 -Intel Xeon Phi 7210F,230 -Intel Xeon Phi 7230,215 -Intel Xeon Phi 7230F,230 -Intel Xeon Phi 7235,250 -Intel Xeon Phi 7250,215 -Intel Xeon Phi 7250F,230 -Intel Xeon Phi 7285,250 -Intel Xeon Phi 7290,245 -Intel Xeon Phi 7290F,260 -Intel Xeon Phi 7295,320 +Intel Xeon Phi 7120A,300.0 +Intel Xeon Phi 7120D,270.0 +Intel Xeon Phi 7120P,300.0 +Intel Xeon Phi 7120X,300.0 +Intel Xeon Phi 7210,215.0 +Intel Xeon Phi 7210F,230.0 +Intel Xeon Phi 7230,215.0 +Intel Xeon Phi 7230F,230.0 +Intel Xeon Phi 7235,250.0 +Intel Xeon Phi 7250,215.0 +Intel Xeon Phi 7250F,230.0 +Intel Xeon Phi 7285,250.0 +Intel Xeon Phi 7290,245.0 +Intel Xeon Phi 7290F,260.0 +Intel Xeon Phi 7295,320.0 Intel Xeon Phi SE10P,300 Intel Xeon Phi SE10X,300 Intel Xeon Platinum 8124M,240 Intel Xeon Platinum 8151,240 -Intel Xeon Platinum 8153,125 -Intel Xeon Platinum 8156,105 +Intel Xeon Platinum 8153,125.0 +Intel Xeon Platinum 8156,105.0 Intel Xeon Platinum 8157M,145 -Intel Xeon Platinum 8158,150 -Intel Xeon Platinum 8160,150 -Intel Xeon Platinum 8160F,160 +Intel Xeon Platinum 8158,150.0 +Intel Xeon Platinum 8160,150.0 +Intel Xeon Platinum 8160F,160.0 Intel Xeon Platinum 8160H,150 Intel Xeon Platinum 8160M,150 -Intel Xeon Platinum 8160T,150 +Intel Xeon Platinum 8160T,150.0 Intel Xeon Platinum 8163,165 -Intel Xeon Platinum 8164,150 +Intel Xeon Platinum 8164,150.0 Intel Xeon Platinum 8165,165 Intel Xeon Platinum 8167M,165 -Intel Xeon Platinum 8168,205 -Intel Xeon Platinum 8170,165 +Intel Xeon Platinum 8168,205.0 +Intel Xeon Platinum 8170,165.0 Intel Xeon Platinum 8170M,165 Intel Xeon Platinum 8171M,165 Intel Xeon Platinum 8172M,205 Intel Xeon Platinum 8173M,165 Intel Xeon Platinum 8174,240 Intel Xeon Platinum 8175M,240 -Intel Xeon Platinum 8176,165 -Intel Xeon Platinum 8176F,173 +Intel Xeon Platinum 8176,165.0 +Intel Xeon Platinum 8176F,173.0 Intel Xeon Platinum 8176M,165 Intel Xeon Platinum 8179M,240 -Intel Xeon Platinum 8180,205 +Intel Xeon Platinum 8180,205.0 Intel Xeon Platinum 8180M,205 Intel Xeon Platinum 8222L,200 Intel Xeon Platinum 8249C,150 Intel Xeon Platinum 8251,240 -Intel Xeon Platinum 8253,125 +Intel Xeon Platinum 8253,125.0 Intel Xeon Platinum 8255C,165 -Intel Xeon Platinum 8256,105 +Intel Xeon Platinum 8256,105.0 Intel Xeon Platinum 8259CL,210 Intel Xeon Platinum 8259L,210 -Intel Xeon Platinum 8260,165 -Intel Xeon Platinum 8260L,165 +Intel Xeon Platinum 8260,165.0 +Intel Xeon Platinum 8260L,165.0 Intel Xeon Platinum 8260M,165 -Intel Xeon Platinum 8260Y,165 +Intel Xeon Platinum 8260Y,165.0 Intel Xeon Platinum 8263C,165 Intel Xeon Platinum 8267W,205 -Intel Xeon Platinum 8268,205 +Intel Xeon Platinum 8268,205.0 Intel Xeon Platinum 8269CY,205 -Intel Xeon Platinum 8270,205 +Intel Xeon Platinum 8270,205.0 Intel Xeon Platinum 8272CL,195 Intel Xeon Platinum 8272L,195 Intel Xeon Platinum 8273CL,165 Intel Xeon Platinum 8274,240 Intel Xeon Platinum 8275CL,240 -Intel Xeon Platinum 8276,165 -Intel Xeon Platinum 8276L,165 +Intel Xeon Platinum 8276,165.0 +Intel Xeon Platinum 8276L,165.0 Intel Xeon Platinum 8276M,165 Intel Xeon Platinum 8279W,205 -Intel Xeon Platinum 8280,205 -Intel Xeon Platinum 8280L,205 +Intel Xeon Platinum 8280,205.0 +Intel Xeon Platinum 8280L,205.0 Intel Xeon Platinum 8280M,205 Intel Xeon Platinum 8284,240 Intel Xeon Platinum 8347C,210 -Intel Xeon Platinum 8351N,225 -Intel Xeon Platinum 8352M,185 -Intel Xeon Platinum 8352S,205 -Intel Xeon Platinum 8352V,195 -Intel Xeon Platinum 8352Y,205 -Intel Xeon Platinum 8353H,150 -Intel Xeon Platinum 8354H,205 -Intel Xeon Platinum 8356H,190 +Intel Xeon Platinum 8351N,225.0 +Intel Xeon Platinum 8352M,185.0 +Intel Xeon Platinum 8352S,205.0 +Intel Xeon Platinum 8352V,195.0 +Intel Xeon Platinum 8352Y,205.0 +Intel Xeon Platinum 8353H,150.0 +Intel Xeon Platinum 8354H,205.0 +Intel Xeon Platinum 8356H,190.0 Intel Xeon Platinum 8357C,240 -Intel Xeon Platinum 8358,250 -Intel Xeon Platinum 8358P,240 -Intel Xeon Platinum 8360H,225 -Intel Xeon Platinum 8360HL,225 -Intel Xeon Platinum 8360Y,250 -Intel Xeon Platinum 8362,265 -Intel Xeon Platinum 8368,270 -Intel Xeon Platinum 8368Q,270 +Intel Xeon Platinum 8358,250.0 +Intel Xeon Platinum 8358P,240.0 +Intel Xeon Platinum 8360H,225.0 +Intel Xeon Platinum 8360HL,225.0 +Intel Xeon Platinum 8360Y,250.0 +Intel Xeon Platinum 8362,265.0 +Intel Xeon Platinum 8368,270.0 +Intel Xeon Platinum 8368Q,270.0 Intel Xeon Platinum 8370C,205 Intel Xeon Platinum 8372C,300 Intel Xeon Platinum 8373C,300 Intel Xeon Platinum 8375C,300 -Intel Xeon Platinum 8376H,205 -Intel Xeon Platinum 8376HL,205 -Intel Xeon Platinum 8380,270 -Intel Xeon Platinum 8380H,250 -Intel Xeon Platinum 8380HL,250 -Intel Xeon Platinum 9221,250 -Intel Xeon Platinum 9222,250 -Intel Xeon Platinum 9242,350 -Intel Xeon Platinum 9282,400 +Intel Xeon Platinum 8376H,205.0 +Intel Xeon Platinum 8376HL,205.0 +Intel Xeon Platinum 8380,270.0 +Intel Xeon Platinum 8380H,250.0 +Intel Xeon Platinum 8380HL,250.0 +Intel Xeon Platinum 8444H,270.0 +Intel Xeon Platinum 8450H,250.0 +Intel Xeon Platinum 8452Y,300.0 +Intel Xeon Platinum 8454H,270.0 +Intel Xeon Platinum 8458P,350.0 +Intel Xeon Platinum 8460H,330.0 +Intel Xeon Platinum 8460Y+,300.0 +Intel Xeon Platinum 8461V,300.0 +Intel Xeon Platinum 8462Y+,300.0 +Intel Xeon Platinum 8468,350.0 +Intel Xeon Platinum 8468H,330.0 +Intel Xeon Platinum 8468V,330.0 +Intel Xeon Platinum 8470,350.0 +Intel Xeon Platinum 8470N,300.0 +Intel Xeon Platinum 8470Q,350.0 +Intel Xeon Platinum 8471N,300.0 +Intel Xeon Platinum 8480+,350.0 +Intel Xeon Platinum 8490H,350.0 +Intel Xeon Platinum 8558,330.0 +Intel Xeon Platinum 8558P,350.0 +Intel Xeon Platinum 8558U,300.0 +Intel Xeon Platinum 8562Y+,300.0 +Intel Xeon Platinum 8568Y+,350.0 +Intel Xeon Platinum 8570,350.0 +Intel Xeon Platinum 8571N,300.0 +Intel Xeon Platinum 8580,350.0 +Intel Xeon Platinum 8581V,270.0 +Intel Xeon Platinum 8592+,350.0 +Intel Xeon Platinum 8592V,330.0 +Intel Xeon Platinum 8593Q,385.0 +Intel Xeon Platinum 9221,250.0 +Intel Xeon Platinum 9222,250.0 +Intel Xeon Platinum 9242,350.0 +Intel Xeon Platinum 9282,400.0 Intel Xeon Platinum P-8124,240 Intel Xeon Platinum P-8136,165 Intel Xeon Silver 4106H,85 -Intel Xeon Silver 4108,85 -Intel Xeon Silver 4109T,70 -Intel Xeon Silver 4110,85 -Intel Xeon Silver 4112,85 -Intel Xeon Silver 4114,85 -Intel Xeon Silver 4114T,85 -Intel Xeon Silver 4116,85 -Intel Xeon Silver 4116T,85 +Intel Xeon Silver 4108,85.0 +Intel Xeon Silver 4109T,70.0 +Intel Xeon Silver 4110,85.0 +Intel Xeon Silver 4112,85.0 +Intel Xeon Silver 4114,85.0 +Intel Xeon Silver 4114T,85.0 +Intel Xeon Silver 4116,85.0 +Intel Xeon Silver 4116T,85.0 Intel Xeon Silver 4123,105 -Intel Xeon Silver 4208, 85 -Intel Xeon Silver 4209T,70 -Intel Xeon Silver 4210,85 -Intel Xeon Silver 4210R,100 -Intel Xeon Silver 4210T,95 +Intel Xeon Silver 4208,85.0 +Intel Xeon Silver 4209T,70.0 +Intel Xeon Silver 4210,85.0 +Intel Xeon Silver 4210R,100.0 +Intel Xeon Silver 4210T,95.0 Intel Xeon Silver 4211W,100 Intel Xeon Silver 4213W,115 -Intel Xeon Silver 4214,85 -Intel Xeon Silver 4214R,100 -Intel Xeon Silver 4214Y,85 -Intel Xeon Silver 4215,85 -Intel Xeon Silver 4215R,130 -Intel Xeon Silver 4216,100 +Intel Xeon Silver 4214,85.0 +Intel Xeon Silver 4214R,100.0 +Intel Xeon Silver 4214Y,85.0 +Intel Xeon Silver 4215,85.0 +Intel Xeon Silver 4215R,130.0 +Intel Xeon Silver 4216,100.0 Intel Xeon Silver 4216R,125 -Intel Xeon Silver 4309Y,105 -Intel Xeon Silver 4310,120 -Intel Xeon Silver 4310T,105 -Intel Xeon Silver 4314,135 -Intel Xeon Silver 4316,150 -Intel Xeon W-10855M,45 -Intel Xeon W-10885M,45 +Intel Xeon Silver 4309Y,105.0 +Intel Xeon Silver 4310,120.0 +Intel Xeon Silver 4310T,105.0 +Intel Xeon Silver 4314,135.0 +Intel Xeon Silver 4316,150.0 +Intel Xeon Silver 4410T,150.0 +Intel Xeon Silver 4410Y,150.0 +Intel Xeon Silver 4416+,165.0 +Intel Xeon Silver 4509Y,125.0 +Intel Xeon Silver 4510,150.0 +Intel Xeon Silver 4510T,115.0 +Intel Xeon Silver 4514Y,150.0 +Intel Xeon Silver 4516Y+,185.0 +Intel Xeon W-10855M,45.0 +Intel Xeon W-10885M,45.0 +Intel Xeon W-11155MLE,25.0 +Intel Xeon W-11555MLE,25.0 +Intel Xeon W-11865MLE,25.0 Intel Xeon W-11955M,45 -Intel Xeon W-1250,80 -Intel Xeon W-1250E,80 -Intel Xeon W-1250P,125 -Intel Xeon W-1250TE,35 -Intel Xeon W-1270,80 -Intel Xeon W-1270E,80 -Intel Xeon W-1270P,125 -Intel Xeon W-1270TE,35 -Intel Xeon W-1290,80 -Intel Xeon W-1290E,95 -Intel Xeon W-1290P,125 -Intel Xeon W-1290T,35 -Intel Xeon W-1290TE,35 -Intel Xeon W-1350,80 -Intel Xeon W-1350P,125 -Intel Xeon W-1370,80 -Intel Xeon W-1370P,125 -Intel Xeon W-1390,80 -Intel Xeon W-1390P,125 -Intel Xeon W-1390T,35 +Intel Xeon W-1250,80.0 +Intel Xeon W-1250E,80.0 +Intel Xeon W-1250P,125.0 +Intel Xeon W-1250TE,35.0 +Intel Xeon W-1270,80.0 +Intel Xeon W-1270E,80.0 +Intel Xeon W-1270P,125.0 +Intel Xeon W-1270TE,35.0 +Intel Xeon W-1290,80.0 +Intel Xeon W-1290E,95.0 +Intel Xeon W-1290P,125.0 +Intel Xeon W-1290T,35.0 +Intel Xeon W-1290TE,35.0 +Intel Xeon W-1350,80.0 +Intel Xeon W-1350P,125.0 +Intel Xeon W-1370,80.0 +Intel Xeon W-1370P,125.0 +Intel Xeon W-1390,80.0 +Intel Xeon W-1390P,125.0 +Intel Xeon W-1390T,35.0 Intel Xeon W-2102,120 Intel Xeon W-2104,120 -Intel Xeon W-2123,120 -Intel Xeon W-2125,120 -Intel Xeon W-2133,140 -Intel Xeon W-2135,140 +Intel Xeon W-2123,120.0 +Intel Xeon W-2125,120.0 +Intel Xeon W-2133,140.0 +Intel Xeon W-2135,140.0 Intel Xeon W-2140B,120 -Intel Xeon W-2145,140 +Intel Xeon W-2145,140.0 Intel Xeon W-2150B,120 -Intel Xeon W-2155,140 -Intel Xeon W-2175,140 +Intel Xeon W-2155,140.0 +Intel Xeon W-2175,140.0 Intel Xeon W-2191B,140 -Intel Xeon W-2195,140 -Intel Xeon W-2223,120 -Intel Xeon W-2225,105 -Intel Xeon W-2235,130 -Intel Xeon W-2245,155 -Intel Xeon W-2255,165 -Intel Xeon W-2265,165 -Intel Xeon W-2275,165 -Intel Xeon W-2295,165 -Intel Xeon W-3175X,255 -Intel Xeon W-3223,160 -Intel Xeon W-3225,160 -Intel Xeon W-3235,180 -Intel Xeon W-3245,205 -Intel Xeon W-3245M,205 -Intel Xeon W-3265,205 -Intel Xeon W-3265M,205 -Intel Xeon W-3275,205 -Intel Xeon W-3275M,205 -Intel Xeon W-3323,220 -Intel Xeon W-3335,250 -Intel Xeon W-3345,250 -Intel Xeon W-3365,270 -Intel Xeon W-3375,270 +Intel Xeon W-2195,140.0 +Intel Xeon W-2223,120.0 +Intel Xeon W-2225,105.0 +Intel Xeon W-2235,130.0 +Intel Xeon W-2245,155.0 +Intel Xeon W-2255,165.0 +Intel Xeon W-2265,165.0 +Intel Xeon W-2275,165.0 +Intel Xeon W-2295,165.0 +Intel Xeon W-3175X,255.0 +Intel Xeon W-3223,160.0 +Intel Xeon W-3225,160.0 +Intel Xeon W-3235,180.0 +Intel Xeon W-3245,205.0 +Intel Xeon W-3245M,205.0 +Intel Xeon W-3265,205.0 +Intel Xeon W-3265M,205.0 +Intel Xeon W-3275,205.0 +Intel Xeon W-3275M,205.0 +Intel Xeon W-3323,220.0 +Intel Xeon W-3335,250.0 +Intel Xeon W-3345,250.0 +Intel Xeon W-3365,270.0 +Intel Xeon W-3375,270.0 Intel Xeon W3503,130 Intel Xeon W3505,130 Intel Xeon W3520,130 @@ -3974,8 +4824,8 @@ Intel Xeon W3550,130 Intel Xeon W3565,130 Intel Xeon W3570,130 Intel Xeon W3580,130 -Intel Xeon W3670,130 -Intel Xeon W3680,130 +Intel Xeon W3670,130.0 +Intel Xeon W3680,130.0 Intel Xeon W3690,130 Intel Xeon W5580,130 Intel Xeon W5590,130 @@ -4011,18 +4861,18 @@ Intel Xeon X5492,150 Intel Xeon X5550,95 Intel Xeon X5560,95 Intel Xeon X5570,95 -Intel Xeon X5647,130 -Intel Xeon X5650,95 -Intel Xeon X5660,95 -Intel Xeon X5667,95 -Intel Xeon X5670,95 -Intel Xeon X5672,95 -Intel Xeon X5675,95 -Intel Xeon X5677,130 +Intel Xeon X5647,130.0 +Intel Xeon X5650,95.0 +Intel Xeon X5660,95.0 +Intel Xeon X5667,95.0 +Intel Xeon X5670,95.0 +Intel Xeon X5672,95.0 +Intel Xeon X5675,95.0 +Intel Xeon X5677,130.0 Intel Xeon X5679,115 -Intel Xeon X5680,130 -Intel Xeon X5687,130 -Intel Xeon X5690,130 +Intel Xeon X5680,130.0 +Intel Xeon X5687,130.0 +Intel Xeon X5690,130.0 Intel Xeon X5698,130 Intel Xeon X6550,130 Intel Xeon X7350,130 @@ -4037,8 +4887,8 @@ N960,35 N970,35 P650,35 P860,35 -Sempron 2650 APU with Radeon R3 Series,25 -Sempron 3850 APU with Radeon R3 Series,25 +Sempron 2650 APU,25 +Sempron 3850 APU,25 TL-52,31 TL-60,31 TL-64,35 diff --git a/requirements.txt b/requirements.txt index 64d84a3d0..50958446d 100644 --- a/requirements.txt +++ b/requirements.txt @@ -23,26 +23,26 @@ anyio==4.9.0 # via httpx arrow==1.3.0 # via hatch.envs.default -certifi==2025.1.31 +certifi==2025.4.26 # via # httpcore # httpx # requests cffi==1.17.1 # via cryptography -charset-normalizer==3.4.1 +charset-normalizer==3.4.2 # via requests click==8.1.8 # via # hatch.envs.default # typer -cryptography==44.0.2 +cryptography==45.0.2 # via jwcrypto fief-client==0.20.0 # via hatch.envs.default -h11==0.14.0 +h11==0.16.0 # via httpcore -httpcore==1.0.8 +httpcore==1.0.9 # via httpx httpx==0.27.2 # via fief-client @@ -57,13 +57,13 @@ markdown-it-py==3.0.0 # via rich mdurl==0.1.2 # via markdown-it-py -numpy==2.2.4 +numpy==2.2.6 # via pandas -nvidia-ml-py==12.570.86 +nvidia-ml-py==12.575.51 # via pynvml pandas==2.2.3 # via hatch.envs.default -prometheus-client==0.21.1 +prometheus-client==0.22.0 # via hatch.envs.default prompt-toolkit==3.0.51 # via questionary @@ -73,9 +73,9 @@ py-cpuinfo==9.0.0 # via hatch.envs.default pycparser==2.22 # via cffi -pydantic==2.11.3 +pydantic==2.11.5 # via hatch.envs.default -pydantic-core==2.33.1 +pydantic-core==2.33.2 # via pydantic pygments==2.19.1 # via rich @@ -107,9 +107,9 @@ sniffio==1.3.1 # httpx termcolor==2.3.0 # via yaspin -typer==0.15.2 +typer==0.15.4 # via hatch.envs.default -types-python-dateutil==2.9.0.20241206 +types-python-dateutil==2.9.0.20250516 # via arrow typing-extensions==4.13.2 # via @@ -119,7 +119,7 @@ typing-extensions==4.13.2 # pydantic-core # typer # typing-inspection -typing-inspection==0.4.0 +typing-inspection==0.4.1 # via pydantic tzdata==2025.2 # via pandas diff --git a/requirements/requirements-api.txt b/requirements/requirements-api.txt index ab0f38ba2..56855f8a8 100644 --- a/requirements/requirements-api.txt +++ b/requirements/requirements-api.txt @@ -41,7 +41,7 @@ # - typer # -alembic==1.15.2 +alembic==1.16.1 # via hatch.envs.api anyio==4.9.0 # via @@ -54,21 +54,21 @@ asgiref==3.8.1 # via opentelemetry-instrumentation-asgi bcrypt==4.3.0 # via hatch.envs.api -certifi==2025.1.31 +certifi==2025.4.26 # via # httpcore # httpx # requests cffi==1.17.1 # via cryptography -charset-normalizer==3.4.1 +charset-normalizer==3.4.2 # via requests click==8.1.8 # via # hatch.envs.api # typer # uvicorn -cryptography==44.0.2 +cryptography==45.0.2 # via jwcrypto dependency-injector==4.46.0 # via hatch.envs.api @@ -94,13 +94,13 @@ fief-client==0.20.0 # via hatch.envs.api googleapis-common-protos==1.70.0 # via opentelemetry-exporter-otlp-proto-http -greenlet==3.2.0 +greenlet==3.2.2 # via sqlalchemy h11==0.16.0 # via # httpcore # uvicorn -httpcore==1.0.8 +httpcore==1.0.9 # via httpx httptools==0.6.4 # via uvicorn @@ -120,9 +120,9 @@ iniconfig==2.1.0 # via pytest jwcrypto==1.5.6 # via fief-client -logfire==3.14.0 +logfire==3.16.0 # via hatch.envs.api -makefun==1.15.6 +makefun==1.16.0 # via fief-client mako==1.3.10 # via alembic @@ -134,13 +134,13 @@ mdurl==0.1.2 # via markdown-it-py mock==5.2.0 # via hatch.envs.api -numpy==2.2.4 +numpy==2.2.6 # via # hatch.envs.api # pandas -nvidia-ml-py==12.570.86 +nvidia-ml-py==12.575.51 # via pynvml -opentelemetry-api==1.32.1 +opentelemetry-api==1.33.1 # via # opentelemetry-exporter-otlp-proto-http # opentelemetry-instrumentation @@ -148,46 +148,46 @@ opentelemetry-api==1.32.1 # opentelemetry-instrumentation-fastapi # opentelemetry-sdk # opentelemetry-semantic-conventions -opentelemetry-exporter-otlp-proto-common==1.32.1 +opentelemetry-exporter-otlp-proto-common==1.33.1 # via opentelemetry-exporter-otlp-proto-http -opentelemetry-exporter-otlp-proto-http==1.32.1 +opentelemetry-exporter-otlp-proto-http==1.33.1 # via logfire -opentelemetry-instrumentation==0.53b1 +opentelemetry-instrumentation==0.54b1 # via # logfire # opentelemetry-instrumentation-asgi # opentelemetry-instrumentation-fastapi -opentelemetry-instrumentation-asgi==0.53b1 +opentelemetry-instrumentation-asgi==0.54b1 # via opentelemetry-instrumentation-fastapi -opentelemetry-instrumentation-fastapi==0.53b1 +opentelemetry-instrumentation-fastapi==0.54b1 # via logfire -opentelemetry-proto==1.32.1 +opentelemetry-proto==1.33.1 # via # opentelemetry-exporter-otlp-proto-common # opentelemetry-exporter-otlp-proto-http -opentelemetry-sdk==1.32.1 +opentelemetry-sdk==1.33.1 # via # logfire # opentelemetry-exporter-otlp-proto-http -opentelemetry-semantic-conventions==0.53b1 +opentelemetry-semantic-conventions==0.54b1 # via # opentelemetry-instrumentation # opentelemetry-instrumentation-asgi # opentelemetry-instrumentation-fastapi # opentelemetry-sdk -opentelemetry-util-http==0.53b1 +opentelemetry-util-http==0.54b1 # via # opentelemetry-instrumentation-asgi # opentelemetry-instrumentation-fastapi -packaging==24.2 +packaging==25.0 # via # opentelemetry-instrumentation # pytest pandas==2.2.3 # via hatch.envs.api -pluggy==1.5.0 +pluggy==1.6.0 # via pytest -prometheus-client==0.21.1 +prometheus-client==0.22.0 # via hatch.envs.api prompt-toolkit==3.0.51 # via questionary @@ -204,7 +204,7 @@ py-cpuinfo==9.0.0 # via hatch.envs.api pycparser==2.22 # via cffi -pydantic==1.10.21 +pydantic==1.10.22 # via # hatch.envs.api # fastapi @@ -265,9 +265,9 @@ starlette==0.46.2 # via fastapi termcolor==2.3.0 # via yaspin -typer==0.15.2 +typer==0.15.4 # via hatch.envs.api -types-python-dateutil==2.9.0.20241206 +types-python-dateutil==2.9.0.20250516 # via arrow typing-extensions==4.13.2 # via @@ -285,7 +285,7 @@ urllib3==2.4.0 # via # requests # responses -uvicorn==0.34.1 +uvicorn==0.34.2 # via hatch.envs.api uvloop==0.21.0 # via uvicorn diff --git a/requirements/requirements-carbonboard.txt b/requirements/requirements-carbonboard.txt index 13aed2d86..f798d2bff 100644 --- a/requirements/requirements-carbonboard.txt +++ b/requirements/requirements-carbonboard.txt @@ -28,23 +28,23 @@ arrow==1.3.0 # via hatch.envs.carbonboard blinker==1.9.0 # via flask -certifi==2025.1.31 +certifi==2025.4.26 # via # httpcore # httpx # requests cffi==1.17.1 # via cryptography -charset-normalizer==3.4.1 +charset-normalizer==3.4.2 # via requests click==8.1.8 # via # hatch.envs.carbonboard # flask # typer -cryptography==44.0.2 +cryptography==45.0.2 # via jwcrypto -dash==3.0.3 +dash==3.0.4 # via # hatch.envs.carbonboard # dash-bootstrap-components @@ -58,7 +58,7 @@ flask==3.0.3 # via dash h11==0.16.0 # via httpcore -httpcore==1.0.8 +httpcore==1.0.9 # via httpx httpx==0.27.2 # via fief-client @@ -67,7 +67,7 @@ idna==3.10 # anyio # httpx # requests -importlib-metadata==8.6.1 +importlib-metadata==8.7.0 # via dash itsdangerous==2.2.0 # via flask @@ -83,21 +83,21 @@ markupsafe==3.0.2 # werkzeug mdurl==0.1.2 # via markdown-it-py -narwhals==1.35.0 +narwhals==1.40.0 # via plotly nest-asyncio==1.6.0 # via dash -numpy==2.2.4 +numpy==2.2.6 # via pandas -nvidia-ml-py==12.570.86 +nvidia-ml-py==12.575.51 # via pynvml -packaging==24.2 +packaging==25.0 # via plotly pandas==2.2.3 # via hatch.envs.carbonboard -plotly==6.0.1 +plotly==6.1.1 # via dash -prometheus-client==0.21.1 +prometheus-client==0.22.0 # via hatch.envs.carbonboard prompt-toolkit==3.0.51 # via questionary @@ -107,9 +107,9 @@ py-cpuinfo==9.0.0 # via hatch.envs.carbonboard pycparser==2.22 # via cffi -pydantic==2.11.3 +pydantic==2.11.5 # via hatch.envs.carbonboard -pydantic-core==2.33.1 +pydantic-core==2.33.2 # via pydantic pygments==2.19.1 # via rich @@ -149,9 +149,9 @@ termcolor==2.3.0 # via # fire # yaspin -typer==0.15.2 +typer==0.15.4 # via hatch.envs.carbonboard -types-python-dateutil==2.9.0.20241206 +types-python-dateutil==2.9.0.20250516 # via arrow typing-extensions==4.13.2 # via @@ -162,7 +162,7 @@ typing-extensions==4.13.2 # pydantic-core # typer # typing-inspection -typing-inspection==0.4.0 +typing-inspection==0.4.1 # via pydantic tzdata==2025.2 # via pandas diff --git a/requirements/requirements-dashboard.txt b/requirements/requirements-dashboard.txt index 153481098..4ce9060a2 100644 --- a/requirements/requirements-dashboard.txt +++ b/requirements/requirements-dashboard.txt @@ -28,27 +28,27 @@ arrow==1.3.0 # via hatch.envs.dashboard blinker==1.9.0 # via flask -certifi==2025.1.31 +certifi==2025.4.26 # via # httpcore # httpx # requests cffi==1.17.1 # via cryptography -charset-normalizer==3.4.1 +charset-normalizer==3.4.2 # via requests click==8.1.8 # via # hatch.envs.dashboard # flask # typer -cryptography==44.0.2 +cryptography==45.0.2 # via jwcrypto -dash==3.0.3 +dash==3.0.4 # via # hatch.envs.dashboard # dash-bootstrap-components -dash-bootstrap-components==2.0.1 +dash-bootstrap-components==2.0.3 # via hatch.envs.dashboard fief-client==0.20.0 # via hatch.envs.dashboard @@ -56,7 +56,7 @@ flask==3.0.3 # via dash h11==0.16.0 # via httpcore -httpcore==1.0.8 +httpcore==1.0.9 # via httpx httpx==0.27.2 # via fief-client @@ -65,7 +65,7 @@ idna==3.10 # anyio # httpx # requests -importlib-metadata==8.6.1 +importlib-metadata==8.7.0 # via dash itsdangerous==2.2.0 # via flask @@ -81,23 +81,23 @@ markupsafe==3.0.2 # werkzeug mdurl==0.1.2 # via markdown-it-py -narwhals==1.35.0 +narwhals==1.40.0 # via plotly nest-asyncio==1.6.0 # via dash -numpy==2.2.4 +numpy==2.2.6 # via pandas -nvidia-ml-py==12.570.86 +nvidia-ml-py==12.575.51 # via pynvml -packaging==24.2 +packaging==25.0 # via plotly pandas==2.2.3 # via hatch.envs.dashboard -plotly==6.0.1 +plotly==6.1.1 # via # hatch.envs.dashboard # dash -prometheus-client==0.21.1 +prometheus-client==0.22.0 # via hatch.envs.dashboard prompt-toolkit==3.0.51 # via questionary @@ -107,9 +107,9 @@ py-cpuinfo==9.0.0 # via hatch.envs.dashboard pycparser==2.22 # via cffi -pydantic==2.11.3 +pydantic==2.11.5 # via hatch.envs.dashboard -pydantic-core==2.33.1 +pydantic-core==2.33.2 # via pydantic pygments==2.19.1 # via rich @@ -147,9 +147,9 @@ sniffio==1.3.1 # httpx termcolor==2.3.0 # via yaspin -typer==0.15.2 +typer==0.15.4 # via hatch.envs.dashboard -types-python-dateutil==2.9.0.20241206 +types-python-dateutil==2.9.0.20250516 # via arrow typing-extensions==4.13.2 # via @@ -160,7 +160,7 @@ typing-extensions==4.13.2 # pydantic-core # typer # typing-inspection -typing-inspection==0.4.0 +typing-inspection==0.4.1 # via pydantic tzdata==2025.2 # via pandas diff --git a/requirements/requirements-dev.txt b/requirements/requirements-dev.txt index ec4e18152..46dae7b77 100644 --- a/requirements/requirements-dev.txt +++ b/requirements/requirements-dev.txt @@ -32,7 +32,7 @@ black==25.1.0 # via hatch.envs.dev bumpver==2024.1130 # via hatch.envs.dev -certifi==2025.1.31 +certifi==2025.4.26 # via # httpcore # httpx @@ -41,7 +41,7 @@ cffi==1.17.1 # via cryptography cfgv==3.4.0 # via pre-commit -charset-normalizer==3.4.1 +charset-normalizer==3.4.2 # via requests click==8.1.8 # via @@ -51,7 +51,7 @@ click==8.1.8 # typer colorama==0.4.6 # via bumpver -cryptography==44.0.2 +cryptography==45.0.2 # via jwcrypto distlib==0.3.9 # via virtualenv @@ -61,11 +61,11 @@ filelock==3.18.0 # via virtualenv h11==0.16.0 # via httpcore -httpcore==1.0.8 +httpcore==1.0.9 # via httpx httpx==0.27.2 # via fief-client -identify==2.6.9 +identify==2.6.12 # via pre-commit idna==3.10 # via @@ -82,29 +82,29 @@ mdurl==0.1.2 # via markdown-it-py mypy==1.15.0 # via hatch.envs.dev -mypy-extensions==1.0.0 +mypy-extensions==1.1.0 # via # black # mypy nodeenv==1.9.1 # via pre-commit -numpy==2.2.4 +numpy==2.2.6 # via pandas -nvidia-ml-py==12.570.86 +nvidia-ml-py==12.575.51 # via pynvml -packaging==24.2 +packaging==25.0 # via black pandas==2.2.3 # via hatch.envs.dev pathspec==0.12.1 # via black -platformdirs==4.3.7 +platformdirs==4.3.8 # via # black # virtualenv pre-commit==4.2.0 # via hatch.envs.dev -prometheus-client==0.21.1 +prometheus-client==0.22.0 # via hatch.envs.dev prompt-toolkit==3.0.51 # via questionary @@ -114,9 +114,9 @@ py-cpuinfo==9.0.0 # via hatch.envs.dev pycparser==2.22 # via cffi -pydantic==2.11.3 +pydantic==2.11.5 # via hatch.envs.dev -pydantic-core==2.33.1 +pydantic-core==2.33.2 # via pydantic pygments==2.19.1 # via rich @@ -140,7 +140,7 @@ rich==14.0.0 # via # hatch.envs.dev # typer -ruff==0.11.5 +ruff==0.11.11 # via hatch.envs.dev shellingham==1.5.4 # via typer @@ -154,9 +154,9 @@ termcolor==2.3.0 # via yaspin toml==0.10.2 # via bumpver -typer==0.15.2 +typer==0.15.4 # via hatch.envs.dev -types-python-dateutil==2.9.0.20241206 +types-python-dateutil==2.9.0.20250516 # via arrow typing-extensions==4.13.2 # via @@ -167,13 +167,13 @@ typing-extensions==4.13.2 # pydantic-core # typer # typing-inspection -typing-inspection==0.4.0 +typing-inspection==0.4.1 # via pydantic tzdata==2025.2 # via pandas urllib3==2.4.0 # via requests -virtualenv==20.30.0 +virtualenv==20.31.2 # via pre-commit wcwidth==0.2.13 # via prompt-toolkit diff --git a/requirements/requirements-test.py3.10.txt b/requirements/requirements-test.py3.10.txt index b008be95f..d37082a81 100644 --- a/requirements/requirements-test.py3.10.txt +++ b/requirements/requirements-test.py3.10.txt @@ -37,29 +37,29 @@ arrow==1.3.0 # via hatch.envs.test.py3.10 blinker==1.9.0 # via flask -certifi==2025.1.31 +certifi==2025.4.26 # via # httpcore # httpx # requests cffi==1.17.1 # via cryptography -charset-normalizer==3.4.1 +charset-normalizer==3.4.2 # via requests click==8.1.8 # via # hatch.envs.test.py3.10 # flask # typer -cryptography==44.0.2 +cryptography==45.0.2 # via jwcrypto -dash==3.0.3 +dash==3.0.4 # via # hatch.envs.test.py3.10 # dash-bootstrap-components dash-bootstrap-components==0.13.1 # via hatch.envs.test.py3.10 -exceptiongroup==1.2.2 +exceptiongroup==1.3.0 # via # anyio # pytest @@ -71,7 +71,7 @@ flask==3.0.3 # via dash h11==0.16.0 # via httpcore -httpcore==1.0.8 +httpcore==1.0.9 # via httpx httpx==0.27.2 # via fief-client @@ -80,7 +80,7 @@ idna==3.10 # anyio # httpx # requests -importlib-metadata==8.6.1 +importlib-metadata==8.7.0 # via dash iniconfig==2.1.0 # via pytest @@ -100,27 +100,27 @@ mdurl==0.1.2 # via markdown-it-py mock==5.2.0 # via hatch.envs.test.py3.10 -narwhals==1.35.0 +narwhals==1.40.0 # via plotly nest-asyncio==1.6.0 # via dash -numpy==2.2.4 ; python_version >= "3.9" +numpy==2.2.6 ; python_version >= "3.9" # via # hatch.envs.test.py3.10 # pandas -nvidia-ml-py==12.570.86 +nvidia-ml-py==12.575.51 # via pynvml -packaging==24.2 +packaging==25.0 # via # plotly # pytest pandas==2.2.3 # via hatch.envs.test.py3.10 -plotly==6.0.1 +plotly==6.1.1 # via dash -pluggy==1.5.0 +pluggy==1.6.0 # via pytest -prometheus-client==0.21.1 +prometheus-client==0.22.0 # via hatch.envs.test.py3.10 prompt-toolkit==3.0.51 # via questionary @@ -130,9 +130,9 @@ py-cpuinfo==9.0.0 # via hatch.envs.test.py3.10 pycparser==2.22 # via cffi -pydantic==2.11.3 +pydantic==2.11.5 # via hatch.envs.test.py3.10 -pydantic-core==2.33.1 +pydantic-core==2.33.2 # via pydantic pygments==2.19.1 # via rich @@ -184,21 +184,22 @@ termcolor==2.3.0 # yaspin tomli==2.2.1 # via pytest -typer==0.15.2 +typer==0.15.4 # via hatch.envs.test.py3.10 -types-python-dateutil==2.9.0.20241206 +types-python-dateutil==2.9.0.20250516 # via arrow typing-extensions==4.13.2 # via # anyio # dash + # exceptiongroup # jwcrypto # pydantic # pydantic-core # rich # typer # typing-inspection -typing-inspection==0.4.0 +typing-inspection==0.4.1 # via pydantic tzdata==2025.2 # via pandas diff --git a/requirements/requirements-test.py3.11.txt b/requirements/requirements-test.py3.11.txt index 8316d9f78..af7e0eafa 100644 --- a/requirements/requirements-test.py3.11.txt +++ b/requirements/requirements-test.py3.11.txt @@ -37,23 +37,23 @@ arrow==1.3.0 # via hatch.envs.test.py3.11 blinker==1.9.0 # via flask -certifi==2025.1.31 +certifi==2025.4.26 # via # httpcore # httpx # requests cffi==1.17.1 # via cryptography -charset-normalizer==3.4.1 +charset-normalizer==3.4.2 # via requests click==8.1.8 # via # hatch.envs.test.py3.11 # flask # typer -cryptography==44.0.2 +cryptography==45.0.2 # via jwcrypto -dash==3.0.3 +dash==3.0.4 # via # hatch.envs.test.py3.11 # dash-bootstrap-components @@ -67,7 +67,7 @@ flask==3.0.3 # via dash h11==0.16.0 # via httpcore -httpcore==1.0.8 +httpcore==1.0.9 # via httpx httpx==0.27.2 # via fief-client @@ -76,7 +76,7 @@ idna==3.10 # anyio # httpx # requests -importlib-metadata==8.6.1 +importlib-metadata==8.7.0 # via dash iniconfig==2.1.0 # via pytest @@ -96,27 +96,27 @@ mdurl==0.1.2 # via markdown-it-py mock==5.2.0 # via hatch.envs.test.py3.11 -narwhals==1.35.0 +narwhals==1.40.0 # via plotly nest-asyncio==1.6.0 # via dash -numpy==2.2.4 ; python_version >= "3.9" +numpy==2.2.6 ; python_version >= "3.9" # via # hatch.envs.test.py3.11 # pandas -nvidia-ml-py==12.570.86 +nvidia-ml-py==12.575.51 # via pynvml -packaging==24.2 +packaging==25.0 # via # plotly # pytest pandas==2.2.3 # via hatch.envs.test.py3.11 -plotly==6.0.1 +plotly==6.1.1 # via dash -pluggy==1.5.0 +pluggy==1.6.0 # via pytest -prometheus-client==0.21.1 +prometheus-client==0.22.0 # via hatch.envs.test.py3.11 prompt-toolkit==3.0.51 # via questionary @@ -126,9 +126,9 @@ py-cpuinfo==9.0.0 # via hatch.envs.test.py3.11 pycparser==2.22 # via cffi -pydantic==2.11.3 +pydantic==2.11.5 # via hatch.envs.test.py3.11 -pydantic-core==2.33.1 +pydantic-core==2.33.2 # via pydantic pygments==2.19.1 # via rich @@ -178,9 +178,9 @@ termcolor==2.3.0 # via # fire # yaspin -typer==0.15.2 +typer==0.15.4 # via hatch.envs.test.py3.11 -types-python-dateutil==2.9.0.20241206 +types-python-dateutil==2.9.0.20250516 # via arrow typing-extensions==4.13.2 # via @@ -191,7 +191,7 @@ typing-extensions==4.13.2 # pydantic-core # typer # typing-inspection -typing-inspection==0.4.0 +typing-inspection==0.4.1 # via pydantic tzdata==2025.2 # via pandas diff --git a/requirements/requirements-test.py3.12.txt b/requirements/requirements-test.py3.12.txt index f94004d18..f4452036c 100644 --- a/requirements/requirements-test.py3.12.txt +++ b/requirements/requirements-test.py3.12.txt @@ -37,23 +37,23 @@ arrow==1.3.0 # via hatch.envs.test.py3.12 blinker==1.9.0 # via flask -certifi==2025.1.31 +certifi==2025.4.26 # via # httpcore # httpx # requests cffi==1.17.1 # via cryptography -charset-normalizer==3.4.1 +charset-normalizer==3.4.2 # via requests click==8.1.8 # via # hatch.envs.test.py3.12 # flask # typer -cryptography==44.0.2 +cryptography==45.0.2 # via jwcrypto -dash==3.0.3 +dash==3.0.4 # via # hatch.envs.test.py3.12 # dash-bootstrap-components @@ -67,7 +67,7 @@ flask==3.0.3 # via dash h11==0.16.0 # via httpcore -httpcore==1.0.8 +httpcore==1.0.9 # via httpx httpx==0.27.2 # via fief-client @@ -76,7 +76,7 @@ idna==3.10 # anyio # httpx # requests -importlib-metadata==8.6.1 +importlib-metadata==8.7.0 # via dash iniconfig==2.1.0 # via pytest @@ -96,27 +96,27 @@ mdurl==0.1.2 # via markdown-it-py mock==5.2.0 # via hatch.envs.test.py3.12 -narwhals==1.35.0 +narwhals==1.40.0 # via plotly nest-asyncio==1.6.0 # via dash -numpy==2.2.4 ; python_version >= "3.9" +numpy==2.2.6 ; python_version >= "3.9" # via # hatch.envs.test.py3.12 # pandas -nvidia-ml-py==12.570.86 +nvidia-ml-py==12.575.51 # via pynvml -packaging==24.2 +packaging==25.0 # via # plotly # pytest pandas==2.2.3 # via hatch.envs.test.py3.12 -plotly==6.0.1 +plotly==6.1.1 # via dash -pluggy==1.5.0 +pluggy==1.6.0 # via pytest -prometheus-client==0.21.1 +prometheus-client==0.22.0 # via hatch.envs.test.py3.12 prompt-toolkit==3.0.51 # via questionary @@ -126,9 +126,9 @@ py-cpuinfo==9.0.0 # via hatch.envs.test.py3.12 pycparser==2.22 # via cffi -pydantic==2.11.3 +pydantic==2.11.5 # via hatch.envs.test.py3.12 -pydantic-core==2.33.1 +pydantic-core==2.33.2 # via pydantic pygments==2.19.1 # via rich @@ -178,9 +178,9 @@ termcolor==2.3.0 # via # fire # yaspin -typer==0.15.2 +typer==0.15.4 # via hatch.envs.test.py3.12 -types-python-dateutil==2.9.0.20241206 +types-python-dateutil==2.9.0.20250516 # via arrow typing-extensions==4.13.2 # via @@ -191,7 +191,7 @@ typing-extensions==4.13.2 # pydantic-core # typer # typing-inspection -typing-inspection==0.4.0 +typing-inspection==0.4.1 # via pydantic tzdata==2025.2 # via pandas diff --git a/requirements/requirements-test.py3.13.txt b/requirements/requirements-test.py3.13.txt index e4490168f..122435304 100644 --- a/requirements/requirements-test.py3.13.txt +++ b/requirements/requirements-test.py3.13.txt @@ -37,23 +37,23 @@ arrow==1.3.0 # via hatch.envs.test.py3.13 blinker==1.9.0 # via flask -certifi==2025.1.31 +certifi==2025.4.26 # via # httpcore # httpx # requests cffi==1.17.1 # via cryptography -charset-normalizer==3.4.1 +charset-normalizer==3.4.2 # via requests click==8.1.8 # via # hatch.envs.test.py3.13 # flask # typer -cryptography==44.0.2 +cryptography==45.0.2 # via jwcrypto -dash==3.0.3 +dash==3.0.4 # via # hatch.envs.test.py3.13 # dash-bootstrap-components @@ -67,7 +67,7 @@ flask==3.0.3 # via dash h11==0.16.0 # via httpcore -httpcore==1.0.8 +httpcore==1.0.9 # via httpx httpx==0.27.2 # via fief-client @@ -76,7 +76,7 @@ idna==3.10 # anyio # httpx # requests -importlib-metadata==8.6.1 +importlib-metadata==8.7.0 # via dash iniconfig==2.1.0 # via pytest @@ -96,27 +96,27 @@ mdurl==0.1.2 # via markdown-it-py mock==5.2.0 # via hatch.envs.test.py3.13 -narwhals==1.35.0 +narwhals==1.40.0 # via plotly nest-asyncio==1.6.0 # via dash -numpy==2.2.4 ; python_version >= "3.9" +numpy==2.2.6 ; python_version >= "3.9" # via # hatch.envs.test.py3.13 # pandas -nvidia-ml-py==12.570.86 +nvidia-ml-py==12.575.51 # via pynvml -packaging==24.2 +packaging==25.0 # via # plotly # pytest pandas==2.2.3 # via hatch.envs.test.py3.13 -plotly==6.0.1 +plotly==6.1.1 # via dash -pluggy==1.5.0 +pluggy==1.6.0 # via pytest -prometheus-client==0.21.1 +prometheus-client==0.22.0 # via hatch.envs.test.py3.13 prompt-toolkit==3.0.51 # via questionary @@ -126,9 +126,9 @@ py-cpuinfo==9.0.0 # via hatch.envs.test.py3.13 pycparser==2.22 # via cffi -pydantic==2.11.3 +pydantic==2.11.5 # via hatch.envs.test.py3.13 -pydantic-core==2.33.1 +pydantic-core==2.33.2 # via pydantic pygments==2.19.1 # via rich @@ -178,9 +178,9 @@ termcolor==2.3.0 # via # fire # yaspin -typer==0.15.2 +typer==0.15.4 # via hatch.envs.test.py3.13 -types-python-dateutil==2.9.0.20241206 +types-python-dateutil==2.9.0.20250516 # via arrow typing-extensions==4.13.2 # via @@ -190,7 +190,7 @@ typing-extensions==4.13.2 # pydantic-core # typer # typing-inspection -typing-inspection==0.4.0 +typing-inspection==0.4.1 # via pydantic tzdata==2025.2 # via pandas diff --git a/requirements/requirements-test.py3.8.txt b/requirements/requirements-test.py3.8.txt index f9e54bd64..eb950e6c0 100644 --- a/requirements/requirements-test.py3.8.txt +++ b/requirements/requirements-test.py3.8.txt @@ -37,29 +37,29 @@ arrow==1.3.0 # via hatch.envs.test.py3.8 blinker==1.8.2 # via flask -certifi==2025.1.31 +certifi==2025.4.26 # via # httpcore # httpx # requests cffi==1.17.1 # via cryptography -charset-normalizer==3.4.1 +charset-normalizer==3.4.2 # via requests click==8.1.8 # via # hatch.envs.test.py3.8 # flask # typer -cryptography==44.0.2 +cryptography==45.0.2 # via jwcrypto -dash==3.0.3 +dash==3.0.4 # via # hatch.envs.test.py3.8 # dash-bootstrap-components dash-bootstrap-components==0.13.1 # via hatch.envs.test.py3.8 -exceptiongroup==1.2.2 +exceptiongroup==1.3.0 # via # anyio # pytest @@ -71,7 +71,7 @@ flask==3.0.3 # via dash h11==0.16.0 # via httpcore -httpcore==1.0.8 +httpcore==1.0.9 # via httpx httpx==0.27.2 # via fief-client @@ -104,7 +104,7 @@ mdurl==0.1.2 # via markdown-it-py mock==5.2.0 # via hatch.envs.test.py3.8 -narwhals==1.35.0 +narwhals==1.40.0 # via plotly nest-asyncio==1.6.0 # via dash @@ -112,13 +112,13 @@ numpy==1.24.4 ; python_version < "3.9" # via # hatch.envs.test.py3.8 # pandas -packaging==24.2 +packaging==25.0 # via # plotly # pytest pandas==2.0.3 # via hatch.envs.test.py3.8 -plotly==6.0.1 +plotly==6.1.1 # via dash pluggy==1.5.0 # via pytest @@ -186,7 +186,7 @@ termcolor==2.4.0 # yaspin tomli==2.2.1 # via pytest -typer==0.15.2 +typer==0.15.4 # via hatch.envs.test.py3.8 types-python-dateutil==2.9.0.20241206 # via arrow @@ -195,6 +195,7 @@ typing-extensions==4.13.2 # annotated-types # anyio # dash + # exceptiongroup # jwcrypto # pydantic # pydantic-core diff --git a/requirements/requirements-test.py3.9.txt b/requirements/requirements-test.py3.9.txt index 3368157e6..11b577079 100644 --- a/requirements/requirements-test.py3.9.txt +++ b/requirements/requirements-test.py3.9.txt @@ -37,29 +37,29 @@ arrow==1.3.0 # via hatch.envs.test.py3.9 blinker==1.9.0 # via flask -certifi==2025.1.31 +certifi==2025.4.26 # via # httpcore # httpx # requests cffi==1.17.1 # via cryptography -charset-normalizer==3.4.1 +charset-normalizer==3.4.2 # via requests click==8.1.8 # via # hatch.envs.test.py3.9 # flask # typer -cryptography==44.0.2 +cryptography==45.0.2 # via jwcrypto -dash==3.0.3 +dash==3.0.4 # via # hatch.envs.test.py3.9 # dash-bootstrap-components dash-bootstrap-components==0.13.1 # via hatch.envs.test.py3.9 -exceptiongroup==1.2.2 +exceptiongroup==1.3.0 # via # anyio # pytest @@ -71,7 +71,7 @@ flask==3.0.3 # via dash h11==0.16.0 # via httpcore -httpcore==1.0.8 +httpcore==1.0.9 # via httpx httpx==0.27.2 # via fief-client @@ -80,7 +80,7 @@ idna==3.10 # anyio # httpx # requests -importlib-metadata==8.6.1 +importlib-metadata==8.7.0 # via # dash # flask @@ -102,7 +102,7 @@ mdurl==0.1.2 # via markdown-it-py mock==5.2.0 # via hatch.envs.test.py3.9 -narwhals==1.35.0 +narwhals==1.40.0 # via plotly nest-asyncio==1.6.0 # via dash @@ -110,19 +110,19 @@ numpy==2.0.2 ; python_version >= "3.9" # via # hatch.envs.test.py3.9 # pandas -nvidia-ml-py==12.570.86 +nvidia-ml-py==12.575.51 # via pynvml -packaging==24.2 +packaging==25.0 # via # plotly # pytest pandas==2.2.3 # via hatch.envs.test.py3.9 -plotly==6.0.1 +plotly==6.1.1 # via dash -pluggy==1.5.0 +pluggy==1.6.0 # via pytest -prometheus-client==0.21.1 +prometheus-client==0.22.0 # via hatch.envs.test.py3.9 prompt-toolkit==3.0.51 # via questionary @@ -132,9 +132,9 @@ py-cpuinfo==9.0.0 # via hatch.envs.test.py3.9 pycparser==2.22 # via cffi -pydantic==2.11.3 +pydantic==2.11.5 # via hatch.envs.test.py3.9 -pydantic-core==2.33.1 +pydantic-core==2.33.2 # via pydantic pygments==2.19.1 # via rich @@ -186,21 +186,22 @@ termcolor==2.3.0 # yaspin tomli==2.2.1 # via pytest -typer==0.15.2 +typer==0.15.4 # via hatch.envs.test.py3.9 -types-python-dateutil==2.9.0.20241206 +types-python-dateutil==2.9.0.20250516 # via arrow typing-extensions==4.13.2 # via # anyio # dash + # exceptiongroup # jwcrypto # pydantic # pydantic-core # rich # typer # typing-inspection -typing-inspection==0.4.0 +typing-inspection==0.4.1 # via pydantic tzdata==2025.2 # via pandas