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