diff --git a/IO4/.gitignore b/IO4/.gitignore deleted file mode 100644 index 03f4a3c..0000000 --- a/IO4/.gitignore +++ /dev/null @@ -1 +0,0 @@ -.pio diff --git a/IO4/LICENSE b/IO4/LICENSE deleted file mode 100644 index 678999f..0000000 --- a/IO4/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) 2023 Azalea Gui - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/IO4/esp32-s3-io4.json b/IO4/esp32-s3-io4.json deleted file mode 100644 index 21032c6..0000000 --- a/IO4/esp32-s3-io4.json +++ /dev/null @@ -1,51 +0,0 @@ -{ - "build": { - "arduino":{ - "ldscript": "esp32s3_out.ld", - "memory_type": "qio_qspi" - }, - "core": "esp32", - "extra_flags": [ - "-DARDUINO_ESP32S3_DEV", - "-DARDUINO_USB_MODE=1", - "-DARDUINO_RUNNING_CORE=1", - "-DARDUINO_EVENT_RUNNING_CORE=1" - ], - "f_cpu": "240000000L", - "f_flash": "80000000L", - "flash_mode": "qio", - "hwids": [ - [ - "0x303A", - "0x1001" - ] - ], - "mcu": "esp32s3", - "variant": "esp32s3" - }, - "connectivity": [ - "bluetooth", - "wifi" - ], - "debug": { - "default_tool": "esp-builtin", - "onboard_tools": [ - "esp-builtin" - ], - "openocd_target": "esp32s3.cfg" - }, - "frameworks": [ - "arduino", - "espidf" - ], - "name": "ESP32-S3 IO4 Board (4MB Flash, No PSRAM)", - "upload": { - "flash_size": "4MB", - "maximum_ram_size": 327680, - "maximum_size": 4194304, - "require_upload_port": true, - "speed": 460800 - }, - "url": "https://github.com/hykilpikonna/OpenHardware/tree/main/IO4", - "vendor": "Espressif" -} \ No newline at end of file diff --git a/IO4/include/README b/IO4/include/README deleted file mode 100644 index 194dcd4..0000000 --- a/IO4/include/README +++ /dev/null @@ -1,39 +0,0 @@ - -This directory is intended for project header files. - -A header file is a file containing C declarations and macro definitions -to be shared between several project source files. You request the use of a -header file in your project source file (C, C++, etc) located in `src` folder -by including it, with the C preprocessing directive `#include'. - -```src/main.c - -#include "header.h" - -int main (void) -{ - ... -} -``` - -Including a header file produces the same results as copying the header file -into each source file that needs it. Such copying would be time-consuming -and error-prone. With a header file, the related declarations appear -in only one place. If they need to be changed, they can be changed in one -place, and programs that include the header file will automatically use the -new version when next recompiled. The header file eliminates the labor of -finding and changing all the copies as well as the risk that a failure to -find one copy will result in inconsistencies within a program. - -In C, the usual convention is to give header files names that end with `.h'. -It is most portable to use only letters, digits, dashes, and underscores in -header file names, and at most one dot. - -Read more about using header files in official GCC documentation: - -* Include Syntax -* Include Operation -* Once-Only Headers -* Computed Includes - -https://gcc.gnu.org/onlinedocs/cpp/Header-Files.html diff --git a/IO4/lib/README b/IO4/lib/README deleted file mode 100644 index 6debab1..0000000 --- a/IO4/lib/README +++ /dev/null @@ -1,46 +0,0 @@ - -This directory is intended for project specific (private) libraries. -PlatformIO will compile them to static libraries and link into executable file. - -The source code of each library should be placed in a an own separate directory -("lib/your_library_name/[here are source files]"). - -For example, see a structure of the following two libraries `Foo` and `Bar`: - -|--lib -| | -| |--Bar -| | |--docs -| | |--examples -| | |--src -| | |- Bar.c -| | |- Bar.h -| | |- library.json (optional, custom build options, etc) https://docs.platformio.org/page/librarymanager/config.html -| | -| |--Foo -| | |- Foo.c -| | |- Foo.h -| | -| |- README --> THIS FILE -| -|- platformio.ini -|--src - |- main.c - -and a contents of `src/main.c`: -``` -#include -#include - -int main (void) -{ - ... -} - -``` - -PlatformIO Library Dependency Finder will find automatically dependent -libraries scanning project source files. - -More information about PlatformIO Library Dependency Finder -- https://docs.platformio.org/page/librarymanager/ldf.html diff --git a/IO4/platformio.ini b/IO4/platformio.ini deleted file mode 100644 index 2a41577..0000000 --- a/IO4/platformio.ini +++ /dev/null @@ -1,31 +0,0 @@ -; PlatformIO Project Configuration File -; -; Build options: build flags, source filter -; Upload options: custom upload port, speed and extra flags -; Library options: dependencies, extra library storages -; Advanced options: extra scripting -; -; Please visit documentation for the other options and examples -; https://docs.platformio.org/page/projectconf.html - -;[env:lolin_s2_mini] -;platform = espressif32 -;board = lolin_s2_mini -;framework = arduino -;build_flags = -; -D ARDUINO_USB_MODE=0 -; -D ARDUINO_USB_CDC_ON_BOOT=1 - -;[env:esp32-s3-devkitc-1] -;platform = espressif32 -;board = esp32-s3-devkitc-1 -;framework = arduino -;build_flags = -; -D ARDUINO_USB_CDC_ON_BOOT=1 - -[env:io4] -platform = espressif32 -board = esp32-s3-io4 -framework = arduino -build_flags = - -D ARDUINO_USB_CDC_ON_BOOT=1 diff --git a/IO4/src/main.cpp b/IO4/src/main.cpp deleted file mode 100644 index 14405ff..0000000 --- a/IO4/src/main.cpp +++ /dev/null @@ -1,41 +0,0 @@ -#include -#include -#include "sweets.h" - -#define KEY_COUNT 5 - -USBHIDKeyboard keyboard; -constexpr u8 keys[] = {'1', '2', '3', 'a', 'b'}; -constexpr u8 pins[] = {GPIO_NUM_3, GPIO_NUM_4, GPIO_NUM_5, GPIO_NUM_6, GPIO_NUM_7}; -bool keyStates[KEY_COUNT] = {false}; - -val led_pin = GPIO_NUM_15; - -void setup() -{ - // Set up the GPIO pins - for (val pin : pins) pinMode(pin, INPUT_PULLUP); - pinMode(led_pin, OUTPUT); - - // Set up the USB keyboard - keyboard.begin(); - Serial.begin(); -} - -void loop() -{ - // Check for key presses - for (var i = 0; i < KEY_COUNT; i++) - { - val state = !digitalRead(pins[i]); - - if (state != keyStates[i]) - { - if (state) keyboard.press(keys[i]); - else keyboard.release(keys[i]); - - digitalWrite(led_pin, state); - keyStates[i] = state; - } - } -} diff --git a/IO4/src/sweets.h b/IO4/src/sweets.h deleted file mode 100644 index 9e42c91..0000000 --- a/IO4/src/sweets.h +++ /dev/null @@ -1,15 +0,0 @@ -// -// Created by Azalea on 12/12/23. -// - -#ifndef SWEETS_H -#define SWEETS_H - -#define u8 uint8_t -#define u16 uint16_t -#define u32 uint32_t - -#define val const auto -#define var auto - -#endif //SWEETS_H diff --git a/IO4/test/README b/IO4/test/README deleted file mode 100644 index 9b1e87b..0000000 --- a/IO4/test/README +++ /dev/null @@ -1,11 +0,0 @@ - -This directory is intended for PlatformIO Test Runner and project tests. - -Unit Testing is a software testing method by which individual units of -source code, sets of one or more MCU program modules together with associated -control data, usage procedures, and operating procedures, are tested to -determine whether they are fit for use. Unit testing finds problems early -in the development cycle. - -More information about PlatformIO Unit Testing: -- https://docs.platformio.org/en/latest/advanced/unit-testing/index.html diff --git a/PCData/LICENSE b/PCData/LICENSE deleted file mode 100644 index 678999f..0000000 --- a/PCData/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) 2023 Azalea Gui - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/PCData/README.md b/PCData/README.md deleted file mode 100644 index ce9c4f0..0000000 --- a/PCData/README.md +++ /dev/null @@ -1,38 +0,0 @@ -# PC Data - -This is a project for maximizing the rationality of laptop purchase decisions based on benchmark data. It is currently Canada-only, developed for the boxing day of 2023. - -## Data Sources - -* [CanadaComputers](https://www.canadacomputers.com/) for product information -* [PassMark](https://www.passmark.com/) for cpu benchmark -* [NotebookCheck](https://www.notebookcheck.net/) for gpu benchmark - -## View Results - -There are five results generated for various users groups. They weigh cpu and gpu scores differently in their calculation of the composite benchmark. If you need it for gaming, video editing, or streaming, open the GPU-heavy benchmark. If you are an average student or officer, open the average benchmark. If you are a programmer, open the CPU-heavy benchmark. - -⬇️ GPU-Heavy Side ⬇️ - -* [90% GPU Benchmark](https://hw.hydev.org/PCData/data/computed/canada_computers_laptops_bench_0.1.html) -* [70% GPU Benchmark](https://hw.hydev.org/PCData/data/computed/canada_computers_laptops_bench_0.3.html) -* [50% Average Benchmark](https://hw.hydev.org/PCData/data/computed/canada_computers_laptops_bench_0.5.html) -* [70% CPU Benchmark](https://hw.hydev.org/PCData/data/computed/canada_computers_laptops_bench_0.7.html) -* [90% CPU Benchmark](https://hw.hydev.org/PCData/data/computed/canada_computers_laptops_bench_0.9.html) - -⬆️ CPU-Heavy Side ⬆️ - -## Data Format - -``` -./*.py: Scripts used to crawl / process data -./data/: Data files -- canada_computers_laptops.csv: Product information from CanadaComputers -- passmark/: Benchmark data from PassMark - - cpu.csv: CPU benchmark - - gpu.csv: GPU benchmark (not used) -- notebookcheck/: Benchmark data from NotebookCheck - - mobile-cpu.csv: Mobile CPU data used to obtain integrated GPU - - mobile-gpu.csv: Mobile GPU benchmark -- computed/: Outputs of our analysis -``` diff --git a/PCData/canada_computers.py b/PCData/canada_computers.py deleted file mode 100644 index 6f5da31..0000000 --- a/PCData/canada_computers.py +++ /dev/null @@ -1,146 +0,0 @@ -""" -This file is used to crawl Canada Computers items -""" -import json -import re -from pathlib import Path -from typing import NamedTuple - -import js2py -import pandas as pd -import requests -from bs4 import BeautifulSoup, Tag, ResultSet -from hypy_utils import nlp_utils -from hypy_utils.logging_utils import setup_logger -from hypy_utils.nlp_utils import substr_between -from hypy_utils.tqdm_utils import tmap -from js2py.internals.simplex import JsException - -log = setup_logger() - - -def get_match(pattern: str | re.Pattern, html: str) -> str | None: - """ - Get the first match of a pattern in html - - :param pattern: regex pattern - :param html: html to search in - """ - match = re.search(pattern, html) - if match is None: - return None - return match.group(1) - - -RE_ID = re.compile(r'data-item-id="(\d+)"') - - -class Product(NamedTuple): - id: int - item_id: str - name: str - brand: str - categories: list[str] - price: float - specs: dict[str, str] - - -def crawl_page(url: str, p: int) -> list[Product]: - """ - Crawl a page of Canada Computers items - - :param url: URL of an item listing page - :param p: Page number - :return: list of Product - """ - items = [] - log.info(f"Crawling page {p}") - page = requests.get(url, params={"page": p, "ajax": "true"}) - # We can't use BS4 because the html contains json that is not properly escaped - - # Find productTemplate - products: list[str] = page.text.split("
') - js = f"a = {js}; a" - p = js2py.eval_js(js)['items'][0] - - # Get specs - specs_html = substr_between(product, """
") - specs_html = BeautifulSoup(specs_html, "html.parser") - specs = [li.text.strip().split(":", 1) for li in specs_html.findAll("li")] - specs = {k.strip(): v.strip() for k, v in specs} - - items.append(Product( - id=id, - item_id=p['item_id'], - name=p['item_name'], - brand=p['item_brand'], - categories=[p['item_category'], p['item_category_2'], p['item_category_3'], p['item_category_4']], - price=float(p['price']), - specs=specs - )) - log.debug(f"> Got: {items[-1].name}") - - except ValueError: - log.warning("Failed to parse product") - continue - - except JsException as e: - log.warning(f"JsException: {e}") - continue - - except Exception as e: - log.warning(f"Exception: {e}") - continue - - return items - - -def crawl_url(url: str): - """ - Crawl Canada Computers items - - :param url: url to crawl - """ - file = Path("data/canada_computers_laptops.csv") - - if file.exists(): - return pd.read_csv(file) - - items = [] - i = 0 - batch_size = 20 - while True: - r = list(range(i * batch_size + 1, (i + 1) * batch_size + 1)) - log.info(f"Crawling batch {i}") - - # Get batch - batch = tmap(lambda p: crawl_page(url, p), r, max_workers=10) - - # Flatten - items += [item for sublist in batch for item in sublist] - - # If at least one batch is empty, we are done - if any([len(b) == 0 for b in batch]): - log.info(f"Done at batch {i}") - break - - i += 1 - - file.parent.mkdir(parents=True, exist_ok=True) - df = pd.DataFrame(items) - df.to_csv(file, index=False) - - return items - - -if __name__ == '__main__': - # cPath 710 is laptops - crawl_url("https://www.canadacomputers.com/index.php?cPath=710") diff --git a/PCData/data/canada_computers_laptops.csv b/PCData/data/canada_computers_laptops.csv deleted file mode 100644 index 6d7e7e2..0000000 --- a/PCData/data/canada_computers_laptops.csv +++ /dev/null @@ -1,609 +0,0 @@ -id,item_id,name,brand,categories,price,specs -234878,LPASU00715,"ASUS TUF F15 Gaming Laptop 15.6"" FHD Intel i9-13900H GeForce RTX 4060 16GB 1TB SSD Windows 11 Home, FX507VV-DS91-CA",ASUS,"['Laptops, Tablet', None, None, None]",1499.0,"{'Refresh Rate': '144Hz', 'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB'}" -239821,LPACE00967,"Acer Nitro 5 Gaming Laptop 15.6"" FHD Intel i9-12900H GeForce RTX 4060 16GB 1TB SSD Windows 11 Home, NH.QM0AA.003",ACER,"['Laptops, Tablet', None, None, None]",1299.0,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" -241721,LPLEN03469,"Lenovo Legion Pro 5i Gaming Laptop 16"" QHD+ Intel i7-13700HX GeForce RTX 4060 16GB 512GB Windows 11 Home, 82WK00K7CC",LENOVO,"['Laptops, Tablet', None, None, None]",1499.0,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}" -245321,LPHEW02100,"HP 15-fd0030ca Consumer Laptop 15.6"" FHD Intel i5-1340P 16GB 512GB SSD Windows 11 Home, 8M5P0UA#ABL",HP,"['Laptops, Tablet', None, None, None]",699.0,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" -245308,LPGIG00162,"GIGABYTE G5 KF Gaming Laptop 15.6"" FHD 144Hz Intel i7-12650H GeForce RTX 4060 16GB 512GB SSD Windows 11 Home, G5 KF5-G3US353SH",GIGABYTE,"['Laptops, Tablet', None, None, None]",1099.0,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" -230569,LPHEW01946,"HP ProBook 450 G9 15.6"" Business Notebook Intel i5-1235U 16 GB 256 GB SSD, Windows 11 Pro",HP,"['Laptops, Tablet', None, None, None]",899.0,"{'General InformationManufacturer': 'HP Inc.', 'General InformationManufacturer Part Number': '687P0UT#ABA', 'General InformationManufacturer Website Address': 'http://www.hp.com', 'General InformationBrand Name': 'HP', 'General InformationProduct Line': 'ProBook', 'General InformationProduct Series': '450 G9'}" -241145,LPMSI00572,"MSI Thin GF63 Gaming Laptop 15.6"" FHD Intel i5-12450H GeForce RTX 2050 8GB 512GB SSD Windows 11 Home",MSI,"['Laptops, Tablet', None, None, None]",699.0,"{'GPU': 'GeForce RTX 2050', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '15.6""'}" -243411,LPLEN03502,"LENOVO IdeaPad Slim 3 Consumer Laptop 15.6"" AMD Ryzen 5 7520U 16GB 512GB SSD Windows 11 Home, 82XQ00BECC",LENOVO,"['Laptops, Tablet', None, None, None]",699.0,"{'GPU': 'AMD Radeon 610M', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" -243633,LPACE00980,"ACER Nitro 5 Gaming Laptop 15.6"" 144Hz AMD Ryzen 7 5800H GeForce RTX 3060 16GB 512GB SSD Windows 11 Home",ACER,"['Laptops, Tablet', None, None, None]",999.0,"{'GPU': 'GeForce RTX 3060', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" -240323,LPHEW02049,"HP EliteBook 840 G2 Business Notebook 14"" Touchscreen Core i5-5300U,16 GB DDR3, 256 GB SSD, Windows 10 Professional Refurbished",HP,"['Laptops, Tablet', None, None, None]",269.0,"{'Memory': '16GB', 'Storage Type': 'SSD', 'CPU Brand': 'Intel', 'Product Condition': 'Refurbished', 'Product Condition Short': 'Refurb', 'Screen Resolution Description': 'FHD'}" -243416,LPLEN03503,"Lenovo Legion Slim 7i Gaming Laptop 16"" QHD 240Hz Intel i9-13900H GeForce RTX 4070 32GB 1TB SSD Windows 11 Home, 82Y3007HCC",LENOVO,"['Laptops, Tablet', None, None, None]",2299.0,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '32GB', 'Screen Size': '16""'}" -235073,LPMSI00539,"MSI Katana 15 Gaming Laptop 15.6"" FHD Intel i7-12650H GeForce RTX 4060 16GB 1TB SSD Windows 11 Home, B12VFK-237CA",MSI,"['Laptops, Tablet', None, None, None]",1399.0,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" -243636,LPACE00981,"ACER Aspire 5 Consumer Laptop 15.6"" AMD Ryzen 3 5300U 8GB 256GB SSD Windows 11 S, A515-45-R4RP",ACER,"['Laptops, Tablet', None, None, None]",449.0,"{'GPU': 'AMD Radeon Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 S', 'Memory': '8GB', 'Screen Size': '15.6""'}" -229726,LPASU00666,"Asus Vivobook 16 Laptop 16"" WUXGA AMD Ryzen 5 5600H AMD Radeon Graphics 8GB 512GB SSD Windows 11 Home, M1603QA-RH51-CA",ASUS,"['Laptops, Tablet', None, None, None]",599.0,"{'GPU': 'AMD Radeon Graphics', 'Maximum Resolution': '1920 x 1200', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '16""'}" -239822,LPACE00968,"Acer Nitro 5 Gaming Laptop 15.6"" FHD Intel i5-12450H GeForce RTX 4060 16GB 512GB SSD Windows 11 Home, NH.QM0AA.004",ACER,"['Laptops, Tablet', None, None, None]",1099.0,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" -234397,LPHEW01967,"HP ProBook 440 G9 14"" Business Laptop Intel i5-1235U 16 GB 256 GB SSD, Windows 11 Pro",HP,"['Laptops, Tablet', None, None, None]",749.0,"{'General InformationManufacturer': 'HP Inc.', 'General InformationManufacturer Part Number': '6J8Q6UT#ABA', 'GPU': 'Intel Iris Xe', 'General InformationManufacturer Website Address': 'http://www.hp.com', 'Maximum Resolution': '1920 x 1080', 'General InformationBrand Name': 'HP'}" -239788,LPLEN03438,"Lenovo Legion Pro 5 Gaming Notebook 16"" 165Hz WQXGA AMD Ryzen 7 7745HX GeForce RTX 4070 16GB 512GB SSD Windows 11 Home, 82WM005VCC",LENOVO,"['Laptops, Tablet', None, None, None]",1699.0,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}" -242615,LPLEN03487,"Lenovo ThinkPad E16 Business Laptop 16"" FHD Intel i7-1355U 16GB 512GB SSD Windows 11 Pro, 21JN0073US",LENOVO,"['Laptops, Tablet', None, None, None]",1199.0,"{'Memory': '16GB', 'Model': 'ThinkPad E16', 'Screen Size': '16""', 'Operating System': 'Windows 11 Pro', 'Maximum Resolution': '1920 x 1200', 'Refresh Rate': '60Hz'}" -243491,LPHEW02087,"HP Victus 15-fb0000ca Gaming Laptop 15.6"" 144Hz AMD Ryzen 5 5600H GeForce RTX 3050 Ti 16GB 512GB SSD Windows 11 Home, 89A37UA#ABL",HP,"['Laptops, Tablet', None, None, None]",849.0,"{'GPU': 'GeForce RTX 3050 Ti', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" -239806,LPMSI00564,"MSI Bravo 15 Gaming Laptop 15.6"" FHD AMD Ryzen 7 7735HS GeForce RTX 4060 32GB 1TB SSD Windows 11 Home, C7VFK-057CA",MSI,"['Laptops, Tablet', None, None, None]",1399.0,"{'GPU': 'Ge Force RTX 4060', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '32GB', 'Screen Size': '15.6""'}" -242954,LPLEN03493,"LENOVO Thinkbook T490 Business Laptop 14"" Intel i5-8365U 16GB 256GB SSD Windows 10 Pro Refurbished",LENOVO,"['Laptops, Tablet', None, None, None]",399.0,"{'GPU': 'Intel UHD Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 10 Pro', 'Memory': '16GB', 'Screen Size': '14""'}" -242916,LPASU00786,"ASUS Vivobook 16X Laptop 16"" Intel i5-1235U 8GB 512GB SSD Windows 11 Home, X1605ZA-DB51-CA",ASUS,"['Laptops, Tablet', None, None, None]",649.0,"{'GPU': 'Intel UHD Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '16""'}" -238858,LPHEW02028,"HP Consumer Laptop 15.6"" FHD AMD Ryzen 7 7730U AMD Radeon Graphics 16GB 1TB SSD Windows 11 Home, 15-fc0040ca",HP,"['Laptops, Tablet', None, None, None]",849.0,"{'Memory': '16GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1080p Full HD', 'SSD Capacity': '1TB', 'CPU': 'Ryzen 7 7730U'}" -245318,LPHEW02099,"HP 17-cn3020ca Consumer Laptop 17.3"" FHD Intel i5-1335U 16GB 512GB SSD Windows 11 Home, 8N3T7UA#ABL",HP,"['Laptops, Tablet', None, None, None]",799.0,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '17.3""'}" -248768,LPLEN03685,"Lenovo IdeaPad Slim 3 15AMN8 Laptop 15.6"" FHD AMD Ryzen 3 7320U 8GB 256GB SSD Windows 11 S, 82XQ001JCF",LENOVO,"['Laptops, Tablet', None, None, None]",449.0,"{'GPU': 'AMD Radeon 610M Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 S', 'Memory': '8GB', 'Screen Size': '15.6""'}" -245788,LPLEN03569,"Lenovo V14 Business Laptop 14"" FHD Ryzen 5 5500U 16GB 512GB SSD Windows 11 Pro, 83FG0004US",LENOVO,"['Laptops, Tablet', None, None, None]",699.0,"{'GPU': 'AMD Radeon Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '16GB', 'Screen Size': '14""'}" -239703,LPMSI00553,"MSI Vector GP68HX Gaming Notebook 16"" Intel i9-12900HX GeForce RTX 4080 32GB 1TB SSD Windows 11 Home, 12VH-012CA",MSI,"['Laptops, Tablet', None, None, None]",2499.0,"{'GPU': 'GeForce RTX 4080', 'Maximum Resolution': '1920 x 1200', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '32GB', 'Screen Size': '16""'}" -242479,LPASU00784,"ASUS Vivobook 15 OLED Consumer Laptop 15.6"" AMD Ryzen 7 7730U 16GB 512GB SSD Windows 11 Home, M1505YA-DB71-CA",ASUS,"['Laptops, Tablet', None, None, None]",849.0,"{'GPU': 'AMD Radeon Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" -234953,LPASU00720,"ASUS ROG Strix G17 Gaming Notebook 17.3"" WQHD AMD Ryzen 9 7945HX RTX 4060 16GB 1TB SSD Windows 11 Home, G713PV-DS91-CA",ASUS,"['Laptops, Tablet', None, None, None]",1999.0,"{'GPU': 'RTX\xa04060', 'Maximum Resolution': '2560X1440', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '17.3""'}" -245791,LPMSI00593,"MSI Katana 17 Gaming Laptop 17.3"" 144Hz Intel i7-13620H GeForce RTX 4070 16GB 1TB SSD Windows 11 Home, Katana 17 B13VGK-645CA",MSI,"['Laptops, Tablet', None, None, None]",1799.0,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '17.3""'}" -239779,LPLEN03433,"Lenovo Legion Pro 5 Gaming Laptop 16"" AMD Ryzen 7 7745HX GeForce RTX 4070 16GB 1TB SSD Windows 11 Home, 82WM005YCC",LENOVO,"['Laptops, Tablet', None, None, None]",1799.0,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}" -241425,LPMSI00575,"MSI Modern 15 Consumer Laptop 15.6"" FHD Intel i7-1255U Intel Iris Xe 16GB 512GB SSD Windows 11 Home",MSI,"['Laptops, Tablet', None, None, None]",699.0,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" -237444,LPASU00752,"Asus Vivobook 17 Consumer Notebook 17.3"" FHD Intel i7-1165G7 Intel Iris Xe Graphics 8GB 512GB SSD Windows 11 Home, X712EA-MS72-CA",ASUS,"['Laptops, Tablet', None, None, None]",699.0,"{'GPU': 'Intel Iris Xe Graphics', 'Maximum Resolution': '1080p Full HD', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '17.3""'}" -245636,LPLEN03567,"LENOVO ThinkPad X1 Gen 3 Business Laptop 13"" Detachable (2 in 1) QHD Intel i7-8550U 16GB 256GB SSD Windows 11 Pro Refurbished",LENOVO,"['Laptops, Tablet', None, None, None]",399.0,"{'GPU': 'Intel UHD Graphics 620', 'Maximum Resolution': '3000 x 2000', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Pro', 'Memory': '16GB', 'Screen Size': '13""'}" -234880,LPASU00716,"ASUS TUF F15 Gaming Notebook 15.6"" FHD Intel i7-12700H RTX 3050 16GB 512GB SSD Windows 11 Home, FX507ZC4-DS71-CA",ASUS,"['Laptops, Tablet', None, None, None]",1099.0,"{'GPU': 'RTX\xa03050', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" -229230,LPHEW01929,"HP ProBook 440 G9 14"" Business Laptop FHD Intel Core i5-1235U 8GB RAM 256GB SSD Silver Windows 11 Pro",HP,"['Laptops, Tablet', None, None, None]",599.0,"{'General InformationManufacturer': 'HP Inc.', 'General InformationManufacturer Part Number': '687M8UT#ABA', 'General InformationManufacturer Website Address': 'http://www.hp.com', 'General InformationBrand Name': 'HP', 'General InformationProduct Line': 'ProBook', 'General InformationProduct Series': '440 G9'}" -216029,LPASU00560,"ASUS ExpertBook B1 Business Laptop 14"" Intel i5-1135G7 8GB 256GB SSD Windows 10 Pro, 3YR Warranty, 1YR ADP",ASUS,"['Laptops, Tablet', None, None, None]",799.0,"{'Screen Size': '14""', 'Memory': '8GB', 'Operating System': 'Windows 10 Pro', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '256GB'}" -237316,LPLEN03390,"LENOVO ThinkPad T14 G3 Business Laptop 14"" Touchscreen Ryzen 5 Pro 6650U AMD Radeon 660M 16GB 256GB SSD Windows 10 Pro, 21CF000CUS",LENOVO,"['Laptops, Tablet', None, None, None]",799.0,"{'GPU': 'AMD Radeon 660M', 'Maximum Resolution': '1920 x 1200', 'Touch Screen': 'Yes', 'Operating System': 'Windows 10 Pro', 'Memory': '16GB', 'Screen Size': '14""'}" -244770,LPACE00984,"ACER Aspire 3 Consumer Laptop 15.6"" FHD Intel i5-1235U 16GB 512GB SSD Windows 11 Home, A315-59-59UU",ACER,"['Laptops, Tablet', None, None, None]",699.0,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" -234684,LPASU00707,"ASUS Zenbook OLED Touchscreen Consumer Notebook 14"" WQXGA AMD Ryzen 7 7730U AMD Radeon 16GB 1TB SSD Windows 11 Home, UM3402YAR-DS71T-CA",ASUS,"['Laptops, Tablet', None, None, None]",1199.0,"{'GPU': 'AMD Radeon', 'Maximum Resolution': '2880X1800', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '14""'}" -234408,LPASU00688,"ASUS TUF Gaming F15 Gaming Laptop 15.6"" FHD Intel Core i9-13900H GeForce RTX 4050 16GB 512GB SSD Windows 11 Home, FX507VU-DS91-CA",ASUS,"['Laptops, Tablet', None, None, None]",1399.0,"{'GPU': 'GeForce\xa0RTX\xa04050', 'Maximum Resolution': '1080p Full HD', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" -239785,LPLEN03435,"Lenovo Legion Pro 5 Gaming Laptop 16"" Intel i7-13700HX GeForce RTX 4060 16GB 1TB SSD Windows 11 Home, 82WK00H9CC",LENOVO,"['Laptops, Tablet', None, None, None]",1799.0,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}" -243968,LPLEN03518,"LENOVO Thinkbook T480s Business Notebook 14"" FHD Intel i5-8350U 16GB 256GB SSD Windows 11 Pro, Refurbished",LENOVO,"['Laptops, Tablet', None, None, None]",399.0,"{'GPU': 'Intel UHD Graphics 620', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '16GB', 'Screen Size': '14""'}" -235074,LPMSI00540,"MSI Thin GF63 Gaming Notebook 15.6"" FHD Intel i7-12650H GeForce RTX 4050 16GB 512GB SSD Windows 11 Home, 12VE-033CA",MSI,"['Laptops, Tablet', None, None, None]",1499.0,"{'GPU': 'GeForce RTX 4050', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" -246281,LPLEN03573,"LENOVO ThinkPad T490 Business Laptop 14"" FHD Intel i7-8550U Intel UHD Graphics 620 16GB 256GB SSD Windows 11 Pro, Refurbished",LENOVO,"['Laptops, Tablet', None, None, None]",549.0,"{'GPU': 'Intel UHD Graphics 620', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '16GB', 'Screen Size': '14""'}" -245558,LPLEN03565,"LENOVO Legion Pro 5 16ARX8 Gaming Laptop 16"" 165Hz QHD Ryzen 7 7745HX GeForce RTX 4060 16GB 1TB SSD Windows 11 Home, 82WM005UCC",LENOVO,"['Laptops, Tablet', None, None, None]",1699.0,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}" -243681,LPHUA00042,"HUAWEI Matebook D14 Consumer Laptop 14"" Intel i7-1360P 16GB 1TB SSD Windows 11 Home, 53013VBB",HUAWEI,"['Laptops, Tablet', None, None, None]",999.0,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1200', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '14""'}" -242315,LPHEW02076,"HP Victus Gaming Notebook 16.1"" AMD Ryzen 5 7640HS GeForce RTX 4050 16GB 512GB SSD Windows 11 Home, 7X7B1UA#ABL",HP,"['Laptops, Tablet', None, None, None]",999.0,"{'Memory': '16GB', 'Screen Size': '16.1""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '144Hz', 'SSD Capacity': '512GB'}" -239808,LPMSI00565,"MSI Bravo 15 Gaming Notebook 15.6"" AMD Ryzen 7 7735HS GeForce RTX 4050 16GB 1TB SSD Windows 11 Home, C7VEK-058CA",MSI,"['Laptops, Tablet', None, None, None]",1599.0,"{'GPU': 'GeForce RTX 4050', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" -247065,LPLEN03578,"Lenovo Yoga L390 Business Laptop 13.3"" Touchscreen FHD Intel i5-8365U 16GB 256GB SSD Windows 11 Pro Refurbished",LENOVO,"['Laptops, Tablet', None, None, None]",449.0,"{'GPU': 'Intel® UHD Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Pro', 'Memory': '16GB', 'Screen Size': '13.3""'}" -239726,LPMSI00560,"MSI Thin GF63 Gaming Notebook 15.6"" FHD Intel i5-12450H GeForce RTX 4060 16GB 512GB SSD Windows 11 Home,12VF-275CA",MSI,"['Laptops, Tablet', None, None, None]",1199.0,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" -239720,LPMSI00555,"MSI Stealth 15 Gaming Notebook 15.6"" QHD OLED Intel i9-13900H GeForce RTX 4060 32GB 1TB SSD Windows 11 Home, A13VF-071CA",MSI,"['Laptops, Tablet', None, None, None]",2199.0,"{'Maximum Resolution': '2560 x 1440', 'GPU': 'GeForce RTX 4060', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '32GB', 'Screen Size': '15.6""'}" -234898,LPASU00719,"ASUS ROG Strix Gaming Notebook 17.3"" FHD AMD Ryzen 9 7945HX RTX 4050 16GB 1TB SSD Windows 11 Home, G713PU-DS91-CA",ASUS,"['Laptops, Tablet', None, None, None]",1799.0,"{'GPU': 'RTX\xa04050', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '17.3""'}" -241844,LPASU00782,"ASUS Vivobook Go Consumer Notebook 15.6"" AMD Ryzen 3 7320U 8GB 128GB SSD Windows 11 S, E1504FA-DB31-CA-SL",ASUS,"['Laptops, Tablet', None, None, None]",449.0,"{'GPU': 'AMD Radeon Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 S', 'Memory': '8GB', 'Screen Size': '15.6""'}" -216483,LPASU00581,"Asus ExpertBook B1 15.6"" Business Laptop FHD Intel i5-1135G7 8 GB 256 GB SSD Windows 11 Pro, 3YR Warranty, 1YR ADP",ASUS,"['Laptops, Tablet', None, None, None]",599.0,"{'General InformationManufacturer': 'ASUS Computer International', 'General InformationManufacturer Part Number': 'B1500CEAE-Q53WP-CB', 'General InformationManufacturer Website Address': 'http://www.asus.com', 'General InformationBrand Name': 'Asus', 'General InformationProduct Line': 'ExpertBook B1', 'General InformationProduct Series': 'B1500'}" -234968,LPASU00724,"ASUS ROG Zephyrus Gaming Notebook 16"" WQXGA Intel i9-13900H GeForce RTX 4070 32GB 1TB SSD Windows 11 Home, GU604VI-DS92-CA",ASUS,"['Laptops, Tablet', None, None, None]",2499.0,"{'Refresh Rate': '240Hz', 'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '2560X1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '32GB'}" -238751,LPASU00760,"ASUS Vivobook 16X Gaming Laptop 16"" WUXGA Intel i9-13900H Geforce RTX 4050 16GB 512GB SSD Windows 11 Home, K3605VU-DS91-CA",ASUS,"['Laptops, Tablet', None, None, None]",1699.0,"{'GPU': 'Geforce RTX 4050', 'Maximum Resolution': '1920 x 1200', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}" -238748,LPHEW02023,"HP Consumer Notebook 14"" FHD AMD Ryzen 5 7520U AMD Radeon Graphics 8GB 512GB SSD Windows 11 Home, 14-em0040ca",HP,"['Laptops, Tablet', None, None, None]",599.0,"{'Memory': '8GB', 'Screen Size': '14""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': 'FHD', 'SSD Capacity': '512GB', 'CPU': 'Ryzen 5 7520U'}" -235326,LPHEW01997,"HP ENVY X360 13.3"" OLED Touchscreen 2 in 1 Laptop QHD i7-1250U 16GB 1TB SSD Windows 11 Home, 6J0Q0UA#ABL",HP,"['Laptops, Tablet', None, None, None]",1299.0,"{'Memory': '16GB', 'Screen Size': '13.3""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '2880 x 1800', 'Refresh Rate': '60Hz', 'SSD Capacity': '1TB'}" -234958,LPASU00721,"ASUS ROG Strix Gaming Notebook 17.3"" WQHD AMD Ryzen 9 7945HX RTX 4080 32GB 1TB SSD Windows 11 Pro, G733PZ-XS96",ASUS,"['Laptops, Tablet', None, None, None]",3499.0,"{'GPU': 'RTX\xa04080', 'Maximum Resolution': 'WQHD', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '32GB', 'Screen Size': '17.3""'}" -240054,LPASU00770,"ASUS ROG Zephyrus G14 Gaming Notebook 14"" QHD AMD Ryzen 9 7940HS GeForce RTX 4080 16GB 1TB SSD Windows 11 Home, GA402XZ-CS94",ASUS,"['Laptops, Tablet', None, None, None]",2999.0,"{'GPU': 'GeForce RTX 4080', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '14""'}" -201084,LPASU00500,"Asus ExpertBook B1 14"" Laptop Intel i5 1135G7 8 GB 256 GB SSD Windows 10 Home, B1400CEAE-Q51H-CB",ASUS,"['Laptops, Tablet', None, None, None]",549.0,"{'General InformationManufacturer': 'ASUS Computer International', 'General InformationManufacturer Part Number': 'B1400CEAE-Q51H-CB', 'General InformationManufacturer Website Address': 'http://www.asus.com', 'General InformationBrand Name': 'Asus', 'General InformationProduct Line': 'ExpertBook B1', 'General InformationProduct Series': 'B1400'}" -216700,LPASU00590,"ASUS Vivobook 14 Flip Notebook, 14"" FHD touch Screen, Intel Celeron N4500, Intel UHD Graphics, 4GB DDR4, 128GB SSD, Win11 Home, J1400KA-DS01T-CA",ASUS,"['Laptops, Tablet', None, None, None]",499.0,"{'Notebook Type': 'Consumer', 'Notebook Chassis': 'Convertible (2 in 1)', 'Screen Size': '14""', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'CPU': 'Intel Celeron N4500'}" -238836,LPASU00763,"ASUS Vivobook S 16 Flip Consumer Notebook 16"" WUXGA Intel i5-1335U Intel HD Graphics 16GB 512GB SSD Windows 11 Home, TP3604VA-DS51T-CA",ASUS,"['Laptops, Tablet', None, None, None]",949.0,"{'Refresh Rate': '60Hz', 'GPU': 'Intel HD Graphics', 'Maximum Resolution': '1920 x 1200', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Home', 'Memory': '16GB'}" -244726,LPASU00800,"ASUS Vivobook S 15 OLED BAPE Edition Consumer Notebook 15.6"" QHD+ Intel i9-13900H 16GB 1TB SSD Windows 11 Home, K5504VA-DB91-CA-BAPE",ASUS,"['Laptops, Tablet', None, None, None]",1599.0,"{'GPU': 'Intel UHD Graphics', 'Maximum Resolution': '2880 x 1620', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" -243074,LPASU00787,"ASUS TUF Gaming Notebook 15.6"" 144Hz Intel i5-11400H GeForce RTX 3050 8GB 512GB SSD Windows 11 Home, FX506HCB-DB59-CA",ASUS,"['Laptops, Tablet', None, None, None]",799.0,"{'GPU': 'GeForce RTX 3050', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '15.6""'}" -246436,LPASU00808,"ASUS TUF Gaming F15 Gaming Laptop 15.6"" FHD 144Hz Intel i7-11800H GeForce RTX 3050 Ti 16GB 1TB SSD Windows 11 Home, FX506HE-EH74",ASUS,"['Laptops, Tablet', None, None, None]",999.0,"{'GPU': 'GeForce RTX 3050 Ti', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" -234939,LPGIG00145,"Gigabyte AORUS 17X Gaming Notebook 17.3"" QHD Intel Core i9-13900HX GeForce RTX 4080 16GB 1TB SSD Windows 11 Pro, AXF-B4US694SP",GIGABYTE,"['Laptops, Tablet', None, None, None]",2999.0,"{'GPU': 'GeForce RTX 4080', 'Maximum Resolution': '2560x1440', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '16GB', 'Screen Size': '17.3""'}" -241534,LPMSI00580,"MSI Pulse 17 Gaming Notebook 17.3"" Intel i9-13900H GeForce RTX 4070 16GB 1TB SSD Windows 11 Home, B13VGK-619CA",MSI,"['Laptops, Tablet', None, None, None]",1999.0,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '17.3""'}" -236109,LPGIG00151,"Gigabyte AORUS 15 Gaming Notebook 15.6"" QHD Intel i7-13700H GeForce RTX 4070 16GB 1TB SSD Windows 11 Home, BSF-73US754SH",GIGABYTE,"['Laptops, Tablet', None, None, None]",1899.0,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '2560 x 1440', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" -234951,LPGIG00146,"Gigabyte AORUS 17H Gaming Notebook 17.3"" FHD Intel i7-13700H RTX 4080 16GB 1TB SSD Windows 11 Home, BXF-74US554SH",GIGABYTE,"['Laptops, Tablet', None, None, None]",2499.0,"{'GPU': 'RTX 4080', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '17.3""'}" -249823,LPMSI00598,"MSI Prestige 16 AI EVO Laptop 16"" QHD+ OLED Intel Core Ultra 7-155H Intel Arc Graphics 16GB 1TB SSD Windows 11 Home, B1MG-006CA",MSI,"['Laptops, Tablet', None, None, None]",1899.0,"{'GPU': 'Intel Arc Graphics', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}" -243952,LPLEN03517,"Lenovo ThinkPad X1 Carbon EVO 14"" Touchscreen Ultrabook WUXGA Intel i7-1365U 32GB RAM 512GB SSD Windows 11 Pro 21HM000SUS",LENOVO,"['Laptops, Tablet', None, None, None]",1999.0,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '21HM000SUS', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'ThinkPad', 'General InformationProduct Series': 'X1 Carbon Gen 11'}" -234980,LPASU00729,"ASUS Zephyrus Duo Gaming Notebook 16"" WQXGA AMD Ryzen 9 7945HX RTX 4080 32GB 1TB SSD Windows 11 Pro, GX650PZ-XS96",ASUS,"['Laptops, Tablet', None, None, None]",3999.0,"{'GPU': 'RTX\xa04080', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '32GB', 'Screen Size': '16""'}" -224436,LPLEN03010,"Lenovo ThinkBook 14 G4 14"" Touchscreen Business Laptop Intel i7-1255U 16 GB 512 GB Windows 11 Pro, 21DH000VUS",LENOVO,"['Laptops, Tablet', None, None, None]",1099.0,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '21DH000VUS', 'GPU': 'Intel', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'Maximum Resolution': '1080p Full HD', 'General InformationBrand Name': 'Lenovo'}" -243731,LPMSI00591,"MSI Stealth 16 AMG Gaming Notebook 16"" OLED UHD Intel i9-13900H GeForce RTX 4070 32GB 2TB SSD Windows 11 Pro, A13VG-237CA",MSI,"['Laptops, Tablet', None, None, None]",3499.0,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '3840 x 2400', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '32GB', 'Screen Size': '16""'}" -247961,LPACE00994,"ACER Vero Laptop 15.6"" FHD Intel i7-1255U Intel Iris Xe Graphics 16GB 1TB SSD Windows 11 Home, Open Box, AV15-52-791N",ACER,"['Laptops, Tablet', None, None, None]",799.0,"{'GPU': 'Intel Iris Xe Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" -243093,LPHEW02083,"HP EliteBook 640 G9 Business Notebook 14"" Intel i5-1245U 16GB 512GB SSD Windows 11 Pro, 6C0Z2UT#ABL",HP,"['Laptops, Tablet', None, None, None]",1195.9599990845,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '16GB', 'Screen Size': '14""'}" -238118,LPLGE00032,"LG Gram EVO Consumer Notebook 16"" WQXGA Intel i7-1360P Intel Iris Xe 16GB 512GB SSD Windows 11 Home, 16Z90R-K.AA75A9",LG,"['Laptops, Tablet', None, None, None]",1499.0,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}" -221451,LPLEN02908,"Lenovo ThinkBook 14 G4 ABA 14"" Business Laptop AMD Ryzen 7 5825U 16 GB 512 GB Windows 11 Pro, 21DK000LUS",LENOVO,"['Laptops, Tablet', None, None, None]",799.0,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '21DK000LUS', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'ThinkBook', 'General InformationProduct Series': '14 G4 ABA'}" -246185,LPLEN03572,"LENOVO Legion Pro 7 16IRX8H Laptop 16"" QHD Intel i9-13900HX GeForce RTX 4090 32GB 2TB SSD Windows 11 Pro, 82WQ00AAUS",LENOVO,"['Laptops, Tablet', None, None, None]",4799.0,"{'GPU': 'GeForce RTX 4090', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '32GB', 'Screen Size': '16""'}" -234966,LPASU00723,"ASUS ROG Zephyrus Gaming Notebook 14"" WUXGA AMD Ryzen 7 7735HS RTX 3050 16GB 512GB SSD Windows 11 Home, GA402NJ-DS71-CA",ASUS,"['Laptops, Tablet', None, None, None]",1799.0,"{'GPU': 'RTX\xa03050', 'Maximum Resolution': '1920X1200', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '14""'}" -234853,LPMSI00535,"MSI Stealth 17 Gaming Notebook 17.3"" QHD Intel i9-13900H GeForce RTX 4090 64GB 2TB SSD Windows 11 Pro, A13VI-017US",MSI,"['Laptops, Tablet', None, None, None]",4399.0,"{'GPU': 'GeForce RTX 4090', 'Maximum Resolution': '2560x1440', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '64GB', 'Screen Size': '17.3""'}" -247061,LPLEN03577,"Lenovo ThinkPad T480 Business Laptop 14"" FHD Intel i5-8365U 16GB 512GB SSD Windows 10 Pro Refurbished",LENOVO,"['Laptops, Tablet', None, None, None]",499.0,"{'GPU': 'Intel® UHD Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 10 Pro', 'Memory': '16GB', 'Screen Size': '14""'}" -245326,LPHEW02101,"HP 14-ep0000ca Consumer Notebook 14"" FHD Intel i3-N305 8GB 256GB SSD Windows 11 Home, 8M5K7UA#ABL",HP,"['Laptops, Tablet', None, None, None]",549.0,"{'GPU': 'Intel UHD Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '14""'}" -243100,LPLEN03497,"Lenovo ThinkPad X1 Carbon 14"" EVO WUXGA Ultrabook Intel i5-1335U 16GB RAM 256GB SSD Deep Black Windows 11 Pro, 21HM000GUS",LENOVO,"['Laptops, Tablet', None, None, None]",1399.0,"{'GPU': 'Intel', 'Maximum Resolution': 'Others', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '16GB', 'Screen Size': '14""'}" -238753,LPASU00762,"ASUS Vivobook Slate Consumer Notebook 13.3"" OLED Intel Pentium Silver Processor N6000 Intel UHD Graphics 8GB 128GB SSD Windows 11 S, T3300KA-DS92T-CA",ASUS,"['Laptops, Tablet', None, None, None]",599.0,"{'GPU': 'Intel UHD Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 S', 'Memory': '8GB', 'Screen Size': '13.3""'}" -238120,LPLGE00033,"LG Gram EVO Consumer Notebook 17"" WQXGA Intel i7-1360P Intel Iris Xe 16GB 512GB SSD Windows 11 Home,17Z90R-K.AA75A9",LG,"['Laptops, Tablet', None, None, None]",1599.0,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '17""'}" -234881,LPASU00717,"ASUS ROG Strix Gaming Notebook 16"" FHD Intel i7-13650HX RTX 3050 16GB 1TB SSD Windows 11 Home, G614JJ-DS71-CA",ASUS,"['Laptops, Tablet', None, None, None]",1599.0,"{'GPU': 'RTX 3050', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}" -237090,LPACE00960,"ACER Predator Helios Gaming Notebook 16"" QHD Intel i7-13700HX GeForce RTX 4070 16GB 1TB SSD Windows 11 Home, PH16-71-72YG",ACER,"['Laptops, Tablet', None, None, None]",1999.0,"{'GPU': 'GeForce RTX 4070', 'Refresh Rate': '240Hz', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11', 'Memory': '16GB'}" -225212,LPLEN03055,"Lenovo ThinkBook 15 G4 15.6"" Touchscreen Business Notebook, FHD, Intel Core i5-1235U, 16GB RAM, 256GB SSD, Mineral Gray Windows 11 Pro",LENOVO,"['Laptops, Tablet', None, None, None]",899.0,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '21DJ000XUS', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'ThinkBook', 'General InformationProduct Series': '15 G4 IAP'}" -241937,LPLEN03476,"Lenovo ThinkBook 14s Yoga G3 14"" Touchscreen Convertible Laptop Intel Core i7-1355U 16GB RAM 512GB SSD Windows 11 Pro, 21JG001GCA",LENOVO,"['Laptops, Tablet', None, None, None]",1379.9599990845,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '21JG001GCA', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'ThinkBook', 'General InformationProduct Series': '14s Yoga G3 IRU'}" -241934,LPLEN03474,"Lenovo ThinkPad E16 16"" Business Notebook Intel i5-1335U 16 GB 256 GB SSD Windows 11 Pro, 21JN003YUS",LENOVO,"['Laptops, Tablet', None, None, None]",1299.0,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '21JN003YUS', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'ThinkPad', 'General InformationProduct Series': 'E16 Gen 1'}" -239693,LPMSI00548,"MSI Vector GP78 HX Gaming Notebook 17"" QHD Intel i9-13950HX GeForce RTX 4080 32GB 1TB SSD Windows 11 Home .",MSI,"['Laptops, Tablet', None, None, None]",3499.0,"{'GPU': 'GeForce RTX 4080', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '32GB', 'Screen Size': '17""'}" -235429,LPASU00736,"ASUS ROG Zephyrus Gaming Notebook 16"" WQXGA Intel i9-13900H RTX 4090 32GB 2TB SSD Windows 11 Pro, GU604VY-XS97",ASUS,"['Laptops, Tablet', None, None, None]",4199.0,"{'GPU': 'GeForce RTX 4090', 'Maximum Resolution': '2560X1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '32GB', 'Screen Size': '16""'}" -249839,LPLEN03710,"Lenovo ThinkPad T14 Business Laptop 14"" FHD Intel i5-10310U 16GB 512GB SSD Windows 10 Pro Refurbished, 20S1S4R500",LENOVO,"['Laptops, Tablet', None, None, None]",649.0,"{'GPU': 'Intel UHD Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 10 Pro', 'Memory': '16GB', 'Screen Size': '14""'}" -239889,LPHEW02036,"HP Omen 17-ck2000ca Gaming Notebook 17.3"" QHD Intel i9-13900HX GeForce RTX 4090 32GB 2TB SSD Windows 11 Home",HP,"['Laptops, Tablet', None, None, None]",3999.0,"{'GPU': 'GeForce RTX 4090', 'Maximum Resolution': '2560 x 1440', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '32GB', 'Screen Size': '17.3""'}" -249845,LPLEN03712,"Lenovo Yoga L390 Business convertible Laptop 13.3"" Touchscreen FHD Intel i5-8365U 16GB 256GB SSD Windows 11 Pro Refurbished",LENOVO,"['Laptops, Tablet', None, None, None]",549.0,"{'GPU': 'Intel® UHD Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Pro', 'Memory': '16GB', 'Screen Size': '13.3""'}" -249843,LPLEN03711,"Lenovo X1 Carbon Business Laptop 14"" FHD Intel i7-8665U 16GB 256GB SSD Windows 10 Pro Refurbished,",LENOVO,"['Laptops, Tablet', None, None, None]",649.0,"{'GPU': 'Intel UHD Graphics 620', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 10 Pro', 'Memory': '16GB', 'Screen Size': '14""'}" -249484,LPACE00999,"ACER Predator Triton X Gaming Laptop 17"" QHD Mini-LED 250Hz Intel i9-13900HX GeForce RTX 4090 64GB 2TB SSD Windows 11 Home, PTX17-71-99W5",ACER,"['Laptops, Tablet', None, None, None]",4999.0,"{'GPU': 'GeForce RTX 4090', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '64GB', 'Screen Size': '17""'}" -248458,LPLEN03611,"Lenovo ThinkBook 14 G6 ABP 21KJ000EUS 14"" Touchscreen Notebook - WUXGA - 1920 x 1200 - AMD Ryzen 7 7730U Octa-core (8 Core) 2 GHz - 16 GB Total RAM - 512 GB SSD - Arctic Gray - AMD Chip - Windows 11 Pro - AMD Radeon Graphics - In-plane Switching (IPS) Tec",LENOVO,"['Laptops, Tablet', None, None, None]",899.0,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '21KJ000EUS', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'ThinkBook', 'General InformationProduct Series': '14 G6 ABP', 'General InformationProduct Model': '21KJ000EUS'}" -248439,LPLEN03602,"Lenovo ThinkBook G6 16"" Business Laptop WUXGA 1920x1200 Intel Core i5-1335U 16GB RAM 256GB SSD Windows 11 Pro 21KH0005US",LENOVO,"['Laptops, Tablet', None, None, None]",1119.2,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '21KH0005US', 'Memory': '16GB', 'General InformationBrand Name': 'Lenovo', 'Screen Size': '16""', 'General InformationProduct Line': 'ThinkBook'}" -248434,LPLEN03600,"Lenovo ThinkBook 16 G6 ABP 21KK0009US 16"" Touchscreen Notebook - WUXGA - 1920 x 1200 - AMD Ryzen 5 7530U Hexa-core (6 Core) 2 GHz - 16 GB Total RAM - 512 GB SSD - Arctic Gray - AMD Chip - Windows 11 Pro - AMD Radeon Graphics - In-plane Switching (IPS) Tec",LENOVO,"['Laptops, Tablet', None, None, None]",999.0,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '21KK0009US', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'ThinkBook', 'General InformationProduct Series': '16 G6 ABP', 'General InformationProduct Model': '21KK0009US'}" -243931,LPLEN03508,"Lenovo ThinkPad E14 Gen 5 21JR001QUS 14"" Notebook - WUXGA - 1920 x 1200 - AMD Ryzen 5 7530U Hexa-core (6 Core) 2 GHz - 8 GB Total RAM - 8 GB On-board Memory - 256 GB SSD - Graphite Black - AMD Chip - Windows 11 Pro - AMD Radeon Graphics - In-plane Switchi",LENOVO,"['Laptops, Tablet', None, None, None]",1061.69,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '21JR001QUS', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'ThinkPad', 'General InformationProduct Series': 'E14 Gen 5', 'General InformationProduct Model': '21JR001QUS'}" -238114,LPLGE00031,"LG Gram EVO Consumer Notebook 15.6"" FHD Intel i7-1360P Intel Iris Xe 16GB 512GB SSD Windows 11 Home, 15Z90R-P.AA75A9",LG,"['Laptops, Tablet', None, None, None]",1599.99,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" -238112,LPLGE00030,"LG Gram Consumer Notebook 14"" WUXGA Intel i7-1360P Intel Iris Xe 16GB 512GB SSD Windows 11 Home, 14Z90R-K.AA75A9",LG,"['Laptops, Tablet', None, None, None]",1599.0,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1200', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '14""'}" -231254,LPLEN03221,"Lenovo ThinkPad L13 Yoga 13.3"" Touchscreen Convertible 2 in 1 Laptop WUXGA Intel Core i7-1255U 16GB 512GB SSD Storm Gray Windows 11 Pro 21B5003XUS",LENOVO,"['Laptops, Tablet', None, None, None]",1299.0,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '21B5003XUS', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'ThinkPad', 'General InformationProduct Series': 'L13 Yoga Gen 3'}" -223345,LPLEN02956,"Lenovo ThinkBook 14 G4 ABA 14"" Business Notebook AMD Ryzen 5 5625U 16 GB 256 GB Windows 11 Pro, 21DK000JUS",LENOVO,"['Laptops, Tablet', None, None, None]",699.0,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '21DK000JUS', 'Memory': '16GB', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'Screen Size': '14""', 'General InformationBrand Name': 'Lenovo'}" -221960,LPHEW01833,"HP EliteBook 650 G9 15.6"" Business Notebook Intel i5-1245U 16 GB 256 GB SSD Windows 10 Professional, 6C0Z6UT#ABA",HP,"['Laptops, Tablet', None, None, None]",1103.9599990845,"{'General InformationManufacturer': 'HP Inc.', 'General InformationManufacturer Part Number': '6C0Z6UT#ABA', 'General InformationManufacturer Website Address': 'http://www.hp.com', 'General InformationBrand Name': 'HP', 'General InformationProduct Line': 'EliteBook', 'General InformationProduct Series': '650 G9'}" -221903,LPLGE00028,"LG Gram EVO Ultra-Lightweight Notebook , 16"" WQXGA, Intel i7-1260P, Intel Iris Xe Graphics, 16GB, 512GB SSD, Windows 11 Home, 16T90Q-K.AA75A9",LG,"['Laptops, Tablet', None, None, None]",1619.88,"{'Notebook Type': 'Consumer', 'Notebook Chassis': 'Thin and Light', 'Screen Size': '16""', 'Maximum Resolution': '2560 x 1600', 'Refresh Rate': '60Hz', 'CPU': 'i7-1260P'}" -203384,LPSAS00092,"Samsung Galaxy Tab S7 FE Tablet - 12.4"" WQXGA Cortex 6 GB 128 GB Mystic Black",SAMSUNG,"['Laptops, Tablet', None, None, None]",699.0,"{'General InformationManufacturer': 'Samsung', 'General InformationManufacturer Part Number': 'SM-T733NZKEXAC', 'General InformationBrand Name': 'Samsung', 'General InformationProduct Line': 'Galaxy Tab S7 FE', 'General InformationProduct Model': 'SM-T733', 'General InformationProduct Name': 'Galaxy Tab S7 FE (Wi-Fi)'}" -235970,LPGIG00147,"Gigabyte G5 Gaming Laptop 15.6"" FHD, Intel i5-12500H, GeForce RTX 4060, 8GB RAM, 512GB SSD, Windows 11 Home, G5 KF-E3US333SH",GIGABYTE,"['Laptops, Tablet', None, None, None]",999.0,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '1080p Full HD', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '15.6""'}" -241481,LPCHP00003,"HP Elitebook 840 G3 Business Laptop 14"" Touchscreen Intel i5-6300U 16GB 256GB SSD Windows 10 Pro Refurbished",HP,"['Laptops, Tablet', None, None, None]",299.0,"{'GPU': 'Intel HD Graphics 520', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'Yes', 'Operating System': 'Windows 10 Pro', 'Memory': '16GB', 'Screen Size': '14""'}" -239725,LPMSI00559,"MSI Thin GF63 Gaming Laptop 15.6"" Intel i7-12650H GeForce RTX 4060 16GB 512GB SSD Windows 11 Home, 12VF-274CA",MSI,"['Laptops, Tablet', None, None, None]",1199.0,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" -244218,LPHEW02095,"HP Victus 15-fb1010ca Gaming Laptop 15.6"" AMD Ryzen 5 7535HS GeForce RTX 2050 8GB 512GB SSD Windows 11 Home, 8G9J1UA#ABL",HP,"['Laptops, Tablet', None, None, None]",699.0,"{'GPU': 'GeForce RTX 2050', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '15.6""'}" -234149,LPASU00685,"ASUS VivoBook 14"" Laptop FHD Intel Core i3-1115G4 Intel UHD Graphics 4GB 128GB SSD Windows 11 Home S, F415EA-AS31",ASUS,"['Laptops, Tablet', None, None, None]",299.0,"{'GPU': 'Intel UHD Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home S', 'Memory': '4GB', 'Screen Size': '14""'}" -244755,LPLEN03559,"LENOVO ThinkPad T590 Business Laptop 15.6"" FHD Intel i5-8365U Intel UHD Graphics 620 16GB 512GB SSD Windows 10 Pro Refurbished",LENOVO,"['Laptops, Tablet', None, None, None]",499.0,"{'GPU': 'Intel UHD Graphics 620', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 10 Pro', 'Memory': '16GB', 'Screen Size': '15.6""'}" -244918,LPACE00985,"Acer Swift 3 EVO 14"" Laptop FHD Intel i5-1240P 16GB 512GB SSD Windows 11 Home,",ACER,"['Laptops, Tablet', None, None, None]",699.0,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '14""'}" -244027,LPCNO00061,"ASUS Vivobook F Series Laptop 15.6"" FHD Intel i5-1135G7 8GB 256GB SSD Windows 11 Home, F1500EA-WB51",ASUS,"['Laptops, Tablet', None, None, None]",597.95999908447,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '15.6""'}" -226088,LPASU00658,"ASUS ZenBook 14 Consumer Notebook 14"" FHD AMD Ryzen 5 5600H AMD Radeon Vega 7 8GB 512GB SSD Windows 11 Home, UM425QA-EH59-CA",ASUS,"['Laptops, Tablet', None, None, None]",699.0,"{'Memory': '8GB', 'Screen Size': '14""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}" -239777,LPLEN03432,"LENOVO IdeaPad Flex 5 Consumer Notebook 16"" Touchscreen AMD Ryzen 5 7530U 16GB 512GB SSD Windows 11 Home, 82XY005ACC",LENOVO,"['Laptops, Tablet', None, None, None]",849.0,"{'GPU': 'AMD Radeon Graphics', 'Refresh Rate': '60Hz', 'Maximum Resolution': '1920 x 1200', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Home', 'Memory': '16GB'}" -214186,LPHUA00035,"HUAWEI Matebook 14 Notebook, 14"", 2160 x 1440, Touch Screen, Intel Core i5-1135G7, Intel Iris Xe Graphics, 16GB, 512GB SSD, Windows 11 Home, 53012STE",HUAWEI,"['Laptops, Tablet', None, None, None]",699.88,"{'Screen Resolution Description': 'QHD', 'Memory': '16GB', 'Screen Size': '14""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '2160 x 1440', 'Refresh Rate': '60 Hz'}" -244384,LPLEN03552,"LENOVO X1 Yoga G4 Business Notebook 14"" FHD Intel i5-8265U 16GB 512GB SSD Windows 10 Pro, Pen Included, Refurbished",LENOVO,"['Laptops, Tablet', None, None, None]",499.0,"{'GPU': 'Intel UHD Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'Yes', 'Operating System': 'Windows 10 Pro', 'Memory': '16GB', 'Screen Size': '14""'}" -242776,LPASU00785,"ASUS TUF Gaming Notebook 17.3"" 144Hz Intel i5-11400H GeForce RTX 2050 8GB 512GB SSD Windows 11 Home, FX706HF-DB51-CA",ASUS,"['Laptops, Tablet', None, None, None]",799.0,"{'Memory': '8GB', 'Screen Size': '17.3""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '144Hz', 'SSD Capacity': '512GB'}" -246774,LPASU00809,"ASUS ROG Strix G16 Gaming Laptop 16"" QHD Intel i9-13980HX GeForce RTX 4060 16GB 1TB SSD Windows 11 Home, G614JV-DB91-CA",ASUS,"['Laptops, Tablet', None, None, None]",1799.0,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}" -229248,LPLEN03130,"Lenovo Consumer Laptop 15.6"" FHD AMD Ryzen 5 5625U AMD Radeon Graphics 12GB 512GB SSD Windows 11 Home, 82RN0015CC",LENOVO,"['Laptops, Tablet', None, None, None]",699.88,"{'Memory': '12GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}" -238746,LPHEW02021,"HP Consumer Laptop 14"" FHD AMD Ryzen 3 7320U, Radeon Graphics, 8GB RAM, 256GB SSD, Windows 11 Home, 14-em0030ca",HP,"['Laptops, Tablet', None, None, None]",499.0,"{'Memory': '8GB', 'Model': '14-em0030ca', 'Screen Size': '14""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': 'FHD', 'SSD Capacity': '256GB'}" -221455,LPHEW01822,"HP ProBook 450 G9 15.6"" Business Notebook Intel i7-1255U 16GB 512GB SSD Windows 10 Pro, 687P3UT#ABA",HP,"['Laptops, Tablet', None, None, None]",999.0,"{'General InformationManufacturer': 'HP Inc.', 'General InformationManufacturer Part Number': '687P3UT#ABA', 'General InformationManufacturer Website Address': 'http://www.hp.com', 'General InformationBrand Name': 'HP', 'General InformationProduct Line': 'ProBook', 'General InformationProduct Series': '450 G9'}" -241155,LPLEN03456,"Lenovo IdeaPad Consumer Notebook 14"" FHD Intel i5-1135G7 8GB 512GB SSD Windows 11 Home, 81X700FXUS",LENOVO,"['Laptops, Tablet', None, None, None]",549.0,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '14""'}" -245452,LPLEN03564,"LENOVO ThinkPad X1 Business Notebook 13.3"" Detachable (2 in 1) QHD Intel i7-8650U 16GB 256GB SSD Windows 10 Pro Refurbished",LENOVO,"['Laptops, Tablet', None, None, None]",549.0,"{'GPU': 'Intel UHD Graphics 620', 'Maximum Resolution': '3000 x 2000', 'Touch Screen': 'Yes', 'Operating System': 'Windows 10 Pro', 'Memory': '16GB', 'Screen Size': '13.3""'}" -238839,LPASU00765,"ASUS Zenbook S 13 OLED EVO Laptop 13.3"" Intel i7-1355U 16GB 1TB SSD Windows 11 Home, UX5304VA-DS71-CA",ASUS,"['Laptops, Tablet', None, None, None]",1299.0,"{'GPU': 'Intel Iris Xe', 'Refresh Rate': '60Hz', 'Maximum Resolution': '2880 x 1800', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB'}" -238601,LPHEW02017,"HP Pavilion Consumer Notebook 15.6"" FHD Intel i5-1240P Intel Iris Xe 8GB 512GB SSD Windows 11 Home, 15-EG2002CA",HP,"['Laptops, Tablet', None, None, None]",630.88000488281,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': 'FHD', 'SSD Capacity': '512GB', 'CPU': 'i5-1240P'}" -223242,LPMSI00496,"MSI GF63 Gaming Notebook 15.6"" FHD Intel i5-11400H RTX3050 8GB 512GB SSD Windows 11 Home,GF63 11UC-692",MSI,"['Laptops, Tablet', None, None, None]",799.0,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '144Hz', 'SSD Capacity': '512GB'}" -239775,LPLEN03430,"Lenovo IdeaPad Slim 3 15.6"" Laptop AMD Ryzen 7 7730U 8GB 512GB SSD Windows 11 Home, 82XM007NCC",LENOVO,"['Laptops, Tablet', None, None, None]",599.88,"{'GPU': 'AMD Radeon Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '15.6""'}" -242888,LPHEW02079,"HP Victus 16 Gaming Notebook 16.1"" AMD Ryzen 7 7840HS GeForce RTX 4060 16GB 1TB SSD Windows 11 Home, 7X7B2UA#ABL",HP,"['Laptops, Tablet', None, None, None]",1199.0,"{'Memory': '16GB', 'Screen Size': '16.1""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '144Hz', 'SSD Capacity': '1TB'}" -239786,LPLEN03436,"Lenovo Legion Pro 5 Gaming Notebook 16"" WQXGA Intel i7-13700HX GeForce RTX 4070 16GB 1TB SSD Windows 11 Home, 82WK00H8CC",LENOVO,"['Laptops, Tablet', None, None, None]",2199.0,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}" -237086,LPACE00956,"Acer Nitro 5 Gaming Notebook 15.6"" FHD Intel i7-12650H GeForce RTX 4060 16GB 512GB SSD Windows 11, NH.QM0AA.001",ACER,"['Laptops, Tablet', None, None, None]",1399.0,"{'GPU': 'GeForce RTX 4060', 'Refresh Rate': '144Hz', 'Maximum Resolution': '1080p Full HD', 'Touch Screen': 'No', 'Operating System': 'Windows 11', 'Memory': '16GB'}" -218561,LPASU00608,"ASUS Vivobook 15 Notebook, 15.6"" FHD, Intel Pentium Silver, Intel UHD Graphics 605, 8GB DDR4, 128GB SSD, Win11 Home, X515MA-DS91-CA",ASUS,"['Laptops, Tablet', None, None, None]",399.0,"{'Notebook Type': 'Consumer', 'Notebook Chassis': 'Clamshell', 'Screen Size': '15.6""', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'CPU': 'Intel Pentium Silver'}" -239812,LPACE00966,"Acer Nitro 17 Gaming Notebook 17.3"" QHD AMD Ryzen 7 7735HS GeForce RTX 4070 32GB 1TB SSD Windows 11 Home, NH.QL2AA.002",ACER,"['Laptops, Tablet', None, None, None]",1999.0,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '32GB', 'Screen Size': '17.3""'}" -121579,LPLEN00182,"Lenovo ThinkPad T480s 14"" Notebook, Intel Core i7-8550U, 16 GB, 256 GB SSD, Windows 10 Pro Refurbished",LENOVO,"['Laptops, Tablet', None, None, None]",437.96000671387,"{'Maximum Resolution': '1080p Full HD', 'Refresh Rate': '60Hz', 'SSD Capacity': '256GB', 'CPU': 'i7-8550U', 'Hard Drive Capacity': 'None', 'Notebook Type': 'Business Notebook'}" -234973,LPASU00726,"ASUS ROG Flow Gaming Notebook 13.4"" WQXGA AMD Ryzen 9 7940HS RTX 4050 16GB 1TB SSD Windows 11 Home, GV302XU-DS91T-CA",ASUS,"['Laptops, Tablet', None, None, None]",2199.0,"{'GPU': 'RTX\xa04050', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '13.4""'}" -239729,LPMSI00563,"MSI Modern 15 Notebook 15.6"" FHD Intel i5-1155G7 Intel Iris Xe 16GB 512GB SSD Windows 11 Home, B11M-046CA",MSI,"['Laptops, Tablet', None, None, None]",599.0,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" -238129,LPLEN03403,"LENOVO T480s Business Notebook 14"" FHD Intel i7-8550U Intel UHD Graphics 620 24GB 256GB SSD Windows 10 Pro Refurbished",LENOVO,"['Laptops, Tablet', None, None, None]",437.96000671387,"{'Refresh Rate': '60Hz', 'GPU': 'Intel UHD Graphics 620', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 10 Pro', 'Memory': '24GB'}" -238838,LPASU00764,"ASUS Zenbook 15 OLED Consumer Notebook 15.6"" OLED AMD Ryzen 7 7735U AMD Radeon Graphics 16GB 1TB SSD Windows 11 Home, UM3504DA-DS71-CA",ASUS,"['Laptops, Tablet', None, None, None]",1299.0,"{'GPU': 'AMD Radeon Graphics', 'Maximum Resolution': '2880 x 1620', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" -230592,LPGIG00141,"Gigabyte AORUS 17 Gaming Notebook 17.3"" FHD Intel i7-12700H GeForce RTX 3080 Ti 32GB 1TB SSD Windows 11 Home, YE5-74US544SH",GIGABYTE,"['Laptops, Tablet', None, None, None]",1999.0,"{'GPU': 'GeForce RTX 3080 Ti', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '32GB', 'Screen Size': '17.3""'}" -239888,LPHEW02035,"HP Omen 16-wd0010ca Gaming Notebook 16.1"" FHD Intel i7-13620H GeForce RTX 4060 16GB 1TB SSD Windows 11 Home",HP,"['Laptops, Tablet', None, None, None]",1399.0,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16.1""'}" -236114,LPGIG00152,"Gigabyte AORUS 15 Gaming Notebook 15.6"" QHD Intel Core i7-13700H GeForce RTX 4060 16GB 1TB SSD Windows 11 Home, BKF-73US754SH",GIGABYTE,"['Laptops, Tablet', None, None, None]",1599.0,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '2560 x 1440', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" -239776,LPLEN03431,"Lenovo IdeaPad Slim 5 Consumer Notebook 16"" WUXGA Intel i5-1335U Intel Iris Xe 8GB 512GB SSD Windows 11 Home, 82XF002TCC",LENOVO,"['Laptops, Tablet', None, None, None]",699.99,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '16""'}" -236553,LPGIG00155,"Gigabyte AERO 16 OLED Gaming Notebook 16"" UHD Intel i9-13900H GeForce RTX 4070 32GB 1TB SSD Windows 11 Pro, BSF-A3US964SP",GIGABYTE,"['Laptops, Tablet', None, None, None]",2499.0,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '3840x2400', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '32GB', 'Screen Size': '16""'}" -216772,LPMSI00445,"MSI Modern 15 Ultra Thin and Light Notebook, 15.6"" FHD Intel Core i5-1155G7, Intel Iris Xe, 8 GB DDR4, 256GB NVMe SSD, Windows 11 Home, Modern 15 A11MU-863CA",MSI,"['Laptops, Tablet', None, None, None]",483.88,"{'Notebook Type': 'Consumer', 'Notebook Chassis': 'Thin and Light', 'Screen Size': '15.6""', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'CPU': 'i5-1155G7'}" -154718,LPLEN00715,"Lenovo ThinkPad T490 14"" Notebook Intel i5-8365U FHD 16 GB RAM 256 GB SSD Windows 10 Pro (Refurbished)",LENOVO,"['Laptops, Tablet', None, None, None]",399.0,"{'Manufacturer': 'Lenovo Group Limited', 'Manufacturer Part Number': '20N20043US', 'Manufacturer Website Address': 'http://www.lenovo.com/ca/en', 'Brand Name': 'Lenovo', 'Product Line': 'ThinkPad', 'Product Series': 'T490'}" -238752,LPASU00761,"ASUS Vivobook Pro 16X OLED Gaming Notebook 16"" Intel i9-13980HX Geforce RTX 4070 32GB 1TB SSD Windows 11 Home, K6604JI-DS91-CA",ASUS,"['Laptops, Tablet', None, None, None]",2799.0,"{'GPU': 'Geforce\xa0RTX\xa04070', 'Maximum Resolution': '3200 x 2000', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '32GB', 'Screen Size': '16""'}" -236490,LPGIG00154,"Gigabyte AERO 14 Gaming Notebook 14"" QHD Intel Core i7-13700H GeForce RTX 4050 16GB 1TB SSD Windows 11 Home, BMF-72USBB4SH",GIGABYTE,"['Laptops, Tablet', None, None, None]",1899.0,"{'GPU': 'GeForce RTX 4050', 'Maximum Resolution': '2880x1800', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '14""'}" -234965,LPASU00722,"ASUS ROG Strix Gaming Notebook 18"" WQXGA Intel i9-13980HX RTX 4090 32GB 2TB SSD Windows 11 Pro, G834JY-XS97",ASUS,"['Laptops, Tablet', None, None, None]",3999.0,"{'GPU': 'GeForce RTX 4090', 'Maximum Resolution': '2560X1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '32GB', 'Screen Size': '18""'}" -230617,LPLEN03202,"Lenovo ThinkPad X380 Yoga Business Notebook 13.3"" FHD Intel i5-8350U Integrated GPU 16GB 512GB SSD Windows 10 Pro Refurbished",LENOVO,"['Laptops, Tablet', None, None, None]",449.0,"{'GPU': 'Integrated', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'Yes', 'Operating System': 'Windows 10 Pro', 'Memory': '16GB', 'Screen Size': '13.3""'}" -241506,LPMSI00577,"MSI Prestige 13 Evo Business Notebook 13.3"" Intel i7-1360P 32GB 1TB SSD Windows 11 Pro",MSI,"['Laptops, Tablet', None, None, None]",1689.0,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1200', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '32GB', 'Screen Size': '13.3""'}" -238841,LPASU00766,"ASUS Zenbook Pro 14 OLED Consumer Notebook 14.5"" OLED Intel i9-13900H GeForce RTX 4070 32GB 1TB SSD Windows 11 Home, UX6404VI-DS91-CA",ASUS,"['Laptops, Tablet', None, None, None]",2499.0,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '2880 x 1800', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '32GB', 'Screen Size': '14.5""'}" -241572,LPASU00780,"ASUS Zenbook Consumer Notebook 14"" UHD Touchscreen OLED Intel i7-12700H 16GB 1TB SSD Windows 11 Home, UP5401ZA-DB71T-CA",ASUS,"['Laptops, Tablet', None, None, None]",1399.0,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '3840 x 2400', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '14""'}" -241407,LPASU00779,"ASUS Zenbook 14X OLED Consumer Notebook 14"" Intel i7-12700H Intel Iris Xe 16GB 1TB SSD Windows 11 Home, UX5401ZA-DB71-CA",ASUS,"['Laptops, Tablet', None, None, None]",1299.0,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '2880 X 1800', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '14""'}" -240964,LPLEN03452,"Lenovo 300e Yoga Chromebook Gen 4 82W20003US 11.6"" Touchscreen Convertible 2 in 1 Chromebook - HD - 1366 x 768 - Octa-core (ARM Cortex A76 Dual-core (2 Core) 2.05 GHz + Cortex A55 Hexa-core (6 Core) 2 GHz) - 4 GB Total RAM - 4 GB On-board Memory - 32 GB F",LENOVO,"['Laptops, Tablet', None, None, None]",412.41,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '82W20003US', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': '300e Yoga Chromebook Gen 4', 'General InformationProduct Model': '82W20003US'}" -239773,LPLEN03428,"Lenovo IdeaPad Slim 3 Consumer Notebook 15.6"" FHD AMD Ryzen 3 7320U AMD Radeon 610M Graphics 8GB 512GB SSD Windows 11 Home,82XQ007UCC",LENOVO,"['Laptops, Tablet', None, None, None]",499.99,"{'GPU': 'AMD Radeon 610M Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '15.6""'}" -237091,LPACE00961,"Acer Predator Helios Gaming Laptop 16"" QHD Intel i9-13900HX GeForce RTX 4080 32GB 1 TB SSD Windows 11,NH.QJSAA.002",ACER,"['Laptops, Tablet', None, None, None]",2999.0,"{'GPU': 'GeForce RTX 4080', 'Refresh Rate': '240Hz', 'Maximum Resolution': 'QHD', 'Touch Screen': 'No', 'Operating System': 'Windows 11', 'Memory': '32GB'}" -234888,LPASU00718,"ASUS ROG Strix Gaming Notebook 16"" WQXGA Intel i9-13980HX RTX 4080 32GB 1TB SSD Windows 11 Pro, G634JZ-XS96",ASUS,"['Laptops, Tablet', None, None, None]",3499.0,"{'GPU': 'GeForce RTX 4080', 'Maximum Resolution': '2560X1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '32GB', 'Screen Size': '16""'}" -227682,LPGIG00137,"GIGABYTE AERO 16 Gaming Notebook 15.6"" OLED UHD Intel Core i9-12900H RTX 3080 Ti 64GB 2TB SSD Windows 11 Pro, YE5-A4US958HP",GIGABYTE,"['Laptops, Tablet', None, None, None]",2999.0,"{'Memory': '64GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Pro', 'Maximum Resolution': '3840x2400', 'Refresh Rate': '60Hz', 'SSD Capacity': '2TB'}" -196113,LPLEN02154,"LENOVO ThinkPad T14s G2 Business Notebook 14"" Intel i5-1135G7 8 GB 256GB SSD Windows 10 Pro, 20WM0085US",LENOVO,"['Laptops, Tablet', None, None, None]",699.0,"{'Manufacturer': 'Lenovo Group Limited', 'Storage Type': 'SSD', 'CPU Brand': 'Intel', 'Product Condition': '.', 'Product Condition Short': '.', 'Screen Resolution Description': 'FHD'}" -239774,LPLEN03429,"Lenovo IdeaPad Slim 3 Consumer Notebook 15.6"" FHD AMD Ryzen 5 7520U AMD Radeon 610M Graphics 8GB 512GB SSD Windows 11 Home, 82XQ007VCC",LENOVO,"['Laptops, Tablet', None, None, None]",549.99,"{'GPU': 'AMD Radeon 610M Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '15.6""'}" -239727,LPMSI00561,"MSI Bravo 15 Gaming Notebook 15.6"" FHD AMD Ryzen 7 7735HS GeForce RTX 3050 16GB 512GB SSD Windows 11 Home",MSI,"['Laptops, Tablet', None, None, None]",1299.0,"{'GPU': 'GeForce RTX 3050', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" -238799,LPHEW02024,"HP Consumer Notebook 17.3"" FHD Intel i5-1335U Intel Iris Xe 8GB 1TB SSD Windows 11 Home, 17-cn3010ca",HP,"['Laptops, Tablet', None, None, None]",778.88000488281,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': 'FHD', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '17.3""'}" -236072,LPGIG00148,"Gigabyte AORUS Gaming Notebook 17.3"" QHD Intel i7-13700H GeForce RTX 4070 16GB 1TB SSD Windows 11 Home, BSF-73US654SH",GIGABYTE,"['Laptops, Tablet', None, None, None]",1999.0,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '2560 x 1440', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '17.3""'}" -235100,LPASU00734,"ASUS Zenbook 14X Consumer Notebook 14"" OLED Intel i7-1260P GeForce MX550 16GB 512GB SSD Windows 11 Home, UX5400ZB-DS72T-CA",ASUS,"['Laptops, Tablet', None, None, None]",1599.0,"{'GPU': 'GeForce\xa0MX550', 'Maximum Resolution': '2880 x 1800', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '14""'}" -216707,LPASU00592,"ASUS Vivobook 15 Notebook, 15.6"" HD, AMD Ryzen 3 3250U, AMD Radeon Graphics, 8GB DDR4, 128GB SSD, Win11 Home, M515DA-DS31-CA",ASUS,"['Laptops, Tablet', None, None, None]",499.0,"{'Notebook Type': 'Consumer', 'Notebook Chassis': 'Clamshell', 'Screen Size': '15.6""', 'Maximum Resolution': '1366 x 768', 'Refresh Rate': '60Hz', 'CPU': 'AMD Ryzen 3 3250U'}" -239728,LPMSI00562,"MSI Modern 15 Notebook 15.6"" FHD AMD Ryzen 7 7730U AMD Radeon Graphics 16GB 512GB SSD Windows 11 Home, B7M-097CA",MSI,"['Laptops, Tablet', None, None, None]",699.0,"{'GPU': 'AMD Radeon Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" -235077,LPMSI00541,"MSI Thin GF63 Gaming Notebook 15.6"" FHD Intel i7-12650H GeForce RTX 3050 16GB 512GB SSD Windows 11 Home, 12UDX-038CA",MSI,"['Laptops, Tablet', None, None, None]",999.0,"{'GPU': 'GeForce RTX 3050', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" -234156,LPASU00686,"ASUS TUF Gaming Notebook 16"" FHD AMD Ryzen 7 7735HS AMD Radeon RX 7600S 16GB 1TB SSD Windows 11 Home, FA617NS-DS71-CA",ASUS,"['Laptops, Tablet', None, None, None]",1499.0,"{'GPU': 'AMD\xa0Radeon RX\xa07600S', 'Refresh Rate': '144Hz', 'Maximum Resolution': '1920X1200', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB'}" -216703,LPASU00591,"ASUS Vivobook Go Notebook, 15.6"" HD, Intel Celeron N4020, Intel UHD Graphics 600, 4GB DDR4, 64GB SSD, Win11 S, L510MA-DS09-CA",ASUS,"['Laptops, Tablet', None, None, None]",259.0,"{'Notebook Type': 'Consumer', 'Notebook Chassis': 'Clamshell', 'Screen Size': '15.6""', 'Maximum Resolution': '1366 x 768', 'Refresh Rate': '60Hz', 'CPU': 'Intel Celeron N4020'}" -241456,LPHEW02058,"HP Victus 15-fa1000ca Gaming Notebook 15.6"" Intel i5-13500H GeForce RTX 4050 16GB 512GB SSD Windows 11 Home, 7X7A3UA#ABL",HP,"['Laptops, Tablet', None, None, None]",1099.0,"{'Memory': '16GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '144Hz', 'SSD Capacity': '512GB'}" -240050,LPHEW02046,"HP Consumer Notebook 17.3"" FHD, Ryzen 3 3720U, AMD Radeon Graphics, 8GB, 512GB SSD, Windows 11 Home, 17-cp2030ca",HP,"['Laptops, Tablet', None, None, None]",584.88000488281,"{'GPU': 'AMD Radeon Graphics', 'Maximum Resolution': 'FHD', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '17.3""'}" -236573,LPASU00743,"ASUS Zenbook S 13 Flip OLED Business Notebook 13.3"" Touchscreen QHD Intel i7-1260P 16GB 1TB SSD Windows 11 Pro, UP5302ZA-XB71T-CA",ASUS,"['Laptops, Tablet', None, None, None]",1999.0,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '2880 x 1800', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Pro', 'Memory': '16GB', 'Screen Size': '13.3""'}" -236557,LPGIG00157,"Gigabyte AERO 14 OLED Gaming Notebook 14"" QHD Intel i5-12500H RTX 4050 16GB 1TB SSD Windows 11 Home, 9MF-E2USBB4SH",GIGABYTE,"['Laptops, Tablet', None, None, None]",1499.0,"{'GPU': 'RTX 4050', 'Maximum Resolution': '2880x1800', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '14""'}" -236073,LPGIG00149,"Gigabyte AORUS 15X Gaming Notebook 15.6"" QHD Intel i9-13900HX GeForce RTX 4070 16GB 1TB SSD Windows 11 Home, ASF-B3US754SH",GIGABYTE,"['Laptops, Tablet', None, None, None]",2199.88,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '2560x1440', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" -238842,LPASU00767,"ASUS Zenbook Pro 14 Duo OLED Consumer Notebook 14.5"" OLED Intel i9-13900H GeForce RTX 4060 32GB 1TB SSD Windows 11 Home, UX8402VV-DS91T-CA",ASUS,"['Laptops, Tablet', None, None, None]",2999.0,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '2880 x 1800', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Home', 'Memory': '32GB', 'Screen Size': '14.5""'}" -238733,LPASU00759,"ASUS ProArt Studiobook Business Notebook 16"" OLED Intel i9-13980HX Geforce RTX 4070 32GB 1TB SSD Windows 11 Pro, H7604JI-XS91T-CA",ASUS,"['Laptops, Tablet', None, None, None]",3154.0,"{'GPU': 'Geforce\xa0RTX\xa04070', 'Maximum Resolution': '3200 x 2000', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Pro', 'Memory': '32GB', 'Screen Size': '16""'}" -236555,LPGIG00156,"Gigabyte AERO 16 OLED Gaming Notebook 16"" UHD Intel i7-13700H GeForce RTX 4070 16GB 1TB SSD Windows 11 Home, BSF-73US994SH",GIGABYTE,"['Laptops, Tablet', None, None, None]",2199.0,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '3840x2400', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}" -243943,LPLEN03512,"Lenovo ThinkBook 14s Yoga G3 14"" Touchscreen Convertible Notebook FHD Intel Core i7-1355U 16GB RAM 512GB SSD, Mineral Gray, Windows 11 Pro",LENOVO,"['Laptops, Tablet', None, None, None]",1499.0,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '21JG001FUS', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'ThinkBook', 'General InformationProduct Series': '14s Yoga G3 IRU'}" -234974,LPASU00727,"ASUS ROG Flow Gaming Notebook 16"" WQXGA Intel Core i9-13900H RTX 4050 16GB 1TB SSD Windows 11 Home, GV601VU-DS91T-CA",ASUS,"['Laptops, Tablet', None, None, None]",2199.0,"{'GPU': 'RTX\xa04050', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}" -234827,LPMSI00531,"MSI TITAN GT77 Gaming Notebook 17.3"" UHD Intel i9-13980HX GeForce RTX 4090 128GB 4TB SSD Windows 11 Pro, GT77HX 13VI-042US",MSI,"['Laptops, Tablet', None, None, None]",6999.0,"{'GPU': 'GeForce RTX 4090', 'Maximum Resolution': '3840x2160', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '128GB', 'Screen Size': '17.3""'}" -225016,LPLEN03042,"Lenovo ThinkBook 15 G4 15.6"" Touchscreen Notebook, FHD, Intel Core i7-1255U, 16GB RAM, 512GB SSD, Mineral Gray, Fingerprint Reader, Backlit Keyboard, Windows 11 Pro",LENOVO,"['Laptops, Tablet', None, None, None]",1299.0,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '21DJ000VUS', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'ThinkBook', 'General InformationProduct Series': '15 G4 IAP'}" -250551,LPASU00500OB,"Asus ExpertBook B1 14"" Laptop Intel i5 1135G7 8 GB 256 GB SSD Windows 10 Home, B1400CEAE-Q51H-CB(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",521.55,"{'General InformationManufacturer': 'ASUS Computer International', 'General InformationManufacturer Part Number': 'B1400CEAE-Q51H-CB', 'General InformationManufacturer Website Address': 'http://www.asus.com', 'General InformationBrand Name': 'Asus', 'General InformationProduct Line': 'ExpertBook B1', 'General InformationProduct Series': 'B1400'}" -250418,LPASU00717OB,"ASUS ROG Strix Gaming Notebook 16"" FHD Intel i7-13650HX RTX 3050 16GB 1TB SSD Windows 11 Home, G614JJ-DS71-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",1439.1,"{'GPU': 'RTX 3050', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}" -250334,LPLEN03685OB,"Lenovo IdeaPad Slim 3 15AMN8 Laptop 15.6"" FHD AMD Ryzen 3 7320U 8GB 256GB SSD Windows 11 S, 82XQ001JCF(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",426.55,"{'GPU': 'AMD Radeon 610M Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 S', 'Memory': '8GB', 'Screen Size': '15.6""'}" -250119,LPHEW02147,"HP EliteBook 835 Laptop 13.3"" FHD AMD Ryzen 5 Pro 7540U AMD Radeon 740M Graphics 16GB 512GB SSD Windows 11 Pro",HP,"['Laptops, Tablet', None, None, None]",2149.0,"{'GPU': 'AMD Radeon 740M Graphics', 'Maximum Resolution': '1920 x 1200', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '16GB', 'Screen Size': '13.3""'}" -249975,LPLEN03577OB,"Lenovo ThinkPad T480 Business Laptop 14"" FHD Intel i5-8365U 16GB 512GB SSD Windows 10 Pro Refurbished(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",449.1,"{'GPU': 'Intel® UHD Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 10 Pro', 'Memory': '16GB', 'Screen Size': '14""'}" -249937,LPASU00830,"ASUS Zenbook 14 EVO OLED Laptop 14"" QHD+ Intel Core Ultra 5 125H Intel Arc™ Graphics 16GB 512GB SSD Windows 11 Home, UX3405MA-DS51T-CA",ASUS,"['Laptops, Tablet', None, None, None]",1399.0,"{'GPU': 'Intel Arc™ Graphics', 'Maximum Resolution': '2880 x 1800', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '14""'}" -249890,LPASU00809OB,"ASUS ROG Strix G16 Gaming Laptop 16"" QHD Intel i9-13980HX GeForce RTX 4060 16GB 1TB SSD Windows 11 Home, G614JV-DB91-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",1619.1,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}" -249876,LPLGE00028OB,"LG Gram EVO Ultra-Lightweight Notebook , 16"" WQXGA, Intel i7-1260P, Intel Iris Xe Graphics, 16GB, 512GB SSD, Windows 11 Home, 16T90Q-K.AA75A9(Open Box)",LG,"['Laptops, Tablet', None, None, None]",1538.89,"{'Notebook Type': 'Consumer', 'Notebook Chassis': 'Thin and Light', 'Screen Size': '16""', 'Maximum Resolution': '2560 x 1600', 'Refresh Rate': '60Hz', 'CPU': 'i7-1260P'}" -249846,LPASU00721OB,"ASUS ROG Strix Gaming Notebook 17.3"" WQHD AMD Ryzen 9 7945HX RTX 4080 32GB 1TB SSD Windows 11 Pro, G733PZ-XS96(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",3149.1,"{'GPU': 'RTX\xa04080', 'Maximum Resolution': 'WQHD', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '32GB', 'Screen Size': '17.3""'}" -249838,LPLEN03709,"Lenovo V15 G4 Business Laptop 15.6"" FHD Intel i7-1355U 16GB 1TB SSD Windows 11 Pro, 83A100E8US",LENOVO,"['Laptops, Tablet', None, None, None]",1399.0,"{'GPU': 'Intel Iris Xe Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '16GB', 'Screen Size': '15.6""'}" -249837,LPLEN03708,"Lenovo V15 G4 Business Laptop 15.6"" FHD Intel i5-1335U 16GB 1TB SSD Windows 11 Pro, 83A100ECUS",LENOVO,"['Laptops, Tablet', None, None, None]",1199.0,"{'GPU': 'Intel Iris Xe Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '16GB', 'Screen Size': '15.6""'}" -249836,LPLEN03707,"Lenovo V15 G4 Business Laptop 15.6"" FHD Intel i3-1315U Intel UHD Graphics 16GB 512GB SSD Windows 11 Pro, 83A100EGUS",LENOVO,"['Laptops, Tablet', None, None, None]",699.0,"{'GPU': 'Intel UHD Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '16GB', 'Screen Size': '15.6""'}" -249835,LPLEN03706,"Lenovo V15 G4 Business Laptop 15.6"" FHD AMD Ryzen 5 5500U 16GB 512GB SSD Windows 11 Pro, 83CR000FUS",LENOVO,"['Laptops, Tablet', None, None, None]",899.0,"{'GPU': 'AMD Radeon Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '16GB', 'Screen Size': '15.6""'}" -249816,LPRAZ00059,"RAZER Blade 14 Gaming Laptop 14"" QHD AMD Ryzen 9 7940HS GeForce RTX 4070 16GB 1TB SSD Windows 11 Home",RAZER,"['Laptops, Tablet', None, None, None]",3649.0,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '14""'}" -249777,LPHEW01929OB,"HP ProBook 440 G9 14"" Business Laptop FHD Intel Core i5-1235U 8GB RAM 256GB SSD Silver Windows 11 Pro(Open Box)",HP,"['Laptops, Tablet', None, None, None]",569.05,"{'General InformationManufacturer': 'HP Inc.', 'General InformationManufacturer Part Number': '687M8UT#ABA', 'General InformationManufacturer Website Address': 'http://www.hp.com', 'General InformationBrand Name': 'HP', 'General InformationProduct Line': 'ProBook', 'General InformationProduct Series': '440 G9'}" -249687,LPMSI00531OB,"MSI TITAN GT77 Gaming Notebook 17.3"" UHD Intel i9-13980HX GeForce RTX 4090 128GB 4TB SSD Windows 11 Pro, GT77HX 13VI-042US(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",6299.1,"{'GPU': 'GeForce RTX 4090', 'Maximum Resolution': '3840x2160', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '128GB', 'Screen Size': '17.3""'}" -249641,LPLEN03578OB,"Lenovo Yoga L390 Business Laptop 13.3"" Touchscreen FHD Intel i5-8365U 16GB 256GB SSD Windows 11 Pro Refurbished(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",404.1,"{'GPU': 'Intel® UHD Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Pro', 'Memory': '16GB', 'Screen Size': '13.3""'}" -249634,LPLEN03518OB,"LENOVO Thinkbook T480s Business Notebook 14"" FHD Intel i5-8350U 16GB 256GB SSD Windows 11 Pro, Refurbished(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",359.1,"{'GPU': 'Intel UHD Graphics 620', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '16GB', 'Screen Size': '14""'}" -249531,LPLEN03430OB,"Lenovo IdeaPad Slim 3 15.6"" Laptop AMD Ryzen 7 7730U 8GB 512GB SSD Windows 11 Home, 82XM007NCC(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",569.89,"{'GPU': 'AMD Radeon Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '15.6""'}" -249332,LPLEN03469OB,"Lenovo Legion Pro 5i Gaming Laptop 16"" QHD+ Intel i7-13700HX GeForce RTX 4060 16GB 512GB Windows 11 Home, 82WK00K7CC(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",1349.1,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}" -249277,LPMSI00597,"MSI Prestige 13 EVO Laptop 13.3"" Intel i7-1360P 16GB 512GB SSD Windows 11 Home, A13M-215CA",MSI,"['Laptops, Tablet', None, None, None]",1399.0,"{'GPU': 'Iris Xe Graphics', 'Maximum Resolution': '1920 x 1200', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '13.3""'}" -248907,LPHEW01997OB,"HP ENVY X360 13.3"" OLED Touchscreen 2 in 1 Laptop QHD i7-1250U 16GB 1TB SSD Windows 11 Home, 6J0Q0UA#ABL(Open Box)",HP,"['Laptops, Tablet', None, None, None]",1234.05,"{'Memory': '16GB', 'Screen Size': '13.3""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '2880 x 1800', 'Refresh Rate': '60Hz', 'SSD Capacity': '1TB'}" -248901,LPLEN03573OB,"LENOVO ThinkPad T490 Business Laptop 14"" FHD Intel i7-8550U Intel UHD Graphics 620 16GB 256GB SSD Windows 11 Pro, Refurbished(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",494.1,"{'GPU': 'Intel UHD Graphics 620', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '16GB', 'Screen Size': '14""'}" -248698,LPHEW02076OB,"HP Victus Gaming Notebook 16.1"" AMD Ryzen 5 7640HS GeForce RTX 4050 16GB 512GB SSD Windows 11 Home, 7X7B1UA#ABL(Open Box)",HP,"['Laptops, Tablet', None, None, None]",899.1,"{'Memory': '16GB', 'Screen Size': '16.1""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '144Hz', 'SSD Capacity': '512GB'}" -248202,LPLEN03565OB,"LENOVO Legion Pro 5 16ARX8 Gaming Laptop 16"" 165Hz QHD Ryzen 7 7745HX GeForce RTX 4060 16GB 1TB SSD Windows 11 Home, 82WM005UCC(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",1529.1,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}" -248129,LPASU00560OB,"ASUS ExpertBook B1 Business Laptop 14"" Intel i5-1135G7 8GB 256GB SSD Windows 10 Pro, 3YR Warranty, 1YR ADP(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",759.05,"{'Screen Size': '14""', 'Memory': '8GB', 'Operating System': 'Windows 10 Pro', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '256GB'}" -248080,LPLEN03503OB,"Lenovo Legion Slim 7i Gaming Laptop 16"" QHD 240Hz Intel i9-13900H GeForce RTX 4070 32GB 1TB SSD Windows 11 Home, 82Y3007HCC(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",2069.1,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '32GB', 'Screen Size': '16""'}" -247993,LPLEN03517OB,"Lenovo ThinkPad X1 Carbon EVO 14"" Touchscreen Ultrabook WUXGA Intel i7-1365U 32GB RAM 512GB SSD Windows 11 Pro 21HM000SUS(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",1899.05,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '21HM000SUS', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'ThinkPad', 'General InformationProduct Series': 'X1 Carbon Gen 11'}" -247894,TBLEN00004,"Lenovo Tab P11 2nd Gen 11.5"" 2K Tablet 4GB 128 GB Storm Grey",LENOVO,"['Laptops, Tablet', None, None, None]",399.0,"{'Processor': 'MediaTek Helio G99 (8C, 2x A76 @2.2GHz + 6x A55 @2.0GHz)', 'Graphics': 'Integrated ARM Mali-G57 MC2 GPU', 'Memory': '4GB', 'Storage': '128GB', 'Screen Size': '11.5""', 'Screen Resolution': '2000 x 1200'}" -247891,TBLEN00003,"Lenovo Tab M10 Plus 10.61"" 2K Tablet 4GB 64 GB Storm Grey",LENOVO,"['Laptops, Tablet', None, None, None]",269.0,"{'Color': 'Storm Grey', 'Graphics': 'Integrated ARM Mali-G52 MC2 GPU', 'Memory': '4GB', 'Processor': 'MediaTek Helio G80 (8C, 2x A75 @2.0GHz + 6x A55 @1.8GHz)', 'Refresh Rate': '60Hz', 'Screen Resolution': '2000 x 1200'}" -247821,LPGIG00156OB,"Gigabyte AERO 16 OLED Gaming Notebook 16"" UHD Intel i7-13700H GeForce RTX 4070 16GB 1TB SSD Windows 11 Home, BSF-73US994SH(Open Box)",GIGABYTE,"['Laptops, Tablet', None, None, None]",1979.1,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '3840x2400', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}" -247767,LPLEN03487OB,"Lenovo ThinkPad E16 Business Laptop 16"" FHD Intel i7-1355U 16GB 512GB SSD Windows 11 Pro, 21JN0073US(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",1139.05,"{'Memory': '16GB', 'Model': 'ThinkPad E16', 'Screen Size': '16""', 'Operating System': 'Windows 11 Pro', 'Maximum Resolution': '1920 x 1200', 'Refresh Rate': '60Hz'}" -247756,LPGIG00137OB,"GIGABYTE AERO 16 Gaming Notebook 15.6"" OLED UHD Intel Core i9-12900H RTX 3080 Ti 64GB 2TB SSD Windows 11 Pro, YE5-A4US958HP(Open Box)",GIGABYTE,"['Laptops, Tablet', None, None, None]",2699.1,"{'Memory': '64GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Pro', 'Maximum Resolution': '3840x2400', 'Refresh Rate': '60Hz', 'SSD Capacity': '2TB'}" -247647,LPASU00808OB,"ASUS TUF Gaming F15 Gaming Laptop 15.6"" FHD 144Hz Intel i7-11800H GeForce RTX 3050 Ti 16GB 1TB SSD Windows 11 Home, FX506HE-EH74(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",899.1,"{'GPU': 'GeForce RTX 3050 Ti', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" -247646,LPASU00762OB,"ASUS Vivobook Slate Consumer Notebook 13.3"" OLED Intel Pentium Silver Processor N6000 Intel UHD Graphics 8GB 128GB SSD Windows 11 S, T3300KA-DS92T-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",569.05,"{'GPU': 'Intel UHD Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 S', 'Memory': '8GB', 'Screen Size': '13.3""'}" -247634,LPASU00786OB,"ASUS Vivobook 16X Laptop 16"" Intel i5-1235U 8GB 512GB SSD Windows 11 Home, X1605ZA-DB51-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",616.55,"{'GPU': 'Intel UHD Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '16""'}" -247631,LPACE00984OB,"ACER Aspire 3 Consumer Laptop 15.6"" FHD Intel i5-1235U 16GB 512GB SSD Windows 11 Home, A315-59-59UU(Open Box)",ACER,"['Laptops, Tablet', None, None, None]",664.05,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" -247443,LPGIG00162OB,"GIGABYTE G5 KF Gaming Laptop 15.6"" FHD 144Hz Intel i7-12650H GeForce RTX 4060 16GB 512GB SSD Windows 11 Home, G5 KF5-G3US353SH(Open Box)",GIGABYTE,"['Laptops, Tablet', None, None, None]",989.1,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" -247381,LPMSI00593OB,"MSI Katana 17 Gaming Laptop 17.3"" 144Hz Intel i7-13620H GeForce RTX 4070 16GB 1TB SSD Windows 11 Home, Katana 17 B13VGK-645CA(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",1619.1,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '17.3""'}" -247266,LPHEW02100OB,"HP 15-fd0030ca Consumer Laptop 15.6"" FHD Intel i5-1340P 16GB 512GB SSD Windows 11 Home, 8M5P0UA#ABL(Open Box)",HP,"['Laptops, Tablet', None, None, None]",664.05,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" -247121,LPLEN03429OB,"Lenovo IdeaPad Slim 3 Consumer Notebook 15.6"" FHD AMD Ryzen 5 7520U AMD Radeon 610M Graphics 8GB 512GB SSD Windows 11 Home, 82XQ007VCC(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",522.49,"{'GPU': 'AMD Radeon 610M Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '15.6""'}" -247031,LPLEN03569OB,"Lenovo V14 Business Laptop 14"" FHD Ryzen 5 5500U 16GB 512GB SSD Windows 11 Pro, 83FG0004US(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",664.05,"{'GPU': 'AMD Radeon Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '16GB', 'Screen Size': '14""'}" -247014,LPASU00581OB,"Asus ExpertBook B1 15.6"" Business Laptop FHD Intel i5-1135G7 8 GB 256 GB SSD Windows 11 Pro, 3YR Warranty, 1YR ADP(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",569.05,"{'General InformationManufacturer': 'ASUS Computer International', 'General InformationManufacturer Part Number': 'B1500CEAE-Q53WP-CB', 'General InformationManufacturer Website Address': 'http://www.asus.com', 'General InformationBrand Name': 'Asus', 'General InformationProduct Line': 'ExpertBook B1', 'General InformationProduct Series': 'B1500'}" -246975,LPASU00810,"Asus Chromebook Flip C434 C434TA-Q1-CB 14"" Chromebook Intel m3-8100Y 4 GB RAM - 64GB Flash Memory - Black, Silver - Chrome OS",ASUS,"['Laptops, Tablet', None, None, None]",699.0,"{'General InformationManufacturer': 'ASUS Computer International', 'General InformationManufacturer Part Number': 'C434TA-Q1-CB', 'General InformationManufacturer Website Address': 'http://www.asus.com', 'General InformationBrand Name': 'Asus', 'General InformationProduct Line': 'Chromebook Flip', 'General InformationProduct Series': 'C434'}" -246824,LPHEW02099OB,"HP 17-cn3020ca Consumer Laptop 17.3"" FHD Intel i5-1335U 16GB 512GB SSD Windows 11 Home, 8N3T7UA#ABL(Open Box)",HP,"['Laptops, Tablet', None, None, None]",759.05,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '17.3""'}" -246745,LPLEN02397OB,"Lenovo ThinkPad X1 Carbon Gen 9 14"" WUXGA Ultrabook, Intel i5 i5-1135G7, 8GB, 256GB SSD, Windows 10 Pro, Intel Iris Xe Graphics, 20XW004QUS(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",949.89,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '20XW004QUS', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'ThinkPad', 'General InformationProduct Series': 'X1 Carbon Gen 9'}" -246671,LPLEN03567OB,"LENOVO ThinkPad X1 Gen 3 Business Laptop 13"" Detachable (2 in 1) QHD Intel i7-8550U 16GB 256GB SSD Windows 11 Pro Refurbished(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",359.1,"{'GPU': 'Intel UHD Graphics 620', 'Maximum Resolution': '3000 x 2000', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Pro', 'Memory': '16GB', 'Screen Size': '13""'}" -246664,LPLEN03564OB,"LENOVO ThinkPad X1 Business Notebook 13.3"" Detachable (2 in 1) QHD Intel i7-8650U 16GB 256GB SSD Windows 10 Pro Refurbished(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",494.1,"{'GPU': 'Intel UHD Graphics 620', 'Maximum Resolution': '3000 x 2000', 'Touch Screen': 'Yes', 'Operating System': 'Windows 10 Pro', 'Memory': '16GB', 'Screen Size': '13.3""'}" -246169,LPGIG00164,"GIGABYTE AORUS 17X Gaming Laptop 17.3"" 240Hz QHD Intel i9-13980HX GeForce RTX 4080 16GB 1 TB SSD Windows 11 Pro",GIGABYTE,"['Laptops, Tablet', None, None, None]",3599.0,"{'GPU': 'GeForce RTX 4080', 'Maximum Resolution': '2560 x 1440', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '16GB', 'Screen Size': '17.3""'}" -246098,LPLEN03559OB,"LENOVO ThinkPad T590 Business Laptop 15.6"" FHD Intel i5-8365U Intel UHD Graphics 620 16GB 512GB SSD Windows 10 Pro Refurbished(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",449.1,"{'GPU': 'Intel UHD Graphics 620', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 10 Pro', 'Memory': '16GB', 'Screen Size': '15.6""'}" -246030,LPLEN03390OB,"LENOVO ThinkPad T14 G3 Business Laptop 14"" Touchscreen Ryzen 5 Pro 6650U AMD Radeon 660M 16GB 256GB SSD Windows 10 Pro, 21CF000CUS(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",759.05,"{'GPU': 'AMD Radeon 660M', 'Maximum Resolution': '1920 x 1200', 'Touch Screen': 'Yes', 'Operating System': 'Windows 10 Pro', 'Memory': '16GB', 'Screen Size': '14""'}" -246003,LPHUA00042OB,"HUAWEI Matebook D14 Consumer Laptop 14"" Intel i7-1360P 16GB 1TB SSD Windows 11 Home, 53013VBB(Open Box)",HUAWEI,"['Laptops, Tablet', None, None, None]",949.05,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1200', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '14""'}" -245995,LPHEW01946OB,"HP ProBook 450 G9 15.6"" Business Notebook Intel i5-1235U 16 GB 256 GB SSD, Windows 11 Pro(Open Box)",HP,"['Laptops, Tablet', None, None, None]",854.05,"{'General InformationManufacturer': 'HP Inc.', 'General InformationManufacturer Part Number': '687P0UT#ABA', 'General InformationManufacturer Website Address': 'http://www.hp.com', 'General InformationBrand Name': 'HP', 'General InformationProduct Line': 'ProBook', 'General InformationProduct Series': '450 G9'}" -245861,LPGIG00152OB,"Gigabyte AORUS 15 Gaming Notebook 15.6"" QHD Intel Core i7-13700H GeForce RTX 4060 16GB 1TB SSD Windows 11 Home, BKF-73US754SH(Open Box)",GIGABYTE,"['Laptops, Tablet', None, None, None]",1439.1,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '2560 x 1440', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" -245833,LPLEN03403OB,"LENOVO T480s Business Notebook 14"" FHD Intel i7-8550U Intel UHD Graphics 620 24GB 256GB SSD Windows 10 Pro Refurbished(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",394.15999755859,"{'Refresh Rate': '60Hz', 'GPU': 'Intel UHD Graphics 620', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 10 Pro', 'Memory': '24GB'}" -245787,LPLEN03568,"Lenovo V14 Business Laptop 14"" FHD Intel i7-1255U 16GB 512GB SSD Windows 11 Pro, 82TS00JGUS",LENOVO,"['Laptops, Tablet', None, None, None]",999.0,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '16GB', 'Screen Size': '14""'}" -245737,LPHEW02095OB,"HP Victus 15-fb1010ca Gaming Laptop 15.6"" AMD Ryzen 5 7535HS GeForce RTX 2050 8GB 512GB SSD Windows 11 Home, 8G9J1UA#ABL(Open Box)",HP,"['Laptops, Tablet', None, None, None]",629.1,"{'GPU': 'GeForce RTX 2050', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '15.6""'}" -245729,LPLEN01849OB,"Lenovo ThinkPad X1 Nano EVO 13"" Ultrabook, Intel Core i7 i7-1160G7, 16GB, 512GB SSD, Windows 10 Pro, 20UN000EUS(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",1234.05,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '20UN000EUS', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'ThinkPad', 'General InformationProduct Series': 'X1 Nano Gen1'}" -245728,LPLEN03502OB,"LENOVO IdeaPad Slim 3 Consumer Laptop 15.6"" AMD Ryzen 5 7520U 16GB 512GB SSD Windows 11 Home, 82XQ00BECC(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",664.05,"{'GPU': 'AMD Radeon 610M', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" -245727,LPLEN03552OB,"LENOVO X1 Yoga G4 Business Notebook 14"" FHD Intel i5-8265U 16GB 512GB SSD Windows 10 Pro, Pen Included, Refurbished(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",449.1,"{'GPU': 'Intel UHD Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'Yes', 'Operating System': 'Windows 10 Pro', 'Memory': '16GB', 'Screen Size': '14""'}" -245695,LPASU00779OB,"ASUS Zenbook 14X OLED Consumer Notebook 14"" Intel i7-12700H Intel Iris Xe 16GB 1TB SSD Windows 11 Home, UX5401ZA-DB71-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",1234.05,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '2880 X 1800', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '14""'}" -245534,LPMSI00580OB,"MSI Pulse 17 Gaming Notebook 17.3"" Intel i9-13900H GeForce RTX 4070 16GB 1TB SSD Windows 11 Home, B13VGK-619CA(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",1799.1,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '17.3""'}" -245476,LPMSI00575OB,"MSI Modern 15 Consumer Laptop 15.6"" FHD Intel i7-1255U Intel Iris Xe 16GB 512GB SSD Windows 11 Home(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",664.05,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" -245456,LPMSI00592,"MSI Stealth 14Studio Gaming Laptop 14"" 165Hz Intel i7-13620H GeForce RTX 3050 16GB 512GB SSD Windows 11 Home, A13UDX-099CA",MSI,"['Laptops, Tablet', None, None, None]",1699.0,"{'GPU': 'GeForce RTX 3050', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '14""'}" -245448,LPMSI00565OB,"MSI Bravo 15 Gaming Notebook 15.6"" AMD Ryzen 7 7735HS GeForce RTX 4050 16GB 1TB SSD Windows 11 Home, C7VEK-058CA(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",1439.1,"{'GPU': 'GeForce RTX 4050', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" -245439,LPGIG00163,"GIGABYTE AORUS 17X Gaming Notebook 17.3"" QHD 240Hz Intel i9-13980HX GeForce RTX 4090 32GB 2TB SSD Windows 11 Pro, AORUS 17X AZF-D5US665SH",GIGABYTE,"['Laptops, Tablet', None, None, None]",4699.0,"{'GPU': 'GeForce RTX 4090', 'Maximum Resolution': '2560 x 1440', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '32GB', 'Screen Size': '17.3""'}" -245338,LPACE00985OB,"Acer Swift 3 EVO 14"" Laptop FHD Intel i5-1240P 16GB 512GB SSD Windows 11 Home,(Open Box)",ACER,"['Laptops, Tablet', None, None, None]",664.05,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '14""'}" -245275,LPLEN03042OB,"Lenovo ThinkBook 15 G4 15.6"" Touchscreen Notebook, FHD, Intel Core i7-1255U, 16GB RAM, 512GB SSD, Mineral Gray, Fingerprint Reader, Backlit Keyboard, Windows 11 Pro(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",1234.05,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '21DJ000VUS', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'ThinkBook', 'General InformationProduct Series': '15 G4 IAP'}" -245239,LPCNO00061OB,"ASUS Vivobook F Series Laptop 15.6"" FHD Intel i5-1135G7 8GB 256GB SSD Windows 11 Home, F1500EA-WB51(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",568.05999832153,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '15.6""'}" -245230,LPHEW02083OB,"HP EliteBook 640 G9 Business Notebook 14"" Intel i5-1245U 16GB 512GB SSD Windows 11 Pro, 6C0Z2UT#ABL(Open Box)",HP,"['Laptops, Tablet', None, None, None]",1136.1600006104,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '16GB', 'Screen Size': '14""'}" -245229,LPLEN02154OB,"LENOVO ThinkPad T14s G2 Business Notebook 14"" Intel i5-1135G7 8 GB 256GB SSD Windows 10 Pro, 20WM0085US(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",664.05,"{'Manufacturer': 'Lenovo Group Limited', 'Storage Type': 'SSD', 'CPU Brand': 'Intel', 'Product Condition': '.', 'Product Condition Short': '.', 'Screen Resolution Description': 'FHD'}" -245185,LPACE00980OB,"ACER Nitro 5 Gaming Laptop 15.6"" 144Hz AMD Ryzen 7 5800H GeForce RTX 3060 16GB 512GB SSD Windows 11 Home(Open Box)",ACER,"['Laptops, Tablet', None, None, None]",899.1,"{'GPU': 'GeForce RTX 3060', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" -245105,LPDYA00033,"Dynabook Tecra Business Notebook 15.6"" FHD Intel i7-1260P 16GB 256GB SSD Windows 10 Pro, PML20C-0WR03D",Dynabook,"['Laptops, Tablet', None, None, None]",1749.0,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'Yes', 'Operating System': 'Windows 10 Pro', 'Memory': '16GB', 'Screen Size': '15.6""'}" -245100,LPDYA00029,"Dynabook Tecra Business Notebook 14"" FHD Intel i7-1260P 16GB 256GB SSD Windows 10 Pro, PMM20C-15702V",Dynabook,"['Laptops, Tablet', None, None, None]",1749.99,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '16GB', 'Screen Size': '14""'}" -245098,LPDYA00028,"Dynabook Tecra Business Notebook 14"" FHD Intel i5-1240P 16GB 256GB SSD Windows 11 Pro, PMM20C-15602V",Dynabook,"['Laptops, Tablet', None, None, None]",1599.0,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '16GB', 'Screen Size': '14""'}" -245038,LPLEN03493OB,"LENOVO Thinkbook T490 Business Laptop 14"" Intel i5-8365U 16GB 256GB SSD Windows 10 Pro Refurbished(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",359.1,"{'GPU': 'Intel UHD Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 10 Pro', 'Memory': '16GB', 'Screen Size': '14""'}" -244914,LPACE00968OB,"Acer Nitro 5 Gaming Laptop 15.6"" FHD Intel i5-12450H GeForce RTX 4060 16GB 512GB SSD Windows 11 Home, NH.QM0AA.004(Open Box)",ACER,"['Laptops, Tablet', None, None, None]",989.1,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" -244865,LPHEW02087OB,"HP Victus 15-fb0000ca Gaming Laptop 15.6"" 144Hz AMD Ryzen 5 5600H GeForce RTX 3050 Ti 16GB 512GB SSD Windows 11 Home, 89A37UA#ABL(Open Box)",HP,"['Laptops, Tablet', None, None, None]",764.1,"{'GPU': 'GeForce RTX 3050 Ti', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" -244863,LPLGE00033OB,"LG Gram EVO Consumer Notebook 17"" WQXGA Intel i7-1360P Intel Iris Xe 16GB 512GB SSD Windows 11 Home,17Z90R-K.AA75A9(Open Box)",LG,"['Laptops, Tablet', None, None, None]",1519.05,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '17""'}" -244859,LPASU00763OB,"ASUS Vivobook S 16 Flip Consumer Notebook 16"" WUXGA Intel i5-1335U Intel HD Graphics 16GB 512GB SSD Windows 11 Home, TP3604VA-DS51T-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",901.55,"{'Refresh Rate': '60Hz', 'GPU': 'Intel HD Graphics', 'Maximum Resolution': '1920 x 1200', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Home', 'Memory': '16GB'}" -244840,LPACE00981OB,"ACER Aspire 5 Consumer Laptop 15.6"" AMD Ryzen 3 5300U 8GB 256GB SSD Windows 11 S, A515-45-R4RP(Open Box)",ACER,"['Laptops, Tablet', None, None, None]",426.55,"{'GPU': 'AMD Radeon Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 S', 'Memory': '8GB', 'Screen Size': '15.6""'}" -244669,LPASU00784OB,"ASUS Vivobook 15 OLED Consumer Laptop 15.6"" AMD Ryzen 7 7730U 16GB 512GB SSD Windows 11 Home, M1505YA-DB71-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",806.55,"{'GPU': 'AMD Radeon Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" -244668,LPHEW01822OB,"HP ProBook 450 G9 15.6"" Business Notebook Intel i7-1255U 16GB 512GB SSD Windows 10 Pro, 687P3UT#ABA(Open Box)",HP,"['Laptops, Tablet', None, None, None]",949.05,"{'General InformationManufacturer': 'HP Inc.', 'General InformationManufacturer Part Number': '687P3UT#ABA', 'General InformationManufacturer Website Address': 'http://www.hp.com', 'General InformationBrand Name': 'HP', 'General InformationProduct Line': 'ProBook', 'General InformationProduct Series': '450 G9'}" -244664,LPLEN03428OB,"Lenovo IdeaPad Slim 3 Consumer Notebook 15.6"" FHD AMD Ryzen 3 7320U AMD Radeon 610M Graphics 8GB 512GB SSD Windows 11 Home,82XQ007UCC(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",474.99,"{'GPU': 'AMD Radeon 610M Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '15.6""'}" -244660,LPHEW01967OB,"HP ProBook 440 G9 14"" Business Laptop Intel i5-1235U 16 GB 256 GB SSD, Windows 11 Pro(Open Box)",HP,"['Laptops, Tablet', None, None, None]",711.55,"{'General InformationManufacturer': 'HP Inc.', 'General InformationManufacturer Part Number': '6J8Q6UT#ABA', 'GPU': 'Intel Iris Xe', 'General InformationManufacturer Website Address': 'http://www.hp.com', 'Maximum Resolution': '1920 x 1080', 'General InformationBrand Name': 'HP'}" -244488,LPASU00764OB,"ASUS Zenbook 15 OLED Consumer Notebook 15.6"" OLED AMD Ryzen 7 7735U AMD Radeon Graphics 16GB 1TB SSD Windows 11 Home, UM3504DA-DS71-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",1234.05,"{'GPU': 'AMD Radeon Graphics', 'Maximum Resolution': '2880 x 1620', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" -244400,LPASU00785OB,"ASUS TUF Gaming Notebook 17.3"" 144Hz Intel i5-11400H GeForce RTX 2050 8GB 512GB SSD Windows 11 Home, FX706HF-DB51-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",719.1,"{'Memory': '8GB', 'Screen Size': '17.3""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '144Hz', 'SSD Capacity': '512GB'}" -244340,LPLEN03546,"Lenovo ThinkPad E14 14"" Touchscreen Business Notebook Intel i7-1355U 16 GB 512 GB SSD Windows 11 Pro, 21JK0053US",LENOVO,"['Laptops, Tablet', None, None, None]",1599.0,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '21JK0053US', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'ThinkPad', 'General InformationProduct Series': 'E14 Gen 5'}" -244334,LPLEN03544,"Lenovo ThinkPad E14 14"" Business Notebook Ryzen 5 7530U 16 GB 256 GB Windows 11 Pro, 21JR001RUS",LENOVO,"['Laptops, Tablet', None, None, None]",1173.65,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '21JR001RUS', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'ThinkPad', 'General InformationProduct Series': 'E14 Gen 5'}" -244224,LPLEN00715OB,"Lenovo ThinkPad T490 14"" Notebook Intel i5-8365U FHD 16 GB RAM 256 GB SSD Windows 10 Pro (Refurbished)(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",359.1,"{'Manufacturer': 'Lenovo Group Limited', 'Manufacturer Part Number': '20N20043US', 'Manufacturer Website Address': 'http://www.lenovo.com/ca/en', 'Brand Name': 'Lenovo', 'Product Line': 'ThinkPad', 'Product Series': 'T490'}" -244103,LPLEN03526,"Lenovo ThinkPad T14 14"" Business Notebook Intel i5-1335U 16 GB 512 GB Windows 11 Pro, 21HD0028CA",LENOVO,"['Laptops, Tablet', None, None, None]",2249.42,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '21HD0028CA', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationProduct Line': 'ThinkPad', 'General InformationProduct Series': 'T14 Gen 4', 'General InformationProduct Model': '21HD0028CA'}" -244095,LPLEN03522,"Lenovo ThinkBook 15 G4 15.6"" Business Laptop AMD Ryzen 5 5625U 16 GB 256 GB Windows 11 Pro, 21DL000JUS",LENOVO,"['Laptops, Tablet', None, None, None]",1299.0,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '21DL000JUS', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'ThinkBook', 'General InformationProduct Series': '15 G4 ABA'}" -244094,LPLEN03521,"Lenovo ThinkPad E16 16"" Business Notebook AMD Ryzen 5 7530U 16 GB 256 GB SSD Windows 11 Pro, 21JT001BUS",LENOVO,"['Laptops, Tablet', None, None, None]",1099.0,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '21JT001BUS', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'ThinkPad', 'General InformationProduct Series': 'E16 Gen 1'}" -243984,LPHEW02090,"HP ProBook 440 Business Notebook 14"" FHD Intel i7-1355U 16GB 512GB SSD Windows 11 Pro, 822P8UT#ABA",HP,"['Laptops, Tablet', None, None, None]",1799.0,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '16GB', 'Screen Size': '14""'}" -243895,LPMSI00577OB,"MSI Prestige 13 Evo Business Notebook 13.3"" Intel i7-1360P 32GB 1TB SSD Windows 11 Pro(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",1604.55,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1200', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '32GB', 'Screen Size': '13.3""'}" -243883,LPLEN03432OB,"LENOVO IdeaPad Flex 5 Consumer Notebook 16"" Touchscreen AMD Ryzen 5 7530U 16GB 512GB SSD Windows 11 Home, 82XY005ACC(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",806.55,"{'GPU': 'AMD Radeon Graphics', 'Refresh Rate': '60Hz', 'Maximum Resolution': '1920 x 1200', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Home', 'Memory': '16GB'}" -243733,LPASU00783OB,"ASUS Zenbook 14 OLED Consumer Notebook 14"" QHD AMD Ryzen 7 5825U 16GB 512GB SSD Windows 11 Home, UM3402YA-DB71T-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",834.93999938965,"{'GPU': 'AMD Radeon Graphics', 'Maximum Resolution': '2880 x 1800', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '14""'}" -243732,LPASU00765OB,"ASUS Zenbook S 13 OLED EVO Laptop 13.3"" Intel i7-1355U 16GB 1TB SSD Windows 11 Home, UX5304VA-DS71-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",1234.05,"{'GPU': 'Intel Iris Xe', 'Refresh Rate': '60Hz', 'Maximum Resolution': '2880 x 1800', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB'}" -243639,LPASU00720OB,"ASUS ROG Strix G17 Gaming Notebook 17.3"" WQHD AMD Ryzen 9 7945HX RTX 4060 16GB 1TB SSD Windows 11 Home, G713PV-DS91-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",1799.1,"{'GPU': 'RTX\xa04060', 'Maximum Resolution': '2560X1440', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '17.3""'}" -243595,LPASU00770OB,"ASUS ROG Zephyrus G14 Gaming Notebook 14"" QHD AMD Ryzen 9 7940HS GeForce RTX 4080 16GB 1TB SSD Windows 11 Home, GA402XZ-CS94(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",2699.1,"{'GPU': 'GeForce RTX 4080', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '14""'}" -243585,LPHEW02072OB,"HP ProBook 445 G9 Business Notebook 14"" AMD Ryzen 5 5625U 8GB 256GB SSD Windows 11 Pro, 64T29UT#ABL(Open Box)",HP,"['Laptops, Tablet', None, None, None]",569.05,"{'GPU': 'AMD Radeon Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '8GB', 'Screen Size': '14""'}" -243494,LPHEW01833OB,"HP EliteBook 650 G9 15.6"" Business Notebook Intel i5-1245U 16 GB 256 GB SSD Windows 10 Professional, 6C0Z6UT#ABA(Open Box)",HP,"['Laptops, Tablet', None, None, None]",1048.7599990845,"{'General InformationManufacturer': 'HP Inc.', 'General InformationManufacturer Part Number': '6C0Z6UT#ABA', 'General InformationManufacturer Website Address': 'http://www.hp.com', 'General InformationBrand Name': 'HP', 'General InformationProduct Line': 'EliteBook', 'General InformationProduct Series': '650 G9'}" -243437,LPASU00760OB,"ASUS Vivobook 16X Gaming Laptop 16"" WUXGA Intel i9-13900H Geforce RTX 4050 16GB 512GB SSD Windows 11 Home, K3605VU-DS91-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",1529.1,"{'GPU': 'Geforce RTX 4050', 'Maximum Resolution': '1920 x 1200', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}" -243374,LPMSI00590,"MSI Modern 14 Consumer Notebook 14"" Intel i7-1355U 16GB 1TB SSD Windows 11 Home, C13M-621US",MSI,"['Laptops, Tablet', None, None, None]",1199.0,"{'Memory': '16GB', 'Screen Size': '14""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '1TB'}" -243338,LPASU00782OB,"ASUS Vivobook Go Consumer Notebook 15.6"" AMD Ryzen 3 7320U 8GB 128GB SSD Windows 11 S, E1504FA-DB31-CA-SL(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",426.55,"{'GPU': 'AMD Radeon Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 S', 'Memory': '8GB', 'Screen Size': '15.6""'}" -243313,LPHEW02023OB,"HP Consumer Notebook 14"" FHD AMD Ryzen 5 7520U AMD Radeon Graphics 8GB 512GB SSD Windows 11 Home, 14-em0040ca(Open Box)",HP,"['Laptops, Tablet', None, None, None]",569.05,"{'Memory': '8GB', 'Screen Size': '14""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': 'FHD', 'SSD Capacity': '512GB', 'CPU': 'Ryzen 5 7520U'}" -243264,LPASU00780OB,"ASUS Zenbook Consumer Notebook 14"" UHD Touchscreen OLED Intel i7-12700H 16GB 1TB SSD Windows 11 Home, UP5401ZA-DB71T-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",1329.05,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '3840 x 2400', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '14""'}" -243225,LPHEW02024OB,"HP Consumer Notebook 17.3"" FHD Intel i5-1335U Intel Iris Xe 8GB 1TB SSD Windows 11 Home, 17-cn3010ca(Open Box)",HP,"['Laptops, Tablet', None, None, None]",739.94001464844,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': 'FHD', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '17.3""'}" -243158,LPCHP00003OB,"HP Elitebook 840 G3 Business Laptop 14"" Touchscreen Intel i5-6300U 16GB 256GB SSD Windows 10 Pro Refurbished(Open Box)",HP,"['Laptops, Tablet', None, None, None]",269.1,"{'GPU': 'Intel HD Graphics 520', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'Yes', 'Operating System': 'Windows 10 Pro', 'Memory': '16GB', 'Screen Size': '14""'}" -243148,LPMSI00589,"MSI Creator Z17HXStudio Gaming Notebook 17"" 165Hz QHD+ Intel i9-13950HX GeForce RTX 4060 32GB 1TB SSD Windows 11 Pro, A13VFT-093CA",MSI,"['Laptops, Tablet', None, None, None]",3399.0,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Pro', 'Memory': '32GB', 'Screen Size': '17""'}" -243120,LPMSI00588,"MSI Prestige 16EVO Business Notebook 16"" 165Hz QHD+ Intel i7-13700H 32GB 1TB SSD Windows 11 Pro, A13M-286CA",MSI,"['Laptops, Tablet', None, None, None]",1799.0,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '32GB', 'Screen Size': '16""'}" -243072,LPASU00715OB,"ASUS TUF F15 Gaming Laptop 15.6"" FHD Intel i9-13900H GeForce RTX 4060 16GB 1TB SSD Windows 11 Home, FX507VV-DS91-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",1349.1,"{'Refresh Rate': '144Hz', 'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB'}" -243071,LPMSI00572OB,"MSI Thin GF63 Gaming Laptop 15.6"" FHD Intel i5-12450H GeForce RTX 2050 8GB 512GB SSD Windows 11 Home(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",629.1,"{'GPU': 'GeForce RTX 2050', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '15.6""'}" -243055,LPLEN03436OB,"Lenovo Legion Pro 5 Gaming Notebook 16"" WQXGA Intel i7-13700HX GeForce RTX 4070 16GB 1TB SSD Windows 11 Home, 82WK00H8CC(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",1979.1,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}" -243048,LPLEN03495,"LENOVO ThinkPad X13 Yoga 2-in-1 Business Notebook 13.3"" Touchscreen Intel i5-10310U 16GB 256GB SSD Windows 10 Pro, 20SYS0C600",LENOVO,"['Laptops, Tablet', None, None, None]",1499.0,"{'GPU': 'Intel UHD Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'Yes', 'Operating System': 'Windows 10 Pro', 'Memory': '16GB', 'Screen Size': '13.3""'}" -243000,LPMSI00562OB,"MSI Modern 15 Notebook 15.6"" FHD AMD Ryzen 7 7730U AMD Radeon Graphics 16GB 512GB SSD Windows 11 Home, B7M-097CA(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",664.05,"{'GPU': 'AMD Radeon Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" -242733,LPLEN03442OB,"LENOVO IdeaPad Flex 5 Consumer Notebook 14"" Touchscreen AMD Ryzen 3 5300U 4GB 128GB SSD Windows 10 S, 82HU0159US(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",360.05,"{'GPU': 'AMD Radeon Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'Yes', 'Operating System': 'Windows 10 S', 'Memory': '4GB', 'Screen Size': '14""'}" -242699,LPASU00561OB,"ASUS ExpertBook B1 Business Notebook, 15.6"" FHD, Intel Core i5-1135G7, Intel Iris Xe Graphics G7, 8GB, 256GB SSD, Windows 10 Pro, 3YR Warranty, 1YR ADP(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",569.89,"{'Screen Size': '15.6""', 'Memory': '8GB', 'Operating System': 'Windows 10 Pro', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '256GB'}" -242686,LPMSI00587,"MSI CreatorPro M16 Gaming Notebook 16"" QHD Intel i7-13700H NVIDIA RTX A1000 32GB 1TB SSD Windows 11 Pro, B13VI-845US",MSI,"['Laptops, Tablet', None, None, None]",2399.0,"{'GPU': 'NVIDIA RTX A1000', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '32GB', 'Screen Size': '16""'}" -242678,LPHEW02049OB,"HP EliteBook 840 G2 Business Notebook 14"" Touchscreen Core i5-5300U,16 GB DDR3, 256 GB SSD, Windows 10 Professional Refurbished(Open Box)",HP,"['Laptops, Tablet', None, None, None]",242.1,"{'Memory': '16GB', 'Storage Type': 'SSD', 'CPU Brand': 'Intel', 'Product Condition': 'Refurbished', 'Product Condition Short': 'Refurb', 'Screen Resolution Description': 'FHD'}" -242676,LPMSI00586,"MSI CreatorPro Z16HXStudio Gaming Notebook 16"" Touchscreen QHD Intel i9-13950HX NVIDIA RTX A2000 ADA 32GB 1TB SSD Windows 11 Pro, B13VJTO-067US",MSI,"['Laptops, Tablet', None, None, None]",3799.0,"{'GPU': 'NVIDIA RTX A2000 ADA', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Pro', 'Memory': '32GB', 'Screen Size': '16""'}" -242671,LPMSI00585,"MSI CreatorPro Z17HX Studio Gaming Notebook 17"" QHD Touchscreen Intel i9-13950HX NVIDIA RTX A3000 ADA 32GB 1TB Windows 11 Pro, A13VKT-077US",MSI,"['Laptops, Tablet', None, None, None]",3999.0,"{'GPU': 'NVIDIA RTX A3000 ADA', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Pro', 'Memory': '32GB', 'Screen Size': '17""'}" -242664,LPMSI00584,"MSI Modern 15 Consumer Notebook 15.6"" Intel i7-1335U 16GB 1TB SSD Windows 11 Home, B13M-447US",MSI,"['Laptops, Tablet', None, None, None]",1199.0,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" -242529,LPACE00967OB,"Acer Nitro 5 Gaming Laptop 15.6"" FHD Intel i9-12900H GeForce RTX 4060 16GB 1TB SSD Windows 11 Home, NH.QM0AA.003(Open Box)",ACER,"['Laptops, Tablet', None, None, None]",1169.1,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" -242481,LPLEN03456OB,"Lenovo IdeaPad Consumer Notebook 14"" FHD Intel i5-1135G7 8GB 512GB SSD Windows 11 Home, 81X700FXUS(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",521.55,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '14""'}" -242396,LPLGE00031OB,"LG Gram EVO Consumer Notebook 15.6"" FHD Intel i7-1360P Intel Iris Xe 16GB 512GB SSD Windows 11 Home, 15Z90R-P.AA75A9(Open Box)",LG,"['Laptops, Tablet', None, None, None]",1519.99,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" -242394,LPLEN00182OB,"Lenovo ThinkPad T480s 14"" Notebook, Intel Core i7-8550U, 16 GB, 256 GB SSD, Windows 10 Pro Refurbished(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",394.15999755859,"{'Maximum Resolution': '1080p Full HD', 'Refresh Rate': '60Hz', 'SSD Capacity': '256GB', 'CPU': 'i7-8550U', 'Hard Drive Capacity': 'None', 'Notebook Type': 'Business Notebook'}" -242354,LPGIG00161,"GIGABYTE AORUS 15 Gaming Notebook 15.6"" 360Hz Intel i5-12500H GeForce RTX 4050 16GB 512GB SSD Windows 11 Home, 9MF-E2US583SH",GIGABYTE,"['Laptops, Tablet', None, None, None]",1499.0,"{'GPU': 'GeForce RTX 4050', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" -242348,LPMSI00583,"MSI Creator Z17HXStudio Gaming Notebook 17"" Touchscreen 165Hz QHD+ Intel i7-13700HX GeForce RTX 4050 32GB 1TB SSD Windows 11 Pro, A13VET-094CA",MSI,"['Laptops, Tablet', None, None, None]",2899.0,"{'GPU': 'GeForce RTX 4050', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Pro', 'Memory': '32GB', 'Screen Size': '17""'}" -242343,LPHEW01834OB,"HP EliteBook 640 G9 14"" Business Notebook Intel i5-1245U 16GB RAM 512GB SSD Windows 10 Pro, 6C0Z2UT#ABA(Open Box)",HP,"['Laptops, Tablet', None, None, None]",961.35999755859,"{'General InformationManufacturer': 'HP Inc.', 'General InformationManufacturer Part Number': '6C0Z2UT#ABA', 'GPU': 'Intel Iris Xe', 'General InformationManufacturer Website Address': 'http://www.hp.com', 'Maximum Resolution': '1080p Full HD', 'General InformationBrand Name': 'HP'}" -242342,LPMSI00536OB,"MSI Katana GF66 Gaming Notebook 15.6"" FHD Intel i7-12650H GeForce RTX 3050 Ti 16GB 512GB SSD Windows 11 Home, Katana GF66 12UD-878CA(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",1159.0899978638,"{'GPU': 'GeForce RTX 3050 Ti', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" -242316,LPHEW02077,"HP OMEN 16-xf0000ca Gaming Notebook 16.1"" 240Hz QHD AMD Ryzen 9 7940HS GeForce RTX 4070 32GB 2TB SSD Windows 11 Home, 7X979UA#ABL",HP,"['Laptops, Tablet', None, None, None]",2499.0,"{'Memory': '32GB', 'Screen Size': '16.1""""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '2560 x 1440', 'Refresh Rate': '240Hz', 'SSD Capacity': '2TB'}" -242164,LPMSI00564OB,"MSI Bravo 15 Gaming Laptop 15.6"" FHD AMD Ryzen 7 7735HS GeForce RTX 4060 32GB 1TB SSD Windows 11 Home, C7VFK-057CA(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",1259.1,"{'GPU': 'Ge Force RTX 4060', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '32GB', 'Screen Size': '15.6""'}" -242110,LPMSI00553OB,"MSI Vector GP68HX Gaming Notebook 16"" Intel i9-12900HX GeForce RTX 4080 32GB 1TB SSD Windows 11 Home, 12VH-012CA(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",2249.1,"{'GPU': 'GeForce RTX 4080', 'Maximum Resolution': '1920 x 1200', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '32GB', 'Screen Size': '16""'}" -242043,LPSAS00158,"SAMSUNG Galaxy Book3 360 EVO Consumer Notebook 13.3"" AMOLED Intel i5-1335U 8GB 256GB SSD Windows 11 Home, NP730QFG-KA2CA",SAMSUNG,"['Laptops, Tablet', None, None, None]",1499.0,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '13.3""'}" -242035,LPMSI00496OB,"MSI GF63 Gaming Notebook 15.6"" FHD Intel i5-11400H RTX3050 8GB 512GB SSD Windows 11 Home,GF63 11UC-692(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",719.1,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '144Hz', 'SSD Capacity': '512GB'}" -242034,LPACE00946OB,"Acer 15.6"" Consumer Notebook FHD Intel i5-1135G7 Intel Iris 8GB 512GB SSD Windows 11, NX.A1HAA.00G(Open Box)",ACER,"['Laptops, Tablet', None, None, None]",462.53999389648,"{'GPU': 'Intel Iris', 'Maximum Resolution': '1080p Full HD', 'Touch Screen': 'No', 'Operating System': 'Windows 11', 'Memory': '8GB', 'Screen Size': '15.6""'}" -242021,LPHEW02072,"HP ProBook 445 G9 Business Notebook 14"" AMD Ryzen 5 5625U 8GB 256GB SSD Windows 11 Pro, 64T29UT#ABL",HP,"['Laptops, Tablet', None, None, None]",599.0,"{'GPU': 'AMD Radeon Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '8GB', 'Screen Size': '14""'}" -242019,LPLEN03478,"Lenovo ThinkPad X1 Yoga Gen 8 14"" Touchscreen Convertible 2 in 1 Business Notebook Intel i7-1355U 16 GB 512 GB SSD, 21HQ0007US",LENOVO,"['Laptops, Tablet', None, None, None]",2884.39,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '21HQ0007US', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'ThinkPad', 'General InformationProduct Series': 'X1 Yoga Gen 8'}" -241971,LPMSI00559OB,"MSI Thin GF63 Gaming Laptop 15.6"" Intel i7-12650H GeForce RTX 4060 16GB 512GB SSD Windows 11 Home, 12VF-274CA(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",1079.1,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" -241958,LPSAS00157,"SAMSUNG Galaxy Book3 360 EVO Consumer Notebook 13.3"" AMOLED Intel i7-1355U 16GB 512GB SSD Windows 11 Home, NP730QFG-KA1CA",SAMSUNG,"['Laptops, Tablet', None, None, None]",1899.0,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '13.3""'}" -241952,LPSAS00156,"SAMSUNG Galaxy Book3 Pro 360 EVO Consumer Notebook 16"" QHD+ AMOLED Intel i7-1360P 16GB 1TB SSD Windows 11 Home, NP960XFH-XA2CA",SAMSUNG,"['Laptops, Tablet', None, None, None]",2499.0,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '2880 x 1800', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}" -241914,LPSAS00152,"SAMSUNG Galaxy Book3 EVO Ultra Gaming Notebook 16"" QHD+ AMOLED Intel i7-13700H GeForce RTX 4050 16GB 1TB SSD Windows 11 Home, NP960XFH-XA2CA",SAMSUNG,"['Laptops, Tablet', None, None, None]",3269.0,"{'GPU': 'GeForce RTX 4050', 'Maximum Resolution': '2880 x 1800', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}" -241901,LPSAS00150,"SAMSUNG Galaxy Book3 EVO Ultra Gaming Notebook 16"" QHD+ AMOLED Intel i7-13700H GeForce RTX 4050 16GB 512GB SSD Windows 11 Home, NP960XFH-XA1CA",SAMSUNG,"['Laptops, Tablet', None, None, None]",2999.0,"{'GPU': 'GeForce RTX 4050', 'Maximum Resolution': '2880 x 1800', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}" -241869,LPLEN03471,"Lenovo ThinkPad E14 14"" Touchscreen Business Notebook Intel i5-1335U 16 GB 512 GB SSD Windows 11 Pro, 21JK0052US",LENOVO,"['Laptops, Tablet', None, None, None]",1399.0,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '21JK0052US', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'ThinkPad', 'General InformationProduct Series': 'E14 Gen 5'}" -241798,LPLEN03438OB,"Lenovo Legion Pro 5 Gaming Notebook 16"" 165Hz WQXGA AMD Ryzen 7 7745HX GeForce RTX 4070 16GB 512GB SSD Windows 11 Home, 82WM005VCC(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",1529.1,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}" -241794,LPLEN03312OB,"Lenovo T490 Business Notebook 14"" FHD Intel i5-8265U Intel UHD Graphics 16GB 256GB SSD Windows 10 Pro Refurbished(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",359.1,"{'GPU': 'Intel UHD Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 10 Pro', 'Memory': '16GB', 'Screen Size': '14""'}" -241791,LPGIG00148OB,"Gigabyte AORUS Gaming Notebook 17.3"" QHD Intel i7-13700H GeForce RTX 4070 16GB 1TB SSD Windows 11 Home, BSF-73US654SH(Open Box)",GIGABYTE,"['Laptops, Tablet', None, None, None]",1799.1,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '2560 x 1440', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '17.3""'}" -241789,LPGIG00157OB,"Gigabyte AERO 14 OLED Gaming Notebook 14"" QHD Intel i5-12500H RTX 4050 16GB 1TB SSD Windows 11 Home, 9MF-E2USBB4SH(Open Box)",GIGABYTE,"['Laptops, Tablet', None, None, None]",1349.1,"{'GPU': 'RTX 4050', 'Maximum Resolution': '2880x1800', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '14""'}" -241787,LPLEN03435OB,"Lenovo Legion Pro 5 Gaming Laptop 16"" Intel i7-13700HX GeForce RTX 4060 16GB 1TB SSD Windows 11 Home, 82WK00H9CC(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",1619.1,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}" -241770,LPHEW02065,"HP ProBook 450 G10 15.6"" Notebook - Full HD - 1920 x 1080 - Intel Core i5 13th Gen i5-1335U Deca-core (10 Core) 1.30 GHz - 8 GB Total RAM - 256 GB SSD - Pike Silver Plastic - Intel Chip - Windows 11 Pro - Intel UHD Graphics - In-plane Switching (IPS) Tech",HP,"['Laptops, Tablet', None, None, None]",999.0,"{'General InformationManufacturer': 'HP Inc.', 'General InformationManufacturer Part Number': '822P3UT#ABA', 'General InformationManufacturer Website Address': 'http://www.hp.com', 'General InformationBrand Name': 'HP', 'General InformationProduct Line': 'ProBook', 'General InformationProduct Series': '450 G10'}" -241742,LPLEN03301OB,"Lenovo IdeaPad Flex 5 14"" Touchscreen Convertible Notebook, OLED 2.8K, Intel i7-1255U, 16GB RAM, 512GB SSD, Storm Gray, Windows 11 Home(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",949.05,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '82R7000ECF', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'IdeaPad', 'General InformationProduct Series': 'Flex 5 14IAU7'}" -241738,LPLEN03434OB,"Lenovo Legion Pro 5 Gaming Notebook 16"" AMD Ryzen 7 7745HX GeForce RTX 4060 16GB 512GB SSD Windows 11 Home, 82WM005XCC(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",1349.1,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}" -241670,LPLEN03465,"Lenovo ThinkPad X1 Yoga EVO 14"" Touchscreen Convertible 2 in 1 Business Notebook Intel i5-1335U 16 GB 256 GB SSD, 21HQ001NUS",LENOVO,"['Laptops, Tablet', None, None, None]",2534.06,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '21HQ001NUS', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'ThinkPad', 'General InformationProduct Series': 'X1 Yoga Gen 8'}" -241582,LPACE00956OB,"Acer Nitro 5 Gaming Notebook 15.6"" FHD Intel i7-12650H GeForce RTX 4060 16GB 512GB SSD Windows 11, NH.QM0AA.001(Open Box)",ACER,"['Laptops, Tablet', None, None, None]",1259.1,"{'GPU': 'GeForce RTX 4060', 'Refresh Rate': '144Hz', 'Maximum Resolution': '1080p Full HD', 'Touch Screen': 'No', 'Operating System': 'Windows 11', 'Memory': '16GB'}" -241555,LPMSI00581,"MSI Modern 15 Consumer Notebook 15.6"" AMD Ryzen 5-7530U 16GB 512GB SSD Windows 11 Home, B7M-219CA",MSI,"['Laptops, Tablet', None, None, None]",849.0,"{'GPU': 'AMD Radeon Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" -241520,LPMSI00579,"MSI Stealth 14Studio Gaming Notebook 14"" QHD+ Intel i7-13620H GeForce RTX 4060 16GB 1TB SSD Windows 11 Home, A13VF-053CA",MSI,"['Laptops, Tablet', None, None, None]",2099.0,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '14""'}" -241510,LPMSI00578,"MSI Modern 14 Consumer Notebook 14"" Intel i5-1335u 16GB 512GB SSD Windows 11 Home",MSI,"['Laptops, Tablet', None, None, None]",899.0,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1080p Full HD', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '14""'}" -241455,LPLEN03462,"Lenovo ThinkBook 14s Yoga 14"" Touchscreen Convertible FHD Intel Core i5-1335U 16GB 256GB SSD Mineral Gray Windows 11 Pro",LENOVO,"['Laptops, Tablet', None, None, None]",1299.0,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '21JG0019US', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'ThinkBook', 'General InformationProduct Series': '14s Yoga G3 IRU'}" -241443,LPHEW02045OB,"HP Consumer Laptop 17.3"" FHD, Intel i5-1135G7, Intel Iris Xe, 16GB, 512GB SSD, Windows 11 Home, 17-cn0002ca(Open Box)",HP,"['Laptops, Tablet', None, None, None]",854.05,"{'Touch Screen': 'No', 'Hard Drive Capacity': 'None', 'GPU': 'Intel Iris Xe', 'Maximum Resolution': 'FHD', 'Operating System': 'Windows 11 Home', 'Memory': '16GB'}" -241436,LPMSI00560OB,"MSI Thin GF63 Gaming Notebook 15.6"" FHD Intel i5-12450H GeForce RTX 4060 16GB 512GB SSD Windows 11 Home,12VF-275CA(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",1079.1,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" -241433,LPMSI00576,"MSI CREATOR Z16 Creator Notebook 16"" QHD Intel i7-13700HX GeForce RTX 4060 32GB 1TB SSD Windows11 Pro .",MSI,"['Laptops, Tablet', None, None, None]",2999.0,"{'Memory': '32GB', 'Screen Size': '16""', 'Operating System': 'Windows11 Pro', 'Maximum Resolution': '2560 x 1600', 'Refresh Rate': '120Hz', 'SSD Capacity': '1TB'}" -241430,LPMSI00563OB,"MSI Modern 15 Notebook 15.6"" FHD Intel i5-1155G7 Intel Iris Xe 16GB 512GB SSD Windows 11 Home, B11M-046CA(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",569.05,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" -241410,LPHEW02028OB,"HP Consumer Laptop 15.6"" FHD AMD Ryzen 7 7730U AMD Radeon Graphics 16GB 1TB SSD Windows 11 Home, 15-fc0040ca(Open Box)",HP,"['Laptops, Tablet', None, None, None]",806.55,"{'Memory': '16GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1080p Full HD', 'SSD Capacity': '1TB', 'CPU': 'Ryzen 7 7730U'}" -241409,LPLGE00030OB,"LG Gram Consumer Notebook 14"" WUXGA Intel i7-1360P Intel Iris Xe 16GB 512GB SSD Windows 11 Home, 14Z90R-K.AA75A9(Open Box)",LG,"['Laptops, Tablet', None, None, None]",1519.05,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1200', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '14""'}" -241324,LPASU00726OB,"ASUS ROG Flow Gaming Notebook 13.4"" WQXGA AMD Ryzen 9 7940HS RTX 4050 16GB 1TB SSD Windows 11 Home, GV302XU-DS91T-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",1979.1,"{'GPU': 'RTX\xa04050', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '13.4""'}" -241260,LPLEN03437OB,"Lenovo Legion Pro 5 Gaming Notebook 16"" Intel i9-13900HX GeForce RTX 4070 16GB 512GB SSD Windows 11 Home, 82WK00D5CC(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",2249.1,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}" -241259,LPASU00686OB,"ASUS TUF Gaming Notebook 16"" FHD AMD Ryzen 7 7735HS AMD Radeon RX 7600S 16GB 1TB SSD Windows 11 Home, FA617NS-DS71-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",1349.1,"{'GPU': 'AMD\xa0Radeon RX\xa07600S', 'Refresh Rate': '144Hz', 'Maximum Resolution': '1920X1200', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB'}" -241258,LPGIG00154OB,"Gigabyte AERO 14 Gaming Notebook 14"" QHD Intel Core i7-13700H GeForce RTX 4050 16GB 1TB SSD Windows 11 Home, BMF-72USBB4SH(Open Box)",GIGABYTE,"['Laptops, Tablet', None, None, None]",1709.1,"{'GPU': 'GeForce RTX 4050', 'Maximum Resolution': '2880x1800', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '14""'}" -240967,LPACE00969,"Acer Nitro 5 Gaming Notebook 15.6"" FHD Intel i5-11400H GeForce GTX 1650 8GB 512GB SSD Windows 11 Home,",ACER,"['Laptops, Tablet', None, None, None]",699.0,"{'GPU': 'GeForce GTX 1650', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11', 'Memory': '8GB', 'Screen Size': '15.6""'}" -240858,LPMSI00568OB,"MSI Modern Consumer Notebook 15.6"" FHD Intel i5-1235U Intel Iris Xe 16GB 512GB SSD Windows 11 Home .(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",830.18999938965,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" -240698,LPMSI00541OB,"MSI Thin GF63 Gaming Notebook 15.6"" FHD Intel i7-12650H GeForce RTX 3050 16GB 512GB SSD Windows 11 Home, 12UDX-038CA(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",899.1,"{'GPU': 'GeForce RTX 3050', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" -240697,LPLEN03433OB,"Lenovo Legion Pro 5 Gaming Laptop 16"" AMD Ryzen 7 7745HX GeForce RTX 4070 16GB 1TB SSD Windows 11 Home, 82WM005YCC(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",1619.1,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}" -240655,LPGIG00135OB,"Gigabyte AERO 16 XE4 Gaming Notebook 16"" UHD Intel Core i7-12700H GeForce RTX 3070 Ti 16GB 2TB SSD Windows 11 Pro, XE4-73US918HP(Open Box)",GIGABYTE,"['Laptops, Tablet', None, None, None]",1079.1,"{'Memory': '16GB', 'Screen Size': '16""', 'Operating System': 'Windows 11 Pro', 'Maximum Resolution': '3840x2400', 'Refresh Rate': '60Hz', 'SSD Capacity': '2TB'}" -240528,LPHEW02021OB,"HP Consumer Laptop 14"" FHD AMD Ryzen 3 7320U, Radeon Graphics, 8GB RAM, 256GB SSD, Windows 11 Home, 14-em0030ca(Open Box)",HP,"['Laptops, Tablet', None, None, None]",474.05,"{'Memory': '8GB', 'Model': '14-em0030ca', 'Screen Size': '14""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': 'FHD', 'SSD Capacity': '256GB'}" -240332,LPHEW02035OB,"HP Omen 16-wd0010ca Gaming Notebook 16.1"" FHD Intel i7-13620H GeForce RTX 4060 16GB 1TB SSD Windows 11 Home(Open Box)",HP,"['Laptops, Tablet', None, None, None]",1259.1,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16.1""'}" -240324,LPLEN03442,"LENOVO IdeaPad Flex 5 Consumer Notebook 14"" Touchscreen AMD Ryzen 3 5300U 4GB 128GB SSD Windows 10 S, 82HU0159US",LENOVO,"['Laptops, Tablet', None, None, None]",379.0,"{'GPU': 'AMD Radeon Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'Yes', 'Operating System': 'Windows 10 S', 'Memory': '4GB', 'Screen Size': '14""'}" -240234,LPMSI00498OB,"MSI SUMMIT E14 Business Notebook 14"" FHD Intel i7-1280P Iris Xe Graphics 16GB 1TB SSD Windows 11 Home .(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",1141.7899938965,"{'Memory': '16GB', 'Screen Size': '14""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1200', 'Refresh Rate': '60Hz', 'SSD Capacity': '1TB'}" -240174,LPASU00716OB,"ASUS TUF F15 Gaming Notebook 15.6"" FHD Intel i7-12700H RTX 3050 16GB 512GB SSD Windows 11 Home, FX507ZC4-DS71-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",989.1,"{'GPU': 'RTX\xa03050', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" -240130,LPHEW02017OB,"HP Pavilion Consumer Notebook 15.6"" FHD Intel i5-1240P Intel Iris Xe 8GB 512GB SSD Windows 11 Home, 15-EG2002CA(Open Box)",HP,"['Laptops, Tablet', None, None, None]",599.34000854492,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': 'FHD', 'SSD Capacity': '512GB', 'CPU': 'i5-1240P'}" -240099,LPGIG00160OB,"Gigabyte G5 Gaming Notebook 15.6"" FHD Intel i5-12450H GeForce RTX 4050 16GB 512GB SSD Windows 11 Home, MF-F2US313SH(Open Box)",GIGABYTE,"['Laptops, Tablet', None, None, None]",809.1,"{'GPU': 'GeForce RTX 4050', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" -240049,LPHEW02045,"HP Consumer Laptop 17.3"" FHD, Intel i5-1135G7, Intel Iris Xe, 16GB, 512GB SSD, Windows 11 Home, 17-cn0002ca",HP,"['Laptops, Tablet', None, None, None]",899.0,"{'Touch Screen': 'No', 'Hard Drive Capacity': 'None', 'GPU': 'Intel Iris Xe', 'Maximum Resolution': 'FHD', 'Operating System': 'Windows 11 Home', 'Memory': '16GB'}" -239972,LPLGE00027OB,"LG gram Ultra-Lightweight EVO Platform Notebook, 17"" WQXGA, Intel i5-1240P, Intel Iris Xe Graphics, 8GB, 512GB SSD, Windows 11 Home, 17Z90Q-K.AR55A9(Open Box)",LG,"['Laptops, Tablet', None, None, None]",1109.4899984741,"{'Notebook Type': 'Consumer', 'Notebook Chassis': 'Thin and Light', 'Screen Size': '17""', 'Maximum Resolution': '2560 x 1600', 'Refresh Rate': '60Hz', 'CPU': 'i5-1240P'}" -239909,LPMSI00567,"MSI Thin 15.6"" GF63 Gaming Notebook, FHD, Intel Core i5-12450H, GeForce RTX 4060, 16GB RAM, 512GB SSD, Windows 11 Home",MSI,"['Laptops, Tablet', None, None, None]",1599.0,"{'General InformationManufacturer': 'MSI', 'General InformationManufacturer Part Number': 'THIN GF63 12VF-288CA', 'General InformationManufacturer Website Address': 'http://www.msi.com', 'General InformationBrand Name': 'MSI', 'General InformationProduct Series': 'Thin GF63 12V', 'General InformationProduct Model': 'Thin GF63 12VF-288CA'}" -239787,LPLEN03437,"Lenovo Legion Pro 5 Gaming Notebook 16"" Intel i9-13900HX GeForce RTX 4070 16GB 512GB SSD Windows 11 Home, 82WK00D5CC",LENOVO,"['Laptops, Tablet', None, None, None]",2499.0,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}" -239781,LPLEN03434,"Lenovo Legion Pro 5 Gaming Notebook 16"" AMD Ryzen 7 7745HX GeForce RTX 4060 16GB 512GB SSD Windows 11 Home, 82WM005XCC",LENOVO,"['Laptops, Tablet', None, None, None]",1499.0,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}" -239771,LPLEN03427,"Lenovo IdeaPad 1 15AMN7 Consumer Notebook 15.6"" HD AMD Athlon Gold 7220U AMD Radeon 610M Graphics 4GB 128GB SSD Windows 11 S, 82VG00EGCC",LENOVO,"['Laptops, Tablet', None, None, None]",449.99,"{'GPU': 'AMD Radeon 610M Graphics', 'Maximum Resolution': '1366 x 768', 'Touch Screen': 'No', 'Operating System': 'Windows 11 S', 'Memory': '4GB', 'Screen Size': '15.6""'}" -239765,LPLEN03426,"Lenovo IP Slim 3 Chrome 14M868 Consumer Notebook 14"" FHD MediaTek Kompanio 520 ARM Mali-G52 2EE MC2 GPU 4GB HDD Chrome OS,82XJ001GCC",LENOVO,"['Laptops, Tablet', None, None, None]",479.99,"{'GPU': 'ARM Mali-G52 2EE MC2 GPU', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'Yes', 'Operating System': 'Chrome OS', 'Memory': '4GB', 'Screen Size': '14""'}" -239749,LPACE00965,"Acer Nitro 16"" Gaming Notebook FHD AMD Ryzen 7 7735HS GeForce RTX 4050 16GB 1TB SSD Windows 11 Home, NH.QKBAA.001",ACER,"['Laptops, Tablet', None, None, None]",1899.0,"{'GPU': 'GeForce RTX 4050', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}" -239746,LPACE00963,"Acer AN515-58-7578 Gaming Notebook 15.6"" FHD Intel i7-12650H GeForce RTX 4050 16GB 1TB SSD Windows 11 Home, NH.QLZAA.004",ACER,"['Laptops, Tablet', None, None, None]",1699.99,"{'GPU': 'GeForce RTX 4050', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" -239719,LPMSI00554,"MSI Vector GP77 Gaming Notebook 17.3"" QHD Intel i7-13700H GeForce RTX 4070 16GB 1TB SSD Windows 11 Home, 13VG-033CA",MSI,"['Laptops, Tablet', None, None, None]",2899.0,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '2560 x 1440', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '17.3""'}" -239700,LPMSI00552,"MSI Raider GE78HX Gaming Notebook 17.3"" QHD Intel i7-13700HX GeForce RTX 4070 32GB 1TB SSD Windows 11 Home, 13VG-026CA",MSI,"['Laptops, Tablet', None, None, None]",3299.0,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '32GB', 'Screen Size': '17.3""'}" -239699,LPMSI00551,"MSI Stealth 17Studio Gaming Notebook 17.3"" QHD Intel i7-13700H GeForce RTX 4070 32GB 1TB SSD Windows 11 Pro, A13VG-020CA",MSI,"['Laptops, Tablet', None, None, None]",3299.0,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '2560 x 1440', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '32GB', 'Screen Size': '17.3""'}" -239697,LPMSI00550,"MSI Raider GE78HX Gaming Notebook 17"" QHD Intel i9-13980HX GeForce RTX 4070 32GB 2TB SSD Windows 11 Professional,",MSI,"['Laptops, Tablet', None, None, None]",3399.0,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '32GB', 'Screen Size': '17.3""'}" -239694,LPMSI00549,"MSI Vector GP78HX Gaming Notebook 17"" QHD Intel i7-13700HX GeForce RTX 4080 32GB 1TB SSD Windows 11 Home",MSI,"['Laptops, Tablet', None, None, None]",3399.0,"{'GPU': 'GeForce RTX 4080', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '32GB', 'Screen Size': '17""'}" -239501,LPASU00752OB,"Asus Vivobook 17 Consumer Notebook 17.3"" FHD Intel i7-1165G7 Intel Iris Xe Graphics 8GB 512GB SSD Windows 11 Home, X712EA-MS72-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",664.05,"{'GPU': 'Intel Iris Xe Graphics', 'Maximum Resolution': '1080p Full HD', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '17.3""'}" -239476,LPASU00688OB,"ASUS TUF Gaming F15 Gaming Laptop 15.6"" FHD Intel Core i9-13900H GeForce RTX 4050 16GB 512GB SSD Windows 11 Home, FX507VU-DS91-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",1259.1,"{'GPU': 'GeForce\xa0RTX\xa04050', 'Maximum Resolution': '1080p Full HD', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" -239359,LPLEN03414OB,"Lenovo IdeaPad Consumer Notebook 14"" HD Intel i3-1215U Intel HD Graphics 4GB 128GB SSD Windows 11 S, 82QC003VUS(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",312.55,"{'GPU': 'Intel HD Graphics', 'Maximum Resolution': '1366 x 768', 'Touch Screen': 'No', 'Operating System': 'Windows 11 S', 'Memory': '4GB', 'Screen Size': '14""'}" -239101,LPACE00888OB,"Acer TravelMate P2 14"" Business Notebook , FHD, Intel Core i5-1135G7,8 GB RAM, 256 GB SSD, Windows 11 Pro, Intel Iris Xe Graphics, NX.VPKAA.00K(Open Box)",ACER,"['Laptops, Tablet', None, None, None]",474.05,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': 'FHD', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '8GB', 'Screen Size': '14""'}" -239044,LPLEN03352OB,"Lenovo ThinkBook 15 G3 Notebook, 15.6"" FHD, AMD Ryzen 5 5500U, 8GB DDR4, 256GB SSD, AMD Radeon Graphics, Fingerprint Reader, Windows 10 Pro(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",569.05,"{'Storage Type': 'SSD', 'CPU Brand': 'Intel', 'Product Condition': 'New', 'Screen Resolution Description': 'FHD', 'Memory': '8GB', 'Screen Size': '15.6""'}" -238915,LPASU00768,"ASUS Zenbook Pro 16X OLED Gaming Notebook 16"" OLED Intel i9-13905H GeForce RTX 4080 32GB 1TB SSD Windows 11 Pro, UX7602BZ-XB91T-CA",ASUS,"['Laptops, Tablet', None, None, None]",4199.0,"{'GPU': 'GeForce RTX 4080', 'Refresh Rate': '120Hz', 'Maximum Resolution': '3200 x 2000', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Pro', 'Memory': '32GB'}" -238700,LPMSI00544,"MSI Titan Gaming Notebook 17.3"" UHD Intel i9-13980HX GeForce RTX 4090 64GB 2TB SSD Windows 11 Pro, GT77HX 13VI-028US",MSI,"['Laptops, Tablet', None, None, None]",6449.0,"{'GPU': 'GeForce RTX 4090', 'Maximum Resolution': '3840 x 2160', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '64GB', 'Screen Size': '17.3""'}" -238490,LPASU00724OB,"ASUS ROG Zephyrus Gaming Notebook 16"" WQXGA Intel i9-13900H GeForce RTX 4070 32GB 1TB SSD Windows 11 Home, GU604VI-DS92-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",2249.1,"{'Refresh Rate': '240Hz', 'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '2560X1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '32GB'}" -238482,LPLGE00024OB,"LG Gram Ultra-Lightweight Notebook, 15.6"" FHD, Intel i7-1260P, Intel Iris Xe Graphics, 16GB, 512GB SSD, Windows 11 Home, 15Z90Q-P.AA75A9(Open Box)",LG,"['Laptops, Tablet', None, None, None]",1355.5400015259,"{'Notebook Type': 'Consumer', 'Notebook Chassis': 'Thin and Light', 'Screen Size': '15.6""', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'CPU': 'i7-1260P'}" -238422,LPACE00945OB,"Acer Aspire 15.6"" Consumer Notebook Intel i5-10210U 8GB 256GB SSD Windows 11, A515-54-54B9, NX.HN2AA.008(Open Box)",ACER,"['Laptops, Tablet', None, None, None]",415.04000549316,"{'Storage Type': 'SSD', 'CPU Brand': 'Intel', 'Product Condition': 'New', 'Screen Resolution Description': 'FHD', 'Model': 'A515-54-54B9', 'Memory': '8GB'}" -238336,LPLEN03414,"Lenovo IdeaPad Consumer Notebook 14"" HD Intel i3-1215U Intel HD Graphics 4GB 128GB SSD Windows 11 S, 82QC003VUS",LENOVO,"['Laptops, Tablet', None, None, None]",329.0,"{'GPU': 'Intel HD Graphics', 'Maximum Resolution': '1366 x 768', 'Touch Screen': 'No', 'Operating System': 'Windows 11 S', 'Memory': '4GB', 'Screen Size': '14""'}" -238330,LPGIG00149OB,"Gigabyte AORUS 15X Gaming Notebook 15.6"" QHD Intel i9-13900HX GeForce RTX 4070 16GB 1TB SSD Windows 11 Home, ASF-B3US754SH(Open Box)",GIGABYTE,"['Laptops, Tablet', None, None, None]",1979.89,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '2560x1440', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" -238182,LPGIG00159,"Gigabyte AORUS Gaming Notebook 17.3"" FHD Intel i5-12500H GeForce RTX 4060 16GB 512GB SSD Windows 11 Home, 9KF-E3US513SH",GIGABYTE,"['Laptops, Tablet', None, None, None]",1599.0,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '17.3""'}" -238178,LPGIG00158,"Gigabyte AORUS Gaming Notebook 15.6"" FHD Intel i5-12500H GeForce RTX 4050 8GB 512GB SSD Windows 11 Home, 9MF-E2US383SH",GIGABYTE,"['Laptops, Tablet', None, None, None]",1499.0,"{'GPU': 'GeForce RTX 4050', 'Maximum Resolution': '1080p Full HD', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '15.6""'}" -238124,LPLGE00035,"LG Gram Consumer Notebook 16"" WQXGA Intel i7-1360P Intel Iris Xe 16GB 512GB SSD Windows 11 Home, 16T90R-K.AA75A9",LG,"['Laptops, Tablet', None, None, None]",2299.99,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}" -238122,LPLGE00034,"LG Gram Consumer Notebook 17"" WQXGA Intel i7-1360P GeForce RTX 3050 16GB 1TB SSD Windows 11 Home,17Z90R-A.AA78A9",LG,"['Laptops, Tablet', None, None, None]",1999.99,"{'GPU': 'GeForce RTX 3050', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '17""'}" -238052,LPASU00734OB,"ASUS Zenbook 14X Consumer Notebook 14"" OLED Intel i7-1260P GeForce MX550 16GB 512GB SSD Windows 11 Home, UX5400ZB-DS72T-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",1519.05,"{'GPU': 'GeForce\xa0MX550', 'Maximum Resolution': '2880 x 1800', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '14""'}" -237797,LPASU00707OB,"ASUS Zenbook OLED Touchscreen Consumer Notebook 14"" WQXGA AMD Ryzen 7 7730U AMD Radeon 16GB 1TB SSD Windows 11 Home, UM3402YAR-DS71T-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",1139.05,"{'GPU': 'AMD Radeon', 'Maximum Resolution': '2880X1800', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '14""'}" -237644,LPMSI00540OB,"MSI Thin GF63 Gaming Notebook 15.6"" FHD Intel i7-12650H GeForce RTX 4050 16GB 512GB SSD Windows 11 Home, 12VE-033CA(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",1349.1,"{'GPU': 'GeForce RTX 4050', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" -237622,LPGIG00147OB,"Gigabyte G5 Gaming Laptop 15.6"" FHD, Intel i5-12500H, GeForce RTX 4060, 8GB RAM, 512GB SSD, Windows 11 Home, G5 KF-E3US333SH(Open Box)",GIGABYTE,"['Laptops, Tablet', None, None, None]",899.1,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '1080p Full HD', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '15.6""'}" -237594,LPLEN03269OB,"Lenovo IdeaPad 3 Consumer Notebook 15.6"" FHD AMD Ryzen 7 5825U Integrated Radeon Graphics 8GB 256GB SSD Windows 11 Home, 082RN0013CC(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",522.39,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1080p Full HD', 'Refresh Rate': '60Hz', 'SSD Capacity': '256GB'}" -237454,LPASU00735OB,"ASUS Vivobook 16X 4K OLED Notebook 16"" Intel i5-12500H Iris Xe Graphics 16GB 512GB SSD Windows 11 Home, X1603ZA-DS51-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",944.18999938965,"{'GPU': 'Iris Xe Graphics', 'Maximum Resolution': '3840 x 2400', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}" -237370,LPMSI00481OB,"MSI Raider GE76 Gaming Notebook 17.3"" FHD Intel i9-12900HK RTX3080TI 32GB 1TB SSD Windows 11 Pro .(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",2173.39,"{'Memory': '32GB', 'Screen Size': '17.3""', 'Operating System': 'Windows 11 Pro', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '360Hz', 'SSD Capacity': '1TB'}" -237290,LPCNO00060OB,"ASUS ZenBook Consumer Notebook 15.6"" FHD AMD Ryzen 7 5700U GeForce MX450 8GB 256GB SSD Windows 11 Home, Q508UG-212.R7TBL(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",569.89,"{'GPU': 'GeForce MX450', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '15.6""'}" -237289,LPMSI00539OB,"MSI Katana 15 Gaming Laptop 15.6"" FHD Intel i7-12650H GeForce RTX 4060 16GB 1TB SSD Windows 11 Home, B12VFK-237CA(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",1259.1,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" -237089,LPACE00959,"Acer PH16-71-71AV Consumer Notebook 16"" QHD Intel i7-13700HX GeForce RTX 4060 16GB 1024GB SSD Windows 11, NH.QJQAA.002",ACER,"['Laptops, Tablet', None, None, None]",2299.99,"{'GPU': 'GeForce RTX 4060', 'Refresh Rate': '165Hz', 'Maximum Resolution': '1080p Full HD', 'Touch Screen': 'No', 'Operating System': 'Windows 11', 'Memory': '16GB'}" -237088,LPACE00958,"Acer PHN16-71-788N Consumer Notebook 16"" FHD Intel i7-13700HX GeForce RTX 4060 16GB 1024GB SSD Windows 11,NH.QLUAA.001",ACER,"['Laptops, Tablet', None, None, None]",2099.99,"{'GPU': 'GeForce RTX 4060', 'Refresh Rate': '165Hz', 'Maximum Resolution': '1080p Full HD', 'Touch Screen': 'No', 'Operating System': 'Windows 11', 'Memory': '16GB'}" -237087,LPACE00957,"Acer AN16-51-74BV Consumer Notebook 16"" FHD Intel i7-13700H GeForce RTX 4050 16GB 1024GB SSD Windows 11, NH.QJMAA.002",ACER,"['Laptops, Tablet', None, None, None]",1899.99,"{'GPU': 'GeForce RTX 4050', 'Refresh Rate': '165Hz', 'Maximum Resolution': '1080p Full HD', 'Touch Screen': 'No', 'Operating System': 'Windows 11', 'Memory': '16GB'}" -237085,LPACE00955,"ACER Nitro Gaming Notebook 15.6"" FHD Intel i5-12500H GeForce RTX 4050 8GB 512GB SSD Windows 11 . NH.QLZAA.005",ACER,"['Laptops, Tablet', None, None, None]",1399.99,"{'GPU': 'GeForce RTX 4050', 'Refresh Rate': '144Hz', 'Maximum Resolution': '1080p Full HD', 'Touch Screen': 'No', 'Operating System': 'Windows 11', 'Memory': '8GB'}" -237082,LPACE00953,"Acer Nitro Gaming Notebook 15.6"" FHD AMD Ryzen R5-7535HS GeForce RTX 3050 8GB 512GB SSD Windows 11, NH.QL5AA.001",ACER,"['Laptops, Tablet', None, None, None]",799.0,"{'GPU': 'GeForce RTX 3050', 'Refresh Rate': '144Hz', 'Maximum Resolution': '1080p Full HD', 'Touch Screen': 'No', 'Operating System': 'Windows 11', 'Memory': '8GB'}" -237081,LPACE00952,"ACER Nitro 5 Gaming Notebook 15.6"" FHD Intel i5-12450H GeForce RTX 3050 8GB 512GB SSD Windows 11 .",ACER,"['Laptops, Tablet', None, None, None]",1199.99,"{'GPU': 'GeForce RTX 3050', 'Refresh Rate': '144Hz', 'Maximum Resolution': '1080p Full HD', 'Touch Screen': 'No', 'Operating System': 'Windows 11', 'Memory': '8GB'}" -237053,LPACE00948,"Acer A317-53-591M Consumer Notebook 17.3"" Intel i5-1135G7 Integrated GPU 8GB 512GB SSD Windows 11, NX.AD0AA.009",ACER,"['Laptops, Tablet', None, None, None]",999.0,"{'GPU': 'Integrated GPU', 'Maximum Resolution': '1600 x 900', 'Touch Screen': 'No', 'Operating System': 'Windows 11', 'Memory': '8GB', 'Screen Size': '17.3""'}" -237044,LPGIG00124OB,"Gigabyte AERO 16 XE5 Gaming Notebook, 16"" UHD, Intel Core i7-12700H, NVIDIA GeForce RTX 3070 Ti, 32GB, 2 TB SSD, Windows 11 Pro, AERO 16 XE5-73US948HP(Open Box)",GIGABYTE,"['Laptops, Tablet', None, None, None]",1349.89,"{'Storage Type': 'SSD', 'CPU Brand': 'Intel', 'Product Condition': 'New', 'Screen Resolution Description': 'UHD', 'Memory': '32GB', 'Screen Size': '16""'}" -237036,LPACE00946,"Acer 15.6"" Consumer Notebook FHD Intel i5-1135G7 Intel Iris 8GB 512GB SSD Windows 11, NX.A1HAA.00G",ACER,"['Laptops, Tablet', None, None, None]",486.88,"{'GPU': 'Intel Iris', 'Maximum Resolution': '1080p Full HD', 'Touch Screen': 'No', 'Operating System': 'Windows 11', 'Memory': '8GB', 'Screen Size': '15.6""'}" -236910,LPACE00945,"Acer Aspire 15.6"" Consumer Notebook Intel i5-10210U 8GB 256GB SSD Windows 11, A515-54-54B9, NX.HN2AA.008",ACER,"['Laptops, Tablet', None, None, None]",436.88000488281,"{'Storage Type': 'SSD', 'CPU Brand': 'Intel', 'Product Condition': 'New', 'Screen Resolution Description': 'FHD', 'Model': 'A515-54-54B9', 'Memory': '8GB'}" -236834,LPMSI00538OB,"MSI Katana 17 Gaming Notebook 17.3"" FHD Intel i7-12650H GeForce RTX 4070 16GB 1TB SSD Windows 11 Home, Katana 17 B12VGK-217CA(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",1799.1,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '17.3""'}" -236578,LPHEW02012,"ASUS Chromebook 11.6"" HD+ Intel Celeron-N4020 Intel UHD Graphics 4GB 32GB eMMC SSD Chrome OS Refurbished, C204MA-SS02-CB",ASUS,"['Laptops, Tablet', None, None, None]",99.0,"{'Storage Type': 'SSD', 'CPU Brand': 'Intel', 'Product Condition': 'Refurbished', 'Product Condition Short': 'Refurb', 'Screen Resolution Description': 'HD+', 'Model': 'C204MA-SS02-CB'}" -236567,LPGIG00144OB,"Gigabyte AORUS 17X Gaming Notebook 17.3"" QHD Intel Core i9-13900HX RTX 4090 32GB 2TB SSD Windows 11 Pro, AZF-B5US665SP(Open Box)",GIGABYTE,"['Laptops, Tablet', None, None, None]",3644.8900085449,"{'GPU': 'RTX 4090', 'Maximum Resolution': '2560x1440', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '32GB', 'Screen Size': '17.3""'}" -236463,LPASU00685OB,"ASUS VivoBook 14"" Laptop FHD Intel Core i3-1115G4 Intel UHD Graphics 4GB 128GB SSD Windows 11 Home S, F415EA-AS31(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",284.05,"{'GPU': 'Intel UHD Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home S', 'Memory': '4GB', 'Screen Size': '14""'}" -236431,LPLEN03352,"Lenovo ThinkBook 15 G3 Notebook, 15.6"" FHD, AMD Ryzen 5 5500U, 8GB DDR4, 256GB SSD, AMD Radeon Graphics, Fingerprint Reader, Windows 10 Pro",LENOVO,"['Laptops, Tablet', None, None, None]",599.0,"{'Storage Type': 'SSD', 'CPU Brand': 'Intel', 'Product Condition': 'New', 'Screen Resolution Description': 'FHD', 'Memory': '8GB', 'Screen Size': '15.6""'}" -236379,LPLEN03339,"Lenovo ThinkPad T14s Gen 2 14"" Notebook AMD Ryzen 5 PRO 5650U 8GB 256 GB SSD Windows 11 Pro, 20XF00AECA",LENOVO,"['Laptops, Tablet', None, None, None]",1430.2,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '20XF00AECA', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'ThinkPad', 'General InformationProduct Series': 'T14s Gen 2'}" -236378,LPLEN03338,"Lenovo ThinkPad T14s Gen 2 20XF00AEUS 14"" Notebook - Full HD - 1920 x 1080 - AMD Ryzen 5 PRO 5650U Hexa-core (6 Core) 2.30 GHz - 8 GB Total RAM - 8 GB On-board Memory - 256 GB SSD - Storm Gray - AMD Chip - Windows 11 - AMD Radeon Graphics - In-plane Switc",LENOVO,"['Laptops, Tablet', None, None, None]",999.0,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '20XF00AEUS', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'ThinkPad', 'General InformationProduct Series': 'T14s Gen 2'}" -236231,LPGIG00146OB,"Gigabyte AORUS 17H Gaming Notebook 17.3"" FHD Intel i7-13700H RTX 4080 16GB 1TB SSD Windows 11 Home, BXF-74US554SH(Open Box)",GIGABYTE,"['Laptops, Tablet', None, None, None]",2249.1,"{'GPU': 'RTX 4080', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '17.3""'}" -236120,LPGIG00153,"Gigabyte G5 MF Gaming Notebook 15.6"" FHD Intel i5-12450H GeForce RTX 4050 8GB 512GB SSD Windows 11 Home, G5 MF-F2US333SH",GIGABYTE,"['Laptops, Tablet', None, None, None]",1349.0,"{'GPU': 'GeForce RTX 4050', 'Maximum Resolution': '1080p Full HD', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '15.6""'}" -236096,LPGIG00150,"Gigabyte AORUS 15X Gaming Notebook 15.6"" QHD Intel i7-13700HX GeForce RTX 4070 16GB 1TB SSD Windows 11 Home, ASF-83US754SH",GIGABYTE,"['Laptops, Tablet', None, None, None]",2399.0,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '2560 x 1440', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" -235945,LPLEN02684OB,"Lenovo ThinkPad X1 Yoga Gen 5 Business 2 in 1 Notebook, 14"" Touchscreen, Full HD 1920 x 1080, Intel Core i5-10210U, 16 GB, 256 GB SSD, Windows 10 Pro, 20UB0067US(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",931.92000068665,"{'Memory': '16GB', 'Screen Size': '14""', 'Operating System': 'Windows 10 Pro', 'Maximum Resolution': '1080p Full HD', 'Refresh Rate': '60Hz', 'SSD Capacity': '256GB'}" -235934,LPLEN03299OB,"Lenovo ThinkPad T14 Gen 2 Notebook, 14"" Full HD, Intel Core i5-1135G7, GeForce MX450 2GB, 8GB RAM, 256GB SSD, Windows 11 Pro, 3Yr Lenovo On-site Warranty, 20W1SBJG00(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",759.89,"{'GPU': 'GeForce MX450', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '8GB', 'Screen Size': '14""'}" -235931,LPMSI00530OB,"MSI Katana GF66 Gaming Notebook 15.6"" FHD Intel i5-11400H GeForce RTX 3050 8GB 512GB SSD Windows 11 Home,11UC-1091US(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",651.48999847412,"{'GPU': 'GeForce RTX 3050', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '15.6""'}" -235850,LPACE00943,"Acer A515-56-351F Consumer Notebook 15.6"" FHD Intel Ci3-1115G4 Integrated GPU 8GB 256GB SSD Windows 11 S, NX.AWEAA.003",ACER,"['Laptops, Tablet', None, None, None]",749.0,"{'GPU': 'Integrated GPU', 'Maximum Resolution': '1080p Full HD', 'Touch Screen': 'No', 'Operating System': 'Windows 11 S', 'Memory': '8GB', 'Screen Size': '15.6""'}" -235849,LPACE00942,"ACER A315-56-54YT Consumer Notebook 15.6"" FHD Intel Core i5-1035G1 Integrated Graphic 8GB 256GB SSD Windows 11, NX.A0TAA.00G",ACER,"['Laptops, Tablet', None, None, None]",749.0,"{'GPU': 'Integrated Graphic', 'Maximum Resolution': '1080p Full HD', 'Touch Screen': 'No', 'Operating System': 'Windows 11', 'Memory': '8GB', 'Screen Size': '15.6""'}" -235806,LPCNO00060,"ASUS ZenBook Consumer Notebook 15.6"" FHD AMD Ryzen 7 5700U GeForce MX450 8GB 256GB SSD Windows 11 Home, Q508UG-212.R7TBL",ASUS,"['Laptops, Tablet', None, None, None]",599.88,"{'GPU': 'GeForce MX450', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '15.6""'}" -235786,LPLEN03312,"Lenovo T490 Business Notebook 14"" FHD Intel i5-8265U Intel UHD Graphics 16GB 256GB SSD Windows 10 Pro Refurbished",LENOVO,"['Laptops, Tablet', None, None, None]",399.0,"{'GPU': 'Intel UHD Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 10 Pro', 'Memory': '16GB', 'Screen Size': '14""'}" -235465,LPGIG00142OB,"Gigabyte G Series Gaming Notebook 15.6"" FHD Intel i5-12500H GeForce RTX 3060 16GB 512GB SSD Windows 11 Home, G5 KE-52US213SH(Open Box)",GIGABYTE,"['Laptops, Tablet', None, None, None]",899.89,"{'GPU': 'GeForce RTX 3060', 'Maximum Resolution': '1080p Full HD', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" -235464,LPMSI00543,"MSI Katana GF76 Gaming Notebook 17.3"" FHD Intel i7-11800H GeForce RTX 3050 Ti 16GB 512GB SSD Windows 10 Home .",MSI,"['Laptops, Tablet', None, None, None]",1199.0,"{'GPU': 'GeForce RTX 3050 Ti', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 10 Home', 'Memory': '16GB', 'Screen Size': '17.3""'}" -235356,LPLEN03308,"Lenovo ThinkPad T14 Gen 2 Business Notebook, 14"" Full HD, Intel Core i5-1135G7, MX450 2GB, 16GB RAM, 256GB + 512GB SSD, Windows 11 Pro, 3Yr On-site Warranty",LENOVO,"['Laptops, Tablet', None, None, None]",1799.0,"{'GPU': 'GeForce MX450', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '16GB', 'Screen Size': '14""'}" -235353,LPLEN03307,"Lenovo ThinkPad T14 Gen 2 Business Notebook, 14"" Full HD, Intel Core i5-1135G7, MX450 2GB, 16GB RAM, 256GB SSD, Windows 11 Pro, 3Yr On-site Warranty",LENOVO,"['Laptops, Tablet', None, None, None]",1599.0,"{'GPU': 'GeForce MX450', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '16GB', 'Screen Size': '14""'}" -235266,LPLEN03301,"Lenovo IdeaPad Flex 5 14"" Touchscreen Convertible Notebook, OLED 2.8K, Intel i7-1255U, 16GB RAM, 512GB SSD, Storm Gray, Windows 11 Home",LENOVO,"['Laptops, Tablet', None, None, None]",999.0,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '82R7000ECF', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'IdeaPad', 'General InformationProduct Series': 'Flex 5 14IAU7'}" -235125,LPACE00940,"Acer Nitro Gaming Notebook 15.6"" FHD Intel i7-12700H GeForce RTX 3060 16GB 512GB SSD Windows 11, NH.QFMAA.005-CC",ACER,"['Laptops, Tablet', None, None, None]",1399.0,"{'Model': 'AN515-58-7272-CA', 'Memory': '16GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11', 'Maximum Resolution': '1080p Full HD', 'Refresh Rate': '144Hz'}" -235121,LPASU00735,"ASUS Vivobook 16X 4K OLED Notebook 16"" Intel i5-12500H Iris Xe Graphics 16GB 512GB SSD Windows 11 Home, X1603ZA-DS51-CA",ASUS,"['Laptops, Tablet', None, None, None]",993.87999725342,"{'GPU': 'Iris Xe Graphics', 'Maximum Resolution': '3840 x 2400', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}" -235095,LPLEN03299,"Lenovo ThinkPad T14 Gen 2 Notebook, 14"" Full HD, Intel Core i5-1135G7, GeForce MX450 2GB, 8GB RAM, 256GB SSD, Windows 11 Pro, 3Yr Lenovo On-site Warranty, 20W1SBJG00",LENOVO,"['Laptops, Tablet', None, None, None]",799.88,"{'GPU': 'GeForce MX450', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '8GB', 'Screen Size': '14""'}" -235072,LPMSI00538,"MSI Katana 17 Gaming Notebook 17.3"" FHD Intel i7-12650H GeForce RTX 4070 16GB 1TB SSD Windows 11 Home, Katana 17 B12VGK-217CA",MSI,"['Laptops, Tablet', None, None, None]",1999.0,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '17.3""'}" -235071,LPMSI00537,"MSI Pulse 17 Gaming Notebook 17.3"" FHD Intel i7-13700H GeForce RTX 4070 16GB 1TB SSD Windows 11 Home, B13VGK-216CA",MSI,"['Laptops, Tablet', None, None, None]",1999.0,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '17.3""'}" -235034,LPASU00731,"ASUS ROG Flow Gaming Notebook 13.4"" WQXGA Intel i9-13900H RTX 4050 16GB 1TB SSD Windows 11 Home, GZ301VU-DS91T-CA",ASUS,"['Laptops, Tablet', None, None, None]",2499.0,"{'GPU': 'RTX\xa04050', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '13.4""'}" -234976,LPASU00728,"ASUS Zephyrus Duo Gaming Notebook 16"" WQXGA AMD Ryzen 9 7945HX RTX 4090 32GB 2TB SSD Windows 11 Pro, GX650PY-XS97",ASUS,"['Laptops, Tablet', None, None, None]",4999.0,"{'GPU': 'RTX\xa04090', 'Maximum Resolution': '2560X1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '32GB', 'Screen Size': '16""'}" -234830,LPMSI00534,"MSI Raider GE78 HX Gaming Notebook 17"" QHD Intel i9-13980HX GeForce RTX 4080 64GB 2TB SSD Windows 11 Pro, Raider GE78HX 13VH-080US",MSI,"['Laptops, Tablet', None, None, None]",4499.0,"{'GPU': 'GeForce RTX 4080', 'Maximum Resolution': '2560x1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '64GB', 'Screen Size': '17""'}" -234829,LPMSI00533,"MSI Raider GE78 HX Gaming Notebook 17"" QHD Intel i9-13980HX GeForce RTX 4090 32GB 2TB SSD Windows 11 Pro, GE78HX 13VI-079US",MSI,"['Laptops, Tablet', None, None, None]",4999.0,"{'GPU': 'GeForce RTX 4090', 'Maximum Resolution': '2560x1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '32GB', 'Screen Size': '17""'}" -234828,LPMSI00532,"MSI TITAN GT77 Gaming Notebook 17.3"" UHD Mini-LED 144Hz, Intel i9-13980HX GeForce RTX 4080 64GB 2TB SSD Windows 11 Pro, Titan GT77HX 13VH-046US",MSI,"['Laptops, Tablet', None, None, None]",5599.0,"{'GPU': 'GeForce RTX 4080', 'Maximum Resolution': '3840x2160', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '64GB', 'Screen Size': '17.3""'}" -234427,LPLEN03212OB,"Lenovo IdeaPad 5 Consumer Notebook 15.6"" FHD Intel Core i5-1235U Intel Iris Xe 8GB 512GB SSD Windows 11 Home, 82SF000UCC(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",664.89,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '15.6""'}" -234344,LPLEN03269,"Lenovo IdeaPad 3 Consumer Notebook 15.6"" FHD AMD Ryzen 7 5825U Integrated Radeon Graphics 8GB 256GB SSD Windows 11 Home, 082RN0013CC",LENOVO,"['Laptops, Tablet', None, None, None]",549.88,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1080p Full HD', 'Refresh Rate': '60Hz', 'SSD Capacity': '256GB'}" -234261,LPLEN03268,"Lenovo ThinkPad T580 15.6"" Business Notebook, Intel Core I5 8350U,16 GB RAM, 256 GB SSD, Windows 10 Pro, Refurbished",LENOVO,"['Laptops, Tablet', None, None, None]",399.88,"{'Maximum Resolution': '1080p Full HD', 'SSD Capacity': '256GB', 'CPU': 'i5-8350U', 'Notebook Type': 'Business Notebook', 'Notebook Chassis': 'Clamshell', 'Touch Screen': 'No'}" -233963,LPCOI00001OB,"CORSAIR VOYAGER Gaming Notebook 16"" QHD AMD Ryzen 7 6800HS Radeon 6800M 16GB 1TB SSD Windows 11 Home,CN-9000003-NA(Open Box)",CORSAIR,"['Laptops, Tablet', None, None, None]",989.89,"{'Memory': '16GB', 'Screen Size': '16""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '2560 x 1600', 'Refresh Rate': '240Hz', 'SSD Capacity': '1TB'}" -233739,LPGIG00141OB,"Gigabyte AORUS 17 Gaming Notebook 17.3"" FHD Intel i7-12700H GeForce RTX 3080 Ti 32GB 1TB SSD Windows 11 Home, YE5-74US544SH(Open Box)",GIGABYTE,"['Laptops, Tablet', None, None, None]",1799.1,"{'GPU': 'GeForce RTX 3080 Ti', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '32GB', 'Screen Size': '17.3""'}" -233431,LPLEN03053OB,"Lenovo IdeaPad 5 Consumer Notebook 15.6"" FHD AMD Ryzen 7 5825U Integrated Radeon 8GB 512GB SSD Windows 11 Home, 82SG000PCC(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",552.78999023437,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1080p Full HD', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}" -233416,LPMSI00528,"MSI CreatorPro Business Notebook 16"" QHD+ Intel i7-12700H RTX A3000 32GB 1TB SSD Windows 11 Pro, B12UKST-074CA",MSI,"['Laptops, Tablet', None, None, None]",3999.0,"{'GPU': 'RTX A3000', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Pro', 'Memory': '32GB', 'Screen Size': '16""'}" -233412,LPMSI00527,"MSI CreatorPro Business Notebook 16"" QHD+ Intel i7-12700H NVIDIA RTX A5500 32GB 1TB SSD Windows 11 Pro,",MSI,"['Laptops, Tablet', None, None, None]",5299.0,"{'GPU': 'NVIDIA Quadro RTX A5500', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Pro', 'Memory': '32GB', 'Screen Size': '16""'}" -233185,LPLEN03202OB,"Lenovo ThinkPad X380 Yoga Business Notebook 13.3"" FHD Intel i5-8350U Integrated GPU 16GB 512GB SSD Windows 10 Pro Refurbished(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",404.1,"{'GPU': 'Integrated', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'Yes', 'Operating System': 'Windows 10 Pro', 'Memory': '16GB', 'Screen Size': '13.3""'}" -232961,LPMSI00524,"MSI GP66 Leopard Gaming Notebook 15.6"" FHD Intel Core i7-11800H NVIDIA RTX3070 16GB 512GB SSD Windows 11 Home .",MSI,"['Laptops, Tablet', None, None, None]",1999.0,"{'Memory': '16GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '144Hz', 'SSD Capacity': '512GB'}" -232811,LPMSI00514OB,"MSI Summit E13 Flip Evo Notebook 13.4"" FHD Intel Core i7-1280P Intel Iris Xe 16GB 1TB SSD Windows 11 Home, A12MT-036CA(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",1318.4899984741,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920x1200', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '13.4""'}" -232296,LPSAS00147,"Samsung Galaxy Tab S6 Lite (2022 Edition) SM-P613 Tablet - 10.4"" WUXGA+ - Octa-core (Kryo 465 Gold Dual-core (2 Core) 2.30 GHz + Kryo 465 Silver Hexa-core (6 Core) 1.80 GHz) - 4 GB RAM - 64 GB Storage - Android 12 - Oxford Gray - Qualcomm SM7125 Snapdrago",SAMSUNG,"['Laptops, Tablet', None, None, None]",465.06,"{'General InformationManufacturer': 'Samsung', 'General InformationManufacturer Part Number': 'SM-P613NZAAXAC', 'General InformationBrand Name': 'Samsung', 'General InformationProduct Line': 'Galaxy Tab S6 Lite (2022 Edition)', 'General InformationProduct Model': 'SM-P613', 'General InformationProduct Name': 'Galaxy Tab S6 Lite (2022 Edition) SM-P613 Tablet'}" -231684,LPASU00666OB,"Asus Vivobook 16 Laptop 16"" WUXGA AMD Ryzen 5 5600H AMD Radeon Graphics 8GB 512GB SSD Windows 11 Home, M1603QA-RH51-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",569.05,"{'GPU': 'AMD Radeon Graphics', 'Maximum Resolution': '1920 x 1200', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '16""'}" -231575,LPACE00912OB,"ACER Nitro 5 Gaming Notebook 15.6"" FHD Intel Core i5-11400H GTX 1650 8GB 256GB SSD Windows 11 Home, NH.QEKAA.007(Open Box)",ACER,"['Laptops, Tablet', None, None, None]",526.39,"{'GPU': 'GTX 1650', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '15.6""'}" -230357,LPLEN03000OB,"Lenovo IdeaPad Flex 5 Consumer Notebook 14"" WUXGA Touchscreen AMD Ryzen 5 5500U AMD Radeon Graphics 8GB 512GB SSD Windows 11 Home, 82R9004HCC(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",554.69000305176,"{'Memory': '8GB', 'Screen Size': '14""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}" -229905,LPLEN03130OB,"Lenovo Consumer Laptop 15.6"" FHD AMD Ryzen 5 5625U AMD Radeon Graphics 12GB 512GB SSD Windows 11 Home, 82RN0015CC(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",664.89,"{'Memory': '12GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}" -229816,LPASU00627OB,"ASUS TUF Gaming Gaming Notebook 15.6"" FHD AMD Ryzen 7 6800H GeForce RTX 3070 16GB 512GB SSD Windows 11 Home, TUF507RR-DS71-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",1412.0600000763,"{'Memory': '16GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '144Hz', 'SSD Capacity': '512GB'}" -229767,LPCNO00053OB,"HP 15Z-EF2000 Consumer Notebook 15.6"" FHD AMD Ryzen 5 5500U AMD Radeon Vega 7 8GB 256GB SSD Windows 11 Home, 2J4V7AV(Open Box)",HP,"['Laptops, Tablet', None, None, None]",501.49000038147,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '256GB'}" -229750,LPACE00880OB,"ACER Aspire A515-54 Consumer Notebook 15.6"" Intel i7-10510U 8GB 512GB SSD Windows 11 Home, A515-54-75HU, NX.HN2AA.009(Open Box)",ACER,"['Laptops, Tablet', None, None, None]",474.89,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}" -229746,LPASU00608OB,"ASUS Vivobook 15 Notebook, 15.6"" FHD, Intel Pentium Silver, Intel UHD Graphics 605, 8GB DDR4, 128GB SSD, Win11 Home, X515MA-DS91-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",379.05,"{'Notebook Type': 'Consumer', 'Notebook Chassis': 'Clamshell', 'Screen Size': '15.6""', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'CPU': 'Intel Pentium Silver'}" -229744,LPCNO00052OB,"ASUS VivoBook F515 Consumer Notebook 15.6"" FHD Intel Core i7-1165G7 Intel Iris Xe Graphics 8GB 512GB SSD Windows 11 Home, F515EA-DH75(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",603.14,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}" -229577,LPASU00610OB,"ASUS TUF Gaming Dash Gaming Notebook 15.6"" FHD Intel i5-12450H GeForce RTX 3050 16GB 512GB SSD Windows 11 Home, TUF517ZC-DS51-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",1159.0899978638,"{'Memory': '16GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '144Hz', 'SSD Capacity': '512GB'}" -229459,LPLEN03138,"Lenovo Business Notebook 14"" FHD Intel i5-1145G7 Intel Iris Xe 16GB 512GB SSD Windows 11 Pro, 20W00155US",LENOVO,"['Laptops, Tablet', None, None, None]",1599.88,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '20W00155US', 'GPU': 'Intel Iris Xe', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'Maximum Resolution': '1920 x 1080', 'General InformationBrand Name': 'Lenovo'}" -229425,LPASU00665,"ASUS Zenbook Pro Business Notebook 16"" UHD OLED Intel Core i9-12900H GeForce RTX 3060 32GB 1TB SSD Windows 11 Pro .",ASUS,"['Laptops, Tablet', None, None, None]",3999.0,"{'GPU': 'GeForce RTX\xa03060', 'Maximum Resolution': '3840 x 2400', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Pro', 'Memory': '32GB', 'Screen Size': '16""'}" -229280,LPASU00658OB,"ASUS ZenBook 14 Consumer Notebook 14"" FHD AMD Ryzen 5 5600H AMD Radeon Vega 7 8GB 512GB SSD Windows 11 Home, UM425QA-EH59-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",664.05,"{'Memory': '8GB', 'Screen Size': '14""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}" -228044,LPMSI00516,"MSI Modern 14 Business Notebook 14"" FHD Intel Core i5-1235U Intel Iris Xe 8GB 512GB SSD Windows 11 Home .",MSI,"['Laptops, Tablet', None, None, None]",929.0,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '14""'}" -227941,LPLEN03049OB,"Lenovo Legion 5 Gaming Notebook 15.6"" FHD AMD Ryzen 7 6800H GeForce RTX 3070 Ti 16GB 512GB SSD Windows 11, 82RD003YCC(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",1780.0900054932,"{'Memory': '16GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '165Hz', 'SSD Capacity': '512GB'}" -227818,LPHEW01913OB,"HP 15-DY2067MS Consumer Notebook 15.6"" FHD Touchscreen Intel Core i5-1135G7 Intel Iris X Graphics 12GB 256GB SSD Windows 11 Home, 4W2K2UA(Open Box)",HP,"['Laptops, Tablet', None, None, None]",498.64,"{'Memory': '12GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '256GB'}" -227801,LPCNO00048OB,"ASUS VivoBook R Consumer Notebook 15.6"" FHD Touchscreen Intel Core i5-1135G7 Iris Xe Graphics 8GB 256GB SSD Windows 11 Home, R565EA-US51T(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",474.89,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '256GB'}" -227798,LPMSI00513,"MSI Katana GF76 Gaming Notebook 17.3"" FHD Intel Core i7-12700H GeForce RTX3070TI 16GB 1TB SSD Windows 11 Home .",MSI,"['Laptops, Tablet', None, None, None]",2449.0,"{'Memory': '16GB', 'Screen Size': '17.3""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '144Hz', 'SSD Capacity': '1TB'}" -227738,LPRAZ00055,"RAZER Blade 15 Gaming Notebook 15.6"" QHD Intel Core i7-12800H GeForce RTX 3070 Ti 16GB 1TB SSD Windows 11 Home .",RAZER,"['Laptops, Tablet', None, None, None]",3999.0,"{'Memory': '16GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '2560 x 1440', 'Refresh Rate': '240Hz', 'SSD Capacity': '1TB'}" -227687,LPGIG00138,"GIGABYTE AERO 16 Gaming Notebook 15.6"" OLED UHD Intel Core i9-12900H GeForce RTX 3080 Ti 32GB 2TB SSD Windows 11 Pro, YE5-A4US948HP",GIGABYTE,"['Laptops, Tablet', None, None, None]",2599.0,"{'Memory': '32GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Pro', 'Maximum Resolution': '3840x2400', 'Refresh Rate': '60Hz', 'SSD Capacity': '2TB'}" -227667,LPCNO00054,"LENOVO ThinkPad E15 Gen 2 Business Notebook 15.6"" FHD Intel Core i5-1135G7 Intel Iris Xe Graphics 8GB 256GB SSD Windows 10 Pro .",LENOVO,"['Laptops, Tablet', None, None, None]",999.0,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 10 Pro', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '256GB'}" -227662,LPCNO00053,"HP 15Z-EF2000 Consumer Notebook 15.6"" FHD AMD Ryzen 5 5500U AMD Radeon Vega 7 8GB 256GB SSD Windows 11 Home, 2J4V7AV",HP,"['Laptops, Tablet', None, None, None]",527.88,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '256GB'}" -227402,LPLGE00026OB,"LG Gram Ultra-Lightweight EVO Platform Notebook, 17"" WQXGA, Intel i7-1260P, Intel Iris Xe Graphics, 16GB, 512GB SSD, Windows 11 Home, 17Z90Q-K.AA75A9(Open Box)",LG,"['Laptops, Tablet', None, None, None]",1162.6900030518,"{'Notebook Type': 'Consumer', 'Notebook Chassis': 'Thin and Light', 'Screen Size': '17""', 'Maximum Resolution': '2560 x 1600', 'Refresh Rate': '60Hz', 'CPU': 'i7-1260P'}" -227352,LPGIG00133OB,"Gigabyte A5 K1 Gaming Notebook 15.6"" FHD AMD Ryzen 5 5600H GeForce RTX 3060 16GB 512GB SSD Windows 11 Home, A5 K1-AUS1130SB(Open Box)",GIGABYTE,"['Laptops, Tablet', None, None, None]",936.79000152588,"{'Memory': '16GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '144Hz', 'SSD Capacity': '512GB'}" -227040,LPASU00609OB,"ASUS TUF Gaming Notebook, 15.6” FHD, Intel Core i5-10300H, GeForce GTX 1650, 8GB DDR4, 1TB SSD, Windows 11 Home, FX506LH-DS51-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",824.29000152588,"{'Notebook Type': 'Gaming', 'Notebook Chassis': 'Clamshell', 'Screen Size': '15.6""', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '144Hz', 'CPU': 'Intel Core i5-10300H'}" -226829,LPLEN03097OB,"Lenovo IdeaPad 3 Notebook, 15.6"" FHD, AMD Ryzen 5 5625U, AMD Radeon Graphics, 12GB DDR4, 512GB SSD, Windows 11 Home, 82RN0018CF(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",474.89,"{'Memory': '12GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'SSD Capacity': '512GB', 'CPU': 'Ryzen 5 5625U'}" -226770,LPACE00896OB,"Acer A715 Gaming Notebook 15.6"" FHD AMD Ryzen 7 5700U RTX3050 16GB 512GB SSD Windows 11, NH.QE5AA.001(Open Box)",ACER,"['Laptops, Tablet', None, None, None]",764.1,"{'Memory': '16GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}" -226726,LPASU00547OB,"ASUS Vivobook 13 Slate Notebook, 13.3"" FHD Touch Screen, Intel Pentium Silver N6000, Intel UHD Graphics, 4GB, 128GB SSD, Win11 Home, T3300KA-DH91T-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",332.39,"{'Screen Size': '13.3""', 'Memory': '4GB', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '128GB'}" -226719,LPLGE00021OB,"LG gram Ultra-Lightweight Intel EVO Platform Notebook, 17"" QHD, Intel i5-1155G7, Intel Iris Xe Graphics, 8GB, 512GB SSD, Windows 11 Home, 17Z95P-K.AR55A8(Open Box)",LG,"['Laptops, Tablet', None, None, None]",759.89,"{'Notebook Type': 'Consumer', 'Notebook Chassis': 'Thin and Light', 'Screen Size': '17""', 'Maximum Resolution': '2560 x 1600', 'Refresh Rate': '60Hz', 'CPU': 'i5-1155G7'}" -226506,LPLEN03099,"Lenovo ThinkPad E15 Gen 4 21ED0043US 15.6"" Notebook - Full HD - 1920 x 1080 - AMD Ryzen 7 5825U Octa-core (8 Core) 2 GHz - 16 GB Total RAM - 8 GB On-board Memory - 512 GB SSD - Mineral Metallic - AMD Chip - Windows 11 - AMD Radeon Graphics - In-plane Swit",LENOVO,"['Laptops, Tablet', None, None, None]",1199.0,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '21ED0043US', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'ThinkPad', 'General InformationProduct Series': 'E15 Gen 4'}" -226464,LPLEN03086OB,"Lenovo Legion 5 Gaming Notebook 16"" QHD Intel i7-12700H GeForce RTX 3070 16GB 512GB SSD Windows 11,82RF00ADCC(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",1529.89,"{'Memory': '16GB', 'Screen Size': '16""', 'Operating System': 'Windows 11', 'Maximum Resolution': '2560 x 1600', 'Refresh Rate': '165Hz', 'SSD Capacity': '512GB'}" -226419,LPLEN03001OB,"Lenovo Legion 5 Pro Gaming Notebook 16"" QHD AMD Ryzen 7 6800H GeForce RTX 3060 16GB DDR5 1TB SSD Windows 11, 82RG006WCC(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",1397.5899969482,"{'Memory': '16GB', 'Screen Size': '16""', 'Operating System': 'Windows 11', 'Maximum Resolution': '2560 x 1600', 'Refresh Rate': '165Hz', 'SSD Capacity': '1TB'}" -226175,LPMSI00504OB,"MSI GP66 Leopard Gaming Notebook 15.6"" FHD Intel Core i7-11800H NVIDIA RTX3070 16GB 512GB SSD Windows 11 Home, GP66 11UG-689CA Leopard(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",1114.0900007629,"{'Memory': '16GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '144Hz', 'SSD Capacity': '512GB'}" -225847,LPGIG00136,"Gigabyte AORUS 5 KE4 Gaming Notebook 15.6"" FHD Intel Core i7-12700H GeForce RTX 3060 16GB 1TB SSD Windows 11 Home, KE4-72US314SH",GIGABYTE,"['Laptops, Tablet', None, None, None]",1999.0,"{'Memory': '16GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '240Hz', 'SSD Capacity': '1TB'}" -225432,LPHEW01865OB,"HP OMEN 16-b0020ca Gaming Notebook, 16.1"" QHD, Intel Core i7-11800H, NVIDIA GeForce RTX 3070, 16GB DDR4, 1TB SSD, Windows 10 Home, 374U9UA#ABL(Open Box)",HP,"['Laptops, Tablet', None, None, None]",1091.5900007629,"{'Memory': '16GB', 'Screen Size': '16.1', 'Operating System': 'Windows 10 Home', 'Maximum Resolution': '2560 x 1440', 'SSD Capacity': '1TB', 'CPU': 'Intel Corei7-11800H'}" -225199,LPLEN03053,"Lenovo IdeaPad 5 Consumer Notebook 15.6"" FHD AMD Ryzen 7 5825U Integrated Radeon 8GB 512GB SSD Windows 11 Home, 82SG000PCC",LENOVO,"['Laptops, Tablet', None, None, None]",581.88000488281,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1080p Full HD', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}" -225197,LPASU00559OB,"ASUS Zenbook Notebook 13.3"" FHD OLED Intel Core i5-1135G7 Intel Iris Xe Graphics 8GB 256GB SSD Windows 11 Home, UX325EA-DS59-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",741.83999328613,"{'Screen Size': '13.3""', 'Memory': '8GB', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '256GB'}" -224938,LPMSI00467OB,"MSI Crosshair 15 Gaming Notebook, 15.6"" FHD, Intel Core i7-12700H, RTX3070Ti, 16GB DDR4, 512GB SSD, Windows 11 Home, Crosshair 15 B12UGSZ-480CA(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",1129.39,"{'Memory': '16GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '240Hz', 'SSD Capacity': '512GB'}" -224870,LPASU00651,"ASUS P1512CEA Consumer Notebook 15.6"" FHD Intel Core i7-1165G7 Intel Iris Xe Graphics 16GB 1TB SSD Windows 11 Pro,P1512CEA-Q71P-CB",ASUS,"['Laptops, Tablet', None, None, None]",1399.0,"{'Memory': '16GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Pro', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '1TB'}" -224867,LPASU00650,"ASUS Consumer Notebook 15.6"" FHD Intel Core i7-1165G7 Intel Iris Xe Graphics 16GB 1TB SSD Windows 11 Pro .",ASUS,"['Laptops, Tablet', None, None, None]",1399.0,"{'Memory': '16GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Pro', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '1TB'}" -224865,LPASU00649,"ASUS P1512CEA Consumer Notebook 15.6"" FHD Intel Core i5-1135G7 Intel UHD Graphics 8GB 512GB SSD Windows 11 Pro .",ASUS,"['Laptops, Tablet', None, None, None]",1049.0,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Pro', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}" -224859,LPASU00647,"ASUS P1512CEA Consumer Notebook 15.6"" FHD Intel Core i5-1135G7 Intel UHD Graphics 8GB 512GB SSD Windows 11 Pro .",ASUS,"['Laptops, Tablet', None, None, None]",1049.0,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Pro', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}" -224498,LPGIG00134,"GIGABYTE A7 K1 Gaming Notebook 17.3"" FHD AMD Ryzen 7 5800H GeForce RTX 3060 16GB 512GB SSD Windows 11 Home .",GIGABYTE,"['Laptops, Tablet', None, None, None]",1699.0,"{'Memory': '16GB', 'Screen Size': '17.3""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '144Hz', 'SSD Capacity': '512GB'}" -224373,LPASU00625OB,"ASUS ROG Strix G15 Gaming Notebook 15.6"" WQHD AMD Ryzen 9 6900HX GeForce RTX 3070 Ti 16GB 1TB SSD Windows 11 Pro, G513RW-XS91-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",1619.89,"{'Memory': '16GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Pro', 'Maximum Resolution': '2560 x 1440', 'Refresh Rate': '165Hz', 'SSD Capacity': '1TB'}" -224235,LPASU00590OB,"ASUS Vivobook 14 Flip Notebook, 14"" FHD touch Screen, Intel Celeron N4500, Intel UHD Graphics, 4GB DDR4, 128GB SSD, Win11 Home, J1400KA-DS01T-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",474.05,"{'Notebook Type': 'Consumer', 'Notebook Chassis': 'Convertible (2 in 1)', 'Screen Size': '14""', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'CPU': 'Intel Celeron N4500'}" -224223,LPLEN03000,"Lenovo IdeaPad Flex 5 Consumer Notebook 14"" WUXGA Touchscreen AMD Ryzen 5 5500U AMD Radeon Graphics 8GB 512GB SSD Windows 11 Home, 82R9004HCC",LENOVO,"['Laptops, Tablet', None, None, None]",583.88,"{'Memory': '8GB', 'Screen Size': '14""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}" -224079,LPACE00896,"Acer A715 Gaming Notebook 15.6"" FHD AMD Ryzen 7 5700U RTX3050 16GB 512GB SSD Windows 11, NH.QE5AA.001",ACER,"['Laptops, Tablet', None, None, None]",849.0,"{'Memory': '16GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}" -223863,LPASU00621OB,"ASUS ROG Zephrus G15 Gaming Notebook 15.6"" WQHD AMD Ryzen 9 6900HS GeForce RTX 3080 32GB 1TB SSD Windows 11 Pro, GA503RS-XS92-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",2015.89,"{'Memory': '32GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Pro', 'Maximum Resolution': '2560 x 1440', 'Refresh Rate': '240Hz', 'SSD Capacity': '1TB'}" -223776,LPACE00851OB,"Acer TravelMate P2 Notebook,15.6"" FHD Intel Core i5-1135G7, Intel HD Graphics, 8GB DDR4, 256GB SSD, Windows 10 Pro, TMP215-53-53N6-US (NX.VPUAA.003)(Open Box)",ACER,"['Laptops, Tablet', None, None, None]",379.89,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 10 Pro', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '256GB'}" -223245,LPMSI00497,"MSI Pulse GL66 Gaming Notebook 15.6"" FHD Intel i7-11800H RTX3070 16GB 512GB SSD Windows 10 Home, Pulse GL66 11UGKV-231CA",MSI,"['Laptops, Tablet', None, None, None]",1999.88,"{'Memory': '16GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 10 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '144Hz', 'SSD Capacity': '512GB'}" -222734,LPASU00623,"ASUS ROG Zephyrus NR2202 Business Notebook 16"" WXQGA AMD Ryzen 9 6900HX RTX 3080 Ti 64GB 1TB SSD Windows 11 Pro .",ASUS,"['Laptops, Tablet', None, None, None]",4999.0,"{'Memory': '64GB', 'Screen Size': '16""', 'Operating System': 'Windows 11 Pro', 'Maximum Resolution': '2560 x 1600', 'Refresh Rate': '165Hz', 'SSD Capacity': '1TB'}" -222656,LPHEW01811OB,"HP Pavilion 15-eh2010ca Notebook 15.6"" FHD Touchscreen AMD Ryzen 5 5625U AMD Radeon Graphics 8GB 512GB SSD Windows 11 Home, 2L7T5UA#ABL(Open Box)",HP,"['Laptops, Tablet', None, None, None]",553.74000610352,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}" -222442,LPASU00621,"ASUS ROG Zephrus G15 Gaming Notebook 15.6"" WQHD AMD Ryzen 9 6900HS GeForce RTX 3080 32GB 1TB SSD Windows 11 Pro, GA503RS-XS92-CA",ASUS,"['Laptops, Tablet', None, None, None]",2239.88,"{'Memory': '32GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Pro', 'Maximum Resolution': '2560 x 1440', 'Refresh Rate': '240Hz', 'SSD Capacity': '1TB'}" -222238,LPHEW01837,"HP OMEN 16 Consumer Notebook 16.1"" FHD AMD Ryzen 5 5600H Radeon Graphics 16GB 1TB SSD Windows 10 Home .",HP,"['Laptops, Tablet', None, None, None]",1799.0,"{'Memory': '16GB', 'Screen Size': '16.1""', 'Operating System': 'Windows 10 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '1TB'}" -221961,LPHEW01834,"HP EliteBook 640 G9 14"" Business Notebook Intel i5-1245U 16GB RAM 512GB SSD Windows 10 Pro, 6C0Z2UT#ABA",HP,"['Laptops, Tablet', None, None, None]",1011.9599990845,"{'General InformationManufacturer': 'HP Inc.', 'General InformationManufacturer Part Number': '6C0Z2UT#ABA', 'GPU': 'Intel Iris Xe', 'General InformationManufacturer Website Address': 'http://www.hp.com', 'Maximum Resolution': '1080p Full HD', 'General InformationBrand Name': 'HP'}" -221908,LPASU00603OB,"ASUS Vivobook 15 Notebook, 15.6"" FHD, Intel Core i7-1165G7, Intel Iris Xe Graphics, 12GB DDR4, 512GB SSD, Win11 Home, X515EA-DS79-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",741.83999694824,"{'Notebook Type': 'Consumer', 'Notebook Chassis': 'Clamshell', 'Screen Size': '15.6""', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'CPU': 'Intel Core i7-1165G7'}" -221900,LPLGE00027,"LG gram Ultra-Lightweight EVO Platform Notebook, 17"" WQXGA, Intel i5-1240P, Intel Iris Xe Graphics, 8GB, 512GB SSD, Windows 11 Home, 17Z90Q-K.AR55A9",LG,"['Laptops, Tablet', None, None, None]",1167.88,"{'Notebook Type': 'Consumer', 'Notebook Chassis': 'Thin and Light', 'Screen Size': '17""', 'Maximum Resolution': '2560 x 1600', 'Refresh Rate': '60Hz', 'CPU': 'i5-1240P'}" -221897,LPLGE00025,"LG gram Ultra-Lightweight EVO Platform Notebook, 16"" WQXGA, Intel i5-1240P, 8GB, 512GB SSD, Windows 11 Home, 16Z90Q-K.AR55A9",LG,"['Laptops, Tablet', None, None, None]",1135.88,"{'Notebook Type': 'Consumer', 'Notebook Chassis': 'Thin and Light', 'Screen Size': '16""', 'Maximum Resolution': '2560 x 1600', 'Refresh Rate': '60Hz', 'CPU': 'i5-1240P'}" -221642,LPLEN02696OB,"Lenovo Thinkpad T570 Business Notebook, 15.6"" FHD, Intel Core i5-7300, 8 GB, 256 GB SSD, Windows 10 Pro, KIT-LE-73996, (Refurbished)(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",423.86000026703,"{'Notebook Type': 'Business', 'Notebook Chassis': 'Clamshell', 'Screen Size': '15.6""', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'CPU': 'i5-7300'}" -221447,LPACE00888,"Acer TravelMate P2 14"" Business Notebook , FHD, Intel Core i5-1135G7,8 GB RAM, 256 GB SSD, Windows 11 Pro, Intel Iris Xe Graphics, NX.VPKAA.00K",ACER,"['Laptops, Tablet', None, None, None]",499.0,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': 'FHD', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '8GB', 'Screen Size': '14""'}" -221260,LPSAS00117,"SAMSUNG Galaxy Book Consumer Notebook 15.6"" FHD Intel i5-1135G7 Intel Iris Xe Graphics 8GB 256GB SSD Windows 10 Home .",SAMSUNG,"['Laptops, Tablet', None, None, None]",699.0,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 10 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '256GB'}" -221194,LPMSI00445OB,"MSI Modern 15 Ultra Thin and Light Notebook, 15.6"" FHD Intel Core i5-1155G7, Intel Iris Xe, 8 GB DDR4, 256GB NVMe SSD, Windows 11 Home, Modern 15 A11MU-863CA(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",459.69000305176,"{'Notebook Type': 'Consumer', 'Notebook Chassis': 'Thin and Light', 'Screen Size': '15.6""', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'CPU': 'i5-1155G7'}" -220707,LPRAZ00054,"RAZER Razer Blade 14 Gaming Notebook 14"" QHD AMD Ryzen 9 6900HX GeForce RTX 3080Ti 16GB 1TB SSD Windows 11 Home .",RAZER,"['Laptops, Tablet', None, None, None]",4499.0,"{'Memory': '16GB', 'Screen Size': '14""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '2560 x 1440', 'Refresh Rate': '165Hz', 'SSD Capacity': '1TB'}" -220455,LPASU00583OB,"ASUS TUF Gaming Notebook, 15.6” FHD, Ryzen 5 4600H,GeForce GTX 1650, 8GB, 512GB SSD, Windows 11 Home, FA506IHR-DS51-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",827.89000091553,"{'Notebook Type': 'Gaming', 'Notebook Chassis': 'Clamshell', 'Screen Size': '15.6""', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '144Hz', 'CPU': 'Ryzen 5 4600H'}" -220435,LPSAS00116,"SAMSUNG Galaxy Book Pro Consumer Notebook 15.6"" FHD Intel i7-1165G7 Iris Xe Graphics 8GB 256GB SSD Windows 11 Home .",SAMSUNG,"['Laptops, Tablet', None, None, None]",1730.0,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '256GB'}" -220434,LPSAS00115,"SAMSUNG Galaxy Book Pro Consumer Notebook 15.6"" FHD Intel i5-1135G7 Iris Xe Graphics 8GB 512GB SSD Windows 11 Home .",SAMSUNG,"['Laptops, Tablet', None, None, None]",1730.0,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}" -220433,LPSAS00114,"SAMSUNG Galaxy Book Pro Consumer Notebook 15.6"" FHD Intel i5-1135G7 Iris Xe Graphics 8GB 256GB SSD Windows 11 Home .",SAMSUNG,"['Laptops, Tablet', None, None, None]",1600.0,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '256GB'}" -220432,LPSAS00113,"SAMSUNG Galaxy Book Pro Consumer Notebook 13.3"" FHD Intel i5-1135G7 Iris Xe Graphics 8GB 512GB SSD Windows 11 Home .",SAMSUNG,"['Laptops, Tablet', None, None, None]",1600.0,"{'Memory': '8GB', 'Screen Size': '13.3""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}" -220431,LPSAS00112,"SAMSUNG Galaxy Book Pro Consumer Notebook 13.3"" FHD Intel i7-1165G7 Iris Xe Graphics 8GB 512GB SSD Windows 11 Home .",SAMSUNG,"['Laptops, Tablet', None, None, None]",1730.0,"{'Memory': '8GB', 'Screen Size': '13.3""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}" -220429,LPSAS00111,"SAMSUNG Galaxy Book Pro Consumer Notebook 15.6"" FHD Intel i7-1165G7 Iris Xe Graphics 8GB 512GB SSD Windows 11 Home .",SAMSUNG,"['Laptops, Tablet', None, None, None]",1870.0,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}" -220336,LPMSI00429OB,"MSI Katana GF66 Gaming Notebook, 15.6"" FHD, Intel Core i7-11800H, RTX3060, 16GB DDR4, 512 GB SSD, Windows 11 Home, Katana GF66 11UE-641CA(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",786.48999847412,"{'Memory': '16GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '144Hz', 'SSD Capacity': '512GB'}" -220330,LPASU00584OB,"ASUS TUF Gaming Notebook, 15.6” FHD, Ryzen 7 5800H,GeForce  RTX 3060, 16GB, 512GB SSD, Windows 11 Home, FA506QM-DS71-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",899.89,"{'Notebook Type': 'Gaming', 'Notebook Chassis': 'Clamshell', 'Screen Size': '15.6""', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '144Hz', 'CPU': 'Ryzen\xa07\xa05800H'}" -220228,LPACE00877OB,"Acer Nitro 5 Gaming Notebook,15.6"" FHD, Intel i7-11800H, NVIDIA GeForce RTX3060, 16GB DDR4, 512GB SSD, Windows 11, NH.QEXAA.004(Open Box)",ACER,"['Laptops, Tablet', None, None, None]",961.08999023437,"{'Memory': '16GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11', 'Maximum Resolution': '1080p Full HD', 'Refresh Rate': '144Hz', 'SSD Capacity': '512GB'}" -219988,LPASU00610,"ASUS TUF Gaming Dash Gaming Notebook 15.6"" FHD Intel i5-12450H GeForce RTX 3050 16GB 512GB SSD Windows 11 Home, TUF517ZC-DS51-CA",ASUS,"['Laptops, Tablet', None, None, None]",1287.8799972534,"{'Memory': '16GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '144Hz', 'SSD Capacity': '512GB'}" -219505,LPACE00880,"ACER Aspire A515-54 Consumer Notebook 15.6"" Intel i7-10510U 8GB 512GB SSD Windows 11 Home, A515-54-75HU, NX.HN2AA.009",ACER,"['Laptops, Tablet', None, None, None]",499.88,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}" -219458,LPASU00591OB,"ASUS Vivobook Go Notebook, 15.6"" HD, Intel Celeron N4020, Intel UHD Graphics 600, 4GB DDR4, 64GB SSD, Win11 S, L510MA-DS09-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",246.05,"{'Notebook Type': 'Consumer', 'Notebook Chassis': 'Clamshell', 'Screen Size': '15.6""', 'Maximum Resolution': '1366 x 768', 'Refresh Rate': '60Hz', 'CPU': 'Intel Celeron N4020'}" -219344,LPHEW01738OB,"HP Probook 640 Business Notebook 14"" Intel Core i5-6300U Intel HD Graphics 520 16GB 512GB Windows 10 Pro Refurbished(Open Box)",HP,"['Laptops, Tablet', None, None, None]",242.89,"{'Storage Type': 'SSD', 'CPU Brand': 'Intel', 'Product Condition': 'Refurbished', 'Product Condition Short': 'Refurb', 'Screen Resolution Description': 'HD', 'Memory': '16GB'}" -219203,LPHEW01773OB,"HP Pavilion 15-eg1010ca Notebook, 15.6"" FHD, Intel Core i5-1155G7, Intel Iris Xe Graphics, 8GB DDR4, 512GB SSD, Windows 11 Home, 2L7V5UA#ABL(Open Box)",HP,"['Laptops, Tablet', None, None, None]",427.39,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}" -219167,LPASU00573OB,"ASUS Vivobook 15 Notebook, 15.6"" FHD, AMD Ryzen 5 5500U, AMD Radeon Graphics, 8GB, 512GB SSD, Win11 Home, M513UA-DS51-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",508.14,"{'Notebook Type': 'Consumer', 'Notebook Chassis': 'Clamshell', 'Screen Size': '15.6""', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'CPU': 'Ryzen 5 5500U'}" -219077,LPHUA00039OB,"HUAWEI MateBook 14s Notebook, 14.2"", 2520 x 1680, Touch Screen, i7-11370H, Intel Iris Xe Graphics, 16GB, 512GB SSD, Windows 11 Pro, 53012KTB(Open Box)",HUAWEI,"['Laptops, Tablet', None, None, None]",838.82000030518,"{'Memory': '16GB', 'Screen Size': '14.2', 'Operating System': 'Windows 11 Pro', 'Maximum Resolution': '2520 x 1680', 'Refresh Rate': '90 Hz', 'SSD Capacity': '512GB'}" -218899,LPHUA00040OB,"HUAWEI MateBook D15 Notebook, 15.6"" FHD, i5-1135G7, Intel Iris Xe Graphics, 8GB, 512GB SSD, Win 11 Home, 53012QNY(Open Box)",HUAWEI,"['Laptops, Tablet', None, None, None]",474.89,"{'Memory': '8GB', 'Screen Size': '15.6', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60 Hz', 'SSD Capacity': '512GB'}" -218692,LPACE00877,"Acer Nitro 5 Gaming Notebook,15.6"" FHD, Intel i7-11800H, NVIDIA GeForce RTX3060, 16GB DDR4, 512GB SSD, Windows 11, NH.QEXAA.004",ACER,"['Laptops, Tablet', None, None, None]",1067.8800048828,"{'Memory': '16GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11', 'Maximum Resolution': '1080p Full HD', 'Refresh Rate': '144Hz', 'SSD Capacity': '512GB'}" -218479,LPLEN02718OB,"Lenovo ThinkPad T480 Business Notebook, 14"", Intel Core i5-8350U, Intel UHD Graphics 620, 16 GB DDR4, 256 GB SSD, Windows 10 Pro (Refurbished)(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",359.1,"{'Notebook Type': 'Business', 'Notebook Chassis': 'Clamshell', 'Screen Size': '14""', 'Refresh Rate': '60Hz', 'CPU': 'i5-8350U', 'GPU': 'Intel UHD Graphics 620'}" -218166,LPCNO00033OB,"ASUS VivoBook F Series Notebook 14"" FHD, Intel Core i5-1135G7, Intel Iris Xe Graphics, 8GB RAM 256GB SSD - Windows 10 Home, F415EA-UB51(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",455.89,"{'Memory': '8GB', 'Screen Size': '14""', 'Operating System': 'Windows 10 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '256GB'}" -218123,LPLEN02719OB,"Lenovo ThinkPad T470 Business Notebook, 14"" FHD, Intel Core i5-6300U, Intel HD Graphics 620, 8 GB DDR4, 256 GB SSD, Windows 10 Pro, Refurbished(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",262.69000019073,"{'Notebook Type': 'Business', 'Notebook Chassis': 'Clamshell', 'Screen Size': '14""', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'CPU': 'i5-6300U'}" -217884,LPASU00603,"ASUS Vivobook 15 Notebook, 15.6"" FHD, Intel Core i7-1165G7, Intel Iris Xe Graphics, 12GB DDR4, 512GB SSD, Win11 Home, X515EA-DS79-CA",ASUS,"['Laptops, Tablet', None, None, None]",780.88,"{'Notebook Type': 'Consumer', 'Notebook Chassis': 'Clamshell', 'Screen Size': '15.6""', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'CPU': 'Intel Core i7-1165G7'}" -217591,LPASU00601,"TUF Gaming F15 TUF507ZC-QS72-CB 15.6"" Rugged Gaming Notebook - Full HD - 1920 x 1080 - Intel Core i7 12th Gen i7-12700H Tetradeca-core (14 Core) 2.30 GHz - 16 GB Total RAM - 512 GB SSD - Mecha Gray - Intel Chip - Windows 11 Home - NVIDIA GeForce RTX 3050",ASUS,"['Laptops, Tablet', None, None, None]",1719.73,"{'General InformationManufacturer': 'ASUS Computer International', 'General InformationManufacturer Part Number': 'TUF507ZC-QS72-CB', 'General InformationBrand Name': 'TUF', 'General InformationProduct Line': 'Gaming F15', 'General InformationProduct Model': 'TUF507ZC-QS72-CB', 'General InformationProduct Name': 'Gaming F15 TUF507ZC-QS72-CB Gaming Notebook'}" -217030,LPHUA00037OB,"HUAWEI MateBook 14s Notebook, 14.2"", 2520 x 1680, Touch Screen,Intel Core i7-11370H, Intel Iris Xe Graphics, 16GB, 512GB SSD, Windows 11 Pro, 53012SUP(Open Box)",HUAWEI,"['Laptops, Tablet', None, None, None]",824.49000038147,"{'Memory': '16GB', 'Screen Size': '14.2', 'Operating System': 'Windows 11 Pro', 'Maximum Resolution': '2520 x 1680', 'Refresh Rate': '90 Hz', 'SSD Capacity': '512GB'}" -216868,LPDYA00006,"DYNABOOK C50-J Business Notebook, 15.6"" FHD, Intel Core i7-1165G7, Integrated GPU, 8GB, 512GB SSD, Windows 10 Pro, PYS43C-03W03E",Dynabook,"['Laptops, Tablet', None, None, None]",1199.0,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 10 Pro', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}" -216866,LPDYA00005,"DYNABOOK C50-J Business Notebook, 15.6"" FHD, Intel Core i7-1165G7, Integrated GPU, 8GB, 256GB SSD, Windows 11 Home, PYS43C-04P03C",Dynabook,"['Laptops, Tablet', None, None, None]",1089.0,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '256GB'}" -216865,LPDYA00004,"DYNABOOK C50-J Business Notebook, 15.6"" FHD, Intel Core i5-1135G7, Integrated GPU, 8GB, 512GB SSD, Windows 10 Pro, PYS43C-03V03E",Dynabook,"['Laptops, Tablet', None, None, None]",1049.0,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 10 Pro', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}" -216861,LPDYA00003,"DYNABOOK C50-J Business Notebook, 15.6"" FHD, Intel Core i5-1135G7, Integrated GPU, 8GB, 256GB SSD, Windows 11 Home, PYS43C-04L037",Dynabook,"['Laptops, Tablet', None, None, None]",929.0,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '256GB'}" -216801,LPGIG00125,"GIGABYTE AERO 16 YE4 Gaming Notebook, 16"" UHD, Intel Core i9-12900H, NVIDIA GeForce RTX 3080 Ti, 32GB, 2 TB SSD, Windows 11 Pro, AERO 16 YE4-A4US928HP",GIGABYTE,"['Laptops, Tablet', None, None, None]",4999.0,"{'Memory': '32GB', 'Screen Size': '16""', 'Operating System': 'Windows 11 Pro', 'Maximum Resolution': '3840x2400', 'Refresh Rate': '60Hz', 'SSD Capacity': '2TB'}" -216760,LPLEN02741,"Lenovo ThinkPad T15 Gen 2 Business Notebook 15.6"" FHD Intel i5-1145G7 Intel Iris Xe 16GB 512GB SSD Windows 11 Pro 20W400K3US",LENOVO,"['Laptops, Tablet', None, None, None]",1720.9,"{'Memory': '16GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Pro', 'Maximum Resolution': '1080p Full HD', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}" -216411,LPLEN02718,"Lenovo ThinkPad T480 Business Notebook, 14"", Intel Core i5-8350U, Intel UHD Graphics 620, 16 GB DDR4, 256 GB SSD, Windows 10 Pro (Refurbished)",LENOVO,"['Laptops, Tablet', None, None, None]",399.0,"{'Notebook Type': 'Business', 'Notebook Chassis': 'Clamshell', 'Screen Size': '14""', 'Refresh Rate': '60Hz', 'CPU': 'i5-8350U', 'GPU': 'Intel UHD Graphics 620'}" -216336,LPHEW01739,"HP ProBook 820 G3 Notebook, 12.5"", Intel Core i7 6500U, Intel HD Graphics 520, 16G DDR4, 256GB SSD, Windows 10 Pro (Refurbished)",HP,"['Laptops, Tablet', None, None, None]",299.0,"{'Memory': '16GB', 'Screen Size': '12.5""', 'Operating System': 'Windows 10 Pro', 'Maximum Resolution': '1366 x 768', 'SSD Capacity': '256GB', 'CPU': 'Intel HD Graphics 520'}" -216286,LPASU00573,"ASUS Vivobook 15 Notebook, 15.6"" FHD, AMD Ryzen 5 5500U, AMD Radeon Graphics, 8GB, 512GB SSD, Win11 Home, M513UA-DS51-CA",ASUS,"['Laptops, Tablet', None, None, None]",534.88,"{'Notebook Type': 'Consumer', 'Notebook Chassis': 'Clamshell', 'Screen Size': '15.6""', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'CPU': 'Ryzen 5 5500U'}" -216078,LPASU00565,"ASUS ExpertBook B5 Business Notebook, 13.3"" Touch FHD, Intel Core i5-1135G7, Intel Iris Xe Graphics G7, 16GB, 256GB SSD, Windows 10 Pro, B5302FEA-C53P-CA",ASUS,"['Laptops, Tablet', None, None, None]",1199.0,"{'Screen Size': '13.3""', 'Memory': '16GB', 'Operating System': 'Windows 10 Pro', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '256GB'}" -216076,LPASU00564,"ASUS ExpertBook B1 Business Notebook, 15.6"" FHD, Intel Core i7-1165G7, Intel Iris Xe Graphics G7, 12GB, 512GB SSD, Windows 10 Pro, B1500CEAE-Q73P-CB",ASUS,"['Laptops, Tablet', None, None, None]",1399.0,"{'Screen Size': '15.6""', 'Memory': '12GB', 'Operating System': 'Windows 10 Pro', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}" -216047,LPHUA00036OB,"HUAWEI MateBook D15 Notebook, 15.6"" FHD, i5-1135G7, Intel Iris Xe Graphics, 8GB, 512GB SSD, Win 11 Home, 53012TCA(Open Box)",HUAWEI,"['Laptops, Tablet', None, None, None]",569.05,"{'Memory': '8GB', 'Screen Size': '15.6', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60 Hz', 'SSD Capacity': '512GB'}" -216039,LPASU00562,"ASUS ExpertBook B1 Business Notebook, 15.6"" FHD, Intel Core i7-1165G7, Intel Iris Xe Graphics G7, 12GB, 512GB SSD, Windows 10 Pro, B1500CEAE-C73P-CA",ASUS,"['Laptops, Tablet', None, None, None]",1399.0,"{'Screen Size': '15.6""', 'Memory': '12GB', 'Operating System': 'Windows 10 Pro', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}" -216021,LPHEW01733,"HP OMEN 16-c0010ca Gaming Notebook, 16.1"" FHD, AMD Ryzen 7 5800H, NVIDIA GeForce RTX 3050 Ti, 16GB DDR4, 1TB SSD, Windows 11 Home, 374V0UA#ABL",HP,"['Laptops, Tablet', None, None, None]",1172.88,"{'Memory': '16GB', 'Screen Size': '16.1', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'SSD Capacity': '1TB', 'CPU': 'Ryzen 7 5800H'}" -215919,LPASU00559,"ASUS Zenbook Notebook 13.3"" FHD OLED Intel Core i5-1135G7 Intel Iris Xe Graphics 8GB 256GB SSD Windows 11 Home, UX325EA-DS59-CA",ASUS,"['Laptops, Tablet', None, None, None]",780.88000488281,"{'Screen Size': '13.3""', 'Memory': '8GB', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '256GB'}" -215913,LPASU00558,"ASUS Zenbook Pro 15 Business Notebook, 15.6"" FHD, AMD Ryzen 9 5900HX, NVIDIA GeForce RTX 3050Ti, 16GB, 512GB SSD, Win11 P, UM5500QE-XH99T-CA",ASUS,"['Laptops, Tablet', None, None, None]",1899.0,"{'Screen Size': '15.6""', 'Memory': '16GB', 'Operating System': 'Windows 11 Pro', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}" -215869,LPASU00556,"ASUS ROG Strix G17 Gaming Notebook, 17.3"" FHD, AMD Ryzen 7 4800H, NVIDIA GeForce RTX 3060, 16GB, 1TB SSD, Win11 Home, G713IM-DS71-CA",ASUS,"['Laptops, Tablet', None, None, None]",1196.88,"{'Screen Size': '17.3""', 'Memory': '16GB', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '144Hz', 'SSD Capacity': '1TB'}" -215432,LPHUA00038OB,"HUAWEI Matebook 14 Notebook, 14"", 2160 x 1440, Touch Screen, i5-1135G7, Intel Iris Xe Graphics, 16GB, 512GB SSD, Win 11 Home, 53012STE(Open Box)",HUAWEI,"['Laptops, Tablet', None, None, None]",759.89,"{'Memory': '16GB', 'Screen Size': '14""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '2160 x 1440', 'Refresh Rate': '60 Hz', 'SSD Capacity': '512GB'}" -215229,LPMSI00415,"MSI Stealth 15M Thin Bezel Gaming Notebook, 15.6"" FHD, Intel Core i7-1260P, RTX3060, 16GB 1TB SSD, Windows 11 Home, Stealth 15M B12UE-027CA",MSI,"['Laptops, Tablet', None, None, None]",1999.0,"{'Memory': '16GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '144Hz', 'SSD Capacity': '1TB'}" -215152,LPLEN02684,"Lenovo ThinkPad X1 Yoga Gen 5 Business 2 in 1 Notebook, 14"" Touchscreen, Full HD 1920 x 1080, Intel Core i5-10210U, 16 GB, 256 GB SSD, Windows 10 Pro, 20UB0067US",LENOVO,"['Laptops, Tablet', None, None, None]",980.95999992371,"{'Memory': '16GB', 'Screen Size': '14""', 'Operating System': 'Windows 10 Pro', 'Maximum Resolution': '1080p Full HD', 'Refresh Rate': '60Hz', 'SSD Capacity': '256GB'}" -215140,LPLGE00019OB,"LG gram Ultra-Lightweight Intel EVO Platform Notebook, 16"" QHD, Intel i5-1155G7, Intel Iris Xe Graphics, 8GB, 512GB SSD, Windows 11 Home, 16Z95P-K.AR55A8(Open Box)",LG,"['Laptops, Tablet', None, None, None]",712.39,"{'Notebook Type': 'Consumer', 'Notebook Chassis': 'Thin and Light', 'Screen Size': '16""', 'Maximum Resolution': '2560 x 1600', 'Refresh Rate': '60Hz', 'CPU': 'i5-1155G7'}" -215118,LPHUA00035OB,"HUAWEI Matebook 14 Notebook, 14"", 2160 x 1440, Touch Screen, Intel Core i5-1135G7, Intel Iris Xe Graphics, 16GB, 512GB SSD, Windows 11 Home, 53012STE(Open Box)",HUAWEI,"['Laptops, Tablet', None, None, None]",664.89,"{'Screen Resolution Description': 'QHD', 'Memory': '16GB', 'Screen Size': '14""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '2160 x 1440', 'Refresh Rate': '60 Hz'}" -214982,LPHUA00040,"HUAWEI MateBook D15 Notebook, 15.6"" FHD, i5-1135G7, Intel Iris Xe Graphics, 8GB, 512GB SSD, Win 11 Home, 53012QNY",HUAWEI,"['Laptops, Tablet', None, None, None]",499.88,"{'Memory': '8GB', 'Screen Size': '15.6', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60 Hz', 'SSD Capacity': '512GB'}" -214981,LPHUA00039,"HUAWEI MateBook 14s Notebook, 14.2"", 2520 x 1680, Touch Screen, i7-11370H, Intel Iris Xe Graphics, 16GB, 512GB SSD, Windows 11 Pro, 53012KTB",HUAWEI,"['Laptops, Tablet', None, None, None]",882.95999992371,"{'Memory': '16GB', 'Screen Size': '14.2', 'Operating System': 'Windows 11 Pro', 'Maximum Resolution': '2520 x 1680', 'Refresh Rate': '90 Hz', 'SSD Capacity': '512GB'}" -214828,LPHUA00038,"HUAWEI Matebook 14 Notebook, 14"", 2160 x 1440, Touch Screen, i5-1135G7, Intel Iris Xe Graphics, 16GB, 512GB SSD, Win 11 Home, 53012STE",HUAWEI,"['Laptops, Tablet', None, None, None]",799.88,"{'Memory': '16GB', 'Screen Size': '14""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '2160 x 1440', 'Refresh Rate': '60 Hz', 'SSD Capacity': '512GB'}" -214760,LPASU00547,"ASUS Vivobook 13 Slate Notebook, 13.3"" FHD Touch Screen, Intel Pentium Silver N6000, Intel UHD Graphics, 4GB, 128GB SSD, Win11 Home, T3300KA-DH91T-CA",ASUS,"['Laptops, Tablet', None, None, None]",349.88,"{'Screen Size': '13.3""', 'Memory': '4GB', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '128GB'}" -214188,LPHUA00036,"HUAWEI MateBook D15 Notebook, 15.6"" FHD, i5-1135G7, Intel Iris Xe Graphics, 8GB, 512GB SSD, Win 11 Home, 53012TCA",HUAWEI,"['Laptops, Tablet', None, None, None]",599.0,"{'Memory': '8GB', 'Screen Size': '15.6', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60 Hz', 'SSD Capacity': '512GB'}" -213598,LPASU00540,"ASUS VivoBook Pro 16X Notebook, 16"" FHD, AMD Ryzen 7 5800H, NVIDIA GeForce RTX 3050, 16GB, 512GB SSD, Win11 Home, M7600QC-DH79-CA",ASUS,"['Laptops, Tablet', None, None, None]",1599.0,"{'Screen Size': '16""', 'Memory': '16GB', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '3840 x 2400', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}" -213386,LPLEN02610OB,"Lenovo Thinkpad T450 Business Notebook | 14"" HD Intel Core i5-4300U 16GB DDR3 256GB SSD Windows 10 Pro (Refurbished)(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",265.39,"{'Notebook Type': 'Business', 'Notebook Chassis': 'Clamshell', 'Screen Size': '14""', 'Maximum Resolution': '1366 x 768', 'Refresh Rate': '60Hz', 'CPU': 'i5-4300U'}" -213263,LPLEN02627,"Lenovo ThinkPad L15 Gen2 20X300HDUS 15.6"" Notebook - Full HD - 1920 x 1080 - Intel Core i7 11th Gen i7-1165G7 Quad-core (4 Core) 2.8GHz - 16GB Total RAM - 512GB SSD - Black - no ethernet port - not compatible with mechanical docking stations, only support",LENOVO,"['Laptops, Tablet', None, None, None]",1610.9600012207,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '20X300HDUS', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'ThinkPad', 'General InformationProduct Series': 'L15 Gen2'}" -212372,LPMIF00777,"Microsoft Surface Laptop Go 12.4"" Touchscreen Notebook - QXGA - 1536 x 1024 - Intel Core i5 10th Gen i5-1035G1 Quad-core (4 Core) 1 GHz - 8 GB Total RAM - 1 TB SSD - Windows 10 Home in S mode - Intel UHD Graphics - PixelSense - 13 Hours Battery Run Time -",MICROSOFT,"['Laptops, Tablet', None, None, None]",849.88,"{'General InformationManufacturer': 'Microsoft Corporation', 'General InformationManufacturer Part Number': '1ZZ-00003', 'General InformationManufacturer Website Address': 'http://www.microsoft.ca', 'General InformationBrand Name': 'Microsoft', 'General InformationProduct Line': 'Surface Laptop Go', 'General InformationProduct Name': 'Surface Laptop Go Notebook'}" -210948,LPMSI00381OB,"MSI Prestige 14 Ultra Thin and Light Notebook, 14"" FHD, Intel Core i7-1185G7, NVIDIA GeForce MX450, 16GB DDR4, 1TB SSD, Win10 Home, Prestige 14 A11SB-631CA(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",736.14,"{'Memory': '16GB', 'Screen Size': '14""', 'Operating System': 'Windows 10 Home', 'SSD Capacity': '1TB', 'CPU': 'i7-1185G7', 'Hard Drive Capacity': 'None'}" -210726,LPDEL00592,"Dell Mobile Precision Workstation 7760 CTO Business Notebook, 17.3"" FHD, Intel Core i7-11850H, NVIDIA RTX A4000, 32GB, 2TB+2TB, Win10Pro",DELL,"['Laptops, Tablet', None, None, None]",4599.0,"{'Memory': '32GB', 'Screen Size': '17.3""', 'Operating System': 'Windows 10 Pro', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '2TB + 2TB'}" -210233,LPHEW01653OB,"HP 15-ef1013dx Notebook, 15.6"" FHD Touchscreen, AMD Ryzen 7 4700U, AMD Radeon Graphics, 8GB DDR4, 512GB SSD, Windows 10 Home, 364K3UA#ABA(Open Box)",HP,"['Laptops, Tablet', None, None, None]",445.43999923706,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 10 Home', 'Maximum Resolution': '1080p Full HD', 'SSD Capacity': '512GB', 'CPU': 'Ryzen 7 4700U'}" -207246,LPLGE00015OB,"LG Gram 2-in-1 Ultra-Lightweight Notebook, 16"" FHD, Intel i7-1165G7, Intel Iris Xe Graphics, 16GB, 512GB SSD, Windows 10 Home, 16T90P-K.AA75A8(Open Box)",LG,"['Laptops, Tablet', None, None, None]",902.39,"{'Notebook Type': 'Consumer', 'Notebook Chassis': 'Convertible (2 in 1)', 'Screen Size': '16""', 'Maximum Resolution': '1080p Full HD', 'Refresh Rate': '60Hz', 'CPU': 'i7-1165G7'}" -203438,LPMSI00293OB,"MSI GF75 THIN Gaming Notebook| 17.3"" FHD 144Hz Intel Core i7-10750H | RTX3060, 16GB DDR4, 512GB SSD | Windows 10 Home, VR Ready, GF75 10UEK-003CA(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",1146.4900003815,"{'Memory': '16GB', 'Screen Size': '17.3""', 'Operating System': 'Windows 10', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '144Hz', 'SSD Capacity': '512GB'}" -202423,LPHEW01543OB,"HP 15.6"" Notebook AMD Ryzen 7 5700U, AMD Radeon Graphics, 16GB DDR4, 1TB SSD, Windows 11 Home, 15-ef2030ca(Open Box)",HP,"['Laptops, Tablet', None, None, None]",854.89,"{'Memory': '16GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1080p Full HD', 'SSD Capacity': '1TB', 'CPU': 'Ryzen 7 5700U'}" -201668,LPICA00012OB,"iCAN MID1016-MK Tablet | 10.1"" (800x1280) IPS Panel, MT8167B ARM Cortex-A35 1.3Ghz, 2GB RAM, 64GB ROM | IMG PowerVR GE8300, 0.3MP FF, 2.0MP FF, BT4.1, Android 9.0(Open Box)",iSmart,"['Laptops, Tablet', None, None, None]",94.89,"{'Model': 'MID1016-MK', 'Weight': '0.48KG', 'Dimensions': '294*182*10.8mm', 'Display Size': '10.1""', 'USB': 'USB(5V/2A) Micro USB', 'Operating System': 'Android 9.0'}" -201233,LPMSI00379,"MSI Modern 14 Ultra Thin and Light Notebook, 14"" FHD, Intel Core i7-1195G7, Intel Iris Xe, 8GB 512GB SSD, Win 10 Home, Modern 14 B11MOU-834CA",MSI,"['Laptops, Tablet', None, None, None]",1099.0,"{'Memory': '8GB', 'Screen Size': '14""', 'Operating System': 'Windows 10 Home', 'SSD Capacity': '512GB', 'CPU': 'i7-1195G7', 'Hard Drive Capacity': 'None'}" -201035,LPACE00816,"Acer Nitro Gaming Notebook,15.6"" FHD, Intel i5-11400H, NVIDIA GeForce RTX 3050, 8GB DDR4, 512GB SSD, Windows 11, AN515-57-599A (NH.QELAA.002)",ACER,"['Laptops, Tablet', None, None, None]",715.88,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11', 'Maximum Resolution': '1080p Full HD', 'Refresh Rate': '144Hz', 'SSD Capacity': '512GB'}" -199065,LPHEW01543,"HP 15.6"" Notebook AMD Ryzen 7 5700U, AMD Radeon Graphics, 16GB DDR4, 1TB SSD, Windows 11 Home, 15-ef2030ca",HP,"['Laptops, Tablet', None, None, None]",899.88,"{'Memory': '16GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1080p Full HD', 'SSD Capacity': '1TB', 'CPU': 'Ryzen 7 5700U'}" -198627,LPLEN02299,"Lenovo ThinkPad X13 Yoga Gen 2 20W8002XUS 13.3"" Touchscreen 2 in 1 Notebook - WUXGA - 1920 x 1200 - Intel Core i7 (11th Gen) i7-1165G7 Quad-core (4 Core) 2.80 GHz - 16 GB RAM - 256 GB SSD - Black - Windows 10 Pro - Intel Iris Xe Graphics - In-plane Switch",LENOVO,"['Laptops, Tablet', None, None, None]",2892.49,"{'Manufacturer': 'Lenovo Group Limited', 'Manufacturer Part Number': '20W8002XUS', 'Manufacturer Website Address': 'http://www.lenovo.com/ca/en', 'Brand Name': 'Lenovo', 'Product Line': 'ThinkPad', 'Product Series': 'X13 Yoga Gen 2'}" -198030,LPLEN02269,"Lenovo ThinkPad T14s Gen 2 20WM007YUS 14"" Notebook - Full HD - 1920 x 1080 - Intel Core i5 11th Gen i5-1145G7 Quad-core (4 Core) 2.60 GHz - 8 GB Total RAM - 256 GB SSD - Intel Chip - Windows 10 Pro - Intel Iris Xe Graphics - In-plane Switching (IPS) Techn",LENOVO,"['Laptops, Tablet', None, None, None]",999.0,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '20WM007YUS', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'ThinkPad', 'General InformationProduct Series': 'T14s Gen 2'}" -195680,LPLEN02131,"Lenovo ThinkPad E14 Business Notebook, 14"" Full HD, AMD Ryzen 5 5500U, 8GB, 256GB SSD, Windows 10 Pro, 20Y70037US",LENOVO,"['Laptops, Tablet', None, None, None]",999.0,"{'Hard Drive Capacity': 'None', 'Memory': '8GB', 'Screen Size': '14""', 'Operating System': 'Windows 10 Pro', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz'}" -195447,LPLEN02112,"Lenovo ThinkBook 14s Yoga ITL Notebook | 14"" FHD Touchscreen, Intel i5-1135G7, 8GB DDR4, 256GB SSD, Intel Iris Xe Graphics | Windows 10 Pro, 20WE0014US",LENOVO,"['Laptops, Tablet', None, None, None]",1249.0,"{'Memory': '16GB', 'Screen Size': '14""', 'Operating System': 'Windows 10 Pro', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '256GB'}" -194554,LPLEN02071,"Lenovo ThinkPad X13 Yoga Gen 2 20W80037US 13.3"" Touchscreen 2 in 1 Notebook - WUXGA - 1920 x 1200 - Intel Core i5 (11th Gen) i5-1135G7 Quad-core (4 Core) 2.40 GHz - 8 GB RAM - 256 GB SSD - Black - Windows 10 Pro - Intel Iris Xe Graphics - In-plane Switchi",LENOVO,"['Laptops, Tablet', None, None, None]",2019.0,"{'Manufacturer': 'Lenovo Group Limited', 'Manufacturer Part Number': '20W80037US', 'Manufacturer Website Address': 'http://www.lenovo.com/ca/en', 'Brand Name': 'Lenovo', 'Product Line': 'ThinkPad', 'Product Series': 'X13 Yoga Gen 2'}" -194211,LPLEN02056,"Lenovo IdeaPad Slim 7i Notebook | 14"" FHD, Intel i5-1135G7, 8GB DDR4, 512GB SSD, Intel Iris Xe Graphics | Windows 10 Home, 82A60011CC",LENOVO,"['Laptops, Tablet', None, None, None]",1259.99,"{'Memory': '8GB', 'Screen Size': '14""', 'Operating System': 'Windows 10 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}" -187812,LPLEN01870,"Lenovo ThinkPad X1 Nano Gen1 20UN000AUS 13"" Ultrabook - Intel Core i7 i7-1160G7 EVO Quad-core (4 Core) 2.10 GHz - 16 GB RAM - 256 GB SSD - Black - Windows 10 Pro - Intel Iris Xe Graphics - In-plane Switching (IPS) Technology - English (US) Keyboard - IEEE",LENOVO,"['Laptops, Tablet', None, None, None]",2399.88,"{'Manufacturer': 'Lenovo Group Limited', 'Manufacturer Part Number': '20UN000AUS', 'Manufacturer Website Address': 'http://www.lenovo.com/ca/en', 'Brand Name': 'Lenovo', 'Product Line': 'ThinkPad', 'Product Series': 'X1 Nano Gen1'}" -187650,LPLEN01858,"Lenovo ThinkPad E14 Gen 2 20TA0025US 14"" Notebook - Full HD - 1920 x 1080 - Intel Core i7 i7-1165G7 Quad-core (4 Core) 2.80 GHz - 8 GB Total RAM - 512 GB SSD - Black - Windows 10 Pro - Intel Iris Xe Graphics - In-plane Switching (IPS) Technology - English",LENOVO,"['Laptops, Tablet', None, None, None]",1805.7,"{'Manufacturer': 'Lenovo Group Limited', 'Manufacturer Part Number': '20TA0025US', 'Manufacturer Website Address': 'http://www.lenovo.com/ca/en', 'Brand Name': 'Lenovo', 'Product Line': 'ThinkPad', 'Product Series': 'E14 Gen 2'}" -185879,LPLEN01757,"Lenovo ThinkBook 15 G2 ITL 20VE006UUS 15.6"" Touchscreen Notebook - Full HD - 1920 x 1080 - Intel Core i7 i7-1165G7 Quad-core (4 Core) 2.80 GHz - 16 GB RAM - 512 GB SSD - Mineral Gray - Windows 10 Pro - Intel UHD Graphics - In-plane Switching (IPS) Technol",LENOVO,"['Laptops, Tablet', None, None, None]",1549.0,"{'Manufacturer': 'Lenovo Group Limited', 'Manufacturer Part Number': '20VE006UUS', 'Manufacturer Website Address': 'http://www.lenovo.com/ca/en', 'Brand Name': 'Lenovo', 'Product Line': 'ThinkBook', 'Product Series': '15 G2 ITL'}" -183163,LPMIF00603,"Microsoft Surface Pro X Tablet - 13"" - 16 GB RAM - 256 GB SSD - Windows 10 Pro - 4G - Matte Black, 1WX-00014",MICROSOFT,"['Laptops, Tablet', None, None, None]",2229.0,"{'Manufacturer': 'Microsoft Corporation', 'Manufacturer Part Number': 'QGM-00001', 'Manufacturer Website Address': 'http://www.microsoft.ca', 'Brand Name': 'Microsoft', 'Product Line': 'Surface Pro X', 'Product Name': 'Surface Pro X Tablet'}" -168807,LPMIF00436,"Microsoft Surface Go 2 Tablet - 10.5"" - Intel Pentium Gold 4425Y 1.70 GHz - 4 GB RAM - 64 GB Storage - Windows 10 Home - Silver - microSDXC Supported - 1920 x 1280 - PixelSense Display - 5 Megapixel Front Camera - 10 Hour Maximum Battery Run Time",MICROSOFT,"['Laptops, Tablet', None, None, None]",479.88,"{'Manufacturer': 'Microsoft Corporation', 'Manufacturer Part Number': 'STZ-00001', 'Manufacturer Website Address': 'http://www.microsoft.ca', 'Brand Name': 'Microsoft', 'Product Line': 'Surface Go 2', 'Product Name': 'Surface Go 2 Tablet'}" -167980,LPSAS00045,"Samsung Galaxy Tab S6 Lite Tablet | 10.4"" Exynos 9611 8-Core Processor, 4GB RAM, 128GB Flash Memory | Android, Oxford Grey with S PEN, SM-P610NZAEXAC",SAMSUNG,"['Laptops, Tablet', None, None, None]",479.99,"{'Memory': '4GB', 'Screen Size': '10.4""', 'Operating System': 'Android', 'Maximum Resolution': 'Others', 'SSD Capacity': '128GB eMMC', 'CPU': 'Exynos 9611'}" -167978,LPSAS00043,"Samsung Galaxy Tab S6 Lite Tablet | 10.4"" Exynos 9611 8-Core Processor, 4GB RAM, 64GB Flash Memory | Android, Oxford Grey with S PEN, SM-P610NZAAXAC",SAMSUNG,"['Laptops, Tablet', None, None, None]",449.99,"{'Memory': '4GB', 'Screen Size': '10.4""', 'Operating System': 'Android', 'Maximum Resolution': 'Others', 'SSD Capacity': '64GB eMMC', 'CPU': 'Exynos 9611'}" -165263,LPACE00491,"Acer Aspire 5 (Refurbished) Notebook | 15.6"" FHD Intel i7-10510U | 8GB DDR4, 512GB SSD, Intel UHD 620 graphics | Windows 10 Home, A515-54-74LM (RNB-NX.HNAAA.006)",ACER,"['Laptops, Tablet', None, None, None]",585.88,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 10 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}" -162570,LPSAS00039,"Samsung Galaxy Tab Active Pro SM-T547 Tablet - 10.1"" - 4 GB RAM - 64 GB Storage - Android 9.0 Pie - 4G - Black - Qualcomm Snapdragon 670 SoC Dual-core (2 Core) 2 GHz Hexa-core (6 Core) 1.70 GHz - microSD Supported - 8 Megapixel Front Camera - 13 Megapixel",SAMSUNG,"['Laptops, Tablet', None, None, None]",899.99,"{'Manufacturer': 'Samsung', 'Manufacturer Part Number': 'SM-T547UZKAXAC', 'Manufacturer Website Address': 'http://www.samsung.ca', 'Brand Name': 'Samsung', 'Product Line': 'Galaxy Tab Active Pro', 'Product Model': 'SM-T547'}" -150525,LPASU00227,"Asus Chromebook Flip C434 C434TA-Q1-CB 14"" Chromebook Intel m3-8100Y 4 GB RAM - 64GB Flash Memory - Black, Silver - Chrome OS",ASUS,"['Laptops, Tablet', None, None, None]",699.0,"{'General InformationManufacturer': 'ASUS Computer International', 'General InformationManufacturer Part Number': 'C434TA-Q1-CB', 'General InformationManufacturer Website Address': 'http://www.asus.com', 'General InformationBrand Name': 'Asus', 'General InformationProduct Line': 'Chromebook Flip', 'General InformationProduct Series': 'C434'}" -140290,LPICA00012,"iCAN MID1016-MK Tablet | 10.1"" (800x1280) IPS Panel, MT8167B ARM Cortex-A35 1.3Ghz, 2GB RAM, 64GB ROM | IMG PowerVR GE8300, 0.3MP FF, 2.0MP FF, BT4.1, Android 9.0",iSmart,"['Laptops, Tablet', None, None, None]",99.88,"{'Model': 'MID1016-MK', 'Weight': '0.48KG', 'Dimensions': '294*182*10.8mm', 'Display Size': '10.1""', 'USB': 'USB(5V/2A) Micro USB', 'Operating System': 'Android 9.0'}" -216036,LPASU00561,"ASUS ExpertBook B1 Business Notebook, 15.6"" FHD, Intel Core i5-1135G7, Intel Iris Xe Graphics G7, 8GB, 256GB SSD, Windows 10 Pro, 3YR Warranty, 1YR ADP",ASUS,"['Laptops, Tablet', None, None, None]",599.88,"{'Screen Size': '15.6""', 'Memory': '8GB', 'Operating System': 'Windows 10 Pro', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '256GB'}" diff --git a/PCData/data/canada_computers_laptops_gpt.csv b/PCData/data/canada_computers_laptops_gpt.csv deleted file mode 100644 index 0bd403f..0000000 --- a/PCData/data/canada_computers_laptops_gpt.csv +++ /dev/null @@ -1,609 +0,0 @@ -id,item_id,name,brand,categories,price,specs,gpt_specs -234878,LPASU00715,"ASUS TUF F15 Gaming Laptop 15.6"" FHD Intel i9-13900H GeForce RTX 4060 16GB 1TB SSD Windows 11 Home, FX507VV-DS91-CA",ASUS,"['Laptops, Tablet', None, None, None]",1499.0,"{'Refresh Rate': '144Hz', 'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB'}","{'Brand': 'ASUS', 'Model': 'TUF F15', 'Model Code': 'FX507VV-DS91-CA', 'CPU': 'Intel i9-13900H', 'GPU': 'GeForce RTX 4060', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -239821,LPACE00967,"Acer Nitro 5 Gaming Laptop 15.6"" FHD Intel i9-12900H GeForce RTX 4060 16GB 1TB SSD Windows 11 Home, NH.QM0AA.003",ACER,"['Laptops, Tablet', None, None, None]",1299.0,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}","{'Brand': 'Acer', 'Model': 'Nitro 5', 'Model Code': 'NH.QM0AA.003', 'CPU': 'Intel i9-12900H', 'GPU': 'GeForce RTX 4060', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -241721,LPLEN03469,"Lenovo Legion Pro 5i Gaming Laptop 16"" QHD+ Intel i7-13700HX GeForce RTX 4060 16GB 512GB Windows 11 Home, 82WK00K7CC",LENOVO,"['Laptops, Tablet', None, None, None]",1499.0,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}","{'Brand': 'Lenovo', 'Model': 'Legion Pro 5i', 'Model Code': '82WK00K7CC', 'CPU': 'Intel i7-13700HX', 'GPU': 'GeForce RTX 4060', 'RAM': '16GB', 'Storage': '512GB', 'OS': 'Windows 11 Home', 'Screen': '16""', 'Resolution': 'QHD+'}" -245321,LPHEW02100,"HP 15-fd0030ca Consumer Laptop 15.6"" FHD Intel i5-1340P 16GB 512GB SSD Windows 11 Home, 8M5P0UA#ABL",HP,"['Laptops, Tablet', None, None, None]",699.0,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}","{'Brand': 'HP', 'Model': '15-fd0030ca', 'Model Code': '8M5P0UA#ABL', 'CPU': 'Intel i5-1340P', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -245308,LPGIG00162,"GIGABYTE G5 KF Gaming Laptop 15.6"" FHD 144Hz Intel i7-12650H GeForce RTX 4060 16GB 512GB SSD Windows 11 Home, G5 KF5-G3US353SH",GIGABYTE,"['Laptops, Tablet', None, None, None]",1099.0,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}","{'Brand': 'GIGABYTE', 'Model': 'G5 KF', 'Model Code': 'G5 KF5-G3US353SH', 'CPU': 'Intel i7-12650H', 'GPU': 'GeForce RTX 4060', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD', 'Refresh Rate': '144Hz'}" -230569,LPHEW01946,"HP ProBook 450 G9 15.6"" Business Notebook Intel i5-1235U 16 GB 256 GB SSD, Windows 11 Pro",HP,"['Laptops, Tablet', None, None, None]",899.0,"{'General InformationManufacturer': 'HP Inc.', 'General InformationManufacturer Part Number': '687P0UT#ABA', 'General InformationManufacturer Website Address': 'http://www.hp.com', 'General InformationBrand Name': 'HP', 'General InformationProduct Line': 'ProBook', 'General InformationProduct Series': '450 G9'}","{'Brand': 'HP', 'Model': 'ProBook 450 G9', 'CPU': 'Intel i5-1235U', 'RAM': '16GB', 'Storage': '256GB SSD', 'OS': 'Windows 11 Pro', 'Screen': '15.6""'}" -241145,LPMSI00572,"MSI Thin GF63 Gaming Laptop 15.6"" FHD Intel i5-12450H GeForce RTX 2050 8GB 512GB SSD Windows 11 Home",MSI,"['Laptops, Tablet', None, None, None]",699.0,"{'GPU': 'GeForce RTX 2050', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '15.6""'}","{'Brand': 'MSI', 'Model': 'Thin GF63', 'CPU': 'Intel i5-12450H', 'GPU': 'GeForce RTX 2050', 'RAM': '8GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -243411,LPLEN03502,"LENOVO IdeaPad Slim 3 Consumer Laptop 15.6"" AMD Ryzen 5 7520U 16GB 512GB SSD Windows 11 Home, 82XQ00BECC",LENOVO,"['Laptops, Tablet', None, None, None]",699.0,"{'GPU': 'AMD Radeon 610M', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}","{'Brand': 'LENOVO', 'Model': 'IdeaPad Slim 3', 'Model Code': '82XQ00BECC', 'CPU': 'AMD Ryzen 5 7520U', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""'}" -243633,LPACE00980,"ACER Nitro 5 Gaming Laptop 15.6"" 144Hz AMD Ryzen 7 5800H GeForce RTX 3060 16GB 512GB SSD Windows 11 Home",ACER,"['Laptops, Tablet', None, None, None]",999.0,"{'GPU': 'GeForce RTX 3060', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}","{'Brand': 'ACER', 'Model': 'Nitro 5', 'CPU': 'AMD Ryzen 7 5800H', 'GPU': 'GeForce RTX 3060', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Refresh Rate': '144Hz'}" -240323,LPHEW02049,"HP EliteBook 840 G2 Business Notebook 14"" Touchscreen Core i5-5300U,16 GB DDR3, 256 GB SSD, Windows 10 Professional Refurbished",HP,"['Laptops, Tablet', None, None, None]",269.0,"{'Memory': '16GB', 'Storage Type': 'SSD', 'CPU Brand': 'Intel', 'Product Condition': 'Refurbished', 'Product Condition Short': 'Refurb', 'Screen Resolution Description': 'FHD'}","{'Brand': 'HP', 'Model': 'EliteBook 840 G2', 'Screen': '14"" Touchscreen', 'CPU': 'Core i5-5300U', 'RAM': '16GB DDR3', 'Storage': '256GB SSD', 'OS': 'Windows 10 Professional', 'Condition': 'Refurbished'}" -243416,LPLEN03503,"Lenovo Legion Slim 7i Gaming Laptop 16"" QHD 240Hz Intel i9-13900H GeForce RTX 4070 32GB 1TB SSD Windows 11 Home, 82Y3007HCC",LENOVO,"['Laptops, Tablet', None, None, None]",2299.0,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '32GB', 'Screen Size': '16""'}","{'Brand': 'Lenovo', 'Series': 'Legion Slim 7i', 'Model': '82Y3007HCC', 'Screen Size': '16""', 'Resolution': 'QHD', 'Refresh Rate': '240Hz', 'CPU': 'Intel i9-13900H', 'GPU': 'NVIDIA GeForce RTX 4070', 'RAM': '32GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home'}" -235073,LPMSI00539,"MSI Katana 15 Gaming Laptop 15.6"" FHD Intel i7-12650H GeForce RTX 4060 16GB 1TB SSD Windows 11 Home, B12VFK-237CA",MSI,"['Laptops, Tablet', None, None, None]",1399.0,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}","{'Brand': 'MSI', 'Model': 'Katana 15', 'Model Code': 'B12VFK-237CA', 'CPU': 'Intel i7-12650H', 'GPU': 'GeForce RTX 4060', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -243636,LPACE00981,"ACER Aspire 5 Consumer Laptop 15.6"" AMD Ryzen 3 5300U 8GB 256GB SSD Windows 11 S, A515-45-R4RP",ACER,"['Laptops, Tablet', None, None, None]",449.0,"{'GPU': 'AMD Radeon Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 S', 'Memory': '8GB', 'Screen Size': '15.6""'}","{'Brand': 'ACER', 'Model': 'Aspire 5', 'Model Code': 'A515-45-R4RP', 'CPU': 'AMD Ryzen 3 5300U', 'RAM': '8GB', 'Storage': '256GB SSD', 'OS': 'Windows 11 S', 'Screen': '15.6""'}" -229726,LPASU00666,"Asus Vivobook 16 Laptop 16"" WUXGA AMD Ryzen 5 5600H AMD Radeon Graphics 8GB 512GB SSD Windows 11 Home, M1603QA-RH51-CA",ASUS,"['Laptops, Tablet', None, None, None]",599.0,"{'GPU': 'AMD Radeon Graphics', 'Maximum Resolution': '1920 x 1200', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '16""'}","{'Brand': 'Asus', 'Model': 'Vivobook 16', 'Model Code': 'M1603QA-RH51-CA', 'CPU': 'AMD Ryzen 5 5600H', 'GPU': 'AMD Radeon Graphics', 'RAM': '8GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '16""', 'Resolution': 'WUXGA'}" -239822,LPACE00968,"Acer Nitro 5 Gaming Laptop 15.6"" FHD Intel i5-12450H GeForce RTX 4060 16GB 512GB SSD Windows 11 Home, NH.QM0AA.004",ACER,"['Laptops, Tablet', None, None, None]",1099.0,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}","{'Brand': 'Acer', 'Model': 'Nitro 5', 'Model Code': 'NH.QM0AA.004', 'CPU': 'Intel i5-12450H', 'GPU': 'GeForce RTX 4060', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -234397,LPHEW01967,"HP ProBook 440 G9 14"" Business Laptop Intel i5-1235U 16 GB 256 GB SSD, Windows 11 Pro",HP,"['Laptops, Tablet', None, None, None]",749.0,"{'General InformationManufacturer': 'HP Inc.', 'General InformationManufacturer Part Number': '6J8Q6UT#ABA', 'GPU': 'Intel Iris Xe', 'General InformationManufacturer Website Address': 'http://www.hp.com', 'Maximum Resolution': '1920 x 1080', 'General InformationBrand Name': 'HP'}","{'Brand': 'HP', 'Model': 'ProBook 440 G9', 'Screen': '14""', 'CPU': 'Intel i5-1235U', 'RAM': '16GB', 'Storage': '256GB SSD', 'OS': 'Windows 11 Pro'}" -239788,LPLEN03438,"Lenovo Legion Pro 5 Gaming Notebook 16"" 165Hz WQXGA AMD Ryzen 7 7745HX GeForce RTX 4070 16GB 512GB SSD Windows 11 Home, 82WM005VCC",LENOVO,"['Laptops, Tablet', None, None, None]",1699.0,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}","{'Brand': 'Lenovo', 'Model': 'Legion Pro 5', 'Model Code': '82WM005VCC', 'CPU': 'AMD Ryzen 7 7745HX', 'GPU': 'GeForce RTX 4070', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '16""', 'Resolution': 'WQXGA', 'Refresh Rate': '165Hz'}" -242615,LPLEN03487,"Lenovo ThinkPad E16 Business Laptop 16"" FHD Intel i7-1355U 16GB 512GB SSD Windows 11 Pro, 21JN0073US",LENOVO,"['Laptops, Tablet', None, None, None]",1199.0,"{'Memory': '16GB', 'Model': 'ThinkPad E16', 'Screen Size': '16""', 'Operating System': 'Windows 11 Pro', 'Maximum Resolution': '1920 x 1200', 'Refresh Rate': '60Hz'}","{'Brand': 'Lenovo', 'Series': 'ThinkPad E16', 'Model': '21JN0073US', 'CPU': 'Intel i7-1355U', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Pro', 'Screen': '16""', 'Resolution': 'FHD'}" -243491,LPHEW02087,"HP Victus 15-fb0000ca Gaming Laptop 15.6"" 144Hz AMD Ryzen 5 5600H GeForce RTX 3050 Ti 16GB 512GB SSD Windows 11 Home, 89A37UA#ABL",HP,"['Laptops, Tablet', None, None, None]",849.0,"{'GPU': 'GeForce RTX 3050 Ti', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}","{'Brand': 'HP', 'Model': 'Victus 15-fb0000ca', 'Model Code': '89A37UA#ABL', 'CPU': 'AMD Ryzen 5 5600H', 'GPU': 'GeForce RTX 3050 Ti', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Refresh Rate': '144Hz'}" -239806,LPMSI00564,"MSI Bravo 15 Gaming Laptop 15.6"" FHD AMD Ryzen 7 7735HS GeForce RTX 4060 32GB 1TB SSD Windows 11 Home, C7VFK-057CA",MSI,"['Laptops, Tablet', None, None, None]",1399.0,"{'GPU': 'Ge Force RTX 4060', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '32GB', 'Screen Size': '15.6""'}","{'Brand': 'MSI', 'Model': 'Bravo 15', 'Model Code': 'C7VFK-057CA', 'CPU': 'AMD Ryzen 7 7735HS', 'GPU': 'GeForce RTX 4060', 'RAM': '32GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -242954,LPLEN03493,"LENOVO Thinkbook T490 Business Laptop 14"" Intel i5-8365U 16GB 256GB SSD Windows 10 Pro Refurbished",LENOVO,"['Laptops, Tablet', None, None, None]",399.0,"{'GPU': 'Intel UHD Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 10 Pro', 'Memory': '16GB', 'Screen Size': '14""'}","{'Brand': 'Lenovo', 'Series': 'Thinkbook T490', 'Type': 'Business Laptop', 'Screen Size': '14""', 'CPU': 'Intel i5-8365U', 'RAM': '16GB', 'Storage': '256GB SSD', 'OS': 'Windows 10 Pro', 'Condition': 'Refurbished'}" -242916,LPASU00786,"ASUS Vivobook 16X Laptop 16"" Intel i5-1235U 8GB 512GB SSD Windows 11 Home, X1605ZA-DB51-CA",ASUS,"['Laptops, Tablet', None, None, None]",649.0,"{'GPU': 'Intel UHD Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '16""'}","{'Brand': 'ASUS', 'Model': 'Vivobook 16X', 'Model Code': 'X1605ZA-DB51-CA', 'CPU': 'Intel i5-1235U', 'RAM': '8GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '16""'}" -238858,LPHEW02028,"HP Consumer Laptop 15.6"" FHD AMD Ryzen 7 7730U AMD Radeon Graphics 16GB 1TB SSD Windows 11 Home, 15-fc0040ca",HP,"['Laptops, Tablet', None, None, None]",849.0,"{'Memory': '16GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1080p Full HD', 'SSD Capacity': '1TB', 'CPU': 'Ryzen 7 7730U'}","{'Brand': 'HP', 'Model': '15-fc0040ca', 'CPU': 'AMD Ryzen 7 7730U', 'GPU': 'AMD Radeon Graphics', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -245318,LPHEW02099,"HP 17-cn3020ca Consumer Laptop 17.3"" FHD Intel i5-1335U 16GB 512GB SSD Windows 11 Home, 8N3T7UA#ABL",HP,"['Laptops, Tablet', None, None, None]",799.0,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '17.3""'}","{'Brand': 'HP', 'Model': '17-cn3020ca', 'Model Code': '8N3T7UA#ABL', 'CPU': 'Intel i5-1335U', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '17.3""', 'Resolution': 'FHD'}" -248768,LPLEN03685,"Lenovo IdeaPad Slim 3 15AMN8 Laptop 15.6"" FHD AMD Ryzen 3 7320U 8GB 256GB SSD Windows 11 S, 82XQ001JCF",LENOVO,"['Laptops, Tablet', None, None, None]",449.0,"{'GPU': 'AMD Radeon 610M Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 S', 'Memory': '8GB', 'Screen Size': '15.6""'}","{'Brand': 'Lenovo', 'Model': 'IdeaPad Slim 3 15AMN8', 'Model Code': '82XQ001JCF', 'CPU': 'AMD Ryzen 3 7320U', 'RAM': '8GB', 'Storage': '256GB SSD', 'OS': 'Windows 11 S', 'Screen': '15.6""', 'Resolution': 'FHD'}" -245788,LPLEN03569,"Lenovo V14 Business Laptop 14"" FHD Ryzen 5 5500U 16GB 512GB SSD Windows 11 Pro, 83FG0004US",LENOVO,"['Laptops, Tablet', None, None, None]",699.0,"{'GPU': 'AMD Radeon Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '16GB', 'Screen Size': '14""'}","{'Brand': 'Lenovo', 'Model': 'V14', 'Model Code': '83FG0004US', 'CPU': 'Ryzen 5 5500U', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Pro', 'Screen': '14""', 'Resolution': 'FHD'}" -239703,LPMSI00553,"MSI Vector GP68HX Gaming Notebook 16"" Intel i9-12900HX GeForce RTX 4080 32GB 1TB SSD Windows 11 Home, 12VH-012CA",MSI,"['Laptops, Tablet', None, None, None]",2499.0,"{'GPU': 'GeForce RTX 4080', 'Maximum Resolution': '1920 x 1200', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '32GB', 'Screen Size': '16""'}","{'Brand': 'MSI', 'Model': 'Vector GP68HX', 'Model Code': '12VH-012CA', 'CPU': 'Intel i9-12900HX', 'GPU': 'GeForce RTX 4080', 'RAM': '32GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '16""'}" -242479,LPASU00784,"ASUS Vivobook 15 OLED Consumer Laptop 15.6"" AMD Ryzen 7 7730U 16GB 512GB SSD Windows 11 Home, M1505YA-DB71-CA",ASUS,"['Laptops, Tablet', None, None, None]",849.0,"{'GPU': 'AMD Radeon Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}","{'Brand': 'ASUS', 'Model': 'Vivobook 15 OLED', 'Model Code': 'M1505YA-DB71-CA', 'CPU': 'AMD Ryzen 7 7730U', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""'}" -234953,LPASU00720,"ASUS ROG Strix G17 Gaming Notebook 17.3"" WQHD AMD Ryzen 9 7945HX RTX 4060 16GB 1TB SSD Windows 11 Home, G713PV-DS91-CA",ASUS,"['Laptops, Tablet', None, None, None]",1999.0,"{'GPU': 'RTX\xa04060', 'Maximum Resolution': '2560X1440', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '17.3""'}","{'Brand': 'ASUS', 'Series': 'ROG Strix G17', 'Model': 'G713PV-DS91-CA', 'CPU': 'AMD Ryzen 9 7945HX', 'GPU': 'NVIDIA RTX 4060', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '17.3""', 'Resolution': 'WQHD'}" -245791,LPMSI00593,"MSI Katana 17 Gaming Laptop 17.3"" 144Hz Intel i7-13620H GeForce RTX 4070 16GB 1TB SSD Windows 11 Home, Katana 17 B13VGK-645CA",MSI,"['Laptops, Tablet', None, None, None]",1799.0,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '17.3""'}","{'Brand': 'MSI', 'Model': 'Katana 17', 'Model Code': 'B13VGK-645CA', 'CPU': 'Intel i7-13620H', 'GPU': 'GeForce RTX 4070', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '17.3""', 'Refresh Rate': '144Hz'}" -239779,LPLEN03433,"Lenovo Legion Pro 5 Gaming Laptop 16"" AMD Ryzen 7 7745HX GeForce RTX 4070 16GB 1TB SSD Windows 11 Home, 82WM005YCC",LENOVO,"['Laptops, Tablet', None, None, None]",1799.0,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}","{'Brand': 'Lenovo', 'Model': 'Legion Pro 5', 'Model Code': '82WM005YCC', 'CPU': 'AMD Ryzen 7 7745HX', 'GPU': 'GeForce RTX 4070', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '16""'}" -241425,LPMSI00575,"MSI Modern 15 Consumer Laptop 15.6"" FHD Intel i7-1255U Intel Iris Xe 16GB 512GB SSD Windows 11 Home",MSI,"['Laptops, Tablet', None, None, None]",699.0,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}","{'Brand': 'MSI', 'Model': 'Modern 15', 'CPU': 'Intel i7-1255U', 'GPU': 'Intel Iris Xe', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -237444,LPASU00752,"Asus Vivobook 17 Consumer Notebook 17.3"" FHD Intel i7-1165G7 Intel Iris Xe Graphics 8GB 512GB SSD Windows 11 Home, X712EA-MS72-CA",ASUS,"['Laptops, Tablet', None, None, None]",699.0,"{'GPU': 'Intel Iris Xe Graphics', 'Maximum Resolution': '1080p Full HD', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '17.3""'}","{'Brand': 'Asus', 'Model': 'Vivobook 17', 'Model Code': 'X712EA-MS72-CA', 'CPU': 'Intel i7-1165G7', 'GPU': 'Intel Iris Xe Graphics', 'RAM': '8GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '17.3""', 'Resolution': 'FHD'}" -245636,LPLEN03567,"LENOVO ThinkPad X1 Gen 3 Business Laptop 13"" Detachable (2 in 1) QHD Intel i7-8550U 16GB 256GB SSD Windows 11 Pro Refurbished",LENOVO,"['Laptops, Tablet', None, None, None]",399.0,"{'GPU': 'Intel UHD Graphics 620', 'Maximum Resolution': '3000 x 2000', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Pro', 'Memory': '16GB', 'Screen Size': '13""'}","{'Brand': 'LENOVO', 'Model': 'ThinkPad X1 Gen 3', 'Form factor': '2 in 1 (Detachable)', 'Screen size': '13""', 'Resolution': 'QHD', 'CPU': 'Intel i7-8550U', 'RAM': '16GB', 'Storage': '256GB SSD', 'OS': 'Windows 11 Pro', 'Condition': 'Refurbished'}" -234880,LPASU00716,"ASUS TUF F15 Gaming Notebook 15.6"" FHD Intel i7-12700H RTX 3050 16GB 512GB SSD Windows 11 Home, FX507ZC4-DS71-CA",ASUS,"['Laptops, Tablet', None, None, None]",1099.0,"{'GPU': 'RTX\xa03050', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}","{'Brand': 'ASUS', 'Model': 'TUF F15', 'Model Code': 'FX507ZC4-DS71-CA', 'CPU': 'Intel i7-12700H', 'GPU': 'RTX\xa03050', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -229230,LPHEW01929,"HP ProBook 440 G9 14"" Business Laptop FHD Intel Core i5-1235U 8GB RAM 256GB SSD Silver Windows 11 Pro",HP,"['Laptops, Tablet', None, None, None]",599.0,"{'General InformationManufacturer': 'HP Inc.', 'General InformationManufacturer Part Number': '687M8UT#ABA', 'General InformationManufacturer Website Address': 'http://www.hp.com', 'General InformationBrand Name': 'HP', 'General InformationProduct Line': 'ProBook', 'General InformationProduct Series': '440 G9'}","{'Brand': 'HP', 'Model': 'ProBook 440 G9', 'Screen': '14""', 'Resolution': 'FHD', 'CPU': 'Intel Core i5-1235U', 'RAM': '8GB', 'Storage': '256GB SSD', 'Color': 'Silver', 'OS': 'Windows 11 Pro'}" -216029,LPASU00560,"ASUS ExpertBook B1 Business Laptop 14"" Intel i5-1135G7 8GB 256GB SSD Windows 10 Pro, 3YR Warranty, 1YR ADP",ASUS,"['Laptops, Tablet', None, None, None]",799.0,"{'Screen Size': '14""', 'Memory': '8GB', 'Operating System': 'Windows 10 Pro', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '256GB'}","{'Brand': 'ASUS', 'Model': 'ExpertBook B1', 'CPU': 'Intel i5-1135G7', 'RAM': '8GB', 'Storage': '256GB SSD', 'OS': 'Windows 10 Pro', 'Screen': '14""', 'Warranty': '3YR', 'ADP (Accidental Damage Protection)': '1YR'}" -237316,LPLEN03390,"LENOVO ThinkPad T14 G3 Business Laptop 14"" Touchscreen Ryzen 5 Pro 6650U AMD Radeon 660M 16GB 256GB SSD Windows 10 Pro, 21CF000CUS",LENOVO,"['Laptops, Tablet', None, None, None]",799.0,"{'GPU': 'AMD Radeon 660M', 'Maximum Resolution': '1920 x 1200', 'Touch Screen': 'Yes', 'Operating System': 'Windows 10 Pro', 'Memory': '16GB', 'Screen Size': '14""'}","{'Brand': 'LENOVO', 'Series': 'ThinkPad T14 G3', 'Model': '21CF000CUS', 'CPU': 'Ryzen 5 Pro 6650U', 'GPU': 'AMD Radeon 660M', 'RAM': '16GB', 'Storage': '256GB SSD', 'OS': 'Windows 10 Pro', 'Screen': '14""', 'Touchscreen': 'Yes'}" -244770,LPACE00984,"ACER Aspire 3 Consumer Laptop 15.6"" FHD Intel i5-1235U 16GB 512GB SSD Windows 11 Home, A315-59-59UU",ACER,"['Laptops, Tablet', None, None, None]",699.0,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}","{'Brand': 'ACER', 'Model': 'Aspire 3', 'Model Code': 'A315-59-59UU', 'CPU': 'Intel i5-1235U', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -234684,LPASU00707,"ASUS Zenbook OLED Touchscreen Consumer Notebook 14"" WQXGA AMD Ryzen 7 7730U AMD Radeon 16GB 1TB SSD Windows 11 Home, UM3402YAR-DS71T-CA",ASUS,"['Laptops, Tablet', None, None, None]",1199.0,"{'GPU': 'AMD Radeon', 'Maximum Resolution': '2880X1800', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '14""'}","{'Brand': 'ASUS', 'Model': 'Zenbook', 'Model Code': 'UM3402YAR-DS71T-CA', 'CPU': 'AMD Ryzen 7 7730U', 'GPU': 'AMD Radeon', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '14""', 'Resolution': 'WQXGA', 'Touchscreen': 'Yes (OLED)'}" -234408,LPASU00688,"ASUS TUF Gaming F15 Gaming Laptop 15.6"" FHD Intel Core i9-13900H GeForce RTX 4050 16GB 512GB SSD Windows 11 Home, FX507VU-DS91-CA",ASUS,"['Laptops, Tablet', None, None, None]",1399.0,"{'GPU': 'GeForce\xa0RTX\xa04050', 'Maximum Resolution': '1080p Full HD', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}","{'Brand': 'ASUS', 'Model': 'TUF Gaming F15', 'Model Code': 'FX507VU-DS91-CA', 'CPU': 'Intel Core i9-13900H', 'GPU': 'GeForce RTX 4050', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -239785,LPLEN03435,"Lenovo Legion Pro 5 Gaming Laptop 16"" Intel i7-13700HX GeForce RTX 4060 16GB 1TB SSD Windows 11 Home, 82WK00H9CC",LENOVO,"['Laptops, Tablet', None, None, None]",1799.0,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}","{'Brand': 'Lenovo', 'Model': 'Legion Pro 5', 'Model Code': '82WK00H9CC', 'CPU': 'Intel i7-13700HX', 'GPU': 'GeForce RTX 4060', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '16""'}" -243968,LPLEN03518,"LENOVO Thinkbook T480s Business Notebook 14"" FHD Intel i5-8350U 16GB 256GB SSD Windows 11 Pro, Refurbished",LENOVO,"['Laptops, Tablet', None, None, None]",399.0,"{'GPU': 'Intel UHD Graphics 620', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '16GB', 'Screen Size': '14""'}","{'Brand': 'LENOVO', 'Model': 'Thinkbook T480s', 'CPU': 'Intel i5-8350U', 'RAM': '16GB', 'Storage': '256GB SSD', 'OS': 'Windows 11 Pro', 'Screen': '14""', 'Resolution': 'FHD', 'Condition': 'Refurbished'}" -235074,LPMSI00540,"MSI Thin GF63 Gaming Notebook 15.6"" FHD Intel i7-12650H GeForce RTX 4050 16GB 512GB SSD Windows 11 Home, 12VE-033CA",MSI,"['Laptops, Tablet', None, None, None]",1499.0,"{'GPU': 'GeForce RTX 4050', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}","{'Brand': 'MSI', 'Model': 'Thin GF63', 'Model Code': '12VE-033CA', 'CPU': 'Intel i7-12650H', 'GPU': 'GeForce RTX 4050', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -246281,LPLEN03573,"LENOVO ThinkPad T490 Business Laptop 14"" FHD Intel i7-8550U Intel UHD Graphics 620 16GB 256GB SSD Windows 11 Pro, Refurbished",LENOVO,"['Laptops, Tablet', None, None, None]",549.0,"{'GPU': 'Intel UHD Graphics 620', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '16GB', 'Screen Size': '14""'}","{'Brand': 'LENOVO', 'Model': 'ThinkPad T490', 'CPU': 'Intel i7-8550U', 'GPU': 'Intel UHD Graphics 620', 'RAM': '16GB', 'Storage': '256GB SSD', 'OS': 'Windows 11 Pro', 'Screen': '14""', 'Resolution': 'FHD', 'Condition': 'Refurbished'}" -245558,LPLEN03565,"LENOVO Legion Pro 5 16ARX8 Gaming Laptop 16"" 165Hz QHD Ryzen 7 7745HX GeForce RTX 4060 16GB 1TB SSD Windows 11 Home, 82WM005UCC",LENOVO,"['Laptops, Tablet', None, None, None]",1699.0,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}","{'Brand': 'LENOVO', 'Model': 'Legion Pro 5 16ARX8', 'Model Code': '82WM005UCC', 'CPU': 'Ryzen 7 7745HX', 'GPU': 'GeForce RTX 4060', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '16""', 'Resolution': 'QHD', 'Refresh Rate': '165Hz'}" -243681,LPHUA00042,"HUAWEI Matebook D14 Consumer Laptop 14"" Intel i7-1360P 16GB 1TB SSD Windows 11 Home, 53013VBB",HUAWEI,"['Laptops, Tablet', None, None, None]",999.0,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1200', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '14""'}","{'Brand': 'HUAWEI', 'Model': 'Matebook D14', 'Model Code': '53013VBB', 'CPU': 'Intel i7-1360P', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '14""'}" -242315,LPHEW02076,"HP Victus Gaming Notebook 16.1"" AMD Ryzen 5 7640HS GeForce RTX 4050 16GB 512GB SSD Windows 11 Home, 7X7B1UA#ABL",HP,"['Laptops, Tablet', None, None, None]",999.0,"{'Memory': '16GB', 'Screen Size': '16.1""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '144Hz', 'SSD Capacity': '512GB'}","{'Brand': 'HP', 'Model': 'Victus Gaming Notebook', 'Model Code': '7X7B1UA#ABL', 'CPU': 'AMD Ryzen 5 7640HS', 'GPU': 'GeForce RTX 4050', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '16.1""'}" -239808,LPMSI00565,"MSI Bravo 15 Gaming Notebook 15.6"" AMD Ryzen 7 7735HS GeForce RTX 4050 16GB 1TB SSD Windows 11 Home, C7VEK-058CA",MSI,"['Laptops, Tablet', None, None, None]",1599.0,"{'GPU': 'GeForce RTX 4050', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}","{'Brand': 'MSI', 'Model': 'Bravo 15', 'Model Code': 'C7VEK-058CA', 'CPU': 'AMD Ryzen 7 7735HS', 'GPU': 'GeForce RTX 4050', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""'}" -247065,LPLEN03578,"Lenovo Yoga L390 Business Laptop 13.3"" Touchscreen FHD Intel i5-8365U 16GB 256GB SSD Windows 11 Pro Refurbished",LENOVO,"['Laptops, Tablet', None, None, None]",449.0,"{'GPU': 'Intel® UHD Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Pro', 'Memory': '16GB', 'Screen Size': '13.3""'}","{'Brand': 'Lenovo', 'Model': 'Yoga L390', 'CPU': 'Intel i5-8365U', 'RAM': '16GB', 'Storage': '256GB SSD', 'OS': 'Windows 11 Pro', 'Screen': '13.3""', 'Touchscreen': 'Yes', 'Resolution': 'FHD', 'Condition': 'Refurbished'}" -239726,LPMSI00560,"MSI Thin GF63 Gaming Notebook 15.6"" FHD Intel i5-12450H GeForce RTX 4060 16GB 512GB SSD Windows 11 Home,12VF-275CA",MSI,"['Laptops, Tablet', None, None, None]",1199.0,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}","{'Brand': 'MSI', 'Model': 'Thin GF63', 'Model Code': '12VF-275CA', 'CPU': 'Intel i5-12450H', 'GPU': 'GeForce RTX 4060', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -239720,LPMSI00555,"MSI Stealth 15 Gaming Notebook 15.6"" QHD OLED Intel i9-13900H GeForce RTX 4060 32GB 1TB SSD Windows 11 Home, A13VF-071CA",MSI,"['Laptops, Tablet', None, None, None]",2199.0,"{'Maximum Resolution': '2560 x 1440', 'GPU': 'GeForce RTX 4060', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '32GB', 'Screen Size': '15.6""'}","{'Brand': 'MSI', 'Model': 'Stealth 15', 'Model Code': 'A13VF-071CA', 'CPU': 'Intel i9-13900H', 'GPU': 'GeForce RTX 4060', 'RAM': '32GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'QHD OLED'}" -234898,LPASU00719,"ASUS ROG Strix Gaming Notebook 17.3"" FHD AMD Ryzen 9 7945HX RTX 4050 16GB 1TB SSD Windows 11 Home, G713PU-DS91-CA",ASUS,"['Laptops, Tablet', None, None, None]",1799.0,"{'GPU': 'RTX\xa04050', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '17.3""'}","{'Brand': 'ASUS', 'Series': 'ROG Strix', 'Model': 'G713PU-DS91-CA', 'Screen': '17.3""', 'Resolution': 'FHD', 'CPU': 'AMD Ryzen 9 7945HX', 'GPU': 'RTX 4050', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home'}" -241844,LPASU00782,"ASUS Vivobook Go Consumer Notebook 15.6"" AMD Ryzen 3 7320U 8GB 128GB SSD Windows 11 S, E1504FA-DB31-CA-SL",ASUS,"['Laptops, Tablet', None, None, None]",449.0,"{'GPU': 'AMD Radeon Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 S', 'Memory': '8GB', 'Screen Size': '15.6""'}","{'Brand': 'ASUS', 'Model': 'Vivobook Go', 'Model Code': 'E1504FA-DB31-CA-SL', 'CPU': 'AMD Ryzen 3 7320U', 'RAM': '8GB', 'Storage': '128GB SSD', 'OS': 'Windows 11 S', 'Screen': '15.6""'}" -216483,LPASU00581,"Asus ExpertBook B1 15.6"" Business Laptop FHD Intel i5-1135G7 8 GB 256 GB SSD Windows 11 Pro, 3YR Warranty, 1YR ADP",ASUS,"['Laptops, Tablet', None, None, None]",599.0,"{'General InformationManufacturer': 'ASUS Computer International', 'General InformationManufacturer Part Number': 'B1500CEAE-Q53WP-CB', 'General InformationManufacturer Website Address': 'http://www.asus.com', 'General InformationBrand Name': 'Asus', 'General InformationProduct Line': 'ExpertBook B1', 'General InformationProduct Series': 'B1500'}","{'Brand': 'Asus', 'Model': 'ExpertBook B1', 'Screen': '15.6""', 'Resolution': 'FHD', 'CPU': 'Intel i5-1135G7', 'RAM': '8GB', 'Storage': '256GB SSD', 'OS': 'Windows 11 Pro', 'Warranty': '3 years', 'Accidental Damage Protection (ADP)': '1 year'}" -234968,LPASU00724,"ASUS ROG Zephyrus Gaming Notebook 16"" WQXGA Intel i9-13900H GeForce RTX 4070 32GB 1TB SSD Windows 11 Home, GU604VI-DS92-CA",ASUS,"['Laptops, Tablet', None, None, None]",2499.0,"{'Refresh Rate': '240Hz', 'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '2560X1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '32GB'}","{'Brand': 'ASUS', 'Model': 'ROG Zephyrus', 'Model Code': 'GU604VI-DS92-CA', 'CPU': 'Intel i9-13900H', 'GPU': 'GeForce RTX 4070', 'RAM': '32GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '16""', 'Resolution': 'WQXGA'}" -238751,LPASU00760,"ASUS Vivobook 16X Gaming Laptop 16"" WUXGA Intel i9-13900H Geforce RTX 4050 16GB 512GB SSD Windows 11 Home, K3605VU-DS91-CA",ASUS,"['Laptops, Tablet', None, None, None]",1699.0,"{'GPU': 'Geforce RTX 4050', 'Maximum Resolution': '1920 x 1200', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}","{'Brand': 'ASUS', 'Model': 'Vivobook 16X', 'Model Code': 'K3605VU-DS91-CA', 'CPU': 'Intel i9-13900H', 'GPU': 'GeForce RTX 4050', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '16""', 'Resolution': 'WUXGA'}" -238748,LPHEW02023,"HP Consumer Notebook 14"" FHD AMD Ryzen 5 7520U AMD Radeon Graphics 8GB 512GB SSD Windows 11 Home, 14-em0040ca",HP,"['Laptops, Tablet', None, None, None]",599.0,"{'Memory': '8GB', 'Screen Size': '14""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': 'FHD', 'SSD Capacity': '512GB', 'CPU': 'Ryzen 5 7520U'}","{'Brand': 'HP', 'Model': 'Consumer Notebook 14', 'Model Code': '14-em0040ca', 'CPU': 'AMD Ryzen 5 7520U', 'GPU': 'AMD Radeon Graphics', 'RAM': '8GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '14""', 'Resolution': 'FHD'}" -235326,LPHEW01997,"HP ENVY X360 13.3"" OLED Touchscreen 2 in 1 Laptop QHD i7-1250U 16GB 1TB SSD Windows 11 Home, 6J0Q0UA#ABL",HP,"['Laptops, Tablet', None, None, None]",1299.0,"{'Memory': '16GB', 'Screen Size': '13.3""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '2880 x 1800', 'Refresh Rate': '60Hz', 'SSD Capacity': '1TB'}","{'Brand': 'HP', 'Model': 'ENVY X360', 'Model Code': '6J0Q0UA#ABL', 'Screen': '13.3"" OLED Touchscreen', 'Resolution': 'QHD', 'CPU': 'Intel i7-1250U', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Convertible': 'Yes (2 in 1 design)'}" -234958,LPASU00721,"ASUS ROG Strix Gaming Notebook 17.3"" WQHD AMD Ryzen 9 7945HX RTX 4080 32GB 1TB SSD Windows 11 Pro, G733PZ-XS96",ASUS,"['Laptops, Tablet', None, None, None]",3499.0,"{'GPU': 'RTX\xa04080', 'Maximum Resolution': 'WQHD', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '32GB', 'Screen Size': '17.3""'}","{'Brand': 'ASUS', 'Model': 'ROG Strix', 'Model Code': 'G733PZ-XS96', 'CPU': 'AMD Ryzen 9 7945HX', 'GPU': 'RTX 4080', 'RAM': '32GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Pro', 'Screen': '17.3""', 'Resolution': 'WQHD'}" -240054,LPASU00770,"ASUS ROG Zephyrus G14 Gaming Notebook 14"" QHD AMD Ryzen 9 7940HS GeForce RTX 4080 16GB 1TB SSD Windows 11 Home, GA402XZ-CS94",ASUS,"['Laptops, Tablet', None, None, None]",2999.0,"{'GPU': 'GeForce RTX 4080', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '14""'}","{'Brand': 'ASUS', 'Series': 'ROG Zephyrus G14', 'Model': 'GA402XZ-CS94', 'CPU': 'AMD Ryzen 9 7940HS', 'GPU': 'GeForce RTX 4080', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '14""', 'Resolution': 'QHD'}" -201084,LPASU00500,"Asus ExpertBook B1 14"" Laptop Intel i5 1135G7 8 GB 256 GB SSD Windows 10 Home, B1400CEAE-Q51H-CB",ASUS,"['Laptops, Tablet', None, None, None]",549.0,"{'General InformationManufacturer': 'ASUS Computer International', 'General InformationManufacturer Part Number': 'B1400CEAE-Q51H-CB', 'General InformationManufacturer Website Address': 'http://www.asus.com', 'General InformationBrand Name': 'Asus', 'General InformationProduct Line': 'ExpertBook B1', 'General InformationProduct Series': 'B1400'}","{'Brand': 'Asus', 'Model': 'ExpertBook B1', 'Model Code': 'B1400CEAE-Q51H-CB', 'CPU': 'Intel i5 1135G7', 'RAM': '8GB', 'Storage': '256GB SSD', 'OS': 'Windows 10 Home', 'Screen': '14""'}" -216700,LPASU00590,"ASUS Vivobook 14 Flip Notebook, 14"" FHD touch Screen, Intel Celeron N4500, Intel UHD Graphics, 4GB DDR4, 128GB SSD, Win11 Home, J1400KA-DS01T-CA",ASUS,"['Laptops, Tablet', None, None, None]",499.0,"{'Notebook Type': 'Consumer', 'Notebook Chassis': 'Convertible (2 in 1)', 'Screen Size': '14""', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'CPU': 'Intel Celeron N4500'}","{'Brand': 'ASUS', 'Model': 'Vivobook 14 Flip Notebook', 'Model Code': 'J1400KA-DS01T-CA', 'CPU': 'Intel Celeron N4500', 'GPU': 'Intel UHD Graphics', 'RAM': '4GB DDR4', 'Storage': '128GB SSD', 'OS': 'Windows 11 Home', 'Screen': '14""', 'Screen Type': 'FHD touch'}" -238836,LPASU00763,"ASUS Vivobook S 16 Flip Consumer Notebook 16"" WUXGA Intel i5-1335U Intel HD Graphics 16GB 512GB SSD Windows 11 Home, TP3604VA-DS51T-CA",ASUS,"['Laptops, Tablet', None, None, None]",949.0,"{'Refresh Rate': '60Hz', 'GPU': 'Intel HD Graphics', 'Maximum Resolution': '1920 x 1200', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Home', 'Memory': '16GB'}","{'Brand': 'ASUS', 'Model': 'Vivobook S 16 Flip', 'Model Code': 'TP3604VA-DS51T-CA', 'CPU': 'Intel i5-1335U', 'GPU': 'Intel HD Graphics', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '16""', 'Resolution': 'WUXGA'}" -244726,LPASU00800,"ASUS Vivobook S 15 OLED BAPE Edition Consumer Notebook 15.6"" QHD+ Intel i9-13900H 16GB 1TB SSD Windows 11 Home, K5504VA-DB91-CA-BAPE",ASUS,"['Laptops, Tablet', None, None, None]",1599.0,"{'GPU': 'Intel UHD Graphics', 'Maximum Resolution': '2880 x 1620', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}","{'Brand': 'ASUS', 'Model': 'Vivobook S 15 OLED', 'Edition': 'BAPE Edition', 'Model Code': 'K5504VA-DB91-CA-BAPE', 'CPU': 'Intel i9-13900H', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'QHD+'}" -243074,LPASU00787,"ASUS TUF Gaming Notebook 15.6"" 144Hz Intel i5-11400H GeForce RTX 3050 8GB 512GB SSD Windows 11 Home, FX506HCB-DB59-CA",ASUS,"['Laptops, Tablet', None, None, None]",799.0,"{'GPU': 'GeForce RTX 3050', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '15.6""'}","{'Brand': 'ASUS', 'Series': 'TUF Gaming', 'Model': 'FX506HCB-DB59-CA', 'Screen Size': '15.6""', 'Refresh Rate': '144Hz', 'CPU': 'Intel i5-11400H', 'GPU': 'GeForce RTX 3050', 'RAM': '8GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home'}" -246436,LPASU00808,"ASUS TUF Gaming F15 Gaming Laptop 15.6"" FHD 144Hz Intel i7-11800H GeForce RTX 3050 Ti 16GB 1TB SSD Windows 11 Home, FX506HE-EH74",ASUS,"['Laptops, Tablet', None, None, None]",999.0,"{'GPU': 'GeForce RTX 3050 Ti', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}","{'Brand': 'ASUS', 'Model': 'TUF Gaming F15', 'Model Code': 'FX506HE-EH74', 'CPU': 'Intel i7-11800H', 'GPU': 'GeForce RTX 3050 Ti', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD', 'Refresh Rate': '144Hz'}" -234939,LPGIG00145,"Gigabyte AORUS 17X Gaming Notebook 17.3"" QHD Intel Core i9-13900HX GeForce RTX 4080 16GB 1TB SSD Windows 11 Pro, AXF-B4US694SP",GIGABYTE,"['Laptops, Tablet', None, None, None]",2999.0,"{'GPU': 'GeForce RTX 4080', 'Maximum Resolution': '2560x1440', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '16GB', 'Screen Size': '17.3""'}","{'Brand': 'Gigabyte', 'Series': 'AORUS 17X', 'Type': 'Gaming Notebook', 'Screen Size': '17.3""', 'Resolution': 'QHD', 'CPU': 'Intel Core i9-13900HX', 'GPU': 'GeForce RTX 4080', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Pro', 'Model Code': 'AXF-B4US694SP'}" -241534,LPMSI00580,"MSI Pulse 17 Gaming Notebook 17.3"" Intel i9-13900H GeForce RTX 4070 16GB 1TB SSD Windows 11 Home, B13VGK-619CA",MSI,"['Laptops, Tablet', None, None, None]",1999.0,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '17.3""'}","{'Brand': 'MSI', 'Model': 'Pulse 17', 'Model Code': 'B13VGK-619CA', 'CPU': 'Intel i9-13900H', 'GPU': 'GeForce RTX 4070', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '17.3""'}" -236109,LPGIG00151,"Gigabyte AORUS 15 Gaming Notebook 15.6"" QHD Intel i7-13700H GeForce RTX 4070 16GB 1TB SSD Windows 11 Home, BSF-73US754SH",GIGABYTE,"['Laptops, Tablet', None, None, None]",1899.0,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '2560 x 1440', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}","{'Brand': 'Gigabyte', 'Series': 'AORUS 15', 'Model': 'BSF-73US754SH', 'CPU': 'Intel i7-13700H', 'GPU': 'GeForce RTX 4070', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'QHD'}" -234951,LPGIG00146,"Gigabyte AORUS 17H Gaming Notebook 17.3"" FHD Intel i7-13700H RTX 4080 16GB 1TB SSD Windows 11 Home, BXF-74US554SH",GIGABYTE,"['Laptops, Tablet', None, None, None]",2499.0,"{'GPU': 'RTX 4080', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '17.3""'}","{'Brand': 'Gigabyte', 'Series': 'AORUS 17H', 'Screen Size': '17.3""', 'Resolution': 'FHD', 'CPU': 'Intel i7-13700H', 'GPU': 'RTX 4080', 'RAM': '16GB', 'Storage': '1TB SSD', 'Operating System': 'Windows 11 Home', 'Model Code': 'BXF-74US554SH'}" -249823,LPMSI00598,"MSI Prestige 16 AI EVO Laptop 16"" QHD+ OLED Intel Core Ultra 7-155H Intel Arc Graphics 16GB 1TB SSD Windows 11 Home, B1MG-006CA",MSI,"['Laptops, Tablet', None, None, None]",1899.0,"{'GPU': 'Intel Arc Graphics', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}","{'Brand': 'MSI', 'Model': 'Prestige 16 AI EVO', 'Model Code': 'B1MG-006CA', 'CPU': 'Intel Core Ultra 7-155H', 'GPU': 'Intel Arc Graphics', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '16""', 'Resolution': 'QHD+', 'Display Type': 'OLED'}" -243952,LPLEN03517,"Lenovo ThinkPad X1 Carbon EVO 14"" Touchscreen Ultrabook WUXGA Intel i7-1365U 32GB RAM 512GB SSD Windows 11 Pro 21HM000SUS",LENOVO,"['Laptops, Tablet', None, None, None]",1999.0,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '21HM000SUS', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'ThinkPad', 'General InformationProduct Series': 'X1 Carbon Gen 11'}","{'Brand': 'Lenovo', 'Model': 'ThinkPad X1 Carbon EVO', 'Model Code': '21HM000SUS', 'CPU': 'Intel i7-1365U', 'RAM': '32GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Pro', 'Screen': '14"" Touchscreen', 'Resolution': 'WUXGA'}" -234980,LPASU00729,"ASUS Zephyrus Duo Gaming Notebook 16"" WQXGA AMD Ryzen 9 7945HX RTX 4080 32GB 1TB SSD Windows 11 Pro, GX650PZ-XS96",ASUS,"['Laptops, Tablet', None, None, None]",3999.0,"{'GPU': 'RTX\xa04080', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '32GB', 'Screen Size': '16""'}","{'Brand': 'ASUS', 'Model': 'Zephyrus Duo', 'Model Code': 'GX650PZ-XS96', 'Screen': '16""', 'Resolution': 'WQXGA', 'CPU': 'AMD Ryzen 9 7945HX', 'GPU': 'RTX 4080', 'RAM': '32GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Pro'}" -224436,LPLEN03010,"Lenovo ThinkBook 14 G4 14"" Touchscreen Business Laptop Intel i7-1255U 16 GB 512 GB Windows 11 Pro, 21DH000VUS",LENOVO,"['Laptops, Tablet', None, None, None]",1099.0,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '21DH000VUS', 'GPU': 'Intel', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'Maximum Resolution': '1080p Full HD', 'General InformationBrand Name': 'Lenovo'}","{'Brand': 'Lenovo', 'Model': 'ThinkBook 14 G4', 'Model Code': '21DH000VUS', 'CPU': 'Intel i7-1255U', 'RAM': '16GB', 'Storage': '512GB', 'OS': 'Windows 11 Pro', 'Screen': '14""', 'Screen Type': 'Touchscreen'}" -243731,LPMSI00591,"MSI Stealth 16 AMG Gaming Notebook 16"" OLED UHD Intel i9-13900H GeForce RTX 4070 32GB 2TB SSD Windows 11 Pro, A13VG-237CA",MSI,"['Laptops, Tablet', None, None, None]",3499.0,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '3840 x 2400', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '32GB', 'Screen Size': '16""'}","{'Brand': 'MSI', 'Model': 'Stealth 16 AMG', 'Model Code': 'A13VG-237CA', 'CPU': 'Intel i9-13900H', 'GPU': 'GeForce RTX 4070', 'RAM': '32GB', 'Storage': '2TB SSD', 'OS': 'Windows 11 Pro', 'Screen': '16""', 'Resolution': 'OLED UHD'}" -247961,LPACE00994,"ACER Vero Laptop 15.6"" FHD Intel i7-1255U Intel Iris Xe Graphics 16GB 1TB SSD Windows 11 Home, Open Box, AV15-52-791N",ACER,"['Laptops, Tablet', None, None, None]",799.0,"{'GPU': 'Intel Iris Xe Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}","{'Brand': 'Acer', 'Model': 'Vero', 'Model Code': 'AV15-52-791N', 'CPU': 'Intel i7-1255U', 'GPU': 'Intel Iris Xe Graphics', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -243093,LPHEW02083,"HP EliteBook 640 G9 Business Notebook 14"" Intel i5-1245U 16GB 512GB SSD Windows 11 Pro, 6C0Z2UT#ABL",HP,"['Laptops, Tablet', None, None, None]",1195.9599990845,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '16GB', 'Screen Size': '14""'}","{'Brand': 'HP', 'Model': 'EliteBook 640 G9', 'Model Code': '6C0Z2UT#ABL', 'CPU': 'Intel i5-1245U', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Pro', 'Screen': '14""'}" -238118,LPLGE00032,"LG Gram EVO Consumer Notebook 16"" WQXGA Intel i7-1360P Intel Iris Xe 16GB 512GB SSD Windows 11 Home, 16Z90R-K.AA75A9",LG,"['Laptops, Tablet', None, None, None]",1499.0,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}","{'Brand': 'LG', 'Model': 'Gram EVO', 'Model Code': '16Z90R-K.AA75A9', 'CPU': 'Intel i7-1360P', 'GPU': 'Intel Iris Xe', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '16""', 'Resolution': 'WQXGA'}" -221451,LPLEN02908,"Lenovo ThinkBook 14 G4 ABA 14"" Business Laptop AMD Ryzen 7 5825U 16 GB 512 GB Windows 11 Pro, 21DK000LUS",LENOVO,"['Laptops, Tablet', None, None, None]",799.0,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '21DK000LUS', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'ThinkBook', 'General InformationProduct Series': '14 G4 ABA'}","{'Brand': 'Lenovo', 'Product Line': 'ThinkBook', 'Model': '14 G4 ABA', 'Model Code': '21DK000LUS', 'CPU': 'AMD Ryzen 7 5825U', 'RAM': '16 GB', 'Storage': '512 GB', 'OS': 'Windows 11 Pro', 'Screen': '14""'}" -246185,LPLEN03572,"LENOVO Legion Pro 7 16IRX8H Laptop 16"" QHD Intel i9-13900HX GeForce RTX 4090 32GB 2TB SSD Windows 11 Pro, 82WQ00AAUS",LENOVO,"['Laptops, Tablet', None, None, None]",4799.0,"{'GPU': 'GeForce RTX 4090', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '32GB', 'Screen Size': '16""'}","{'Brand': 'LENOVO', 'Model': 'Legion Pro 7', 'Model Code': '82WQ00AAUS', 'CPU': 'Intel i9-13900HX', 'GPU': 'GeForce RTX 4090', 'RAM': '32GB', 'Storage': '2TB SSD', 'OS': 'Windows 11 Pro', 'Screen': '16""', 'Resolution': 'QHD'}" -234966,LPASU00723,"ASUS ROG Zephyrus Gaming Notebook 14"" WUXGA AMD Ryzen 7 7735HS RTX 3050 16GB 512GB SSD Windows 11 Home, GA402NJ-DS71-CA",ASUS,"['Laptops, Tablet', None, None, None]",1799.0,"{'GPU': 'RTX\xa03050', 'Maximum Resolution': '1920X1200', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '14""'}","{'Brand': 'ASUS', 'Series': 'ROG Zephyrus', 'Model': 'GA402NJ-DS71-CA', 'Screen Size': '14""', 'Resolution': 'WUXGA', 'CPU': 'AMD Ryzen 7 7735HS', 'GPU': 'RTX 3050', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home'}" -234853,LPMSI00535,"MSI Stealth 17 Gaming Notebook 17.3"" QHD Intel i9-13900H GeForce RTX 4090 64GB 2TB SSD Windows 11 Pro, A13VI-017US",MSI,"['Laptops, Tablet', None, None, None]",4399.0,"{'GPU': 'GeForce RTX 4090', 'Maximum Resolution': '2560x1440', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '64GB', 'Screen Size': '17.3""'}","{'Brand': 'MSI', 'Model': 'Stealth 17', 'Model Code': 'A13VI-017US', 'CPU': 'Intel i9-13900H', 'GPU': 'GeForce RTX 4090', 'RAM': '64GB', 'Storage': '2TB SSD', 'OS': 'Windows 11 Pro', 'Screen': '17.3""', 'Resolution': 'QHD'}" -247061,LPLEN03577,"Lenovo ThinkPad T480 Business Laptop 14"" FHD Intel i5-8365U 16GB 512GB SSD Windows 10 Pro Refurbished",LENOVO,"['Laptops, Tablet', None, None, None]",499.0,"{'GPU': 'Intel® UHD Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 10 Pro', 'Memory': '16GB', 'Screen Size': '14""'}","{'Brand': 'Lenovo', 'Model': 'ThinkPad T480', 'CPU': 'Intel i5-8365U', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 10 Pro', 'Screen': '14""', 'Resolution': 'FHD', 'Condition': 'Refurbished'}" -245326,LPHEW02101,"HP 14-ep0000ca Consumer Notebook 14"" FHD Intel i3-N305 8GB 256GB SSD Windows 11 Home, 8M5K7UA#ABL",HP,"['Laptops, Tablet', None, None, None]",549.0,"{'GPU': 'Intel UHD Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '14""'}","{'Brand': 'HP', 'Model': '14-ep0000ca', 'Model Code': '8M5K7UA#ABL', 'CPU': 'Intel i3-N305', 'RAM': '8GB', 'Storage': '256GB SSD', 'OS': 'Windows 11 Home', 'Screen': '14""', 'Resolution': 'FHD'}" -243100,LPLEN03497,"Lenovo ThinkPad X1 Carbon 14"" EVO WUXGA Ultrabook Intel i5-1335U 16GB RAM 256GB SSD Deep Black Windows 11 Pro, 21HM000GUS",LENOVO,"['Laptops, Tablet', None, None, None]",1399.0,"{'GPU': 'Intel', 'Maximum Resolution': 'Others', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '16GB', 'Screen Size': '14""'}","{'Brand': 'Lenovo', 'Model': 'ThinkPad X1 Carbon', 'Model Code': '21HM000GUS', 'CPU': 'Intel i5-1335U', 'RAM': '16GB', 'Storage': '256GB SSD', 'Color': 'Deep Black', 'OS': 'Windows 11 Pro', 'Screen': '14""', 'Resolution': 'WUXGA', 'EVO Certified': 'Yes', 'Ultrabook': 'Yes'}" -238753,LPASU00762,"ASUS Vivobook Slate Consumer Notebook 13.3"" OLED Intel Pentium Silver Processor N6000 Intel UHD Graphics 8GB 128GB SSD Windows 11 S, T3300KA-DS92T-CA",ASUS,"['Laptops, Tablet', None, None, None]",599.0,"{'GPU': 'Intel UHD Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 S', 'Memory': '8GB', 'Screen Size': '13.3""'}","{'Brand': 'ASUS', 'Model': 'Vivobook Slate', 'Model Code': 'T3300KA-DS92T-CA', 'CPU': 'Intel Pentium Silver Processor N6000', 'GPU': 'Intel UHD Graphics', 'RAM': '8GB', 'Storage': '128GB SSD', 'OS': 'Windows 11 S', 'Screen': '13.3"" OLED'}" -238120,LPLGE00033,"LG Gram EVO Consumer Notebook 17"" WQXGA Intel i7-1360P Intel Iris Xe 16GB 512GB SSD Windows 11 Home,17Z90R-K.AA75A9",LG,"['Laptops, Tablet', None, None, None]",1599.0,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '17""'}","{'Brand': 'LG', 'Model': 'Gram EVO', 'Model Code': '17Z90R-K.AA75A9', 'CPU': 'Intel i7-1360P', 'GPU': 'Intel Iris Xe', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '17""', 'Resolution': 'WQXGA'}" -234881,LPASU00717,"ASUS ROG Strix Gaming Notebook 16"" FHD Intel i7-13650HX RTX 3050 16GB 1TB SSD Windows 11 Home, G614JJ-DS71-CA",ASUS,"['Laptops, Tablet', None, None, None]",1599.0,"{'GPU': 'RTX 3050', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}","{'Brand': 'ASUS', 'Series': 'ROG Strix', 'Model': 'G614JJ-DS71-CA', 'Screen Size': '16""', 'Resolution': 'FHD', 'CPU': 'Intel i7-13650HX', 'GPU': 'RTX 3050', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home'}" -237090,LPACE00960,"ACER Predator Helios Gaming Notebook 16"" QHD Intel i7-13700HX GeForce RTX 4070 16GB 1TB SSD Windows 11 Home, PH16-71-72YG",ACER,"['Laptops, Tablet', None, None, None]",1999.0,"{'GPU': 'GeForce RTX 4070', 'Refresh Rate': '240Hz', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11', 'Memory': '16GB'}","{'Brand': 'ACER', 'Series': 'Predator Helios', 'Model': 'PH16-71-72YG', 'CPU': 'Intel i7-13700HX', 'GPU': 'GeForce RTX 4070', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '16""', 'Resolution': 'QHD (2560x1440)'}" -225212,LPLEN03055,"Lenovo ThinkBook 15 G4 15.6"" Touchscreen Business Notebook, FHD, Intel Core i5-1235U, 16GB RAM, 256GB SSD, Mineral Gray Windows 11 Pro",LENOVO,"['Laptops, Tablet', None, None, None]",899.0,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '21DJ000XUS', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'ThinkBook', 'General InformationProduct Series': '15 G4 IAP'}","{'Brand': 'Lenovo', 'Model': 'ThinkBook 15 G4', 'Screen': '15.6"" Touchscreen', 'Resolution': 'FHD', 'CPU': 'Intel Core i5-1235U', 'RAM': '16GB', 'Storage': '256GB SSD', 'Color': 'Mineral Gray', 'OS': 'Windows 11 Pro'}" -241937,LPLEN03476,"Lenovo ThinkBook 14s Yoga G3 14"" Touchscreen Convertible Laptop Intel Core i7-1355U 16GB RAM 512GB SSD Windows 11 Pro, 21JG001GCA",LENOVO,"['Laptops, Tablet', None, None, None]",1379.9599990845,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '21JG001GCA', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'ThinkBook', 'General InformationProduct Series': '14s Yoga G3 IRU'}","{'Brand': 'Lenovo', 'Series': 'ThinkBook', 'Model': '14s Yoga G3', 'Model Code': '21JG001GCA', 'CPU': 'Intel Core i7-1355U', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Pro', 'Screen': '14"" Touchscreen', 'Convertible': 'Yes'}" -241934,LPLEN03474,"Lenovo ThinkPad E16 16"" Business Notebook Intel i5-1335U 16 GB 256 GB SSD Windows 11 Pro, 21JN003YUS",LENOVO,"['Laptops, Tablet', None, None, None]",1299.0,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '21JN003YUS', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'ThinkPad', 'General InformationProduct Series': 'E16 Gen 1'}","{'Brand': 'Lenovo', 'Model': 'ThinkPad E16', 'Model Code': '21JN003YUS', 'CPU': 'Intel i5-1335U', 'RAM': '16GB', 'Storage': '256GB SSD', 'OS': 'Windows 11 Pro', 'Screen': '16""'}" -239693,LPMSI00548,"MSI Vector GP78 HX Gaming Notebook 17"" QHD Intel i9-13950HX GeForce RTX 4080 32GB 1TB SSD Windows 11 Home .",MSI,"['Laptops, Tablet', None, None, None]",3499.0,"{'GPU': 'GeForce RTX 4080', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '32GB', 'Screen Size': '17""'}","{'Brand': 'MSI', 'Model': 'Vector GP78 HX', 'CPU': 'Intel i9-13950HX', 'GPU': 'GeForce RTX 4080', 'RAM': '32GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '17""', 'Resolution': 'QHD'}" -235429,LPASU00736,"ASUS ROG Zephyrus Gaming Notebook 16"" WQXGA Intel i9-13900H RTX 4090 32GB 2TB SSD Windows 11 Pro, GU604VY-XS97",ASUS,"['Laptops, Tablet', None, None, None]",4199.0,"{'GPU': 'GeForce RTX 4090', 'Maximum Resolution': '2560X1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '32GB', 'Screen Size': '16""'}","{'Brand': 'ASUS', 'Series': 'ROG Zephyrus', 'Model': 'GU604VY-XS97', 'CPU': 'Intel i9-13900H', 'GPU': 'RTX 4090', 'RAM': '32GB', 'Storage': '2TB SSD', 'OS': 'Windows 11 Pro', 'Screen': '16""', 'Resolution': 'WQXGA'}" -249839,LPLEN03710,"Lenovo ThinkPad T14 Business Laptop 14"" FHD Intel i5-10310U 16GB 512GB SSD Windows 10 Pro Refurbished, 20S1S4R500",LENOVO,"['Laptops, Tablet', None, None, None]",649.0,"{'GPU': 'Intel UHD Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 10 Pro', 'Memory': '16GB', 'Screen Size': '14""'}","{'Brand': 'Lenovo', 'Series': 'ThinkPad T14', 'Screen Size': '14""', 'Resolution': 'FHD', 'CPU': 'Intel i5-10310U', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 10 Pro', 'Condition': 'Refurbished', 'Model Code': '20S1S4R500'}" -239889,LPHEW02036,"HP Omen 17-ck2000ca Gaming Notebook 17.3"" QHD Intel i9-13900HX GeForce RTX 4090 32GB 2TB SSD Windows 11 Home",HP,"['Laptops, Tablet', None, None, None]",3999.0,"{'GPU': 'GeForce RTX 4090', 'Maximum Resolution': '2560 x 1440', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '32GB', 'Screen Size': '17.3""'}","{'Brand': 'HP', 'Series': 'Omen 17-ck2000ca', 'Product Type': 'Gaming Notebook', 'Screen Size': '17.3""', 'Resolution': 'QHD', 'CPU': 'Intel i9-13900HX', 'GPU': 'GeForce RTX 4090', 'RAM': '32GB', 'Storage': '2TB SSD', 'OS': 'Windows 11 Home'}" -249845,LPLEN03712,"Lenovo Yoga L390 Business convertible Laptop 13.3"" Touchscreen FHD Intel i5-8365U 16GB 256GB SSD Windows 11 Pro Refurbished",LENOVO,"['Laptops, Tablet', None, None, None]",549.0,"{'GPU': 'Intel® UHD Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Pro', 'Memory': '16GB', 'Screen Size': '13.3""'}","{'Brand': 'Lenovo', 'Model': 'Yoga L390', 'CPU': 'Intel i5-8365U', 'RAM': '16GB', 'Storage': '256GB SSD', 'OS': 'Windows 11 Pro', 'Screen': '13.3"" Touchscreen', 'Resolution': 'FHD', 'Condition': 'Refurbished'}" -249843,LPLEN03711,"Lenovo X1 Carbon Business Laptop 14"" FHD Intel i7-8665U 16GB 256GB SSD Windows 10 Pro Refurbished,",LENOVO,"['Laptops, Tablet', None, None, None]",649.0,"{'GPU': 'Intel UHD Graphics 620', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 10 Pro', 'Memory': '16GB', 'Screen Size': '14""'}","{'Brand': 'Lenovo', 'Model': 'X1 Carbon', 'CPU': 'Intel i7-8665U', 'RAM': '16GB', 'Storage': '256GB SSD', 'OS': 'Windows 10 Pro', 'Screen': '14""', 'Resolution': 'FHD', 'Condition': 'Refurbished'}" -249484,LPACE00999,"ACER Predator Triton X Gaming Laptop 17"" QHD Mini-LED 250Hz Intel i9-13900HX GeForce RTX 4090 64GB 2TB SSD Windows 11 Home, PTX17-71-99W5",ACER,"['Laptops, Tablet', None, None, None]",4999.0,"{'GPU': 'GeForce RTX 4090', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '64GB', 'Screen Size': '17""'}","{'Brand': 'ACER', 'Series': 'Predator Triton X', 'Model': 'PTX17-71-99W5', 'CPU': 'Intel i9-13900HX', 'GPU': 'GeForce RTX 4090', 'RAM': '64GB', 'Storage': '2TB SSD', 'Screen': '17""', 'Resolution': 'QHD', 'Refresh Rate': '250Hz', 'Display Type': 'Mini-LED', 'OS': 'Windows 11 Home'}" -248458,LPLEN03611,"Lenovo ThinkBook 14 G6 ABP 21KJ000EUS 14"" Touchscreen Notebook - WUXGA - 1920 x 1200 - AMD Ryzen 7 7730U Octa-core (8 Core) 2 GHz - 16 GB Total RAM - 512 GB SSD - Arctic Gray - AMD Chip - Windows 11 Pro - AMD Radeon Graphics - In-plane Switching (IPS) Tec",LENOVO,"['Laptops, Tablet', None, None, None]",899.0,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '21KJ000EUS', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'ThinkBook', 'General InformationProduct Series': '14 G6 ABP', 'General InformationProduct Model': '21KJ000EUS'}","{'Brand': 'Lenovo', 'Series': 'ThinkBook 14 G6 ABP', 'Model': '21KJ000EUS', 'Screen Size': '14""', 'Screen Resolution': 'WUXGA (1920 x 1200)', 'Touchscreen': 'Yes', 'CPU': 'AMD Ryzen 7 7730U Octa-core (8 Core)', 'CPU Speed': '2 GHz', 'RAM': '16 GB', 'Storage': '512 GB SSD', 'Color': 'Arctic Gray', 'Chipset': 'AMD', 'Operating System': 'Windows 11 Pro', 'Graphics': 'AMD Radeon Graphics', 'Panel Type': 'In-plane Switching (IPS)'}" -248439,LPLEN03602,"Lenovo ThinkBook G6 16"" Business Laptop WUXGA 1920x1200 Intel Core i5-1335U 16GB RAM 256GB SSD Windows 11 Pro 21KH0005US",LENOVO,"['Laptops, Tablet', None, None, None]",1119.2,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '21KH0005US', 'Memory': '16GB', 'General InformationBrand Name': 'Lenovo', 'Screen Size': '16""', 'General InformationProduct Line': 'ThinkBook'}","{'Brand': 'Lenovo', 'Series': 'ThinkBook G6', 'Model Code': '21KH0005US', 'Screen Size': '16""', 'Resolution': 'WUXGA (1920x1200)', 'CPU': 'Intel Core i5-1335U', 'RAM': '16GB', 'Storage': '256GB SSD', 'Operating System': 'Windows 11 Pro'}" -248434,LPLEN03600,"Lenovo ThinkBook 16 G6 ABP 21KK0009US 16"" Touchscreen Notebook - WUXGA - 1920 x 1200 - AMD Ryzen 5 7530U Hexa-core (6 Core) 2 GHz - 16 GB Total RAM - 512 GB SSD - Arctic Gray - AMD Chip - Windows 11 Pro - AMD Radeon Graphics - In-plane Switching (IPS) Tec",LENOVO,"['Laptops, Tablet', None, None, None]",999.0,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '21KK0009US', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'ThinkBook', 'General InformationProduct Series': '16 G6 ABP', 'General InformationProduct Model': '21KK0009US'}","{'Brand': 'Lenovo', 'Series': 'ThinkBook 16 G6 ABP', 'Model': '21KK0009US', 'Screen size': '16""', 'Touchscreen': 'Yes', 'Resolution': 'WUXGA (1920 x 1200)', 'CPU': 'AMD Ryzen 5 7530U Hexa-core (6 Core)', 'CPU Clock Speed': '2 GHz', 'RAM': '16 GB', 'Storage': '512 GB SSD', 'Color': 'Arctic Gray', 'Chip': 'AMD', 'OS': 'Windows 11 Pro', 'Graphics': 'AMD Radeon', 'Display Technology': 'In-plane Switching (IPS)'}" -243931,LPLEN03508,"Lenovo ThinkPad E14 Gen 5 21JR001QUS 14"" Notebook - WUXGA - 1920 x 1200 - AMD Ryzen 5 7530U Hexa-core (6 Core) 2 GHz - 8 GB Total RAM - 8 GB On-board Memory - 256 GB SSD - Graphite Black - AMD Chip - Windows 11 Pro - AMD Radeon Graphics - In-plane Switchi",LENOVO,"['Laptops, Tablet', None, None, None]",1061.69,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '21JR001QUS', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'ThinkPad', 'General InformationProduct Series': 'E14 Gen 5', 'General InformationProduct Model': '21JR001QUS'}","{'Brand': 'Lenovo', 'Series': 'ThinkPad E14 Gen 5', 'Model': '21JR001QUS', 'Screen Size': '14""', 'Resolution': 'WUXGA (1920 x 1200)', 'CPU': 'AMD Ryzen 5 7530U (Hexa-core, 6 Core) ', 'CPU Speed': '2 GHz', 'RAM': '8 GB Total RAM', 'On-board Memory': '8 GB', 'Storage': '256 GB SSD', 'Color': 'Graphite Black', 'Chip': 'AMD Chip', 'Operating System': 'Windows 11 Pro', 'Graphics': 'AMD Radeon Graphics', 'Display Technology': 'In-plane Switching (IPS)'}" -238114,LPLGE00031,"LG Gram EVO Consumer Notebook 15.6"" FHD Intel i7-1360P Intel Iris Xe 16GB 512GB SSD Windows 11 Home, 15Z90R-P.AA75A9",LG,"['Laptops, Tablet', None, None, None]",1599.99,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}","{'Brand': 'LG', 'Model': 'Gram EVO', 'Model Code': '15Z90R-P.AA75A9', 'CPU': 'Intel i7-1360P', 'GPU': 'Intel Iris Xe', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -238112,LPLGE00030,"LG Gram Consumer Notebook 14"" WUXGA Intel i7-1360P Intel Iris Xe 16GB 512GB SSD Windows 11 Home, 14Z90R-K.AA75A9",LG,"['Laptops, Tablet', None, None, None]",1599.0,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1200', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '14""'}","{'Brand': 'LG', 'Model': 'Gram', 'Model Code': '14Z90R-K.AA75A9', 'CPU': 'Intel i7-1360P', 'GPU': 'Intel Iris Xe', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '14""', 'Resolution': 'WUXGA (1920x1200)'}" -231254,LPLEN03221,"Lenovo ThinkPad L13 Yoga 13.3"" Touchscreen Convertible 2 in 1 Laptop WUXGA Intel Core i7-1255U 16GB 512GB SSD Storm Gray Windows 11 Pro 21B5003XUS",LENOVO,"['Laptops, Tablet', None, None, None]",1299.0,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '21B5003XUS', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'ThinkPad', 'General InformationProduct Series': 'L13 Yoga Gen 3'}","{'Brand': 'Lenovo', 'Model': 'ThinkPad L13 Yoga', 'Model Code': '21B5003XUS', 'Screen Size': '13.3""', 'Display Type': 'Touchscreen', 'Convertibility': 'Convertible 2 in 1', 'Resolution': 'WUXGA', 'CPU': 'Intel Core i7-1255U', 'RAM': '16GB', 'Storage': '512GB SSD', 'Color': 'Storm Gray', 'Operating System': 'Windows 11 Pro'}" -223345,LPLEN02956,"Lenovo ThinkBook 14 G4 ABA 14"" Business Notebook AMD Ryzen 5 5625U 16 GB 256 GB Windows 11 Pro, 21DK000JUS",LENOVO,"['Laptops, Tablet', None, None, None]",699.0,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '21DK000JUS', 'Memory': '16GB', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'Screen Size': '14""', 'General InformationBrand Name': 'Lenovo'}","{'Brand': 'Lenovo', 'Model': 'ThinkBook 14 G4 ABA', 'Model Code': '21DK000JUS', 'CPU': 'AMD Ryzen 5 5625U', 'RAM': '16GB', 'Storage': '256GB', 'OS': 'Windows 11 Pro', 'Screen': '14""'}" -221960,LPHEW01833,"HP EliteBook 650 G9 15.6"" Business Notebook Intel i5-1245U 16 GB 256 GB SSD Windows 10 Professional, 6C0Z6UT#ABA",HP,"['Laptops, Tablet', None, None, None]",1103.9599990845,"{'General InformationManufacturer': 'HP Inc.', 'General InformationManufacturer Part Number': '6C0Z6UT#ABA', 'General InformationManufacturer Website Address': 'http://www.hp.com', 'General InformationBrand Name': 'HP', 'General InformationProduct Line': 'EliteBook', 'General InformationProduct Series': '650 G9'}","{'Brand': 'HP', 'Model': 'EliteBook 650 G9', 'Model Code': '6C0Z6UT#ABA', 'CPU': 'Intel i5-1245U', 'RAM': '16GB', 'Storage': '256GB SSD', 'OS': 'Windows 10 Professional', 'Screen': '15.6""'}" -221903,LPLGE00028,"LG Gram EVO Ultra-Lightweight Notebook , 16"" WQXGA, Intel i7-1260P, Intel Iris Xe Graphics, 16GB, 512GB SSD, Windows 11 Home, 16T90Q-K.AA75A9",LG,"['Laptops, Tablet', None, None, None]",1619.88,"{'Notebook Type': 'Consumer', 'Notebook Chassis': 'Thin and Light', 'Screen Size': '16""', 'Maximum Resolution': '2560 x 1600', 'Refresh Rate': '60Hz', 'CPU': 'i7-1260P'}","{'Brand': 'LG', 'Model': 'Gram EVO', 'Model Code': '16T90Q-K.AA75A9', 'CPU': 'Intel i7-1260P', 'GPU': 'Intel Iris Xe Graphics', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '16""', 'Resolution': 'WQXGA'}" -203384,LPSAS00092,"Samsung Galaxy Tab S7 FE Tablet - 12.4"" WQXGA Cortex 6 GB 128 GB Mystic Black",SAMSUNG,"['Laptops, Tablet', None, None, None]",699.0,"{'General InformationManufacturer': 'Samsung', 'General InformationManufacturer Part Number': 'SM-T733NZKEXAC', 'General InformationBrand Name': 'Samsung', 'General InformationProduct Line': 'Galaxy Tab S7 FE', 'General InformationProduct Model': 'SM-T733', 'General InformationProduct Name': 'Galaxy Tab S7 FE (Wi-Fi)'}","{'Brand': 'Samsung', 'Model': 'Galaxy Tab S7 FE', 'Screen Size': '12.4""', 'Resolution': 'WQXGA', 'CPU': 'Cortex', 'RAM': '6 GB', 'Storage': '128 GB', 'Color': 'Mystic Black'}" -235970,LPGIG00147,"Gigabyte G5 Gaming Laptop 15.6"" FHD, Intel i5-12500H, GeForce RTX 4060, 8GB RAM, 512GB SSD, Windows 11 Home, G5 KF-E3US333SH",GIGABYTE,"['Laptops, Tablet', None, None, None]",999.0,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '1080p Full HD', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '15.6""'}","{'Brand': 'Gigabyte', 'Model': 'G5', 'Model Code': 'G5 KF-E3US333SH', 'CPU': 'Intel i5-12500H', 'GPU': 'GeForce RTX 4060', 'RAM': '8GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -241481,LPCHP00003,"HP Elitebook 840 G3 Business Laptop 14"" Touchscreen Intel i5-6300U 16GB 256GB SSD Windows 10 Pro Refurbished",HP,"['Laptops, Tablet', None, None, None]",299.0,"{'GPU': 'Intel HD Graphics 520', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'Yes', 'Operating System': 'Windows 10 Pro', 'Memory': '16GB', 'Screen Size': '14""'}","{'Brand': 'HP', 'Model': 'Elitebook 840 G3', 'CPU': 'Intel i5-6300U', 'RAM': '16GB', 'Storage': '256GB SSD', 'OS': 'Windows 10 Pro', 'Screen': '14""', 'Touchscreen': 'Yes', 'Condition': 'Refurbished'}" -239725,LPMSI00559,"MSI Thin GF63 Gaming Laptop 15.6"" Intel i7-12650H GeForce RTX 4060 16GB 512GB SSD Windows 11 Home, 12VF-274CA",MSI,"['Laptops, Tablet', None, None, None]",1199.0,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}","{'Brand': 'MSI', 'Model': 'Thin GF63', 'Model Code': '12VF-274CA', 'CPU': 'Intel i7-12650H', 'GPU': 'GeForce RTX 4060', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""'}" -244218,LPHEW02095,"HP Victus 15-fb1010ca Gaming Laptop 15.6"" AMD Ryzen 5 7535HS GeForce RTX 2050 8GB 512GB SSD Windows 11 Home, 8G9J1UA#ABL",HP,"['Laptops, Tablet', None, None, None]",699.0,"{'GPU': 'GeForce RTX 2050', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '15.6""'}","{'Brand': 'HP', 'Model': 'Victus 15-fb1010ca', 'Model Code': '8G9J1UA#ABL', 'CPU': 'AMD Ryzen 5 7535HS', 'GPU': 'GeForce RTX 2050', 'RAM': '8GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""'}" -234149,LPASU00685,"ASUS VivoBook 14"" Laptop FHD Intel Core i3-1115G4 Intel UHD Graphics 4GB 128GB SSD Windows 11 Home S, F415EA-AS31",ASUS,"['Laptops, Tablet', None, None, None]",299.0,"{'GPU': 'Intel UHD Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home S', 'Memory': '4GB', 'Screen Size': '14""'}","{'Brand': 'ASUS', 'Model': 'VivoBook F415EA-AS31', 'Screen': '14""', 'Resolution': 'FHD', 'CPU': 'Intel Core i3-1115G4', 'GPU': 'Intel UHD Graphics', 'RAM': '4GB', 'Storage': '128GB SSD', 'OS': 'Windows 11 Home S'}" -244755,LPLEN03559,"LENOVO ThinkPad T590 Business Laptop 15.6"" FHD Intel i5-8365U Intel UHD Graphics 620 16GB 512GB SSD Windows 10 Pro Refurbished",LENOVO,"['Laptops, Tablet', None, None, None]",499.0,"{'GPU': 'Intel UHD Graphics 620', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 10 Pro', 'Memory': '16GB', 'Screen Size': '15.6""'}","{'Brand': 'LENOVO', 'Model': 'ThinkPad T590', 'CPU': 'Intel i5-8365U', 'GPU': 'Intel UHD Graphics 620', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 10 Pro', 'Screen': '15.6""', 'Resolution': 'FHD', 'Condition': 'Refurbished'}" -244918,LPACE00985,"Acer Swift 3 EVO 14"" Laptop FHD Intel i5-1240P 16GB 512GB SSD Windows 11 Home,",ACER,"['Laptops, Tablet', None, None, None]",699.0,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '14""'}","{'Brand': 'Acer', 'Model': 'Swift 3 EVO', 'Screen': '14""', 'Resolution': 'FHD', 'CPU': 'Intel i5-1240P', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home'}" -244027,LPCNO00061,"ASUS Vivobook F Series Laptop 15.6"" FHD Intel i5-1135G7 8GB 256GB SSD Windows 11 Home, F1500EA-WB51",ASUS,"['Laptops, Tablet', None, None, None]",597.95999908447,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '15.6""'}","{'Brand': 'ASUS', 'Model': 'Vivobook F Series', 'Model Code': 'F1500EA-WB51', 'CPU': 'Intel i5-1135G7', 'RAM': '8GB', 'Storage': '256GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -226088,LPASU00658,"ASUS ZenBook 14 Consumer Notebook 14"" FHD AMD Ryzen 5 5600H AMD Radeon Vega 7 8GB 512GB SSD Windows 11 Home, UM425QA-EH59-CA",ASUS,"['Laptops, Tablet', None, None, None]",699.0,"{'Memory': '8GB', 'Screen Size': '14""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}","{'Brand': 'ASUS', 'Model': 'ZenBook 14', 'Model Code': 'UM425QA-EH59-CA', 'CPU': 'AMD Ryzen 5 5600H', 'GPU': 'AMD Radeon Vega 7', 'RAM': '8GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '14""', 'Resolution': 'FHD'}" -239777,LPLEN03432,"LENOVO IdeaPad Flex 5 Consumer Notebook 16"" Touchscreen AMD Ryzen 5 7530U 16GB 512GB SSD Windows 11 Home, 82XY005ACC",LENOVO,"['Laptops, Tablet', None, None, None]",849.0,"{'GPU': 'AMD Radeon Graphics', 'Refresh Rate': '60Hz', 'Maximum Resolution': '1920 x 1200', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Home', 'Memory': '16GB'}","{'Brand': 'LENOVO', 'Series': 'IdeaPad Flex 5', 'Model Code': '82XY005ACC', 'CPU': 'AMD Ryzen 5 7530U', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '16""', 'Touchscreen': 'Yes'}" -214186,LPHUA00035,"HUAWEI Matebook 14 Notebook, 14"", 2160 x 1440, Touch Screen, Intel Core i5-1135G7, Intel Iris Xe Graphics, 16GB, 512GB SSD, Windows 11 Home, 53012STE",HUAWEI,"['Laptops, Tablet', None, None, None]",699.88,"{'Screen Resolution Description': 'QHD', 'Memory': '16GB', 'Screen Size': '14""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '2160 x 1440', 'Refresh Rate': '60 Hz'}","{'Brand': 'HUAWEI', 'Model': 'Matebook 14', 'Model Code': '53012STE', 'Screen Size': '14""', 'Resolution': '2160 x 1440', 'Touch Screen': 'Yes', 'CPU': 'Intel Core i5-1135G7', 'GPU': 'Intel Iris Xe Graphics', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home'}" -244384,LPLEN03552,"LENOVO X1 Yoga G4 Business Notebook 14"" FHD Intel i5-8265U 16GB 512GB SSD Windows 10 Pro, Pen Included, Refurbished",LENOVO,"['Laptops, Tablet', None, None, None]",499.0,"{'GPU': 'Intel UHD Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'Yes', 'Operating System': 'Windows 10 Pro', 'Memory': '16GB', 'Screen Size': '14""'}","{'Brand': 'Lenovo', 'Model': 'X1 Yoga G4', 'Screen': '14""', 'Resolution': 'FHD', 'CPU': 'Intel i5-8265U', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 10 Pro', 'Included Accessories': 'Pen', 'Condition': 'Refurbished'}" -242776,LPASU00785,"ASUS TUF Gaming Notebook 17.3"" 144Hz Intel i5-11400H GeForce RTX 2050 8GB 512GB SSD Windows 11 Home, FX706HF-DB51-CA",ASUS,"['Laptops, Tablet', None, None, None]",799.0,"{'Memory': '8GB', 'Screen Size': '17.3""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '144Hz', 'SSD Capacity': '512GB'}","{'Brand': 'ASUS', 'Model': 'TUF Gaming Notebook', 'Model Code': 'FX706HF-DB51-CA', 'CPU': 'Intel i5-11400H', 'GPU': 'GeForce RTX 2050', 'RAM': '8GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '17.3""', 'Refresh Rate': '144Hz'}" -246774,LPASU00809,"ASUS ROG Strix G16 Gaming Laptop 16"" QHD Intel i9-13980HX GeForce RTX 4060 16GB 1TB SSD Windows 11 Home, G614JV-DB91-CA",ASUS,"['Laptops, Tablet', None, None, None]",1799.0,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}","{'Brand': 'ASUS', 'Series': 'ROG Strix G16', 'Model': 'G614JV-DB91-CA', 'Screen Size': '16""', 'Resolution': 'QHD', 'CPU': 'Intel i9-13980HX', 'GPU': 'GeForce RTX 4060', 'RAM': '16GB', 'Storage': '1TB SSD', 'Operating System': 'Windows 11 Home'}" -229248,LPLEN03130,"Lenovo Consumer Laptop 15.6"" FHD AMD Ryzen 5 5625U AMD Radeon Graphics 12GB 512GB SSD Windows 11 Home, 82RN0015CC",LENOVO,"['Laptops, Tablet', None, None, None]",699.88,"{'Memory': '12GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}","{'Brand': 'Lenovo', 'Model': 'Consumer Laptop', 'Model Code': '82RN0015CC', 'CPU': 'AMD Ryzen 5 5625U', 'GPU': 'AMD Radeon Graphics', 'RAM': '12GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -238746,LPHEW02021,"HP Consumer Laptop 14"" FHD AMD Ryzen 3 7320U, Radeon Graphics, 8GB RAM, 256GB SSD, Windows 11 Home, 14-em0030ca",HP,"['Laptops, Tablet', None, None, None]",499.0,"{'Memory': '8GB', 'Model': '14-em0030ca', 'Screen Size': '14""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': 'FHD', 'SSD Capacity': '256GB'}","{'Brand': 'HP', 'Model': 'Consumer Laptop 14', 'Model Code': '14-em0030ca', 'CPU': 'AMD Ryzen 3 7320U', 'GPU': 'Radeon Graphics', 'RAM': '8GB', 'Storage': '256GB SSD', 'OS': 'Windows 11 Home', 'Screen': '14""', 'Resolution': 'FHD'}" -221455,LPHEW01822,"HP ProBook 450 G9 15.6"" Business Notebook Intel i7-1255U 16GB 512GB SSD Windows 10 Pro, 687P3UT#ABA",HP,"['Laptops, Tablet', None, None, None]",999.0,"{'General InformationManufacturer': 'HP Inc.', 'General InformationManufacturer Part Number': '687P3UT#ABA', 'General InformationManufacturer Website Address': 'http://www.hp.com', 'General InformationBrand Name': 'HP', 'General InformationProduct Line': 'ProBook', 'General InformationProduct Series': '450 G9'}","{'Brand': 'HP', 'Model': 'ProBook 450 G9', 'Model Code': '687P3UT#ABA', 'CPU': 'Intel i7-1255U', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 10 Pro', 'Screen': '15.6""'}" -241155,LPLEN03456,"Lenovo IdeaPad Consumer Notebook 14"" FHD Intel i5-1135G7 8GB 512GB SSD Windows 11 Home, 81X700FXUS",LENOVO,"['Laptops, Tablet', None, None, None]",549.0,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '14""'}","{'Brand': 'Lenovo', 'Model': 'IdeaPad', 'Model Code': '81X700FXUS', 'CPU': 'Intel i5-1135G7', 'RAM': '8GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '14""', 'Resolution': 'FHD'}" -245452,LPLEN03564,"LENOVO ThinkPad X1 Business Notebook 13.3"" Detachable (2 in 1) QHD Intel i7-8650U 16GB 256GB SSD Windows 10 Pro Refurbished",LENOVO,"['Laptops, Tablet', None, None, None]",549.0,"{'GPU': 'Intel UHD Graphics 620', 'Maximum Resolution': '3000 x 2000', 'Touch Screen': 'Yes', 'Operating System': 'Windows 10 Pro', 'Memory': '16GB', 'Screen Size': '13.3""'}","{'Brand': 'LENOVO', 'Model': 'ThinkPad X1', 'Type': 'Business Notebook', 'Screen Size': '13.3""', 'Screen Type': 'Detachable (2 in 1)', 'Resolution': 'QHD', 'CPU': 'Intel i7-8650U', 'RAM': '16GB', 'Storage': '256GB SSD', 'OS': 'Windows 10 Pro', 'Condition': 'Refurbished'}" -238839,LPASU00765,"ASUS Zenbook S 13 OLED EVO Laptop 13.3"" Intel i7-1355U 16GB 1TB SSD Windows 11 Home, UX5304VA-DS71-CA",ASUS,"['Laptops, Tablet', None, None, None]",1299.0,"{'GPU': 'Intel Iris Xe', 'Refresh Rate': '60Hz', 'Maximum Resolution': '2880 x 1800', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB'}","{'Brand': 'ASUS', 'Model': 'Zenbook S 13 OLED EVO', 'Model Code': 'UX5304VA-DS71-CA', 'CPU': 'Intel i7-1355U', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '13.3"" OLED'}" -238601,LPHEW02017,"HP Pavilion Consumer Notebook 15.6"" FHD Intel i5-1240P Intel Iris Xe 8GB 512GB SSD Windows 11 Home, 15-EG2002CA",HP,"['Laptops, Tablet', None, None, None]",630.88000488281,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': 'FHD', 'SSD Capacity': '512GB', 'CPU': 'i5-1240P'}","{'Brand': 'HP', 'Series': 'Pavilion', 'Model': '15-EG2002CA', 'CPU': 'Intel i5-1240P', 'GPU': 'Intel Iris Xe', 'RAM': '8GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -223242,LPMSI00496,"MSI GF63 Gaming Notebook 15.6"" FHD Intel i5-11400H RTX3050 8GB 512GB SSD Windows 11 Home,GF63 11UC-692",MSI,"['Laptops, Tablet', None, None, None]",799.0,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '144Hz', 'SSD Capacity': '512GB'}","{'Brand': 'MSI', 'Model': 'GF63', 'Model Code': 'GF63 11UC-692', 'CPU': 'Intel i5-11400H', 'GPU': 'RTX3050', 'RAM': '8GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -239775,LPLEN03430,"Lenovo IdeaPad Slim 3 15.6"" Laptop AMD Ryzen 7 7730U 8GB 512GB SSD Windows 11 Home, 82XM007NCC",LENOVO,"['Laptops, Tablet', None, None, None]",599.88,"{'GPU': 'AMD Radeon Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '15.6""'}","{'Brand': 'Lenovo', 'Model': 'IdeaPad Slim 3', 'Model Code': '82XM007NCC', 'CPU': 'AMD Ryzen 7 7730U', 'RAM': '8GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""'}" -242888,LPHEW02079,"HP Victus 16 Gaming Notebook 16.1"" AMD Ryzen 7 7840HS GeForce RTX 4060 16GB 1TB SSD Windows 11 Home, 7X7B2UA#ABL",HP,"['Laptops, Tablet', None, None, None]",1199.0,"{'Memory': '16GB', 'Screen Size': '16.1""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '144Hz', 'SSD Capacity': '1TB'}","{'Brand': 'HP', 'Model': 'Victus 16', 'Model Code': '7X7B2UA#ABL', 'CPU': 'AMD Ryzen 7 7840HS', 'GPU': 'GeForce RTX 4060', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '16.1""'}" -239786,LPLEN03436,"Lenovo Legion Pro 5 Gaming Notebook 16"" WQXGA Intel i7-13700HX GeForce RTX 4070 16GB 1TB SSD Windows 11 Home, 82WK00H8CC",LENOVO,"['Laptops, Tablet', None, None, None]",2199.0,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}","{'Brand': 'Lenovo', 'Model': 'Legion Pro 5', 'Model Code': '82WK00H8CC', 'CPU': 'Intel i7-13700HX', 'GPU': 'GeForce RTX 4070', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '16""', 'Resolution': 'WQXGA'}" -237086,LPACE00956,"Acer Nitro 5 Gaming Notebook 15.6"" FHD Intel i7-12650H GeForce RTX 4060 16GB 512GB SSD Windows 11, NH.QM0AA.001",ACER,"['Laptops, Tablet', None, None, None]",1399.0,"{'GPU': 'GeForce RTX 4060', 'Refresh Rate': '144Hz', 'Maximum Resolution': '1080p Full HD', 'Touch Screen': 'No', 'Operating System': 'Windows 11', 'Memory': '16GB'}","{'Brand': 'Acer', 'Model': 'Nitro 5', 'Model Code': 'NH.QM0AA.001', 'CPU': 'Intel i7-12650H', 'GPU': 'GeForce RTX 4060', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11', 'Screen': '15.6""', 'Resolution': 'FHD'}" -218561,LPASU00608,"ASUS Vivobook 15 Notebook, 15.6"" FHD, Intel Pentium Silver, Intel UHD Graphics 605, 8GB DDR4, 128GB SSD, Win11 Home, X515MA-DS91-CA",ASUS,"['Laptops, Tablet', None, None, None]",399.0,"{'Notebook Type': 'Consumer', 'Notebook Chassis': 'Clamshell', 'Screen Size': '15.6""', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'CPU': 'Intel Pentium Silver'}","{'Brand': 'ASUS', 'Model': 'Vivobook 15', 'Model Code': 'X515MA-DS91-CA', 'CPU': 'Intel Pentium Silver', 'GPU': 'Intel UHD Graphics 605', 'RAM': '8GB DDR4', 'Storage': '128GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -239812,LPACE00966,"Acer Nitro 17 Gaming Notebook 17.3"" QHD AMD Ryzen 7 7735HS GeForce RTX 4070 32GB 1TB SSD Windows 11 Home, NH.QL2AA.002",ACER,"['Laptops, Tablet', None, None, None]",1999.0,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '32GB', 'Screen Size': '17.3""'}","{'Brand': 'Acer', 'Model': 'Nitro 17', 'Model Code': 'NH.QL2AA.002', 'CPU': 'AMD Ryzen 7 7735HS', 'GPU': 'GeForce RTX 4070', 'RAM': '32GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '17.3""', 'Resolution': 'QHD'}" -121579,LPLEN00182,"Lenovo ThinkPad T480s 14"" Notebook, Intel Core i7-8550U, 16 GB, 256 GB SSD, Windows 10 Pro Refurbished",LENOVO,"['Laptops, Tablet', None, None, None]",437.96000671387,"{'Maximum Resolution': '1080p Full HD', 'Refresh Rate': '60Hz', 'SSD Capacity': '256GB', 'CPU': 'i7-8550U', 'Hard Drive Capacity': 'None', 'Notebook Type': 'Business Notebook'}","{'Brand': 'Lenovo', 'Model': 'ThinkPad T480s', 'Screen': '14""', 'CPU': 'Intel Core i7-8550U', 'RAM': '16GB', 'Storage': '256GB SSD', 'OS': 'Windows 10 Pro', 'Condition': 'Refurbished'}" -234973,LPASU00726,"ASUS ROG Flow Gaming Notebook 13.4"" WQXGA AMD Ryzen 9 7940HS RTX 4050 16GB 1TB SSD Windows 11 Home, GV302XU-DS91T-CA",ASUS,"['Laptops, Tablet', None, None, None]",2199.0,"{'GPU': 'RTX\xa04050', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '13.4""'}","{'Brand': 'ASUS', 'Series': 'ROG Flow', 'Model': 'GV302XU-DS91T-CA', 'CPU': 'AMD Ryzen 9 7940HS', 'GPU': 'RTX 4050', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '13.4""', 'Resolution': 'WQXGA'}" -239729,LPMSI00563,"MSI Modern 15 Notebook 15.6"" FHD Intel i5-1155G7 Intel Iris Xe 16GB 512GB SSD Windows 11 Home, B11M-046CA",MSI,"['Laptops, Tablet', None, None, None]",599.0,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}","{'Brand': 'MSI', 'Model': 'Modern 15 Notebook', 'Model Code': 'B11M-046CA', 'CPU': 'Intel i5-1155G7', 'GPU': 'Intel Iris Xe', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -238129,LPLEN03403,"LENOVO T480s Business Notebook 14"" FHD Intel i7-8550U Intel UHD Graphics 620 24GB 256GB SSD Windows 10 Pro Refurbished",LENOVO,"['Laptops, Tablet', None, None, None]",437.96000671387,"{'Refresh Rate': '60Hz', 'GPU': 'Intel UHD Graphics 620', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 10 Pro', 'Memory': '24GB'}","{'Brand': 'Lenovo', 'Model': 'T480s', 'CPU': 'Intel i7-8550U', 'GPU': 'Intel UHD Graphics 620', 'RAM': '24GB', 'Storage': '256GB SSD', 'OS': 'Windows 10 Pro', 'Screen': '14""', 'Resolution': 'FHD', 'Condition': 'Refurbished'}" -238838,LPASU00764,"ASUS Zenbook 15 OLED Consumer Notebook 15.6"" OLED AMD Ryzen 7 7735U AMD Radeon Graphics 16GB 1TB SSD Windows 11 Home, UM3504DA-DS71-CA",ASUS,"['Laptops, Tablet', None, None, None]",1299.0,"{'GPU': 'AMD Radeon Graphics', 'Maximum Resolution': '2880 x 1620', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}","{'Brand': 'ASUS', 'Model': 'Zenbook 15 OLED', 'Model Code': 'UM3504DA-DS71-CA', 'CPU': 'AMD Ryzen 7 7735U', 'GPU': 'AMD Radeon Graphics', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6"" OLED'}" -230592,LPGIG00141,"Gigabyte AORUS 17 Gaming Notebook 17.3"" FHD Intel i7-12700H GeForce RTX 3080 Ti 32GB 1TB SSD Windows 11 Home, YE5-74US544SH",GIGABYTE,"['Laptops, Tablet', None, None, None]",1999.0,"{'GPU': 'GeForce RTX 3080 Ti', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '32GB', 'Screen Size': '17.3""'}","{'Brand': 'Gigabyte', 'Series': 'AORUS 17', 'Model': 'YE5-74US544SH', 'Screen Size': '17.3""', 'Resolution': 'FHD', 'CPU': 'Intel i7-12700H', 'GPU': 'GeForce RTX 3080 Ti', 'RAM': '32GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home'}" -239888,LPHEW02035,"HP Omen 16-wd0010ca Gaming Notebook 16.1"" FHD Intel i7-13620H GeForce RTX 4060 16GB 1TB SSD Windows 11 Home",HP,"['Laptops, Tablet', None, None, None]",1399.0,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16.1""'}","{'Brand': 'HP', 'Model': 'Omen 16-wd0010ca', 'CPU': 'Intel i7-13620H', 'GPU': 'GeForce RTX 4060', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '16.1""', 'Resolution': 'FHD'}" -236114,LPGIG00152,"Gigabyte AORUS 15 Gaming Notebook 15.6"" QHD Intel Core i7-13700H GeForce RTX 4060 16GB 1TB SSD Windows 11 Home, BKF-73US754SH",GIGABYTE,"['Laptops, Tablet', None, None, None]",1599.0,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '2560 x 1440', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}","{'Brand': 'Gigabyte', 'Model': 'AORUS 15', 'Model Code': 'BKF-73US754SH', 'CPU': 'Intel Core i7-13700H', 'GPU': 'GeForce RTX 4060', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'QHD'}" -239776,LPLEN03431,"Lenovo IdeaPad Slim 5 Consumer Notebook 16"" WUXGA Intel i5-1335U Intel Iris Xe 8GB 512GB SSD Windows 11 Home, 82XF002TCC",LENOVO,"['Laptops, Tablet', None, None, None]",699.99,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '16""'}","{'Brand': 'Lenovo', 'Model': 'IdeaPad Slim 5', 'Model Code': '82XF002TCC', 'CPU': 'Intel i5-1335U', 'GPU': 'Intel Iris Xe', 'RAM': '8GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '16""', 'Resolution': 'WUXGA'}" -236553,LPGIG00155,"Gigabyte AERO 16 OLED Gaming Notebook 16"" UHD Intel i9-13900H GeForce RTX 4070 32GB 1TB SSD Windows 11 Pro, BSF-A3US964SP",GIGABYTE,"['Laptops, Tablet', None, None, None]",2499.0,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '3840x2400', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '32GB', 'Screen Size': '16""'}","{'Brand': 'Gigabyte', 'Model': 'AERO 16 OLED', 'Model Code': 'BSF-A3US964SP', 'CPU': 'Intel i9-13900H', 'GPU': 'GeForce RTX 4070', 'RAM': '32GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Pro', 'Screen': '16""', 'Resolution': 'UHD (Ultra HD)'}" -216772,LPMSI00445,"MSI Modern 15 Ultra Thin and Light Notebook, 15.6"" FHD Intel Core i5-1155G7, Intel Iris Xe, 8 GB DDR4, 256GB NVMe SSD, Windows 11 Home, Modern 15 A11MU-863CA",MSI,"['Laptops, Tablet', None, None, None]",483.88,"{'Notebook Type': 'Consumer', 'Notebook Chassis': 'Thin and Light', 'Screen Size': '15.6""', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'CPU': 'i5-1155G7'}","{'Brand': 'MSI', 'Model': 'Modern 15 A11MU-863CA', 'CPU': 'Intel Core i5-1155G7', 'GPU': 'Intel Iris Xe', 'RAM': '8GB DDR4', 'Storage': '256GB NVMe SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -154718,LPLEN00715,"Lenovo ThinkPad T490 14"" Notebook Intel i5-8365U FHD 16 GB RAM 256 GB SSD Windows 10 Pro (Refurbished)",LENOVO,"['Laptops, Tablet', None, None, None]",399.0,"{'Manufacturer': 'Lenovo Group Limited', 'Manufacturer Part Number': '20N20043US', 'Manufacturer Website Address': 'http://www.lenovo.com/ca/en', 'Brand Name': 'Lenovo', 'Product Line': 'ThinkPad', 'Product Series': 'T490'}","{'Brand': 'Lenovo', 'Model': 'ThinkPad T490', 'CPU': 'Intel i5-8365U', 'RAM': '16GB', 'Storage': '256GB SSD', 'OS': 'Windows 10 Pro', 'Screen': '14""', 'Resolution': 'FHD', 'Condition': 'Refurbished'}" -238752,LPASU00761,"ASUS Vivobook Pro 16X OLED Gaming Notebook 16"" Intel i9-13980HX Geforce RTX 4070 32GB 1TB SSD Windows 11 Home, K6604JI-DS91-CA",ASUS,"['Laptops, Tablet', None, None, None]",2799.0,"{'GPU': 'Geforce\xa0RTX\xa04070', 'Maximum Resolution': '3200 x 2000', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '32GB', 'Screen Size': '16""'}","{'Brand': 'ASUS', 'Model': 'Vivobook Pro 16X OLED', 'Model Code': 'K6604JI-DS91-CA', 'CPU': 'Intel i9-13980HX', 'GPU': 'Geforce RTX 4070', 'RAM': '32GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '16""', 'Resolution': 'OLED', 'Type': 'Gaming Notebook'}" -236490,LPGIG00154,"Gigabyte AERO 14 Gaming Notebook 14"" QHD Intel Core i7-13700H GeForce RTX 4050 16GB 1TB SSD Windows 11 Home, BMF-72USBB4SH",GIGABYTE,"['Laptops, Tablet', None, None, None]",1899.0,"{'GPU': 'GeForce RTX 4050', 'Maximum Resolution': '2880x1800', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '14""'}","{'Brand': 'Gigabyte', 'Model': 'AERO 14', 'Model Code': 'BMF-72USBB4SH', 'CPU': 'Intel Core i7-13700H', 'GPU': 'GeForce RTX 4050', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '14""', 'Resolution': 'QHD'}" -234965,LPASU00722,"ASUS ROG Strix Gaming Notebook 18"" WQXGA Intel i9-13980HX RTX 4090 32GB 2TB SSD Windows 11 Pro, G834JY-XS97",ASUS,"['Laptops, Tablet', None, None, None]",3999.0,"{'GPU': 'GeForce RTX 4090', 'Maximum Resolution': '2560X1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '32GB', 'Screen Size': '18""'}","{'Brand': 'ASUS', 'Series': 'ROG Strix', 'Model': 'G834JY-XS97', 'CPU': 'Intel i9-13980HX', 'GPU': 'RTX 4090', 'RAM': '32GB', 'Storage': '2TB SSD', 'OS': 'Windows 11 Pro', 'Screen Size': '18""', 'Resolution': 'WQXGA'}" -230617,LPLEN03202,"Lenovo ThinkPad X380 Yoga Business Notebook 13.3"" FHD Intel i5-8350U Integrated GPU 16GB 512GB SSD Windows 10 Pro Refurbished",LENOVO,"['Laptops, Tablet', None, None, None]",449.0,"{'GPU': 'Integrated', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'Yes', 'Operating System': 'Windows 10 Pro', 'Memory': '16GB', 'Screen Size': '13.3""'}","{'Brand': 'Lenovo', 'Series': 'ThinkPad', 'Model': 'X380 Yoga', 'Type': 'Business Notebook', 'Screen Size': '13.3""', 'Resolution': 'FHD', 'CPU': 'Intel i5-8350U', 'GPU': 'Integrated GPU', 'RAM': '16GB', 'Storage': '512GB SSD', 'Operating System': 'Windows 10 Pro', 'Condition': 'Refurbished'}" -241506,LPMSI00577,"MSI Prestige 13 Evo Business Notebook 13.3"" Intel i7-1360P 32GB 1TB SSD Windows 11 Pro",MSI,"['Laptops, Tablet', None, None, None]",1689.0,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1200', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '32GB', 'Screen Size': '13.3""'}","{'Brand': 'MSI', 'Model': 'Prestige 13 Evo', 'CPU': 'Intel i7-1360P', 'RAM': '32GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Pro', 'Screen': '13.3""'}" -238841,LPASU00766,"ASUS Zenbook Pro 14 OLED Consumer Notebook 14.5"" OLED Intel i9-13900H GeForce RTX 4070 32GB 1TB SSD Windows 11 Home, UX6404VI-DS91-CA",ASUS,"['Laptops, Tablet', None, None, None]",2499.0,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '2880 x 1800', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '32GB', 'Screen Size': '14.5""'}","{'Brand': 'ASUS', 'Model': 'Zenbook Pro 14', 'Model Code': 'UX6404VI-DS91-CA', 'CPU': 'Intel i9-13900H', 'GPU': 'GeForce RTX 4070', 'RAM': '32GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '14.5"" OLED'}" -241572,LPASU00780,"ASUS Zenbook Consumer Notebook 14"" UHD Touchscreen OLED Intel i7-12700H 16GB 1TB SSD Windows 11 Home, UP5401ZA-DB71T-CA",ASUS,"['Laptops, Tablet', None, None, None]",1399.0,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '3840 x 2400', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '14""'}","{'Brand': 'ASUS', 'Model': 'Zenbook', 'Model Code': 'UP5401ZA-DB71T-CA', 'CPU': 'Intel i7-12700H', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '14""', 'Resolution': 'UHD', 'Touchscreen': 'Yes', 'Panel Type': 'OLED'}" -241407,LPASU00779,"ASUS Zenbook 14X OLED Consumer Notebook 14"" Intel i7-12700H Intel Iris Xe 16GB 1TB SSD Windows 11 Home, UX5401ZA-DB71-CA",ASUS,"['Laptops, Tablet', None, None, None]",1299.0,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '2880 X 1800', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '14""'}","{'Brand': 'ASUS', 'Model': 'Zenbook 14X OLED', 'Model Code': 'UX5401ZA-DB71-CA', 'CPU': 'Intel i7-12700H', 'GPU': 'Intel Iris Xe', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '14""', 'Type': 'OLED'}" -240964,LPLEN03452,"Lenovo 300e Yoga Chromebook Gen 4 82W20003US 11.6"" Touchscreen Convertible 2 in 1 Chromebook - HD - 1366 x 768 - Octa-core (ARM Cortex A76 Dual-core (2 Core) 2.05 GHz + Cortex A55 Hexa-core (6 Core) 2 GHz) - 4 GB Total RAM - 4 GB On-board Memory - 32 GB F",LENOVO,"['Laptops, Tablet', None, None, None]",412.41,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '82W20003US', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': '300e Yoga Chromebook Gen 4', 'General InformationProduct Model': '82W20003US'}","{'Brand': 'Lenovo', 'Model': '300e Yoga Chromebook Gen 4', 'Model Code': '82W20003US', 'Screen': '11.6"" Touchscreen', 'Convertible': 'Yes (2 in 1)', 'Resolution': 'HD (1366 x 768)', 'Processor': 'Octa-core (ARM Cortex A76 Dual-core 2.05 GHz + Cortex A55 Hexa-core 2 GHz)', 'RAM': '4 GB', 'On-board Memory': '4 GB', 'Storage': '32 GB'}" -239773,LPLEN03428,"Lenovo IdeaPad Slim 3 Consumer Notebook 15.6"" FHD AMD Ryzen 3 7320U AMD Radeon 610M Graphics 8GB 512GB SSD Windows 11 Home,82XQ007UCC",LENOVO,"['Laptops, Tablet', None, None, None]",499.99,"{'GPU': 'AMD Radeon 610M Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '15.6""'}","{'Brand': 'Lenovo', 'Model': 'IdeaPad Slim 3', 'Model Code': '82XQ007UCC', 'CPU': 'AMD Ryzen 3 7320U', 'GPU': 'AMD Radeon 610M Graphics', 'RAM': '8GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD', 'Graphics': 'AMD Radeon 610M'}" -237091,LPACE00961,"Acer Predator Helios Gaming Laptop 16"" QHD Intel i9-13900HX GeForce RTX 4080 32GB 1 TB SSD Windows 11,NH.QJSAA.002",ACER,"['Laptops, Tablet', None, None, None]",2999.0,"{'GPU': 'GeForce RTX 4080', 'Refresh Rate': '240Hz', 'Maximum Resolution': 'QHD', 'Touch Screen': 'No', 'Operating System': 'Windows 11', 'Memory': '32GB'}","{'Brand': 'Acer', 'Model': 'Predator Helios', 'Model Code': 'NH.QJSAA.002', 'CPU': 'Intel i9-13900HX', 'GPU': 'GeForce RTX 4080', 'RAM': '32GB', 'Storage': '1 TB SSD', 'OS': 'Windows 11', 'Screen': '16""', 'Resolution': 'QHD'}" -234888,LPASU00718,"ASUS ROG Strix Gaming Notebook 16"" WQXGA Intel i9-13980HX RTX 4080 32GB 1TB SSD Windows 11 Pro, G634JZ-XS96",ASUS,"['Laptops, Tablet', None, None, None]",3499.0,"{'GPU': 'GeForce RTX 4080', 'Maximum Resolution': '2560X1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '32GB', 'Screen Size': '16""'}","{'Brand': 'ASUS', 'Series': 'ROG Strix', 'Model': 'G634JZ-XS96', 'CPU': 'Intel i9-13980HX', 'GPU': 'RTX 4080', 'RAM': '32GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Pro', 'Screen': '16""', 'Resolution': 'WQXGA'}" -227682,LPGIG00137,"GIGABYTE AERO 16 Gaming Notebook 15.6"" OLED UHD Intel Core i9-12900H RTX 3080 Ti 64GB 2TB SSD Windows 11 Pro, YE5-A4US958HP",GIGABYTE,"['Laptops, Tablet', None, None, None]",2999.0,"{'Memory': '64GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Pro', 'Maximum Resolution': '3840x2400', 'Refresh Rate': '60Hz', 'SSD Capacity': '2TB'}","{'Brand': 'GIGABYTE', 'Model': 'AERO 16', 'Model Code': 'YE5-A4US958HP', 'CPU': 'Intel Core i9-12900H', 'GPU': 'RTX 3080 Ti', 'RAM': '64GB', 'Storage': '2TB SSD', 'OS': 'Windows 11 Pro', 'Screen': '15.6"" OLED', 'Resolution': 'UHD'}" -196113,LPLEN02154,"LENOVO ThinkPad T14s G2 Business Notebook 14"" Intel i5-1135G7 8 GB 256GB SSD Windows 10 Pro, 20WM0085US",LENOVO,"['Laptops, Tablet', None, None, None]",699.0,"{'Manufacturer': 'Lenovo Group Limited', 'Storage Type': 'SSD', 'CPU Brand': 'Intel', 'Product Condition': '.', 'Product Condition Short': '.', 'Screen Resolution Description': 'FHD'}","{'Brand': 'LENOVO', 'Series': 'ThinkPad T14s G2', 'Size': '14""', 'CPU': 'Intel i5-1135G7', 'RAM': '8GB', 'Storage': '256GB SSD', 'OS': 'Windows 10 Pro', 'Model': '20WM0085US'}" -239774,LPLEN03429,"Lenovo IdeaPad Slim 3 Consumer Notebook 15.6"" FHD AMD Ryzen 5 7520U AMD Radeon 610M Graphics 8GB 512GB SSD Windows 11 Home, 82XQ007VCC",LENOVO,"['Laptops, Tablet', None, None, None]",549.99,"{'GPU': 'AMD Radeon 610M Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '15.6""'}","{'Brand': 'Lenovo', 'Model': 'IdeaPad Slim 3', 'Model Code': '82XQ007VCC', 'CPU': 'AMD Ryzen 5 7520U', 'GPU': 'AMD Radeon 610M', 'RAM': '8GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -239727,LPMSI00561,"MSI Bravo 15 Gaming Notebook 15.6"" FHD AMD Ryzen 7 7735HS GeForce RTX 3050 16GB 512GB SSD Windows 11 Home",MSI,"['Laptops, Tablet', None, None, None]",1299.0,"{'GPU': 'GeForce RTX 3050', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}","{'Brand': 'MSI', 'Model': 'Bravo 15', 'CPU': 'AMD Ryzen 7 7735HS', 'GPU': 'GeForce RTX 3050', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -238799,LPHEW02024,"HP Consumer Notebook 17.3"" FHD Intel i5-1335U Intel Iris Xe 8GB 1TB SSD Windows 11 Home, 17-cn3010ca",HP,"['Laptops, Tablet', None, None, None]",778.88000488281,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': 'FHD', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '17.3""'}","{'Brand': 'HP', 'Model': 'Consumer Notebook', 'Model Code': '17-cn3010ca', 'CPU': 'Intel i5-1335U', 'GPU': 'Intel Iris Xe', 'RAM': '8GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '17.3""', 'Resolution': 'FHD'}" -236072,LPGIG00148,"Gigabyte AORUS Gaming Notebook 17.3"" QHD Intel i7-13700H GeForce RTX 4070 16GB 1TB SSD Windows 11 Home, BSF-73US654SH",GIGABYTE,"['Laptops, Tablet', None, None, None]",1999.0,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '2560 x 1440', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '17.3""'}","{'Brand': 'Gigabyte', 'Series': 'AORUS Gaming Notebook', 'Screen': '17.3""', 'Resolution': 'QHD', 'CPU': 'Intel i7-13700H', 'GPU': 'GeForce RTX 4070', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Model Code': 'BSF-73US654SH'}" -235100,LPASU00734,"ASUS Zenbook 14X Consumer Notebook 14"" OLED Intel i7-1260P GeForce MX550 16GB 512GB SSD Windows 11 Home, UX5400ZB-DS72T-CA",ASUS,"['Laptops, Tablet', None, None, None]",1599.0,"{'GPU': 'GeForce\xa0MX550', 'Maximum Resolution': '2880 x 1800', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '14""'}","{'Brand': 'ASUS', 'Model': 'Zenbook 14X', 'Model Code': 'UX5400ZB-DS72T-CA', 'CPU': 'Intel i7-1260P', 'GPU': 'GeForce MX550', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '14"" OLED'}" -216707,LPASU00592,"ASUS Vivobook 15 Notebook, 15.6"" HD, AMD Ryzen 3 3250U, AMD Radeon Graphics, 8GB DDR4, 128GB SSD, Win11 Home, M515DA-DS31-CA",ASUS,"['Laptops, Tablet', None, None, None]",499.0,"{'Notebook Type': 'Consumer', 'Notebook Chassis': 'Clamshell', 'Screen Size': '15.6""', 'Maximum Resolution': '1366 x 768', 'Refresh Rate': '60Hz', 'CPU': 'AMD Ryzen 3 3250U'}","{'Brand': 'ASUS', 'Model': 'Vivobook 15', 'Model Code': 'M515DA-DS31-CA', 'CPU': 'AMD Ryzen 3 3250U', 'GPU': 'AMD Radeon Graphics', 'RAM': '8GB DDR4', 'Storage': '128GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'HD'}" -239728,LPMSI00562,"MSI Modern 15 Notebook 15.6"" FHD AMD Ryzen 7 7730U AMD Radeon Graphics 16GB 512GB SSD Windows 11 Home, B7M-097CA",MSI,"['Laptops, Tablet', None, None, None]",699.0,"{'GPU': 'AMD Radeon Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}","{'Brand': 'MSI', 'Model': 'Modern 15 Notebook', 'Model Code': 'B7M-097CA', 'CPU': 'AMD Ryzen 7 7730U', 'GPU': 'AMD Radeon Graphics', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -235077,LPMSI00541,"MSI Thin GF63 Gaming Notebook 15.6"" FHD Intel i7-12650H GeForce RTX 3050 16GB 512GB SSD Windows 11 Home, 12UDX-038CA",MSI,"['Laptops, Tablet', None, None, None]",999.0,"{'GPU': 'GeForce RTX 3050', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}","{'Brand': 'MSI', 'Model': 'Thin GF63', 'Model Code': '12UDX-038CA', 'CPU': 'Intel i7-12650H', 'GPU': 'GeForce RTX 3050', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -234156,LPASU00686,"ASUS TUF Gaming Notebook 16"" FHD AMD Ryzen 7 7735HS AMD Radeon RX 7600S 16GB 1TB SSD Windows 11 Home, FA617NS-DS71-CA",ASUS,"['Laptops, Tablet', None, None, None]",1499.0,"{'GPU': 'AMD\xa0Radeon RX\xa07600S', 'Refresh Rate': '144Hz', 'Maximum Resolution': '1920X1200', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB'}","{'Brand': 'ASUS', 'Model': 'TUF Gaming Notebook', 'Model Code': 'FA617NS-DS71-CA', 'CPU': 'AMD Ryzen 7 7735HS', 'GPU': 'AMD Radeon RX 7600S', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '16""', 'Resolution': 'FHD'}" -216703,LPASU00591,"ASUS Vivobook Go Notebook, 15.6"" HD, Intel Celeron N4020, Intel UHD Graphics 600, 4GB DDR4, 64GB SSD, Win11 S, L510MA-DS09-CA",ASUS,"['Laptops, Tablet', None, None, None]",259.0,"{'Notebook Type': 'Consumer', 'Notebook Chassis': 'Clamshell', 'Screen Size': '15.6""', 'Maximum Resolution': '1366 x 768', 'Refresh Rate': '60Hz', 'CPU': 'Intel Celeron N4020'}","{'Brand': 'ASUS', 'Model': 'Vivobook Go', 'Model Code': 'L510MA-DS09-CA', 'CPU': 'Intel Celeron N4020', 'GPU': 'Intel UHD Graphics 600', 'RAM': '4GB DDR4', 'Storage': '64GB SSD', 'OS': 'Windows 11 S', 'Screen': '15.6""', 'Resolution': 'HD'}" -241456,LPHEW02058,"HP Victus 15-fa1000ca Gaming Notebook 15.6"" Intel i5-13500H GeForce RTX 4050 16GB 512GB SSD Windows 11 Home, 7X7A3UA#ABL",HP,"['Laptops, Tablet', None, None, None]",1099.0,"{'Memory': '16GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '144Hz', 'SSD Capacity': '512GB'}","{'Brand': 'HP', 'Model': 'Victus 15-fa1000ca', 'Model Code': '7X7A3UA#ABL', 'CPU': 'Intel i5-13500H', 'GPU': 'GeForce RTX 4050', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""'}" -240050,LPHEW02046,"HP Consumer Notebook 17.3"" FHD, Ryzen 3 3720U, AMD Radeon Graphics, 8GB, 512GB SSD, Windows 11 Home, 17-cp2030ca",HP,"['Laptops, Tablet', None, None, None]",584.88000488281,"{'GPU': 'AMD Radeon Graphics', 'Maximum Resolution': 'FHD', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '17.3""'}","{'Brand': 'HP', 'Model': '17-cp2030ca', 'CPU': 'Ryzen 3 3720U', 'GPU': 'AMD Radeon Graphics', 'RAM': '8GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '17.3""', 'Resolution': 'FHD'}" -236573,LPASU00743,"ASUS Zenbook S 13 Flip OLED Business Notebook 13.3"" Touchscreen QHD Intel i7-1260P 16GB 1TB SSD Windows 11 Pro, UP5302ZA-XB71T-CA",ASUS,"['Laptops, Tablet', None, None, None]",1999.0,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '2880 x 1800', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Pro', 'Memory': '16GB', 'Screen Size': '13.3""'}","{'Brand': 'ASUS', 'Model': 'Zenbook S 13 Flip', 'Model Code': 'UP5302ZA-XB71T-CA', 'Type': 'Business Notebook', 'Screen': '13.3"" OLED Touchscreen', 'Resolution': 'QHD', 'CPU': 'Intel i7-1260P', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Pro'}" -236557,LPGIG00157,"Gigabyte AERO 14 OLED Gaming Notebook 14"" QHD Intel i5-12500H RTX 4050 16GB 1TB SSD Windows 11 Home, 9MF-E2USBB4SH",GIGABYTE,"['Laptops, Tablet', None, None, None]",1499.0,"{'GPU': 'RTX 4050', 'Maximum Resolution': '2880x1800', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '14""'}","{'Brand': 'Gigabyte', 'Model': 'AERO 14', 'Model Code': '9MF-E2USBB4SH', 'CPU': 'Intel i5-12500H', 'GPU': 'RTX 4050', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '14""', 'Resolution': 'QHD'}" -236073,LPGIG00149,"Gigabyte AORUS 15X Gaming Notebook 15.6"" QHD Intel i9-13900HX GeForce RTX 4070 16GB 1TB SSD Windows 11 Home, ASF-B3US754SH",GIGABYTE,"['Laptops, Tablet', None, None, None]",2199.88,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '2560x1440', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}","{'Brand': 'Gigabyte', 'Series': 'AORUS 15X', 'Model Code': 'ASF-B3US754SH', 'CPU': 'Intel i9-13900HX', 'GPU': 'GeForce RTX 4070', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'QHD'}" -238842,LPASU00767,"ASUS Zenbook Pro 14 Duo OLED Consumer Notebook 14.5"" OLED Intel i9-13900H GeForce RTX 4060 32GB 1TB SSD Windows 11 Home, UX8402VV-DS91T-CA",ASUS,"['Laptops, Tablet', None, None, None]",2999.0,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '2880 x 1800', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Home', 'Memory': '32GB', 'Screen Size': '14.5""'}","{'Brand': 'ASUS', 'Model': 'Zenbook Pro 14 Duo OLED', 'Model Code': 'UX8402VV-DS91T-CA', 'CPU': 'Intel i9-13900H', 'GPU': 'GeForce RTX 4060', 'RAM': '32GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '14.5"" OLED'}" -238733,LPASU00759,"ASUS ProArt Studiobook Business Notebook 16"" OLED Intel i9-13980HX Geforce RTX 4070 32GB 1TB SSD Windows 11 Pro, H7604JI-XS91T-CA",ASUS,"['Laptops, Tablet', None, None, None]",3154.0,"{'GPU': 'Geforce\xa0RTX\xa04070', 'Maximum Resolution': '3200 x 2000', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Pro', 'Memory': '32GB', 'Screen Size': '16""'}","{'Brand': 'ASUS', 'Series': 'ProArt Studiobook', 'Model': 'H7604JI-XS91T-CA', 'CPU': 'Intel i9-13980HX', 'GPU': 'Geforce RTX 4070', 'RAM': '32GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Pro', 'Screen': '16"" OLED'}" -236555,LPGIG00156,"Gigabyte AERO 16 OLED Gaming Notebook 16"" UHD Intel i7-13700H GeForce RTX 4070 16GB 1TB SSD Windows 11 Home, BSF-73US994SH",GIGABYTE,"['Laptops, Tablet', None, None, None]",2199.0,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '3840x2400', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}","{'Brand': 'Gigabyte', 'Model': 'AERO 16 OLED', 'Model Code': 'BSF-73US994SH', 'CPU': 'Intel i7-13700H', 'GPU': 'GeForce RTX 4070', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '16""', 'Resolution': 'UHD'}" -243943,LPLEN03512,"Lenovo ThinkBook 14s Yoga G3 14"" Touchscreen Convertible Notebook FHD Intel Core i7-1355U 16GB RAM 512GB SSD, Mineral Gray, Windows 11 Pro",LENOVO,"['Laptops, Tablet', None, None, None]",1499.0,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '21JG001FUS', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'ThinkBook', 'General InformationProduct Series': '14s Yoga G3 IRU'}","{'Brand': 'Lenovo', 'Model': 'ThinkBook 14s Yoga G3', 'Screen Size': '14""', 'Screen Type': 'Touchscreen', 'Convertibility': 'Convertible Notebook', 'Resolution': 'FHD (1920x1080)', 'CPU': 'Intel Core i7-1355U', 'RAM': '16GB', 'Storage': '512GB SSD', 'Color': 'Mineral Gray', 'OS': 'Windows 11 Pro'}" -234974,LPASU00727,"ASUS ROG Flow Gaming Notebook 16"" WQXGA Intel Core i9-13900H RTX 4050 16GB 1TB SSD Windows 11 Home, GV601VU-DS91T-CA",ASUS,"['Laptops, Tablet', None, None, None]",2199.0,"{'GPU': 'RTX\xa04050', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}","{'Brand': 'ASUS', 'Series': 'ROG Flow', 'Model': 'GV601VU-DS91T-CA', 'Screen Size': '16""', 'Resolution': 'WQXGA', 'CPU': 'Intel Core i9-13900H', 'GPU': 'RTX 4050', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home'}" -234827,LPMSI00531,"MSI TITAN GT77 Gaming Notebook 17.3"" UHD Intel i9-13980HX GeForce RTX 4090 128GB 4TB SSD Windows 11 Pro, GT77HX 13VI-042US",MSI,"['Laptops, Tablet', None, None, None]",6999.0,"{'GPU': 'GeForce RTX 4090', 'Maximum Resolution': '3840x2160', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '128GB', 'Screen Size': '17.3""'}","{'Brand': 'MSI', 'Model': 'TITAN GT77', 'Model Code': 'GT77HX 13VI-042US', 'CPU': 'Intel i9-13980HX', 'GPU': 'GeForce RTX 4090', 'RAM': '128GB', 'Storage': '4TB SSD', 'OS': 'Windows 11 Pro', 'Screen': '17.3""', 'Resolution': 'UHD'}" -225016,LPLEN03042,"Lenovo ThinkBook 15 G4 15.6"" Touchscreen Notebook, FHD, Intel Core i7-1255U, 16GB RAM, 512GB SSD, Mineral Gray, Fingerprint Reader, Backlit Keyboard, Windows 11 Pro",LENOVO,"['Laptops, Tablet', None, None, None]",1299.0,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '21DJ000VUS', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'ThinkBook', 'General InformationProduct Series': '15 G4 IAP'}","{'Brand': 'Lenovo', 'Model': 'ThinkBook 15 G4', 'Screen': '15.6"" Touchscreen', 'Resolution': 'FHD', 'CPU': 'Intel Core i7-1255U', 'RAM': '16GB', 'Storage': '512GB SSD', 'Color': 'Mineral Gray', 'Features': 'Fingerprint Reader, Backlit Keyboard', 'OS': 'Windows 11 Pro'}" -250551,LPASU00500OB,"Asus ExpertBook B1 14"" Laptop Intel i5 1135G7 8 GB 256 GB SSD Windows 10 Home, B1400CEAE-Q51H-CB(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",521.55,"{'General InformationManufacturer': 'ASUS Computer International', 'General InformationManufacturer Part Number': 'B1400CEAE-Q51H-CB', 'General InformationManufacturer Website Address': 'http://www.asus.com', 'General InformationBrand Name': 'Asus', 'General InformationProduct Line': 'ExpertBook B1', 'General InformationProduct Series': 'B1400'}","{'Brand': 'Asus', 'Model': 'ExpertBook B1', 'Model Code': 'B1400CEAE-Q51H-CB', 'CPU': 'Intel i5 1135G7', 'RAM': '8GB', 'Storage': '256GB SSD', 'OS': 'Windows 10 Home', 'Screen': '14""'}" -250418,LPASU00717OB,"ASUS ROG Strix Gaming Notebook 16"" FHD Intel i7-13650HX RTX 3050 16GB 1TB SSD Windows 11 Home, G614JJ-DS71-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",1439.1,"{'GPU': 'RTX 3050', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}","{'Brand': 'ASUS', 'Product Line': 'ROG Strix', 'Model': 'G614JJ-DS71-CA', 'Screen Size': '16""', 'Resolution': 'FHD', 'CPU': 'Intel i7-13650HX', 'GPU': 'RTX 3050', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Condition': 'Open Box'}" -250334,LPLEN03685OB,"Lenovo IdeaPad Slim 3 15AMN8 Laptop 15.6"" FHD AMD Ryzen 3 7320U 8GB 256GB SSD Windows 11 S, 82XQ001JCF(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",426.55,"{'GPU': 'AMD Radeon 610M Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 S', 'Memory': '8GB', 'Screen Size': '15.6""'}","{'Brand': 'Lenovo', 'Model': 'IdeaPad Slim 3 15AMN8', 'Model Code': '82XQ001JCF', 'CPU': 'AMD Ryzen 3 7320U', 'RAM': '8GB', 'Storage': '256GB SSD', 'OS': 'Windows 11 S', 'Screen': '15.6""', 'Resolution': 'FHD'}" -250119,LPHEW02147,"HP EliteBook 835 Laptop 13.3"" FHD AMD Ryzen 5 Pro 7540U AMD Radeon 740M Graphics 16GB 512GB SSD Windows 11 Pro",HP,"['Laptops, Tablet', None, None, None]",2149.0,"{'GPU': 'AMD Radeon 740M Graphics', 'Maximum Resolution': '1920 x 1200', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '16GB', 'Screen Size': '13.3""'}","{'Brand': 'HP', 'Model': 'EliteBook 835', 'CPU': 'AMD Ryzen 5 Pro 7540U', 'GPU': 'AMD Radeon 740M Graphics', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Pro', 'Screen': '13.3""', 'Resolution': 'FHD'}" -249975,LPLEN03577OB,"Lenovo ThinkPad T480 Business Laptop 14"" FHD Intel i5-8365U 16GB 512GB SSD Windows 10 Pro Refurbished(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",449.1,"{'GPU': 'Intel® UHD Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 10 Pro', 'Memory': '16GB', 'Screen Size': '14""'}","{'Brand': 'Lenovo', 'Model': 'ThinkPad T480', 'CPU': 'Intel i5-8365U', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 10 Pro', 'Screen': '14""', 'Resolution': 'FHD', 'Condition': 'Refurbished'}" -249937,LPASU00830,"ASUS Zenbook 14 EVO OLED Laptop 14"" QHD+ Intel Core Ultra 5 125H Intel Arc™ Graphics 16GB 512GB SSD Windows 11 Home, UX3405MA-DS51T-CA",ASUS,"['Laptops, Tablet', None, None, None]",1399.0,"{'GPU': 'Intel Arc™ Graphics', 'Maximum Resolution': '2880 x 1800', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '14""'}","{'Brand': 'ASUS', 'Model': 'Zenbook 14 EVO OLED', 'Model Code': 'UX3405MA-DS51T-CA', 'CPU': 'Intel Core Ultra 5 125H', 'GPU': 'Intel Arc™ Graphics', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '14""', 'Resolution': 'QHD+'}" -249890,LPASU00809OB,"ASUS ROG Strix G16 Gaming Laptop 16"" QHD Intel i9-13980HX GeForce RTX 4060 16GB 1TB SSD Windows 11 Home, G614JV-DB91-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",1619.1,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}","{'Brand': 'ASUS', 'Model': 'ROG Strix G16', 'Model Code': 'G614JV-DB91-CA', 'CPU': 'Intel i9-13980HX', 'GPU': 'GeForce RTX 4060', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '16""', 'Resolution': 'QHD'}" -249876,LPLGE00028OB,"LG Gram EVO Ultra-Lightweight Notebook , 16"" WQXGA, Intel i7-1260P, Intel Iris Xe Graphics, 16GB, 512GB SSD, Windows 11 Home, 16T90Q-K.AA75A9(Open Box)",LG,"['Laptops, Tablet', None, None, None]",1538.89,"{'Notebook Type': 'Consumer', 'Notebook Chassis': 'Thin and Light', 'Screen Size': '16""', 'Maximum Resolution': '2560 x 1600', 'Refresh Rate': '60Hz', 'CPU': 'i7-1260P'}","{'Brand': 'LG', 'Model': 'Gram EVO', 'Model Code': '16T90Q-K.AA75A9', 'CPU': 'Intel i7-1260P', 'GPU': 'Intel Iris Xe Graphics', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '16""', 'Resolution': 'WQXGA'}" -249846,LPASU00721OB,"ASUS ROG Strix Gaming Notebook 17.3"" WQHD AMD Ryzen 9 7945HX RTX 4080 32GB 1TB SSD Windows 11 Pro, G733PZ-XS96(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",3149.1,"{'GPU': 'RTX\xa04080', 'Maximum Resolution': 'WQHD', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '32GB', 'Screen Size': '17.3""'}","{'Brand': 'ASUS', 'Series': 'ROG Strix', 'Model': 'G733PZ-XS96', 'CPU': 'AMD Ryzen 9 7945HX', 'GPU': 'RTX 4080', 'RAM': '32GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Pro', 'Screen': '17.3""', 'Resolution': 'WQHD'}" -249838,LPLEN03709,"Lenovo V15 G4 Business Laptop 15.6"" FHD Intel i7-1355U 16GB 1TB SSD Windows 11 Pro, 83A100E8US",LENOVO,"['Laptops, Tablet', None, None, None]",1399.0,"{'GPU': 'Intel Iris Xe Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '16GB', 'Screen Size': '15.6""'}","{'Brand': 'Lenovo', 'Model': 'V15 G4', 'Model Code': '83A100E8US', 'CPU': 'Intel i7-1355U', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Pro', 'Screen': '15.6""', 'Resolution': 'FHD'}" -249837,LPLEN03708,"Lenovo V15 G4 Business Laptop 15.6"" FHD Intel i5-1335U 16GB 1TB SSD Windows 11 Pro, 83A100ECUS",LENOVO,"['Laptops, Tablet', None, None, None]",1199.0,"{'GPU': 'Intel Iris Xe Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '16GB', 'Screen Size': '15.6""'}","{'Brand': 'Lenovo', 'Model': 'V15 G4', 'Model Code': '83A100ECUS', 'CPU': 'Intel i5-1335U', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Pro', 'Screen': '15.6""', 'Resolution': 'FHD'}" -249836,LPLEN03707,"Lenovo V15 G4 Business Laptop 15.6"" FHD Intel i3-1315U Intel UHD Graphics 16GB 512GB SSD Windows 11 Pro, 83A100EGUS",LENOVO,"['Laptops, Tablet', None, None, None]",699.0,"{'GPU': 'Intel UHD Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '16GB', 'Screen Size': '15.6""'}","{'Brand': 'Lenovo', 'Model': 'V15 G4', 'Model Code': '83A100EGUS', 'CPU': 'Intel i3-1315U', 'GPU': 'Intel UHD Graphics', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Pro', 'Screen': '15.6""', 'Resolution': 'FHD'}" -249835,LPLEN03706,"Lenovo V15 G4 Business Laptop 15.6"" FHD AMD Ryzen 5 5500U 16GB 512GB SSD Windows 11 Pro, 83CR000FUS",LENOVO,"['Laptops, Tablet', None, None, None]",899.0,"{'GPU': 'AMD Radeon Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '16GB', 'Screen Size': '15.6""'}","{'Brand': 'Lenovo', 'Model': 'V15 G4', 'Model Code': '83CR000FUS', 'CPU': 'AMD Ryzen 5 5500U', 'GPU': 'Integrated graphics', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Pro', 'Screen': '15.6""', 'Resolution': 'FHD'}" -249816,LPRAZ00059,"RAZER Blade 14 Gaming Laptop 14"" QHD AMD Ryzen 9 7940HS GeForce RTX 4070 16GB 1TB SSD Windows 11 Home",RAZER,"['Laptops, Tablet', None, None, None]",3649.0,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '14""'}","{'Brand': 'RAZER', 'Model': 'Blade 14', 'CPU': 'AMD Ryzen 9 7940HS', 'GPU': 'GeForce RTX 4070', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '14""', 'Resolution': 'QHD'}" -249777,LPHEW01929OB,"HP ProBook 440 G9 14"" Business Laptop FHD Intel Core i5-1235U 8GB RAM 256GB SSD Silver Windows 11 Pro(Open Box)",HP,"['Laptops, Tablet', None, None, None]",569.05,"{'General InformationManufacturer': 'HP Inc.', 'General InformationManufacturer Part Number': '687M8UT#ABA', 'General InformationManufacturer Website Address': 'http://www.hp.com', 'General InformationBrand Name': 'HP', 'General InformationProduct Line': 'ProBook', 'General InformationProduct Series': '440 G9'}","{'Brand': 'HP', 'Model': 'ProBook 440 G9', 'Screen': '14""', 'Resolution': 'FHD', 'CPU': 'Intel Core i5-1235U', 'RAM': '8GB', 'Storage': '256GB SSD', 'Color': 'Silver', 'OS': 'Windows 11 Pro', 'Package Condition': 'Open Box'}" -249687,LPMSI00531OB,"MSI TITAN GT77 Gaming Notebook 17.3"" UHD Intel i9-13980HX GeForce RTX 4090 128GB 4TB SSD Windows 11 Pro, GT77HX 13VI-042US(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",6299.1,"{'GPU': 'GeForce RTX 4090', 'Maximum Resolution': '3840x2160', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '128GB', 'Screen Size': '17.3""'}","{'Brand': 'MSI', 'Model': 'TITAN GT77', 'Model Code': 'GT77HX 13VI-042US', 'CPU': 'Intel i9-13980HX', 'GPU': 'GeForce RTX 4090', 'RAM': '128GB', 'Storage': '4TB SSD', 'OS': 'Windows 11 Pro', 'Screen': '17.3""', 'Resolution': 'UHD'}" -249641,LPLEN03578OB,"Lenovo Yoga L390 Business Laptop 13.3"" Touchscreen FHD Intel i5-8365U 16GB 256GB SSD Windows 11 Pro Refurbished(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",404.1,"{'GPU': 'Intel® UHD Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Pro', 'Memory': '16GB', 'Screen Size': '13.3""'}","{'Brand': 'Lenovo', 'Model': 'Yoga L390', 'CPU': 'Intel i5-8365U', 'RAM': '16GB', 'Storage': '256GB SSD', 'OS': 'Windows 11 Pro', 'Screen': '13.3"" Touchscreen', 'Resolution': 'FHD', 'Condition': 'Refurbished (Open Box)'}" -249634,LPLEN03518OB,"LENOVO Thinkbook T480s Business Notebook 14"" FHD Intel i5-8350U 16GB 256GB SSD Windows 11 Pro, Refurbished(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",359.1,"{'GPU': 'Intel UHD Graphics 620', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '16GB', 'Screen Size': '14""'}","{'Brand': 'LENOVO', 'Model': 'Thinkbook T480s', 'CPU': 'Intel i5-8350U', 'RAM': '16GB', 'Storage': '256GB SSD', 'OS': 'Windows 11 Pro', 'Screen': '14""', 'Resolution': 'FHD', 'Condition': 'Refurbished(Open Box)'}" -249531,LPLEN03430OB,"Lenovo IdeaPad Slim 3 15.6"" Laptop AMD Ryzen 7 7730U 8GB 512GB SSD Windows 11 Home, 82XM007NCC(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",569.89,"{'GPU': 'AMD Radeon Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '15.6""'}","{'Brand': 'Lenovo', 'Model': 'IdeaPad Slim 3', 'Model Code': '82XM007NCC', 'CPU': 'AMD Ryzen 7 7730U', 'RAM': '8GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""'}" -249332,LPLEN03469OB,"Lenovo Legion Pro 5i Gaming Laptop 16"" QHD+ Intel i7-13700HX GeForce RTX 4060 16GB 512GB Windows 11 Home, 82WK00K7CC(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",1349.1,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}","{'Brand': 'Lenovo', 'Model': 'Legion Pro 5i', 'Model Code': '82WK00K7CC', 'CPU': 'Intel i7-13700HX', 'GPU': 'GeForce RTX 4060', 'RAM': '16GB', 'Storage': '512GB', 'OS': 'Windows 11 Home', 'Screen': '16""', 'Resolution': 'QHD+'}" -249277,LPMSI00597,"MSI Prestige 13 EVO Laptop 13.3"" Intel i7-1360P 16GB 512GB SSD Windows 11 Home, A13M-215CA",MSI,"['Laptops, Tablet', None, None, None]",1399.0,"{'GPU': 'Iris Xe Graphics', 'Maximum Resolution': '1920 x 1200', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '13.3""'}","{'Brand': 'MSI', 'Model': 'Prestige 13 EVO', 'Model Code': 'A13M-215CA', 'CPU': 'Intel i7-1360P', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '13.3""'}" -248907,LPHEW01997OB,"HP ENVY X360 13.3"" OLED Touchscreen 2 in 1 Laptop QHD i7-1250U 16GB 1TB SSD Windows 11 Home, 6J0Q0UA#ABL(Open Box)",HP,"['Laptops, Tablet', None, None, None]",1234.05,"{'Memory': '16GB', 'Screen Size': '13.3""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '2880 x 1800', 'Refresh Rate': '60Hz', 'SSD Capacity': '1TB'}","{'Brand': 'HP', 'Model': 'ENVY X360', 'Model Code': '6J0Q0UA#ABL', 'Screen': '13.3"" OLED Touchscreen', 'Resolution': 'QHD', 'CPU': 'Intel i7-1250U', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home'}" -248901,LPLEN03573OB,"LENOVO ThinkPad T490 Business Laptop 14"" FHD Intel i7-8550U Intel UHD Graphics 620 16GB 256GB SSD Windows 11 Pro, Refurbished(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",494.1,"{'GPU': 'Intel UHD Graphics 620', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '16GB', 'Screen Size': '14""'}","{'Brand': 'LENOVO', 'Model': 'ThinkPad T490', 'CPU': 'Intel i7-8550U', 'GPU': 'Intel UHD Graphics 620', 'RAM': '16GB', 'Storage': '256GB SSD', 'OS': 'Windows 11 Pro', 'Screen': '14""', 'Resolution': 'FHD', 'Condition': 'Refurbished (Open Box)'}" -248698,LPHEW02076OB,"HP Victus Gaming Notebook 16.1"" AMD Ryzen 5 7640HS GeForce RTX 4050 16GB 512GB SSD Windows 11 Home, 7X7B1UA#ABL(Open Box)",HP,"['Laptops, Tablet', None, None, None]",899.1,"{'Memory': '16GB', 'Screen Size': '16.1""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '144Hz', 'SSD Capacity': '512GB'}","{'Brand': 'HP', 'Model': 'Victus Gaming Notebook', 'Model Code': '7X7B1UA#ABL', 'CPU': 'AMD Ryzen 5 7640HS', 'GPU': 'GeForce RTX 4050', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '16.1""', 'Resolution': 'Not specified', 'Refresh Rate': 'Not specified'}" -248202,LPLEN03565OB,"LENOVO Legion Pro 5 16ARX8 Gaming Laptop 16"" 165Hz QHD Ryzen 7 7745HX GeForce RTX 4060 16GB 1TB SSD Windows 11 Home, 82WM005UCC(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",1529.1,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}","{'Brand': 'LENOVO', 'Series': 'Legion Pro 5 16ARX8', 'Model Code': '82WM005UCC', 'CPU': 'Ryzen 7 7745HX', 'GPU': 'GeForce RTX 4060', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '16""', 'Resolution': 'QHD', 'Refresh Rate': '165Hz'}" -248129,LPASU00560OB,"ASUS ExpertBook B1 Business Laptop 14"" Intel i5-1135G7 8GB 256GB SSD Windows 10 Pro, 3YR Warranty, 1YR ADP(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",759.05,"{'Screen Size': '14""', 'Memory': '8GB', 'Operating System': 'Windows 10 Pro', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '256GB'}","{'Brand': 'ASUS', 'Model': 'ExpertBook B1', 'CPU': 'Intel i5-1135G7', 'RAM': '8GB', 'Storage': '256GB SSD', 'OS': 'Windows 10 Pro', 'Screen': '14""'}" -248080,LPLEN03503OB,"Lenovo Legion Slim 7i Gaming Laptop 16"" QHD 240Hz Intel i9-13900H GeForce RTX 4070 32GB 1TB SSD Windows 11 Home, 82Y3007HCC(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",2069.1,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '32GB', 'Screen Size': '16""'}","{'Brand': 'Lenovo', 'Model': 'Legion Slim 7i', 'Model Code': '82Y3007HCC', 'CPU': 'Intel i9-13900H', 'GPU': 'GeForce RTX 4070', 'RAM': '32GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '16""', 'Resolution': 'QHD', 'Refresh Rate': '240Hz'}" -247993,LPLEN03517OB,"Lenovo ThinkPad X1 Carbon EVO 14"" Touchscreen Ultrabook WUXGA Intel i7-1365U 32GB RAM 512GB SSD Windows 11 Pro 21HM000SUS(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",1899.05,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '21HM000SUS', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'ThinkPad', 'General InformationProduct Series': 'X1 Carbon Gen 11'}","{'Brand': 'Lenovo', 'Model': 'ThinkPad X1 Carbon EVO', 'Model Code': '21HM000SUS', 'CPU': 'Intel i7-1365U', 'RAM': '32GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Pro', 'Screen': '14""', 'Touchscreen': 'Yes', 'Resolution': 'WUXGA'}" -247894,TBLEN00004,"Lenovo Tab P11 2nd Gen 11.5"" 2K Tablet 4GB 128 GB Storm Grey",LENOVO,"['Laptops, Tablet', None, None, None]",399.0,"{'Processor': 'MediaTek Helio G99 (8C, 2x A76 @2.2GHz + 6x A55 @2.0GHz)', 'Graphics': 'Integrated ARM Mali-G57 MC2 GPU', 'Memory': '4GB', 'Storage': '128GB', 'Screen Size': '11.5""', 'Screen Resolution': '2000 x 1200'}","{'Brand': 'Lenovo', 'Model': 'Tab P11 2nd Gen', 'Screen': '11.5""', 'Resolution': '2K', 'RAM': '4GB', 'Storage': '128GB', 'Color': 'Storm Grey'}" -247891,TBLEN00003,"Lenovo Tab M10 Plus 10.61"" 2K Tablet 4GB 64 GB Storm Grey",LENOVO,"['Laptops, Tablet', None, None, None]",269.0,"{'Color': 'Storm Grey', 'Graphics': 'Integrated ARM Mali-G52 MC2 GPU', 'Memory': '4GB', 'Processor': 'MediaTek Helio G80 (8C, 2x A75 @2.0GHz + 6x A55 @1.8GHz)', 'Refresh Rate': '60Hz', 'Screen Resolution': '2000 x 1200'}","{'Brand': 'Lenovo', 'Model': 'Tab M10 Plus', 'Screen Size': '10.61""', 'Resolution': '2K', 'RAM': '4GB', 'Storage': '64GB', 'Color': 'Storm Grey'}" -247821,LPGIG00156OB,"Gigabyte AERO 16 OLED Gaming Notebook 16"" UHD Intel i7-13700H GeForce RTX 4070 16GB 1TB SSD Windows 11 Home, BSF-73US994SH(Open Box)",GIGABYTE,"['Laptops, Tablet', None, None, None]",1979.1,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '3840x2400', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}","{'Brand': 'Gigabyte', 'Model': 'AERO 16 OLED', 'Model Code': 'BSF-73US994SH', 'CPU': 'Intel i7-13700H', 'GPU': 'GeForce RTX 4070', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '16""', 'Resolution': 'UHD'}" -247767,LPLEN03487OB,"Lenovo ThinkPad E16 Business Laptop 16"" FHD Intel i7-1355U 16GB 512GB SSD Windows 11 Pro, 21JN0073US(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",1139.05,"{'Memory': '16GB', 'Model': 'ThinkPad E16', 'Screen Size': '16""', 'Operating System': 'Windows 11 Pro', 'Maximum Resolution': '1920 x 1200', 'Refresh Rate': '60Hz'}","{'Brand': 'Lenovo', 'Model': 'ThinkPad E16', 'Model Code': '21JN0073US', 'CPU': 'Intel i7-1355U', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Pro', 'Screen': '16""', 'Resolution': 'FHD'}" -247756,LPGIG00137OB,"GIGABYTE AERO 16 Gaming Notebook 15.6"" OLED UHD Intel Core i9-12900H RTX 3080 Ti 64GB 2TB SSD Windows 11 Pro, YE5-A4US958HP(Open Box)",GIGABYTE,"['Laptops, Tablet', None, None, None]",2699.1,"{'Memory': '64GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Pro', 'Maximum Resolution': '3840x2400', 'Refresh Rate': '60Hz', 'SSD Capacity': '2TB'}","{'Brand': 'GIGABYTE', 'Model': 'AERO 16', 'Model Code': 'YE5-A4US958HP', 'CPU': 'Intel Core i9-12900H', 'GPU': 'NVIDIA RTX 3080 Ti', 'RAM': '64GB', 'Storage': '2TB SSD', 'OS': 'Windows 11 Pro', 'Screen': '15.6""', 'Type': 'OLED', 'Resolution': 'UHD'}" -247647,LPASU00808OB,"ASUS TUF Gaming F15 Gaming Laptop 15.6"" FHD 144Hz Intel i7-11800H GeForce RTX 3050 Ti 16GB 1TB SSD Windows 11 Home, FX506HE-EH74(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",899.1,"{'GPU': 'GeForce RTX 3050 Ti', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}","{'Brand': 'ASUS', 'Model': 'TUF Gaming F15', 'Model Code': 'FX506HE-EH74', 'CPU': 'Intel i7-11800H', 'GPU': 'GeForce RTX 3050 Ti', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD', 'Refresh Rate': '144Hz'}" -247646,LPASU00762OB,"ASUS Vivobook Slate Consumer Notebook 13.3"" OLED Intel Pentium Silver Processor N6000 Intel UHD Graphics 8GB 128GB SSD Windows 11 S, T3300KA-DS92T-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",569.05,"{'GPU': 'Intel UHD Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 S', 'Memory': '8GB', 'Screen Size': '13.3""'}","{'Brand': 'ASUS', 'Model': 'Vivobook Slate', 'Model Code': 'T3300KA-DS92T-CA', 'CPU': 'Intel Pentium Silver Processor N6000', 'GPU': 'Intel UHD Graphics', 'RAM': '8GB', 'Storage': '128GB SSD', 'OS': 'Windows 11 S', 'Screen': '13.3"" OLED'}" -247634,LPASU00786OB,"ASUS Vivobook 16X Laptop 16"" Intel i5-1235U 8GB 512GB SSD Windows 11 Home, X1605ZA-DB51-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",616.55,"{'GPU': 'Intel UHD Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '16""'}","{'Brand': 'ASUS', 'Model': 'Vivobook 16X', 'Model Code': 'X1605ZA-DB51-CA', 'CPU': 'Intel i5-1235U', 'RAM': '8GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '16""'}" -247631,LPACE00984OB,"ACER Aspire 3 Consumer Laptop 15.6"" FHD Intel i5-1235U 16GB 512GB SSD Windows 11 Home, A315-59-59UU(Open Box)",ACER,"['Laptops, Tablet', None, None, None]",664.05,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}","{'Brand': 'ACER', 'Model': 'Aspire 3', 'Model Code': 'A315-59-59UU', 'CPU': 'Intel i5-1235U', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -247443,LPGIG00162OB,"GIGABYTE G5 KF Gaming Laptop 15.6"" FHD 144Hz Intel i7-12650H GeForce RTX 4060 16GB 512GB SSD Windows 11 Home, G5 KF5-G3US353SH(Open Box)",GIGABYTE,"['Laptops, Tablet', None, None, None]",989.1,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}","{'Brand': 'GIGABYTE', 'Model': 'G5 KF', 'Model Code': 'G5 KF5-G3US353SH', 'CPU': 'Intel i7-12650H', 'GPU': 'GeForce RTX 4060', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD', 'Refresh Rate': '144Hz'}" -247381,LPMSI00593OB,"MSI Katana 17 Gaming Laptop 17.3"" 144Hz Intel i7-13620H GeForce RTX 4070 16GB 1TB SSD Windows 11 Home, Katana 17 B13VGK-645CA(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",1619.1,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '17.3""'}","{'Brand': 'MSI', 'Model': 'Katana 17', 'Model Code': 'B13VGK-645CA', 'CPU': 'Intel i7-13620H', 'GPU': 'GeForce RTX 4070', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '17.3""', 'Refresh Rate': '144Hz'}" -247266,LPHEW02100OB,"HP 15-fd0030ca Consumer Laptop 15.6"" FHD Intel i5-1340P 16GB 512GB SSD Windows 11 Home, 8M5P0UA#ABL(Open Box)",HP,"['Laptops, Tablet', None, None, None]",664.05,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}","{'Brand': 'HP', 'Model': '15-fd0030ca', 'Model Code': '8M5P0UA#ABL', 'CPU': 'Intel i5-1340P', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -247121,LPLEN03429OB,"Lenovo IdeaPad Slim 3 Consumer Notebook 15.6"" FHD AMD Ryzen 5 7520U AMD Radeon 610M Graphics 8GB 512GB SSD Windows 11 Home, 82XQ007VCC(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",522.49,"{'GPU': 'AMD Radeon 610M Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '15.6""'}","{'Brand': 'Lenovo', 'Model': 'IdeaPad Slim 3', 'Model Code': '82XQ007VCC', 'CPU': 'AMD Ryzen 5 7520U', 'GPU': 'AMD Radeon 610M', 'RAM': '8GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -247031,LPLEN03569OB,"Lenovo V14 Business Laptop 14"" FHD Ryzen 5 5500U 16GB 512GB SSD Windows 11 Pro, 83FG0004US(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",664.05,"{'GPU': 'AMD Radeon Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '16GB', 'Screen Size': '14""'}","{'Brand': 'Lenovo', 'Model': 'V14', 'Model Code': '83FG0004US', 'CPU': 'Ryzen 5 5500U', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Pro', 'Screen': '14""', 'Resolution': 'FHD'}" -247014,LPASU00581OB,"Asus ExpertBook B1 15.6"" Business Laptop FHD Intel i5-1135G7 8 GB 256 GB SSD Windows 11 Pro, 3YR Warranty, 1YR ADP(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",569.05,"{'General InformationManufacturer': 'ASUS Computer International', 'General InformationManufacturer Part Number': 'B1500CEAE-Q53WP-CB', 'General InformationManufacturer Website Address': 'http://www.asus.com', 'General InformationBrand Name': 'Asus', 'General InformationProduct Line': 'ExpertBook B1', 'General InformationProduct Series': 'B1500'}","{'Brand': 'Asus', 'Model': 'ExpertBook B1', 'Screen Size': '15.6""', 'Resolution': 'FHD', 'CPU': 'Intel i5-1135G7', 'RAM': '8GB', 'Storage': '256GB SSD', 'OS': 'Windows 11 Pro', 'Warranty': '3 years', 'ADP': '1 year', 'Condition': 'Open Box'}" -246975,LPASU00810,"Asus Chromebook Flip C434 C434TA-Q1-CB 14"" Chromebook Intel m3-8100Y 4 GB RAM - 64GB Flash Memory - Black, Silver - Chrome OS",ASUS,"['Laptops, Tablet', None, None, None]",699.0,"{'General InformationManufacturer': 'ASUS Computer International', 'General InformationManufacturer Part Number': 'C434TA-Q1-CB', 'General InformationManufacturer Website Address': 'http://www.asus.com', 'General InformationBrand Name': 'Asus', 'General InformationProduct Line': 'Chromebook Flip', 'General InformationProduct Series': 'C434'}","{'Brand': 'Asus', 'Model': 'Chromebook Flip C434', 'Model Code': 'C434TA-Q1-CB', 'Screen': '14""', 'CPU': 'Intel m3-8100Y', 'RAM': '4 GB', 'Storage': '64GB Flash Memory', 'Colors': 'Black, Silver', 'OS': 'Chrome OS'}" -246824,LPHEW02099OB,"HP 17-cn3020ca Consumer Laptop 17.3"" FHD Intel i5-1335U 16GB 512GB SSD Windows 11 Home, 8N3T7UA#ABL(Open Box)",HP,"['Laptops, Tablet', None, None, None]",759.05,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '17.3""'}","{'Brand': 'HP', 'Model': '17-cn3020ca', 'Model Code': '8N3T7UA#ABL', 'CPU': 'Intel i5-1335U', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '17.3""', 'Resolution': 'FHD'}" -246745,LPLEN02397OB,"Lenovo ThinkPad X1 Carbon Gen 9 14"" WUXGA Ultrabook, Intel i5 i5-1135G7, 8GB, 256GB SSD, Windows 10 Pro, Intel Iris Xe Graphics, 20XW004QUS(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",949.89,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '20XW004QUS', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'ThinkPad', 'General InformationProduct Series': 'X1 Carbon Gen 9'}","{'Brand': 'Lenovo', 'Series': 'ThinkPad X1 Carbon Gen 9', 'Screen Size': '14""', 'Resolution': 'WUXGA', 'CPU': 'Intel i5-1135G7', 'RAM': '8GB', 'Storage': '256GB SSD', 'OS': 'Windows 10 Pro', 'GPU': 'Intel Iris Xe Graphics', 'Model Code': '20XW004QUS', 'Condition': 'Open Box'}" -246671,LPLEN03567OB,"LENOVO ThinkPad X1 Gen 3 Business Laptop 13"" Detachable (2 in 1) QHD Intel i7-8550U 16GB 256GB SSD Windows 11 Pro Refurbished(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",359.1,"{'GPU': 'Intel UHD Graphics 620', 'Maximum Resolution': '3000 x 2000', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Pro', 'Memory': '16GB', 'Screen Size': '13""'}","{'Brand': 'LENOVO', 'Model': 'ThinkPad X1 Gen 3', 'Model Code': 'N/A', 'CPU': 'Intel i7-8550U', 'GPU': 'N/A', 'RAM': '16GB', 'Storage': '256GB SSD', 'OS': 'Windows 11 Pro', 'Type': 'Business Laptop', 'Screen': '13"" Detachable (2 in 1)', 'Resolution': 'QHD', 'Condition': 'Refurbished (Open Box)'}" -246664,LPLEN03564OB,"LENOVO ThinkPad X1 Business Notebook 13.3"" Detachable (2 in 1) QHD Intel i7-8650U 16GB 256GB SSD Windows 10 Pro Refurbished(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",494.1,"{'GPU': 'Intel UHD Graphics 620', 'Maximum Resolution': '3000 x 2000', 'Touch Screen': 'Yes', 'Operating System': 'Windows 10 Pro', 'Memory': '16GB', 'Screen Size': '13.3""'}","{'Brand': 'LENOVO', 'Model': 'ThinkPad X1', 'Type': 'Business Notebook / 2 in 1 (Detachable)', 'Screen Size': '13.3""', 'Resolution': 'QHD', 'CPU': 'Intel i7-8650U', 'RAM': '16GB', 'Storage': '256GB SSD', 'OS': 'Windows 10 Pro', 'Condition': 'Refurbished (Open Box)'}" -246169,LPGIG00164,"GIGABYTE AORUS 17X Gaming Laptop 17.3"" 240Hz QHD Intel i9-13980HX GeForce RTX 4080 16GB 1 TB SSD Windows 11 Pro",GIGABYTE,"['Laptops, Tablet', None, None, None]",3599.0,"{'GPU': 'GeForce RTX 4080', 'Maximum Resolution': '2560 x 1440', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '16GB', 'Screen Size': '17.3""'}","{'Brand': 'GIGABYTE', 'Model': 'AORUS 17X', 'CPU': 'Intel i9-13980HX', 'GPU': 'GeForce RTX 4080', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Pro', 'Screen': '17.3""', 'Resolution': 'QHD', 'Refresh Rate': '240Hz'}" -246098,LPLEN03559OB,"LENOVO ThinkPad T590 Business Laptop 15.6"" FHD Intel i5-8365U Intel UHD Graphics 620 16GB 512GB SSD Windows 10 Pro Refurbished(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",449.1,"{'GPU': 'Intel UHD Graphics 620', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 10 Pro', 'Memory': '16GB', 'Screen Size': '15.6""'}","{'Brand': 'LENOVO', 'Series': 'ThinkPad T590', 'Type': 'Business Laptop', 'Screen Size': '15.6""', 'Resolution': 'FHD', 'CPU': 'Intel i5-8365U', 'GPU': 'Intel UHD Graphics 620', 'RAM': '16GB', 'Storage': '512GB SSD', 'Operating System': 'Windows 10 Pro', 'Condition': 'Refurbished (Open Box)'}" -246030,LPLEN03390OB,"LENOVO ThinkPad T14 G3 Business Laptop 14"" Touchscreen Ryzen 5 Pro 6650U AMD Radeon 660M 16GB 256GB SSD Windows 10 Pro, 21CF000CUS(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",759.05,"{'GPU': 'AMD Radeon 660M', 'Maximum Resolution': '1920 x 1200', 'Touch Screen': 'Yes', 'Operating System': 'Windows 10 Pro', 'Memory': '16GB', 'Screen Size': '14""'}","{'Brand': 'LENOVO', 'Model': 'ThinkPad T14 G3', 'Model Code': '21CF000CUS', 'CPU': 'Ryzen 5 Pro 6650U', 'GPU': 'AMD Radeon 660M', 'RAM': '16GB', 'Storage': '256GB SSD', 'OS': 'Windows 10 Pro', 'Screen': '14""', 'Touchscreen': 'Yes'}" -246003,LPHUA00042OB,"HUAWEI Matebook D14 Consumer Laptop 14"" Intel i7-1360P 16GB 1TB SSD Windows 11 Home, 53013VBB(Open Box)",HUAWEI,"['Laptops, Tablet', None, None, None]",949.05,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1200', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '14""'}","{'Brand': 'HUAWEI', 'Model': 'Matebook D14', 'Model Code': '53013VBB', 'CPU': 'Intel i7-1360P', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '14""'}" -245995,LPHEW01946OB,"HP ProBook 450 G9 15.6"" Business Notebook Intel i5-1235U 16 GB 256 GB SSD, Windows 11 Pro(Open Box)",HP,"['Laptops, Tablet', None, None, None]",854.05,"{'General InformationManufacturer': 'HP Inc.', 'General InformationManufacturer Part Number': '687P0UT#ABA', 'General InformationManufacturer Website Address': 'http://www.hp.com', 'General InformationBrand Name': 'HP', 'General InformationProduct Line': 'ProBook', 'General InformationProduct Series': '450 G9'}","{'Brand': 'HP', 'Series': 'ProBook 450 G9', 'Screen Size': '15.6""', 'CPU': 'Intel i5-1235U', 'RAM': '16GB', 'Storage': '256GB SSD', 'Operating System': 'Windows 11 Pro', 'Condition': 'Open Box'}" -245861,LPGIG00152OB,"Gigabyte AORUS 15 Gaming Notebook 15.6"" QHD Intel Core i7-13700H GeForce RTX 4060 16GB 1TB SSD Windows 11 Home, BKF-73US754SH(Open Box)",GIGABYTE,"['Laptops, Tablet', None, None, None]",1439.1,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '2560 x 1440', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}","{'Brand': 'Gigabyte', 'Model': 'AORUS 15', 'Model Code': 'BKF-73US754SH', 'CPU': 'Intel Core i7-13700H', 'GPU': 'GeForce RTX 4060', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'QHD'}" -245833,LPLEN03403OB,"LENOVO T480s Business Notebook 14"" FHD Intel i7-8550U Intel UHD Graphics 620 24GB 256GB SSD Windows 10 Pro Refurbished(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",394.15999755859,"{'Refresh Rate': '60Hz', 'GPU': 'Intel UHD Graphics 620', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 10 Pro', 'Memory': '24GB'}","{'Brand': 'Lenovo', 'Model': 'T480s', 'CPU': 'Intel i7-8550U', 'GPU': 'Intel UHD Graphics 620', 'RAM': '24GB', 'Storage': '256GB SSD', 'OS': 'Windows 10 Pro', 'Screen': '14""', 'Resolution': 'FHD', 'Condition': 'Refurbished (Open Box)'}" -245787,LPLEN03568,"Lenovo V14 Business Laptop 14"" FHD Intel i7-1255U 16GB 512GB SSD Windows 11 Pro, 82TS00JGUS",LENOVO,"['Laptops, Tablet', None, None, None]",999.0,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '16GB', 'Screen Size': '14""'}","{'Brand': 'Lenovo', 'Model': 'V14', 'Model Code': '82TS00JGUS', 'CPU': 'Intel i7-1255U', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Pro', 'Screen': '14""', 'Resolution': 'FHD'}" -245737,LPHEW02095OB,"HP Victus 15-fb1010ca Gaming Laptop 15.6"" AMD Ryzen 5 7535HS GeForce RTX 2050 8GB 512GB SSD Windows 11 Home, 8G9J1UA#ABL(Open Box)",HP,"['Laptops, Tablet', None, None, None]",629.1,"{'GPU': 'GeForce RTX 2050', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '15.6""'}","{'Brand': 'HP', 'Model': 'Victus 15-fb1010ca', 'Model Code': '8G9J1UA#ABL', 'CPU': 'AMD Ryzen 5 7535HS', 'GPU': 'GeForce RTX 2050', 'RAM': '8GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""'}" -245729,LPLEN01849OB,"Lenovo ThinkPad X1 Nano EVO 13"" Ultrabook, Intel Core i7 i7-1160G7, 16GB, 512GB SSD, Windows 10 Pro, 20UN000EUS(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",1234.05,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '20UN000EUS', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'ThinkPad', 'General InformationProduct Series': 'X1 Nano Gen1'}","{'Brand': 'Lenovo', 'Model': 'ThinkPad X1 Nano EVO', 'Model Code': '20UN000EUS', 'CPU': 'Intel Core i7-1160G7', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 10 Pro', 'Screen': '13""'}" -245728,LPLEN03502OB,"LENOVO IdeaPad Slim 3 Consumer Laptop 15.6"" AMD Ryzen 5 7520U 16GB 512GB SSD Windows 11 Home, 82XQ00BECC(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",664.05,"{'GPU': 'AMD Radeon 610M', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}","{'Brand': 'LENOVO', 'Model': 'IdeaPad Slim 3', 'Model Code': '82XQ00BECC', 'CPU': 'AMD Ryzen 5 7520U', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""'}" -245727,LPLEN03552OB,"LENOVO X1 Yoga G4 Business Notebook 14"" FHD Intel i5-8265U 16GB 512GB SSD Windows 10 Pro, Pen Included, Refurbished(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",449.1,"{'GPU': 'Intel UHD Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'Yes', 'Operating System': 'Windows 10 Pro', 'Memory': '16GB', 'Screen Size': '14""'}","{'Brand': 'Lenovo', 'Model': 'X1 Yoga G4', 'Screen Size': '14""', 'Resolution': 'FHD', 'CPU': 'Intel i5-8265U', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 10 Pro', 'Included Accessories': 'Pen', 'Condition': 'Refurbished (Open Box)'}" -245695,LPASU00779OB,"ASUS Zenbook 14X OLED Consumer Notebook 14"" Intel i7-12700H Intel Iris Xe 16GB 1TB SSD Windows 11 Home, UX5401ZA-DB71-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",1234.05,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '2880 X 1800', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '14""'}","{'Brand': 'ASUS', 'Model': 'Zenbook 14X OLED', 'Model Code': 'UX5401ZA-DB71-CA', 'CPU': 'Intel i7-12700H', 'GPU': 'Intel Iris Xe', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '14""'}" -245534,LPMSI00580OB,"MSI Pulse 17 Gaming Notebook 17.3"" Intel i9-13900H GeForce RTX 4070 16GB 1TB SSD Windows 11 Home, B13VGK-619CA(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",1799.1,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '17.3""'}","{'Brand': 'MSI', 'Model': 'Pulse 17', 'Model Code': 'B13VGK-619CA', 'CPU': 'Intel i9-13900H', 'GPU': 'GeForce RTX 4070', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '17.3""'}" -245476,LPMSI00575OB,"MSI Modern 15 Consumer Laptop 15.6"" FHD Intel i7-1255U Intel Iris Xe 16GB 512GB SSD Windows 11 Home(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",664.05,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}","{'Brand': 'MSI', 'Model': 'Modern 15', 'CPU': 'Intel i7-1255U', 'GPU': 'Intel Iris Xe', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -245456,LPMSI00592,"MSI Stealth 14Studio Gaming Laptop 14"" 165Hz Intel i7-13620H GeForce RTX 3050 16GB 512GB SSD Windows 11 Home, A13UDX-099CA",MSI,"['Laptops, Tablet', None, None, None]",1699.0,"{'GPU': 'GeForce RTX 3050', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '14""'}","{'Brand': 'MSI', 'Model': 'Stealth 14Studio', 'Model Code': 'A13UDX-099CA', 'CPU': 'Intel i7-13620H', 'GPU': 'GeForce RTX 3050', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '14""', 'Refresh Rate': '165Hz'}" -245448,LPMSI00565OB,"MSI Bravo 15 Gaming Notebook 15.6"" AMD Ryzen 7 7735HS GeForce RTX 4050 16GB 1TB SSD Windows 11 Home, C7VEK-058CA(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",1439.1,"{'GPU': 'GeForce RTX 4050', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}","{'Brand': 'MSI', 'Model': 'Bravo 15', 'Model Code': 'C7VEK-058CA', 'CPU': 'AMD Ryzen 7 7735HS', 'GPU': 'GeForce RTX 4050', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""'}" -245439,LPGIG00163,"GIGABYTE AORUS 17X Gaming Notebook 17.3"" QHD 240Hz Intel i9-13980HX GeForce RTX 4090 32GB 2TB SSD Windows 11 Pro, AORUS 17X AZF-D5US665SH",GIGABYTE,"['Laptops, Tablet', None, None, None]",4699.0,"{'GPU': 'GeForce RTX 4090', 'Maximum Resolution': '2560 x 1440', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '32GB', 'Screen Size': '17.3""'}","{'Brand': 'GIGABYTE', 'Model': 'AORUS 17X', 'Model Code': 'AZF-D5US665SH', 'CPU': 'Intel i9-13980HX', 'GPU': 'GeForce RTX 4090', 'RAM': '32GB', 'Storage': '2TB SSD', 'OS': 'Windows 11 Pro', 'Screen': '17.3""', 'Resolution': 'QHD', 'Refresh Rate': '240Hz'}" -245338,LPACE00985OB,"Acer Swift 3 EVO 14"" Laptop FHD Intel i5-1240P 16GB 512GB SSD Windows 11 Home,(Open Box)",ACER,"['Laptops, Tablet', None, None, None]",664.05,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '14""'}","{'Brand': 'Acer', 'Model': 'Swift 3 EVO', 'Screen': '14""', 'Resolution': 'FHD', 'CPU': 'Intel i5-1240P', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Condition': 'Open Box'}" -245275,LPLEN03042OB,"Lenovo ThinkBook 15 G4 15.6"" Touchscreen Notebook, FHD, Intel Core i7-1255U, 16GB RAM, 512GB SSD, Mineral Gray, Fingerprint Reader, Backlit Keyboard, Windows 11 Pro(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",1234.05,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '21DJ000VUS', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'ThinkBook', 'General InformationProduct Series': '15 G4 IAP'}","{'Brand': 'Lenovo', 'Model': 'ThinkBook 15 G4', 'Screen': '15.6"" Touchscreen', 'Resolution': 'FHD', 'CPU': 'Intel Core i7-1255U', 'RAM': '16GB', 'Storage': '512GB SSD', 'Color': 'Mineral Gray', 'Special Features': 'Fingerprint Reader, Backlit Keyboard', 'OS': 'Windows 11 Pro'}" -245239,LPCNO00061OB,"ASUS Vivobook F Series Laptop 15.6"" FHD Intel i5-1135G7 8GB 256GB SSD Windows 11 Home, F1500EA-WB51(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",568.05999832153,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '15.6""'}","{'Brand': 'ASUS', 'Series': 'Vivobook F Series', 'Model': 'F1500EA-WB51', 'CPU': 'Intel i5-1135G7', 'RAM': '8GB', 'Storage': '256GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -245230,LPHEW02083OB,"HP EliteBook 640 G9 Business Notebook 14"" Intel i5-1245U 16GB 512GB SSD Windows 11 Pro, 6C0Z2UT#ABL(Open Box)",HP,"['Laptops, Tablet', None, None, None]",1136.1600006104,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '16GB', 'Screen Size': '14""'}","{'Brand': 'HP', 'Model': 'EliteBook 640 G9', 'Model Code': '6C0Z2UT#ABL', 'CPU': 'Intel i5-1245U', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Pro', 'Screen': '14""'}" -245229,LPLEN02154OB,"LENOVO ThinkPad T14s G2 Business Notebook 14"" Intel i5-1135G7 8 GB 256GB SSD Windows 10 Pro, 20WM0085US(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",664.05,"{'Manufacturer': 'Lenovo Group Limited', 'Storage Type': 'SSD', 'CPU Brand': 'Intel', 'Product Condition': '.', 'Product Condition Short': '.', 'Screen Resolution Description': 'FHD'}","{'Brand': 'LENOVO', 'Series': 'ThinkPad T14s G2', 'Model': '20WM0085US', 'CPU': 'Intel i5-1135G7', 'RAM': '8 GB', 'Storage': '256GB SSD', 'OS': 'Windows 10 Pro', 'Screen': '14""'}" -245185,LPACE00980OB,"ACER Nitro 5 Gaming Laptop 15.6"" 144Hz AMD Ryzen 7 5800H GeForce RTX 3060 16GB 512GB SSD Windows 11 Home(Open Box)",ACER,"['Laptops, Tablet', None, None, None]",899.1,"{'GPU': 'GeForce RTX 3060', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}","{'Brand': 'ACER', 'Model': 'Nitro 5', 'CPU': 'AMD Ryzen 7 5800H', 'GPU': 'GeForce RTX 3060', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Refresh Rate': '144Hz'}" -245105,LPDYA00033,"Dynabook Tecra Business Notebook 15.6"" FHD Intel i7-1260P 16GB 256GB SSD Windows 10 Pro, PML20C-0WR03D",Dynabook,"['Laptops, Tablet', None, None, None]",1749.0,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'Yes', 'Operating System': 'Windows 10 Pro', 'Memory': '16GB', 'Screen Size': '15.6""'}","{'Brand': 'Dynabook', 'Model': 'Tecra', 'Model Code': 'PML20C-0WR03D', 'CPU': 'Intel i7-1260P', 'RAM': '16GB', 'Storage': '256GB SSD', 'OS': 'Windows 10 Pro', 'Screen': '15.6""', 'Resolution': 'FHD'}" -245100,LPDYA00029,"Dynabook Tecra Business Notebook 14"" FHD Intel i7-1260P 16GB 256GB SSD Windows 10 Pro, PMM20C-15702V",Dynabook,"['Laptops, Tablet', None, None, None]",1749.99,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '16GB', 'Screen Size': '14""'}","{'Brand': 'Dynabook', 'Model': 'Tecra', 'Model Code': 'PMM20C-15702V', 'CPU': 'Intel i7-1260P', 'RAM': '16GB', 'Storage': '256GB SSD', 'OS': 'Windows 10 Pro', 'Screen': '14""', 'Resolution': 'FHD'}" -245098,LPDYA00028,"Dynabook Tecra Business Notebook 14"" FHD Intel i5-1240P 16GB 256GB SSD Windows 11 Pro, PMM20C-15602V",Dynabook,"['Laptops, Tablet', None, None, None]",1599.0,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '16GB', 'Screen Size': '14""'}","{'Brand': 'Dynabook', 'Model': 'Tecra', 'Screen': '14""', 'Resolution': 'FHD', 'CPU': 'Intel i5-1240P', 'RAM': '16GB', 'Storage': '256GB SSD', 'OS': 'Windows 11 Pro', 'Model Code': 'PMM20C-15602V'}" -245038,LPLEN03493OB,"LENOVO Thinkbook T490 Business Laptop 14"" Intel i5-8365U 16GB 256GB SSD Windows 10 Pro Refurbished(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",359.1,"{'GPU': 'Intel UHD Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 10 Pro', 'Memory': '16GB', 'Screen Size': '14""'}","{'Brand': 'LENOVO', 'Model': 'Thinkbook T490', 'CPU': 'Intel i5-8365U', 'RAM': '16GB', 'Storage': '256GB SSD', 'OS': 'Windows 10 Pro', 'Screen': '14""', 'Condition': 'Refurbished (Open Box)'}" -244914,LPACE00968OB,"Acer Nitro 5 Gaming Laptop 15.6"" FHD Intel i5-12450H GeForce RTX 4060 16GB 512GB SSD Windows 11 Home, NH.QM0AA.004(Open Box)",ACER,"['Laptops, Tablet', None, None, None]",989.1,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}","{'Brand': 'Acer', 'Model': 'Nitro 5', 'Model Code': 'NH.QM0AA.004', 'CPU': 'Intel i5-12450H', 'GPU': 'GeForce RTX 4060', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -244865,LPHEW02087OB,"HP Victus 15-fb0000ca Gaming Laptop 15.6"" 144Hz AMD Ryzen 5 5600H GeForce RTX 3050 Ti 16GB 512GB SSD Windows 11 Home, 89A37UA#ABL(Open Box)",HP,"['Laptops, Tablet', None, None, None]",764.1,"{'GPU': 'GeForce RTX 3050 Ti', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}","{'Brand': 'HP', 'Model': 'Victus 15-fb0000ca', 'Model Code': '89A37UA#ABL', 'CPU': 'AMD Ryzen 5 5600H', 'GPU': 'GeForce RTX 3050 Ti', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Refresh Rate': '144Hz'}" -244863,LPLGE00033OB,"LG Gram EVO Consumer Notebook 17"" WQXGA Intel i7-1360P Intel Iris Xe 16GB 512GB SSD Windows 11 Home,17Z90R-K.AA75A9(Open Box)",LG,"['Laptops, Tablet', None, None, None]",1519.05,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '17""'}","{'Brand': 'LG', 'Model': 'Gram EVO', 'Model Code': '17Z90R-K.AA75A9', 'CPU': 'Intel i7-1360P', 'GPU': 'Intel Iris Xe', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '17""', 'Resolution': 'WQXGA'}" -244859,LPASU00763OB,"ASUS Vivobook S 16 Flip Consumer Notebook 16"" WUXGA Intel i5-1335U Intel HD Graphics 16GB 512GB SSD Windows 11 Home, TP3604VA-DS51T-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",901.55,"{'Refresh Rate': '60Hz', 'GPU': 'Intel HD Graphics', 'Maximum Resolution': '1920 x 1200', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Home', 'Memory': '16GB'}","{'Brand': 'ASUS', 'Model': 'Vivobook S 16 Flip', 'Model Code': 'TP3604VA-DS51T-CA', 'CPU': 'Intel i5-1335U', 'GPU': 'Intel HD Graphics', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '16""', 'Resolution': 'WUXGA', 'Form factor': 'Notebook'}" -244840,LPACE00981OB,"ACER Aspire 5 Consumer Laptop 15.6"" AMD Ryzen 3 5300U 8GB 256GB SSD Windows 11 S, A515-45-R4RP(Open Box)",ACER,"['Laptops, Tablet', None, None, None]",426.55,"{'GPU': 'AMD Radeon Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 S', 'Memory': '8GB', 'Screen Size': '15.6""'}","{'Brand': 'ACER', 'Model': 'Aspire 5', 'Model Code': 'A515-45-R4RP', 'CPU': 'AMD Ryzen 3 5300U', 'RAM': '8GB', 'Storage': '256GB SSD', 'OS': 'Windows 11 S', 'Screen': '15.6""'}" -244669,LPASU00784OB,"ASUS Vivobook 15 OLED Consumer Laptop 15.6"" AMD Ryzen 7 7730U 16GB 512GB SSD Windows 11 Home, M1505YA-DB71-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",806.55,"{'GPU': 'AMD Radeon Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}","{'Brand': 'ASUS', 'Model': 'Vivobook 15', 'Model Code': 'M1505YA-DB71-CA', 'CPU': 'AMD Ryzen 7 7730U', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6"" OLED'}" -244668,LPHEW01822OB,"HP ProBook 450 G9 15.6"" Business Notebook Intel i7-1255U 16GB 512GB SSD Windows 10 Pro, 687P3UT#ABA(Open Box)",HP,"['Laptops, Tablet', None, None, None]",949.05,"{'General InformationManufacturer': 'HP Inc.', 'General InformationManufacturer Part Number': '687P3UT#ABA', 'General InformationManufacturer Website Address': 'http://www.hp.com', 'General InformationBrand Name': 'HP', 'General InformationProduct Line': 'ProBook', 'General InformationProduct Series': '450 G9'}","{'Brand': 'HP', 'Model': 'ProBook 450 G9', 'Model Code': '687P3UT#ABA', 'CPU': 'Intel i7-1255U', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 10 Pro', 'Screen': '15.6""'}" -244664,LPLEN03428OB,"Lenovo IdeaPad Slim 3 Consumer Notebook 15.6"" FHD AMD Ryzen 3 7320U AMD Radeon 610M Graphics 8GB 512GB SSD Windows 11 Home,82XQ007UCC(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",474.99,"{'GPU': 'AMD Radeon 610M Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '15.6""'}","{'Brand': 'Lenovo', 'Model': 'IdeaPad Slim 3', 'Model Code': '82XQ007UCC', 'CPU': 'AMD Ryzen 3 7320U', 'GPU': 'AMD Radeon 610M Graphics', 'RAM': '8GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -244660,LPHEW01967OB,"HP ProBook 440 G9 14"" Business Laptop Intel i5-1235U 16 GB 256 GB SSD, Windows 11 Pro(Open Box)",HP,"['Laptops, Tablet', None, None, None]",711.55,"{'General InformationManufacturer': 'HP Inc.', 'General InformationManufacturer Part Number': '6J8Q6UT#ABA', 'GPU': 'Intel Iris Xe', 'General InformationManufacturer Website Address': 'http://www.hp.com', 'Maximum Resolution': '1920 x 1080', 'General InformationBrand Name': 'HP'}","{'Brand': 'HP', 'Model': 'ProBook 440 G9', 'Screen': '14""', 'CPU': 'Intel i5-1235U', 'RAM': '16GB', 'Storage': '256GB SSD', 'OS': 'Windows 11 Pro'}" -244488,LPASU00764OB,"ASUS Zenbook 15 OLED Consumer Notebook 15.6"" OLED AMD Ryzen 7 7735U AMD Radeon Graphics 16GB 1TB SSD Windows 11 Home, UM3504DA-DS71-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",1234.05,"{'GPU': 'AMD Radeon Graphics', 'Maximum Resolution': '2880 x 1620', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}","{'Brand': 'ASUS', 'Model': 'Zenbook 15 OLED', 'Model Code': 'UM3504DA-DS71-CA', 'CPU': 'AMD Ryzen 7 7735U', 'GPU': 'AMD Radeon Graphics', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6"" OLED'}" -244400,LPASU00785OB,"ASUS TUF Gaming Notebook 17.3"" 144Hz Intel i5-11400H GeForce RTX 2050 8GB 512GB SSD Windows 11 Home, FX706HF-DB51-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",719.1,"{'Memory': '8GB', 'Screen Size': '17.3""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '144Hz', 'SSD Capacity': '512GB'}","{'Brand': 'ASUS', 'Series': 'TUF Gaming', 'Model': 'FX706HF-DB51-CA', 'CPU': 'Intel i5-11400H', 'GPU': 'GeForce RTX 2050', 'RAM': '8GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '17.3""', 'Refresh Rate': '144Hz'}" -244340,LPLEN03546,"Lenovo ThinkPad E14 14"" Touchscreen Business Notebook Intel i7-1355U 16 GB 512 GB SSD Windows 11 Pro, 21JK0053US",LENOVO,"['Laptops, Tablet', None, None, None]",1599.0,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '21JK0053US', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'ThinkPad', 'General InformationProduct Series': 'E14 Gen 5'}","{'Brand': 'Lenovo', 'Series': 'ThinkPad', 'Model': 'E14', 'Model Code': '21JK0053US', 'CPU': 'Intel i7-1355U', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Pro', 'Screen': '14""', 'Touchscreen': 'Yes'}" -244334,LPLEN03544,"Lenovo ThinkPad E14 14"" Business Notebook Ryzen 5 7530U 16 GB 256 GB Windows 11 Pro, 21JR001RUS",LENOVO,"['Laptops, Tablet', None, None, None]",1173.65,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '21JR001RUS', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'ThinkPad', 'General InformationProduct Series': 'E14 Gen 5'}","{'Brand': 'Lenovo', 'Series': 'ThinkPad E14', 'Model': '21JR001RUS', 'Screen Size': '14""', 'CPU': 'Ryzen 5 7530U', 'RAM': '16 GB', 'Storage': '256 GB', 'OS': 'Windows 11 Pro'}" -244224,LPLEN00715OB,"Lenovo ThinkPad T490 14"" Notebook Intel i5-8365U FHD 16 GB RAM 256 GB SSD Windows 10 Pro (Refurbished)(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",359.1,"{'Manufacturer': 'Lenovo Group Limited', 'Manufacturer Part Number': '20N20043US', 'Manufacturer Website Address': 'http://www.lenovo.com/ca/en', 'Brand Name': 'Lenovo', 'Product Line': 'ThinkPad', 'Product Series': 'T490'}","{'Brand': 'Lenovo', 'Series': 'ThinkPad T490', 'Screen Size': '14""', 'CPU': 'Intel Core i5-8365U', 'Resolution': 'FHD', 'RAM': '16 GB', 'Storage': '256 GB SSD', 'OS': 'Windows 10 Pro', 'Condition': 'Refurbished (Open Box)'}" -244103,LPLEN03526,"Lenovo ThinkPad T14 14"" Business Notebook Intel i5-1335U 16 GB 512 GB Windows 11 Pro, 21HD0028CA",LENOVO,"['Laptops, Tablet', None, None, None]",2249.42,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '21HD0028CA', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationProduct Line': 'ThinkPad', 'General InformationProduct Series': 'T14 Gen 4', 'General InformationProduct Model': '21HD0028CA'}","{'Brand': 'Lenovo', 'Series': 'ThinkPad T14', 'Screen Size': '14""', 'CPU': 'Intel i5-1335U', 'RAM': '16GB', 'Storage': '512GB', 'OS': 'Windows 11 Pro', 'Model Code': '21HD0028CA'}" -244095,LPLEN03522,"Lenovo ThinkBook 15 G4 15.6"" Business Laptop AMD Ryzen 5 5625U 16 GB 256 GB Windows 11 Pro, 21DL000JUS",LENOVO,"['Laptops, Tablet', None, None, None]",1299.0,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '21DL000JUS', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'ThinkBook', 'General InformationProduct Series': '15 G4 ABA'}","{'Brand': 'Lenovo', 'Model': 'ThinkBook 15 G4', 'Model Code': '21DL000JUS', 'CPU': 'AMD Ryzen 5 5625U', 'RAM': '16GB', 'Storage': '256GB', 'OS': 'Windows 11 Pro', 'Screen': '15.6""'}" -244094,LPLEN03521,"Lenovo ThinkPad E16 16"" Business Notebook AMD Ryzen 5 7530U 16 GB 256 GB SSD Windows 11 Pro, 21JT001BUS",LENOVO,"['Laptops, Tablet', None, None, None]",1099.0,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '21JT001BUS', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'ThinkPad', 'General InformationProduct Series': 'E16 Gen 1'}","{'Brand': 'Lenovo', 'Series': 'ThinkPad E16', 'Screen Size': '16""', 'CPU': 'AMD Ryzen 5 7530U', 'RAM': '16GB', 'Storage': '256GB SSD', 'OS': 'Windows 11 Pro', 'Model Number': '21JT001BUS'}" -243984,LPHEW02090,"HP ProBook 440 Business Notebook 14"" FHD Intel i7-1355U 16GB 512GB SSD Windows 11 Pro, 822P8UT#ABA",HP,"['Laptops, Tablet', None, None, None]",1799.0,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '16GB', 'Screen Size': '14""'}","{'Brand': 'HP', 'Model': 'ProBook 440', 'Model Code': '822P8UT#ABA', 'CPU': 'Intel i7-1355U', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Pro', 'Screen': '14""', 'Resolution': 'FHD'}" -243895,LPMSI00577OB,"MSI Prestige 13 Evo Business Notebook 13.3"" Intel i7-1360P 32GB 1TB SSD Windows 11 Pro(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",1604.55,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1200', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '32GB', 'Screen Size': '13.3""'}","{'Brand': 'MSI', 'Model': 'Prestige 13 Evo', 'CPU': 'Intel i7-1360P', 'RAM': '32GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Pro', 'Screen': '13.3""'}" -243883,LPLEN03432OB,"LENOVO IdeaPad Flex 5 Consumer Notebook 16"" Touchscreen AMD Ryzen 5 7530U 16GB 512GB SSD Windows 11 Home, 82XY005ACC(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",806.55,"{'GPU': 'AMD Radeon Graphics', 'Refresh Rate': '60Hz', 'Maximum Resolution': '1920 x 1200', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Home', 'Memory': '16GB'}","{'Brand': 'LENOVO', 'Model': 'IdeaPad Flex 5', 'Model Code': '82XY005ACC', 'CPU': 'AMD Ryzen 5 7530U', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '16""', 'Touchscreen': 'Yes'}" -243733,LPASU00783OB,"ASUS Zenbook 14 OLED Consumer Notebook 14"" QHD AMD Ryzen 7 5825U 16GB 512GB SSD Windows 11 Home, UM3402YA-DB71T-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",834.93999938965,"{'GPU': 'AMD Radeon Graphics', 'Maximum Resolution': '2880 x 1800', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '14""'}","{'Brand': 'ASUS', 'Model': 'Zenbook 14 OLED', 'Model Code': 'UM3402YA-DB71T-CA', 'CPU': 'AMD Ryzen 7 5825U', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '14""', 'Resolution': 'QHD'}" -243732,LPASU00765OB,"ASUS Zenbook S 13 OLED EVO Laptop 13.3"" Intel i7-1355U 16GB 1TB SSD Windows 11 Home, UX5304VA-DS71-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",1234.05,"{'GPU': 'Intel Iris Xe', 'Refresh Rate': '60Hz', 'Maximum Resolution': '2880 x 1800', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB'}","{'Brand': 'ASUS', 'Model': 'Zenbook S 13 OLED EVO', 'Model Code': 'UX5304VA-DS71-CA', 'CPU': 'Intel i7-1355U', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '13.3""'}" -243639,LPASU00720OB,"ASUS ROG Strix G17 Gaming Notebook 17.3"" WQHD AMD Ryzen 9 7945HX RTX 4060 16GB 1TB SSD Windows 11 Home, G713PV-DS91-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",1799.1,"{'GPU': 'RTX\xa04060', 'Maximum Resolution': '2560X1440', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '17.3""'}","{'Brand': 'ASUS', 'Series': 'ROG Strix', 'Model': 'G17', 'Model Code': 'G713PV-DS91-CA', 'CPU': 'AMD Ryzen 9 7945HX', 'GPU': 'NVIDIA RTX 4060', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '17.3""', 'Resolution': 'WQHD'}" -243595,LPASU00770OB,"ASUS ROG Zephyrus G14 Gaming Notebook 14"" QHD AMD Ryzen 9 7940HS GeForce RTX 4080 16GB 1TB SSD Windows 11 Home, GA402XZ-CS94(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",2699.1,"{'GPU': 'GeForce RTX 4080', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '14""'}","{'Brand': 'ASUS', 'Series': 'ROG Zephyrus G14', 'Model': 'GA402XZ-CS94', 'CPU': 'AMD Ryzen 9 7940HS', 'GPU': 'GeForce RTX 4080', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '14""', 'Resolution': 'QHD'}" -243585,LPHEW02072OB,"HP ProBook 445 G9 Business Notebook 14"" AMD Ryzen 5 5625U 8GB 256GB SSD Windows 11 Pro, 64T29UT#ABL(Open Box)",HP,"['Laptops, Tablet', None, None, None]",569.05,"{'GPU': 'AMD Radeon Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '8GB', 'Screen Size': '14""'}","{'Brand': 'HP', 'Model': 'ProBook 445 G9', 'Model Code': '64T29UT#ABL', 'CPU': 'AMD Ryzen 5 5625U', 'RAM': '8GB', 'Storage': '256GB SSD', 'OS': 'Windows 11 Pro', 'Screen': '14""'}" -243494,LPHEW01833OB,"HP EliteBook 650 G9 15.6"" Business Notebook Intel i5-1245U 16 GB 256 GB SSD Windows 10 Professional, 6C0Z6UT#ABA(Open Box)",HP,"['Laptops, Tablet', None, None, None]",1048.7599990845,"{'General InformationManufacturer': 'HP Inc.', 'General InformationManufacturer Part Number': '6C0Z6UT#ABA', 'General InformationManufacturer Website Address': 'http://www.hp.com', 'General InformationBrand Name': 'HP', 'General InformationProduct Line': 'EliteBook', 'General InformationProduct Series': '650 G9'}","{'Brand': 'HP', 'Model': 'EliteBook 650 G9', 'Model Code': '6C0Z6UT#ABA', 'CPU': 'Intel i5-1245U', 'RAM': '16GB', 'Storage': '256GB SSD', 'OS': 'Windows 10 Professional', 'Screen': '15.6""'}" -243437,LPASU00760OB,"ASUS Vivobook 16X Gaming Laptop 16"" WUXGA Intel i9-13900H Geforce RTX 4050 16GB 512GB SSD Windows 11 Home, K3605VU-DS91-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",1529.1,"{'GPU': 'Geforce RTX 4050', 'Maximum Resolution': '1920 x 1200', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}","{'Brand': 'ASUS', 'Model': 'Vivobook 16X', 'Model Code': 'K3605VU-DS91-CA', 'CPU': 'Intel i9-13900H', 'GPU': 'Geforce RTX 4050', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '16""', 'Resolution': 'WUXGA'}" -243374,LPMSI00590,"MSI Modern 14 Consumer Notebook 14"" Intel i7-1355U 16GB 1TB SSD Windows 11 Home, C13M-621US",MSI,"['Laptops, Tablet', None, None, None]",1199.0,"{'Memory': '16GB', 'Screen Size': '14""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '1TB'}","{'Brand': 'MSI', 'Model': 'Modern 14', 'Model Code': 'C13M-621US', 'CPU': 'Intel i7-1355U', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '14""'}" -243338,LPASU00782OB,"ASUS Vivobook Go Consumer Notebook 15.6"" AMD Ryzen 3 7320U 8GB 128GB SSD Windows 11 S, E1504FA-DB31-CA-SL(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",426.55,"{'GPU': 'AMD Radeon Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 S', 'Memory': '8GB', 'Screen Size': '15.6""'}","{'Brand': 'ASUS', 'Model': 'Vivobook Go', 'Model Code': 'E1504FA-DB31-CA-SL', 'CPU': 'AMD Ryzen 3 7320U', 'RAM': '8GB', 'Storage': '128GB SSD', 'OS': 'Windows 11 S', 'Screen': '15.6""'}" -243313,LPHEW02023OB,"HP Consumer Notebook 14"" FHD AMD Ryzen 5 7520U AMD Radeon Graphics 8GB 512GB SSD Windows 11 Home, 14-em0040ca(Open Box)",HP,"['Laptops, Tablet', None, None, None]",569.05,"{'Memory': '8GB', 'Screen Size': '14""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': 'FHD', 'SSD Capacity': '512GB', 'CPU': 'Ryzen 5 7520U'}","{'Brand': 'HP', 'Model': 'Consumer Notebook', 'Model Code': '14-em0040ca', 'CPU': 'AMD Ryzen 5 7520U', 'GPU': 'AMD Radeon Graphics', 'RAM': '8GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '14""', 'Resolution': 'FHD'}" -243264,LPASU00780OB,"ASUS Zenbook Consumer Notebook 14"" UHD Touchscreen OLED Intel i7-12700H 16GB 1TB SSD Windows 11 Home, UP5401ZA-DB71T-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",1329.05,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '3840 x 2400', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '14""'}","{'Brand': 'ASUS', 'Model': 'Zenbook', 'Model Code': 'UP5401ZA-DB71T-CA', 'CPU': 'Intel i7-12700H', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '14""', 'Resolution': 'UHD (Ultra HD)', 'Touchscreen': 'Yes', 'Screen Technology': 'OLED'}" -243225,LPHEW02024OB,"HP Consumer Notebook 17.3"" FHD Intel i5-1335U Intel Iris Xe 8GB 1TB SSD Windows 11 Home, 17-cn3010ca(Open Box)",HP,"['Laptops, Tablet', None, None, None]",739.94001464844,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': 'FHD', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '17.3""'}","{'Brand': 'HP', 'Model': 'Consumer Notebook 17', 'Model Code': '17-cn3010ca', 'CPU': 'Intel i5-1335U', 'GPU': 'Intel Iris Xe', 'RAM': '8GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '17.3""', 'Resolution': 'FHD'}" -243158,LPCHP00003OB,"HP Elitebook 840 G3 Business Laptop 14"" Touchscreen Intel i5-6300U 16GB 256GB SSD Windows 10 Pro Refurbished(Open Box)",HP,"['Laptops, Tablet', None, None, None]",269.1,"{'GPU': 'Intel HD Graphics 520', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'Yes', 'Operating System': 'Windows 10 Pro', 'Memory': '16GB', 'Screen Size': '14""'}","{'Brand': 'HP', 'Model': 'Elitebook 840 G3', 'CPU': 'Intel i5-6300U', 'RAM': '16GB', 'Storage': '256GB SSD', 'OS': 'Windows 10 Pro', 'Screen': '14""', 'Touchscreen': 'Yes', 'Condition': 'Refurbished (Open Box)'}" -243148,LPMSI00589,"MSI Creator Z17HXStudio Gaming Notebook 17"" 165Hz QHD+ Intel i9-13950HX GeForce RTX 4060 32GB 1TB SSD Windows 11 Pro, A13VFT-093CA",MSI,"['Laptops, Tablet', None, None, None]",3399.0,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Pro', 'Memory': '32GB', 'Screen Size': '17""'}","{'Brand': 'MSI', 'Model': 'Creator Z17HXStudio', 'Model Code': 'A13VFT-093CA', 'CPU': 'Intel i9-13950HX', 'GPU': 'GeForce RTX 4060', 'RAM': '32GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Pro', 'Screen': '17""', 'Resolution': 'QHD+', 'Refresh Rate': '165Hz'}" -243120,LPMSI00588,"MSI Prestige 16EVO Business Notebook 16"" 165Hz QHD+ Intel i7-13700H 32GB 1TB SSD Windows 11 Pro, A13M-286CA",MSI,"['Laptops, Tablet', None, None, None]",1799.0,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '32GB', 'Screen Size': '16""'}","{'Brand': 'MSI', 'Model': 'Prestige 16EVO', 'Model Code': 'A13M-286CA', 'CPU': 'Intel i7-13700H', 'RAM': '32GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Pro', 'Screen': '16""', 'Resolution': 'QHD+', 'Refresh Rate': '165Hz'}" -243072,LPASU00715OB,"ASUS TUF F15 Gaming Laptop 15.6"" FHD Intel i9-13900H GeForce RTX 4060 16GB 1TB SSD Windows 11 Home, FX507VV-DS91-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",1349.1,"{'Refresh Rate': '144Hz', 'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB'}","{'Brand': 'ASUS', 'Model': 'TUF F15', 'Model Code': 'FX507VV-DS91-CA', 'CPU': 'Intel i9-13900H', 'GPU': 'GeForce RTX 4060', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -243071,LPMSI00572OB,"MSI Thin GF63 Gaming Laptop 15.6"" FHD Intel i5-12450H GeForce RTX 2050 8GB 512GB SSD Windows 11 Home(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",629.1,"{'GPU': 'GeForce RTX 2050', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '15.6""'}","{'Brand': 'MSI', 'Model': 'Thin GF63', 'CPU': 'Intel i5-12450H', 'GPU': 'GeForce RTX 2050', 'RAM': '8GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -243055,LPLEN03436OB,"Lenovo Legion Pro 5 Gaming Notebook 16"" WQXGA Intel i7-13700HX GeForce RTX 4070 16GB 1TB SSD Windows 11 Home, 82WK00H8CC(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",1979.1,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}","{'Brand': 'Lenovo', 'Model': 'Legion Pro 5', 'Model Code': '82WK00H8CC', 'CPU': 'Intel i7-13700HX', 'GPU': 'GeForce RTX 4070', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '16""', 'Resolution': 'WQXGA'}" -243048,LPLEN03495,"LENOVO ThinkPad X13 Yoga 2-in-1 Business Notebook 13.3"" Touchscreen Intel i5-10310U 16GB 256GB SSD Windows 10 Pro, 20SYS0C600",LENOVO,"['Laptops, Tablet', None, None, None]",1499.0,"{'GPU': 'Intel UHD Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'Yes', 'Operating System': 'Windows 10 Pro', 'Memory': '16GB', 'Screen Size': '13.3""'}","{'Brand': 'LENOVO', 'Model': 'ThinkPad X13 Yoga', 'Model Code': '20SYS0C600', 'Type': '2-in-1 Business Notebook', 'Screen': '13.3"" Touchscreen', 'CPU': 'Intel i5-10310U', 'RAM': '16GB', 'Storage': '256GB SSD', 'OS': 'Windows 10 Pro'}" -243000,LPMSI00562OB,"MSI Modern 15 Notebook 15.6"" FHD AMD Ryzen 7 7730U AMD Radeon Graphics 16GB 512GB SSD Windows 11 Home, B7M-097CA(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",664.05,"{'GPU': 'AMD Radeon Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}","{'Brand': 'MSI', 'Model': 'Modern 15', 'Model Code': 'B7M-097CA', 'CPU': 'AMD Ryzen 7 7730U', 'GPU': 'AMD Radeon Graphics', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -242733,LPLEN03442OB,"LENOVO IdeaPad Flex 5 Consumer Notebook 14"" Touchscreen AMD Ryzen 3 5300U 4GB 128GB SSD Windows 10 S, 82HU0159US(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",360.05,"{'GPU': 'AMD Radeon Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'Yes', 'Operating System': 'Windows 10 S', 'Memory': '4GB', 'Screen Size': '14""'}","{'Brand': 'LENOVO', 'Model': 'IdeaPad Flex 5', 'Model Code': '82HU0159US', 'Screen': '14"" Touchscreen', 'CPU': 'AMD Ryzen 3 5300U', 'RAM': '4GB', 'Storage': '128GB SSD', 'OS': 'Windows 10 S'}" -242699,LPASU00561OB,"ASUS ExpertBook B1 Business Notebook, 15.6"" FHD, Intel Core i5-1135G7, Intel Iris Xe Graphics G7, 8GB, 256GB SSD, Windows 10 Pro, 3YR Warranty, 1YR ADP(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",569.89,"{'Screen Size': '15.6""', 'Memory': '8GB', 'Operating System': 'Windows 10 Pro', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '256GB'}","{'Brand': 'ASUS', 'Model': 'ExpertBook B1', 'CPU': 'Intel Core i5-1135G7', 'GPU': 'Intel Iris Xe Graphics G7', 'RAM': '8GB', 'Storage': '256GB SSD', 'OS': 'Windows 10 Pro', 'Screen': '15.6""', 'Resolution': 'FHD', 'Warranty': '3 years', 'ADP': '1 year'}" -242686,LPMSI00587,"MSI CreatorPro M16 Gaming Notebook 16"" QHD Intel i7-13700H NVIDIA RTX A1000 32GB 1TB SSD Windows 11 Pro, B13VI-845US",MSI,"['Laptops, Tablet', None, None, None]",2399.0,"{'GPU': 'NVIDIA RTX A1000', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '32GB', 'Screen Size': '16""'}","{'Brand': 'MSI', 'Model': 'CreatorPro M16', 'Model Code': 'B13VI-845US', 'CPU': 'Intel i7-13700H', 'GPU': 'NVIDIA RTX A1000', 'RAM': '32GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Pro', 'Screen': '16""', 'Resolution': 'QHD'}" -242678,LPHEW02049OB,"HP EliteBook 840 G2 Business Notebook 14"" Touchscreen Core i5-5300U,16 GB DDR3, 256 GB SSD, Windows 10 Professional Refurbished(Open Box)",HP,"['Laptops, Tablet', None, None, None]",242.1,"{'Memory': '16GB', 'Storage Type': 'SSD', 'CPU Brand': 'Intel', 'Product Condition': 'Refurbished', 'Product Condition Short': 'Refurb', 'Screen Resolution Description': 'FHD'}","{'Brand': 'HP', 'Model': 'EliteBook 840 G2', 'Processor': 'Core i5-5300U', 'RAM': '16GB DDR3', 'Storage': '256GB SSD', 'Operating System': 'Windows 10 Professional', 'Screen Size': '14""', 'Touchscreen': 'Yes', 'Condition': 'Refurbished (Open Box)'}" -242676,LPMSI00586,"MSI CreatorPro Z16HXStudio Gaming Notebook 16"" Touchscreen QHD Intel i9-13950HX NVIDIA RTX A2000 ADA 32GB 1TB SSD Windows 11 Pro, B13VJTO-067US",MSI,"['Laptops, Tablet', None, None, None]",3799.0,"{'GPU': 'NVIDIA RTX A2000 ADA', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Pro', 'Memory': '32GB', 'Screen Size': '16""'}","{'Brand': 'MSI', 'Model': 'CreatorPro Z16HXStudio', 'Model Code': 'B13VJTO-067US', 'CPU': 'Intel i9-13950HX', 'GPU': 'NVIDIA RTX A2000', 'RAM': '32GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Pro', 'Screen': '16""', 'Touchscreen': 'Yes', 'Resolution': 'QHD'}" -242671,LPMSI00585,"MSI CreatorPro Z17HX Studio Gaming Notebook 17"" QHD Touchscreen Intel i9-13950HX NVIDIA RTX A3000 ADA 32GB 1TB Windows 11 Pro, A13VKT-077US",MSI,"['Laptops, Tablet', None, None, None]",3999.0,"{'GPU': 'NVIDIA RTX A3000 ADA', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Pro', 'Memory': '32GB', 'Screen Size': '17""'}","{'Brand': 'MSI', 'Model': 'CreatorPro Z17HX Studio', 'Model Code': 'A13VKT-077US', 'CPU': 'Intel i9-13950HX', 'GPU': 'NVIDIA RTX A3000', 'RAM': '32GB', 'Storage': '1TB', 'OS': 'Windows 11 Pro', 'Screen': '17""', 'Resolution': 'QHD', 'Touchscreen': 'Yes'}" -242664,LPMSI00584,"MSI Modern 15 Consumer Notebook 15.6"" Intel i7-1335U 16GB 1TB SSD Windows 11 Home, B13M-447US",MSI,"['Laptops, Tablet', None, None, None]",1199.0,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}","{'Brand': 'MSI', 'Model': 'Modern 15', 'Model Code': 'B13M-447US', 'CPU': 'Intel i7-1335U', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""'}" -242529,LPACE00967OB,"Acer Nitro 5 Gaming Laptop 15.6"" FHD Intel i9-12900H GeForce RTX 4060 16GB 1TB SSD Windows 11 Home, NH.QM0AA.003(Open Box)",ACER,"['Laptops, Tablet', None, None, None]",1169.1,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}","{'Brand': 'Acer', 'Model': 'Nitro 5', 'Model Code': 'NH.QM0AA.003', 'CPU': 'Intel i9-12900H', 'GPU': 'GeForce RTX 4060', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -242481,LPLEN03456OB,"Lenovo IdeaPad Consumer Notebook 14"" FHD Intel i5-1135G7 8GB 512GB SSD Windows 11 Home, 81X700FXUS(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",521.55,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '14""'}","{'Brand': 'Lenovo', 'Model': 'IdeaPad', 'Model Code': '81X700FXUS', 'CPU': 'Intel i5-1135G7', 'RAM': '8GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '14""', 'Resolution': 'FHD'}" -242396,LPLGE00031OB,"LG Gram EVO Consumer Notebook 15.6"" FHD Intel i7-1360P Intel Iris Xe 16GB 512GB SSD Windows 11 Home, 15Z90R-P.AA75A9(Open Box)",LG,"['Laptops, Tablet', None, None, None]",1519.99,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}","{'Brand': 'LG', 'Model': 'Gram EVO', 'Model Code': '15Z90R-P.AA75A9', 'CPU': 'Intel i7-1360P', 'GPU': 'Intel Iris Xe', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -242394,LPLEN00182OB,"Lenovo ThinkPad T480s 14"" Notebook, Intel Core i7-8550U, 16 GB, 256 GB SSD, Windows 10 Pro Refurbished(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",394.15999755859,"{'Maximum Resolution': '1080p Full HD', 'Refresh Rate': '60Hz', 'SSD Capacity': '256GB', 'CPU': 'i7-8550U', 'Hard Drive Capacity': 'None', 'Notebook Type': 'Business Notebook'}","{'Brand': 'Lenovo', 'Model': 'ThinkPad T480s', 'Screen': '14""', 'CPU': 'Intel Core i7-8550U', 'RAM': '16 GB', 'Storage': '256 GB SSD', 'OS': 'Windows 10 Pro', 'Condition': 'Refurbished (Open Box)'}" -242354,LPGIG00161,"GIGABYTE AORUS 15 Gaming Notebook 15.6"" 360Hz Intel i5-12500H GeForce RTX 4050 16GB 512GB SSD Windows 11 Home, 9MF-E2US583SH",GIGABYTE,"['Laptops, Tablet', None, None, None]",1499.0,"{'GPU': 'GeForce RTX 4050', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}","{'Brand': 'GIGABYTE', 'Series': 'AORUS 15', 'Model Code': '9MF-E2US583SH', 'CPU': 'Intel i5-12500H', 'GPU': 'GeForce RTX 4050', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Refresh Rate': '360Hz'}" -242348,LPMSI00583,"MSI Creator Z17HXStudio Gaming Notebook 17"" Touchscreen 165Hz QHD+ Intel i7-13700HX GeForce RTX 4050 32GB 1TB SSD Windows 11 Pro, A13VET-094CA",MSI,"['Laptops, Tablet', None, None, None]",2899.0,"{'GPU': 'GeForce RTX 4050', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Pro', 'Memory': '32GB', 'Screen Size': '17""'}","{'Brand': 'MSI', 'Series': 'Creator Z17HXStudio', 'Type': 'Gaming Notebook', 'Screen Size': '17""', 'Touchscreen': 'Yes', 'Resolution': 'QHD+', 'Refresh Rate': '165Hz', 'CPU': 'Intel i7-13700HX', 'GPU': 'GeForce RTX 4050', 'RAM': '32GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Pro', 'Model Code': 'A13VET-094CA'}" -242343,LPHEW01834OB,"HP EliteBook 640 G9 14"" Business Notebook Intel i5-1245U 16GB RAM 512GB SSD Windows 10 Pro, 6C0Z2UT#ABA(Open Box)",HP,"['Laptops, Tablet', None, None, None]",961.35999755859,"{'General InformationManufacturer': 'HP Inc.', 'General InformationManufacturer Part Number': '6C0Z2UT#ABA', 'GPU': 'Intel Iris Xe', 'General InformationManufacturer Website Address': 'http://www.hp.com', 'Maximum Resolution': '1080p Full HD', 'General InformationBrand Name': 'HP'}","{'Brand': 'HP', 'Model': 'EliteBook 640 G9', 'Model Code': '6C0Z2UT#ABA', 'CPU': 'Intel i5-1245U', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 10 Pro', 'Screen': '14""'}" -242342,LPMSI00536OB,"MSI Katana GF66 Gaming Notebook 15.6"" FHD Intel i7-12650H GeForce RTX 3050 Ti 16GB 512GB SSD Windows 11 Home, Katana GF66 12UD-878CA(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",1159.0899978638,"{'GPU': 'GeForce RTX 3050 Ti', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}","{'Brand': 'MSI', 'Model': 'Katana GF66', 'Model Code': '12UD-878CA', 'CPU': 'Intel i7-12650H', 'GPU': 'GeForce RTX 3050 Ti', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -242316,LPHEW02077,"HP OMEN 16-xf0000ca Gaming Notebook 16.1"" 240Hz QHD AMD Ryzen 9 7940HS GeForce RTX 4070 32GB 2TB SSD Windows 11 Home, 7X979UA#ABL",HP,"['Laptops, Tablet', None, None, None]",2499.0,"{'Memory': '32GB', 'Screen Size': '16.1""""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '2560 x 1440', 'Refresh Rate': '240Hz', 'SSD Capacity': '2TB'}","{'Brand': 'HP', 'Model': 'OMEN', 'Model Code': '16-xf0000ca', 'CPU': 'AMD Ryzen 9 7940HS', 'GPU': 'GeForce RTX 4070', 'RAM': '32GB', 'Storage': '2TB SSD', 'OS': 'Windows 11 Home', 'Screen': '16.1""', 'Resolution': 'QHD', 'Refresh Rate': '240Hz', 'Product Code': '7X979UA#ABL'}" -242164,LPMSI00564OB,"MSI Bravo 15 Gaming Laptop 15.6"" FHD AMD Ryzen 7 7735HS GeForce RTX 4060 32GB 1TB SSD Windows 11 Home, C7VFK-057CA(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",1259.1,"{'GPU': 'Ge Force RTX 4060', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '32GB', 'Screen Size': '15.6""'}","{'Brand': 'MSI', 'Model': 'Bravo 15', 'Model Code': 'C7VFK-057CA', 'CPU': 'AMD Ryzen 7 7735HS', 'GPU': 'GeForce RTX 4060', 'RAM': '32GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -242110,LPMSI00553OB,"MSI Vector GP68HX Gaming Notebook 16"" Intel i9-12900HX GeForce RTX 4080 32GB 1TB SSD Windows 11 Home, 12VH-012CA(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",2249.1,"{'GPU': 'GeForce RTX 4080', 'Maximum Resolution': '1920 x 1200', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '32GB', 'Screen Size': '16""'}","{'Brand': 'MSI', 'Model': 'Vector GP68HX', 'Model Code': '12VH-012CA', 'CPU': 'Intel i9-12900HX', 'GPU': 'GeForce RTX 4080', 'RAM': '32GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '16""'}" -242043,LPSAS00158,"SAMSUNG Galaxy Book3 360 EVO Consumer Notebook 13.3"" AMOLED Intel i5-1335U 8GB 256GB SSD Windows 11 Home, NP730QFG-KA2CA",SAMSUNG,"['Laptops, Tablet', None, None, None]",1499.0,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '13.3""'}","{'Brand': 'SAMSUNG', 'Model': 'Galaxy Book3 360 EVO', 'Model Code': 'NP730QFG-KA2CA', 'CPU': 'Intel i5-1335U', 'RAM': '8GB', 'Storage': '256GB SSD', 'OS': 'Windows 11 Home', 'Screen': '13.3"" AMOLED'}" -242035,LPMSI00496OB,"MSI GF63 Gaming Notebook 15.6"" FHD Intel i5-11400H RTX3050 8GB 512GB SSD Windows 11 Home,GF63 11UC-692(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",719.1,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '144Hz', 'SSD Capacity': '512GB'}","{'Brand': 'MSI', 'Model': 'GF63 11UC-692', 'CPU': 'Intel i5-11400H', 'GPU': 'NVIDIA RTX3050', 'RAM': '8GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -242034,LPACE00946OB,"Acer 15.6"" Consumer Notebook FHD Intel i5-1135G7 Intel Iris 8GB 512GB SSD Windows 11, NX.A1HAA.00G(Open Box)",ACER,"['Laptops, Tablet', None, None, None]",462.53999389648,"{'GPU': 'Intel Iris', 'Maximum Resolution': '1080p Full HD', 'Touch Screen': 'No', 'Operating System': 'Windows 11', 'Memory': '8GB', 'Screen Size': '15.6""'}","{'Brand': 'Acer', 'Screen': '15.6""', 'Resolution': 'FHD', 'CPU': 'Intel i5-1135G7', 'GPU': 'Intel Iris', 'RAM': '8GB', 'Storage': '512GB SSD', 'OS': 'Windows 11', 'Model Code': 'NX.A1HAA.00G', 'Condition': 'Open Box'}" -242021,LPHEW02072,"HP ProBook 445 G9 Business Notebook 14"" AMD Ryzen 5 5625U 8GB 256GB SSD Windows 11 Pro, 64T29UT#ABL",HP,"['Laptops, Tablet', None, None, None]",599.0,"{'GPU': 'AMD Radeon Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '8GB', 'Screen Size': '14""'}","{'Brand': 'HP', 'Model': 'ProBook 445 G9', 'Model Code': '64T29UT#ABL', 'CPU': 'AMD Ryzen 5 5625U', 'RAM': '8GB', 'Storage': '256GB SSD', 'OS': 'Windows 11 Pro', 'Screen': '14""'}" -242019,LPLEN03478,"Lenovo ThinkPad X1 Yoga Gen 8 14"" Touchscreen Convertible 2 in 1 Business Notebook Intel i7-1355U 16 GB 512 GB SSD, 21HQ0007US",LENOVO,"['Laptops, Tablet', None, None, None]",2884.39,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '21HQ0007US', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'ThinkPad', 'General InformationProduct Series': 'X1 Yoga Gen 8'}","{'Brand': 'Lenovo', 'Model': 'ThinkPad X1 Yoga Gen 8', 'Model Code': '21HQ0007US', 'Screen Size': '14""', 'Type': 'Touchscreen Convertible 2 in 1 Business Notebook', 'CPU': 'Intel i7-1355U', 'RAM': '16 GB', 'Storage': '512 GB SSD'}" -241971,LPMSI00559OB,"MSI Thin GF63 Gaming Laptop 15.6"" Intel i7-12650H GeForce RTX 4060 16GB 512GB SSD Windows 11 Home, 12VF-274CA(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",1079.1,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}","{'Brand': 'MSI', 'Model': 'Thin GF63', 'Model Code': '12VF-274CA', 'CPU': 'Intel i7-12650H', 'GPU': 'GeForce RTX 4060', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""'}" -241958,LPSAS00157,"SAMSUNG Galaxy Book3 360 EVO Consumer Notebook 13.3"" AMOLED Intel i7-1355U 16GB 512GB SSD Windows 11 Home, NP730QFG-KA1CA",SAMSUNG,"['Laptops, Tablet', None, None, None]",1899.0,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '13.3""'}","{'Brand': 'SAMSUNG', 'Model': 'Galaxy Book3 360 EVO', 'Model Code': 'NP730QFG-KA1CA', 'CPU': 'Intel i7-1355U', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '13.3"" AMOLED'}" -241952,LPSAS00156,"SAMSUNG Galaxy Book3 Pro 360 EVO Consumer Notebook 16"" QHD+ AMOLED Intel i7-1360P 16GB 1TB SSD Windows 11 Home, NP960XFH-XA2CA",SAMSUNG,"['Laptops, Tablet', None, None, None]",2499.0,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '2880 x 1800', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}","{'Brand': 'SAMSUNG', 'Model': 'Galaxy Book3 Pro 360 EVO', 'Model Code': 'NP960XFH-XA2CA', 'CPU': 'Intel i7-1360P', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '16""', 'Resolution': 'QHD+', 'Display': 'AMOLED'}" -241914,LPSAS00152,"SAMSUNG Galaxy Book3 EVO Ultra Gaming Notebook 16"" QHD+ AMOLED Intel i7-13700H GeForce RTX 4050 16GB 1TB SSD Windows 11 Home, NP960XFH-XA2CA",SAMSUNG,"['Laptops, Tablet', None, None, None]",3269.0,"{'GPU': 'GeForce RTX 4050', 'Maximum Resolution': '2880 x 1800', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}","{'Brand': 'SAMSUNG', 'Model': 'Galaxy Book3 EVO', 'Model Code': 'NP960XFH-XA2CA', 'CPU': 'Intel i7-13700H', 'GPU': 'GeForce RTX 4050', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '16""', 'Resolution': 'QHD+', 'Display Type': 'AMOLED'}" -241901,LPSAS00150,"SAMSUNG Galaxy Book3 EVO Ultra Gaming Notebook 16"" QHD+ AMOLED Intel i7-13700H GeForce RTX 4050 16GB 512GB SSD Windows 11 Home, NP960XFH-XA1CA",SAMSUNG,"['Laptops, Tablet', None, None, None]",2999.0,"{'GPU': 'GeForce RTX 4050', 'Maximum Resolution': '2880 x 1800', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}","{'Brand': 'SAMSUNG', 'Model': 'Galaxy Book3 EVO', 'Screen Size': '16""', 'Screen Resolution': 'QHD+ AMOLED', 'CPU': 'Intel i7-13700H', 'GPU': 'GeForce RTX 4050', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Model Code': 'NP960XFH-XA1CA'}" -241869,LPLEN03471,"Lenovo ThinkPad E14 14"" Touchscreen Business Notebook Intel i5-1335U 16 GB 512 GB SSD Windows 11 Pro, 21JK0052US",LENOVO,"['Laptops, Tablet', None, None, None]",1399.0,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '21JK0052US', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'ThinkPad', 'General InformationProduct Series': 'E14 Gen 5'}","{'Brand': 'Lenovo', 'Model': 'ThinkPad E14', 'Model Code': '21JK0052US', 'CPU': 'Intel i5-1335U', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Pro', 'Screen': '14""', 'Touchscreen': 'Yes'}" -241798,LPLEN03438OB,"Lenovo Legion Pro 5 Gaming Notebook 16"" 165Hz WQXGA AMD Ryzen 7 7745HX GeForce RTX 4070 16GB 512GB SSD Windows 11 Home, 82WM005VCC(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",1529.1,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}","{'Brand': 'Lenovo', 'Model': 'Legion Pro 5', 'Model Code': '82WM005VCC', 'CPU': 'AMD Ryzen 7 7745HX', 'GPU': 'GeForce RTX 4070', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '16""', 'Resolution': 'WQXGA', 'Refresh Rate': '165Hz'}" -241794,LPLEN03312OB,"Lenovo T490 Business Notebook 14"" FHD Intel i5-8265U Intel UHD Graphics 16GB 256GB SSD Windows 10 Pro Refurbished(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",359.1,"{'GPU': 'Intel UHD Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 10 Pro', 'Memory': '16GB', 'Screen Size': '14""'}","{'Brand': 'Lenovo', 'Model': 'T490', 'CPU': 'Intel i5-8265U', 'GPU': 'Intel UHD Graphics', 'RAM': '16GB', 'Storage': '256GB SSD', 'OS': 'Windows 10 Pro', 'Screen': '14""', 'Resolution': 'FHD', 'Condition': 'Refurbished (Open Box)'}" -241791,LPGIG00148OB,"Gigabyte AORUS Gaming Notebook 17.3"" QHD Intel i7-13700H GeForce RTX 4070 16GB 1TB SSD Windows 11 Home, BSF-73US654SH(Open Box)",GIGABYTE,"['Laptops, Tablet', None, None, None]",1799.1,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '2560 x 1440', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '17.3""'}","{'Brand': 'Gigabyte', 'Model': 'AORUS Gaming Notebook', 'Model Code': 'BSF-73US654SH', 'CPU': 'Intel i7-13700H', 'GPU': 'GeForce RTX 4070', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '17.3""', 'Resolution': 'QHD'}" -241789,LPGIG00157OB,"Gigabyte AERO 14 OLED Gaming Notebook 14"" QHD Intel i5-12500H RTX 4050 16GB 1TB SSD Windows 11 Home, 9MF-E2USBB4SH(Open Box)",GIGABYTE,"['Laptops, Tablet', None, None, None]",1349.1,"{'GPU': 'RTX 4050', 'Maximum Resolution': '2880x1800', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '14""'}","{'Brand': 'Gigabyte', 'Model': 'AERO 14 OLED', 'Model Code': '9MF-E2USBB4SH', 'CPU': 'Intel i5-12500H', 'GPU': 'RTX 4050', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '14""', 'Resolution': 'QHD'}" -241787,LPLEN03435OB,"Lenovo Legion Pro 5 Gaming Laptop 16"" Intel i7-13700HX GeForce RTX 4060 16GB 1TB SSD Windows 11 Home, 82WK00H9CC(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",1619.1,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}","{'Brand': 'Lenovo', 'Model': 'Legion Pro 5', 'Model Code': '82WK00H9CC', 'CPU': 'Intel i7-13700HX', 'GPU': 'GeForce RTX 4060', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '16""'}" -241770,LPHEW02065,"HP ProBook 450 G10 15.6"" Notebook - Full HD - 1920 x 1080 - Intel Core i5 13th Gen i5-1335U Deca-core (10 Core) 1.30 GHz - 8 GB Total RAM - 256 GB SSD - Pike Silver Plastic - Intel Chip - Windows 11 Pro - Intel UHD Graphics - In-plane Switching (IPS) Tech",HP,"['Laptops, Tablet', None, None, None]",999.0,"{'General InformationManufacturer': 'HP Inc.', 'General InformationManufacturer Part Number': '822P3UT#ABA', 'General InformationManufacturer Website Address': 'http://www.hp.com', 'General InformationBrand Name': 'HP', 'General InformationProduct Line': 'ProBook', 'General InformationProduct Series': '450 G10'}","{'Brand': 'HP', 'Model': 'ProBook 450 G10', 'Screen Size': '15.6""', 'Resolution': 'Full HD (1920 x 1080)', 'CPU': 'Intel Core i5 13th Gen i5-1335U', 'Number of Cores': 'Deca-core (10 Core)', 'CPU Speed': '1.30 GHz', 'RAM': '8 GB', 'Storage': '256 GB SSD', 'Color': 'Pike Silver Plastic', 'Chip': 'Intel', 'Operating System': 'Windows 11 Pro', 'Graphics': 'Intel UHD Graphics', 'Display Technology': 'In-plane Switching (IPS) Tech'}" -241742,LPLEN03301OB,"Lenovo IdeaPad Flex 5 14"" Touchscreen Convertible Notebook, OLED 2.8K, Intel i7-1255U, 16GB RAM, 512GB SSD, Storm Gray, Windows 11 Home(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",949.05,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '82R7000ECF', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'IdeaPad', 'General InformationProduct Series': 'Flex 5 14IAU7'}","{'Brand': 'Lenovo', 'Model': 'IdeaPad Flex 5', 'Screen': '14""', 'Display': 'Touchscreen, OLED 2.8K', 'CPU': 'Intel i7-1255U', 'RAM': '16GB', 'Storage': '512GB SSD', 'Color': 'Storm Gray', 'OS': 'Windows 11 Home'}" -241738,LPLEN03434OB,"Lenovo Legion Pro 5 Gaming Notebook 16"" AMD Ryzen 7 7745HX GeForce RTX 4060 16GB 512GB SSD Windows 11 Home, 82WM005XCC(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",1349.1,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}","{'Brand': 'Lenovo', 'Series': 'Legion Pro 5', 'Screen Size': '16""', 'CPU': 'AMD Ryzen 7 7745HX', 'GPU': 'GeForce RTX 4060', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Model Code': '82WM005XCC', 'Condition': 'Open Box'}" -241670,LPLEN03465,"Lenovo ThinkPad X1 Yoga EVO 14"" Touchscreen Convertible 2 in 1 Business Notebook Intel i5-1335U 16 GB 256 GB SSD, 21HQ001NUS",LENOVO,"['Laptops, Tablet', None, None, None]",2534.06,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '21HQ001NUS', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'ThinkPad', 'General InformationProduct Series': 'X1 Yoga Gen 8'}","{'Brand': 'Lenovo', 'Model': 'ThinkPad X1 Yoga EVO', 'Model Code': '21HQ001NUS', 'Type': 'Touchscreen Convertible 2-in-1 Business Notebook', 'CPU': 'Intel i5-1335U', 'RAM': '16GB', 'Storage': '256GB SSD', 'Screen': '14""'}" -241582,LPACE00956OB,"Acer Nitro 5 Gaming Notebook 15.6"" FHD Intel i7-12650H GeForce RTX 4060 16GB 512GB SSD Windows 11, NH.QM0AA.001(Open Box)",ACER,"['Laptops, Tablet', None, None, None]",1259.1,"{'GPU': 'GeForce RTX 4060', 'Refresh Rate': '144Hz', 'Maximum Resolution': '1080p Full HD', 'Touch Screen': 'No', 'Operating System': 'Windows 11', 'Memory': '16GB'}","{'Brand': 'Acer', 'Model': 'Nitro 5', 'Model Code': 'NH.QM0AA.001', 'CPU': 'Intel i7-12650H', 'GPU': 'GeForce RTX 4060', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11', 'Screen': '15.6""', 'Resolution': 'FHD'}" -241555,LPMSI00581,"MSI Modern 15 Consumer Notebook 15.6"" AMD Ryzen 5-7530U 16GB 512GB SSD Windows 11 Home, B7M-219CA",MSI,"['Laptops, Tablet', None, None, None]",849.0,"{'GPU': 'AMD Radeon Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}","{'Brand': 'MSI', 'Model': 'Modern 15', 'Model Code': 'B7M-219CA', 'CPU': 'AMD Ryzen 5-7530U', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""'}" -241520,LPMSI00579,"MSI Stealth 14Studio Gaming Notebook 14"" QHD+ Intel i7-13620H GeForce RTX 4060 16GB 1TB SSD Windows 11 Home, A13VF-053CA",MSI,"['Laptops, Tablet', None, None, None]",2099.0,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '14""'}","{'Brand': 'MSI', 'Model': 'Stealth 14Studio', 'Model Code': 'A13VF-053CA', 'CPU': 'Intel i7-13620H', 'GPU': 'GeForce RTX 4060', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '14""', 'Resolution': 'QHD+'}" -241510,LPMSI00578,"MSI Modern 14 Consumer Notebook 14"" Intel i5-1335u 16GB 512GB SSD Windows 11 Home",MSI,"['Laptops, Tablet', None, None, None]",899.0,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1080p Full HD', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '14""'}","{'Brand': 'MSI', 'Model': 'Modern 14', 'CPU': 'Intel i5-1335U', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '14""'}" -241455,LPLEN03462,"Lenovo ThinkBook 14s Yoga 14"" Touchscreen Convertible FHD Intel Core i5-1335U 16GB 256GB SSD Mineral Gray Windows 11 Pro",LENOVO,"['Laptops, Tablet', None, None, None]",1299.0,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '21JG0019US', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'ThinkBook', 'General InformationProduct Series': '14s Yoga G3 IRU'}","{'Brand': 'Lenovo', 'Model': 'ThinkBook 14s Yoga', 'Screen': '14"" Touchscreen', 'Resolution': 'FHD', 'CPU': 'Intel Core i5-1335U', 'RAM': '16GB', 'Storage': '256GB SSD', 'Color': 'Mineral Gray', 'OS': 'Windows 11 Pro'}" -241443,LPHEW02045OB,"HP Consumer Laptop 17.3"" FHD, Intel i5-1135G7, Intel Iris Xe, 16GB, 512GB SSD, Windows 11 Home, 17-cn0002ca(Open Box)",HP,"['Laptops, Tablet', None, None, None]",854.05,"{'Touch Screen': 'No', 'Hard Drive Capacity': 'None', 'GPU': 'Intel Iris Xe', 'Maximum Resolution': 'FHD', 'Operating System': 'Windows 11 Home', 'Memory': '16GB'}","{'Brand': 'HP', 'Model': 'Consumer Laptop 17.3""', 'Model Code': '17-cn0002ca', 'CPU': 'Intel i5-1135G7', 'GPU': 'Intel Iris Xe', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '17.3""', 'Resolution': 'FHD'}" -241436,LPMSI00560OB,"MSI Thin GF63 Gaming Notebook 15.6"" FHD Intel i5-12450H GeForce RTX 4060 16GB 512GB SSD Windows 11 Home,12VF-275CA(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",1079.1,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}","{'Brand': 'MSI', 'Model': 'Thin GF63', 'Model Code': '12VF-275CA', 'CPU': 'Intel i5-12450H', 'GPU': 'GeForce RTX 4060', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -241433,LPMSI00576,"MSI CREATOR Z16 Creator Notebook 16"" QHD Intel i7-13700HX GeForce RTX 4060 32GB 1TB SSD Windows11 Pro .",MSI,"['Laptops, Tablet', None, None, None]",2999.0,"{'Memory': '32GB', 'Screen Size': '16""', 'Operating System': 'Windows11 Pro', 'Maximum Resolution': '2560 x 1600', 'Refresh Rate': '120Hz', 'SSD Capacity': '1TB'}","{'Brand': 'MSI', 'Model': 'CREATOR Z16', 'CPU': 'Intel i7-13700HX', 'GPU': 'GeForce RTX 4060', 'RAM': '32GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Pro', 'Screen': '16""', 'Resolution': 'QHD'}" -241430,LPMSI00563OB,"MSI Modern 15 Notebook 15.6"" FHD Intel i5-1155G7 Intel Iris Xe 16GB 512GB SSD Windows 11 Home, B11M-046CA(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",569.05,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}","{'Brand': 'MSI', 'Model': 'Modern 15', 'Model Code': 'B11M-046CA', 'CPU': 'Intel i5-1155G7', 'GPU': 'Intel Iris Xe', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -241410,LPHEW02028OB,"HP Consumer Laptop 15.6"" FHD AMD Ryzen 7 7730U AMD Radeon Graphics 16GB 1TB SSD Windows 11 Home, 15-fc0040ca(Open Box)",HP,"['Laptops, Tablet', None, None, None]",806.55,"{'Memory': '16GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1080p Full HD', 'SSD Capacity': '1TB', 'CPU': 'Ryzen 7 7730U'}","{'Brand': 'HP', 'Model': '15-fc0040ca', 'CPU': 'AMD Ryzen 7 7730U', 'GPU': 'AMD Radeon Graphics', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -241409,LPLGE00030OB,"LG Gram Consumer Notebook 14"" WUXGA Intel i7-1360P Intel Iris Xe 16GB 512GB SSD Windows 11 Home, 14Z90R-K.AA75A9(Open Box)",LG,"['Laptops, Tablet', None, None, None]",1519.05,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1200', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '14""'}","{'Brand': 'LG', 'Model': 'Gram', 'Model Code': '14Z90R-K.AA75A9', 'CPU': 'Intel i7-1360P', 'GPU': 'Intel Iris Xe', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '14""', 'Resolution': 'WUXGA'}" -241324,LPASU00726OB,"ASUS ROG Flow Gaming Notebook 13.4"" WQXGA AMD Ryzen 9 7940HS RTX 4050 16GB 1TB SSD Windows 11 Home, GV302XU-DS91T-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",1979.1,"{'GPU': 'RTX\xa04050', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '13.4""'}","{'Brand': 'ASUS', 'Series': 'ROG Flow', 'Model': 'GV302XU-DS91T-CA', 'CPU': 'AMD Ryzen 9 7940HS', 'GPU': 'RTX 4050', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '13.4""', 'Resolution': 'WQXGA'}" -241260,LPLEN03437OB,"Lenovo Legion Pro 5 Gaming Notebook 16"" Intel i9-13900HX GeForce RTX 4070 16GB 512GB SSD Windows 11 Home, 82WK00D5CC(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",2249.1,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}","{'Brand': 'Lenovo', 'Model': 'Legion Pro 5', 'Model Code': '82WK00D5CC', 'CPU': 'Intel i9-13900HX', 'GPU': 'GeForce RTX 4070', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '16""'}" -241259,LPASU00686OB,"ASUS TUF Gaming Notebook 16"" FHD AMD Ryzen 7 7735HS AMD Radeon RX 7600S 16GB 1TB SSD Windows 11 Home, FA617NS-DS71-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",1349.1,"{'GPU': 'AMD\xa0Radeon RX\xa07600S', 'Refresh Rate': '144Hz', 'Maximum Resolution': '1920X1200', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB'}","{'Brand': 'ASUS', 'Model': 'TUF Gaming Notebook', 'Model Code': 'FA617NS-DS71-CA', 'CPU': 'AMD Ryzen 7 7735HS', 'GPU': 'AMD Radeon RX 7600S', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '16""', 'Resolution': 'FHD'}" -241258,LPGIG00154OB,"Gigabyte AERO 14 Gaming Notebook 14"" QHD Intel Core i7-13700H GeForce RTX 4050 16GB 1TB SSD Windows 11 Home, BMF-72USBB4SH(Open Box)",GIGABYTE,"['Laptops, Tablet', None, None, None]",1709.1,"{'GPU': 'GeForce RTX 4050', 'Maximum Resolution': '2880x1800', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '14""'}","{'Brand': 'Gigabyte', 'Model': 'AERO 14', 'Model Code': 'BMF-72USBB4SH', 'CPU': 'Intel Core i7-13700H', 'GPU': 'GeForce RTX 4050', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '14""', 'Resolution': 'QHD'}" -240967,LPACE00969,"Acer Nitro 5 Gaming Notebook 15.6"" FHD Intel i5-11400H GeForce GTX 1650 8GB 512GB SSD Windows 11 Home,",ACER,"['Laptops, Tablet', None, None, None]",699.0,"{'GPU': 'GeForce GTX 1650', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11', 'Memory': '8GB', 'Screen Size': '15.6""'}","{'Brand': 'Acer', 'Model': 'Nitro 5', 'Screen Size': '15.6""', 'Resolution': 'FHD', 'CPU': 'Intel i5-11400H', 'GPU': 'GeForce GTX 1650', 'RAM': '8GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home'}" -240858,LPMSI00568OB,"MSI Modern Consumer Notebook 15.6"" FHD Intel i5-1235U Intel Iris Xe 16GB 512GB SSD Windows 11 Home .(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",830.18999938965,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}","{'Brand': 'MSI', 'Model': 'Modern', 'CPU': 'Intel i5-1235U', 'GPU': 'Intel Iris Xe', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen Size': '15.6""', 'Resolution': 'FHD'}" -240698,LPMSI00541OB,"MSI Thin GF63 Gaming Notebook 15.6"" FHD Intel i7-12650H GeForce RTX 3050 16GB 512GB SSD Windows 11 Home, 12UDX-038CA(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",899.1,"{'GPU': 'GeForce RTX 3050', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}","{'Brand': 'MSI', 'Model': 'Thin GF63', 'Model Code': '12UDX-038CA', 'CPU': 'Intel i7-12650H', 'GPU': 'GeForce RTX 3050', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -240697,LPLEN03433OB,"Lenovo Legion Pro 5 Gaming Laptop 16"" AMD Ryzen 7 7745HX GeForce RTX 4070 16GB 1TB SSD Windows 11 Home, 82WM005YCC(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",1619.1,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}","{'Brand': 'Lenovo', 'Model': 'Legion Pro 5', 'Model Code': '82WM005YCC', 'CPU': 'AMD Ryzen 7 7745HX', 'GPU': 'GeForce RTX 4070', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '16""'}" -240655,LPGIG00135OB,"Gigabyte AERO 16 XE4 Gaming Notebook 16"" UHD Intel Core i7-12700H GeForce RTX 3070 Ti 16GB 2TB SSD Windows 11 Pro, XE4-73US918HP(Open Box)",GIGABYTE,"['Laptops, Tablet', None, None, None]",1079.1,"{'Memory': '16GB', 'Screen Size': '16""', 'Operating System': 'Windows 11 Pro', 'Maximum Resolution': '3840x2400', 'Refresh Rate': '60Hz', 'SSD Capacity': '2TB'}","{'Brand': 'Gigabyte', 'Model': 'AERO 16 XE4', 'Model Code': 'XE4-73US918HP', 'CPU': 'Intel Core i7-12700H', 'GPU': 'GeForce RTX 3070 Ti', 'RAM': '16GB', 'Storage': '2TB SSD', 'OS': 'Windows 11 Pro', 'Screen': '16""', 'Resolution': 'UHD'}" -240528,LPHEW02021OB,"HP Consumer Laptop 14"" FHD AMD Ryzen 3 7320U, Radeon Graphics, 8GB RAM, 256GB SSD, Windows 11 Home, 14-em0030ca(Open Box)",HP,"['Laptops, Tablet', None, None, None]",474.05,"{'Memory': '8GB', 'Model': '14-em0030ca', 'Screen Size': '14""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': 'FHD', 'SSD Capacity': '256GB'}","{'Brand': 'HP', 'Model': '14-em0030ca', 'CPU': 'AMD Ryzen 3 7320U', 'GPU': 'Radeon Graphics', 'RAM': '8GB', 'Storage': '256GB SSD', 'OS': 'Windows 11 Home', 'Screen': '14""', 'Resolution': 'FHD'}" -240332,LPHEW02035OB,"HP Omen 16-wd0010ca Gaming Notebook 16.1"" FHD Intel i7-13620H GeForce RTX 4060 16GB 1TB SSD Windows 11 Home(Open Box)",HP,"['Laptops, Tablet', None, None, None]",1259.1,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16.1""'}","{'Brand': 'HP', 'Model': 'Omen 16-wd0010ca', 'CPU': 'Intel i7-13620H', 'GPU': 'GeForce RTX 4060', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '16.1""', 'Resolution': 'FHD'}" -240324,LPLEN03442,"LENOVO IdeaPad Flex 5 Consumer Notebook 14"" Touchscreen AMD Ryzen 3 5300U 4GB 128GB SSD Windows 10 S, 82HU0159US",LENOVO,"['Laptops, Tablet', None, None, None]",379.0,"{'GPU': 'AMD Radeon Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'Yes', 'Operating System': 'Windows 10 S', 'Memory': '4GB', 'Screen Size': '14""'}","{'Brand': 'LENOVO', 'Model': 'IdeaPad Flex 5', 'Model Code': '82HU0159US', 'Design': 'Consumer Notebook', 'Screen': '14"" Touchscreen', 'CPU': 'AMD Ryzen 3 5300U', 'RAM': '4GB', 'Storage': '128GB SSD', 'OS': 'Windows 10 S'}" -240234,LPMSI00498OB,"MSI SUMMIT E14 Business Notebook 14"" FHD Intel i7-1280P Iris Xe Graphics 16GB 1TB SSD Windows 11 Home .(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",1141.7899938965,"{'Memory': '16GB', 'Screen Size': '14""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1200', 'Refresh Rate': '60Hz', 'SSD Capacity': '1TB'}","{'Brand': 'MSI', 'Model': 'SUMMIT E14', 'Screen': '14""', 'Resolution': 'FHD', 'CPU': 'Intel i7-1280P', 'GPU': 'Iris Xe Graphics', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home'}" -240174,LPASU00716OB,"ASUS TUF F15 Gaming Notebook 15.6"" FHD Intel i7-12700H RTX 3050 16GB 512GB SSD Windows 11 Home, FX507ZC4-DS71-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",989.1,"{'GPU': 'RTX\xa03050', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}","{'Brand': 'ASUS', 'Series': 'TUF F15', 'Model': 'FX507ZC4-DS71-CA', 'CPU': 'Intel i7-12700H', 'GPU': 'NVIDIA RTX 3050', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -240130,LPHEW02017OB,"HP Pavilion Consumer Notebook 15.6"" FHD Intel i5-1240P Intel Iris Xe 8GB 512GB SSD Windows 11 Home, 15-EG2002CA(Open Box)",HP,"['Laptops, Tablet', None, None, None]",599.34000854492,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': 'FHD', 'SSD Capacity': '512GB', 'CPU': 'i5-1240P'}","{'Brand': 'HP', 'Model': 'Pavilion', 'Model Code': '15-EG2002CA', 'CPU': 'Intel i5-1240P', 'GPU': 'Intel Iris Xe', 'RAM': '8GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -240099,LPGIG00160OB,"Gigabyte G5 Gaming Notebook 15.6"" FHD Intel i5-12450H GeForce RTX 4050 16GB 512GB SSD Windows 11 Home, MF-F2US313SH(Open Box)",GIGABYTE,"['Laptops, Tablet', None, None, None]",809.1,"{'GPU': 'GeForce RTX 4050', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}","{'Brand': 'Gigabyte', 'Model': 'G5 Gaming Notebook', 'Model Code': 'MF-F2US313SH', 'CPU': 'Intel i5-12450H', 'GPU': 'GeForce RTX 4050', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -240049,LPHEW02045,"HP Consumer Laptop 17.3"" FHD, Intel i5-1135G7, Intel Iris Xe, 16GB, 512GB SSD, Windows 11 Home, 17-cn0002ca",HP,"['Laptops, Tablet', None, None, None]",899.0,"{'Touch Screen': 'No', 'Hard Drive Capacity': 'None', 'GPU': 'Intel Iris Xe', 'Maximum Resolution': 'FHD', 'Operating System': 'Windows 11 Home', 'Memory': '16GB'}","{'Brand': 'HP', 'Model': 'Consumer Laptop', 'Model Code': '17-cn0002ca', 'CPU': 'Intel i5-1135G7', 'GPU': 'Intel Iris Xe', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '17.3""', 'Resolution': 'FHD'}" -239972,LPLGE00027OB,"LG gram Ultra-Lightweight EVO Platform Notebook, 17"" WQXGA, Intel i5-1240P, Intel Iris Xe Graphics, 8GB, 512GB SSD, Windows 11 Home, 17Z90Q-K.AR55A9(Open Box)",LG,"['Laptops, Tablet', None, None, None]",1109.4899984741,"{'Notebook Type': 'Consumer', 'Notebook Chassis': 'Thin and Light', 'Screen Size': '17""', 'Maximum Resolution': '2560 x 1600', 'Refresh Rate': '60Hz', 'CPU': 'i5-1240P'}","{'Brand': 'LG', 'Model': 'gram', 'Model Code': '17Z90Q-K.AR55A9', 'CPU': 'Intel i5-1240P', 'GPU': 'Intel Iris Xe Graphics', 'RAM': '8GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '17""', 'Resolution': 'WQXGA', 'Platform': 'EVO'}" -239909,LPMSI00567,"MSI Thin 15.6"" GF63 Gaming Notebook, FHD, Intel Core i5-12450H, GeForce RTX 4060, 16GB RAM, 512GB SSD, Windows 11 Home",MSI,"['Laptops, Tablet', None, None, None]",1599.0,"{'General InformationManufacturer': 'MSI', 'General InformationManufacturer Part Number': 'THIN GF63 12VF-288CA', 'General InformationManufacturer Website Address': 'http://www.msi.com', 'General InformationBrand Name': 'MSI', 'General InformationProduct Series': 'Thin GF63 12V', 'General InformationProduct Model': 'Thin GF63 12VF-288CA'}","{'Brand': 'MSI', 'Model': 'Thin GF63', 'Screen': '15.6""', 'Resolution': 'FHD', 'CPU': 'Intel Core i5-12450H', 'GPU': 'GeForce RTX 4060', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home'}" -239787,LPLEN03437,"Lenovo Legion Pro 5 Gaming Notebook 16"" Intel i9-13900HX GeForce RTX 4070 16GB 512GB SSD Windows 11 Home, 82WK00D5CC",LENOVO,"['Laptops, Tablet', None, None, None]",2499.0,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}","{'Brand': 'Lenovo', 'Series': 'Legion Pro 5', 'Screen Size': '16""', 'CPU': 'Intel i9-13900HX', 'GPU': 'GeForce RTX 4070', 'RAM': '16GB', 'Storage': '512GB SSD', 'Operating System': 'Windows 11 Home', 'Model Code': '82WK00D5CC'}" -239781,LPLEN03434,"Lenovo Legion Pro 5 Gaming Notebook 16"" AMD Ryzen 7 7745HX GeForce RTX 4060 16GB 512GB SSD Windows 11 Home, 82WM005XCC",LENOVO,"['Laptops, Tablet', None, None, None]",1499.0,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}","{'Brand': 'Lenovo', 'Model': 'Legion Pro 5', 'Model Code': '82WM005XCC', 'CPU': 'AMD Ryzen 7 7745HX', 'GPU': 'GeForce RTX 4060', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '16""'}" -239771,LPLEN03427,"Lenovo IdeaPad 1 15AMN7 Consumer Notebook 15.6"" HD AMD Athlon Gold 7220U AMD Radeon 610M Graphics 4GB 128GB SSD Windows 11 S, 82VG00EGCC",LENOVO,"['Laptops, Tablet', None, None, None]",449.99,"{'GPU': 'AMD Radeon 610M Graphics', 'Maximum Resolution': '1366 x 768', 'Touch Screen': 'No', 'Operating System': 'Windows 11 S', 'Memory': '4GB', 'Screen Size': '15.6""'}","{'Brand': 'Lenovo', 'Model': 'IdeaPad 1 15AMN7', 'Model Code': '82VG00EGCC', 'CPU': 'AMD Athlon Gold 7220U', 'GPU': 'AMD Radeon 610M Graphics', 'RAM': '4GB', 'Storage': '128GB SSD', 'OS': 'Windows 11 S', 'Screen': '15.6""', 'Resolution': 'HD'}" -239765,LPLEN03426,"Lenovo IP Slim 3 Chrome 14M868 Consumer Notebook 14"" FHD MediaTek Kompanio 520 ARM Mali-G52 2EE MC2 GPU 4GB HDD Chrome OS,82XJ001GCC",LENOVO,"['Laptops, Tablet', None, None, None]",479.99,"{'GPU': 'ARM Mali-G52 2EE MC2 GPU', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'Yes', 'Operating System': 'Chrome OS', 'Memory': '4GB', 'Screen Size': '14""'}","{'Brand': 'Lenovo', 'Model': 'IP Slim 3 Chrome', 'Model Code': '82XJ001GCC', 'CPU': 'MediaTek Kompanio 520', 'GPU': 'ARM Mali-G52 2EE MC2', 'RAM': '4GB', 'Storage': 'HDD', 'OS': 'Chrome OS', 'Screen': '14""', 'Resolution': 'FHD'}" -239749,LPACE00965,"Acer Nitro 16"" Gaming Notebook FHD AMD Ryzen 7 7735HS GeForce RTX 4050 16GB 1TB SSD Windows 11 Home, NH.QKBAA.001",ACER,"['Laptops, Tablet', None, None, None]",1899.0,"{'GPU': 'GeForce RTX 4050', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}","{'Brand': 'Acer', 'Model': 'Nitro', 'Model Code': 'NH.QKBAA.001', 'CPU': 'AMD Ryzen 7 7735HS', 'GPU': 'GeForce RTX 4050', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '16""', 'Resolution': 'FHD'}" -239746,LPACE00963,"Acer AN515-58-7578 Gaming Notebook 15.6"" FHD Intel i7-12650H GeForce RTX 4050 16GB 1TB SSD Windows 11 Home, NH.QLZAA.004",ACER,"['Laptops, Tablet', None, None, None]",1699.99,"{'GPU': 'GeForce RTX 4050', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}","{'Brand': 'Acer', 'Model': 'AN515-58-7578', 'Model Code': 'NH.QLZAA.004', 'CPU': 'Intel i7-12650H', 'GPU': 'GeForce RTX 4050', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -239719,LPMSI00554,"MSI Vector GP77 Gaming Notebook 17.3"" QHD Intel i7-13700H GeForce RTX 4070 16GB 1TB SSD Windows 11 Home, 13VG-033CA",MSI,"['Laptops, Tablet', None, None, None]",2899.0,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '2560 x 1440', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '17.3""'}","{'Brand': 'MSI', 'Model': 'Vector GP77', 'Model Code': '13VG-033CA', 'CPU': 'Intel i7-13700H', 'GPU': 'GeForce RTX 4070', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '17.3""', 'Resolution': 'QHD'}" -239700,LPMSI00552,"MSI Raider GE78HX Gaming Notebook 17.3"" QHD Intel i7-13700HX GeForce RTX 4070 32GB 1TB SSD Windows 11 Home, 13VG-026CA",MSI,"['Laptops, Tablet', None, None, None]",3299.0,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '32GB', 'Screen Size': '17.3""'}","{'Brand': 'MSI', 'Model': 'Raider GE78HX', 'Model Code': '13VG-026CA', 'Screen': '17.3""', 'Resolution': 'QHD', 'CPU': 'Intel i7-13700HX', 'GPU': 'GeForce RTX 4070', 'RAM': '32GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home'}" -239699,LPMSI00551,"MSI Stealth 17Studio Gaming Notebook 17.3"" QHD Intel i7-13700H GeForce RTX 4070 32GB 1TB SSD Windows 11 Pro, A13VG-020CA",MSI,"['Laptops, Tablet', None, None, None]",3299.0,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '2560 x 1440', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '32GB', 'Screen Size': '17.3""'}","{'Brand': 'MSI', 'Model': 'Stealth 17Studio', 'Model Code': 'A13VG-020CA', 'CPU': 'Intel i7-13700H', 'GPU': 'GeForce RTX 4070', 'RAM': '32GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Pro', 'Screen': '17.3""', 'Resolution': 'QHD'}" -239697,LPMSI00550,"MSI Raider GE78HX Gaming Notebook 17"" QHD Intel i9-13980HX GeForce RTX 4070 32GB 2TB SSD Windows 11 Professional,",MSI,"['Laptops, Tablet', None, None, None]",3399.0,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '32GB', 'Screen Size': '17.3""'}","{'Brand': 'MSI', 'Model': 'Raider GE78HX', 'Screen': '17""', 'Resolution': 'QHD', 'CPU': 'Intel i9-13980HX', 'GPU': 'GeForce RTX 4070', 'RAM': '32GB', 'Storage': '2TB SSD', 'OS': 'Windows 11 Professional'}" -239694,LPMSI00549,"MSI Vector GP78HX Gaming Notebook 17"" QHD Intel i7-13700HX GeForce RTX 4080 32GB 1TB SSD Windows 11 Home",MSI,"['Laptops, Tablet', None, None, None]",3399.0,"{'GPU': 'GeForce RTX 4080', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '32GB', 'Screen Size': '17""'}","{'Brand': 'MSI', 'Model': 'Vector GP78HX', 'CPU': 'Intel i7-13700HX', 'GPU': 'GeForce RTX 4080', 'RAM': '32GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '17""', 'Resolution': 'QHD'}" -239501,LPASU00752OB,"Asus Vivobook 17 Consumer Notebook 17.3"" FHD Intel i7-1165G7 Intel Iris Xe Graphics 8GB 512GB SSD Windows 11 Home, X712EA-MS72-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",664.05,"{'GPU': 'Intel Iris Xe Graphics', 'Maximum Resolution': '1080p Full HD', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '17.3""'}","{'Brand': 'Asus', 'Model': 'Vivobook 17', 'Model Code': 'X712EA-MS72-CA', 'CPU': 'Intel i7-1165G7', 'GPU': 'Intel Iris Xe Graphics', 'RAM': '8GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '17.3""', 'Resolution': 'FHD'}" -239476,LPASU00688OB,"ASUS TUF Gaming F15 Gaming Laptop 15.6"" FHD Intel Core i9-13900H GeForce RTX 4050 16GB 512GB SSD Windows 11 Home, FX507VU-DS91-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",1259.1,"{'GPU': 'GeForce\xa0RTX\xa04050', 'Maximum Resolution': '1080p Full HD', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}","{'Brand': 'ASUS', 'Model': 'TUF Gaming F15', 'Model Code': 'FX507VU-DS91-CA', 'CPU': 'Intel Core i9-13900H', 'GPU': 'GeForce RTX 4050', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -239359,LPLEN03414OB,"Lenovo IdeaPad Consumer Notebook 14"" HD Intel i3-1215U Intel HD Graphics 4GB 128GB SSD Windows 11 S, 82QC003VUS(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",312.55,"{'GPU': 'Intel HD Graphics', 'Maximum Resolution': '1366 x 768', 'Touch Screen': 'No', 'Operating System': 'Windows 11 S', 'Memory': '4GB', 'Screen Size': '14""'}","{'Brand': 'Lenovo', 'Model': 'IdeaPad', 'Model Code': '82QC003VUS', 'CPU': 'Intel i3-1215U', 'GPU': 'Intel HD Graphics', 'RAM': '4GB', 'Storage': '128GB SSD', 'OS': 'Windows 11 S', 'Screen': '14""', 'Resolution': 'HD'}" -239101,LPACE00888OB,"Acer TravelMate P2 14"" Business Notebook , FHD, Intel Core i5-1135G7,8 GB RAM, 256 GB SSD, Windows 11 Pro, Intel Iris Xe Graphics, NX.VPKAA.00K(Open Box)",ACER,"['Laptops, Tablet', None, None, None]",474.05,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': 'FHD', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '8GB', 'Screen Size': '14""'}","{'Brand': 'Acer', 'Model': 'TravelMate P2', 'Screen': '14""', 'Resolution': 'FHD', 'CPU': 'Intel Core i5-1135G7', 'RAM': '8GB', 'Storage': '256GB SSD', 'OS': 'Windows 11 Pro', 'GPU': 'Intel Iris Xe Graphics', 'Model Code': 'NX.VPKAA.00K', 'Condition': 'Open Box'}" -239044,LPLEN03352OB,"Lenovo ThinkBook 15 G3 Notebook, 15.6"" FHD, AMD Ryzen 5 5500U, 8GB DDR4, 256GB SSD, AMD Radeon Graphics, Fingerprint Reader, Windows 10 Pro(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",569.05,"{'Storage Type': 'SSD', 'CPU Brand': 'Intel', 'Product Condition': 'New', 'Screen Resolution Description': 'FHD', 'Memory': '8GB', 'Screen Size': '15.6""'}","{'Brand': 'Lenovo', 'Model': 'ThinkBook 15 G3', 'Screen': '15.6"" FHD', 'CPU': 'AMD Ryzen 5 5500U', 'RAM': '8GB DDR4', 'Storage': '256GB SSD', 'GPU': 'AMD Radeon Graphics', 'Fingerprint Reader': 'Yes', 'OS': 'Windows 10 Pro'}" -238915,LPASU00768,"ASUS Zenbook Pro 16X OLED Gaming Notebook 16"" OLED Intel i9-13905H GeForce RTX 4080 32GB 1TB SSD Windows 11 Pro, UX7602BZ-XB91T-CA",ASUS,"['Laptops, Tablet', None, None, None]",4199.0,"{'GPU': 'GeForce RTX 4080', 'Refresh Rate': '120Hz', 'Maximum Resolution': '3200 x 2000', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Pro', 'Memory': '32GB'}","{'Brand': 'ASUS', 'Model': 'Zenbook Pro 16X OLED', 'Model Code': 'UX7602BZ-XB91T-CA', 'CPU': 'Intel i9-13905H', 'GPU': 'GeForce RTX 4080', 'RAM': '32GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Pro', 'Screen': '16"" OLED'}" -238700,LPMSI00544,"MSI Titan Gaming Notebook 17.3"" UHD Intel i9-13980HX GeForce RTX 4090 64GB 2TB SSD Windows 11 Pro, GT77HX 13VI-028US",MSI,"['Laptops, Tablet', None, None, None]",6449.0,"{'GPU': 'GeForce RTX 4090', 'Maximum Resolution': '3840 x 2160', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '64GB', 'Screen Size': '17.3""'}","{'Brand': 'MSI', 'Model': 'Titan Gaming Notebook', 'Model Code': 'GT77HX 13VI-028US', 'CPU': 'Intel i9-13980HX', 'GPU': 'GeForce RTX 4090', 'RAM': '64GB', 'Storage': '2TB SSD', 'OS': 'Windows 11 Pro', 'Screen': '17.3""', 'Resolution': 'UHD'}" -238490,LPASU00724OB,"ASUS ROG Zephyrus Gaming Notebook 16"" WQXGA Intel i9-13900H GeForce RTX 4070 32GB 1TB SSD Windows 11 Home, GU604VI-DS92-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",2249.1,"{'Refresh Rate': '240Hz', 'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '2560X1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '32GB'}","{'Brand': 'ASUS', 'Series': 'ROG Zephyrus', 'Product Type': 'Gaming Notebook', 'Model': 'GU604VI-DS92-CA', 'CPU': 'Intel i9-13900H', 'GPU': 'GeForce RTX 4070', 'RAM': '32GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '16""', 'Resolution': 'WQXGA (2560 x 1600)'}" -238482,LPLGE00024OB,"LG Gram Ultra-Lightweight Notebook, 15.6"" FHD, Intel i7-1260P, Intel Iris Xe Graphics, 16GB, 512GB SSD, Windows 11 Home, 15Z90Q-P.AA75A9(Open Box)",LG,"['Laptops, Tablet', None, None, None]",1355.5400015259,"{'Notebook Type': 'Consumer', 'Notebook Chassis': 'Thin and Light', 'Screen Size': '15.6""', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'CPU': 'i7-1260P'}","{'Brand': 'LG', 'Model': 'Gram', 'Model Code': '15Z90Q-P.AA75A9', 'CPU': 'Intel i7-1260P', 'GPU': 'Intel Iris Xe Graphics', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -238422,LPACE00945OB,"Acer Aspire 15.6"" Consumer Notebook Intel i5-10210U 8GB 256GB SSD Windows 11, A515-54-54B9, NX.HN2AA.008(Open Box)",ACER,"['Laptops, Tablet', None, None, None]",415.04000549316,"{'Storage Type': 'SSD', 'CPU Brand': 'Intel', 'Product Condition': 'New', 'Screen Resolution Description': 'FHD', 'Model': 'A515-54-54B9', 'Memory': '8GB'}","{'Brand': 'Acer', 'Model': 'Aspire', 'Model Code': 'A515-54-54B9', 'CPU': 'Intel i5-10210U', 'RAM': '8GB', 'Storage': '256GB SSD', 'OS': 'Windows 11', 'Screen': '15.6""', 'Model Number': 'NX.HN2AA.008', 'Condition': 'Open Box'}" -238336,LPLEN03414,"Lenovo IdeaPad Consumer Notebook 14"" HD Intel i3-1215U Intel HD Graphics 4GB 128GB SSD Windows 11 S, 82QC003VUS",LENOVO,"['Laptops, Tablet', None, None, None]",329.0,"{'GPU': 'Intel HD Graphics', 'Maximum Resolution': '1366 x 768', 'Touch Screen': 'No', 'Operating System': 'Windows 11 S', 'Memory': '4GB', 'Screen Size': '14""'}","{'Brand': 'Lenovo', 'Model': 'IdeaPad', 'Model Code': '82QC003VUS', 'CPU': 'Intel i3-1215U', 'GPU': 'Intel HD Graphics', 'RAM': '4GB', 'Storage': '128GB SSD', 'OS': 'Windows 11 S', 'Screen': '14""', 'Resolution': 'HD'}" -238330,LPGIG00149OB,"Gigabyte AORUS 15X Gaming Notebook 15.6"" QHD Intel i9-13900HX GeForce RTX 4070 16GB 1TB SSD Windows 11 Home, ASF-B3US754SH(Open Box)",GIGABYTE,"['Laptops, Tablet', None, None, None]",1979.89,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '2560x1440', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}","{'Brand': 'Gigabyte', 'Series': 'AORUS 15X', 'Model': 'ASF-B3US754SH', 'CPU': 'Intel i9-13900HX', 'GPU': 'GeForce RTX 4070', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'QHD (Quad HD)'}" -238182,LPGIG00159,"Gigabyte AORUS Gaming Notebook 17.3"" FHD Intel i5-12500H GeForce RTX 4060 16GB 512GB SSD Windows 11 Home, 9KF-E3US513SH",GIGABYTE,"['Laptops, Tablet', None, None, None]",1599.0,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '17.3""'}","{'Brand': 'Gigabyte', 'Model': 'AORUS Gaming Notebook', 'Model Code': '9KF-E3US513SH', 'CPU': 'Intel i5-12500H', 'GPU': 'GeForce RTX 4060', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '17.3""', 'Resolution': 'FHD'}" -238178,LPGIG00158,"Gigabyte AORUS Gaming Notebook 15.6"" FHD Intel i5-12500H GeForce RTX 4050 8GB 512GB SSD Windows 11 Home, 9MF-E2US383SH",GIGABYTE,"['Laptops, Tablet', None, None, None]",1499.0,"{'GPU': 'GeForce RTX 4050', 'Maximum Resolution': '1080p Full HD', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '15.6""'}","{'Brand': 'Gigabyte', 'Model': 'AORUS Gaming Notebook', 'Model Code': '9MF-E2US383SH', 'CPU': 'Intel i5-12500H', 'GPU': 'GeForce RTX 4050', 'RAM': '8GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -238124,LPLGE00035,"LG Gram Consumer Notebook 16"" WQXGA Intel i7-1360P Intel Iris Xe 16GB 512GB SSD Windows 11 Home, 16T90R-K.AA75A9",LG,"['Laptops, Tablet', None, None, None]",2299.99,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}","{'Brand': 'LG', 'Model': 'Gram', 'Model Code': '16T90R-K.AA75A9', 'CPU': 'Intel i7-1360P', 'GPU': 'Intel Iris Xe', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '16""', 'Resolution': 'WQXGA (2560x1600)'}" -238122,LPLGE00034,"LG Gram Consumer Notebook 17"" WQXGA Intel i7-1360P GeForce RTX 3050 16GB 1TB SSD Windows 11 Home,17Z90R-A.AA78A9",LG,"['Laptops, Tablet', None, None, None]",1999.99,"{'GPU': 'GeForce RTX 3050', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '17""'}","{'Brand': 'LG', 'Model': 'Gram', 'Model Code': '17Z90R-A.AA78A9', 'CPU': 'Intel i7-1360P', 'GPU': 'GeForce RTX 3050', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '17""', 'Resolution': 'WQXGA'}" -238052,LPASU00734OB,"ASUS Zenbook 14X Consumer Notebook 14"" OLED Intel i7-1260P GeForce MX550 16GB 512GB SSD Windows 11 Home, UX5400ZB-DS72T-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",1519.05,"{'GPU': 'GeForce\xa0MX550', 'Maximum Resolution': '2880 x 1800', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '14""'}","{'Brand': 'ASUS', 'Model': 'Zenbook 14X', 'Model Code': 'UX5400ZB-DS72T-CA', 'CPU': 'Intel i7-1260P', 'GPU': 'GeForce MX550', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '14"" OLED'}" -237797,LPASU00707OB,"ASUS Zenbook OLED Touchscreen Consumer Notebook 14"" WQXGA AMD Ryzen 7 7730U AMD Radeon 16GB 1TB SSD Windows 11 Home, UM3402YAR-DS71T-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",1139.05,"{'GPU': 'AMD Radeon', 'Maximum Resolution': '2880X1800', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '14""'}","{'Brand': 'ASUS', 'Model': 'Zenbook OLED', 'Model Code': 'UM3402YAR-DS71T-CA', 'CPU': 'AMD Ryzen 7 7730U', 'GPU': 'AMD Radeon', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '14""', 'Resolution': 'WQXGA', 'Touchscreen': 'Yes'}" -237644,LPMSI00540OB,"MSI Thin GF63 Gaming Notebook 15.6"" FHD Intel i7-12650H GeForce RTX 4050 16GB 512GB SSD Windows 11 Home, 12VE-033CA(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",1349.1,"{'GPU': 'GeForce RTX 4050', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}","{'Brand': 'MSI', 'Model': 'Thin GF63', 'Model Code': '12VE-033CA', 'CPU': 'Intel i7-12650H', 'GPU': 'GeForce RTX 4050', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -237622,LPGIG00147OB,"Gigabyte G5 Gaming Laptop 15.6"" FHD, Intel i5-12500H, GeForce RTX 4060, 8GB RAM, 512GB SSD, Windows 11 Home, G5 KF-E3US333SH(Open Box)",GIGABYTE,"['Laptops, Tablet', None, None, None]",899.1,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '1080p Full HD', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '15.6""'}","{'Brand': 'Gigabyte', 'Model': 'G5 KF-E3US333SH', 'CPU': 'Intel i5-12500H', 'GPU': 'GeForce RTX 4060', 'RAM': '8GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -237594,LPLEN03269OB,"Lenovo IdeaPad 3 Consumer Notebook 15.6"" FHD AMD Ryzen 7 5825U Integrated Radeon Graphics 8GB 256GB SSD Windows 11 Home, 082RN0013CC(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",522.39,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1080p Full HD', 'Refresh Rate': '60Hz', 'SSD Capacity': '256GB'}","{'Brand': 'Lenovo', 'Model': 'IdeaPad 3', 'Model Code': '082RN0013CC', 'CPU': 'AMD Ryzen 7 5825U', 'GPU': 'Integrated Radeon Graphics', 'RAM': '8GB', 'Storage': '256GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -237454,LPASU00735OB,"ASUS Vivobook 16X 4K OLED Notebook 16"" Intel i5-12500H Iris Xe Graphics 16GB 512GB SSD Windows 11 Home, X1603ZA-DS51-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",944.18999938965,"{'GPU': 'Iris Xe Graphics', 'Maximum Resolution': '3840 x 2400', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}","{'Brand': 'ASUS', 'Model': 'Vivobook 16X', 'Model Code': 'X1603ZA-DS51-CA', 'CPU': 'Intel i5-12500H', 'GPU': 'Iris Xe Graphics', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '16""', 'Resolution': '4K OLED'}" -237370,LPMSI00481OB,"MSI Raider GE76 Gaming Notebook 17.3"" FHD Intel i9-12900HK RTX3080TI 32GB 1TB SSD Windows 11 Pro .(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",2173.39,"{'Memory': '32GB', 'Screen Size': '17.3""', 'Operating System': 'Windows 11 Pro', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '360Hz', 'SSD Capacity': '1TB'}","{'Brand': 'MSI', 'Model': 'Raider GE76', 'CPU': 'Intel i9-12900HK', 'GPU': 'RTX3080TI', 'RAM': '32GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Pro', 'Screen': '17.3""', 'Resolution': 'FHD'}" -237290,LPCNO00060OB,"ASUS ZenBook Consumer Notebook 15.6"" FHD AMD Ryzen 7 5700U GeForce MX450 8GB 256GB SSD Windows 11 Home, Q508UG-212.R7TBL(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",569.89,"{'GPU': 'GeForce MX450', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '15.6""'}","{'Brand': 'ASUS', 'Model': 'ZenBook', 'Model Code': 'Q508UG-212.R7TBL', 'CPU': 'AMD Ryzen 7 5700U', 'GPU': 'GeForce MX450', 'RAM': '8GB', 'Storage': '256GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -237289,LPMSI00539OB,"MSI Katana 15 Gaming Laptop 15.6"" FHD Intel i7-12650H GeForce RTX 4060 16GB 1TB SSD Windows 11 Home, B12VFK-237CA(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",1259.1,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}","{'Brand': 'MSI', 'Model': 'Katana 15', 'Model Code': 'B12VFK-237CA', 'CPU': 'Intel i7-12650H', 'GPU': 'GeForce RTX 4060', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -237089,LPACE00959,"Acer PH16-71-71AV Consumer Notebook 16"" QHD Intel i7-13700HX GeForce RTX 4060 16GB 1024GB SSD Windows 11, NH.QJQAA.002",ACER,"['Laptops, Tablet', None, None, None]",2299.99,"{'GPU': 'GeForce RTX 4060', 'Refresh Rate': '165Hz', 'Maximum Resolution': '1080p Full HD', 'Touch Screen': 'No', 'Operating System': 'Windows 11', 'Memory': '16GB'}","{'Brand': 'Acer', 'Model': 'PH16-71-71AV', 'Model Code': 'NH.QJQAA.002', 'CPU': 'Intel i7-13700HX', 'GPU': 'GeForce RTX 4060', 'RAM': '16GB', 'Storage': '1024GB SSD', 'OS': 'Windows 11', 'Screen': '16""', 'Resolution': 'QHD'}" -237088,LPACE00958,"Acer PHN16-71-788N Consumer Notebook 16"" FHD Intel i7-13700HX GeForce RTX 4060 16GB 1024GB SSD Windows 11,NH.QLUAA.001",ACER,"['Laptops, Tablet', None, None, None]",2099.99,"{'GPU': 'GeForce RTX 4060', 'Refresh Rate': '165Hz', 'Maximum Resolution': '1080p Full HD', 'Touch Screen': 'No', 'Operating System': 'Windows 11', 'Memory': '16GB'}","{'Brand': 'Acer', 'Model': 'PHN16-71-788N', 'CPU': 'Intel i7-13700HX', 'GPU': 'GeForce RTX 4060', 'RAM': '16GB', 'Storage': '1024GB SSD', 'OS': 'Windows 11', 'Screen': '16""', 'Resolution': 'FHD', 'Model Code': 'NH.QLUAA.001'}" -237087,LPACE00957,"Acer AN16-51-74BV Consumer Notebook 16"" FHD Intel i7-13700H GeForce RTX 4050 16GB 1024GB SSD Windows 11, NH.QJMAA.002",ACER,"['Laptops, Tablet', None, None, None]",1899.99,"{'GPU': 'GeForce RTX 4050', 'Refresh Rate': '165Hz', 'Maximum Resolution': '1080p Full HD', 'Touch Screen': 'No', 'Operating System': 'Windows 11', 'Memory': '16GB'}","{'Brand': 'Acer', 'Model': 'AN16-51-74BV', 'Model Code': 'NH.QJMAA.002', 'CPU': 'Intel i7-13700H', 'GPU': 'GeForce RTX 4050', 'RAM': '16GB', 'Storage': '1024GB SSD', 'OS': 'Windows 11', 'Screen': '16""', 'Resolution': 'FHD'}" -237085,LPACE00955,"ACER Nitro Gaming Notebook 15.6"" FHD Intel i5-12500H GeForce RTX 4050 8GB 512GB SSD Windows 11 . NH.QLZAA.005",ACER,"['Laptops, Tablet', None, None, None]",1399.99,"{'GPU': 'GeForce RTX 4050', 'Refresh Rate': '144Hz', 'Maximum Resolution': '1080p Full HD', 'Touch Screen': 'No', 'Operating System': 'Windows 11', 'Memory': '8GB'}","{'Brand': 'ACER', 'Series': 'Nitro', 'Model': 'NH.QLZAA.005', 'CPU': 'Intel i5-12500H', 'GPU': 'GeForce RTX 4050', 'RAM': '8GB', 'Storage': '512GB SSD', 'OS': 'Windows 11', 'Screen': '15.6""', 'Resolution': 'FHD'}" -237082,LPACE00953,"Acer Nitro Gaming Notebook 15.6"" FHD AMD Ryzen R5-7535HS GeForce RTX 3050 8GB 512GB SSD Windows 11, NH.QL5AA.001",ACER,"['Laptops, Tablet', None, None, None]",799.0,"{'GPU': 'GeForce RTX 3050', 'Refresh Rate': '144Hz', 'Maximum Resolution': '1080p Full HD', 'Touch Screen': 'No', 'Operating System': 'Windows 11', 'Memory': '8GB'}","{'Brand': 'Acer', 'Model': 'Nitro Gaming Notebook ', 'Model Code': 'NH.QL5AA.001', 'CPU': 'AMD Ryzen R5-7535HS', 'GPU': 'GeForce RTX 3050', 'RAM': '8GB', 'Storage': '512GB SSD', 'OS': 'Windows 11', 'Screen': '15.6""', 'Resolution': 'FHD'}" -237081,LPACE00952,"ACER Nitro 5 Gaming Notebook 15.6"" FHD Intel i5-12450H GeForce RTX 3050 8GB 512GB SSD Windows 11 .",ACER,"['Laptops, Tablet', None, None, None]",1199.99,"{'GPU': 'GeForce RTX 3050', 'Refresh Rate': '144Hz', 'Maximum Resolution': '1080p Full HD', 'Touch Screen': 'No', 'Operating System': 'Windows 11', 'Memory': '8GB'}","{'Brand': 'Acer', 'Model': 'Nitro 5', 'CPU': 'Intel i5-12450H', 'GPU': 'GeForce RTX 3050', 'RAM': '8GB', 'Storage': '512GB SSD', 'OS': 'Windows 11', 'Screen': '15.6""', 'Resolution': 'FHD'}" -237053,LPACE00948,"Acer A317-53-591M Consumer Notebook 17.3"" Intel i5-1135G7 Integrated GPU 8GB 512GB SSD Windows 11, NX.AD0AA.009",ACER,"['Laptops, Tablet', None, None, None]",999.0,"{'GPU': 'Integrated GPU', 'Maximum Resolution': '1600 x 900', 'Touch Screen': 'No', 'Operating System': 'Windows 11', 'Memory': '8GB', 'Screen Size': '17.3""'}","{'Brand': 'Acer', 'Model': 'A317-53-591M', 'Model Code': 'NX.AD0AA.009', 'CPU': 'Intel i5-1135G7', 'GPU': 'Integrated GPU', 'RAM': '8GB', 'Storage': '512GB SSD', 'OS': 'Windows 11', 'Screen': '17.3""'}" -237044,LPGIG00124OB,"Gigabyte AERO 16 XE5 Gaming Notebook, 16"" UHD, Intel Core i7-12700H, NVIDIA GeForce RTX 3070 Ti, 32GB, 2 TB SSD, Windows 11 Pro, AERO 16 XE5-73US948HP(Open Box)",GIGABYTE,"['Laptops, Tablet', None, None, None]",1349.89,"{'Storage Type': 'SSD', 'CPU Brand': 'Intel', 'Product Condition': 'New', 'Screen Resolution Description': 'UHD', 'Memory': '32GB', 'Screen Size': '16""'}","{'Brand': 'Gigabyte', 'Model': 'AERO 16 XE5', 'Model Code': 'AERO 16 XE5-73US948HP', 'CPU': 'Intel Core i7-12700H', 'GPU': 'NVIDIA GeForce RTX 3070 Ti', 'RAM': '32GB', 'Storage': '2 TB SSD', 'OS': 'Windows 11 Pro', 'Screen': '16""', 'Resolution': 'UHD'}" -237036,LPACE00946,"Acer 15.6"" Consumer Notebook FHD Intel i5-1135G7 Intel Iris 8GB 512GB SSD Windows 11, NX.A1HAA.00G",ACER,"['Laptops, Tablet', None, None, None]",486.88,"{'GPU': 'Intel Iris', 'Maximum Resolution': '1080p Full HD', 'Touch Screen': 'No', 'Operating System': 'Windows 11', 'Memory': '8GB', 'Screen Size': '15.6""'}","{'Brand': 'Acer', 'Screen': '15.6""', 'Resolution': 'FHD', 'CPU': 'Intel i5-1135G7', 'GPU': 'Intel Iris', 'RAM': '8GB', 'Storage': '512GB SSD', 'OS': 'Windows 11', 'Model Code': 'NX.A1HAA.00G'}" -236910,LPACE00945,"Acer Aspire 15.6"" Consumer Notebook Intel i5-10210U 8GB 256GB SSD Windows 11, A515-54-54B9, NX.HN2AA.008",ACER,"['Laptops, Tablet', None, None, None]",436.88000488281,"{'Storage Type': 'SSD', 'CPU Brand': 'Intel', 'Product Condition': 'New', 'Screen Resolution Description': 'FHD', 'Model': 'A515-54-54B9', 'Memory': '8GB'}","{'Brand': 'Acer', 'Model': 'Aspire A515-54-54B9', 'Model Code': 'NX.HN2AA.008', 'CPU': 'Intel i5-10210U', 'RAM': '8GB', 'Storage': '256GB SSD', 'OS': 'Windows 11', 'Screen': '15.6""'}" -236834,LPMSI00538OB,"MSI Katana 17 Gaming Notebook 17.3"" FHD Intel i7-12650H GeForce RTX 4070 16GB 1TB SSD Windows 11 Home, Katana 17 B12VGK-217CA(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",1799.1,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '17.3""'}","{'Brand': 'MSI', 'Model': 'Katana 17 B12VGK-217CA', 'CPU': 'Intel i7-12650H', 'GPU': 'GeForce RTX 4070', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '17.3""', 'Resolution': 'FHD'}" -236578,LPHEW02012,"ASUS Chromebook 11.6"" HD+ Intel Celeron-N4020 Intel UHD Graphics 4GB 32GB eMMC SSD Chrome OS Refurbished, C204MA-SS02-CB",ASUS,"['Laptops, Tablet', None, None, None]",99.0,"{'Storage Type': 'SSD', 'CPU Brand': 'Intel', 'Product Condition': 'Refurbished', 'Product Condition Short': 'Refurb', 'Screen Resolution Description': 'HD+', 'Model': 'C204MA-SS02-CB'}","{'Brand': 'ASUS', 'Model': 'Chromebook C204MA-SS02-CB', 'CPU': 'Intel Celeron-N4020', 'GPU': 'Intel UHD Graphics', 'RAM': '4GB', 'Storage': '32GB eMMC SSD', 'OS': 'Chrome OS', 'Screen': '11.6""', 'Resolution': 'HD+', 'Condition': 'Refurbished'}" -236567,LPGIG00144OB,"Gigabyte AORUS 17X Gaming Notebook 17.3"" QHD Intel Core i9-13900HX RTX 4090 32GB 2TB SSD Windows 11 Pro, AZF-B5US665SP(Open Box)",GIGABYTE,"['Laptops, Tablet', None, None, None]",3644.8900085449,"{'GPU': 'RTX 4090', 'Maximum Resolution': '2560x1440', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '32GB', 'Screen Size': '17.3""'}","{'Brand': 'Gigabyte', 'Series': 'AORUS 17X', 'Model': 'AZF-B5US665SP', 'CPU': 'Intel Core i9-13900HX', 'GPU': 'RTX 4090', 'RAM': '32GB', 'Storage': '2TB SSD', 'OS': 'Windows 11 Pro', 'Screen': '17.3""', 'Resolution': 'QHD'}" -236463,LPASU00685OB,"ASUS VivoBook 14"" Laptop FHD Intel Core i3-1115G4 Intel UHD Graphics 4GB 128GB SSD Windows 11 Home S, F415EA-AS31(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",284.05,"{'GPU': 'Intel UHD Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home S', 'Memory': '4GB', 'Screen Size': '14""'}","{'Brand': 'ASUS', 'Model': 'VivoBook', 'Model Code': 'F415EA-AS31', 'CPU': 'Intel Core i3-1115G4', 'GPU': 'Intel UHD Graphics', 'RAM': '4GB', 'Storage': '128GB SSD', 'OS': 'Windows 11 Home S', 'Screen': '14""', 'Resolution': 'FHD'}" -236431,LPLEN03352,"Lenovo ThinkBook 15 G3 Notebook, 15.6"" FHD, AMD Ryzen 5 5500U, 8GB DDR4, 256GB SSD, AMD Radeon Graphics, Fingerprint Reader, Windows 10 Pro",LENOVO,"['Laptops, Tablet', None, None, None]",599.0,"{'Storage Type': 'SSD', 'CPU Brand': 'Intel', 'Product Condition': 'New', 'Screen Resolution Description': 'FHD', 'Memory': '8GB', 'Screen Size': '15.6""'}","{'Brand': 'Lenovo', 'Model': 'ThinkBook 15 G3', 'Screen': '15.6""', 'Resolution': 'FHD', 'CPU': 'AMD Ryzen 5 5500U', 'RAM': '8GB DDR4', 'Storage': '256GB SSD', 'GPU': 'AMD Radeon Graphics', 'Fingerprint Reader': 'Yes', 'OS': 'Windows 10 Pro'}" -236379,LPLEN03339,"Lenovo ThinkPad T14s Gen 2 14"" Notebook AMD Ryzen 5 PRO 5650U 8GB 256 GB SSD Windows 11 Pro, 20XF00AECA",LENOVO,"['Laptops, Tablet', None, None, None]",1430.2,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '20XF00AECA', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'ThinkPad', 'General InformationProduct Series': 'T14s Gen 2'}","{'Brand': 'Lenovo', 'Model': 'ThinkPad T14s Gen 2', 'Model Code': '20XF00AECA', 'CPU': 'AMD Ryzen 5 PRO 5650U', 'RAM': '8GB', 'Storage': '256GB SSD', 'OS': 'Windows 11 Pro', 'Screen': '14""'}" -236378,LPLEN03338,"Lenovo ThinkPad T14s Gen 2 20XF00AEUS 14"" Notebook - Full HD - 1920 x 1080 - AMD Ryzen 5 PRO 5650U Hexa-core (6 Core) 2.30 GHz - 8 GB Total RAM - 8 GB On-board Memory - 256 GB SSD - Storm Gray - AMD Chip - Windows 11 - AMD Radeon Graphics - In-plane Switc",LENOVO,"['Laptops, Tablet', None, None, None]",999.0,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '20XF00AEUS', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'ThinkPad', 'General InformationProduct Series': 'T14s Gen 2'}","{'Brand': 'Lenovo', 'Model': 'ThinkPad T14s Gen 2', 'Model Code': '20XF00AEUS', 'Screen': '14""', 'Resolution': 'Full HD (1920 x 1080)', 'CPU': 'AMD Ryzen 5 PRO 5650U Hexa-core (6 Core) 2.30 GHz', 'Total RAM': '8 GB', 'On-board Memory': '8 GB', 'Storage': '256 GB SSD', 'Color': 'Storm Gray', 'Graphics': 'AMD Radeon Graphics', 'OS': 'Windows 11', 'Display Technology': 'In-plane Switching (IPS)'}" -236231,LPGIG00146OB,"Gigabyte AORUS 17H Gaming Notebook 17.3"" FHD Intel i7-13700H RTX 4080 16GB 1TB SSD Windows 11 Home, BXF-74US554SH(Open Box)",GIGABYTE,"['Laptops, Tablet', None, None, None]",2249.1,"{'GPU': 'RTX 4080', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '17.3""'}","{'Brand': 'Gigabyte', 'Series': 'AORUS', 'Model': '17H', 'Model Code': 'BXF-74US554SH', 'CPU': 'Intel i7-13700H', 'GPU': 'RTX 4080', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '17.3""', 'Resolution': 'FHD'}" -236120,LPGIG00153,"Gigabyte G5 MF Gaming Notebook 15.6"" FHD Intel i5-12450H GeForce RTX 4050 8GB 512GB SSD Windows 11 Home, G5 MF-F2US333SH",GIGABYTE,"['Laptops, Tablet', None, None, None]",1349.0,"{'GPU': 'GeForce RTX 4050', 'Maximum Resolution': '1080p Full HD', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '15.6""'}","{'Brand': 'Gigabyte', 'Model': 'G5 MF', 'Model Code': 'MF-F2US333SH', 'CPU': 'Intel i5-12450H', 'GPU': 'GeForce RTX 4050', 'RAM': '8GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -236096,LPGIG00150,"Gigabyte AORUS 15X Gaming Notebook 15.6"" QHD Intel i7-13700HX GeForce RTX 4070 16GB 1TB SSD Windows 11 Home, ASF-83US754SH",GIGABYTE,"['Laptops, Tablet', None, None, None]",2399.0,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '2560 x 1440', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}","{'Brand': 'Gigabyte', 'Model': 'AORUS 15X', 'Model Code': 'ASF-83US754SH', 'CPU': 'Intel i7-13700HX', 'GPU': 'GeForce RTX 4070', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'QHD'}" -235945,LPLEN02684OB,"Lenovo ThinkPad X1 Yoga Gen 5 Business 2 in 1 Notebook, 14"" Touchscreen, Full HD 1920 x 1080, Intel Core i5-10210U, 16 GB, 256 GB SSD, Windows 10 Pro, 20UB0067US(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",931.92000068665,"{'Memory': '16GB', 'Screen Size': '14""', 'Operating System': 'Windows 10 Pro', 'Maximum Resolution': '1080p Full HD', 'Refresh Rate': '60Hz', 'SSD Capacity': '256GB'}","{'Brand': 'Lenovo', 'Series': 'ThinkPad X1 Yoga', 'Generation': 'Gen 5', 'Type': 'Business 2 in 1 Notebook', 'Screen Size': '14""', 'Touchscreen': 'Yes', 'Resolution': 'Full HD (1920 x 1080)', 'CPU': 'Intel Core i5-10210U', 'RAM': '16 GB', 'Storage': '256 GB SSD', 'OS': 'Windows 10 Pro', 'Model': '20UB0067US', 'Condition': 'Open Box'}" -235934,LPLEN03299OB,"Lenovo ThinkPad T14 Gen 2 Notebook, 14"" Full HD, Intel Core i5-1135G7, GeForce MX450 2GB, 8GB RAM, 256GB SSD, Windows 11 Pro, 3Yr Lenovo On-site Warranty, 20W1SBJG00(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",759.89,"{'GPU': 'GeForce MX450', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '8GB', 'Screen Size': '14""'}","{'Brand': 'Lenovo', 'Model': 'ThinkPad T14 Gen 2', 'Model Code': '20W1SBJG00', 'CPU': 'Intel Core i5-1135G7', 'GPU': 'GeForce MX450 2GB', 'RAM': '8GB', 'Storage': '256GB SSD', 'OS': 'Windows 11 Pro', 'Screen': '14""', 'Resolution': 'Full HD', 'Warranty': '3 Years Lenovo On-site Warranty'}" -235931,LPMSI00530OB,"MSI Katana GF66 Gaming Notebook 15.6"" FHD Intel i5-11400H GeForce RTX 3050 8GB 512GB SSD Windows 11 Home,11UC-1091US(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",651.48999847412,"{'GPU': 'GeForce RTX 3050', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '15.6""'}","{'Brand': 'MSI', 'Model': 'Katana GF66', 'Model Code': '11UC-1091US', 'CPU': 'Intel i5-11400H', 'GPU': 'GeForce RTX 3050', 'RAM': '8GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -235850,LPACE00943,"Acer A515-56-351F Consumer Notebook 15.6"" FHD Intel Ci3-1115G4 Integrated GPU 8GB 256GB SSD Windows 11 S, NX.AWEAA.003",ACER,"['Laptops, Tablet', None, None, None]",749.0,"{'GPU': 'Integrated GPU', 'Maximum Resolution': '1080p Full HD', 'Touch Screen': 'No', 'Operating System': 'Windows 11 S', 'Memory': '8GB', 'Screen Size': '15.6""'}","{'Brand': 'Acer', 'Model': 'A515-56-351F', 'Model Code': 'NX.AWEAA.003', 'CPU': 'Intel Ci3-1115G4', 'GPU': 'Integrated GPU', 'RAM': '8GB', 'Storage': '256GB SSD', 'OS': 'Windows 11 S', 'Screen': '15.6""', 'Resolution': 'FHD'}" -235849,LPACE00942,"ACER A315-56-54YT Consumer Notebook 15.6"" FHD Intel Core i5-1035G1 Integrated Graphic 8GB 256GB SSD Windows 11, NX.A0TAA.00G",ACER,"['Laptops, Tablet', None, None, None]",749.0,"{'GPU': 'Integrated Graphic', 'Maximum Resolution': '1080p Full HD', 'Touch Screen': 'No', 'Operating System': 'Windows 11', 'Memory': '8GB', 'Screen Size': '15.6""'}","{'Brand': 'ACER', 'Model': 'A315-56-54YT', 'Model Code': 'NX.A0TAA.00G', 'CPU': 'Intel Core i5-1035G1', 'GPU': 'Integrated Graphic', 'RAM': '8GB', 'Storage': '256GB SSD', 'OS': 'Windows 11', 'Screen': '15.6""', 'Resolution': 'FHD'}" -235806,LPCNO00060,"ASUS ZenBook Consumer Notebook 15.6"" FHD AMD Ryzen 7 5700U GeForce MX450 8GB 256GB SSD Windows 11 Home, Q508UG-212.R7TBL",ASUS,"['Laptops, Tablet', None, None, None]",599.88,"{'GPU': 'GeForce MX450', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '15.6""'}","{'Brand': 'ASUS', 'Model': 'ZenBook', 'Model Code': 'Q508UG-212.R7TBL', 'CPU': 'AMD Ryzen 7 5700U', 'GPU': 'GeForce MX450', 'RAM': '8GB', 'Storage': '256GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -235786,LPLEN03312,"Lenovo T490 Business Notebook 14"" FHD Intel i5-8265U Intel UHD Graphics 16GB 256GB SSD Windows 10 Pro Refurbished",LENOVO,"['Laptops, Tablet', None, None, None]",399.0,"{'GPU': 'Intel UHD Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 10 Pro', 'Memory': '16GB', 'Screen Size': '14""'}","{'Brand': 'Lenovo', 'Model': 'T490', 'CPU': 'Intel i5-8265U', 'GPU': 'Intel UHD Graphics', 'RAM': '16GB', 'Storage': '256GB SSD', 'OS': 'Windows 10 Pro', 'Screen': '14""', 'Resolution': 'FHD', 'Condition': 'Refurbished'}" -235465,LPGIG00142OB,"Gigabyte G Series Gaming Notebook 15.6"" FHD Intel i5-12500H GeForce RTX 3060 16GB 512GB SSD Windows 11 Home, G5 KE-52US213SH(Open Box)",GIGABYTE,"['Laptops, Tablet', None, None, None]",899.89,"{'GPU': 'GeForce RTX 3060', 'Maximum Resolution': '1080p Full HD', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}","{'Brand': 'Gigabyte', 'Series': 'G Series', 'Model': 'G5 KE-52US213SH', 'CPU': 'Intel i5-12500H', 'GPU': 'GeForce RTX 3060', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -235464,LPMSI00543,"MSI Katana GF76 Gaming Notebook 17.3"" FHD Intel i7-11800H GeForce RTX 3050 Ti 16GB 512GB SSD Windows 10 Home .",MSI,"['Laptops, Tablet', None, None, None]",1199.0,"{'GPU': 'GeForce RTX 3050 Ti', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 10 Home', 'Memory': '16GB', 'Screen Size': '17.3""'}","{'Brand': 'MSI', 'Model': 'Katana GF76', 'CPU': 'Intel i7-11800H', 'GPU': 'GeForce RTX 3050 Ti', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 10 Home', 'Screen': '17.3""', 'Resolution': 'FHD'}" -235356,LPLEN03308,"Lenovo ThinkPad T14 Gen 2 Business Notebook, 14"" Full HD, Intel Core i5-1135G7, MX450 2GB, 16GB RAM, 256GB + 512GB SSD, Windows 11 Pro, 3Yr On-site Warranty",LENOVO,"['Laptops, Tablet', None, None, None]",1799.0,"{'GPU': 'GeForce MX450', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '16GB', 'Screen Size': '14""'}","{'Brand': 'Lenovo', 'Model': 'ThinkPad T14 Gen 2', 'Screen': '14"" Full HD', 'CPU': 'Intel Core i5-1135G7', 'GPU': 'MX450 2GB', 'RAM': '16GB', 'Storage': '256GB + 512GB SSD', 'OS': 'Windows 11 Pro', 'Warranty': '3 Years On-site Warranty'}" -235353,LPLEN03307,"Lenovo ThinkPad T14 Gen 2 Business Notebook, 14"" Full HD, Intel Core i5-1135G7, MX450 2GB, 16GB RAM, 256GB SSD, Windows 11 Pro, 3Yr On-site Warranty",LENOVO,"['Laptops, Tablet', None, None, None]",1599.0,"{'GPU': 'GeForce MX450', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '16GB', 'Screen Size': '14""'}","{'Brand': 'Lenovo', 'Model': 'ThinkPad T14 Gen 2', 'Screen Size': '14""', 'Resolution': 'Full HD', 'CPU': 'Intel Core i5-1135G7', 'GPU': 'MX450 2GB', 'RAM': '16GB', 'Storage': '256GB SSD', 'Operating System': 'Windows 11 Pro', 'Warranty': '3-year On-site Warranty'}" -235266,LPLEN03301,"Lenovo IdeaPad Flex 5 14"" Touchscreen Convertible Notebook, OLED 2.8K, Intel i7-1255U, 16GB RAM, 512GB SSD, Storm Gray, Windows 11 Home",LENOVO,"['Laptops, Tablet', None, None, None]",999.0,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '82R7000ECF', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'IdeaPad', 'General InformationProduct Series': 'Flex 5 14IAU7'}","{'Brand': 'Lenovo', 'Model': 'IdeaPad Flex 5', 'Screen Size': '14""', 'Display Type': 'Touchscreen (OLED)', 'Resolution': '2.8K', 'CPU': 'Intel i7-1255U', 'RAM': '16GB', 'Storage': '512GB SSD', 'Color': 'Storm Gray', 'OS': 'Windows 11 Home'}" -235125,LPACE00940,"Acer Nitro Gaming Notebook 15.6"" FHD Intel i7-12700H GeForce RTX 3060 16GB 512GB SSD Windows 11, NH.QFMAA.005-CC",ACER,"['Laptops, Tablet', None, None, None]",1399.0,"{'Model': 'AN515-58-7272-CA', 'Memory': '16GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11', 'Maximum Resolution': '1080p Full HD', 'Refresh Rate': '144Hz'}","{'Brand': 'Acer', 'Model': 'Nitro', 'Model Code': 'NH.QFMAA.005-CC', 'CPU': 'Intel i7-12700H', 'GPU': 'GeForce RTX 3060', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11', 'Screen': '15.6""', 'Resolution': 'FHD'}" -235121,LPASU00735,"ASUS Vivobook 16X 4K OLED Notebook 16"" Intel i5-12500H Iris Xe Graphics 16GB 512GB SSD Windows 11 Home, X1603ZA-DS51-CA",ASUS,"['Laptops, Tablet', None, None, None]",993.87999725342,"{'GPU': 'Iris Xe Graphics', 'Maximum Resolution': '3840 x 2400', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}","{'Brand': 'ASUS', 'Model': 'Vivobook 16X', 'Model Code': 'X1603ZA-DS51-CA', 'CPU': 'Intel i5-12500H', 'GPU': 'Iris Xe Graphics', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '16""', 'Resolution': '4K OLED'}" -235095,LPLEN03299,"Lenovo ThinkPad T14 Gen 2 Notebook, 14"" Full HD, Intel Core i5-1135G7, GeForce MX450 2GB, 8GB RAM, 256GB SSD, Windows 11 Pro, 3Yr Lenovo On-site Warranty, 20W1SBJG00",LENOVO,"['Laptops, Tablet', None, None, None]",799.88,"{'GPU': 'GeForce MX450', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '8GB', 'Screen Size': '14""'}","{'Brand': 'Lenovo', 'Model': 'ThinkPad T14 Gen 2', 'Model Code': '20W1SBJG00', 'CPU': 'Intel Core i5-1135G7', 'GPU': 'GeForce MX450 2GB', 'RAM': '8GB', 'Storage': '256GB SSD', 'OS': 'Windows 11 Pro', 'Screen': '14""', 'Resolution': 'Full HD', 'Warranty': '3 Years Lenovo On-site Warranty'}" -235072,LPMSI00538,"MSI Katana 17 Gaming Notebook 17.3"" FHD Intel i7-12650H GeForce RTX 4070 16GB 1TB SSD Windows 11 Home, Katana 17 B12VGK-217CA",MSI,"['Laptops, Tablet', None, None, None]",1999.0,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '17.3""'}","{'Brand': 'MSI', 'Model': 'Katana 17 B12VGK-217CA', 'CPU': 'Intel i7-12650H', 'GPU': 'GeForce RTX 4070', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '17.3""', 'Resolution': 'FHD'}" -235071,LPMSI00537,"MSI Pulse 17 Gaming Notebook 17.3"" FHD Intel i7-13700H GeForce RTX 4070 16GB 1TB SSD Windows 11 Home, B13VGK-216CA",MSI,"['Laptops, Tablet', None, None, None]",1999.0,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '17.3""'}","{'Brand': 'MSI', 'Model': 'Pulse 17', 'Model Code': 'B13VGK-216CA', 'CPU': 'Intel i7-13700H', 'GPU': 'GeForce RTX 4070', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '17.3""', 'Resolution': 'FHD'}" -235034,LPASU00731,"ASUS ROG Flow Gaming Notebook 13.4"" WQXGA Intel i9-13900H RTX 4050 16GB 1TB SSD Windows 11 Home, GZ301VU-DS91T-CA",ASUS,"['Laptops, Tablet', None, None, None]",2499.0,"{'GPU': 'RTX\xa04050', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '13.4""'}","{'Brand': 'ASUS', 'Model': 'ROG Flow', 'Model Code': 'GZ301VU-DS91T-CA', 'CPU': 'Intel i9-13900H', 'GPU': 'RTX 4050', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '13.4""', 'Resolution': 'WQXGA'}" -234976,LPASU00728,"ASUS Zephyrus Duo Gaming Notebook 16"" WQXGA AMD Ryzen 9 7945HX RTX 4090 32GB 2TB SSD Windows 11 Pro, GX650PY-XS97",ASUS,"['Laptops, Tablet', None, None, None]",4999.0,"{'GPU': 'RTX\xa04090', 'Maximum Resolution': '2560X1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '32GB', 'Screen Size': '16""'}","{'Brand': 'ASUS', 'Model': 'Zephyrus Duo', 'Model Code': 'GX650PY-XS97', 'Screen': '16""', 'Resolution': 'WQXGA', 'CPU': 'AMD Ryzen 9 7945HX', 'GPU': 'RTX 4090', 'RAM': '32GB', 'Storage': '2TB SSD', 'OS': 'Windows 11 Pro'}" -234830,LPMSI00534,"MSI Raider GE78 HX Gaming Notebook 17"" QHD Intel i9-13980HX GeForce RTX 4080 64GB 2TB SSD Windows 11 Pro, Raider GE78HX 13VH-080US",MSI,"['Laptops, Tablet', None, None, None]",4499.0,"{'GPU': 'GeForce RTX 4080', 'Maximum Resolution': '2560x1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '64GB', 'Screen Size': '17""'}","{'Brand': 'MSI', 'Model': 'Raider GE78 HX', 'Model Code': '13VH-080US', 'CPU': 'Intel i9-13980HX', 'GPU': 'GeForce RTX 4080', 'RAM': '64GB', 'Storage': '2TB SSD', 'OS': 'Windows 11 Pro', 'Screen': '17""', 'Resolution': 'QHD'}" -234829,LPMSI00533,"MSI Raider GE78 HX Gaming Notebook 17"" QHD Intel i9-13980HX GeForce RTX 4090 32GB 2TB SSD Windows 11 Pro, GE78HX 13VI-079US",MSI,"['Laptops, Tablet', None, None, None]",4999.0,"{'GPU': 'GeForce RTX 4090', 'Maximum Resolution': '2560x1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '32GB', 'Screen Size': '17""'}","{'Brand': 'MSI', 'Model': 'Raider GE78 HX', 'Model Code': 'GE78HX 13VI-079US', 'CPU': 'Intel i9-13980HX', 'GPU': 'GeForce RTX 4090', 'RAM': '32GB', 'Storage': '2TB SSD', 'OS': 'Windows 11 Pro', 'Screen': '17""', 'Resolution': 'QHD'}" -234828,LPMSI00532,"MSI TITAN GT77 Gaming Notebook 17.3"" UHD Mini-LED 144Hz, Intel i9-13980HX GeForce RTX 4080 64GB 2TB SSD Windows 11 Pro, Titan GT77HX 13VH-046US",MSI,"['Laptops, Tablet', None, None, None]",5599.0,"{'GPU': 'GeForce RTX 4080', 'Maximum Resolution': '3840x2160', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '64GB', 'Screen Size': '17.3""'}","{'Brand': 'MSI', 'Model': 'TITAN GT77', 'Model Code': 'GT77HX 13VH-046US', 'CPU': 'Intel i9-13980HX', 'GPU': 'GeForce RTX 4080', 'RAM': '64GB', 'Storage': '2TB SSD', 'OS': 'Windows 11 Pro', 'Screen': '17.3""', 'Resolution': 'UHD', 'Refresh Rate': '144Hz'}" -234427,LPLEN03212OB,"Lenovo IdeaPad 5 Consumer Notebook 15.6"" FHD Intel Core i5-1235U Intel Iris Xe 8GB 512GB SSD Windows 11 Home, 82SF000UCC(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",664.89,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '15.6""'}","{'Brand': 'Lenovo', 'Model': 'IdeaPad 5', 'Model Code': '82SF000UCC', 'CPU': 'Intel Core i5-1235U', 'GPU': 'Intel Iris Xe', 'RAM': '8GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -234344,LPLEN03269,"Lenovo IdeaPad 3 Consumer Notebook 15.6"" FHD AMD Ryzen 7 5825U Integrated Radeon Graphics 8GB 256GB SSD Windows 11 Home, 082RN0013CC",LENOVO,"['Laptops, Tablet', None, None, None]",549.88,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1080p Full HD', 'Refresh Rate': '60Hz', 'SSD Capacity': '256GB'}","{'Brand': 'Lenovo', 'Model': 'IdeaPad 3', 'Model Code': '082RN0013CC', 'CPU': 'AMD Ryzen 7 5825U', 'GPU': 'Integrated Radeon Graphics', 'RAM': '8GB', 'Storage': '256GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -234261,LPLEN03268,"Lenovo ThinkPad T580 15.6"" Business Notebook, Intel Core I5 8350U,16 GB RAM, 256 GB SSD, Windows 10 Pro, Refurbished",LENOVO,"['Laptops, Tablet', None, None, None]",399.88,"{'Maximum Resolution': '1080p Full HD', 'SSD Capacity': '256GB', 'CPU': 'i5-8350U', 'Notebook Type': 'Business Notebook', 'Notebook Chassis': 'Clamshell', 'Touch Screen': 'No'}","{'Brand': 'Lenovo', 'Model': 'ThinkPad T580', 'Screen': '15.6""', 'CPU': 'Intel Core i5-8350U', 'RAM': '16GB', 'Storage': '256GB SSD', 'OS': 'Windows 10 Pro', 'Condition': 'Refurbished'}" -233963,LPCOI00001OB,"CORSAIR VOYAGER Gaming Notebook 16"" QHD AMD Ryzen 7 6800HS Radeon 6800M 16GB 1TB SSD Windows 11 Home,CN-9000003-NA(Open Box)",CORSAIR,"['Laptops, Tablet', None, None, None]",989.89,"{'Memory': '16GB', 'Screen Size': '16""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '2560 x 1600', 'Refresh Rate': '240Hz', 'SSD Capacity': '1TB'}","{'Brand': 'CORSAIR', 'Model': 'VOYAGER Gaming Notebook', 'Model Code': 'CN-9000003-NA', 'CPU': 'AMD Ryzen 7 6800HS', 'GPU': 'Radeon 6800M', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '16""', 'Resolution': 'QHD'}" -233739,LPGIG00141OB,"Gigabyte AORUS 17 Gaming Notebook 17.3"" FHD Intel i7-12700H GeForce RTX 3080 Ti 32GB 1TB SSD Windows 11 Home, YE5-74US544SH(Open Box)",GIGABYTE,"['Laptops, Tablet', None, None, None]",1799.1,"{'GPU': 'GeForce RTX 3080 Ti', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '32GB', 'Screen Size': '17.3""'}","{'Brand': 'Gigabyte', 'Model': 'AORUS 17', 'Model Code': 'YE5-74US544SH', 'CPU': 'Intel i7-12700H', 'GPU': 'GeForce RTX 3080 Ti', 'RAM': '32GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '17.3""', 'Resolution': 'FHD'}" -233431,LPLEN03053OB,"Lenovo IdeaPad 5 Consumer Notebook 15.6"" FHD AMD Ryzen 7 5825U Integrated Radeon 8GB 512GB SSD Windows 11 Home, 82SG000PCC(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",552.78999023437,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1080p Full HD', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}","{'Brand': 'Lenovo', 'Model': 'IdeaPad 5', 'Model Code': '82SG000PCC', 'CPU': 'AMD Ryzen 7 5825U', 'GPU': 'Integrated Radeon', 'RAM': '8GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -233416,LPMSI00528,"MSI CreatorPro Business Notebook 16"" QHD+ Intel i7-12700H RTX A3000 32GB 1TB SSD Windows 11 Pro, B12UKST-074CA",MSI,"['Laptops, Tablet', None, None, None]",3999.0,"{'GPU': 'RTX A3000', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Pro', 'Memory': '32GB', 'Screen Size': '16""'}","{'Brand': 'MSI', 'Model': 'CreatorPro', 'Product Type': 'Business Notebook', 'Screen Size': '16""', 'Resolution': 'QHD+', 'CPU': 'Intel i7-12700H', 'GPU': 'RTX A3000', 'RAM': '32GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Pro', 'Model Code': 'B12UKST-074CA'}" -233412,LPMSI00527,"MSI CreatorPro Business Notebook 16"" QHD+ Intel i7-12700H NVIDIA RTX A5500 32GB 1TB SSD Windows 11 Pro,",MSI,"['Laptops, Tablet', None, None, None]",5299.0,"{'GPU': 'NVIDIA Quadro RTX A5500', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Pro', 'Memory': '32GB', 'Screen Size': '16""'}","{'Brand': 'MSI', 'Model': 'CreatorPro', 'Type': 'Business Notebook', 'Screen Size': '16""', 'Resolution': 'QHD+', 'CPU': 'Intel i7-12700H', 'GPU': 'NVIDIA RTX A5500', 'RAM': '32GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Pro'}" -233185,LPLEN03202OB,"Lenovo ThinkPad X380 Yoga Business Notebook 13.3"" FHD Intel i5-8350U Integrated GPU 16GB 512GB SSD Windows 10 Pro Refurbished(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",404.1,"{'GPU': 'Integrated', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'Yes', 'Operating System': 'Windows 10 Pro', 'Memory': '16GB', 'Screen Size': '13.3""'}","{'Brand': 'Lenovo', 'Model': 'ThinkPad X380 Yoga', 'CPU': 'Intel i5-8350U', 'GPU': 'Integrated', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 10 Pro', 'Screen': '13.3""', 'Resolution': 'FHD', 'Condition': 'Refurbished (Open Box)'}" -232961,LPMSI00524,"MSI GP66 Leopard Gaming Notebook 15.6"" FHD Intel Core i7-11800H NVIDIA RTX3070 16GB 512GB SSD Windows 11 Home .",MSI,"['Laptops, Tablet', None, None, None]",1999.0,"{'Memory': '16GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '144Hz', 'SSD Capacity': '512GB'}","{'Brand': 'MSI', 'Model': 'GP66 Leopard', 'CPU': 'Intel Core i7-11800H', 'GPU': 'NVIDIA RTX3070', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -232811,LPMSI00514OB,"MSI Summit E13 Flip Evo Notebook 13.4"" FHD Intel Core i7-1280P Intel Iris Xe 16GB 1TB SSD Windows 11 Home, A12MT-036CA(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",1318.4899984741,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920x1200', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '13.4""'}","{'Brand': 'MSI', 'Model': 'Summit E13 Flip Evo', 'Model Code': 'A12MT-036CA', 'CPU': 'Intel Core i7-1280P', 'GPU': 'Intel Iris Xe', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '13.4""', 'Resolution': 'FHD'}" -232296,LPSAS00147,"Samsung Galaxy Tab S6 Lite (2022 Edition) SM-P613 Tablet - 10.4"" WUXGA+ - Octa-core (Kryo 465 Gold Dual-core (2 Core) 2.30 GHz + Kryo 465 Silver Hexa-core (6 Core) 1.80 GHz) - 4 GB RAM - 64 GB Storage - Android 12 - Oxford Gray - Qualcomm SM7125 Snapdrago",SAMSUNG,"['Laptops, Tablet', None, None, None]",465.06,"{'General InformationManufacturer': 'Samsung', 'General InformationManufacturer Part Number': 'SM-P613NZAAXAC', 'General InformationBrand Name': 'Samsung', 'General InformationProduct Line': 'Galaxy Tab S6 Lite (2022 Edition)', 'General InformationProduct Model': 'SM-P613', 'General InformationProduct Name': 'Galaxy Tab S6 Lite (2022 Edition) SM-P613 Tablet'}","{'Brand': 'Samsung', 'Model': 'Galaxy Tab S6 Lite (2022 Edition)', 'Model Code': 'SM-P613', 'Screen Size': '10.4""', 'Resolution': 'WUXGA+', 'CPU': 'Octa-core (Kryo 465 Gold Dual-core 2.30 GHz + Kryo 465 Silver Hexa-core 1.80 GHz)', 'RAM': '4GB', 'Storage': '64GB', 'OS': 'Android 12', 'Color': 'Oxford Gray', 'Processor': 'Qualcomm SM7125 Snapdragon'}" -231684,LPASU00666OB,"Asus Vivobook 16 Laptop 16"" WUXGA AMD Ryzen 5 5600H AMD Radeon Graphics 8GB 512GB SSD Windows 11 Home, M1603QA-RH51-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",569.05,"{'GPU': 'AMD Radeon Graphics', 'Maximum Resolution': '1920 x 1200', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '16""'}","{'Brand': 'Asus', 'Model': 'Vivobook 16', 'Model Code': 'M1603QA-RH51-CA', 'CPU': 'AMD Ryzen 5 5600H', 'GPU': 'AMD Radeon Graphics', 'RAM': '8GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '16""', 'Resolution': 'WUXGA'}" -231575,LPACE00912OB,"ACER Nitro 5 Gaming Notebook 15.6"" FHD Intel Core i5-11400H GTX 1650 8GB 256GB SSD Windows 11 Home, NH.QEKAA.007(Open Box)",ACER,"['Laptops, Tablet', None, None, None]",526.39,"{'GPU': 'GTX 1650', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '15.6""'}","{'Brand': 'ACER', 'Model': 'Nitro 5', 'Model Code': 'NH.QEKAA.007', 'CPU': 'Intel Core i5-11400H', 'GPU': 'GTX 1650', 'RAM': '8GB', 'Storage': '256GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -230357,LPLEN03000OB,"Lenovo IdeaPad Flex 5 Consumer Notebook 14"" WUXGA Touchscreen AMD Ryzen 5 5500U AMD Radeon Graphics 8GB 512GB SSD Windows 11 Home, 82R9004HCC(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",554.69000305176,"{'Memory': '8GB', 'Screen Size': '14""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}","{'Brand': 'Lenovo', 'Model': 'IdeaPad Flex 5', 'Model Code': '82R9004HCC', 'CPU': 'AMD Ryzen 5 5500U', 'GPU': 'AMD Radeon Graphics', 'RAM': '8GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '14""', 'Resolution': 'WUXGA', 'Touchscreen': 'Yes'}" -229905,LPLEN03130OB,"Lenovo Consumer Laptop 15.6"" FHD AMD Ryzen 5 5625U AMD Radeon Graphics 12GB 512GB SSD Windows 11 Home, 82RN0015CC(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",664.89,"{'Memory': '12GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}","{'Brand': 'Lenovo', 'Screen': '15.6""', 'Resolution': 'FHD', 'CPU': 'AMD Ryzen 5 5625U', 'GPU': 'AMD Radeon Graphics', 'RAM': '12GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Model Code': '82RN0015CC'}" -229816,LPASU00627OB,"ASUS TUF Gaming Gaming Notebook 15.6"" FHD AMD Ryzen 7 6800H GeForce RTX 3070 16GB 512GB SSD Windows 11 Home, TUF507RR-DS71-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",1412.0600000763,"{'Memory': '16GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '144Hz', 'SSD Capacity': '512GB'}","{'Brand': 'ASUS', 'Series': 'TUF Gaming', 'Model': 'TUF507RR-DS71-CA', 'CPU': 'AMD Ryzen 7 6800H', 'GPU': 'GeForce RTX 3070', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -229767,LPCNO00053OB,"HP 15Z-EF2000 Consumer Notebook 15.6"" FHD AMD Ryzen 5 5500U AMD Radeon Vega 7 8GB 256GB SSD Windows 11 Home, 2J4V7AV(Open Box)",HP,"['Laptops, Tablet', None, None, None]",501.49000038147,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '256GB'}","{'Brand': 'HP', 'Model': '15Z-EF2000', 'Model Code': '2J4V7AV', 'CPU': 'AMD Ryzen 5 5500U', 'GPU': 'AMD Radeon Vega 7', 'RAM': '8GB', 'Storage': '256GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -229750,LPACE00880OB,"ACER Aspire A515-54 Consumer Notebook 15.6"" Intel i7-10510U 8GB 512GB SSD Windows 11 Home, A515-54-75HU, NX.HN2AA.009(Open Box)",ACER,"['Laptops, Tablet', None, None, None]",474.89,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}","{'Brand': 'ACER', 'Model': 'Aspire A515-54', 'Model Code': 'A515-54-75HU, NX.HN2AA.009', 'CPU': 'Intel i7-10510U', 'RAM': '8GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""'}" -229746,LPASU00608OB,"ASUS Vivobook 15 Notebook, 15.6"" FHD, Intel Pentium Silver, Intel UHD Graphics 605, 8GB DDR4, 128GB SSD, Win11 Home, X515MA-DS91-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",379.05,"{'Notebook Type': 'Consumer', 'Notebook Chassis': 'Clamshell', 'Screen Size': '15.6""', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'CPU': 'Intel Pentium Silver'}","{'Brand': 'ASUS', 'Model': 'Vivobook 15', 'Model Code': 'X515MA-DS91-CA', 'CPU': 'Intel Pentium Silver', 'GPU': 'Intel UHD Graphics 605', 'RAM': '8GB DDR4', 'Storage': '128GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -229744,LPCNO00052OB,"ASUS VivoBook F515 Consumer Notebook 15.6"" FHD Intel Core i7-1165G7 Intel Iris Xe Graphics 8GB 512GB SSD Windows 11 Home, F515EA-DH75(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",603.14,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}","{'Brand': 'ASUS', 'Model': 'VivoBook F515', 'Model Code': 'F515EA-DH75', 'CPU': 'Intel Core i7-1165G7', 'GPU': 'Intel Iris Xe Graphics', 'RAM': '8GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -229577,LPASU00610OB,"ASUS TUF Gaming Dash Gaming Notebook 15.6"" FHD Intel i5-12450H GeForce RTX 3050 16GB 512GB SSD Windows 11 Home, TUF517ZC-DS51-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",1159.0899978638,"{'Memory': '16GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '144Hz', 'SSD Capacity': '512GB'}","{'Brand': 'ASUS', 'Series': 'TUF Gaming Dash', 'Model': 'TUF517ZC-DS51-CA', 'CPU': 'Intel i5-12450H', 'GPU': 'GeForce RTX 3050', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -229459,LPLEN03138,"Lenovo Business Notebook 14"" FHD Intel i5-1145G7 Intel Iris Xe 16GB 512GB SSD Windows 11 Pro, 20W00155US",LENOVO,"['Laptops, Tablet', None, None, None]",1599.88,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '20W00155US', 'GPU': 'Intel Iris Xe', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'Maximum Resolution': '1920 x 1080', 'General InformationBrand Name': 'Lenovo'}","{'Brand': 'Lenovo', 'Model': 'Business Notebook', 'Model Code': '20W00155US', 'CPU': 'Intel i5-1145G7', 'GPU': 'Intel Iris Xe', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Pro', 'Screen': '14""', 'Resolution': 'FHD'}" -229425,LPASU00665,"ASUS Zenbook Pro Business Notebook 16"" UHD OLED Intel Core i9-12900H GeForce RTX 3060 32GB 1TB SSD Windows 11 Pro .",ASUS,"['Laptops, Tablet', None, None, None]",3999.0,"{'GPU': 'GeForce RTX\xa03060', 'Maximum Resolution': '3840 x 2400', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Pro', 'Memory': '32GB', 'Screen Size': '16""'}","{'Brand': 'ASUS', 'Model': 'Zenbook Pro', 'Model Code': 'Not specified', 'CPU': 'Intel Core i9-12900H', 'GPU': 'GeForce RTX 3060', 'RAM': '32GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Pro', 'Screen': '16""', 'Resolution': 'UHD OLED'}" -229280,LPASU00658OB,"ASUS ZenBook 14 Consumer Notebook 14"" FHD AMD Ryzen 5 5600H AMD Radeon Vega 7 8GB 512GB SSD Windows 11 Home, UM425QA-EH59-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",664.05,"{'Memory': '8GB', 'Screen Size': '14""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}","{'Brand': 'ASUS', 'Model': 'ZenBook 14', 'Model Code': 'UM425QA-EH59-CA', 'CPU': 'AMD Ryzen 5 5600H', 'GPU': 'AMD Radeon Vega 7', 'RAM': '8GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '14""', 'Resolution': 'FHD'}" -228044,LPMSI00516,"MSI Modern 14 Business Notebook 14"" FHD Intel Core i5-1235U Intel Iris Xe 8GB 512GB SSD Windows 11 Home .",MSI,"['Laptops, Tablet', None, None, None]",929.0,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '14""'}","{'Brand': 'MSI', 'Model': 'Modern 14 Business Notebook', 'CPU': 'Intel Core i5-1235U', 'GPU': 'Intel Iris Xe', 'RAM': '8GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '14""', 'Resolution': 'FHD'}" -227941,LPLEN03049OB,"Lenovo Legion 5 Gaming Notebook 15.6"" FHD AMD Ryzen 7 6800H GeForce RTX 3070 Ti 16GB 512GB SSD Windows 11, 82RD003YCC(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",1780.0900054932,"{'Memory': '16GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '165Hz', 'SSD Capacity': '512GB'}","{'Brand': 'Lenovo', 'Model': 'Legion 5', 'Model Code': '82RD003YCC', 'CPU': 'AMD Ryzen 7 6800H', 'GPU': 'GeForce RTX 3070 Ti', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11', 'Screen': '15.6""', 'Resolution': 'FHD'}" -227818,LPHEW01913OB,"HP 15-DY2067MS Consumer Notebook 15.6"" FHD Touchscreen Intel Core i5-1135G7 Intel Iris X Graphics 12GB 256GB SSD Windows 11 Home, 4W2K2UA(Open Box)",HP,"['Laptops, Tablet', None, None, None]",498.64,"{'Memory': '12GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '256GB'}","{'Brand': 'HP', 'Model': '15-DY2067MS', 'Model Code': '4W2K2UA', 'CPU': 'Intel Core i5-1135G7', 'GPU': 'Intel Iris X Graphics', 'RAM': '12GB', 'Storage': '256GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD', 'Touchscreen': 'Yes'}" -227801,LPCNO00048OB,"ASUS VivoBook R Consumer Notebook 15.6"" FHD Touchscreen Intel Core i5-1135G7 Iris Xe Graphics 8GB 256GB SSD Windows 11 Home, R565EA-US51T(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",474.89,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '256GB'}","{'Brand': 'ASUS', 'Model': 'VivoBook R', 'Model Code': 'R565EA-US51T', 'CPU': 'Intel Core i5-1135G7', 'GPU': 'Intel Iris Xe Graphics', 'RAM': '8GB', 'Storage': '256GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD', 'Touchscreen': 'Yes'}" -227798,LPMSI00513,"MSI Katana GF76 Gaming Notebook 17.3"" FHD Intel Core i7-12700H GeForce RTX3070TI 16GB 1TB SSD Windows 11 Home .",MSI,"['Laptops, Tablet', None, None, None]",2449.0,"{'Memory': '16GB', 'Screen Size': '17.3""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '144Hz', 'SSD Capacity': '1TB'}","{'Brand': 'MSI', 'Model': 'Katana GF76', 'CPU': 'Intel Core i7-12700H', 'GPU': 'GeForce RTX3070TI', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '17.3""', 'Resolution': 'FHD'}" -227738,LPRAZ00055,"RAZER Blade 15 Gaming Notebook 15.6"" QHD Intel Core i7-12800H GeForce RTX 3070 Ti 16GB 1TB SSD Windows 11 Home .",RAZER,"['Laptops, Tablet', None, None, None]",3999.0,"{'Memory': '16GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '2560 x 1440', 'Refresh Rate': '240Hz', 'SSD Capacity': '1TB'}","{'Brand': 'RAZER', 'Model': 'Blade 15', 'CPU': 'Intel Core i7-12800H', 'GPU': 'GeForce RTX 3070 Ti', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'QHD'}" -227687,LPGIG00138,"GIGABYTE AERO 16 Gaming Notebook 15.6"" OLED UHD Intel Core i9-12900H GeForce RTX 3080 Ti 32GB 2TB SSD Windows 11 Pro, YE5-A4US948HP",GIGABYTE,"['Laptops, Tablet', None, None, None]",2599.0,"{'Memory': '32GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Pro', 'Maximum Resolution': '3840x2400', 'Refresh Rate': '60Hz', 'SSD Capacity': '2TB'}","{'Brand': 'GIGABYTE', 'Model': 'AERO 16', 'Model Code': 'YE5-A4US948HP', 'CPU': 'Intel Core i9-12900H', 'GPU': 'GeForce RTX 3080 Ti', 'RAM': '32GB', 'Storage': '2TB SSD', 'OS': 'Windows 11 Pro', 'Screen': '15.6""', 'Screen Type': 'OLED', 'Resolution': 'UHD'}" -227667,LPCNO00054,"LENOVO ThinkPad E15 Gen 2 Business Notebook 15.6"" FHD Intel Core i5-1135G7 Intel Iris Xe Graphics 8GB 256GB SSD Windows 10 Pro .",LENOVO,"['Laptops, Tablet', None, None, None]",999.0,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 10 Pro', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '256GB'}","{'Brand': 'LENOVO', 'Model': 'ThinkPad E15 Gen 2', 'CPU': 'Intel Core i5-1135G7', 'GPU': 'Intel Iris Xe Graphics', 'RAM': '8GB', 'Storage': '256GB SSD', 'OS': 'Windows 10 Pro', 'Screen': '15.6""', 'Resolution': 'FHD'}" -227662,LPCNO00053,"HP 15Z-EF2000 Consumer Notebook 15.6"" FHD AMD Ryzen 5 5500U AMD Radeon Vega 7 8GB 256GB SSD Windows 11 Home, 2J4V7AV",HP,"['Laptops, Tablet', None, None, None]",527.88,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '256GB'}","{'Brand': 'HP', 'Model': '15Z-EF2000', 'Model Code': '2J4V7AV', 'CPU': 'AMD Ryzen 5 5500U', 'GPU': 'AMD Radeon Vega 7', 'RAM': '8GB', 'Storage': '256GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -227402,LPLGE00026OB,"LG Gram Ultra-Lightweight EVO Platform Notebook, 17"" WQXGA, Intel i7-1260P, Intel Iris Xe Graphics, 16GB, 512GB SSD, Windows 11 Home, 17Z90Q-K.AA75A9(Open Box)",LG,"['Laptops, Tablet', None, None, None]",1162.6900030518,"{'Notebook Type': 'Consumer', 'Notebook Chassis': 'Thin and Light', 'Screen Size': '17""', 'Maximum Resolution': '2560 x 1600', 'Refresh Rate': '60Hz', 'CPU': 'i7-1260P'}","{'Brand': 'LG', 'Model': 'Gram', 'Model Code': '17Z90Q-K.AA75A9', 'CPU': 'Intel i7-1260P', 'GPU': 'Intel Iris Xe Graphics', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '17""', 'Resolution': 'WQXGA'}" -227352,LPGIG00133OB,"Gigabyte A5 K1 Gaming Notebook 15.6"" FHD AMD Ryzen 5 5600H GeForce RTX 3060 16GB 512GB SSD Windows 11 Home, A5 K1-AUS1130SB(Open Box)",GIGABYTE,"['Laptops, Tablet', None, None, None]",936.79000152588,"{'Memory': '16GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '144Hz', 'SSD Capacity': '512GB'}","{'Brand': 'Gigabyte', 'Model': 'A5 K1', 'Model Code': 'A5 K1-AUS1130SB', 'CPU': 'AMD Ryzen 5 5600H', 'GPU': 'GeForce RTX 3060', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -227040,LPASU00609OB,"ASUS TUF Gaming Notebook, 15.6” FHD, Intel Core i5-10300H, GeForce GTX 1650, 8GB DDR4, 1TB SSD, Windows 11 Home, FX506LH-DS51-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",824.29000152588,"{'Notebook Type': 'Gaming', 'Notebook Chassis': 'Clamshell', 'Screen Size': '15.6""', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '144Hz', 'CPU': 'Intel Core i5-10300H'}","{'Brand': 'ASUS', 'Model': 'TUF Gaming Notebook', 'Model Code': 'FX506LH-DS51-CA', 'CPU': 'Intel Core i5-10300H', 'GPU': 'GeForce GTX 1650', 'RAM': '8GB DDR4', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -226829,LPLEN03097OB,"Lenovo IdeaPad 3 Notebook, 15.6"" FHD, AMD Ryzen 5 5625U, AMD Radeon Graphics, 12GB DDR4, 512GB SSD, Windows 11 Home, 82RN0018CF(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",474.89,"{'Memory': '12GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'SSD Capacity': '512GB', 'CPU': 'Ryzen 5 5625U'}","{'Brand': 'Lenovo', 'Model': 'IdeaPad 3', 'Model Code': '82RN0018CF', 'CPU': 'AMD Ryzen 5 5625U', 'GPU': 'AMD Radeon Graphics', 'RAM': '12GB DDR4', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -226770,LPACE00896OB,"Acer A715 Gaming Notebook 15.6"" FHD AMD Ryzen 7 5700U RTX3050 16GB 512GB SSD Windows 11, NH.QE5AA.001(Open Box)",ACER,"['Laptops, Tablet', None, None, None]",764.1,"{'Memory': '16GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}","{'Brand': 'Acer', 'Model': 'A715', 'Model Code': 'NH.QE5AA.001', 'CPU': 'AMD Ryzen 7 5700U', 'GPU': 'RTX3050', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11', 'Screen': '15.6""', 'Resolution': 'FHD'}" -226726,LPASU00547OB,"ASUS Vivobook 13 Slate Notebook, 13.3"" FHD Touch Screen, Intel Pentium Silver N6000, Intel UHD Graphics, 4GB, 128GB SSD, Win11 Home, T3300KA-DH91T-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",332.39,"{'Screen Size': '13.3""', 'Memory': '4GB', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '128GB'}","{'Brand': 'ASUS', 'Model': 'Vivobook 13', 'Model Code': 'T3300KA-DH91T-CA', 'Type': 'Slate Notebook', 'Screen': '13.3""', 'Resolution': 'FHD', 'Touch Screen': 'Yes', 'CPU': 'Intel Pentium Silver N6000', 'GPU': 'Intel UHD Graphics', 'RAM': '4GB', 'Storage': '128GB SSD', 'OS': 'Windows 11 Home'}" -226719,LPLGE00021OB,"LG gram Ultra-Lightweight Intel EVO Platform Notebook, 17"" QHD, Intel i5-1155G7, Intel Iris Xe Graphics, 8GB, 512GB SSD, Windows 11 Home, 17Z95P-K.AR55A8(Open Box)",LG,"['Laptops, Tablet', None, None, None]",759.89,"{'Notebook Type': 'Consumer', 'Notebook Chassis': 'Thin and Light', 'Screen Size': '17""', 'Maximum Resolution': '2560 x 1600', 'Refresh Rate': '60Hz', 'CPU': 'i5-1155G7'}","{'Brand': 'LG', 'Model': 'gram', 'Model Code': '17Z95P-K.AR55A8', 'CPU': 'Intel i5-1155G7', 'GPU': 'Intel Iris Xe Graphics', 'RAM': '8GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '17""', 'Resolution': 'QHD', 'Platform': 'Intel EVO'}" -226506,LPLEN03099,"Lenovo ThinkPad E15 Gen 4 21ED0043US 15.6"" Notebook - Full HD - 1920 x 1080 - AMD Ryzen 7 5825U Octa-core (8 Core) 2 GHz - 16 GB Total RAM - 8 GB On-board Memory - 512 GB SSD - Mineral Metallic - AMD Chip - Windows 11 - AMD Radeon Graphics - In-plane Swit",LENOVO,"['Laptops, Tablet', None, None, None]",1199.0,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '21ED0043US', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'ThinkPad', 'General InformationProduct Series': 'E15 Gen 4'}","{'Brand': 'Lenovo', 'Model': 'ThinkPad E15 Gen 4', 'Model Code': '21ED0043US', 'CPU': 'AMD Ryzen 7 5825U Octa-core (8 Core) 2 GHz', 'GPU': 'AMD Radeon Graphics', 'RAM': '16GB (8GB On-board Memory)', 'Storage': '512GB SSD', 'Color': 'Mineral Metallic', 'Chip': 'AMD', 'OS': 'Windows 11', 'Screen': '15.6""', 'Resolution': 'Full HD (1920 x 1080)', 'Display Technology': 'In-plane Switching (IPS)'}" -226464,LPLEN03086OB,"Lenovo Legion 5 Gaming Notebook 16"" QHD Intel i7-12700H GeForce RTX 3070 16GB 512GB SSD Windows 11,82RF00ADCC(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",1529.89,"{'Memory': '16GB', 'Screen Size': '16""', 'Operating System': 'Windows 11', 'Maximum Resolution': '2560 x 1600', 'Refresh Rate': '165Hz', 'SSD Capacity': '512GB'}","{'Brand': 'Lenovo', 'Model': 'Legion 5', 'Model Code': '82RF00ADCC', 'CPU': 'Intel i7-12700H', 'GPU': 'GeForce RTX 3070', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11', 'Screen': '16""', 'Resolution': 'QHD'}" -226419,LPLEN03001OB,"Lenovo Legion 5 Pro Gaming Notebook 16"" QHD AMD Ryzen 7 6800H GeForce RTX 3060 16GB DDR5 1TB SSD Windows 11, 82RG006WCC(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",1397.5899969482,"{'Memory': '16GB', 'Screen Size': '16""', 'Operating System': 'Windows 11', 'Maximum Resolution': '2560 x 1600', 'Refresh Rate': '165Hz', 'SSD Capacity': '1TB'}","{'Brand': 'Lenovo', 'Series': 'Legion 5 Pro', 'Size': '16""', 'Resolution': 'QHD', 'CPU': 'AMD Ryzen 7 6800H', 'GPU': 'GeForce RTX 3060', 'RAM': '16GB DDR5', 'Storage': '1TB SSD', 'OS': 'Windows 11', 'Model': '82RG006WCC (Open Box)'}" -226175,LPMSI00504OB,"MSI GP66 Leopard Gaming Notebook 15.6"" FHD Intel Core i7-11800H NVIDIA RTX3070 16GB 512GB SSD Windows 11 Home, GP66 11UG-689CA Leopard(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",1114.0900007629,"{'Memory': '16GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '144Hz', 'SSD Capacity': '512GB'}","{'Brand': 'MSI', 'Model': 'GP66 Leopard', 'Model Code': 'GP66 11UG-689CA Leopard', 'CPU': 'Intel Core i7-11800H', 'GPU': 'NVIDIA RTX3070', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -225847,LPGIG00136,"Gigabyte AORUS 5 KE4 Gaming Notebook 15.6"" FHD Intel Core i7-12700H GeForce RTX 3060 16GB 1TB SSD Windows 11 Home, KE4-72US314SH",GIGABYTE,"['Laptops, Tablet', None, None, None]",1999.0,"{'Memory': '16GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '240Hz', 'SSD Capacity': '1TB'}","{'Brand': 'Gigabyte', 'Model': 'AORUS 5 KE4', 'Model Code': 'KE4-72US314SH', 'CPU': 'Intel Core i7-12700H', 'GPU': 'GeForce RTX 3060', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -225432,LPHEW01865OB,"HP OMEN 16-b0020ca Gaming Notebook, 16.1"" QHD, Intel Core i7-11800H, NVIDIA GeForce RTX 3070, 16GB DDR4, 1TB SSD, Windows 10 Home, 374U9UA#ABL(Open Box)",HP,"['Laptops, Tablet', None, None, None]",1091.5900007629,"{'Memory': '16GB', 'Screen Size': '16.1', 'Operating System': 'Windows 10 Home', 'Maximum Resolution': '2560 x 1440', 'SSD Capacity': '1TB', 'CPU': 'Intel Corei7-11800H'}","{'Brand': 'HP', 'Model': 'Omen 16-b0020ca', 'Model Code': '374U9UA#ABL', 'CPU': 'Intel Core i7-11800H', 'GPU': 'NVIDIA GeForce RTX 3070', 'RAM': '16GB DDR4', 'Storage': '1TB SSD', 'OS': 'Windows 10 Home', 'Screen': '16.1""', 'Resolution': 'QHD'}" -225199,LPLEN03053,"Lenovo IdeaPad 5 Consumer Notebook 15.6"" FHD AMD Ryzen 7 5825U Integrated Radeon 8GB 512GB SSD Windows 11 Home, 82SG000PCC",LENOVO,"['Laptops, Tablet', None, None, None]",581.88000488281,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1080p Full HD', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}","{'Brand': 'Lenovo', 'Model': 'IdeaPad 5', 'Model Code': '82SG000PCC', 'CPU': 'AMD Ryzen 7 5825U', 'GPU': 'Integrated Radeon', 'RAM': '8GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -225197,LPASU00559OB,"ASUS Zenbook Notebook 13.3"" FHD OLED Intel Core i5-1135G7 Intel Iris Xe Graphics 8GB 256GB SSD Windows 11 Home, UX325EA-DS59-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",741.83999328613,"{'Screen Size': '13.3""', 'Memory': '8GB', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '256GB'}","{'Brand': 'ASUS', 'Model': 'Zenbook Notebook', 'Model Code': 'UX325EA-DS59-CA', 'CPU': 'Intel Core i5-1135G7', 'GPU': 'Intel Iris Xe Graphics', 'RAM': '8GB', 'Storage': '256GB SSD', 'OS': 'Windows 11 Home', 'Screen': '13.3""', 'Resolution': 'FHD OLED'}" -224938,LPMSI00467OB,"MSI Crosshair 15 Gaming Notebook, 15.6"" FHD, Intel Core i7-12700H, RTX3070Ti, 16GB DDR4, 512GB SSD, Windows 11 Home, Crosshair 15 B12UGSZ-480CA(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",1129.39,"{'Memory': '16GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '240Hz', 'SSD Capacity': '512GB'}","{'Brand': 'MSI', 'Model': 'Crosshair 15', 'Model Code': 'B12UGSZ-480CA', 'CPU': 'Intel Core i7-12700H', 'GPU': 'RTX3070Ti', 'RAM': '16GB DDR4', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -224870,LPASU00651,"ASUS P1512CEA Consumer Notebook 15.6"" FHD Intel Core i7-1165G7 Intel Iris Xe Graphics 16GB 1TB SSD Windows 11 Pro,P1512CEA-Q71P-CB",ASUS,"['Laptops, Tablet', None, None, None]",1399.0,"{'Memory': '16GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Pro', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '1TB'}","{'Brand': 'ASUS', 'Model': 'P1512CEA', 'Model Code': 'P1512CEA-Q71P-CB', 'CPU': 'Intel Core i7-1165G7', 'GPU': 'Intel Iris Xe Graphics', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Pro', 'Screen': '15.6""', 'Resolution': 'FHD'}" -224867,LPASU00650,"ASUS Consumer Notebook 15.6"" FHD Intel Core i7-1165G7 Intel Iris Xe Graphics 16GB 1TB SSD Windows 11 Pro .",ASUS,"['Laptops, Tablet', None, None, None]",1399.0,"{'Memory': '16GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Pro', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '1TB'}","{'Brand': 'ASUS', 'Type': 'Consumer Notebook', 'Screen Size': '15.6""', 'Resolution': 'FHD', 'CPU': 'Intel Core i7-1165G7', 'GPU': 'Intel Iris Xe Graphics', 'RAM': '16GB', 'Storage': '1TB SSD', 'Operating System': 'Windows 11 Pro'}" -224865,LPASU00649,"ASUS P1512CEA Consumer Notebook 15.6"" FHD Intel Core i5-1135G7 Intel UHD Graphics 8GB 512GB SSD Windows 11 Pro .",ASUS,"['Laptops, Tablet', None, None, None]",1049.0,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Pro', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}","{'Brand': 'ASUS', 'Model': 'P1512CEA', 'Screen': '15.6""', 'Resolution': 'FHD', 'CPU': 'Intel Core i5-1135G7', 'GPU': 'Intel UHD Graphics', 'RAM': '8GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Pro'}" -224859,LPASU00647,"ASUS P1512CEA Consumer Notebook 15.6"" FHD Intel Core i5-1135G7 Intel UHD Graphics 8GB 512GB SSD Windows 11 Pro .",ASUS,"['Laptops, Tablet', None, None, None]",1049.0,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Pro', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}","{'Brand': 'ASUS', 'Model': 'P1512CEA', 'CPU': 'Intel Core i5-1135G7', 'GPU': 'Intel UHD Graphics', 'RAM': '8GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Pro', 'Screen': '15.6""', 'Resolution': 'FHD'}" -224498,LPGIG00134,"GIGABYTE A7 K1 Gaming Notebook 17.3"" FHD AMD Ryzen 7 5800H GeForce RTX 3060 16GB 512GB SSD Windows 11 Home .",GIGABYTE,"['Laptops, Tablet', None, None, None]",1699.0,"{'Memory': '16GB', 'Screen Size': '17.3""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '144Hz', 'SSD Capacity': '512GB'}","{'Brand': 'GIGABYTE', 'Model': 'A7 K1', 'CPU': 'AMD Ryzen 7 5800H', 'GPU': 'GeForce RTX 3060', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '17.3""', 'Resolution': 'FHD'}" -224373,LPASU00625OB,"ASUS ROG Strix G15 Gaming Notebook 15.6"" WQHD AMD Ryzen 9 6900HX GeForce RTX 3070 Ti 16GB 1TB SSD Windows 11 Pro, G513RW-XS91-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",1619.89,"{'Memory': '16GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Pro', 'Maximum Resolution': '2560 x 1440', 'Refresh Rate': '165Hz', 'SSD Capacity': '1TB'}","{'Brand': 'ASUS', 'Series': 'ROG Strix', 'Model': 'G15', 'Model Code': 'G513RW-XS91-CA', 'CPU': 'AMD Ryzen 9 6900HX', 'GPU': 'GeForce RTX 3070 Ti', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Pro', 'Screen': '15.6"" WQHD'}" -224235,LPASU00590OB,"ASUS Vivobook 14 Flip Notebook, 14"" FHD touch Screen, Intel Celeron N4500, Intel UHD Graphics, 4GB DDR4, 128GB SSD, Win11 Home, J1400KA-DS01T-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",474.05,"{'Notebook Type': 'Consumer', 'Notebook Chassis': 'Convertible (2 in 1)', 'Screen Size': '14""', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'CPU': 'Intel Celeron N4500'}","{'Brand': 'ASUS', 'Model': 'Vivobook 14 Flip', 'Model Code': 'J1400KA-DS01T-CA', 'CPU': 'Intel Celeron N4500', 'GPU': 'Intel UHD Graphics', 'RAM': '4GB DDR4', 'Storage': '128GB SSD', 'OS': 'Windows 11 Home', 'Screen': '14""', 'Resolution': 'FHD', 'Touch Screen': 'Yes'}" -224223,LPLEN03000,"Lenovo IdeaPad Flex 5 Consumer Notebook 14"" WUXGA Touchscreen AMD Ryzen 5 5500U AMD Radeon Graphics 8GB 512GB SSD Windows 11 Home, 82R9004HCC",LENOVO,"['Laptops, Tablet', None, None, None]",583.88,"{'Memory': '8GB', 'Screen Size': '14""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}","{'Brand': 'Lenovo', 'Model': 'IdeaPad Flex 5', 'Model Code': '82R9004HCC', 'CPU': 'AMD Ryzen 5 5500U', 'GPU': 'AMD Radeon Graphics', 'RAM': '8GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '14""""', 'Resolution': 'WUXGA', 'Touchscreen': 'Yes'}" -224079,LPACE00896,"Acer A715 Gaming Notebook 15.6"" FHD AMD Ryzen 7 5700U RTX3050 16GB 512GB SSD Windows 11, NH.QE5AA.001",ACER,"['Laptops, Tablet', None, None, None]",849.0,"{'Memory': '16GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}","{'Brand': 'Acer', 'Model': 'A715', 'Model Code': 'NH.QE5AA.001', 'Screen': '15.6""', 'Resolution': 'FHD', 'CPU': 'AMD Ryzen 7 5700U', 'GPU': 'RTX3050', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11'}" -223863,LPASU00621OB,"ASUS ROG Zephrus G15 Gaming Notebook 15.6"" WQHD AMD Ryzen 9 6900HS GeForce RTX 3080 32GB 1TB SSD Windows 11 Pro, GA503RS-XS92-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",2015.89,"{'Memory': '32GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Pro', 'Maximum Resolution': '2560 x 1440', 'Refresh Rate': '240Hz', 'SSD Capacity': '1TB'}","{'Brand': 'ASUS', 'Series': 'ROG Zephyrus G15', 'Model': 'GA503RS-XS92-CA', 'CPU': 'AMD Ryzen 9 6900HS', 'GPU': 'GeForce RTX 3080', 'RAM': '32GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Pro', 'Screen': '15.6""', 'Resolution': 'WQHD'}" -223776,LPACE00851OB,"Acer TravelMate P2 Notebook,15.6"" FHD Intel Core i5-1135G7, Intel HD Graphics, 8GB DDR4, 256GB SSD, Windows 10 Pro, TMP215-53-53N6-US (NX.VPUAA.003)(Open Box)",ACER,"['Laptops, Tablet', None, None, None]",379.89,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 10 Pro', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '256GB'}","{'Brand': 'Acer', 'Model': 'TravelMate P2', 'Model Code': 'TMP215-53-53N6-US', 'CPU': 'Intel Core i5-1135G7', 'GPU': 'Intel HD Graphics', 'RAM': '8GB DDR4', 'Storage': '256GB SSD', 'OS': 'Windows 10 Pro', 'Screen': '15.6""', 'Resolution': 'FHD'}" -223245,LPMSI00497,"MSI Pulse GL66 Gaming Notebook 15.6"" FHD Intel i7-11800H RTX3070 16GB 512GB SSD Windows 10 Home, Pulse GL66 11UGKV-231CA",MSI,"['Laptops, Tablet', None, None, None]",1999.88,"{'Memory': '16GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 10 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '144Hz', 'SSD Capacity': '512GB'}","{'Brand': 'MSI', 'Model': 'Pulse GL66', 'Model Code': '11UGKV-231CA', 'CPU': 'Intel i7-11800H', 'GPU': 'RTX3070', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 10 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -222734,LPASU00623,"ASUS ROG Zephyrus NR2202 Business Notebook 16"" WXQGA AMD Ryzen 9 6900HX RTX 3080 Ti 64GB 1TB SSD Windows 11 Pro .",ASUS,"['Laptops, Tablet', None, None, None]",4999.0,"{'Memory': '64GB', 'Screen Size': '16""', 'Operating System': 'Windows 11 Pro', 'Maximum Resolution': '2560 x 1600', 'Refresh Rate': '165Hz', 'SSD Capacity': '1TB'}","{'Brand': 'ASUS', 'Series': 'ROG Zephyrus NR2202', 'Screen Size': '16""', 'Resolution': 'WXQGA', 'CPU': 'AMD Ryzen 9 6900HX', 'GPU': 'NVIDIA GeForce RTX 3080 Ti', 'RAM': '64GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Pro'}" -222656,LPHEW01811OB,"HP Pavilion 15-eh2010ca Notebook 15.6"" FHD Touchscreen AMD Ryzen 5 5625U AMD Radeon Graphics 8GB 512GB SSD Windows 11 Home, 2L7T5UA#ABL(Open Box)",HP,"['Laptops, Tablet', None, None, None]",553.74000610352,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}","{'Brand': 'HP', 'Model': 'Pavilion 15-eh2010ca', 'Model Code': '2L7T5UA#ABL', 'CPU': 'AMD Ryzen 5 5625U', 'GPU': 'AMD Radeon Graphics', 'RAM': '8GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD', 'Touchscreen': 'Yes'}" -222442,LPASU00621,"ASUS ROG Zephrus G15 Gaming Notebook 15.6"" WQHD AMD Ryzen 9 6900HS GeForce RTX 3080 32GB 1TB SSD Windows 11 Pro, GA503RS-XS92-CA",ASUS,"['Laptops, Tablet', None, None, None]",2239.88,"{'Memory': '32GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Pro', 'Maximum Resolution': '2560 x 1440', 'Refresh Rate': '240Hz', 'SSD Capacity': '1TB'}","{'Brand': 'ASUS', 'Series': 'ROG Zephyrus G15', 'Model': 'GA503RS-XS92-CA', 'CPU': 'AMD Ryzen 9 6900HS', 'GPU': 'GeForce RTX 3080', 'RAM': '32GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Pro', 'Screen': '15.6""', 'Resolution': 'WQHD'}" -222238,LPHEW01837,"HP OMEN 16 Consumer Notebook 16.1"" FHD AMD Ryzen 5 5600H Radeon Graphics 16GB 1TB SSD Windows 10 Home .",HP,"['Laptops, Tablet', None, None, None]",1799.0,"{'Memory': '16GB', 'Screen Size': '16.1""', 'Operating System': 'Windows 10 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '1TB'}","{'Brand': 'HP', 'Model': 'OMEN 16', 'CPU': 'AMD Ryzen 5 5600H', 'GPU': 'Radeon Graphics', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 10 Home', 'Screen': '16.1""', 'Resolution': 'FHD'}" -221961,LPHEW01834,"HP EliteBook 640 G9 14"" Business Notebook Intel i5-1245U 16GB RAM 512GB SSD Windows 10 Pro, 6C0Z2UT#ABA",HP,"['Laptops, Tablet', None, None, None]",1011.9599990845,"{'General InformationManufacturer': 'HP Inc.', 'General InformationManufacturer Part Number': '6C0Z2UT#ABA', 'GPU': 'Intel Iris Xe', 'General InformationManufacturer Website Address': 'http://www.hp.com', 'Maximum Resolution': '1080p Full HD', 'General InformationBrand Name': 'HP'}","{'Brand': 'HP', 'Model': 'EliteBook 640 G9', 'Model Code': '6C0Z2UT#ABA', 'CPU': 'Intel i5-1245U', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 10 Pro', 'Screen': '14""'}" -221908,LPASU00603OB,"ASUS Vivobook 15 Notebook, 15.6"" FHD, Intel Core i7-1165G7, Intel Iris Xe Graphics, 12GB DDR4, 512GB SSD, Win11 Home, X515EA-DS79-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",741.83999694824,"{'Notebook Type': 'Consumer', 'Notebook Chassis': 'Clamshell', 'Screen Size': '15.6""', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'CPU': 'Intel Core i7-1165G7'}","{'Brand': 'ASUS', 'Model': 'Vivobook 15', 'Model Code': 'X515EA-DS79-CA', 'CPU': 'Intel Core i7-1165G7', 'GPU': 'Intel Iris Xe Graphics', 'RAM': '12GB DDR4', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -221900,LPLGE00027,"LG gram Ultra-Lightweight EVO Platform Notebook, 17"" WQXGA, Intel i5-1240P, Intel Iris Xe Graphics, 8GB, 512GB SSD, Windows 11 Home, 17Z90Q-K.AR55A9",LG,"['Laptops, Tablet', None, None, None]",1167.88,"{'Notebook Type': 'Consumer', 'Notebook Chassis': 'Thin and Light', 'Screen Size': '17""', 'Maximum Resolution': '2560 x 1600', 'Refresh Rate': '60Hz', 'CPU': 'i5-1240P'}","{'Brand': 'LG', 'Model': 'gram', 'Model Code': '17Z90Q-K.AR55A9', 'CPU': 'Intel i5-1240P', 'GPU': 'Intel Iris Xe Graphics', 'RAM': '8GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '17""', 'Resolution': 'WQXGA', 'Platform': 'EVO Ultra-Lightweight Notebook'}" -221897,LPLGE00025,"LG gram Ultra-Lightweight EVO Platform Notebook, 16"" WQXGA, Intel i5-1240P, 8GB, 512GB SSD, Windows 11 Home, 16Z90Q-K.AR55A9",LG,"['Laptops, Tablet', None, None, None]",1135.88,"{'Notebook Type': 'Consumer', 'Notebook Chassis': 'Thin and Light', 'Screen Size': '16""', 'Maximum Resolution': '2560 x 1600', 'Refresh Rate': '60Hz', 'CPU': 'i5-1240P'}","{'Brand': 'LG', 'Model': 'gram', 'Model Code': '16Z90Q-K.AR55A9', 'CPU': 'Intel i5-1240P', 'RAM': '8GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '16""', 'Resolution': 'WQXGA', 'Platform': 'EVO'}" -221642,LPLEN02696OB,"Lenovo Thinkpad T570 Business Notebook, 15.6"" FHD, Intel Core i5-7300, 8 GB, 256 GB SSD, Windows 10 Pro, KIT-LE-73996, (Refurbished)(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",423.86000026703,"{'Notebook Type': 'Business', 'Notebook Chassis': 'Clamshell', 'Screen Size': '15.6""', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'CPU': 'i5-7300'}","{'Brand': 'Lenovo', 'Model': 'Thinkpad T570', 'Model Code': 'KIT-LE-73996', 'CPU': 'Intel Core i5-7300', 'RAM': '8GB', 'Storage': '256GB SSD', 'OS': 'Windows 10 Pro', 'Screen': '15.6""', 'Resolution': 'FHD', 'Condition': 'Refurbished (Open Box)'}" -221447,LPACE00888,"Acer TravelMate P2 14"" Business Notebook , FHD, Intel Core i5-1135G7,8 GB RAM, 256 GB SSD, Windows 11 Pro, Intel Iris Xe Graphics, NX.VPKAA.00K",ACER,"['Laptops, Tablet', None, None, None]",499.0,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': 'FHD', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '8GB', 'Screen Size': '14""'}","{'Brand': 'Acer', 'Model': 'TravelMate P2', 'Screen Size': '14""', 'Resolution': 'FHD', 'CPU': 'Intel Core i5-1135G7', 'RAM': '8 GB', 'Storage': '256 GB SSD', 'OS': 'Windows 11 Pro', 'Graphics': 'Intel Iris Xe', 'Model Code': 'NX.VPKAA.00K'}" -221260,LPSAS00117,"SAMSUNG Galaxy Book Consumer Notebook 15.6"" FHD Intel i5-1135G7 Intel Iris Xe Graphics 8GB 256GB SSD Windows 10 Home .",SAMSUNG,"['Laptops, Tablet', None, None, None]",699.0,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 10 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '256GB'}","{'Brand': 'Samsung', 'Model': 'Galaxy Book', 'CPU': 'Intel i5-1135G7', 'GPU': 'Intel Iris Xe Graphics', 'RAM': '8GB', 'Storage': '256GB SSD', 'OS': 'Windows 10 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -221194,LPMSI00445OB,"MSI Modern 15 Ultra Thin and Light Notebook, 15.6"" FHD Intel Core i5-1155G7, Intel Iris Xe, 8 GB DDR4, 256GB NVMe SSD, Windows 11 Home, Modern 15 A11MU-863CA(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",459.69000305176,"{'Notebook Type': 'Consumer', 'Notebook Chassis': 'Thin and Light', 'Screen Size': '15.6""', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'CPU': 'i5-1155G7'}","{'Brand': 'MSI', 'Model': 'Modern 15', 'Model Code': 'A11MU-863CA', 'CPU': 'Intel Core i5-1155G7', 'GPU': 'Intel Iris Xe', 'RAM': '8GB DDR4', 'Storage': '256GB NVMe SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -220707,LPRAZ00054,"RAZER Razer Blade 14 Gaming Notebook 14"" QHD AMD Ryzen 9 6900HX GeForce RTX 3080Ti 16GB 1TB SSD Windows 11 Home .",RAZER,"['Laptops, Tablet', None, None, None]",4499.0,"{'Memory': '16GB', 'Screen Size': '14""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '2560 x 1440', 'Refresh Rate': '165Hz', 'SSD Capacity': '1TB'}","{'Brand': 'RAZER', 'Model': 'Razer Blade 14', 'CPU': 'AMD Ryzen 9 6900HX', 'GPU': 'GeForce RTX 3080Ti', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '14""', 'Resolution': 'QHD'}" -220455,LPASU00583OB,"ASUS TUF Gaming Notebook, 15.6” FHD, Ryzen 5 4600H,GeForce GTX 1650, 8GB, 512GB SSD, Windows 11 Home, FA506IHR-DS51-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",827.89000091553,"{'Notebook Type': 'Gaming', 'Notebook Chassis': 'Clamshell', 'Screen Size': '15.6""', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '144Hz', 'CPU': 'Ryzen 5 4600H'}","{'Brand': 'ASUS', 'Model': 'TUF Gaming Notebook', 'Model Code': 'FA506IHR-DS51-CA', 'CPU': 'Ryzen 5 4600H', 'GPU': 'GeForce GTX 1650', 'RAM': '8GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -220435,LPSAS00116,"SAMSUNG Galaxy Book Pro Consumer Notebook 15.6"" FHD Intel i7-1165G7 Iris Xe Graphics 8GB 256GB SSD Windows 11 Home .",SAMSUNG,"['Laptops, Tablet', None, None, None]",1730.0,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '256GB'}","{'Brand': 'SAMSUNG', 'Model': 'Galaxy Book Pro', 'CPU': 'Intel i7-1165G7', 'GPU': 'Intel Iris Xe Graphics', 'RAM': '8GB', 'Storage': '256GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -220434,LPSAS00115,"SAMSUNG Galaxy Book Pro Consumer Notebook 15.6"" FHD Intel i5-1135G7 Iris Xe Graphics 8GB 512GB SSD Windows 11 Home .",SAMSUNG,"['Laptops, Tablet', None, None, None]",1730.0,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}","{'Brand': 'SAMSUNG', 'Model': 'Galaxy Book Pro', 'Screen Size': '15.6""', 'Resolution': 'FHD', 'CPU': 'Intel i5-1135G7', 'GPU': 'Intel Iris Xe Graphics', 'RAM': '8GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home'}" -220433,LPSAS00114,"SAMSUNG Galaxy Book Pro Consumer Notebook 15.6"" FHD Intel i5-1135G7 Iris Xe Graphics 8GB 256GB SSD Windows 11 Home .",SAMSUNG,"['Laptops, Tablet', None, None, None]",1600.0,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '256GB'}","{'Brand': 'SAMSUNG', 'Model': 'Galaxy Book Pro', 'CPU': 'Intel i5-1135G7', 'GPU': 'Iris Xe Graphics', 'RAM': '8GB', 'Storage': '256GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -220432,LPSAS00113,"SAMSUNG Galaxy Book Pro Consumer Notebook 13.3"" FHD Intel i5-1135G7 Iris Xe Graphics 8GB 512GB SSD Windows 11 Home .",SAMSUNG,"['Laptops, Tablet', None, None, None]",1600.0,"{'Memory': '8GB', 'Screen Size': '13.3""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}","{'Brand': 'SAMSUNG', 'Model': 'Galaxy Book Pro', 'Screen Size': '13.3""', 'Resolution': 'FHD', 'CPU': 'Intel i5-1135G7', 'GPU': 'Intel Iris Xe Graphics', 'RAM': '8GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home'}" -220431,LPSAS00112,"SAMSUNG Galaxy Book Pro Consumer Notebook 13.3"" FHD Intel i7-1165G7 Iris Xe Graphics 8GB 512GB SSD Windows 11 Home .",SAMSUNG,"['Laptops, Tablet', None, None, None]",1730.0,"{'Memory': '8GB', 'Screen Size': '13.3""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}","{'Brand': 'SAMSUNG', 'Model': 'Galaxy Book Pro', 'CPU': 'Intel i7-1165G7', 'GPU': 'Iris Xe Graphics', 'RAM': '8GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '13.3""', 'Resolution': 'FHD'}" -220429,LPSAS00111,"SAMSUNG Galaxy Book Pro Consumer Notebook 15.6"" FHD Intel i7-1165G7 Iris Xe Graphics 8GB 512GB SSD Windows 11 Home .",SAMSUNG,"['Laptops, Tablet', None, None, None]",1870.0,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}","{'Brand': 'SAMSUNG', 'Model': 'Galaxy Book Pro', 'CPU': 'Intel i7-1165G7', 'GPU': 'Iris Xe Graphics', 'RAM': '8GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -220336,LPMSI00429OB,"MSI Katana GF66 Gaming Notebook, 15.6"" FHD, Intel Core i7-11800H, RTX3060, 16GB DDR4, 512 GB SSD, Windows 11 Home, Katana GF66 11UE-641CA(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",786.48999847412,"{'Memory': '16GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '144Hz', 'SSD Capacity': '512GB'}","{'Brand': 'MSI', 'Model': 'Katana GF66', 'Model Code': '11UE-641CA', 'CPU': 'Intel Core i7-11800H', 'GPU': 'RTX3060', 'RAM': '16GB DDR4', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -220330,LPASU00584OB,"ASUS TUF Gaming Notebook, 15.6” FHD, Ryzen 7 5800H,GeForce  RTX 3060, 16GB, 512GB SSD, Windows 11 Home, FA506QM-DS71-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",899.89,"{'Notebook Type': 'Gaming', 'Notebook Chassis': 'Clamshell', 'Screen Size': '15.6""', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '144Hz', 'CPU': 'Ryzen\xa07\xa05800H'}","{'Brand': 'ASUS', 'Model': 'TUF Gaming Notebook', 'Model Code': 'FA506QM-DS71-CA', 'CPU': 'Ryzen 7 5800H', 'GPU': 'GeForce RTX 3060', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -220228,LPACE00877OB,"Acer Nitro 5 Gaming Notebook,15.6"" FHD, Intel i7-11800H, NVIDIA GeForce RTX3060, 16GB DDR4, 512GB SSD, Windows 11, NH.QEXAA.004(Open Box)",ACER,"['Laptops, Tablet', None, None, None]",961.08999023437,"{'Memory': '16GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11', 'Maximum Resolution': '1080p Full HD', 'Refresh Rate': '144Hz', 'SSD Capacity': '512GB'}","{'Brand': 'Acer', 'Model': 'Nitro 5', 'Model Code': 'NH.QEXAA.004', 'CPU': 'Intel i7-11800H', 'GPU': 'NVIDIA GeForce RTX3060', 'RAM': '16GB DDR4', 'Storage': '512GB SSD', 'OS': 'Windows 11', 'Screen': '15.6""', 'Resolution': 'FHD'}" -219988,LPASU00610,"ASUS TUF Gaming Dash Gaming Notebook 15.6"" FHD Intel i5-12450H GeForce RTX 3050 16GB 512GB SSD Windows 11 Home, TUF517ZC-DS51-CA",ASUS,"['Laptops, Tablet', None, None, None]",1287.8799972534,"{'Memory': '16GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '144Hz', 'SSD Capacity': '512GB'}","{'Brand': 'ASUS', 'Series': 'TUF Gaming Dash', 'Model': 'TUF517ZC-DS51-CA', 'CPU': 'Intel i5-12450H', 'GPU': 'GeForce RTX 3050', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -219505,LPACE00880,"ACER Aspire A515-54 Consumer Notebook 15.6"" Intel i7-10510U 8GB 512GB SSD Windows 11 Home, A515-54-75HU, NX.HN2AA.009",ACER,"['Laptops, Tablet', None, None, None]",499.88,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}","{'Brand': 'ACER', 'Model': 'Aspire A515-54', 'Model Code': 'A515-54-75HU, NX.HN2AA.009', 'CPU': 'Intel i7-10510U', 'RAM': '8GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""'}" -219458,LPASU00591OB,"ASUS Vivobook Go Notebook, 15.6"" HD, Intel Celeron N4020, Intel UHD Graphics 600, 4GB DDR4, 64GB SSD, Win11 S, L510MA-DS09-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",246.05,"{'Notebook Type': 'Consumer', 'Notebook Chassis': 'Clamshell', 'Screen Size': '15.6""', 'Maximum Resolution': '1366 x 768', 'Refresh Rate': '60Hz', 'CPU': 'Intel Celeron N4020'}","{'Brand': 'ASUS', 'Series': 'Vivobook Go', 'Model': 'L510MA-DS09-CA', 'Screen Size': '15.6""', 'Resolution': 'HD', 'CPU': 'Intel Celeron N4020', 'GPU': 'Intel UHD Graphics 600', 'RAM': '4GB DDR4', 'Storage': '64GB SSD', 'OS': 'Windows 11 S'}" -219344,LPHEW01738OB,"HP Probook 640 Business Notebook 14"" Intel Core i5-6300U Intel HD Graphics 520 16GB 512GB Windows 10 Pro Refurbished(Open Box)",HP,"['Laptops, Tablet', None, None, None]",242.89,"{'Storage Type': 'SSD', 'CPU Brand': 'Intel', 'Product Condition': 'Refurbished', 'Product Condition Short': 'Refurb', 'Screen Resolution Description': 'HD', 'Memory': '16GB'}","{'Brand': 'HP', 'Model': 'Probook 640', 'CPU': 'Intel Core i5-6300U', 'GPU': 'Intel HD Graphics 520', 'RAM': '16GB', 'Storage': '512GB', 'OS': 'Windows 10 Pro', 'Screen': '14""', 'Condition': 'Refurbished (Open Box)'}" -219203,LPHEW01773OB,"HP Pavilion 15-eg1010ca Notebook, 15.6"" FHD, Intel Core i5-1155G7, Intel Iris Xe Graphics, 8GB DDR4, 512GB SSD, Windows 11 Home, 2L7V5UA#ABL(Open Box)",HP,"['Laptops, Tablet', None, None, None]",427.39,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}","{'Brand': 'HP', 'Series': 'Pavilion', 'Model': '15-eg1010ca', 'Model Code': '2L7V5UA#ABL', 'CPU': ' Intel Core i5-1155G7', 'GPU': 'Intel Iris Xe Graphics', 'RAM': '8GB DDR4', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -219167,LPASU00573OB,"ASUS Vivobook 15 Notebook, 15.6"" FHD, AMD Ryzen 5 5500U, AMD Radeon Graphics, 8GB, 512GB SSD, Win11 Home, M513UA-DS51-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",508.14,"{'Notebook Type': 'Consumer', 'Notebook Chassis': 'Clamshell', 'Screen Size': '15.6""', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'CPU': 'Ryzen 5 5500U'}","{'Brand': 'ASUS', 'Model': 'Vivobook 15', 'Model Code': 'M513UA-DS51-CA', 'CPU': 'AMD Ryzen 5 5500U', 'GPU': 'AMD Radeon Graphics', 'RAM': '8GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -219077,LPHUA00039OB,"HUAWEI MateBook 14s Notebook, 14.2"", 2520 x 1680, Touch Screen, i7-11370H, Intel Iris Xe Graphics, 16GB, 512GB SSD, Windows 11 Pro, 53012KTB(Open Box)",HUAWEI,"['Laptops, Tablet', None, None, None]",838.82000030518,"{'Memory': '16GB', 'Screen Size': '14.2', 'Operating System': 'Windows 11 Pro', 'Maximum Resolution': '2520 x 1680', 'Refresh Rate': '90 Hz', 'SSD Capacity': '512GB'}","{'Brand': 'HUAWEI', 'Model': 'MateBook 14s', 'Model Code': '53012KTB', 'Screen': '14.2""', 'Resolution': '2520 x 1680', 'Touch Screen': 'Yes', 'CPU': 'i7-11370H', 'GPU': 'Intel Iris Xe Graphics', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Pro'}" -218899,LPHUA00040OB,"HUAWEI MateBook D15 Notebook, 15.6"" FHD, i5-1135G7, Intel Iris Xe Graphics, 8GB, 512GB SSD, Win 11 Home, 53012QNY(Open Box)",HUAWEI,"['Laptops, Tablet', None, None, None]",474.89,"{'Memory': '8GB', 'Screen Size': '15.6', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60 Hz', 'SSD Capacity': '512GB'}","{'Brand': 'HUAWEI', 'Model': 'MateBook D15', 'Model Code': '53012QNY', 'CPU': 'Intel i5-1135G7', 'GPU': 'Intel Iris Xe Graphics', 'RAM': '8GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -218692,LPACE00877,"Acer Nitro 5 Gaming Notebook,15.6"" FHD, Intel i7-11800H, NVIDIA GeForce RTX3060, 16GB DDR4, 512GB SSD, Windows 11, NH.QEXAA.004",ACER,"['Laptops, Tablet', None, None, None]",1067.8800048828,"{'Memory': '16GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11', 'Maximum Resolution': '1080p Full HD', 'Refresh Rate': '144Hz', 'SSD Capacity': '512GB'}","{'Brand': 'Acer', 'Model': 'Nitro 5', 'Model Code': 'NH.QEXAA.004', 'CPU': 'Intel i7-11800H', 'GPU': 'NVIDIA GeForce RTX3060', 'RAM': '16GB DDR4', 'Storage': '512GB SSD', 'OS': 'Windows 11', 'Screen': '15.6""', 'Resolution': 'FHD'}" -218479,LPLEN02718OB,"Lenovo ThinkPad T480 Business Notebook, 14"", Intel Core i5-8350U, Intel UHD Graphics 620, 16 GB DDR4, 256 GB SSD, Windows 10 Pro (Refurbished)(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",359.1,"{'Notebook Type': 'Business', 'Notebook Chassis': 'Clamshell', 'Screen Size': '14""', 'Refresh Rate': '60Hz', 'CPU': 'i5-8350U', 'GPU': 'Intel UHD Graphics 620'}","{'Brand': 'Lenovo', 'Series': 'ThinkPad T480', 'Usage': 'Business Notebook', 'Screen Size': '14""', 'CPU': 'Intel Core i5-8350U', 'GPU': 'Intel UHD Graphics 620', 'RAM': '16 GB DDR4', 'Storage': '256 GB SSD', 'OS': 'Windows 10 Pro', 'Condition': 'Refurbished (Open Box)'}" -218166,LPCNO00033OB,"ASUS VivoBook F Series Notebook 14"" FHD, Intel Core i5-1135G7, Intel Iris Xe Graphics, 8GB RAM 256GB SSD - Windows 10 Home, F415EA-UB51(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",455.89,"{'Memory': '8GB', 'Screen Size': '14""', 'Operating System': 'Windows 10 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '256GB'}","{'Brand': 'ASUS', 'Series': 'VivoBook F', 'Model': 'F415EA-UB51', 'Screen size': '14""', 'Screen resolution': 'FHD', 'CPU': 'Intel Core i5-1135G7', 'GPU': 'Intel Iris Xe Graphics', 'RAM': '8GB', 'Storage': '256GB SSD', 'Operating System': 'Windows 10 Home'}" -218123,LPLEN02719OB,"Lenovo ThinkPad T470 Business Notebook, 14"" FHD, Intel Core i5-6300U, Intel HD Graphics 620, 8 GB DDR4, 256 GB SSD, Windows 10 Pro, Refurbished(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",262.69000019073,"{'Notebook Type': 'Business', 'Notebook Chassis': 'Clamshell', 'Screen Size': '14""', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'CPU': 'i5-6300U'}","{'Brand': 'Lenovo', 'Series': 'ThinkPad', 'Model': 'T470', 'Usage': 'Business Notebook', 'Screen Size': '14""', 'Resolution': 'FHD (Full HD)', 'CPU': 'Intel Core i5-6300U', 'GPU': 'Intel HD Graphics 620', 'RAM': '8 GB DDR4', 'Storage': '256 GB SSD', 'Operating System': 'Windows 10 Pro', 'Condition': 'Refurbished (Open Box)'}" -217884,LPASU00603,"ASUS Vivobook 15 Notebook, 15.6"" FHD, Intel Core i7-1165G7, Intel Iris Xe Graphics, 12GB DDR4, 512GB SSD, Win11 Home, X515EA-DS79-CA",ASUS,"['Laptops, Tablet', None, None, None]",780.88,"{'Notebook Type': 'Consumer', 'Notebook Chassis': 'Clamshell', 'Screen Size': '15.6""', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'CPU': 'Intel Core i7-1165G7'}","{'Brand': 'ASUS', 'Model': 'Vivobook 15', 'Model Code': 'X515EA-DS79-CA', 'CPU': 'Intel Core i7-1165G7', 'GPU': 'Intel Iris Xe Graphics', 'RAM': '12GB DDR4', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -217591,LPASU00601,"TUF Gaming F15 TUF507ZC-QS72-CB 15.6"" Rugged Gaming Notebook - Full HD - 1920 x 1080 - Intel Core i7 12th Gen i7-12700H Tetradeca-core (14 Core) 2.30 GHz - 16 GB Total RAM - 512 GB SSD - Mecha Gray - Intel Chip - Windows 11 Home - NVIDIA GeForce RTX 3050",ASUS,"['Laptops, Tablet', None, None, None]",1719.73,"{'General InformationManufacturer': 'ASUS Computer International', 'General InformationManufacturer Part Number': 'TUF507ZC-QS72-CB', 'General InformationBrand Name': 'TUF', 'General InformationProduct Line': 'Gaming F15', 'General InformationProduct Model': 'TUF507ZC-QS72-CB', 'General InformationProduct Name': 'Gaming F15 TUF507ZC-QS72-CB Gaming Notebook'}","{'Brand': 'TUF', 'Model': 'Gaming F15', 'Model Code': 'TUF507ZC-QS72-CB', 'CPU': 'Intel Core i7 12th Gen i7-12700H', 'Cores': '14', 'Base Clock Speed': '2.30 GHz', 'RAM': '16GB', 'Storage': '512GB SSD', 'Color': 'Mecha Gray', 'GPU': 'NVIDIA GeForce RTX 3050', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'Full HD (1920 x 1080)', 'Chipset': 'Intel'}" -217030,LPHUA00037OB,"HUAWEI MateBook 14s Notebook, 14.2"", 2520 x 1680, Touch Screen,Intel Core i7-11370H, Intel Iris Xe Graphics, 16GB, 512GB SSD, Windows 11 Pro, 53012SUP(Open Box)",HUAWEI,"['Laptops, Tablet', None, None, None]",824.49000038147,"{'Memory': '16GB', 'Screen Size': '14.2', 'Operating System': 'Windows 11 Pro', 'Maximum Resolution': '2520 x 1680', 'Refresh Rate': '90 Hz', 'SSD Capacity': '512GB'}","{'Brand': 'HUAWEI', 'Model': 'MateBook 14s', 'Model Code': '53012SUP', 'Screen Size': '14.2""', 'Resolution': '2520 x 1680', 'Touch Screen': 'Yes', 'CPU': 'Intel Core i7-11370H', 'GPU': 'Intel Iris Xe Graphics', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Pro'}" -216868,LPDYA00006,"DYNABOOK C50-J Business Notebook, 15.6"" FHD, Intel Core i7-1165G7, Integrated GPU, 8GB, 512GB SSD, Windows 10 Pro, PYS43C-03W03E",Dynabook,"['Laptops, Tablet', None, None, None]",1199.0,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 10 Pro', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}","{'Brand': 'Dynabook', 'Model': 'C50-J', 'Model Code': 'PYS43C-03W03E', 'CPU': 'Intel Core i7-1165G7', 'GPU': 'Integrated', 'RAM': '8GB', 'Storage': '512GB SSD', 'OS': 'Windows 10 Pro', 'Screen': '15.6""', 'Resolution': 'FHD'}" -216866,LPDYA00005,"DYNABOOK C50-J Business Notebook, 15.6"" FHD, Intel Core i7-1165G7, Integrated GPU, 8GB, 256GB SSD, Windows 11 Home, PYS43C-04P03C",Dynabook,"['Laptops, Tablet', None, None, None]",1089.0,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '256GB'}","{'Brand': 'DYNABOOK', 'Model': 'C50-J', 'Model Code': 'PYS43C-04P03C', 'CPU': 'Intel Core i7-1165G7', 'GPU': 'Integrated GPU', 'RAM': '8GB', 'Storage': '256GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -216865,LPDYA00004,"DYNABOOK C50-J Business Notebook, 15.6"" FHD, Intel Core i5-1135G7, Integrated GPU, 8GB, 512GB SSD, Windows 10 Pro, PYS43C-03V03E",Dynabook,"['Laptops, Tablet', None, None, None]",1049.0,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 10 Pro', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}","{'Brand': 'DYNABOOK', 'Model': 'C50-J', 'Model Code': 'PYS43C-03V03E', 'CPU': 'Intel Core i5-1135G7', 'GPU': 'Integrated GPU', 'RAM': '8GB', 'Storage': '512GB SSD', 'OS': 'Windows 10 Pro', 'Screen': '15.6""', 'Resolution': 'FHD'}" -216861,LPDYA00003,"DYNABOOK C50-J Business Notebook, 15.6"" FHD, Intel Core i5-1135G7, Integrated GPU, 8GB, 256GB SSD, Windows 11 Home, PYS43C-04L037",Dynabook,"['Laptops, Tablet', None, None, None]",929.0,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '256GB'}","{'Brand': 'DYNABOOK', 'Model': 'C50-J', 'Model Code': 'PYS43C-04L037', 'CPU': 'Intel Core i5-1135G7', 'GPU': 'Integrated GPU', 'RAM': '8GB', 'Storage': '256GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -216801,LPGIG00125,"GIGABYTE AERO 16 YE4 Gaming Notebook, 16"" UHD, Intel Core i9-12900H, NVIDIA GeForce RTX 3080 Ti, 32GB, 2 TB SSD, Windows 11 Pro, AERO 16 YE4-A4US928HP",GIGABYTE,"['Laptops, Tablet', None, None, None]",4999.0,"{'Memory': '32GB', 'Screen Size': '16""', 'Operating System': 'Windows 11 Pro', 'Maximum Resolution': '3840x2400', 'Refresh Rate': '60Hz', 'SSD Capacity': '2TB'}","{'Brand': 'GIGABYTE', 'Model': 'AERO 16 YE4', 'Model Code': 'AERO 16 YE4-A4US928HP', 'Screen': '16""', 'Resolution': 'UHD', 'CPU': 'Intel Core i9-12900H', 'GPU': 'NVIDIA GeForce RTX 3080 Ti', 'RAM': '32GB', 'Storage': '2TB SSD', 'OS': 'Windows 11 Pro'}" -216760,LPLEN02741,"Lenovo ThinkPad T15 Gen 2 Business Notebook 15.6"" FHD Intel i5-1145G7 Intel Iris Xe 16GB 512GB SSD Windows 11 Pro 20W400K3US",LENOVO,"['Laptops, Tablet', None, None, None]",1720.9,"{'Memory': '16GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Pro', 'Maximum Resolution': '1080p Full HD', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}","{'Brand': 'Lenovo', 'Series': 'ThinkPad T15 Gen 2', 'Model': '20W400K3US', 'CPU': 'Intel i5-1145G7', 'GPU': 'Intel Iris Xe', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Pro', 'Screen': '15.6""', 'Resolution': 'FHD'}" -216411,LPLEN02718,"Lenovo ThinkPad T480 Business Notebook, 14"", Intel Core i5-8350U, Intel UHD Graphics 620, 16 GB DDR4, 256 GB SSD, Windows 10 Pro (Refurbished)",LENOVO,"['Laptops, Tablet', None, None, None]",399.0,"{'Notebook Type': 'Business', 'Notebook Chassis': 'Clamshell', 'Screen Size': '14""', 'Refresh Rate': '60Hz', 'CPU': 'i5-8350U', 'GPU': 'Intel UHD Graphics 620'}","{'Brand': 'Lenovo', 'Model': 'ThinkPad T480', 'Type': 'Business Notebook', 'Screen Size': '14""', 'CPU': 'Intel Core i5-8350U', 'GPU': 'Intel UHD Graphics 620', 'RAM': '16 GB DDR4', 'Storage': '256 GB SSD', 'Operating System': 'Windows 10 Pro', 'Condition': 'Refurbished'}" -216336,LPHEW01739,"HP ProBook 820 G3 Notebook, 12.5"", Intel Core i7 6500U, Intel HD Graphics 520, 16G DDR4, 256GB SSD, Windows 10 Pro (Refurbished)",HP,"['Laptops, Tablet', None, None, None]",299.0,"{'Memory': '16GB', 'Screen Size': '12.5""', 'Operating System': 'Windows 10 Pro', 'Maximum Resolution': '1366 x 768', 'SSD Capacity': '256GB', 'CPU': 'Intel HD Graphics 520'}","{'Brand': 'HP', 'Model': 'ProBook 820 G3', 'Screen Size': '12.5""', 'CPU': 'Intel Core i7 6500U', 'GPU': 'Intel HD Graphics 520', 'RAM': '16GB DDR4', 'Storage': '256GB SSD', 'OS': 'Windows 10 Pro', 'Condition': 'Refurbished'}" -216286,LPASU00573,"ASUS Vivobook 15 Notebook, 15.6"" FHD, AMD Ryzen 5 5500U, AMD Radeon Graphics, 8GB, 512GB SSD, Win11 Home, M513UA-DS51-CA",ASUS,"['Laptops, Tablet', None, None, None]",534.88,"{'Notebook Type': 'Consumer', 'Notebook Chassis': 'Clamshell', 'Screen Size': '15.6""', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'CPU': 'Ryzen 5 5500U'}","{'Brand': 'ASUS', 'Model': 'Vivobook 15', 'Model Code': 'M513UA-DS51-CA', 'CPU': 'AMD Ryzen 5 5500U', 'GPU': 'AMD Radeon Graphics', 'RAM': '8GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -216078,LPASU00565,"ASUS ExpertBook B5 Business Notebook, 13.3"" Touch FHD, Intel Core i5-1135G7, Intel Iris Xe Graphics G7, 16GB, 256GB SSD, Windows 10 Pro, B5302FEA-C53P-CA",ASUS,"['Laptops, Tablet', None, None, None]",1199.0,"{'Screen Size': '13.3""', 'Memory': '16GB', 'Operating System': 'Windows 10 Pro', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '256GB'}","{'Brand': 'ASUS', 'Model': 'ExpertBook B5', 'Model Code': 'B5302FEA-C53P-CA', 'CPU': 'Intel Core i5-1135G7', 'GPU': 'Intel Iris Xe Graphics G7', 'RAM': '16GB', 'Storage': '256GB SSD', 'OS': 'Windows 10 Pro', 'Screen': '13.3"" Touch FHD'}" -216076,LPASU00564,"ASUS ExpertBook B1 Business Notebook, 15.6"" FHD, Intel Core i7-1165G7, Intel Iris Xe Graphics G7, 12GB, 512GB SSD, Windows 10 Pro, B1500CEAE-Q73P-CB",ASUS,"['Laptops, Tablet', None, None, None]",1399.0,"{'Screen Size': '15.6""', 'Memory': '12GB', 'Operating System': 'Windows 10 Pro', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}","{'Brand': 'ASUS', 'Model': 'ExpertBook B1', 'Model Code': 'B1500CEAE-Q73P-CB', 'CPU': 'Intel Core i7-1165G7', 'GPU': 'Intel Iris Xe Graphics G7', 'RAM': '12GB', 'Storage': '512GB SSD', 'OS': 'Windows 10 Pro', 'Screen': '15.6""', 'Resolution': 'FHD'}" -216047,LPHUA00036OB,"HUAWEI MateBook D15 Notebook, 15.6"" FHD, i5-1135G7, Intel Iris Xe Graphics, 8GB, 512GB SSD, Win 11 Home, 53012TCA(Open Box)",HUAWEI,"['Laptops, Tablet', None, None, None]",569.05,"{'Memory': '8GB', 'Screen Size': '15.6', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60 Hz', 'SSD Capacity': '512GB'}","{'Brand': 'HUAWEI', 'Model': 'MateBook D15', 'Model Code': '53012TCA', 'CPU': 'Intel i5-1135G7', 'GPU': 'Intel Iris Xe Graphics', 'RAM': '8GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -216039,LPASU00562,"ASUS ExpertBook B1 Business Notebook, 15.6"" FHD, Intel Core i7-1165G7, Intel Iris Xe Graphics G7, 12GB, 512GB SSD, Windows 10 Pro, B1500CEAE-C73P-CA",ASUS,"['Laptops, Tablet', None, None, None]",1399.0,"{'Screen Size': '15.6""', 'Memory': '12GB', 'Operating System': 'Windows 10 Pro', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}","{'Brand': 'ASUS', 'Model': 'ExpertBook B1', 'Model Code': 'B1500CEAE-C73P-CA', 'CPU': 'Intel Core i7-1165G7', 'GPU': 'Intel Iris Xe Graphics G7', 'RAM': '12GB', 'Storage': '512GB SSD', 'OS': 'Windows 10 Pro', 'Screen': '15.6""', 'Resolution': 'FHD'}" -216021,LPHEW01733,"HP OMEN 16-c0010ca Gaming Notebook, 16.1"" FHD, AMD Ryzen 7 5800H, NVIDIA GeForce RTX 3050 Ti, 16GB DDR4, 1TB SSD, Windows 11 Home, 374V0UA#ABL",HP,"['Laptops, Tablet', None, None, None]",1172.88,"{'Memory': '16GB', 'Screen Size': '16.1', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'SSD Capacity': '1TB', 'CPU': 'Ryzen 7 5800H'}","{'Brand': 'HP', 'Series': 'OMEN', 'Model': '16-c0010ca', 'Screen Size': '16.1""', 'Resolution': 'FHD', 'CPU': 'AMD Ryzen 7 5800H', 'GPU': 'NVIDIA GeForce RTX 3050 Ti', 'RAM': '16GB DDR4', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Model Code': '374V0UA#ABL'}" -215919,LPASU00559,"ASUS Zenbook Notebook 13.3"" FHD OLED Intel Core i5-1135G7 Intel Iris Xe Graphics 8GB 256GB SSD Windows 11 Home, UX325EA-DS59-CA",ASUS,"['Laptops, Tablet', None, None, None]",780.88000488281,"{'Screen Size': '13.3""', 'Memory': '8GB', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '256GB'}","{'Brand': 'ASUS', 'Model': 'Zenbook Notebook', 'Model Code': 'UX325EA-DS59-CA', 'CPU': 'Intel Core i5-1135G7', 'GPU': 'Intel Iris Xe Graphics', 'RAM': '8GB', 'Storage': '256GB SSD', 'OS': 'Windows 11 Home', 'Screen': '13.3""', 'Resolution': 'FHD OLED'}" -215913,LPASU00558,"ASUS Zenbook Pro 15 Business Notebook, 15.6"" FHD, AMD Ryzen 9 5900HX, NVIDIA GeForce RTX 3050Ti, 16GB, 512GB SSD, Win11 P, UM5500QE-XH99T-CA",ASUS,"['Laptops, Tablet', None, None, None]",1899.0,"{'Screen Size': '15.6""', 'Memory': '16GB', 'Operating System': 'Windows 11 Pro', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}","{'Brand': 'ASUS', 'Model': 'Zenbook Pro 15', 'Model Code': 'UM5500QE-XH99T-CA', 'CPU': 'AMD Ryzen 9 5900HX', 'GPU': 'NVIDIA GeForce RTX 3050Ti', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Pro', 'Screen': '15.6""', 'Resolution': 'FHD'}" -215869,LPASU00556,"ASUS ROG Strix G17 Gaming Notebook, 17.3"" FHD, AMD Ryzen 7 4800H, NVIDIA GeForce RTX 3060, 16GB, 1TB SSD, Win11 Home, G713IM-DS71-CA",ASUS,"['Laptops, Tablet', None, None, None]",1196.88,"{'Screen Size': '17.3""', 'Memory': '16GB', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '144Hz', 'SSD Capacity': '1TB'}","{'Brand': 'ASUS', 'Series': 'ROG Strix', 'Model': 'G17', 'Model Code': 'G713IM-DS71-CA', 'Screen Size': '17.3""', 'Resolution': 'FHD', 'CPU': 'AMD Ryzen 7 4800H', 'GPU': 'NVIDIA GeForce RTX 3060', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home'}" -215432,LPHUA00038OB,"HUAWEI Matebook 14 Notebook, 14"", 2160 x 1440, Touch Screen, i5-1135G7, Intel Iris Xe Graphics, 16GB, 512GB SSD, Win 11 Home, 53012STE(Open Box)",HUAWEI,"['Laptops, Tablet', None, None, None]",759.89,"{'Memory': '16GB', 'Screen Size': '14""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '2160 x 1440', 'Refresh Rate': '60 Hz', 'SSD Capacity': '512GB'}","{'Brand': 'HUAWEI', 'Model': 'Matebook 14', 'Model Code': '53012STE', 'Screen Size': '14""', 'Resolution': '2160 x 1440', 'Touch Screen': 'Yes', 'CPU': 'i5-1135G7', 'GPU': 'Intel Iris Xe Graphics', 'RAM': '16GB', 'Storage': '512GB SSD', 'Operating System': 'Windows 11 Home'}" -215229,LPMSI00415,"MSI Stealth 15M Thin Bezel Gaming Notebook, 15.6"" FHD, Intel Core i7-1260P, RTX3060, 16GB 1TB SSD, Windows 11 Home, Stealth 15M B12UE-027CA",MSI,"['Laptops, Tablet', None, None, None]",1999.0,"{'Memory': '16GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '144Hz', 'SSD Capacity': '1TB'}","{'Brand': 'MSI', 'Model': 'Stealth 15M', 'Model Code': 'B12UE-027CA', 'CPU': 'Intel Core i7-1260P', 'GPU': 'RTX3060', 'RAM': '16GB', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -215152,LPLEN02684,"Lenovo ThinkPad X1 Yoga Gen 5 Business 2 in 1 Notebook, 14"" Touchscreen, Full HD 1920 x 1080, Intel Core i5-10210U, 16 GB, 256 GB SSD, Windows 10 Pro, 20UB0067US",LENOVO,"['Laptops, Tablet', None, None, None]",980.95999992371,"{'Memory': '16GB', 'Screen Size': '14""', 'Operating System': 'Windows 10 Pro', 'Maximum Resolution': '1080p Full HD', 'Refresh Rate': '60Hz', 'SSD Capacity': '256GB'}","{'Brand': 'Lenovo', 'Model': 'ThinkPad X1 Yoga Gen 5', 'Model Code': '20UB0067US', 'Type': 'Business 2 in 1 Notebook', 'Screen': '14"" Touchscreen', 'Resolution': 'Full HD (1920 x 1080)', 'CPU': 'Intel Core i5-10210U', 'RAM': '16GB', 'Storage': '256GB SSD', 'OS': 'Windows 10 Pro'}" -215140,LPLGE00019OB,"LG gram Ultra-Lightweight Intel EVO Platform Notebook, 16"" QHD, Intel i5-1155G7, Intel Iris Xe Graphics, 8GB, 512GB SSD, Windows 11 Home, 16Z95P-K.AR55A8(Open Box)",LG,"['Laptops, Tablet', None, None, None]",712.39,"{'Notebook Type': 'Consumer', 'Notebook Chassis': 'Thin and Light', 'Screen Size': '16""', 'Maximum Resolution': '2560 x 1600', 'Refresh Rate': '60Hz', 'CPU': 'i5-1155G7'}","{'Brand': 'LG', 'Model': 'gram', 'Model Code': '16Z95P-K.AR55A8', 'CPU': 'Intel i5-1155G7', 'GPU': 'Intel Iris Xe Graphics', 'RAM': '8GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '16""', 'Resolution': 'QHD', 'Platform': 'Intel EVO'}" -215118,LPHUA00035OB,"HUAWEI Matebook 14 Notebook, 14"", 2160 x 1440, Touch Screen, Intel Core i5-1135G7, Intel Iris Xe Graphics, 16GB, 512GB SSD, Windows 11 Home, 53012STE(Open Box)",HUAWEI,"['Laptops, Tablet', None, None, None]",664.89,"{'Screen Resolution Description': 'QHD', 'Memory': '16GB', 'Screen Size': '14""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '2160 x 1440', 'Refresh Rate': '60 Hz'}","{'Brand': 'HUAWEI', 'Model': 'Matebook 14', 'Model Code': '53012STE', 'Screen': '14""', 'Resolution': '2160 x 1440', 'Touch Screen': 'Yes', 'CPU': 'Intel Core i5-1135G7', 'GPU': 'Intel Iris Xe Graphics', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home'}" -214982,LPHUA00040,"HUAWEI MateBook D15 Notebook, 15.6"" FHD, i5-1135G7, Intel Iris Xe Graphics, 8GB, 512GB SSD, Win 11 Home, 53012QNY",HUAWEI,"['Laptops, Tablet', None, None, None]",499.88,"{'Memory': '8GB', 'Screen Size': '15.6', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60 Hz', 'SSD Capacity': '512GB'}","{'Brand': 'HUAWEI', 'Model': 'MateBook D15', 'Model Code': '53012QNY', 'CPU': 'Intel i5-1135G7', 'GPU': 'Intel Iris Xe Graphics', 'RAM': '8GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -214981,LPHUA00039,"HUAWEI MateBook 14s Notebook, 14.2"", 2520 x 1680, Touch Screen, i7-11370H, Intel Iris Xe Graphics, 16GB, 512GB SSD, Windows 11 Pro, 53012KTB",HUAWEI,"['Laptops, Tablet', None, None, None]",882.95999992371,"{'Memory': '16GB', 'Screen Size': '14.2', 'Operating System': 'Windows 11 Pro', 'Maximum Resolution': '2520 x 1680', 'Refresh Rate': '90 Hz', 'SSD Capacity': '512GB'}","{'Brand': 'HUAWEI', 'Model': 'MateBook 14s', 'Screen Size': '14.2""', 'Resolution': '2520 x 1680', 'Touch Screen': 'Yes', 'CPU': 'Intel i7-11370H', 'GPU': 'Intel Iris Xe Graphics', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Pro', 'Model Code': '53012KTB'}" -214828,LPHUA00038,"HUAWEI Matebook 14 Notebook, 14"", 2160 x 1440, Touch Screen, i5-1135G7, Intel Iris Xe Graphics, 16GB, 512GB SSD, Win 11 Home, 53012STE",HUAWEI,"['Laptops, Tablet', None, None, None]",799.88,"{'Memory': '16GB', 'Screen Size': '14""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '2160 x 1440', 'Refresh Rate': '60 Hz', 'SSD Capacity': '512GB'}","{'Brand': 'HUAWEI', 'Model': 'Matebook 14', 'Model Code': '53012STE', 'Screen Size': '14""', 'Resolution': '2160 x 1440', 'Touch Screen': 'Yes', 'CPU': 'i5-1135G7', 'GPU': 'Intel Iris Xe Graphics', 'RAM': '16GB', 'Storage': '512GB SSD', 'Operating System': 'Windows 11 Home'}" -214760,LPASU00547,"ASUS Vivobook 13 Slate Notebook, 13.3"" FHD Touch Screen, Intel Pentium Silver N6000, Intel UHD Graphics, 4GB, 128GB SSD, Win11 Home, T3300KA-DH91T-CA",ASUS,"['Laptops, Tablet', None, None, None]",349.88,"{'Screen Size': '13.3""', 'Memory': '4GB', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '128GB'}","{'Brand': 'ASUS', 'Model': 'Vivobook 13 Slate Notebook', 'Model Code': 'T3300KA-DH91T-CA', 'Screen': '13.3""', 'Resolution': 'FHD', 'Touch Screen': 'Yes', 'CPU': 'Intel Pentium Silver N6000', 'GPU': 'Intel UHD Graphics', 'RAM': '4GB', 'Storage': '128GB SSD', 'OS': 'Windows 11 Home'}" -214188,LPHUA00036,"HUAWEI MateBook D15 Notebook, 15.6"" FHD, i5-1135G7, Intel Iris Xe Graphics, 8GB, 512GB SSD, Win 11 Home, 53012TCA",HUAWEI,"['Laptops, Tablet', None, None, None]",599.0,"{'Memory': '8GB', 'Screen Size': '15.6', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60 Hz', 'SSD Capacity': '512GB'}","{'Brand': 'HUAWEI', 'Model': 'MateBook D15', 'Model Code': '53012TCA', 'CPU': 'Intel i5-1135G7', 'GPU': 'Intel Iris Xe Graphics', 'RAM': '8GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -213598,LPASU00540,"ASUS VivoBook Pro 16X Notebook, 16"" FHD, AMD Ryzen 7 5800H, NVIDIA GeForce RTX 3050, 16GB, 512GB SSD, Win11 Home, M7600QC-DH79-CA",ASUS,"['Laptops, Tablet', None, None, None]",1599.0,"{'Screen Size': '16""', 'Memory': '16GB', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '3840 x 2400', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}","{'Brand': 'ASUS', 'Model': 'VivoBook Pro 16X', 'Model Code': 'M7600QC-DH79-CA', 'CPU': 'AMD Ryzen 7 5800H', 'GPU': 'NVIDIA GeForce RTX 3050', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 11 Home', 'Screen': '16""', 'Resolution': 'FHD'}" -213386,LPLEN02610OB,"Lenovo Thinkpad T450 Business Notebook | 14"" HD Intel Core i5-4300U 16GB DDR3 256GB SSD Windows 10 Pro (Refurbished)(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",265.39,"{'Notebook Type': 'Business', 'Notebook Chassis': 'Clamshell', 'Screen Size': '14""', 'Maximum Resolution': '1366 x 768', 'Refresh Rate': '60Hz', 'CPU': 'i5-4300U'}","{'Brand': 'Lenovo', 'Model': 'Thinkpad T450', 'CPU': 'Intel Core i5-4300U', 'RAM': '16GB DDR3', 'Storage': '256GB SSD', 'OS': 'Windows 10 Pro', 'Screen': '14""', 'Resolution': 'HD', 'Condition': 'Refurbished (Open Box)'}" -213263,LPLEN02627,"Lenovo ThinkPad L15 Gen2 20X300HDUS 15.6"" Notebook - Full HD - 1920 x 1080 - Intel Core i7 11th Gen i7-1165G7 Quad-core (4 Core) 2.8GHz - 16GB Total RAM - 512GB SSD - Black - no ethernet port - not compatible with mechanical docking stations, only support",LENOVO,"['Laptops, Tablet', None, None, None]",1610.9600012207,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '20X300HDUS', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'ThinkPad', 'General InformationProduct Series': 'L15 Gen2'}","{'Brand': 'Lenovo', 'Model': 'ThinkPad L15 Gen2', 'Model Code': '20X300HDUS', 'Screen Size': '15.6""', 'Resolution': 'Full HD (1920 x 1080)', 'CPU': 'Intel Core i7 11th Gen i7-1165G7', 'Number of Cores': 'Quad-core (4 Core)', 'Base Clock Speed': '2.8GHz', 'RAM': '16GB Total', 'Storage': '512GB SSD', 'Color': 'Black', 'Ethernet Port': 'No', 'Docking Compatibility': 'Not compatible with mechanical docking stations', 'Support for Docking': 'Yes'}" -212372,LPMIF00777,"Microsoft Surface Laptop Go 12.4"" Touchscreen Notebook - QXGA - 1536 x 1024 - Intel Core i5 10th Gen i5-1035G1 Quad-core (4 Core) 1 GHz - 8 GB Total RAM - 1 TB SSD - Windows 10 Home in S mode - Intel UHD Graphics - PixelSense - 13 Hours Battery Run Time -",MICROSOFT,"['Laptops, Tablet', None, None, None]",849.88,"{'General InformationManufacturer': 'Microsoft Corporation', 'General InformationManufacturer Part Number': '1ZZ-00003', 'General InformationManufacturer Website Address': 'http://www.microsoft.ca', 'General InformationBrand Name': 'Microsoft', 'General InformationProduct Line': 'Surface Laptop Go', 'General InformationProduct Name': 'Surface Laptop Go Notebook'}","{'Brand': 'Microsoft', 'Model': 'Surface Laptop Go', 'Screen': '12.4"" Touchscreen Notebook', 'Resolution': 'QXGA (1536 x 1024)', 'CPU': 'Intel Core i5 10th Gen, i5-1035G1 Quad-core (4 Core) 1 GHz', 'RAM': '8 GB Total RAM', 'Storage': '1 TB SSD', 'OS': 'Windows 10 Home in S mode', 'GPU': 'Intel UHD Graphics - PixelSense', 'Battery Life': 'Up to 13 hours'}" -210948,LPMSI00381OB,"MSI Prestige 14 Ultra Thin and Light Notebook, 14"" FHD, Intel Core i7-1185G7, NVIDIA GeForce MX450, 16GB DDR4, 1TB SSD, Win10 Home, Prestige 14 A11SB-631CA(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",736.14,"{'Memory': '16GB', 'Screen Size': '14""', 'Operating System': 'Windows 10 Home', 'SSD Capacity': '1TB', 'CPU': 'i7-1185G7', 'Hard Drive Capacity': 'None'}","{'Brand': 'MSI', 'Model': 'Prestige 14', 'Model Code': 'A11SB-631CA', 'CPU': 'Intel Core i7-1185G7', 'GPU': 'NVIDIA GeForce MX450', 'RAM': '16GB DDR4', 'Storage': '1TB SSD', 'OS': 'Win10 Home', 'Screen': '14""', 'Resolution': 'FHD (Full HD)', 'Weight': 'Ultra Thin and Light'}" -210726,LPDEL00592,"Dell Mobile Precision Workstation 7760 CTO Business Notebook, 17.3"" FHD, Intel Core i7-11850H, NVIDIA RTX A4000, 32GB, 2TB+2TB, Win10Pro",DELL,"['Laptops, Tablet', None, None, None]",4599.0,"{'Memory': '32GB', 'Screen Size': '17.3""', 'Operating System': 'Windows 10 Pro', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '2TB + 2TB'}","{'Brand': 'Dell', 'Product Line': 'Mobile Precision Workstation', 'Model': '7760 CTO', 'Screen Size': '17.3""', 'Resolution': 'FHD', 'CPU': 'Intel Core i7-11850H', 'GPU': 'NVIDIA RTX A4000', 'RAM': '32GB', 'Storage': '2TB (HDD) + 2TB (HDD)', 'Operating System': 'Windows 10 Pro'}" -210233,LPHEW01653OB,"HP 15-ef1013dx Notebook, 15.6"" FHD Touchscreen, AMD Ryzen 7 4700U, AMD Radeon Graphics, 8GB DDR4, 512GB SSD, Windows 10 Home, 364K3UA#ABA(Open Box)",HP,"['Laptops, Tablet', None, None, None]",445.43999923706,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 10 Home', 'Maximum Resolution': '1080p Full HD', 'SSD Capacity': '512GB', 'CPU': 'Ryzen 7 4700U'}","{'Brand': 'HP', 'Model': '15-ef1013dx', 'Model Code': '364K3UA#ABA', 'CPU': 'AMD Ryzen 7 4700U', 'GPU': 'AMD Radeon Graphics', 'RAM': '8GB DDR4', 'Storage': '512GB SSD', 'OS': 'Windows 10 Home', 'Screen': '15.6"" FHD Touchscreen'}" -207246,LPLGE00015OB,"LG Gram 2-in-1 Ultra-Lightweight Notebook, 16"" FHD, Intel i7-1165G7, Intel Iris Xe Graphics, 16GB, 512GB SSD, Windows 10 Home, 16T90P-K.AA75A8(Open Box)",LG,"['Laptops, Tablet', None, None, None]",902.39,"{'Notebook Type': 'Consumer', 'Notebook Chassis': 'Convertible (2 in 1)', 'Screen Size': '16""', 'Maximum Resolution': '1080p Full HD', 'Refresh Rate': '60Hz', 'CPU': 'i7-1165G7'}","{'Brand': 'LG', 'Model': 'Gram 2-in-1', 'Model Code': '16T90P-K.AA75A8', 'CPU': 'Intel i7-1165G7', 'GPU': 'Intel Iris Xe Graphics', 'RAM': '16GB', 'Storage': '512GB SSD', 'OS': 'Windows 10 Home', 'Screen': '16""', 'Resolution': 'FHD'}" -203438,LPMSI00293OB,"MSI GF75 THIN Gaming Notebook| 17.3"" FHD 144Hz Intel Core i7-10750H | RTX3060, 16GB DDR4, 512GB SSD | Windows 10 Home, VR Ready, GF75 10UEK-003CA(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",1146.4900003815,"{'Memory': '16GB', 'Screen Size': '17.3""', 'Operating System': 'Windows 10', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '144Hz', 'SSD Capacity': '512GB'}","{'Brand': 'MSI', 'Series': 'GF75 THIN', 'Model': 'GF75 10UEK-003CA', 'Screen Size': '17.3""', 'Resolution': 'FHD', 'Refresh Rate': '144Hz', 'CPU': 'Intel Core i7-10750H', 'GPU': 'RTX3060', 'RAM': '16GB DDR4', 'Storage': '512GB SSD', 'OS': 'Windows 10 Home', 'VR Ready': 'Yes'}" -202423,LPHEW01543OB,"HP 15.6"" Notebook AMD Ryzen 7 5700U, AMD Radeon Graphics, 16GB DDR4, 1TB SSD, Windows 11 Home, 15-ef2030ca(Open Box)",HP,"['Laptops, Tablet', None, None, None]",854.89,"{'Memory': '16GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1080p Full HD', 'SSD Capacity': '1TB', 'CPU': 'Ryzen 7 5700U'}","{'Brand': 'HP', 'Model': 'Notebook', 'Model Code': '15-ef2030ca', 'CPU': 'AMD Ryzen 7 5700U', 'GPU': 'AMD Radeon Graphics', 'RAM': '16GB DDR4', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""'}" -201668,LPICA00012OB,"iCAN MID1016-MK Tablet | 10.1"" (800x1280) IPS Panel, MT8167B ARM Cortex-A35 1.3Ghz, 2GB RAM, 64GB ROM | IMG PowerVR GE8300, 0.3MP FF, 2.0MP FF, BT4.1, Android 9.0(Open Box)",iSmart,"['Laptops, Tablet', None, None, None]",94.89,"{'Model': 'MID1016-MK', 'Weight': '0.48KG', 'Dimensions': '294*182*10.8mm', 'Display Size': '10.1""', 'USB': 'USB(5V/2A) Micro USB', 'Operating System': 'Android 9.0'}","{'Brand': 'iCAN', 'Model': 'MID1016-MK', 'Screen': '10.1""', 'Resolution': '800x1280', 'Panel': 'IPS', 'CPU': 'MT8167B ARM Cortex-A35 1.3Ghz', 'RAM': '2GB', 'ROM': '64GB', 'GPU': 'IMG PowerVR GE8300', 'Front Camera': '0.3MP FF', 'Rear Camera': '2.0MP FF', 'Bluetooth Version': '4.1', 'OS': 'Android 9.0'}" -201233,LPMSI00379,"MSI Modern 14 Ultra Thin and Light Notebook, 14"" FHD, Intel Core i7-1195G7, Intel Iris Xe, 8GB 512GB SSD, Win 10 Home, Modern 14 B11MOU-834CA",MSI,"['Laptops, Tablet', None, None, None]",1099.0,"{'Memory': '8GB', 'Screen Size': '14""', 'Operating System': 'Windows 10 Home', 'SSD Capacity': '512GB', 'CPU': 'i7-1195G7', 'Hard Drive Capacity': 'None'}","{'Brand': 'MSI', 'Model': 'Modern 14', 'Model Code': 'B11MOU-834CA', 'CPU': 'Intel Core i7-1195G7', 'GPU': 'Intel Iris Xe', 'RAM': '8GB', 'Storage': '512GB SSD', 'OS': 'Windows 10 Home', 'Screen': '14""', 'Resolution': 'FHD'}" -201035,LPACE00816,"Acer Nitro Gaming Notebook,15.6"" FHD, Intel i5-11400H, NVIDIA GeForce RTX 3050, 8GB DDR4, 512GB SSD, Windows 11, AN515-57-599A (NH.QELAA.002)",ACER,"['Laptops, Tablet', None, None, None]",715.88,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11', 'Maximum Resolution': '1080p Full HD', 'Refresh Rate': '144Hz', 'SSD Capacity': '512GB'}","{'Brand': 'Acer', 'Model': 'Nitro', 'Model Code': 'AN515-57-599A (NH.QELAA.002)', 'CPU': 'Intel i5-11400H', 'GPU': 'NVIDIA GeForce RTX 3050', 'RAM': '8GB DDR4', 'Storage': '512GB SSD', 'OS': 'Windows 11', 'Screen': '15.6""', 'Resolution': 'FHD'}" -199065,LPHEW01543,"HP 15.6"" Notebook AMD Ryzen 7 5700U, AMD Radeon Graphics, 16GB DDR4, 1TB SSD, Windows 11 Home, 15-ef2030ca",HP,"['Laptops, Tablet', None, None, None]",899.88,"{'Memory': '16GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1080p Full HD', 'SSD Capacity': '1TB', 'CPU': 'Ryzen 7 5700U'}","{'Brand': 'HP', 'Model': '15-ef2030ca', 'CPU': 'AMD Ryzen 7 5700U', 'GPU': 'AMD Radeon Graphics', 'RAM': '16GB DDR4', 'Storage': '1TB SSD', 'OS': 'Windows 11 Home', 'Screen': '15.6""'}" -198627,LPLEN02299,"Lenovo ThinkPad X13 Yoga Gen 2 20W8002XUS 13.3"" Touchscreen 2 in 1 Notebook - WUXGA - 1920 x 1200 - Intel Core i7 (11th Gen) i7-1165G7 Quad-core (4 Core) 2.80 GHz - 16 GB RAM - 256 GB SSD - Black - Windows 10 Pro - Intel Iris Xe Graphics - In-plane Switch",LENOVO,"['Laptops, Tablet', None, None, None]",2892.49,"{'Manufacturer': 'Lenovo Group Limited', 'Manufacturer Part Number': '20W8002XUS', 'Manufacturer Website Address': 'http://www.lenovo.com/ca/en', 'Brand Name': 'Lenovo', 'Product Line': 'ThinkPad', 'Product Series': 'X13 Yoga Gen 2'}","{'Brand': 'Lenovo', 'Model': 'ThinkPad X13 Yoga Gen 2', 'Model Code': '20W8002XUS', 'Screen': '13.3"" Touchscreen', 'Resolution': 'WUXGA - 1920 x 1200', 'CPU': 'Intel Core i7 (11th Gen) i7-1165G7 Quad-core', 'RAM': '16GB', 'Storage': '256GB SSD', 'Color': 'Black', 'OS': 'Windows 10 Pro', 'GPU': 'Intel Iris Xe Graphics', 'Display Technology': 'In-plane Switching (IPS)'}" -198030,LPLEN02269,"Lenovo ThinkPad T14s Gen 2 20WM007YUS 14"" Notebook - Full HD - 1920 x 1080 - Intel Core i5 11th Gen i5-1145G7 Quad-core (4 Core) 2.60 GHz - 8 GB Total RAM - 256 GB SSD - Intel Chip - Windows 10 Pro - Intel Iris Xe Graphics - In-plane Switching (IPS) Techn",LENOVO,"['Laptops, Tablet', None, None, None]",999.0,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '20WM007YUS', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'ThinkPad', 'General InformationProduct Series': 'T14s Gen 2'}","{'Brand': 'Lenovo', 'Series': 'ThinkPad T14s Gen 2', 'Model': '20WM007YUS', 'Screen Size': '14""', 'Resolution': 'Full HD (1920 x 1080)', 'Processor': 'Intel Core i5 11th Gen i5-1145G7 Quad-core (4 Core) 2.60 GHz', 'RAM': '8 GB', 'Storage': '256 GB SSD', 'Graphics': 'Intel Iris Xe Graphics', 'Operating System': 'Windows 10 Pro', 'Panel Type': 'In-plane Switching (IPS) Technology'}" -195680,LPLEN02131,"Lenovo ThinkPad E14 Business Notebook, 14"" Full HD, AMD Ryzen 5 5500U, 8GB, 256GB SSD, Windows 10 Pro, 20Y70037US",LENOVO,"['Laptops, Tablet', None, None, None]",999.0,"{'Hard Drive Capacity': 'None', 'Memory': '8GB', 'Screen Size': '14""', 'Operating System': 'Windows 10 Pro', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz'}","{'Brand': 'Lenovo', 'Series': 'ThinkPad E14', 'Model': '20Y70037US', 'Screen Size': '14""', 'Resolution': 'Full HD', 'CPU': 'AMD Ryzen 5 5500U', 'RAM': '8GB', 'Storage': '256GB SSD', 'Operating System': 'Windows 10 Pro'}" -195447,LPLEN02112,"Lenovo ThinkBook 14s Yoga ITL Notebook | 14"" FHD Touchscreen, Intel i5-1135G7, 8GB DDR4, 256GB SSD, Intel Iris Xe Graphics | Windows 10 Pro, 20WE0014US",LENOVO,"['Laptops, Tablet', None, None, None]",1249.0,"{'Memory': '16GB', 'Screen Size': '14""', 'Operating System': 'Windows 10 Pro', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '256GB'}","{'Brand': 'Lenovo', 'Model': 'ThinkBook 14s Yoga ITL', 'Model Code': '20WE0014US', 'CPU': 'Intel i5-1135G7', 'GPU': 'Intel Iris Xe Graphics', 'RAM': '8GB DDR4', 'Storage': '256GB SSD', 'OS': 'Windows 10 Pro', 'Screen': '14""', 'Resolution': 'FHD', 'Touchscreen': 'Yes'}" -194554,LPLEN02071,"Lenovo ThinkPad X13 Yoga Gen 2 20W80037US 13.3"" Touchscreen 2 in 1 Notebook - WUXGA - 1920 x 1200 - Intel Core i5 (11th Gen) i5-1135G7 Quad-core (4 Core) 2.40 GHz - 8 GB RAM - 256 GB SSD - Black - Windows 10 Pro - Intel Iris Xe Graphics - In-plane Switchi",LENOVO,"['Laptops, Tablet', None, None, None]",2019.0,"{'Manufacturer': 'Lenovo Group Limited', 'Manufacturer Part Number': '20W80037US', 'Manufacturer Website Address': 'http://www.lenovo.com/ca/en', 'Brand Name': 'Lenovo', 'Product Line': 'ThinkPad', 'Product Series': 'X13 Yoga Gen 2'}","{'Brand': 'Lenovo', 'Model': 'ThinkPad X13 Yoga Gen 2', 'Model Code': '20W80037US', 'Screen Size': '13.3""', 'Screen Type': 'Touchscreen', 'Form Factor': '2-in-1 Notebook', 'Resolution': 'WUXGA - 1920 x 1200', 'CPU': 'Intel Core i5 (11th Gen) i5-1135G7 Quad-core', 'CPU Clock Speed': '2.40 GHz', 'RAM': '8 GB', 'Storage': '256 GB SSD', 'Color': 'Black', 'OS': 'Windows 10 Pro', 'GPU': 'Intel Iris Xe Graphics', 'Screen Technology': 'In-plane Switching (IPS)'}" -194211,LPLEN02056,"Lenovo IdeaPad Slim 7i Notebook | 14"" FHD, Intel i5-1135G7, 8GB DDR4, 512GB SSD, Intel Iris Xe Graphics | Windows 10 Home, 82A60011CC",LENOVO,"['Laptops, Tablet', None, None, None]",1259.99,"{'Memory': '8GB', 'Screen Size': '14""', 'Operating System': 'Windows 10 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}","{'Brand': 'Lenovo', 'Model': 'IdeaPad Slim 7i', 'Model Code': '82A60011CC', 'CPU': 'Intel i5-1135G7', 'GPU': 'Intel Iris Xe Graphics', 'RAM': '8GB DDR4', 'Storage': '512GB SSD', 'OS': 'Windows 10 Home', 'Screen': '14""', 'Resolution': 'FHD'}" -187812,LPLEN01870,"Lenovo ThinkPad X1 Nano Gen1 20UN000AUS 13"" Ultrabook - Intel Core i7 i7-1160G7 EVO Quad-core (4 Core) 2.10 GHz - 16 GB RAM - 256 GB SSD - Black - Windows 10 Pro - Intel Iris Xe Graphics - In-plane Switching (IPS) Technology - English (US) Keyboard - IEEE",LENOVO,"['Laptops, Tablet', None, None, None]",2399.88,"{'Manufacturer': 'Lenovo Group Limited', 'Manufacturer Part Number': '20UN000AUS', 'Manufacturer Website Address': 'http://www.lenovo.com/ca/en', 'Brand Name': 'Lenovo', 'Product Line': 'ThinkPad', 'Product Series': 'X1 Nano Gen1'}","{'Brand': 'Lenovo', 'Series': 'ThinkPad X1 Nano Gen1', 'Model': '20UN000AUS', 'Screen Size': '13""', 'Type': 'Ultrabook', 'CPU': 'Intel Core i7-1160G7 EVO Quad-core', 'CPU Speed': '2.10 GHz', 'RAM': '16 GB', 'Storage': '256 GB SSD', 'Color': 'Black', 'OS': 'Windows 10 Pro', 'GPU': 'Intel Iris Xe Graphics', 'Display Technology': 'In-plane Switching (IPS)', 'Keyboard Layout': 'English (US)', 'Wireless Standard': 'IEEE'}" -187650,LPLEN01858,"Lenovo ThinkPad E14 Gen 2 20TA0025US 14"" Notebook - Full HD - 1920 x 1080 - Intel Core i7 i7-1165G7 Quad-core (4 Core) 2.80 GHz - 8 GB Total RAM - 512 GB SSD - Black - Windows 10 Pro - Intel Iris Xe Graphics - In-plane Switching (IPS) Technology - English",LENOVO,"['Laptops, Tablet', None, None, None]",1805.7,"{'Manufacturer': 'Lenovo Group Limited', 'Manufacturer Part Number': '20TA0025US', 'Manufacturer Website Address': 'http://www.lenovo.com/ca/en', 'Brand Name': 'Lenovo', 'Product Line': 'ThinkPad', 'Product Series': 'E14 Gen 2'}","{'Brand': 'Lenovo', 'Series': 'ThinkPad E14 Gen 2', 'Model': '20TA0025US', 'Screen Size': '14""', 'Resolution': 'Full HD (1920 x 1080)', 'CPU': 'Intel Core i7 i7-1165G7', 'Number of Cores': 'Quad-core (4 Core)', 'Base Clock Speed': '2.80 GHz', 'RAM': '8 GB Total', 'Storage': '512 GB SSD', 'Color': 'Black', 'OS': 'Windows 10 Pro', 'Graphics': 'Intel Iris Xe Graphics', 'Display Type': 'In-plane Switching (IPS) Technology', 'Keyboard Language': 'English'}" -185879,LPLEN01757,"Lenovo ThinkBook 15 G2 ITL 20VE006UUS 15.6"" Touchscreen Notebook - Full HD - 1920 x 1080 - Intel Core i7 i7-1165G7 Quad-core (4 Core) 2.80 GHz - 16 GB RAM - 512 GB SSD - Mineral Gray - Windows 10 Pro - Intel UHD Graphics - In-plane Switching (IPS) Technol",LENOVO,"['Laptops, Tablet', None, None, None]",1549.0,"{'Manufacturer': 'Lenovo Group Limited', 'Manufacturer Part Number': '20VE006UUS', 'Manufacturer Website Address': 'http://www.lenovo.com/ca/en', 'Brand Name': 'Lenovo', 'Product Line': 'ThinkBook', 'Product Series': '15 G2 ITL'}","{'Brand': 'Lenovo', 'Model': 'ThinkBook 15 G2 ITL', 'Model Code': '20VE006UUS', 'Screen': '15.6"" Touchscreen', 'Resolution': 'Full HD (1920 x 1080)', 'CPU': 'Intel Core i7-1165G7 Quad-core (4 Core) 2.80 GHz', 'RAM': '16 GB', 'Storage': '512 GB SSD', 'Color': 'Mineral Gray', 'OS': 'Windows 10 Pro', 'GPU': 'Intel UHD Graphics', 'Display Technology': 'In-plane Switching (IPS)'}" -183163,LPMIF00603,"Microsoft Surface Pro X Tablet - 13"" - 16 GB RAM - 256 GB SSD - Windows 10 Pro - 4G - Matte Black, 1WX-00014",MICROSOFT,"['Laptops, Tablet', None, None, None]",2229.0,"{'Manufacturer': 'Microsoft Corporation', 'Manufacturer Part Number': 'QGM-00001', 'Manufacturer Website Address': 'http://www.microsoft.ca', 'Brand Name': 'Microsoft', 'Product Line': 'Surface Pro X', 'Product Name': 'Surface Pro X Tablet'}","{'Brand': 'Microsoft', 'Model': 'Surface Pro X Tablet', 'Model Code': '1WX-00014', 'Screen': '13""', 'RAM': '16GB', 'Storage': '256GB SSD', 'OS': 'Windows 10 Pro', 'Connectivity': '4G', 'Color': 'Matte Black'}" -168807,LPMIF00436,"Microsoft Surface Go 2 Tablet - 10.5"" - Intel Pentium Gold 4425Y 1.70 GHz - 4 GB RAM - 64 GB Storage - Windows 10 Home - Silver - microSDXC Supported - 1920 x 1280 - PixelSense Display - 5 Megapixel Front Camera - 10 Hour Maximum Battery Run Time",MICROSOFT,"['Laptops, Tablet', None, None, None]",479.88,"{'Manufacturer': 'Microsoft Corporation', 'Manufacturer Part Number': 'STZ-00001', 'Manufacturer Website Address': 'http://www.microsoft.ca', 'Brand Name': 'Microsoft', 'Product Line': 'Surface Go 2', 'Product Name': 'Surface Go 2 Tablet'}","{'Brand': 'Microsoft', 'Model': 'Surface Go 2', 'Screen': '10.5""', 'CPU': 'Intel Pentium Gold 4425Y', 'Clock Speed': '1.70 GHz', 'RAM': '4 GB', 'Storage': '64 GB', 'OS': 'Windows 10 Home', 'Color': 'Silver', 'Expansion Slot': 'microSDXC Supported', 'Resolution': '1920 x 1280', 'Display Type': 'PixelSense', 'Front Camera': '5 Megapixel', 'Battery Life': '10 Hours'}" -167980,LPSAS00045,"Samsung Galaxy Tab S6 Lite Tablet | 10.4"" Exynos 9611 8-Core Processor, 4GB RAM, 128GB Flash Memory | Android, Oxford Grey with S PEN, SM-P610NZAEXAC",SAMSUNG,"['Laptops, Tablet', None, None, None]",479.99,"{'Memory': '4GB', 'Screen Size': '10.4""', 'Operating System': 'Android', 'Maximum Resolution': 'Others', 'SSD Capacity': '128GB eMMC', 'CPU': 'Exynos 9611'}","{'Brand': 'Samsung', 'Model': 'Galaxy Tab S6 Lite', 'Model Code': 'SM-P610NZAEXAC', 'Processor': 'Exynos 9611 8-Core', 'RAM': '4GB', 'Storage': '128GB Flash Memory', 'Operating System': 'Android', 'Color': 'Oxford Grey', 'Included Accessory': 'S PEN', 'Screen': '10.4""'}" -167978,LPSAS00043,"Samsung Galaxy Tab S6 Lite Tablet | 10.4"" Exynos 9611 8-Core Processor, 4GB RAM, 64GB Flash Memory | Android, Oxford Grey with S PEN, SM-P610NZAAXAC",SAMSUNG,"['Laptops, Tablet', None, None, None]",449.99,"{'Memory': '4GB', 'Screen Size': '10.4""', 'Operating System': 'Android', 'Maximum Resolution': 'Others', 'SSD Capacity': '64GB eMMC', 'CPU': 'Exynos 9611'}","{'Brand': 'Samsung', 'Model': 'Galaxy Tab S6 Lite', 'Model Number': 'SM-P610NZAAXAC', 'Screen Size': '10.4""', 'Processor': 'Exynos 9611 8-Core', 'RAM': '4GB', 'Storage': '64GB Flash Memory', 'Operating System': 'Android', 'Color': 'Oxford Grey', 'Included Accessory': 'S PEN'}" -165263,LPACE00491,"Acer Aspire 5 (Refurbished) Notebook | 15.6"" FHD Intel i7-10510U | 8GB DDR4, 512GB SSD, Intel UHD 620 graphics | Windows 10 Home, A515-54-74LM (RNB-NX.HNAAA.006)",ACER,"['Laptops, Tablet', None, None, None]",585.88,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 10 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}","{'Brand': 'Acer', 'Model': 'Aspire 5', 'Model Code': 'A515-54-74LM (RNB-NX.HNAAA.006)', 'CPU': 'Intel i7-10510U', 'GPU': 'Intel UHD 620 graphics', 'RAM': '8GB DDR4', 'Storage': '512GB SSD', 'OS': 'Windows 10 Home', 'Screen': '15.6""', 'Resolution': 'FHD'}" -162570,LPSAS00039,"Samsung Galaxy Tab Active Pro SM-T547 Tablet - 10.1"" - 4 GB RAM - 64 GB Storage - Android 9.0 Pie - 4G - Black - Qualcomm Snapdragon 670 SoC Dual-core (2 Core) 2 GHz Hexa-core (6 Core) 1.70 GHz - microSD Supported - 8 Megapixel Front Camera - 13 Megapixel",SAMSUNG,"['Laptops, Tablet', None, None, None]",899.99,"{'Manufacturer': 'Samsung', 'Manufacturer Part Number': 'SM-T547UZKAXAC', 'Manufacturer Website Address': 'http://www.samsung.ca', 'Brand Name': 'Samsung', 'Product Line': 'Galaxy Tab Active Pro', 'Product Model': 'SM-T547'}","{'Brand': 'Samsung', 'Model': 'Galaxy Tab Active Pro', 'Model Code': 'SM-T547', 'Screen': '10.1""', 'RAM': '4GB', 'Storage': '64GB', 'Operating System': 'Android 9.0 Pie', 'Connectivity': '4G', 'Color': 'Black', 'Processor': 'Qualcomm Snapdragon 670', 'CPU Cores': 'Dual-core (2 Core) 2 GHz, Hexa-core (6 Core) 1.70 GHz', 'Front Camera': '8 Megapixel', 'Rear Camera': '13 Megapixel', 'MicroSD Support': 'Yes'}" -150525,LPASU00227,"Asus Chromebook Flip C434 C434TA-Q1-CB 14"" Chromebook Intel m3-8100Y 4 GB RAM - 64GB Flash Memory - Black, Silver - Chrome OS",ASUS,"['Laptops, Tablet', None, None, None]",699.0,"{'General InformationManufacturer': 'ASUS Computer International', 'General InformationManufacturer Part Number': 'C434TA-Q1-CB', 'General InformationManufacturer Website Address': 'http://www.asus.com', 'General InformationBrand Name': 'Asus', 'General InformationProduct Line': 'Chromebook Flip', 'General InformationProduct Series': 'C434'}","{'Brand': 'Asus', 'Model': 'Chromebook Flip C434', 'Model Code': 'C434TA-Q1-CB', 'Screen': '14""', 'CPU': 'Intel m3-8100Y', 'RAM': '4GB', 'Storage': '64GB Flash Memory', 'Color': 'Black, Silver', 'OS': 'Chrome OS'}" -140290,LPICA00012,"iCAN MID1016-MK Tablet | 10.1"" (800x1280) IPS Panel, MT8167B ARM Cortex-A35 1.3Ghz, 2GB RAM, 64GB ROM | IMG PowerVR GE8300, 0.3MP FF, 2.0MP FF, BT4.1, Android 9.0",iSmart,"['Laptops, Tablet', None, None, None]",99.88,"{'Model': 'MID1016-MK', 'Weight': '0.48KG', 'Dimensions': '294*182*10.8mm', 'Display Size': '10.1""', 'USB': 'USB(5V/2A) Micro USB', 'Operating System': 'Android 9.0'}","{'Brand': 'iCAN', 'Model': 'MID1016-MK', 'Screen': '10.1""', 'Resolution': '800x1280', 'Panel Type': 'IPS', 'CPU': 'MT8167B ARM Cortex-A35 1.3GHz', 'RAM': '2GB', 'ROM': '64GB', 'GPU': 'IMG PowerVR GE8300', 'Front Camera': '0.3MP fixed focus', 'Rear Camera': '2.0MP fixed focus', 'Bluetooth': '4.1', 'Operating System': 'Android 9.0'}" -216036,LPASU00561,"ASUS ExpertBook B1 Business Notebook, 15.6"" FHD, Intel Core i5-1135G7, Intel Iris Xe Graphics G7, 8GB, 256GB SSD, Windows 10 Pro, 3YR Warranty, 1YR ADP",ASUS,"['Laptops, Tablet', None, None, None]",599.88,"{'Screen Size': '15.6""', 'Memory': '8GB', 'Operating System': 'Windows 10 Pro', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '256GB'}","{'Brand': 'ASUS', 'Model': 'ExpertBook B1', 'Screen': '15.6""', 'Resolution': 'FHD', 'CPU': 'Intel Core i5-1135G7', 'GPU': 'Intel Iris Xe Graphics G7', 'RAM': '8GB', 'Storage': '256GB SSD', 'OS': 'Windows 10 Pro', 'Warranty': '3 Years', 'ADP (Accidental Damage Protection) Coverage': '1 Year'}" diff --git a/PCData/data/computed/canada_computers_laptops_bench_0.1.csv b/PCData/data/computed/canada_computers_laptops_bench_0.1.csv deleted file mode 100644 index 231e0f2..0000000 --- a/PCData/data/computed/canada_computers_laptops_bench_0.1.csv +++ /dev/null @@ -1,576 +0,0 @@ -item_id,Model,CPU,GPU,RAM,Storage,price,bench,cpu_bench,gpu_bench,value -LPCOI00001OB,VOYAGER Gaming Notebook,AMD Ryzen 7 6800HS,Radeon 6800M,16.0,1TB,989.89,71.82032152829801,22947.0,54.6,725.5384085938641 -LPMSI00429OB,Katana GF66,Intel Core i7-11800H,RTX3060,16.0,512GB,786.48999847412,55.80519286947933,20753.0,42.0,709.5473938352394 -LPGIG00147OB,G5 KF-E3US333SH,Intel i5-12500H,GeForce RTX 4060,8.0,512GB,899.1,61.27414228074636,21521.0,46.3,681.5053084278318 -LPGIG00160OB,G5 Gaming Notebook,Intel i5-12450H,GeForce RTX 4050,16.0,512GB,809.1,55.08720398257081,17456.0,41.9,680.8454329819652 -LPGIG00135OB,AERO 16 XE4,Intel Core i7-12700H,GeForce RTX 3070 Ti,16.0,2TB,1079.1,69.47156754091024,26424.0,52.2,643.7917481318715 -LPHEW02076OB,Victus Gaming Notebook,AMD Ryzen 5 7640HS,GeForce RTX 4050,16.0,512GB,899.1,56.156335380873614,23390.0,41.9,624.5838658755823 -LPGIG00162OB,G5 KF,Intel i7-12650H,GeForce RTX 4060,16.0,512GB,989.1,61.5912422573242,23281.0,46.3,622.6998509485815 -LPGIG00142OB,G5 KE-52US213SH,Intel i5-12500H,GeForce RTX 3060,16.0,512GB,899.89,55.943563768349655,21521.0,42.0,621.6711350092751 -LPACE00980OB,Nitro 5,AMD Ryzen 7 5800H,GeForce RTX 3060,16.0,512GB,899.1,55.873117125825836,21130.0,42.0,621.4338463555315 -LPASU00584OB,TUF Gaming Notebook,Ryzen 7 5800H,GeForce RTX 3060,16.0,512GB,899.89,55.873117125825836,21130.0,42.0,620.888298856814 -LPMSI00467OB,Crosshair 15,Intel Core i7-12700H,RTX3070Ti,16.0,512GB,1129.39,69.47156754091024,26424.0,52.2,615.1246915672198 -LPGIG00147,G5,Intel i5-12500H,GeForce RTX 4060,8.0,512GB,999.0,61.27414228074636,21521.0,46.3,613.3547775850486 -LPACE00968OB,Nitro 5,Intel i5-12450H,GeForce RTX 4060,16.0,512GB,989.1,60.54174943711628,17456.0,46.3,612.0892673856665 -LPGIG00133OB,A5 K1,AMD Ryzen 5 5600H,GeForce RTX 3060,16.0,512GB,936.79000152588,55.1457690545504,17093.0,42.0,588.6673530324493 -LPACE00877OB,Nitro 5,Intel i7-11800H,NVIDIA GeForce RTX3060,16.0,512GB,961.08999023437,55.80519286947933,20753.0,42.0,580.6448244859023 -LPHEW01865OB,Omen 16-b0020ca,Intel Core i7-11800H,NVIDIA GeForce RTX 3070,16.0,1TB,1091.5900007629,63.24320939840494,20753.0,48.0,579.3677970135763 -LPMSI00559OB,Thin GF63,Intel i7-12650H,GeForce RTX 4060,16.0,512GB,1079.1,61.5912422573242,23281.0,46.3,570.7649175917358 -LPMSI00504OB,GP66 Leopard,Intel Core i7-11800H,NVIDIA RTX3070,16.0,512GB,1114.0900007629,63.24320939840494,20753.0,48.0,567.6669690518506 -LPMSI00530OB,Katana GF66,Intel i5-11400H,GeForce RTX 3050,8.0,512GB,651.48999847412,36.941565812167404,15822.0,27.5,567.0319713071525 -LPHEW02076,Victus Gaming Notebook,AMD Ryzen 5 7640HS,GeForce RTX 4050,16.0,512GB,999.0,56.156335380873614,23390.0,41.9,562.125479288024 -LPMSI00560OB,Thin GF63,Intel i5-12450H,GeForce RTX 4060,16.0,512GB,1079.1,60.54174943711628,17456.0,46.3,561.0392867863617 -LPGIG00162,G5 KF,Intel i7-12650H,GeForce RTX 4060,16.0,512GB,1099.0,61.5912422573242,23281.0,46.3,560.4298658537233 -LPACE00980,Nitro 5,AMD Ryzen 7 5800H,GeForce RTX 3060,16.0,512GB,999.0,55.873117125825836,21130.0,42.0,559.2904617199782 -LPACE00968,Nitro 5,Intel i5-12450H,GeForce RTX 4060,16.0,512GB,1099.0,60.54174943711628,17456.0,46.3,550.8803406470998 -LPACE00912OB,Nitro 5,Intel Core i5-11400H,GTX 1650,8.0,256GB,526.39,28.635780688200462,15822.0,20.8,544.0031286346713 -LPACE00967OB,Nitro 5,Intel i9-12900H,GeForce RTX 4060,16.0,1TB,1169.1,62.535875880731936,28524.0,46.3,534.9061319025913 -LPACE00877,Nitro 5,Intel i7-11800H,NVIDIA GeForce RTX3060,16.0,512GB,1067.8800048828,55.80519286947933,20753.0,42.0,522.579246865887 -LPHEW02079,Victus 16,AMD Ryzen 7 7840HS,GeForce RTX 4060,16.0,1TB,1199.0,62.60127775090112,28887.0,46.3,522.1124082643963 -LPACE00816,Nitro,Intel i5-11400H,NVIDIA GeForce RTX 3050,8.0,512GB,715.88,36.941565812167404,15822.0,27.5,516.0301420931917 -LPGIG00124OB,AERO 16 XE5,Intel Core i7-12700H,NVIDIA GeForce RTX 3070 Ti,32.0,2 TB,1349.89,69.47156754091024,26424.0,52.2,514.6461381365166 -LPMSI00496OB,GF63 11UC-692,Intel i5-11400H,NVIDIA RTX3050,8.0,512GB,719.1,36.941565812167404,15822.0,27.5,513.7194522620971 -LPMSI00559,Thin GF63,Intel i7-12650H,GeForce RTX 4060,16.0,512GB,1199.0,61.5912422573242,23281.0,46.3,513.6884258325621 -LPHEW02058,Victus 15-fa1000ca,Intel i5-13500H,GeForce RTX 4050,16.0,512GB,1099.0,56.13813816630863,23289.0,41.9,510.8110843158201 -LPMSI00560,Thin GF63,Intel i5-12450H,GeForce RTX 4060,16.0,512GB,1199.0,60.54174943711628,17456.0,46.3,504.9353581077254 -LPHEW02087OB,Victus 15-fb0000ca,AMD Ryzen 5 5600H,GeForce RTX 3050 Ti,16.0,512GB,764.1,38.038331038021475,17093.0,28.2,497.818754587377 -LPHEW02035OB,Omen 16-wd0010ca,Intel i7-13620H,GeForce RTX 4060,16.0,1TB,1259.1,62.16922903281381,26489.0,46.3,493.75926481465973 -LPMSI00564OB,Bravo 15,AMD Ryzen 7 7735HS,GeForce RTX 4060,32.0,1TB,1259.1,61.76834980106057,24264.0,46.3,490.5754094278498 -LPMSI00539OB,Katana 15,Intel i7-12650H,GeForce RTX 4060,16.0,1TB,1259.1,61.5912422573242,23281.0,46.3,489.16878927268846 -LPACE00956OB,Nitro 5,Intel i7-12650H,GeForce RTX 4060,16.0,512GB,1259.1,61.5912422573242,23281.0,46.3,489.16878927268846 -LPACE00896OB,A715,AMD Ryzen 7 5700U,RTX3050,16.0,512GB,764.1,36.947331266287,15854.0,27.5,483.54052174174853 -LPASU00686OB,TUF Gaming Notebook,AMD Ryzen 7 7735HS,AMD Radeon RX 7600S,16.0,1TB,1349.1,64.99149029692835,24264.0,48.9,481.73960638150135 -LPACE00967,Nitro 5,Intel i9-12900H,GeForce RTX 4060,16.0,1TB,1299.0,62.535875880731936,28524.0,46.3,481.41551871233213 -LPLEN02719OB,T470,Intel Core i5-6300U,Intel HD 620,8.0,256 GB,262.69000019073,12.484578675890203,3240.0,9.6,475.25899984108975 -LPMSI00293OB,GF75 10UEK-003CA,Intel Core i7-10750H,RTX3060,16.0,512GB,1146.4900003815,54.23032304262312,12012.0,42.0,473.01174039527353 -LPLEN03469OB,Legion Pro 5i,Intel i7-13700HX,GeForce RTX 4060,16.0,512GB,1349.1,63.54230796548413,34110.0,46.3,470.99776121476634 -LPHEW02095OB,Victus 15-fb1010ca,AMD Ryzen 5 7535HS,GeForce RTX 2050,8.0,512GB,629.1,29.604235524161226,18445.0,21.2,470.5807586100974 -LPLEN03434OB,,AMD Ryzen 7 7745HX,GeForce RTX 4060,16.0,512GB,1349.1,63.32592326555799,32909.0,46.3,469.39384230641167 -LPACE00953,Nitro Gaming Notebook ,AMD Ryzen R5-7535HS,GeForce RTX 3050,8.0,512GB,799.0,37.41415287953313,18445.0,27.5,468.26223879265495 -LPMSI00572OB,Thin GF63,Intel i5-12450H,GeForce RTX 2050,8.0,512GB,629.1,29.42604695777743,17456.0,21.2,467.74832232995436 -LPASU00715OB,TUF F15,Intel i9-13900H,GeForce RTX 4060,16.0,1TB,1349.1,62.74541410389105,29687.0,46.3,465.0909058178864 -LPASU00556,G17,AMD Ryzen 7 4800H,NVIDIA GeForce RTX 3060,16.0,1TB,1196.88,55.42683494288077,18653.0,42.0,463.09433646548325 -LPMSI00496,GF63,Intel i5-11400H,RTX3050,8.0,512GB,799.0,36.941565812167404,15822.0,27.5,462.3475070358874 -LPASU00787,FX506HCB-DB59-CA,Intel i5-11400H,GeForce RTX 3050,8.0,512GB,799.0,36.941565812167404,15822.0,27.5,462.3475070358874 -LPLEN03438OB,Legion Pro 5,AMD Ryzen 7 7745HX,GeForce RTX 4070,16.0,512GB,1529.1,70.02013814159106,32909.0,51.7,457.91732484200554 -LPASU00688OB,TUF Gaming F15,Intel Core i9-13900H,GeForce RTX 4050,16.0,512GB,1259.1,57.29086864934558,29687.0,41.9,455.01444404213794 -LPASU00627OB,TUF507RR-DS71-CA,AMD Ryzen 7 6800H,GeForce RTX 3070,16.0,512GB,1412.0600000763,63.76588384843467,23654.0,48.0,451.58055496925846 -LPHEW02087,Victus 15-fb0000ca,AMD Ryzen 5 5600H,GeForce RTX 3050 Ti,16.0,512GB,849.0,38.038331038021475,17093.0,28.2,448.0368791286393 -LPHEW02035,Omen 16-wd0010ca,Intel i7-13620H,GeForce RTX 4060,16.0,1TB,1399.0,62.16922903281381,26489.0,46.3,444.38333833319376 -LPMSI00564,Bravo 15,AMD Ryzen 7 7735HS,GeForce RTX 4060,32.0,1TB,1399.0,61.76834980106057,24264.0,46.3,441.5178684850648 -LPMSI00539,Katana 15,Intel i7-12650H,GeForce RTX 4060,16.0,1TB,1399.0,61.5912422573242,23281.0,46.3,440.25191034541956 -LPACE00956,Nitro 5,Intel i7-12650H,GeForce RTX 4060,16.0,512GB,1399.0,61.5912422573242,23281.0,46.3,440.25191034541956 -LPACE00896,A715,AMD Ryzen 7 5700U,RTX3050,16.0,512GB,849.0,36.947331266287,15854.0,27.5,435.1864695675736 -LPGIG00152OB,AORUS 15,Intel Core i7-13700H,GeForce RTX 4060,16.0,1TB,1439.1,62.421647820987424,27890.0,46.3,433.7547621498675 -LPASU00686,TUF Gaming Notebook,AMD Ryzen 7 7735HS,AMD Radeon RX 7600S,16.0,1TB,1499.0,64.99149029692835,24264.0,48.9,433.56564574335124 -LPLEN03433OB,Legion Pro 5,AMD Ryzen 7 7745HX,GeForce RTX 4070,16.0,1TB,1619.1,70.02013814159106,32909.0,51.7,432.46333235495683 -LPASU00808OB,TUF Gaming F15,Intel i7-11800H,GeForce RTX 3050 Ti,16.0,1TB,899.1,38.6977548529504,20753.0,28.2,430.40545938105214 -LPASU00625OB,G15,AMD Ryzen 9 6900HX,GeForce RTX 3070 Ti,16.0,1TB,1619.89,69.19464557272835,24887.0,52.2,427.1564462570195 -LPMSI00541OB,Thin GF63,Intel i7-12650H,GeForce RTX 3050,16.0,512GB,899.1,38.28545713335725,23281.0,27.5,425.8197879363502 -LPMSI00593OB,Katana 17,Intel i7-13620H,GeForce RTX 4070,16.0,1TB,1619.1,68.86344390884688,26489.0,51.7,425.31927557807967 -LPLEN03469,Legion Pro 5i,Intel i7-13700HX,GeForce RTX 4060,16.0,512GB,1499.0,63.54230796548413,34110.0,46.3,423.89798509328966 -LPHEW02095,Victus 15-fb1010ca,AMD Ryzen 5 7535HS,GeForce RTX 2050,8.0,512GB,699.0,29.604235524161226,18445.0,21.2,423.52268274908766 -LPLEN03434,Legion Pro 5,AMD Ryzen 7 7745HX,GeForce RTX 4060,16.0,512GB,1499.0,63.32592326555799,32909.0,46.3,422.45445807577045 -LPMSI00572,Thin GF63,Intel i5-12450H,GeForce RTX 2050,8.0,512GB,699.0,29.42604695777743,17456.0,21.2,420.9734900969589 -LPLEN03086OB,Legion 5,Intel i7-12700H,GeForce RTX 3070,16.0,512GB,1529.89,64.2649559706623,26424.0,48.0,420.0625925436619 -LPASU00715,TUF F15,Intel i9-13900H,GeForce RTX 4060,16.0,1TB,1499.0,62.74541410389105,29687.0,46.3,418.5818152360977 -LPMSI00540OB,Thin GF63,Intel i7-12650H,GeForce RTX 4050,16.0,512GB,1349.1,56.13669680277873,23281.0,41.9,416.1047869155639 -LPLEN03565OB,,Ryzen 7 7745HX,GeForce RTX 4060,16.0,1TB,1529.1,63.32592326555799,32909.0,46.3,414.1385342067752 -LPGIG00157OB,AERO 14 OLED,Intel i5-12500H,RTX 4050,16.0,1TB,1349.1,55.81959682620089,21521.0,41.9,413.7543312297153 -LPLEN03438,Legion Pro 5,AMD Ryzen 7 7745HX,GeForce RTX 4070,16.0,512GB,1699.0,70.02013814159106,32909.0,51.7,412.125592357805 -LPACE00969,Nitro 5,Intel i5-11400H,GeForce GTX 1650,8.0,512GB,699.0,28.635780688200462,15822.0,20.8,409.66782100429845 -LPASU00688,TUF Gaming F15,Intel Core i9-13900H,GeForce RTX 4050,16.0,512GB,1399.0,57.29086864934558,29687.0,41.9,409.5129996379241 -LPGIG00153,G5 MF,Intel i5-12450H,GeForce RTX 4050,8.0,512GB,1349.0,55.08720398257081,17456.0,41.9,408.35584864767094 -LPASU00809OB,ROG Strix G16,Intel i9-13980HX,GeForce RTX 4060,16.0,1TB,1619.1,66.04379437162433,47994.0,46.3,407.90435656614375 -LPACE00940,Nitro,Intel i7-12700H,GeForce RTX 3060,16.0,512GB,1399.0,56.82693944173668,26424.0,42.0,406.19685090590906 -LPASU00785OB,FX706HF-DB51-CA,Intel i5-11400H,GeForce RTX 2050,8.0,512GB,719.1,29.1316484567955,15822.0,21.2,405.1126193407801 -LPLEN03001OB,82RG006WCC (Open Box),AMD Ryzen 7 6800H,GeForce RTX 3060,16.0,1TB,1397.5899969482,56.32786731950905,23654.0,42.0,403.0357074857969 -LPACE00955,NH.QLZAA.005,Intel i5-12500H,GeForce RTX 4050,8.0,512GB,1399.99,55.81959682620089,21521.0,41.9,398.71425386039107 -LPGIG00141OB,AORUS 17,Intel i7-12700H,GeForce RTX 3080 Ti,32.0,1TB,1799.1,71.33107167314165,26424.0,53.7,396.48197250370544 -LPASU00716OB,FX507ZC4-DS71-CA,Intel i7-12700H,NVIDIA RTX 3050,16.0,512GB,989.1,38.851732830166426,26424.0,27.5,392.79883560981125 -LPLEN03435OB,Legion Pro 5,Intel i7-13700HX,GeForce RTX 4060,16.0,1TB,1619.1,63.54230796548413,34110.0,46.3,392.4544992000749 -LPMSI00565OB,Bravo 15,AMD Ryzen 7 7735HS,GeForce RTX 4050,16.0,1TB,1439.1,56.313804346515106,24264.0,41.9,391.31265614978184 -LPGIG00152,AORUS 15,Intel Core i7-13700H,GeForce RTX 4060,16.0,1TB,1599.0,62.421647820987424,27890.0,46.3,390.37928593488067 -LPLEN03433,Legion Pro 5,AMD Ryzen 7 7745HX,GeForce RTX 4070,16.0,1TB,1799.0,70.02013814159106,32909.0,51.7,389.21699911946115 -LPLEN03049OB,Legion 5,AMD Ryzen 7 6800H,GeForce RTX 3070 Ti,16.0,512GB,1780.0900054932,68.97249541868261,23654.0,52.2,387.46633712812053 -LPASU00808,TUF Gaming F15,Intel i7-11800H,GeForce RTX 3050 Ti,16.0,1TB,999.0,38.6977548529504,20753.0,28.2,387.36491344294694 -LPMSI00580OB,Pulse 17,Intel i9-13900H,GeForce RTX 4070,16.0,1TB,1799.1,69.43962897992412,29687.0,51.7,385.9687009055868 -LPMSI00553OB,Vector GP68HX,Intel i9-12900HX,GeForce RTX 4080,32.0,1TB,2249.1,86.74916016005689,34937.0,64.9,385.70610537573646 -LPGIG00148OB,AORUS Gaming Notebook,Intel i7-13700H,GeForce RTX 4070,16.0,1TB,1799.1,69.11586269702049,27890.0,51.7,384.16909953321385 -LPMSI00541,Thin GF63,Intel i7-12650H,GeForce RTX 3050,16.0,512GB,999.0,38.28545713335725,23281.0,27.5,383.2378091427152 -LPGIG00159,AORUS Gaming Notebook,Intel i5-12500H,GeForce RTX 4060,16.0,512GB,1599.0,61.27414228074636,21521.0,46.3,383.2028910615782 -LPMSI00593,Katana 17,Intel i7-13620H,GeForce RTX 4070,16.0,1TB,1799.0,68.86344390884688,26489.0,51.7,382.78734802027174 -LPGIG00146OB,17H,Intel i7-13700H,RTX 4080,16.0,1TB,2249.1,85.47949906065685,27890.0,64.9,380.0609090776615 -LPMSI00538OB,Katana 17 B12VGK-217CA,Intel i7-12650H,GeForce RTX 4070,16.0,1TB,1799.1,68.28545713335727,23281.0,51.7,379.553427454601 -LPMSI00567,Thin GF63,Intel Core i5-12450H,GeForce RTX 4060,16.0,512GB,1599.0,60.54174943711628,17456.0,46.3,378.6225730901581 -LPHEW01653OB,15-ef1013dx,AMD Ryzen 7 4700U,AMD Radeon ,8.0,512GB,445.43999923706,16.80273704213442,13446.0,11.6,377.216618869293 -LPLEN03269OB,IdeaPad 3,AMD Ryzen 7 5825U,Integrated Radeon ,8.0,256GB,522.39,19.68922236799649,18458.0,13.2,376.90657110581157 -LPASU00760OB,Vivobook 16X,Intel i9-13900H,Geforce RTX 4050,16.0,512GB,1529.1,57.29086864934558,29687.0,41.9,374.6705163125079 -LPASU00720OB,G17,AMD Ryzen 9 7945HX,NVIDIA RTX 4060,16.0,1TB,1799.1,67.39669421487604,55503.0,46.3,374.61338566436575 -LPMSI00540,Thin GF63,Intel i7-12650H,GeForce RTX 4050,16.0,512GB,1499.0,56.13669680277873,23281.0,41.9,374.4943082240075 -LPLEN03565,Legion Pro 5 16ARX8,Ryzen 7 7745HX,GeForce RTX 4060,16.0,1TB,1699.0,63.32592326555799,32909.0,46.3,372.7246807860976 -LPGIG00161,,Intel i5-12500H,GeForce RTX 4050,16.0,512GB,1499.0,55.81959682620089,21521.0,41.9,372.37889810674375 -LPGIG00157,AERO 14,Intel i5-12500H,RTX 4050,16.0,1TB,1499.0,55.81959682620089,21521.0,41.9,372.37889810674375 -LPGIG00158,AORUS Gaming Notebook,Intel i5-12500H,GeForce RTX 4050,8.0,512GB,1499.0,55.81959682620089,21521.0,41.9,372.37889810674375 -LPASU00809,G614JV-DB91-CA,Intel i9-13980HX,GeForce RTX 4060,16.0,1TB,1799.0,66.04379437162433,47994.0,46.3,367.1139209095294 -LPGIG00149OB,ASF-B3US754SH,Intel i9-13900HX,GeForce RTX 4070,16.0,1TB,1979.89,72.19443502644413,44977.0,51.7,364.63861642032697 -LPASU00785,TUF Gaming Notebook,Intel i5-11400H,GeForce RTX 2050,8.0,512GB,799.0,29.1316484567955,15822.0,21.2,364.60135740670216 -LPGIG00151,BSF-73US754SH,Intel i7-13700H,GeForce RTX 4070,16.0,1TB,1899.0,69.11586269702049,27890.0,51.7,363.9592559084807 -LPLEN03097OB,IdeaPad 3,AMD Ryzen 5 5625U,AMD Radeon ,12.0,512GB,474.89,17.09677520223388,15078.0,11.6,360.0154815269616 -LPLEN03269,IdeaPad 3,AMD Ryzen 7 5825U,Integrated Radeon ,8.0,256GB,549.88,19.68922236799649,18458.0,13.2,358.0639842874171 -LPGIG00141,YE5-74US544SH,Intel i7-12700H,GeForce RTX 3080 Ti,32.0,1TB,1999.0,71.33107167314165,26424.0,53.7,356.83377525333486 -LPLEN03053OB,IdeaPad 5,AMD Ryzen 7 5825U,Integrated Radeon,8.0,512GB,552.78999023437,19.68922236799649,18458.0,13.2,356.17906828683203 -LPLEN03436OB,Legion Pro 5,Intel i7-13700HX,GeForce RTX 4070,16.0,1TB,1979.1,70.23652284151719,34110.0,51.7,354.89122753533013 -LPASU00716,TUF F15,Intel i7-12700H,RTX 3050,16.0,512GB,1099.0,38.851732830166426,26424.0,27.5,353.5189520488301 -LPLEN03435,Legion Pro 5,Intel i7-13700HX,GeForce RTX 4060,16.0,1TB,1799.0,63.54230796548413,34110.0,46.3,353.2090492800674 -LPMSI00565,Bravo 15,AMD Ryzen 7 7735HS,GeForce RTX 4050,16.0,1TB,1599.0,56.313804346515106,24264.0,41.9,352.18139053480365 -LPACE00960,PH16-71-72YG,Intel i7-13700HX,GeForce RTX 4070,16.0,1TB,1999.0,70.23652284151719,34110.0,51.7,351.358293354263 -LPHEW01773OB,15-eg1010ca, Intel Core i5-1155G7,Intel Iris Xe ,8.0,512GB,427.39,14.992287662806703,10278.0,10.6,350.78704842899236 -LPGIG00156OB,AERO 16 OLED,Intel i7-13700H,GeForce RTX 4070,16.0,1TB,1979.1,69.11586269702049,27890.0,51.7,349.22875396402657 -LPMSI00580,Pulse 17,Intel i9-13900H,GeForce RTX 4070,16.0,1TB,1999.0,69.43962897992412,29687.0,51.7,347.37183081502815 -LPMSI00553,Vector GP68HX,Intel i9-12900HX,GeForce RTX 4080,32.0,1TB,2499.0,86.74916016005689,34937.0,64.9,347.1354948381628 -LPLEN03430OB,IdeaPad Slim 3,AMD Ryzen 7 7730U,,8.0,512GB,569.89,19.75516474948938,18824.0,13.2,346.6487348346064 -LPGIG00148,,Intel i7-13700H,GeForce RTX 4070,16.0,1TB,1999.0,69.11586269702049,27890.0,51.7,345.75218957989244 -LPMSI00537,Pulse 17,Intel i7-13700H,GeForce RTX 4070,16.0,1TB,1999.0,69.11586269702049,27890.0,51.7,345.75218957989244 -LPASU00719,G713PU-DS91-CA,AMD Ryzen 9 7945HX,RTX 4050,16.0,1TB,1799.0,61.942148760330575,55503.0,41.9,344.314334409842 -LPASU00583OB,TUF Gaming Notebook,Ryzen 5 4600H,GeForce GTX 1650,8.0,512GB,827.89000091553,28.402099625915543,14525.0,20.8,343.0661029183444 -LPACE00966,Nitro 17,AMD Ryzen 7 7735HS,GeForce RTX 4070,32.0,1TB,1999.0,68.46256467709364,24264.0,51.7,342.4840654181773 -LPGIG00146,,Intel i7-13700H,RTX 4080,16.0,1TB,2499.0,85.47949906065685,27890.0,64.9,342.0548181698953 -LPMSI00538,Katana 17 B12VGK-217CA,Intel i7-12650H,GeForce RTX 4070,16.0,1TB,1999.0,68.28545713335727,23281.0,51.7,341.5980847091409 -LPLEN03053,IdeaPad 5,AMD Ryzen 7 5825U,Integrated Radeon,8.0,512GB,581.88000488281,19.68922236799649,18458.0,13.2,338.3725545262872 -LPMSI00536OB,Katana GF66,Intel i7-12650H,GeForce RTX 3050 Ti,16.0,512GB,1159.0899978638,39.153225728398574,23281.0,28.2,337.79280125406893 -LPASU00760,Vivobook 16X,Intel i9-13900H,GeForce RTX 4050,16.0,512GB,1699.0,57.29086864934558,29687.0,41.9,337.2034646812571 -LPASU00720,G713PV-DS91-CA,AMD Ryzen 9 7945HX,NVIDIA RTX 4060,16.0,1TB,1999.0,67.39669421487604,55503.0,46.3,337.1520470979292 -LPLEN03503OB,Legion Slim 7i,Intel i9-13900H,GeForce RTX 4070,32.0,1TB,2069.1,69.43962897992412,29687.0,51.7,335.6030592041183 -LPCNO00053OB,15Z-EF2000,AMD Ryzen 5 5500U,AMD Radeon Vega 7,8.0,256GB,501.49000038147,16.748325568880727,13144.0,11.6,333.9712767181943 -LPGIG00154OB,AERO 14,Intel Core i7-13700H,GeForce RTX 4050,16.0,1TB,1709.1,56.96710236644196,27890.0,41.9,333.31637918461155 -LPASU00609OB,TUF Gaming Notebook,Intel Core i5-10300H,GeForce GTX 1650,8.0,1TB,824.29000152588,27.311888285987973,8474.0,20.8,331.3383425181637 -LPHEW01733,16-c0010ca,AMD Ryzen 7 5800H,NVIDIA GeForce RTX 3050 Ti,16.0,1TB,1172.88,38.765679109296904,21130.0,28.2,330.51701034459535 -LPACE00963,AN515-58-7578,Intel i7-12650H,GeForce RTX 4050,16.0,1TB,1699.99,56.13669680277873,23281.0,41.9,330.2178060034396 -LPASU00573OB,Vivobook 15,AMD Ryzen 5 5500U,AMD Radeon ,8.0,512GB,508.14,16.748325568880727,13144.0,11.6,329.60061339159927 -LPMSI00481OB,Raider GE76,Intel i9-12900HK,RTX3080TI,32.0,1TB,2173.39,71.63033477603699,28085.0,53.7,329.5788366378652 -LPLEN03430,IdeaPad Slim 3,AMD Ryzen 7 7730U,,8.0,512GB,599.88,19.75516474948938,18824.0,13.2,329.3186095467324 -LPGIG00134,A7 K1,AMD Ryzen 7 5800H,GeForce RTX 3060,16.0,512GB,1699.0,55.873117125825836,21130.0,42.0,328.8588412349961 -LPGIG00149,,Intel i9-13900HX,GeForce RTX 4070,16.0,1TB,2199.88,72.19443502644413,44977.0,51.7,328.1744232705608 -LPCNO00033OB,F415EA-UB51,Intel Core i5-1135G7,Intel Iris Xe ,8.0,256GB,455.89,14.922561702047824,9891.0,10.6,327.3281208635378 -LPMSI00445OB,Modern 15,Intel Core i5-1155G7,Intel Iris Xe,8.0,256GB,459.69000305176,14.992287662806703,10278.0,10.6,326.1390842367004 -LPCNO00060OB,ZenBook,AMD Ryzen 7 5700U,GeForce MX450,8.0,256GB,569.89,18.476256886121707,15854.0,12.6,324.20742399623975 -LPMSI00543,Katana GF76,Intel i7-11800H,GeForce RTX 3050 Ti,16.0,512GB,1199.0,38.6977548529504,20753.0,28.2,322.75024898207175 -LPACE00946OB,,Intel i5-1135G7,Intel Iris,8.0,512GB,462.53999389648,14.922561702047824,9891.0,10.6,322.6220845540031 -LPASU00610OB,TUF517ZC-DS51-CA,Intel i5-12450H,GeForce RTX 3050,16.0,512GB,1159.0899978638,37.23596431314933,17456.0,27.5,321.2517093735182 -LPLEN03437OB,Legion Pro 5,Intel i9-13900HX,GeForce RTX 4070,16.0,512GB,2249.1,72.19443502644413,44977.0,51.7,320.99255269416267 -LPLEN03436,Legion Pro 5,Intel i7-13700HX,GeForce RTX 4070,16.0,1TB,2199.0,70.23652284151719,34110.0,51.7,319.4021047817971 -LPASU00770OB,GA402XZ-CS94,AMD Ryzen 9 7940HS,GeForce RTX 4080,16.0,1TB,2699.1,85.96667993376282,30594.0,64.9,318.50127795844105 -LPCNO00053,15Z-EF2000,AMD Ryzen 5 5500U,AMD Radeon Vega 7,8.0,256GB,527.88,16.748325568880727,13144.0,11.6,317.27524378420713 -LPMSI00524,GP66 Leopard,Intel Core i7-11800H,NVIDIA RTX3070,16.0,512GB,1999.0,63.24320939840494,20753.0,48.0,316.3742341090792 -LPMSI00497,Pulse GL66,Intel i7-11800H,RTX3070,16.0,512GB,1999.88,63.24320939840494,20753.0,48.0,316.2350210932903 -LPACE00888OB,TravelMate P2,Intel Core i5-1135G7,Intel Iris Xe ,8.0,256GB,474.05,14.922561702047824,9891.0,10.6,314.7887712698623 -LPGIG00156,AERO 16 OLED,Intel i7-13700H,GeForce RTX 4070,16.0,1TB,2199.0,69.11586269702049,27890.0,51.7,314.3058785676239 -LPHUA00040OB,MateBook D15,Intel i5-1135G7,Intel Iris Xe ,8.0,512GB,474.89,14.922561702047824,9891.0,10.6,314.23196323459797 -LPCNO00048OB,VivoBook R,Intel Core i5-1135G7,Intel Iris Xe ,8.0,256GB,474.89,14.922561702047824,9891.0,10.6,314.23196323459797 -LPASU00573,Vivobook 15,AMD Ryzen 5 5500U,AMD Radeon ,8.0,512GB,534.88,16.748325568880727,13144.0,11.6,313.1230475785358 -LPASU00621OB,GA503RS-XS92-CA,AMD Ryzen 9 6900HS,GeForce RTX 3080,32.0,1TB,2015.89,63.06658429452775,23901.0,47.4,312.8473492825886 -LPACE00952,Nitro 5,Intel i5-12450H,GeForce RTX 3050,8.0,512GB,1199.99,37.23596431314933,17456.0,27.5,310.3022884619816 -LPLEN03442OB,IdeaPad Flex 5,AMD Ryzen 3 5300U,,4.0,128GB,360.05,11.172023610368468,9716.0,7.6,310.2908932195102 -LPMSI00445,Modern 15 A11MU-863CA,Intel Core i5-1155G7,Intel Iris Xe,8.0,256GB,483.88,14.992287662806703,10278.0,10.6,309.834828114547 -LPASU00685OB,VivoBook,Intel Core i3-1115G4,Intel UHD ,4.0,128GB,284.05,8.790755558890943,6132.0,6.2,309.479160672098 -LPHEW01811OB,Pavilion 15-eh2010ca,AMD Ryzen 5 5625U,AMD Radeon ,8.0,512GB,553.74000610352,17.09677520223388,15078.0,11.6,308.75094834736734 -LPASU00724OB,GU604VI-DS92-CA,Intel i9-13900H,GeForce RTX 4070,32.0,1TB,2249.1,69.43962897992412,29687.0,51.7,308.7440708724562 -LPCNO00060,ZenBook,AMD Ryzen 7 5700U,GeForce MX450,8.0,256GB,599.88,18.476256886121707,15854.0,12.6,307.9992146116175 -LPASU00666OB,Vivobook 16,AMD Ryzen 5 5600H,AMD Radeon ,8.0,512GB,569.05,17.45981864132726,17093.0,11.6,306.82398104432406 -LPACE00946,,Intel i5-1135G7,Intel Iris,8.0,512GB,486.88,14.922561702047824,9891.0,10.6,306.49362680840915 -LPACE00958,PHN16-71-788N,Intel i7-13700HX,GeForce RTX 4060,16.0,1024GB,2099.99,63.54230796548413,34110.0,46.3,302.5838597587804 -LPLEN03503,82Y3007HCC,Intel i9-13900H,NVIDIA GeForce RTX 4070,32.0,1TB,2299.0,69.43962897992412,29687.0,51.7,302.0427532837065 -LPLEN03000OB,IdeaPad Flex 5,AMD Ryzen 5 5500U,AMD Radeon ,8.0,512GB,554.69000305176,16.748325568880727,13144.0,11.6,301.94028153988353 -LPHEW02072OB,ProBook 445 G9,AMD Ryzen 5 5625U,,8.0,256GB,569.05,17.09677520223388,15078.0,11.6,300.44416487538666 -LPGIG00154,AERO 14,Intel Core i7-13700H,GeForce RTX 4050,16.0,1TB,1899.0,56.96710236644196,27890.0,41.9,299.9847412661504 -LPACE00957,AN16-51-74BV,Intel i7-13700H,GeForce RTX 4050,16.0,1024GB,1899.99,56.96710236644196,27890.0,41.9,299.82843260460294 -LPHEW01913OB,15-DY2067MS,Intel Core i5-1135G7,Intel Iris X ,12.0,256GB,498.64,14.922561702047824,9891.0,10.6,299.2652354814661 -LPACE00888,TravelMate P2,Intel Core i5-1135G7,,8.0,256 GB,499.0,14.922561702047824,9891.0,10.6,299.04933270636917 -LPHUA00040,MateBook D15,Intel i5-1135G7,Intel Iris Xe ,8.0,512GB,499.88,14.922561702047824,9891.0,10.6,298.52287953204416 -LPMSI00562OB,Modern 15,AMD Ryzen 7 7730U,AMD Radeon ,16.0,512GB,664.05,19.75516474948938,18824.0,13.2,297.495139665528 -LPACE00965,Nitro,AMD Ryzen 7 7735HS,GeForce RTX 4050,16.0,1TB,1899.0,56.313804346515106,24264.0,41.9,296.54451999218065 -LPMSI00579,Stealth 14Studio,Intel i7-13620H,GeForce RTX 4060,16.0,1TB,2099.0,62.16922903281381,26489.0,46.3,296.1849882458971 -LPMSI00561,Bravo 15,AMD Ryzen 7 7735HS,GeForce RTX 3050,16.0,512GB,1299.0,38.462564677093624,24264.0,27.5,296.0936464749317 -LPACE00961,Predator Helios,Intel i9-13900HX,GeForce RTX 4080,32.0,1 TB,2999.0,88.55807139008049,44977.0,64.9,295.2920019675908 -LPGIG00145,,Intel Core i9-13900HX,GeForce RTX 4080,16.0,1TB,2999.0,88.55807139008049,44977.0,64.9,295.2920019675908 -LPLEN03442,IdeaPad Flex 5,AMD Ryzen 3 5300U,,4.0,128GB,379.0,11.172023610368468,9716.0,7.6,294.7763485585347 -LPLEN03352OB,ThinkBook 15 G3,AMD Ryzen 5 5500U,AMD Radeon ,8.0,256GB,569.05,16.748325568880727,13144.0,11.6,294.320807817955 -LPASU00685,VivoBook F415EA-AS31,Intel Core i3-1115G4,Intel UHD ,4.0,128GB,299.0,8.790755558890943,6132.0,6.2,294.0052026384931 -LPGIG00150,AORUS 15X,Intel i7-13700HX,GeForce RTX 4070,16.0,1TB,2399.0,70.23652284151719,34110.0,51.7,292.7741677428811 -LPASU00666,Vivobook 16,AMD Ryzen 5 5600H,AMD Radeon ,8.0,512GB,599.0,17.45981864132726,17093.0,11.6,291.48278199210785 -LPASU00726OB,GV302XU-DS91T-CA,AMD Ryzen 9 7940HS,RTX 4050,16.0,1TB,1979.1,57.45428323954791,30594.0,41.9,290.30510454018446 -LPASU00610,TUF517ZC-DS51-CA,Intel i5-12450H,GeForce RTX 3050,16.0,512GB,1287.8799972534,37.23596431314933,17456.0,27.5,289.12603963537515 -LPLEN03437,,Intel i9-13900HX,GeForce RTX 4070,16.0,512GB,2499.0,72.19443502644413,44977.0,51.7,288.89329742474644 -LPASU00721OB,G733PZ-XS96,AMD Ryzen 9 7945HX,RTX 4080,32.0,1TB,3149.1,90.45454545454547,55503.0,64.9,287.23935554458564 -LPLEN03000,IdeaPad Flex 5,AMD Ryzen 5 5500U,AMD Radeon ,8.0,512GB,583.88,16.748325568880727,13144.0,11.6,286.845337550194 -LPASU00770,GA402XZ-CS94,AMD Ryzen 9 7940HS,GeForce RTX 4080,16.0,1TB,2999.0,85.96667993376282,30594.0,64.9,286.6511501625969 -LPLEN03456OB,IdeaPad,Intel i5-1135G7,,8.0,512GB,521.55,14.922561702047824,9891.0,10.6,286.1194842689642 -LPASU00500OB,ExpertBook B1,Intel i5 1135G7,,8.0,256GB,521.55,14.922561702047824,9891.0,10.6,286.1194842689642 -LPHEW02072,ProBook 445 G9,AMD Ryzen 5 5625U,,8.0,256GB,599.0,17.09677520223388,15078.0,11.6,285.4219566316173 -LPMSI00555,Stealth 15,Intel i9-13900H,GeForce RTX 4060,32.0,1TB,2199.0,62.74541410389105,29687.0,46.3,285.336125984043 -LPHEW01738OB,Probook 640,Intel Core i5-6300U,Intel HD 520,16.0,512GB,242.89,6.906066279195988,3240.0,5.1,284.3289669890069 -LPGIG00136,AORUS 5 KE4,Intel Core i7-12700H,GeForce RTX 3060,16.0,1TB,1999.0,56.82693944173668,26424.0,42.0,284.2768356264966 -LPMSI00513,Katana GF76,Intel Core i7-12700H,GeForce RTX3070TI,16.0,1TB,2449.0,69.47156754091024,26424.0,52.2,283.67320351535415 -LPMSI00562,Modern 15 Notebook,AMD Ryzen 7 7730U,AMD Radeon ,16.0,512GB,699.0,19.75516474948938,18824.0,13.2,282.62038268225155 -LPASU00621,GA503RS-XS92-CA,AMD Ryzen 9 6900HS,GeForce RTX 3080,32.0,1TB,2239.88,63.06658429452775,23901.0,47.4,281.5623350113745 -LPCNO00052OB,VivoBook F515,Intel Core i7-1165G7,Intel Iris Xe ,8.0,512GB,603.14,16.86422355548349,10347.0,12.1,279.6071153543703 -LPLEN03352,ThinkBook 15 G3,AMD Ryzen 5 5500U,AMD Radeon ,8.0,256GB,599.0,16.748325568880727,13144.0,11.6,279.6047674270572 -LPHEW02077,OMEN,AMD Ryzen 9 7940HS,GeForce RTX 4070,32.0,2TB,2499.0,69.60304357012646,30594.0,51.7,278.5235837139914 -LPASU00766,Zenbook Pro 14,Intel i9-13900H,GeForce RTX 4070,32.0,1TB,2499.0,69.43962897992412,29687.0,51.7,277.86966378521055 -LPGIG00155,AERO 16 OLED,Intel i9-13900H,GeForce RTX 4070,32.0,1TB,2499.0,69.43962897992412,29687.0,51.7,277.86966378521055 -LPASU00724,ROG Zephyrus,Intel i9-13900H,GeForce RTX 4070,32.0,1TB,2499.0,69.43962897992412,29687.0,51.7,277.86966378521055 -LPASU00717OB,G614JJ-DS71-CA,Intel i7-13650HX,RTX 3050,16.0,1TB,1439.1,39.88374911757432,32152.0,27.5,277.14369479240025 -LPACE00959,PH16-71-71AV,Intel i7-13700HX,GeForce RTX 4060,16.0,1024GB,2299.99,63.54230796548413,34110.0,46.3,276.272105380824 -LPMSI00415,Stealth 15M,Intel Core i7-1260P,RTX3060,16.0,1TB,1999.0,55.17063257544117,17231.0,42.0,275.99115845643405 -LPGIG00138,AERO 16,Intel Core i9-12900H,GeForce RTX 3080 Ti,32.0,2TB,2599.0,71.7094295997402,28524.0,53.7,275.9116183137368 -LPHEW01929OB,ProBook 440 G9,Intel Core i5-1235U,,8.0,256GB,569.05,15.58108466477056,13546.0,10.6,273.8087103904852 -LPLEN03456,IdeaPad,Intel i5-1135G7,,8.0,512GB,549.0,14.922561702047824,9891.0,10.6,271.8135100555159 -LPASU00500,ExpertBook B1,Intel i5 1135G7,,8.0,256GB,549.0,14.922561702047824,9891.0,10.6,271.8135100555159 -LPHEW02017OB,Pavilion,Intel i5-1240P,Intel Iris Xe,8.0,512GB,599.34000854492,16.26104791000055,17320.0,10.6,271.3159088024039 -LPGIG00144OB,AZF-B5US665SP,Intel Core i9-13900HX,RTX 4090,32.0,2TB,3644.8900085449,98.10352593553502,44977.0,72.6,269.153597791829 -LPGIG00137OB,AERO 16,Intel Core i9-12900H,NVIDIA RTX 3080 Ti,64.0,2TB,2699.1,71.7094295997402,28524.0,53.7,265.6790396789308 -LPMSI00563OB,Modern 15,Intel i5-1155G7,Intel Iris Xe,16.0,512GB,569.05,14.992287662806703,10278.0,10.6,263.46169339788605 -LPMSI00575OB,Modern 15,Intel i7-1255U,Intel Iris Xe,16.0,512GB,664.05,17.481307316721622,13772.0,12.1,263.2528772942041 -LPASU00658OB,ZenBook 14,AMD Ryzen 5 5600H,AMD Radeon Vega 7,8.0,512GB,664.05,17.45981864132726,17093.0,11.6,262.92927703226053 -LPCNO00061OB,F1500EA-WB51,Intel i5-1135G7,,8.0,256GB,568.05999832153,14.922561702047824,9891.0,10.6,262.693408198784 -LPASU00581OB,ExpertBook B1,Intel i5-1135G7,,8.0,256GB,569.05,14.922561702047824,9891.0,10.6,262.23638875402554 -LPHUA00036OB,MateBook D15,Intel i5-1135G7,Intel Iris Xe ,8.0,512GB,569.05,14.922561702047824,9891.0,10.6,262.23638875402554 -LPACE00981OB,Aspire 5,AMD Ryzen 3 5300U,,8.0,256GB,426.55,11.172023610368468,9716.0,7.6,261.91592100266007 -LPLEN03390OB,ThinkPad T14 G3,Ryzen 5 Pro 6650U,AMD Radeon 660M,16.0,256GB,759.05,19.87771936384051,16752.0,13.6,261.8762843533431 -LPASU00561OB,ExpertBook B1,Intel Core i5-1135G7,Intel Iris Xe G7,8.0,256GB,569.89,14.922561702047824,9891.0,10.6,261.84986053532833 -LPASU00726,GV302XU-DS91T-CA,AMD Ryzen 9 7940HS,RTX 4050,16.0,1TB,2199.0,57.45428323954791,30594.0,41.9,261.274594086166 -LPASU00727,GV601VU-DS91T-CA,Intel Core i9-13900H,RTX 4050,16.0,1TB,2199.0,57.29086864934558,29687.0,41.9,260.53146270734686 -LPHEW01929,ProBook 440 G9,Intel Core i5-1235U,,8.0,256GB,599.0,15.58108466477056,13546.0,10.6,260.1182748709609 -LPASU00761,Vivobook Pro 16X OLED,Intel i9-13980HX,Geforce RTX 4070,32.0,1TB,2799.0,72.7380092476574,47994.0,51.7,259.8714156758035 -LPASU00721,ROG Strix,AMD Ryzen 9 7945HX,RTX 4080,32.0,1TB,3499.0,90.45454545454547,55503.0,64.9,258.51541999012704 -LPHEW02017,15-EG2002CA,Intel i5-1240P,Intel Iris Xe,8.0,512GB,630.88000488281,16.26104791000055,17320.0,10.6,257.75183528000923 -LPLEN03130OB,,AMD Ryzen 5 5625U,AMD Radeon ,12.0,512GB,664.89,17.09677520223388,15078.0,11.6,257.13689786632193 -LPMSI00549,Vector GP78HX,Intel i7-13700HX,GeForce RTX 4080,32.0,1TB,3399.0,86.60015920515353,34110.0,64.9,254.7812862758268 -LPASU00718,G634JZ-XS96,Intel i9-13980HX,RTX 4080,32.0,1TB,3499.0,89.10164561129376,47994.0,64.9,254.6488871428801 -LPASU00752OB,Vivobook 17,Intel i7-1165G7,Intel Iris Xe ,8.0,512GB,664.05,16.86422355548349,10347.0,12.1,253.9601469088697 -LPMSI00548,Vector GP78 HX,Intel i9-13950HX,GeForce RTX 4080,32.0,1TB,3499.0,88.54978354978357,44931.0,64.9,253.07168776731515 -LPASU00786OB,Vivobook 16X,Intel i5-1235U,,8.0,512GB,616.55,15.58108466477056,13546.0,10.6,252.7140485730364 -LPHEW02100OB,15-fd0030ca,Intel i5-1340P,,16.0,512GB,664.05,16.78065946252924,20204.0,10.6,252.70174629213528 -LPLEN03493OB,Thinkbook T490,Intel i5-8365U,,16.0,256GB,359.1,9.059048703048292,6245.0,6.4,252.27091904896386 -LPLEN00715OB,,Intel Core i5-8365U,,16.0,256 GB,359.1,9.059048703048292,6245.0,6.4,252.27091904896386 -LPLEN03569OB,V14,Ryzen 5 5500U,,16.0,512GB,664.05,16.748325568880727,13144.0,11.6,252.21482672811877 -LPLEN02718OB,,Intel Core i5-8350U,Intel UHD 620,16.0,256 GB,359.1,9.055625464664782,6226.0,6.4,252.1755907731769 -LPLEN03518OB,Thinkbook T480s,Intel i5-8350U,,16.0,256GB,359.1,9.055625464664782,6226.0,6.4,252.1755907731769 -LPLEN03312OB,T490,Intel i5-8265U,Intel UHD ,16.0,256GB,359.1,9.019050865093586,6023.0,6.4,251.15708340555796 -LPLEN03567OB,ThinkPad X1 Gen 3,Intel i7-8550U,N/A,16.0,256GB,359.1,9.00211484361727,5929.0,6.4,250.685459304296 -LPMSI00563,Modern 15 Notebook,Intel i5-1155G7,Intel Iris Xe,16.0,512GB,599.0,14.992287662806703,10278.0,10.6,250.28860872799171 -LPMSI00575,Modern 15,Intel i7-1255U,Intel Iris Xe,16.0,512GB,699.0,17.481307316721622,13772.0,12.1,250.0902334294939 -LPASU00658,ZenBook 14,AMD Ryzen 5 5600H,AMD Radeon Vega 7,8.0,512GB,699.0,17.45981864132726,17093.0,11.6,249.78281318064748 -LPCNO00061,Vivobook F Series,Intel i5-1135G7,,8.0,256GB,597.95999908447,14.922561702047824,9891.0,10.6,249.55785880151836 -LPASU00717,G614JJ-DS71-CA,Intel i7-13650HX,RTX 3050,16.0,1TB,1599.0,39.88374911757432,32152.0,27.5,249.4293253131602 -LPHUA00036,MateBook D15,Intel i5-1135G7,Intel Iris Xe ,8.0,512GB,599.0,14.922561702047824,9891.0,10.6,249.12456931632425 -LPASU00581,ExpertBook B1,Intel i5-1135G7,,8.0,256GB,599.0,14.922561702047824,9891.0,10.6,249.12456931632425 -LPACE00981,Aspire 5,AMD Ryzen 3 5300U,,8.0,256GB,449.0,11.172023610368468,9716.0,7.6,248.82012495252712 -LPLEN03390,21CF000CUS,Ryzen 5 Pro 6650U,AMD Radeon 660M,16.0,256GB,799.0,19.87771936384051,16752.0,13.6,248.78247013567596 -LPASU00561,ExpertBook B1,Intel Core i5-1135G7,Intel Iris Xe G7,8.0,256GB,599.88,14.922561702047824,9891.0,10.6,248.75911352350178 -LPGIG00164,AORUS 17X,Intel i9-13980HX,GeForce RTX 4080,16.0,1TB,3599.0,89.10164561129376,47994.0,64.9,247.57334151512575 -LPASU00722,G834JY-XS97,Intel i9-13980HX,RTX 4090,32.0,2TB,3999.0,98.6471001567483,47994.0,72.6,246.67942024693244 -LPLEN02908,14 G4 ABA,AMD Ryzen 7 5825U,,16.0,512 GB,799.0,19.68922236799649,18458.0,13.2,246.42330873587596 -LPHEW02036,,Intel i9-13900HX,GeForce RTX 4090,32.0,2TB,3999.0,98.10352593553502,44977.0,72.6,245.32014487505634 -LPHEW02028OB,15-fc0040ca,AMD Ryzen 7 7730U,AMD Radeon ,16.0,1TB,806.55,19.75516474948938,18824.0,13.2,244.9341609260354 -LPASU00784OB,Vivobook 15,AMD Ryzen 7 7730U,,16.0,512GB,806.55,19.75516474948938,18824.0,13.2,244.9341609260354 -LPACE00985OB,Swift 3 EVO,Intel i5-1240P,,16.0,512GB,664.05,16.26104791000055,17320.0,10.6,244.87686032679088 -LPLEN02956,ThinkBook 14 G4 ABA,AMD Ryzen 5 5625U,,16.0,256GB,699.0,17.09677520223388,15078.0,11.6,244.58905868717991 -LPLEN03130,Consumer Laptop,AMD Ryzen 5 5625U,AMD Radeon ,12.0,512GB,699.88,17.09677520223388,15078.0,11.6,244.2815225786403 -LPASU00752,Vivobook 17,Intel i7-1165G7,Intel Iris Xe ,8.0,512GB,699.0,16.86422355548349,10347.0,12.1,241.26213956342616 -LPASU00786,Vivobook 16X,Intel i5-1235U,,8.0,512GB,649.0,15.58108466477056,13546.0,10.6,240.07834614438457 -LPHEW02100,15-fd0030ca,Intel i5-1340P,,16.0,512GB,699.0,16.78065946252924,20204.0,10.6,240.06665897752848 -LPLEN03569,V14,Ryzen 5 5500U,,16.0,512GB,699.0,16.748325568880727,13144.0,11.6,239.6040853917128 -LPGIG00137,AERO 16,Intel Core i9-12900H,RTX 3080 Ti,64.0,2TB,2999.0,71.7094295997402,28524.0,53.7,239.1111357110377 -LPMSI00554,Vector GP77,Intel i7-13700H,GeForce RTX 4070,16.0,1TB,2899.0,69.11586269702049,27890.0,51.7,238.4127723250103 -LPMSI00381OB,Prestige 14,Intel Core i7-1185G7,NVIDIA GeForce MX450,16.0,1TB,736.14,17.521173377122196,10553.0,12.6,238.01414645478027 -LPASU00540,VivoBook Pro 16X,AMD Ryzen 7 5800H,NVIDIA GeForce RTX 3050,16.0,512GB,1599.0,37.89791051425558,21130.0,27.5,237.01007200910306 -LPASU00783OB,Zenbook 14 OLED,AMD Ryzen 7 5825U,,16.0,512GB,834.93999938965,19.68922236799649,18458.0,13.2,235.81601531115433 -LPACE00984OB,Aspire 3,Intel i5-1235U,,16.0,512GB,664.05,15.58108466477056,13546.0,10.6,234.63722106423552 -LPLEN03212OB,IdeaPad 5,Intel Core i5-1235U,Intel Iris Xe,8.0,512GB,664.89,15.58108466477056,13546.0,10.6,234.34078817203687 -LPASU00784,Vivobook 15 OLED,AMD Ryzen 7 7730U,,16.0,512GB,849.0,19.75516474948938,18824.0,13.2,232.68745287973357 -LPHEW02028,15-fc0040ca,AMD Ryzen 7 7730U,AMD Radeon ,16.0,1TB,849.0,19.75516474948938,18824.0,13.2,232.68745287973357 -LPACE00985,Swift 3 EVO,Intel i5-1240P,,16.0,512GB,699.0,16.26104791000055,17320.0,10.6,232.63301731045132 -LPLEN03431,IdeaPad Slim 5,Intel i5-1335U,Intel Iris Xe,8.0,512GB,699.99,16.19060126747672,16929.0,10.6,231.2976080726399 -LPHEW01739,ProBook 820 G3,Intel Core i7 6500U,Intel HD 520,16.0,256GB,299.0,6.912372244639298,3275.0,5.1,231.18301821536113 -LPASU00759,H7604JI-XS91T-CA,Intel i9-13980HX,Geforce RTX 4070,32.0,1TB,3154.0,72.7380092476574,47994.0,51.7,230.6214624212346 -LPLEN03414OB,IdeaPad,Intel i3-1215U,Intel HD ,4.0,128GB,312.55,7.194251877979049,11032.0,4.2,230.17923141830263 -LPASU00731,ROG Flow,Intel i9-13900H,RTX 4050,16.0,1TB,2499.0,57.29086864934558,29687.0,41.9,229.25517666804956 -LPLEN03299OB,ThinkPad T14 Gen 2,Intel Core i5-1135G7,GeForce MX450 2GB,8.0,256GB,759.89,17.40190054502303,9891.0,12.6,229.0055211283611 -LPMSI00592,Stealth 14Studio,Intel i7-13620H,GeForce RTX 3050,16.0,512GB,1699.0,38.86344390884686,26489.0,27.5,228.74304831575552 -LPLEN00182OB,ThinkPad T480s,Intel Core i7-8550U,,16.0,256 GB,394.15999755859,9.00211484361727,5929.0,6.4,228.38732746539426 -LPLEN03403OB,T480s,Intel i7-8550U,Intel UHD 620,24.0,256GB,394.15999755859,9.00211484361727,5929.0,6.4,228.38732746539426 -LPASU00603OB,Vivobook 15,Intel Core i7-1165G7,Intel Iris Xe ,12.0,512GB,741.83999694824,16.86422355548349,10347.0,12.1,227.3296617176082 -LPASU00736,GU604VY-XS97,Intel i9-13900H,RTX 4090,32.0,2TB,4199.0,95.34871988901502,29687.0,72.6,227.0748270755299 -LPLEN00715,ThinkPad T490,Intel i5-8365U,,16.0,256GB,399.0,9.059048703048292,6245.0,6.4,227.04382714406748 -LPLEN03493,,Intel i5-8365U,,16.0,256GB,399.0,9.059048703048292,6245.0,6.4,227.04382714406748 -LPLEN02718,ThinkPad T480,Intel Core i5-8350U,Intel UHD 620,16.0,256 GB,399.0,9.055625464664782,6226.0,6.4,226.9580316958592 -LPLEN03518,Thinkbook T480s,Intel i5-8350U,,16.0,256GB,399.0,9.055625464664782,6226.0,6.4,226.9580316958592 -LPLEN03268,ThinkPad T580,Intel Core i5-8350U,,16.0,256GB,399.88,9.055625464664782,6226.0,6.4,226.4585741888762 -LPASU00729,Zephyrus Duo,AMD Ryzen 9 7945HX,RTX 4080,32.0,1TB,3999.0,90.45454545454547,55503.0,64.9,226.19291186432974 -LPLEN03312,T490,Intel i5-8265U,Intel UHD ,16.0,256GB,399.0,9.019050865093586,6023.0,6.4,226.04137506500214 -LPLEN03567,ThinkPad X1 Gen 3,Intel i7-8550U,,16.0,256GB,399.0,9.00211484361727,5929.0,6.4,225.61691337386642 -LPHEW01543OB,Notebook,AMD Ryzen 7 5700U,AMD Radeon ,16.0,1TB,854.89,19.22005853901427,15854.0,13.2,224.82493114920365 -LPLEN02154OB,20WM0085US,Intel i5-1135G7,,8.0,256GB,664.05,14.922561702047824,9891.0,10.6,224.72045330995897 -LPHUA00035OB,Matebook 14,Intel Core i5-1135G7,Intel Iris Xe ,16.0,512GB,664.89,14.922561702047824,9891.0,10.6,224.4365489336255 -LPLEN03578OB,Yoga L390,Intel i5-8365U,,16.0,256GB,404.1,9.059048703048292,6245.0,6.4,224.17838908805473 -LPLEN03202OB,ThinkPad X380 Yoga,Intel i5-8350U,Integrated,16.0,512GB,404.1,9.055625464664782,6226.0,6.4,224.09367643317947 -LPACE00984,Aspire 3,Intel i5-1235U,,16.0,512GB,699.0,15.58108466477056,13546.0,10.6,222.90536001102373 -LPHEW02101,14-ep0000ca,Intel i3-N305,,8.0,256GB,549.0,12.210963803162752,9978.0,8.4,222.42192719786433 -LPASU00764OB,Zenbook 15 OLED,AMD Ryzen 7 7735U,AMD Radeon ,16.0,1TB,1234.05,27.152424044385658,21350.0,18.8,220.02693605920066 -LPLEN03611,21KJ000EUS,AMD Ryzen 7 7730U Octa-core (8 Core),,16.0,512 GB,899.0,19.75516474948938,18824.0,13.2,219.7459927640643 -LPHEW01967OB,ProBook 440 G9,Intel i5-1235U,,16.0,256GB,711.55,15.58108466477056,13546.0,10.6,218.97385517209696 -LPHEW02024OB,Consumer Notebook 17,Intel i5-1335U,Intel Iris Xe,8.0,1TB,739.94001464844,16.19060126747672,16929.0,10.6,218.80964601122693 -LPACE00994,Vero,Intel i7-1255U,Intel Iris Xe ,16.0,1TB,799.0,17.481307316721622,13772.0,12.1,218.78982874495148 -LPLEN03414,IdeaPad,Intel i3-1215U,Intel HD ,4.0,128GB,329.0,7.194251877979049,11032.0,4.2,218.67026984738752 -LPACE00945OB,Aspire,Intel i5-10210U,,8.0,256GB,415.04000549316,9.055985805547257,6228.0,6.4,218.19549165596044 -LPLEN03299,ThinkPad T14 Gen 2,Intel Core i5-1135G7,GeForce MX450 2GB,8.0,256GB,799.88,17.40190054502303,9891.0,12.6,217.55639027132858 -LPMSI00535,Stealth 17,Intel i9-13900H,GeForce RTX 4090,64.0,2TB,4399.0,95.34871988901502,29687.0,72.6,216.7508976790521 -LPHEW02012,Chromebook C204MA-SS02-CB,Intel Celeron-N4020,Intel UHD ,4.0,32GB eMMC,99.0,2.139849338796816,1556.0,1.5,216.14639785826424 -LPASU00603,Vivobook 15,Intel Core i7-1165G7,Intel Iris Xe ,12.0,512GB,780.88,16.86422355548349,10347.0,12.1,215.96434222266532 -LPLEN03432OB,IdeaPad Flex 5,AMD Ryzen 5 7530U,,16.0,512GB,806.55,17.354238762762137,16507.0,11.6,215.16631036838555 -LPMSI00550,Raider GE78HX,Intel i9-13980HX,GeForce RTX 4070,32.0,2TB,3399.0,72.7380092476574,47994.0,51.7,213.9982619819282 -LPASU00723,GA402NJ-DS71-CA,AMD Ryzen 7 7735HS,RTX 3050,16.0,512GB,1799.0,38.462564677093624,24264.0,27.5,213.7996924796755 -LPHEW01543,15-ef2030ca,AMD Ryzen 7 5700U,AMD Radeon ,16.0,1TB,899.88,19.22005853901427,15854.0,13.2,213.58468394690703 -LPLEN02154,20WM0085US,Intel i5-1135G7,,8.0,256GB,699.0,14.922561702047824,9891.0,10.6,213.48443064446099 -LPSAS00117,Galaxy Book,Intel i5-1135G7,Intel Iris Xe ,8.0,256GB,699.0,14.922561702047824,9891.0,10.6,213.48443064446099 -LPHEW02099OB,17-cn3020ca,Intel i5-1335U,,16.0,512GB,759.05,16.19060126747672,16929.0,10.6,213.30085327022886 -LPHUA00035,Matebook 14,Intel Core i5-1135G7,Intel Iris Xe ,16.0,512GB,699.88,14.922561702047824,9891.0,10.6,213.21600420140342 -LPMSI00552,Raider GE78HX,Intel i7-13700HX,GeForce RTX 4070,32.0,1TB,3299.0,70.23652284151719,34110.0,51.7,212.90246390274984 -LPMSI00576,CREATOR Z16,Intel i7-13700HX,GeForce RTX 4060,32.0,1TB,2999.0,63.54230796548413,34110.0,46.3,211.87831932472199 -LPLGE00019OB,gram,Intel i5-1155G7,Intel Iris Xe ,8.0,512GB,712.39,14.992287662806703,10278.0,10.6,210.45056307369143 -LPGIG00163,AORUS 17X,Intel i9-13980HX,GeForce RTX 4090,32.0,2TB,4699.0,98.6471001567483,47994.0,72.6,209.93211354915576 -LPMSI00551,Stealth 17Studio,Intel i7-13700H,GeForce RTX 4070,32.0,1TB,3299.0,69.11586269702049,27890.0,51.7,209.50549468633068 -LPASU00767,Zenbook Pro 14 Duo OLED,Intel i9-13900H,GeForce RTX 4060,32.0,1TB,2999.0,62.74541410389105,29687.0,46.3,209.2211207198768 -LPLEN03707,V15 G4,Intel i3-1315U,Intel UHD ,16.0,512GB,699.0,14.615663690578561,13004.0,9.9,209.09390115276912 -LPASU00764,Zenbook 15 OLED,AMD Ryzen 7 7735U,AMD Radeon ,16.0,1TB,1299.0,27.152424044385658,21350.0,18.8,209.02558925624064 -LPHEW01967,ProBook 440 G9,Intel i5-1235U,,16.0,256GB,749.0,15.58108466477056,13546.0,10.6,208.0251624134921 -LPHEW02024,Consumer Notebook,Intel i5-1335U,Intel Iris Xe,8.0,1TB,778.88000488281,16.19060126747672,16929.0,10.6,207.87029023697627 -LPHUA00037OB,MateBook 14s,Intel Core i7-11370H,Intel Iris Xe ,16.0,512GB,824.49000038147,17.118804388951954,11760.0,12.1,207.62901164394387 -LPACE00945,Aspire A515-54-54B9,Intel i5-10210U,,8.0,256GB,436.88000488281,9.055985805547257,6228.0,6.4,207.2877152612297 -LPASU00558,Zenbook Pro 15,AMD Ryzen 9 5900HX,NVIDIA GeForce RTX 3050Ti,16.0,512GB,1899.0,39.04458295233242,22678.0,28.2,205.60601870633187 -LPLEN00182,ThinkPad T480s,Intel Core i7-8550U,,16.0,256GB,437.96000671387,9.00211484361727,5929.0,6.4,205.54650437519456 -LPLEN03403,T480s,Intel i7-8550U,Intel UHD 620,24.0,256GB,437.96000671387,9.00211484361727,5929.0,6.4,205.54650437519456 -LPASU00768,Zenbook Pro 16X OLED,Intel i9-13905H,GeForce RTX 4080,32.0,1TB,4199.0,86.14847190897136,31603.0,64.9,205.1642579399175 -LPLEN03572,Legion Pro 7,Intel i9-13900HX,GeForce RTX 4090,32.0,2TB,4799.0,98.10352593553502,44977.0,72.6,204.42493422699525 -LPMSI00581,Modern 15,AMD Ryzen 5-7530U,,16.0,512GB,849.0,17.354238762762137,16507.0,11.6,204.4079948499663 -LPLEN03432,,AMD Ryzen 5 7530U,,16.0,512GB,849.0,17.354238762762137,16507.0,11.6,204.4079948499663 -LPHUA00039OB,MateBook 14s,i7-11370H,Intel Iris Xe ,16.0,512GB,838.82000030518,17.118804388951954,11760.0,12.1,204.0819768570585 -LPHEW02099,17-cn3020ca,Intel i5-1335U,,16.0,512GB,799.0,16.19060126747672,16929.0,10.6,202.6358106067174 -LPLEN03578,Yoga L390,Intel i5-8365U,,16.0,256GB,449.0,9.059048703048292,6245.0,6.4,201.76055017924926 -LPLEN03577OB,ThinkPad T480,Intel i5-8365U,,16.0,512GB,449.1,9.059048703048292,6245.0,6.4,201.71562465037388 -LPLEN03559OB,,Intel i5-8365U,Intel UHD 620,16.0,512GB,449.1,9.059048703048292,6245.0,6.4,201.71562465037388 -LPLEN03202,X380 Yoga,Intel i5-8350U,Integrated GPU,16.0,512GB,449.0,9.055625464664782,6226.0,6.4,201.68430878986152 -LPASU00559OB,Zenbook Notebook,Intel Core i5-1135G7,Intel Iris Xe ,8.0,256GB,741.83999328613,14.922561702047824,9891.0,10.6,201.15606919418465 -LPLEN03552OB,X1 Yoga G4,Intel i5-8265U,,16.0,512GB,449.1,9.019050865093586,6023.0,6.4,200.82500256276074 -LPMSI00583,,Intel i7-13700HX,GeForce RTX 4050,32.0,1TB,2899.0,58.08776251093866,34110.0,41.9,200.37172304566627 -LPASU00728,Zephyrus Duo,AMD Ryzen 9 7945HX,RTX 4090,32.0,2TB,4999.0,100.0,55503.0,72.6,200.0400080016003 -LPMSI00591,Stealth 16 AMG,Intel i9-13900H,GeForce RTX 4070,32.0,2TB,3499.0,69.43962897992412,29687.0,51.7,198.45564155451305 -LPMSI00534,Raider GE78 HX,Intel i9-13980HX,GeForce RTX 4080,64.0,2TB,4499.0,89.10164561129376,47994.0,64.9,198.0476675067654 -LPMSI00533,Raider GE78 HX,Intel i9-13980HX,GeForce RTX 4090,32.0,2TB,4999.0,98.6471001567483,47994.0,72.6,197.33366704690596 -LPLGE00021OB,gram,Intel i5-1155G7,Intel Iris Xe ,8.0,512GB,759.89,14.992287662806703,10278.0,10.6,197.2954988591336 -LPASU00560OB,ExpertBook B1,Intel i5-1135G7,,8.0,256GB,759.05,14.922561702047824,9891.0,10.6,196.5952401297388 -LPHUA00038OB,Matebook 14,i5-1135G7,Intel Iris Xe ,16.0,512GB,759.89,14.922561702047824,9891.0,10.6,196.37791919946076 -LPACE00999,PTX17-71-99W5,Intel i9-13900HX,GeForce RTX 4090,64.0,2TB,4999.0,98.10352593553502,44977.0,72.6,196.2463011312963 -LPHUA00042OB,Matebook D14,Intel i7-1360P,,16.0,1TB,949.05,18.478911049853163,19309.0,12.1,194.70956271906817 -LPHUA00039,MateBook 14s,Intel i7-11370H,Intel Iris Xe ,16.0,512GB,882.95999992371,17.118804388951954,11760.0,12.1,193.8797271725906 -LPMSI00589,Creator Z17HXStudio,Intel i9-13950HX,GeForce RTX 4060,32.0,1TB,3399.0,65.49193231011414,44931.0,46.3,192.68000091236877 -LPACE00880OB,Aspire A515-54,Intel i7-10510U,,8.0,512GB,474.89,9.131657390866968,6648.0,6.4,192.2899490590867 -LPASU00559,Zenbook Notebook,Intel Core i5-1135G7,Intel Iris Xe ,8.0,256GB,780.88000488281,14.922561702047824,9891.0,10.6,191.0992932171098 -LPRAZ00059,Blade 14,AMD Ryzen 9 7940HS,GeForce RTX 4070,16.0,1TB,3649.0,69.60304357012646,30594.0,51.7,190.74552910421062 -LPSAS00150,Galaxy Book3 EVO,Intel i7-13700H,GeForce RTX 4050,16.0,512GB,2999.0,56.96710236644196,27890.0,41.9,189.95365910784247 -LPLGE00034,Gram,Intel i7-1360P,GeForce RTX 3050,16.0,1TB,1999.99,37.56982014076225,19309.0,27.5,187.85003995401107 -LPMSI00568OB,Modern,Intel i5-1235U,Intel Iris Xe,16.0,512GB,830.18999938965,15.58108466477056,13546.0,10.6,187.68094865302723 -LPLGE00015OB,Gram 2-in-1,Intel i7-1165G7,Intel Iris Xe ,16.0,512GB,902.39,16.86422355548349,10347.0,12.1,186.8839809337813 -LPASU00560,ExpertBook B1,Intel i5-1135G7,,8.0,256GB,799.0,14.922561702047824,9891.0,10.6,186.76547812325185 -LPHUA00038,Matebook 14,i5-1135G7,Intel Iris Xe ,16.0,512GB,799.88,14.922561702047824,9891.0,10.6,186.56000527638923 -LPLEN03706,V15 G4,AMD Ryzen 5 5500U,Integrated graphics,16.0,512GB,899.0,16.748325568880727,13144.0,11.6,186.29950577175447 -LPHUA00042,Matebook D14,Intel i7-1360P,,16.0,1TB,999.0,18.478911049853163,19309.0,12.1,184.97408458311475 -LPHEW01822OB,ProBook 450 G9,Intel i7-1255U,,16.0,512GB,949.05,17.481307316721622,13772.0,12.1,184.19795918783652 -LPLEN03301OB,IdeaPad Flex 5,Intel i7-1255U,,16.0,512GB,949.05,17.481307316721622,13772.0,12.1,184.19795918783652 -LPACE00851OB,TravelMate P2,Intel Core i5-1135G7,Intel HD ,8.0,256GB,379.89,6.988677404527163,9891.0,4.2,183.96581653971316 -LPLEN03564OB,ThinkPad X1,Intel i7-8650U,,16.0,256GB,494.1,9.066796032021502,6288.0,6.4,183.50123521597857 -LPACE00880,Aspire A515-54,Intel i7-10510U,,8.0,512GB,499.88,9.131657390866968,6648.0,6.4,182.67699029501017 -LPHEW01946OB,,Intel i5-1235U,,16.0,256GB,854.05,15.58108466477056,13546.0,10.6,182.43761682302627 -LPLEN03573OB,ThinkPad T490,Intel i7-8550U,Intel UHD 620,16.0,256GB,494.1,9.00211484361727,5929.0,6.4,182.19216441241187 -LPLEN03577,ThinkPad T480,Intel i5-8365U,,16.0,512GB,499.0,9.059048703048292,6245.0,6.4,181.54406218533651 -LPLEN03559,ThinkPad T590,Intel i5-8365U,Intel UHD 620,16.0,512GB,499.0,9.059048703048292,6245.0,6.4,181.54406218533651 -LPLEN03552,X1 Yoga G4,Intel i5-8265U,,16.0,512GB,499.0,9.019050865093586,6023.0,6.4,180.74250230648468 -LPASU00735OB,Vivobook 16X,Intel i5-12500H,Iris Xe ,16.0,512GB,944.18999938965,17.017943933638907,21521.0,10.6,180.23855309460774 -LPMSI00578,Modern 14,Intel i5-1335U,,16.0,512GB,899.0,16.19060126747672,16929.0,10.6,180.09567594523605 -LPASU00734OB,Zenbook 14X,Intel i7-1260P,GeForce MX550,16.0,512GB,1519.05,26.906169765523806,17231.0,19.2,177.12497788436067 -LPHEW01822,ProBook 450 G9,Intel i7-1255U,,16.0,512GB,999.0,17.481307316721622,13772.0,12.1,174.98806122844468 -LPLEN03568,V14,Intel i7-1255U,,16.0,512GB,999.0,17.481307316721622,13772.0,12.1,174.98806122844468 -LPLEN03301,IdeaPad Flex 5,Intel i7-1255U,,16.0,512GB,999.0,17.481307316721622,13772.0,12.1,174.98806122844468 -LPHEW02045OB,"Consumer Laptop 17.3""",Intel i5-1135G7,Intel Iris Xe,16.0,512GB,854.05,14.922561702047824,9891.0,10.6,174.72702654467332 -LPSAS00152,Galaxy Book3 EVO,Intel i7-13700H,GeForce RTX 4050,16.0,1TB,3269.0,56.96710236644196,27890.0,41.9,174.2646141524685 -LPLEN03600,21KK0009US,AMD Ryzen 5 7530U Hexa-core (6 Core),,16.0,512 GB,999.0,17.354238762762137,16507.0,11.6,173.71610373135272 -LPASU00707OB,Zenbook OLED,AMD Ryzen 7 7730U,AMD Radeon,16.0,1TB,1139.05,19.75516474948938,18824.0,13.2,173.4354483954996 -LPHEW01946,ProBook 450 G9,Intel i5-1235U,,16.0,256GB,899.0,15.58108466477056,13546.0,10.6,173.31573598187495 -LPLEN03055,ThinkBook 15 G4,Intel Core i5-1235U,,16.0,256GB,899.0,15.58108466477056,13546.0,10.6,173.31573598187495 -LPRAZ00055,Blade 15,Intel Core i7-12800H,GeForce RTX 3070 Ti,16.0,1TB,3999.0,69.20977988979229,24971.0,52.2,173.06771665364414 -LPLEN03685OB,IdeaPad Slim 3 15AMN8,AMD Ryzen 3 7320U,,8.0,256GB,426.55,7.3359045591013405,9066.0,4.6,171.9822895112259 -LPASU00782OB,Vivobook Go,AMD Ryzen 3 7320U,,8.0,128GB,426.55,7.3359045591013405,9066.0,4.6,171.9822895112259 -LPASU00735,Vivobook 16X,Intel i5-12500H,Iris Xe ,16.0,512GB,993.87999725342,17.017943933638907,21521.0,10.6,171.2273511959982 -LPLEN03338,ThinkPad T14s Gen 2,AMD Ryzen 5 PRO 5650U Hexa-core (6 Core) 2.30 GHz,,,256 GB,999.0,17.068668613400842,14922.0,11.6,170.8575436776861 -LPASU00734,Zenbook 14X,Intel i7-1260P,GeForce MX550,16.0,512GB,1599.0,26.906169765523806,17231.0,19.2,168.26872899014265 -LPMSI00516,Modern 14 Business Notebook,Intel Core i5-1235U,Intel Iris Xe,8.0,512GB,929.0,15.58108466477056,13546.0,10.6,167.7188876724495 -LPLEN02131,20Y70037US,AMD Ryzen 5 5500U,,8.0,256GB,999.0,16.748325568880727,13144.0,11.6,167.65090659540266 -LPHEW02045,Consumer Laptop,Intel i5-1135G7,Intel Iris Xe,16.0,512GB,899.0,14.922561702047824,9891.0,10.6,165.99067521743964 -LPLEN03564,ThinkPad X1,Intel i7-8650U,,16.0,256GB,549.0,9.066796032021502,6288.0,6.4,165.15111169438072 -LPLEN03712,Yoga L390,Intel i5-8365U,,16.0,256GB,549.0,9.059048703048292,6245.0,6.4,165.00999459104355 -LPASU00707,Zenbook,AMD Ryzen 7 7730U,AMD Radeon,16.0,1TB,1199.0,19.75516474948938,18824.0,13.2,164.76367597572462 -LPLEN03099,ThinkPad E15 Gen 4,AMD Ryzen 7 5825U Octa-core (8 Core) 2 GHz,AMD Radeon ,16.0,512GB,1199.0,19.68922236799649,18458.0,13.2,164.2136978148164 -LPLEN03573,ThinkPad T490,Intel i7-8550U,Intel UHD 620,16.0,256GB,549.0,9.00211484361727,5929.0,6.4,163.9729479711707 -LPMSI00498OB,SUMMIT E14,Intel i7-1280P,Iris Xe ,16.0,1TB,1141.7899938965,18.68448552330505,20450.0,12.1,163.6420499670165 -LPLEN03508,21JR001QUS,"AMD Ryzen 5 7530U (Hexa-core, 6 Core) ",,8.0,256 GB,1061.69,17.354238762762137,16507.0,11.6,163.4586250483864 -LPASU00782,Vivobook Go,AMD Ryzen 3 7320U,,8.0,128GB,449.0,7.3359045591013405,9066.0,4.6,163.38317503566458 -LPLEN03685,IdeaPad Slim 3 15AMN8,AMD Ryzen 3 7320U,,8.0,256GB,449.0,7.3359045591013405,9066.0,4.6,163.38317503566458 -LPHEW01834OB,EliteBook 640 G9,Intel i5-1245U,,16.0,512GB,961.35999755859,15.569373586090126,13481.0,10.6,161.95154391309333 -LPDYA00003,C50-J,Intel Core i5-1135G7,Integrated GPU,8.0,256GB,929.0,14.922561702047824,9891.0,10.6,160.6303735419572 -LPASU00779OB,Zenbook 14X OLED,Intel i7-12700H,Intel Iris Xe,16.0,1TB,1234.05,19.76082373925734,26424.0,12.1,160.12984675869973 -LPMSI00532,TITAN GT77,Intel i9-13980HX,GeForce RTX 4080,64.0,2TB,5599.0,89.10164561129376,47994.0,64.9,159.13849903785277 -LPLEN03010,ThinkBook 14 G4,Intel i7-1255U,,16.0,512GB,1099.0,17.481307316721622,13772.0,12.1,159.06558067990557 -LPRAZ00054,Razer Blade 14,AMD Ryzen 9 6900HX,GeForce RTX 3080Ti,16.0,1TB,4499.0,71.05414970495974,24887.0,53.7,157.9332067236269 -LPLEN03521,,AMD Ryzen 5 7530U,,16.0,256GB,1099.0,17.354238762762137,16507.0,11.6,157.90936089865457 -LPLEN02397OB,,Intel i5-1135G7,Intel Iris Xe ,8.0,256GB,949.89,14.922561702047824,9891.0,10.6,157.09778713375047 -LPMSI00531OB,TITAN GT77,Intel i9-13980HX,GeForce RTX 4090,128.0,4TB,6299.1,98.6471001567483,47994.0,72.6,156.60507081447872 -LPLEN03487OB,ThinkPad E16,Intel i7-1355U,,16.0,512GB,1139.05,17.75552672828496,15294.0,12.1,155.8801345707823 -LPACE00491,Aspire 5,Intel i7-10510U,Intel UHD 620 graphics,8.0,512GB,585.88,9.131657390866968,6648.0,6.4,155.8622480860751 -LPLGE00026OB,Gram,Intel i7-1260P,Intel Iris Xe ,16.0,512GB,1162.6900030518,18.104516872961824,17231.0,12.1,155.71232938652207 -LPDYA00005,C50-J,Intel Core i7-1165G7,Integrated GPU,8.0,256GB,1089.0,16.86422355548349,10347.0,12.1,154.85972043602837 -LPHEW02021OB,14-em0030ca,AMD Ryzen 3 7320U,Radeon ,8.0,256GB,474.05,7.3359045591013405,9066.0,4.6,154.7495951714237 -LPMSI00379,Modern 14,Intel Core i7-1195G7,Intel Iris Xe,8.0,512GB,1099.0,16.988000648613593,11034.0,12.1,154.5768939819253 -LPLEN03428OB,IdeaPad Slim 3,AMD Ryzen 3 7320U,AMD Radeon 610M ,8.0,512GB,474.99,7.3359045591013405,9066.0,4.6,154.44334741997392 -LPHEW01834,EliteBook 640 G9,Intel i5-1245U,,16.0,512GB,1011.9599990845,15.569373586090126,13481.0,10.6,153.8536463909189 -LPMSI00544,Titan Gaming Notebook,Intel i9-13980HX,GeForce RTX 4090,64.0,2TB,6449.0,98.6471001567483,47994.0,72.6,152.96495605016017 -LPMSI00587,CreatorPro M16,Intel i7-13700H,NVIDIA RTX A1000,32.0,1TB,2399.0,36.63652385404527,27890.0,25.5,152.71581431448632 -LPASU00779,Zenbook 14X OLED,Intel i7-12700H,Intel Iris Xe,16.0,1TB,1299.0,19.76082373925734,26424.0,12.1,152.12335442076477 -LPCNO00054,ThinkPad E15 Gen 2,Intel Core i5-1135G7,Intel Iris Xe ,8.0,256GB,999.0,14.922561702047824,9891.0,10.6,149.37499201249074 -LPACE00948,A317-53-591M,Intel i5-1135G7,Integrated GPU,8.0,512GB,999.0,14.922561702047824,9891.0,10.6,149.37499201249074 -LPASU00780OB,Zenbook,Intel i7-12700H,,16.0,1TB,1329.05,19.76082373925734,26424.0,12.1,148.68382483170188 -LPHEW01833OB,EliteBook 650 G9,Intel i5-1245U,,16.0,256GB,1048.7599990845,15.569373586090126,13481.0,10.6,148.45506693315144 -LPMSI00590,Modern 14,Intel i7-1355U,,16.0,1TB,1199.0,17.75552672828496,15294.0,12.1,148.08612784224317 -LPLEN03487,21JN0073US,Intel i7-1355U,,16.0,512GB,1199.0,17.75552672828496,15294.0,12.1,148.08612784224317 -LPLEN03544,21JR001RUS,Ryzen 5 7530U,,16.0,256 GB,1173.65,17.354238762762137,16507.0,11.6,147.86553710869626 -LPHEW02021,Consumer Laptop 14,AMD Ryzen 3 7320U,Radeon ,8.0,256GB,499.0,7.3359045591013405,9066.0,4.6,147.0121154128525 -LPLEN03428,IdeaPad Slim 3,AMD Ryzen 3 7320U,AMD Radeon 610M ,8.0,512GB,499.99,7.3359045591013405,9066.0,4.6,146.72102560253884 -LPLGE00027OB,gram,Intel i5-1240P,Intel Iris Xe ,8.0,512GB,1109.4899984741,16.26104791000055,17320.0,10.6,146.56326719812378 -LPLEN03427,IdeaPad 1 15AMN7,AMD Athlon Gold 7220U,AMD Radeon 610M ,4.0,128GB,449.99,6.557928593838201,4748.0,4.6,145.73498508496192 -LPLEN03602,,Intel Core i5-1335U,,16.0,256GB,1119.2,16.19060126747672,16929.0,10.6,144.66227008110008 -LPASU00765OB,Zenbook S 13 OLED EVO,Intel i7-1355U,,16.0,1TB,1234.05,17.75552672828496,15294.0,12.1,143.8801242112148 -LPASU00547OB,Vivobook 13,Intel Pentium Silver N6000,Intel UHD ,4.0,128GB,332.39,4.7714225260402126,3089.0,3.4,143.54891922260637 -LPGIG00125,AERO 16 YE4,Intel Core i9-12900H,NVIDIA GeForce RTX 3080 Ti,32.0,2TB,4999.0,71.7094295997402,28524.0,53.7,143.44754870922227 -LPLGE00025,gram,Intel i5-1240P,,8.0,512GB,1135.88,16.26104791000055,17320.0,10.6,143.15814971652418 -LPASU00665,Zenbook Pro,Intel Core i9-12900H,GeForce RTX 3060,32.0,1TB,3999.0,57.20529736833524,28524.0,42.0,143.04900567225616 -LPDYA00004,C50-J,Intel Core i5-1135G7,Integrated GPU,8.0,512GB,1049.0,14.922561702047824,9891.0,10.6,142.25511632076095 -LPASU00647,P1512CEA,Intel Core i5-1135G7,Intel UHD ,8.0,512GB,1049.0,14.922561702047824,9891.0,10.6,142.25511632076095 -LPASU00649,P1512CEA,Intel Core i5-1135G7,Intel UHD ,8.0,512GB,1049.0,14.922561702047824,9891.0,10.6,142.25511632076095 -LPASU00623,,AMD Ryzen 9 6900HX,NVIDIA GeForce RTX 3080 Ti,64.0,1TB,4999.0,71.05414970495974,24887.0,53.7,142.13672675527056 -LPLEN03429OB,IdeaPad Slim 3,AMD Ryzen 5 7520U,AMD Radeon 610M,8.0,512GB,522.49,7.409594269567441,9475.0,4.6,141.81313076934373 -LPMSI00514OB,Summit E13 Flip Evo,Intel Core i7-1280P,Intel Iris Xe,16.0,1TB,1318.4899984741,18.68448552330505,20450.0,12.1,141.71124198840164 -LPLEN03042OB,ThinkBook 15 G4,Intel Core i7-1255U,,16.0,512GB,1234.05,17.481307316721622,13772.0,12.1,141.65801480265486 -LPASU00780,Zenbook,Intel i7-12700H,,16.0,1TB,1399.0,19.76082373925734,26424.0,12.1,141.24963359011682 -LPHEW01833,EliteBook 650 G9,Intel i5-1245U,,16.0,256GB,1103.9599990845,15.569373586090126,13481.0,10.6,141.0320446302548 -LPMSI00531,TITAN GT77,Intel i9-13980HX,GeForce RTX 4090,128.0,4TB,6999.0,98.6471001567483,47994.0,72.6,140.94456373303086 -LPDYA00006,C50-J,Intel Core i7-1165G7,Integrated,8.0,512GB,1199.0,16.86422355548349,10347.0,12.1,140.65240663455788 -LPLEN03710,,Intel i5-10310U,,16.0,512GB,649.0,9.093461257324638,6436.0,6.4,140.11496544413927 -LPHEW01997OB,ENVY X360,Intel i7-1250U,,16.0,1TB,1234.05,17.23789705060988,12421.0,12.1,139.68556420412364 -LPLEN03711,X1 Carbon,Intel i7-8665U,,16.0,256GB,649.0,9.061030577901905,6256.0,6.4,139.6152631417859 -LPLGE00027,gram,Intel i5-1240P,Intel Iris Xe ,8.0,512GB,1167.88,16.26104791000055,17320.0,10.6,139.23560562729514 -LPHEW02083OB,EliteBook 640 G9,Intel i5-1245U,,16.0,512GB,1136.1600006104,15.569373586090126,13481.0,10.6,137.03504416389865 -LPASU00765,Zenbook S 13 OLED EVO,Intel i7-1355U,,16.0,1TB,1299.0,17.75552672828496,15294.0,12.1,136.68611800065403 -LPASU00547,Vivobook 13 Slate Notebook,Intel Pentium Silver N6000,Intel UHD ,4.0,128GB,349.88,4.7714225260402126,3089.0,3.4,136.37311438322317 -LPLEN03708,V15 G4,Intel i5-1335U,,16.0,1TB,1199.0,16.19060126747672,16929.0,10.6,135.0342057337508 -LPLEN01849OB,ThinkPad X1 Nano EVO,Intel Core i7-1160G7,,16.0,512GB,1234.05,16.652703457470768,9173.0,12.1,134.94350680661861 -LPLEN03429,IdeaPad Slim 3,AMD Ryzen 5 7520U,AMD Radeon 610M,8.0,512GB,549.99,7.409594269567441,9475.0,4.6,134.7223453075045 -LPLEN03042,ThinkBook 15 G4,Intel Core i7-1255U,,16.0,512GB,1299.0,17.481307316721622,13772.0,12.1,134.57511406252212 -LPLEN03221,ThinkPad L13 Yoga,Intel Core i7-1255U,,16.0,512GB,1299.0,17.481307316721622,13772.0,12.1,134.57511406252212 -LPLGE00024OB,Gram,Intel i7-1260P,Intel Iris Xe ,16.0,512GB,1355.5400015259,18.104516872961824,17231.0,12.1,133.55944385692777 -LPHEW01997,ENVY X360,Intel i7-1250U,,16.0,1TB,1299.0,17.23789705060988,12421.0,12.1,132.70128599391748 -LPMSI00597,Prestige 13 EVO,Intel i7-1360P,,16.0,512GB,1399.0,18.478911049853163,19309.0,12.1,132.08656933418987 -LPLEN03522,ThinkBook 15 G4,AMD Ryzen 5 5625U,,16.0,256GB,1299.0,17.09677520223388,15078.0,11.6,131.6148976307458 -LPHEW02023OB,Consumer Notebook,AMD Ryzen 5 7520U,AMD Radeon ,8.0,512GB,569.05,7.409594269567441,9475.0,4.6,130.2098984196018 -LPHEW02083,EliteBook 640 G9,Intel i5-1245U,,16.0,512GB,1195.9599990845,15.569373586090126,13481.0,10.6,130.1830629620421 -LPLEN03476,14s Yoga G3,Intel Core i7-1355U,,16.0,512GB,1379.9599990845,17.75552672828496,15294.0,12.1,128.66696672414 -LPASU00800,Vivobook S 15 OLED,Intel i9-13900H,,16.0,1TB,1599.0,20.34871988901501,29687.0,12.1,127.2590362039713 -LPLEN03709,V15 G4,Intel i7-1355U,,16.0,1TB,1399.0,17.75552672828496,15294.0,12.1,126.91584509138643 -LPLEN03474,ThinkPad E16,Intel i5-1335U,,16.0,256GB,1299.0,16.19060126747672,16929.0,10.6,124.6389627981272 -LPLEN03462,ThinkBook 14s Yoga,Intel Core i5-1335U,,16.0,256GB,1299.0,16.19060126747672,16929.0,10.6,124.6389627981272 -LPASU00565,ExpertBook B5,Intel Core i5-1135G7,Intel Iris Xe G7,16.0,256GB,1199.0,14.922561702047824,9891.0,10.6,124.45839618054899 -LPHEW02023,Consumer Notebook 14,AMD Ryzen 5 7520U,AMD Radeon ,8.0,512GB,599.0,7.409594269567441,9475.0,4.6,123.6994034986217 -LPLGE00032,Gram EVO,Intel i7-1360P,Intel Iris Xe,16.0,512GB,1499.0,18.478911049853163,19309.0,12.1,123.27492361476428 -LPLGE00033OB,Gram EVO,Intel i7-1360P,Intel Iris Xe,16.0,512GB,1519.05,18.478911049853163,19309.0,12.1,121.64781310590938 -LPLGE00030OB,Gram,Intel i7-1360P,Intel Iris Xe,16.0,512GB,1519.05,18.478911049853163,19309.0,12.1,121.64781310590938 -LPLGE00031OB,Gram EVO,Intel i7-1360P,Intel Iris Xe,16.0,512GB,1519.99,18.478911049853163,19309.0,12.1,121.57258304234345 -LPMSI00527,CreatorPro,Intel i7-12700H,NVIDIA RTX A5500,32.0,1TB,5299.0,63.89305514421603,26424.0,47.7,120.57568436349504 -LPASU00564,ExpertBook B1,Intel Core i7-1165G7,Intel Iris Xe G7,12.0,512GB,1399.0,16.86422355548349,10347.0,12.1,120.54484314141166 -LPASU00651,P1512CEA,Intel Core i7-1165G7,Intel Iris Xe ,16.0,1TB,1399.0,16.86422355548349,10347.0,12.1,120.54484314141166 -LPASU00562,ExpertBook B1,Intel Core i7-1165G7,Intel Iris Xe G7,12.0,512GB,1399.0,16.86422355548349,10347.0,12.1,120.54484314141166 -LPASU00650,,Intel Core i7-1165G7,Intel Iris Xe ,16.0,1TB,1399.0,16.86422355548349,10347.0,12.1,120.54484314141166 -LPMSI00585,CreatorPro Z17HX Studio,Intel i9-13950HX,NVIDIA RTX A3000,32.0,1TB,3999.0,47.888626524990165,44931.0,32.1,119.75150418852256 -LPLEN02112,ThinkBook 14s Yoga ITL,Intel i5-1135G7,Intel Iris Xe ,8.0,256GB,1249.0,14.922561702047824,9891.0,10.6,119.47607447596336 -LPLEN03339,ThinkPad T14s Gen 2,AMD Ryzen 5 PRO 5650U,,8.0,256GB,1430.2,17.068668613400842,14922.0,11.6,119.34462741854874 -LPLEN03512,ThinkBook 14s Yoga G3,Intel Core i7-1355U,,16.0,512GB,1499.0,17.75552672828496,15294.0,12.1,118.44914428475624 -LPLEN02056,IdeaPad Slim 7i,Intel i5-1135G7,Intel Iris Xe ,8.0,512GB,1259.99,14.922561702047824,9891.0,10.6,118.4339693334695 -LPMSI00586,CreatorPro Z16HXStudio,Intel i9-13950HX,NVIDIA RTX A2000,32.0,1TB,3799.0,44.913419913419915,44931.0,29.7,118.22432196214771 -LPLGE00028OB,Gram EVO,Intel i7-1260P,Intel Iris Xe ,16.0,512GB,1538.89,18.104516872961824,17231.0,12.1,117.64659509751718 -LPLEN03497,ThinkPad X1 Carbon,Intel i5-1335U,,16.0,256GB,1399.0,16.19060126747672,16929.0,10.6,115.72981606488007 -LPLEN03471,ThinkPad E14,Intel i5-1335U,,16.0,512GB,1399.0,16.19060126747672,16929.0,10.6,115.72981606488007 -LPLGE00030,Gram,Intel i7-1360P,Intel Iris Xe,16.0,512GB,1599.0,18.478911049853163,19309.0,12.1,115.56542245061391 -LPLGE00033,Gram EVO,Intel i7-1360P,Intel Iris Xe,16.0,512GB,1599.0,18.478911049853163,19309.0,12.1,115.56542245061391 -LPLGE00031,Gram EVO,Intel i7-1360P,Intel Iris Xe,16.0,512GB,1599.99,18.478911049853163,19309.0,12.1,115.49391589855664 -LPMSI00577OB,Prestige 13 Evo,Intel i7-1360P,,32.0,1TB,1604.55,18.478911049853163,19309.0,12.1,115.16569162602077 -LPLGE00028,Gram EVO,Intel i7-1260P,Intel Iris Xe ,16.0,512GB,1619.88,18.104516872961824,17231.0,12.1,111.76455584958035 -LPLEN03502OB,IdeaPad Slim 3,AMD Ryzen 5 7520U,,16.0,512GB,664.05,7.409594269567441,9475.0,4.6,111.58187289462302 -LPMSI00528,CreatorPro,Intel i7-12700H,RTX A3000,32.0,1TB,3999.0,44.55421216900941,26424.0,32.1,111.41338376846564 -LPMSI00588,Prestige 16EVO,Intel i7-13700H,,32.0,1TB,1799.0,20.024953606111385,27890.0,12.1,111.31158202396544 -LPLEN03546,E14,Intel i7-1355U,,16.0,512GB,1599.0,17.75552672828496,15294.0,12.1,111.04144295362701 -LPMSI00577,Prestige 13 Evo,Intel i7-1360P,,32.0,1TB,1689.0,18.478911049853163,19309.0,12.1,109.40740704471973 -LPLEN01757,ThinkBook 15 G2 ITL,Intel Core i7-1165G7 Quad-core (4 Core) 2.80 GHz,Intel UHD ,16.0,512 GB,1549.0,16.86422355548349,10347.0,12.1,108.87168208833758 -LPLEN03307,ThinkPad T14 Gen 2,Intel Core i5-1135G7,MX450 2GB,16.0,256GB,1599.0,17.40190054502303,9891.0,12.6,108.82989709207648 -LPSAS00158,Galaxy Book3 360 EVO,Intel i5-1335U,,8.0,256GB,1499.0,16.19060126747672,16929.0,10.6,108.00934801518825 -LPLEN03502,IdeaPad Slim 3,AMD Ryzen 5 7520U,,16.0,512GB,699.0,7.409594269567441,9475.0,4.6,106.00277924989184 -LPASU00592,Vivobook 15,AMD Ryzen 3 3250U,AMD Radeon ,8.0,128GB,499.0,5.281333910474351,3855.0,3.7,105.83835491932567 -LPDYA00033,Tecra,Intel i7-1260P,,16.0,256GB,1749.0,18.104516872961824,17231.0,12.1,103.5135327213369 -LPDYA00029,Tecra,Intel i7-1260P,,16.0,256GB,1749.99,18.104516872961824,17231.0,12.1,103.45497330248644 -LPACE00942,A315-56-54YT,Intel Core i5-1035G1,Integrated Graphic,8.0,256GB,749.0,7.66638554121786,7460.0,5.1,102.35494714576582 -LPDYA00028,Tecra,Intel i5-1240P,,16.0,256GB,1599.0,16.26104791000055,17320.0,10.6,101.69510888055376 -LPHEW02090,ProBook 440,Intel i7-1355U,,16.0,512GB,1799.0,17.75552672828496,15294.0,12.1,98.69664662748727 -LPSAS00112,Galaxy Book Pro,Intel i7-1165G7,Iris Xe ,8.0,512GB,1730.0,16.86422355548349,10347.0,12.1,97.48106101435543 -LPSAS00116,Galaxy Book Pro,Intel i7-1165G7,Intel Iris Xe ,8.0,256GB,1730.0,16.86422355548349,10347.0,12.1,97.48106101435543 -LPLEN02684OB,20UB0067US,Intel Core i5-10210U,,16.0,256 GB,931.92000068665,9.055985805547257,6228.0,6.4,97.17557085237677 -LPHEW01837,OMEN 16,AMD Ryzen 5 5600H,Radeon ,16.0,1TB,1799.0,17.45981864132726,17093.0,11.6,97.05291073556009 -LPLEN03308,ThinkPad T14 Gen 2,Intel Core i5-1135G7,MX450 2GB,16.0,256GB + 512GB,1799.0,17.40190054502303,9891.0,12.6,96.73096467494736 -LPASU00590OB,Vivobook 14 Flip,Intel Celeron N4500,Intel UHD ,4.0,128GB,474.05,4.575757426856384,2003.0,3.4,96.52478487198366 -LPLEN03517OB,ThinkPad X1 Carbon EVO,Intel i7-1365U,,32.0,512GB,1899.05,17.783813487559232,15451.0,12.1,93.64584127621302 -LPSAS00157,Galaxy Book3 360 EVO,Intel i7-1355U,,16.0,512GB,1899.0,17.75552672828496,15294.0,12.1,93.49935085984707 -LPLEN01858,20TA0025US,Intel Core i7 i7-1165G7,,8.0,512 GB,1805.7,16.86422355548349,10347.0,12.1,93.39438198750341 -LPLEN03138,Business Notebook,Intel i5-1145G7,Intel Iris Xe,16.0,512GB,1599.88,14.936795166905577,9970.0,10.6,93.36197194105543 -LPSAS00113,Galaxy Book Pro,Intel i5-1135G7,Intel Iris Xe ,8.0,512GB,1600.0,14.922561702047824,9891.0,10.6,93.2660106377989 -LPSAS00114,Galaxy Book Pro,Intel i5-1135G7,Iris Xe ,8.0,256GB,1600.0,14.922561702047824,9891.0,10.6,93.2660106377989 -LPLEN02684,ThinkPad X1 Yoga Gen 5,Intel Core i5-10210U,,16.0,256GB,980.95999992371,9.055985805547257,6228.0,6.4,92.3175848786041 -LPASU00590,Vivobook 14 Flip Notebook,Intel Celeron N4500,Intel UHD ,4.0,128GB,499.0,4.575757426856384,2003.0,3.4,91.69854562838447 -LPASU00763OB,Vivobook S 16 Flip,Intel i5-1335U,Intel HD ,16.0,512GB,901.55,8.25671696995606,16929.0,4.2,91.58357240259618 -LPASU00743,Zenbook S 13 Flip,Intel i7-1260P,,16.0,1TB,1999.0,18.104516872961824,17231.0,12.1,90.5678682989586 -LPSAS00111,Galaxy Book Pro,Intel i7-1165G7,Iris Xe ,8.0,512GB,1870.0,16.86422355548349,10347.0,12.1,90.18301366568711 -LPLEN03517,ThinkPad X1 Carbon EVO,Intel i7-1365U,,32.0,512GB,1999.0,17.783813487559232,15451.0,12.1,88.96354921240237 -LPASU00763,Vivobook S 16 Flip,Intel i5-1335U,Intel HD ,16.0,512GB,949.0,8.25671696995606,16929.0,4.2,87.00439378246638 -LPASU00591OB,L510MA-DS09-CA,Intel Celeron N4020,Intel UHD 600,4.0,64GB,246.05,2.139849338796816,1556.0,1.5,86.96806904274806 -LPLEN02741,20W400K3US,Intel i5-1145G7,Intel Iris Xe,16.0,512GB,1720.9,14.936795166905577,9970.0,10.6,86.79641563661792 -LPSAS00115,Galaxy Book Pro,Intel i5-1135G7,Intel Iris Xe ,8.0,512GB,1730.0,14.922561702047824,9891.0,10.6,86.25758209276198 -LPASU00762OB,Vivobook Slate,Intel Pentium Silver Processor N6000,Intel UHD ,8.0,128GB,569.05,4.7714225260402126,3089.0,3.4,83.84891531570536 -LPASU00591,Vivobook Go,Intel Celeron N4020,Intel UHD 600,4.0,64GB,259.0,2.139849338796816,1556.0,1.5,82.61966559061065 -LPLGE00035,Gram,Intel i7-1360P,Intel Iris Xe,16.0,512GB,2299.99,18.478911049853163,19309.0,12.1,80.34344084040872 -LPASU00762,Vivobook Slate,Intel Pentium Silver Processor N6000,Intel UHD ,8.0,128GB,599.0,4.7714225260402126,3089.0,3.4,79.65646954992009 -LPSAS00156,Galaxy Book3 Pro 360 EVO,Intel i7-1360P,,16.0,1TB,2499.0,18.478911049853163,19309.0,12.1,73.94522228832798 -LPLEN02071,ThinkPad X13 Yoga Gen 2,Intel Core i5 (11th Gen) i5-1135G7 Quad-core,Intel Iris Xe ,8.0,256 GB,2019.0,14.922561702047824,9891.0,10.6,73.91065726621011 -LPLEN03526,,Intel i5-1335U,,16.0,512GB,2249.42,16.19060126747672,16929.0,10.6,71.97678187033421 -LPLEN01870,20UN000AUS,Intel Core i7-1160G7 EVO Quad-core,Intel Iris Xe ,16.0,256 GB,2399.88,16.652703457470768,9173.0,12.1,69.38973389282283 -LPLEN03465,ThinkPad X1 Yoga EVO,Intel i5-1335U,,16.0,256GB,2534.06,16.19060126747672,16929.0,10.6,63.89194126215133 -LPLEN03478,ThinkPad X1 Yoga Gen 8,Intel i7-1355U,,16.0,512 GB,2884.39,17.75552672828496,15294.0,12.1,61.557302335276994 -LPLEN03495,ThinkPad X13 Yoga,Intel i5-10310U,,16.0,256GB,1499.0,9.093461257324638,6436.0,6.4,60.66351739376009 -LPASU00810,Chromebook Flip C434,Intel m3-8100Y,,4.0,64GB Flash Memory,699.0,4.237358623902841,2877.0,3.0,60.62029504868155 -LPASU00227,Chromebook Flip C434,Intel m3-8100Y,,4.0,64GB Flash Memory,699.0,4.237358623902841,2877.0,3.0,60.62029504868155 -LPLEN02299,ThinkPad X13 Yoga Gen 2,Intel Core i7 (11th Gen) i7-1165G7 Quad-core,Intel Iris Xe ,16.0,256GB,2892.49,16.86422355548349,10347.0,12.1,58.30348092986835 diff --git a/PCData/data/computed/canada_computers_laptops_bench_0.1.html b/PCData/data/computed/canada_computers_laptops_bench_0.1.html deleted file mode 100644 index 6b5ae63..0000000 --- a/PCData/data/computed/canada_computers_laptops_bench_0.1.html +++ /dev/null @@ -1,11317 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 item_idModelCPUGPURAMStoragepricebenchcpu_benchgpu_benchvalue
452LPCOI00001OBVOYAGER Gaming NotebookAMD Ryzen 7 6800HSRadeon 6800M161TB$ 99072%22,94754.6726
531LPMSI00429OBKatana GF66Intel Core i7-11800HRTX306016512GB$ 78656%20,75342.0710
401LPGIG00147OBG5 KF-E3US333SHIntel i5-12500HGeForce RTX 40608512GB$ 89961%21,52146.3682
367LPGIG00160OBG5 Gaming NotebookIntel i5-12450HGeForce RTX 405016512GB$ 80955%17,45641.9681
360LPGIG00135OBAERO 16 XE4Intel Core i7-12700HGeForce RTX 3070 Ti162TB$ 1,07969%26,42452.2644
210LPHEW02076OBVictus Gaming NotebookAMD Ryzen 5 7640HSGeForce RTX 405016512GB$ 89956%23,39041.9625
224LPGIG00162OBG5 KFIntel i7-12650HGeForce RTX 406016512GB$ 98962%23,28146.3623
434LPGIG00142OBG5 KE-52US213SHIntel i5-12500HGeForce RTX 306016512GB$ 90056%21,52142.0622
258LPACE00980OBNitro 5AMD Ryzen 7 5800HGeForce RTX 306016512GB$ 89956%21,13042.0621
532LPASU00584OBTUF Gaming NotebookRyzen 7 5800HGeForce RTX 306016512GB$ 90056%21,13042.0621
498LPMSI00467OBCrosshair 15Intel Core i7-12700HRTX3070Ti16512GB$ 1,12969%26,42452.2615
111LPGIG00147G5Intel i5-12500HGeForce RTX 40608512GB$ 99961%21,52146.3613
263LPACE00968OBNitro 5Intel i5-12450HGeForce RTX 406016512GB$ 98961%17,45646.3612
484LPGIG00133OBA5 K1AMD Ryzen 5 5600HGeForce RTX 306016512GB$ 93755%17,09342.0589
533LPACE00877OBNitro 5Intel i7-11800HNVIDIA GeForce RTX306016512GB$ 96156%20,75342.0581
495LPHEW01865OBOmen 16-b0020caIntel Core i7-11800HNVIDIA GeForce RTX 3070161TB$ 1,09263%20,75348.0579
326LPMSI00559OBThin GF63Intel i7-12650HGeForce RTX 406016512GB$ 1,07962%23,28146.3571
493LPMSI00504OBGP66 LeopardIntel Core i7-11800HNVIDIA RTX307016512GB$ 1,11463%20,75348.0568
429LPMSI00530OBKatana GF66Intel i5-11400HGeForce RTX 30508512GB$ 65137%15,82227.5567
47LPHEW02076Victus Gaming NotebookAMD Ryzen 5 7640HSGeForce RTX 405016512GB$ 99956%23,39041.9562
347LPMSI00560OBThin GF63Intel i5-12450HGeForce RTX 406016512GB$ 1,07961%17,45646.3561
4LPGIG00162G5 KFIntel i7-12650HGeForce RTX 406016512GB$ 1,09962%23,28146.3560
8LPACE00980Nitro 5AMD Ryzen 7 5800HGeForce RTX 306016512GB$ 99956%21,13042.0559
14LPACE00968Nitro 5Intel i5-12450HGeForce RTX 406016512GB$ 1,09961%17,45646.3551
462LPACE00912OBNitro 5Intel Core i5-11400HGTX 16508256GB$ 52629%15,82220.8544
310LPACE00967OBNitro 5Intel i9-12900HGeForce RTX 4060161TB$ 1,16963%28,52446.3535
542LPACE00877Nitro 5Intel i7-11800HNVIDIA GeForce RTX306016512GB$ 1,06856%20,75342.0523
134LPHEW02079Victus 16AMD Ryzen 7 7840HSGeForce RTX 4060161TB$ 1,19963%28,88746.3522
588LPACE00816NitroIntel i5-11400HNVIDIA GeForce RTX 30508512GB$ 71637%15,82227.5516
414LPGIG00124OBAERO 16 XE5Intel Core i7-12700HNVIDIA GeForce RTX 3070 Ti322 TB$ 1,35069%26,42452.2515
322LPMSI00496OBGF63 11UC-692Intel i5-11400HNVIDIA RTX30508512GB$ 71937%15,82227.5514
113LPMSI00559Thin GF63Intel i7-12650HGeForce RTX 406016512GB$ 1,19962%23,28146.3514
175LPHEW02058Victus 15-fa1000caIntel i5-13500HGeForce RTX 405016512GB$ 1,09956%23,28941.9511
50LPMSI00560Thin GF63Intel i5-12450HGeForce RTX 406016512GB$ 1,19961%17,45646.3505
264LPHEW02087OBVictus 15-fb0000caAMD Ryzen 5 5600HGeForce RTX 3050 Ti16512GB$ 76438%17,09328.2498
362LPHEW02035OBOmen 16-wd0010caIntel i7-13620HGeForce RTX 4060161TB$ 1,25962%26,48946.3494
319LPMSI00564OBBravo 15AMD Ryzen 7 7735HSGeForce RTX 4060321TB$ 1,25962%24,26446.3491
406LPMSI00539OBKatana 15Intel i7-12650HGeForce RTX 4060161TB$ 1,25962%23,28146.3489
341LPACE00956OBNitro 5Intel i7-12650HGeForce RTX 406016512GB$ 1,25962%23,28146.3489
487LPACE00896OBA715AMD Ryzen 7 5700URTX305016512GB$ 76437%15,85427.5484
354LPASU00686OBTUF Gaming NotebookAMD Ryzen 7 7735HSAMD Radeon RX 7600S161TB$ 1,34965%24,26448.9482
1LPACE00967Nitro 5Intel i9-12900HGeForce RTX 4060161TB$ 1,29963%28,52446.3481
545LPLEN02719OBT470Intel Core i5-6300UIntel HD 6208256 GB$ 26312%3,2409.6475
584LPMSI00293OBGF75 10UEK-003CAIntel Core i7-10750HRTX306016512GB$ 1,14654%12,01242.0473
206LPLEN03469OBLegion Pro 5iIntel i7-13700HXGeForce RTX 406016512GB$ 1,34964%34,11046.3471
243LPHEW02095OBVictus 15-fb1010caAMD Ryzen 5 7535HSGeForce RTX 20508512GB$ 62930%18,44521.2471
339LPLEN03434OBNoneAMD Ryzen 7 7745HXGeForce RTX 406016512GB$ 1,34963%32,90946.3469
411LPACE00953Nitro Gaming Notebook AMD Ryzen R5-7535HSGeForce RTX 30508512GB$ 79937%18,44527.5468
299LPMSI00572OBThin GF63Intel i5-12450HGeForce RTX 20508512GB$ 62929%17,45621.2468
298LPASU00715OBTUF F15Intel i9-13900HGeForce RTX 4060161TB$ 1,34963%29,68746.3465
565LPASU00556G17AMD Ryzen 7 4800HNVIDIA GeForce RTX 3060161TB$ 1,19755%18,65342.0463
132LPMSI00496GF63Intel i5-11400HRTX30508512GB$ 79937%15,82227.5462
65LPASU00787FX506HCB-DB59-CAIntel i5-11400HGeForce RTX 30508512GB$ 79937%15,82227.5462
332LPLEN03438OBLegion Pro 5AMD Ryzen 7 7745HXGeForce RTX 407016512GB$ 1,52970%32,90951.7458
383LPASU00688OBTUF Gaming F15Intel Core i9-13900HGeForce RTX 405016512GB$ 1,25957%29,68741.9455
465LPASU00627OBTUF507RR-DS71-CAAMD Ryzen 7 6800HGeForce RTX 307016512GB$ 1,41264%23,65448.0452
18LPHEW02087Victus 15-fb0000caAMD Ryzen 5 5600HGeForce RTX 3050 Ti16512GB$ 84938%17,09328.2448
145LPHEW02035Omen 16-wd0010caIntel i7-13620HGeForce RTX 4060161TB$ 1,39962%26,48946.3444
19LPMSI00564Bravo 15AMD Ryzen 7 7735HSGeForce RTX 4060321TB$ 1,39962%24,26446.3442
11LPMSI00539Katana 15Intel i7-12650HGeForce RTX 4060161TB$ 1,39962%23,28146.3440
136LPACE00956Nitro 5Intel i7-12650HGeForce RTX 406016512GB$ 1,39962%23,28146.3440
507LPACE00896A715AMD Ryzen 7 5700URTX305016512GB$ 84937%15,85427.5435
240LPGIG00152OBAORUS 15Intel Core i7-13700HGeForce RTX 4060161TB$ 1,43962%27,89046.3434
173LPASU00686TUF Gaming NotebookAMD Ryzen 7 7735HSAMD Radeon RX 7600S161TB$ 1,49965%24,26448.9434
359LPLEN03433OBLegion Pro 5AMD Ryzen 7 7745HXGeForce RTX 4070161TB$ 1,61970%32,90951.7432
220LPASU00808OBTUF Gaming F15Intel i7-11800HGeForce RTX 3050 Ti161TB$ 89939%20,75328.2430
504LPASU00625OBG15AMD Ryzen 9 6900HXGeForce RTX 3070 Ti161TB$ 1,62069%24,88752.2427
358LPMSI00541OBThin GF63Intel i7-12650HGeForce RTX 305016512GB$ 89938%23,28127.5426
225LPMSI00593OBKatana 17Intel i7-13620HGeForce RTX 4070161TB$ 1,61969%26,48951.7425
2LPLEN03469Legion Pro 5iIntel i7-13700HXGeForce RTX 406016512GB$ 1,49964%34,11046.3424
114LPHEW02095Victus 15-fb1010caAMD Ryzen 5 7535HSGeForce RTX 20508512GB$ 69930%18,44521.2424
372LPLEN03434Legion Pro 5AMD Ryzen 7 7745HXGeForce RTX 406016512GB$ 1,49963%32,90946.3422
6LPMSI00572Thin GF63Intel i5-12450HGeForce RTX 20508512GB$ 69929%17,45621.2421
491LPLEN03086OBLegion 5Intel i7-12700HGeForce RTX 307016512GB$ 1,53064%26,42448.0420
0LPASU00715TUF F15Intel i9-13900HGeForce RTX 4060161TB$ 1,49963%29,68746.3419
400LPMSI00540OBThin GF63Intel i7-12650HGeForce RTX 405016512GB$ 1,34956%23,28141.9416
211LPLEN03565OBNoneRyzen 7 7745HXGeForce RTX 4060161TB$ 1,52963%32,90946.3414
335LPGIG00157OBAERO 14 OLEDIntel i5-12500HRTX 4050161TB$ 1,34956%21,52141.9414
16LPLEN03438Legion Pro 5AMD Ryzen 7 7745HXGeForce RTX 407016512GB$ 1,69970%32,90951.7412
356LPACE00969Nitro 5Intel i5-11400HGeForce GTX 16508512GB$ 69929%15,82220.8410
40LPASU00688TUF Gaming F15Intel Core i9-13900HGeForce RTX 405016512GB$ 1,39957%29,68741.9410
425LPGIG00153G5 MFIntel i5-12450HGeForce RTX 40508512GB$ 1,34955%17,45641.9408
193LPASU00809OBROG Strix G16Intel i9-13980HXGeForce RTX 4060161TB$ 1,61966%47,99446.3408
439LPACE00940NitroIntel i7-12700HGeForce RTX 306016512GB$ 1,39957%26,42442.0406
273LPASU00785OBFX706HF-DB51-CAIntel i5-11400HGeForce RTX 20508512GB$ 71929%15,82221.2405
492LPLEN03001OB82RG006WCC (Open Box)AMD Ryzen 7 6800HGeForce RTX 3060161TB$ 1,39856%23,65442.0403
410LPACE00955NH.QLZAA.005Intel i5-12500HGeForce RTX 40508512GB$ 1,40056%21,52141.9399
453LPGIG00141OBAORUS 17Intel i7-12700HGeForce RTX 3080 Ti321TB$ 1,79971%26,42453.7396
365LPASU00716OBFX507ZC4-DS71-CAIntel i7-12700HNVIDIA RTX 305016512GB$ 98939%26,42427.5393
336LPLEN03435OBLegion Pro 5Intel i7-13700HXGeForce RTX 4060161TB$ 1,61964%34,11046.3392
251LPMSI00565OBBravo 15AMD Ryzen 7 7735HSGeForce RTX 4050161TB$ 1,43956%24,26441.9391
146LPGIG00152AORUS 15Intel Core i7-13700HGeForce RTX 4060161TB$ 1,59962%27,89046.3390
30LPLEN03433Legion Pro 5AMD Ryzen 7 7745HXGeForce RTX 4070161TB$ 1,79970%32,90951.7389
475LPLEN03049OBLegion 5AMD Ryzen 7 6800HGeForce RTX 3070 Ti16512GB$ 1,78069%23,65452.2387
66LPASU00808TUF Gaming F15Intel i7-11800HGeForce RTX 3050 Ti161TB$ 99939%20,75328.2387
248LPMSI00580OBPulse 17Intel i9-13900HGeForce RTX 4070161TB$ 1,79969%29,68751.7386
320LPMSI00553OBVector GP68HXIntel i9-12900HXGeForce RTX 4080321TB$ 2,24987%34,93764.9386
334LPGIG00148OBAORUS Gaming NotebookIntel i7-13700HGeForce RTX 4070161TB$ 1,79969%27,89051.7384
172LPMSI00541Thin GF63Intel i7-12650HGeForce RTX 305016512GB$ 99938%23,28127.5383
394LPGIG00159AORUS Gaming NotebookIntel i5-12500HGeForce RTX 406016512GB$ 1,59961%21,52146.3383
29LPMSI00593Katana 17Intel i7-13620HGeForce RTX 4070161TB$ 1,79969%26,48951.7383
424LPGIG00146OB17HIntel i7-13700HRTX 4080161TB$ 2,24985%27,89064.9380
417LPMSI00538OBKatana 17 B12VGK-217CAIntel i7-12650HGeForce RTX 4070161TB$ 1,79968%23,28151.7380
370LPMSI00567Thin GF63Intel Core i5-12450HGeForce RTX 406016512GB$ 1,59961%17,45646.3379
582LPHEW01653OB15-ef1013dxAMD Ryzen 7 4700UAMD Radeon 8512GB$ 44517%13,44611.6377
402LPLEN03269OBIdeaPad 3AMD Ryzen 7 5825UIntegrated Radeon 8256GB$ 52220%18,45813.2377
289LPASU00760OBVivobook 16XIntel i9-13900HGeforce RTX 405016512GB$ 1,52957%29,68741.9375
285LPASU00720OBG17AMD Ryzen 9 7945HXNVIDIA RTX 4060161TB$ 1,79967%55,50346.3375
43LPMSI00540Thin GF63Intel i7-12650HGeForce RTX 405016512GB$ 1,49956%23,28141.9374
45LPLEN03565Legion Pro 5 16ARX8Ryzen 7 7745HXGeForce RTX 4060161TB$ 1,69963%32,90946.3373
314LPGIG00161NoneIntel i5-12500HGeForce RTX 405016512GB$ 1,49956%21,52141.9372
178LPGIG00157AERO 14Intel i5-12500HRTX 4050161TB$ 1,49956%21,52141.9372
395LPGIG00158AORUS Gaming NotebookIntel i5-12500HGeForce RTX 40508512GB$ 1,49956%21,52141.9372
124LPASU00809G614JV-DB91-CAIntel i9-13980HXGeForce RTX 4060161TB$ 1,79966%47,99446.3367
393LPGIG00149OBASF-B3US754SHIntel i9-13900HXGeForce RTX 4070161TB$ 1,98072%44,97751.7365
123LPASU00785TUF Gaming NotebookIntel i5-11400HGeForce RTX 20508512GB$ 79929%15,82221.2365
69LPGIG00151BSF-73US754SHIntel i7-13700HGeForce RTX 4070161TB$ 1,89969%27,89051.7364
486LPLEN03097OBIdeaPad 3AMD Ryzen 5 5625UAMD Radeon 12512GB$ 47517%15,07811.6360
450LPLEN03269IdeaPad 3AMD Ryzen 7 5825UIntegrated Radeon 8256GB$ 55020%18,45813.2358
144LPGIG00141YE5-74US544SHIntel i7-12700HGeForce RTX 3080 Ti321TB$ 1,99971%26,42453.7357
454LPLEN03053OBIdeaPad 5AMD Ryzen 7 5825UIntegrated Radeon8512GB$ 55320%18,45813.2356
300LPLEN03436OBLegion Pro 5Intel i7-13700HXGeForce RTX 4070161TB$ 1,97970%34,11051.7355
34LPASU00716TUF F15Intel i7-12700HRTX 305016512GB$ 1,09939%26,42427.5354
41LPLEN03435Legion Pro 5Intel i7-13700HXGeForce RTX 4060161TB$ 1,79964%34,11046.3353
48LPMSI00565Bravo 15AMD Ryzen 7 7735HSGeForce RTX 4050161TB$ 1,59956%24,26441.9352
89LPACE00960PH16-71-72YGIntel i7-13700HXGeForce RTX 4070161TB$ 1,99970%34,11051.7351
538LPHEW01773OB15-eg1010ca Intel Core i5-1155G7Intel Iris Xe 8512GB$ 42715%10,27810.6351
217LPGIG00156OBAERO 16 OLEDIntel i7-13700HGeForce RTX 4070161TB$ 1,97969%27,89051.7349
68LPMSI00580Pulse 17Intel i9-13900HGeForce RTX 4070161TB$ 1,99969%29,68751.7347
26LPMSI00553Vector GP68HXIntel i9-12900HXGeForce RTX 4080321TB$ 2,49987%34,93764.9347
205LPLEN03430OBIdeaPad Slim 3AMD Ryzen 7 7730UNone8512GB$ 57020%18,82413.2347
168LPGIG00148NoneIntel i7-13700HGeForce RTX 4070161TB$ 1,99969%27,89051.7346
443LPMSI00537Pulse 17Intel i7-13700HGeForce RTX 4070161TB$ 1,99969%27,89051.7346
52LPASU00719G713PU-DS91-CAAMD Ryzen 9 7945HXRTX 4050161TB$ 1,79962%55,50341.9344
524LPASU00583OBTUF Gaming NotebookRyzen 5 4600HGeForce GTX 16508512GB$ 82828%14,52520.8343
138LPACE00966Nitro 17AMD Ryzen 7 7735HSGeForce RTX 4070321TB$ 1,99968%24,26451.7342
70LPGIG00146NoneIntel i7-13700HRTX 4080161TB$ 2,49985%27,89064.9342
442LPMSI00538Katana 17 B12VGK-217CAIntel i7-12650HGeForce RTX 4070161TB$ 1,99968%23,28151.7342
496LPLEN03053IdeaPad 5AMD Ryzen 7 5825UIntegrated Radeon8512GB$ 58220%18,45813.2338
317LPMSI00536OBKatana GF66Intel i7-12650HGeForce RTX 3050 Ti16512GB$ 1,15939%23,28128.2338
56LPASU00760Vivobook 16XIntel i9-13900HGeForce RTX 405016512GB$ 1,69957%29,68741.9337
28LPASU00720G713PV-DS91-CAAMD Ryzen 9 7945HXNVIDIA RTX 4060161TB$ 1,99967%55,50346.3337
213LPLEN03503OBLegion Slim 7iIntel i9-13900HGeForce RTX 4070321TB$ 2,06969%29,68751.7336
466LPCNO00053OB15Z-EF2000AMD Ryzen 5 5500UAMD Radeon Vega 78256GB$ 50117%13,14411.6334
355LPGIG00154OBAERO 14Intel Core i7-13700HGeForce RTX 4050161TB$ 1,70957%27,89041.9333
485LPASU00609OBTUF Gaming NotebookIntel Core i5-10300HGeForce GTX 165081TB$ 82427%8,47420.8331
562LPHEW0173316-c0010caAMD Ryzen 7 5800HNVIDIA GeForce RTX 3050 Ti161TB$ 1,17339%21,13028.2331
376LPACE00963AN515-58-7578Intel i7-12650HGeForce RTX 4050161TB$ 1,70056%23,28141.9330
539LPASU00573OBVivobook 15AMD Ryzen 5 5500UAMD Radeon 8512GB$ 50817%13,14411.6330
404LPMSI00481OBRaider GE76Intel i9-12900HKRTX3080TI321TB$ 2,17372%28,08553.7330
133LPLEN03430IdeaPad Slim 3AMD Ryzen 7 7730UNone8512GB$ 60020%18,82413.2329
503LPGIG00134A7 K1AMD Ryzen 7 5800HGeForce RTX 306016512GB$ 1,69956%21,13042.0329
179LPGIG00149NoneIntel i9-13900HXGeForce RTX 4070161TB$ 2,20072%44,97751.7328
544LPCNO00033OBF415EA-UB51Intel Core i5-1135G7Intel Iris Xe 8256GB$ 45615%9,89110.6327
522LPMSI00445OBModern 15Intel Core i5-1155G7Intel Iris Xe8256GB$ 46015%10,27810.6326
405LPCNO00060OBZenBookAMD Ryzen 7 5700UGeForce MX4508256GB$ 57018%15,85412.6324
435LPMSI00543Katana GF76Intel i7-11800HGeForce RTX 3050 Ti16512GB$ 1,19939%20,75328.2323
323LPACE00946OBNoneIntel i5-1135G7Intel Iris8512GB$ 46315%9,89110.6323
470LPASU00610OBTUF517ZC-DS51-CAIntel i5-12450HGeForce RTX 305016512GB$ 1,15937%17,45627.5321
353LPLEN03437OBLegion Pro 5Intel i9-13900HXGeForce RTX 407016512GB$ 2,24972%44,97751.7321
135LPLEN03436Legion Pro 5Intel i7-13700HXGeForce RTX 4070161TB$ 2,19970%34,11051.7319
286LPASU00770OBGA402XZ-CS94AMD Ryzen 9 7940HSGeForce RTX 4080161TB$ 2,69986%30,59464.9319
482LPCNO0005315Z-EF2000AMD Ryzen 5 5500UAMD Radeon Vega 78256GB$ 52817%13,14411.6317
458LPMSI00524GP66 LeopardIntel Core i7-11800HNVIDIA RTX307016512GB$ 1,99963%20,75348.0316
510LPMSI00497Pulse GL66Intel i7-11800HRTX307016512GB$ 2,00063%20,75348.0316
385LPACE00888OBTravelMate P2Intel Core i5-1135G7Intel Iris Xe 8256GB$ 47415%9,89110.6315
182LPGIG00156AERO 16 OLEDIntel i7-13700HGeForce RTX 4070161TB$ 2,19969%27,89051.7314
541LPHUA00040OBMateBook D15Intel i5-1135G7Intel Iris Xe 8512GB$ 47515%9,89110.6314
477LPCNO00048OBVivoBook RIntel Core i5-1135G7Intel Iris Xe 8256GB$ 47515%9,89110.6314
557LPASU00573Vivobook 15AMD Ryzen 5 5500UAMD Radeon 8512GB$ 53517%13,14411.6313
508LPASU00621OBGA503RS-XS92-CAAMD Ryzen 9 6900HSGeForce RTX 3080321TB$ 2,01663%23,90147.4313
412LPACE00952Nitro 5Intel i5-12450HGeForce RTX 30508512GB$ 1,20037%17,45627.5310
303LPLEN03442OBIdeaPad Flex 5AMD Ryzen 3 5300UNone4128GB$ 36011%9,7167.6310
149LPMSI00445Modern 15 A11MU-863CAIntel Core i5-1155G7Intel Iris Xe8256GB$ 48415%10,27810.6310
420LPASU00685OBVivoBookIntel Core i3-1115G4Intel UHD 4128GB$ 2849%6,1326.2309
512LPHEW01811OBPavilion 15-eh2010caAMD Ryzen 5 5625UAMD Radeon 8512GB$ 55417%15,07811.6309
389LPASU00724OBGU604VI-DS92-CAIntel i9-13900HGeForce RTX 4070321TB$ 2,24969%29,68751.7309
432LPCNO00060ZenBookAMD Ryzen 7 5700UGeForce MX4508256GB$ 60018%15,85412.6308
461LPASU00666OBVivobook 16AMD Ryzen 5 5600HAMD Radeon 8512GB$ 56917%17,09311.6307
415LPACE00946NoneIntel i5-1135G7Intel Iris8512GB$ 48715%9,89110.6306
408LPACE00958PHN16-71-788NIntel i7-13700HXGeForce RTX 4060161024GB$ 2,10064%34,11046.3303
10LPLEN0350382Y3007HCCIntel i9-13900HNVIDIA GeForce RTX 4070321TB$ 2,29969%29,68751.7302
463LPLEN03000OBIdeaPad Flex 5AMD Ryzen 5 5500UAMD Radeon 8512GB$ 55517%13,14411.6302
287LPHEW02072OBProBook 445 G9AMD Ryzen 5 5625UNone8256GB$ 56917%15,07811.6300
152LPGIG00154AERO 14Intel Core i7-13700HGeForce RTX 4050161TB$ 1,89957%27,89041.9300
409LPACE00957AN16-51-74BVIntel i7-13700HGeForce RTX 4050161024GB$ 1,90057%27,89041.9300
476LPHEW01913OB15-DY2067MSIntel Core i5-1135G7Intel Iris X 12256GB$ 49915%9,89110.6299
520LPACE00888TravelMate P2Intel Core i5-1135G7None8256 GB$ 49915%9,89110.6299
571LPHUA00040MateBook D15Intel i5-1135G7Intel Iris Xe 8512GB$ 50015%9,89110.6299
302LPMSI00562OBModern 15AMD Ryzen 7 7730UAMD Radeon 16512GB$ 66420%18,82413.2297
375LPACE00965NitroAMD Ryzen 7 7735HSGeForce RTX 4050161TB$ 1,89956%24,26441.9297
343LPMSI00579Stealth 14StudioIntel i7-13620HGeForce RTX 4060161TB$ 2,09962%26,48946.3296
166LPMSI00561Bravo 15AMD Ryzen 7 7735HSGeForce RTX 305016512GB$ 1,29938%24,26427.5296
161LPACE00961Predator HeliosIntel i9-13900HXGeForce RTX 4080321 TB$ 2,99989%44,97764.9295
67LPGIG00145NoneIntel Core i9-13900HXGeForce RTX 4080161TB$ 2,99989%44,97764.9295
363LPLEN03442IdeaPad Flex 5AMD Ryzen 3 5300UNone4128GB$ 37911%9,7167.6295
386LPLEN03352OBThinkBook 15 G3AMD Ryzen 5 5500UAMD Radeon 8256GB$ 56917%13,14411.6294
115LPASU00685VivoBook F415EA-AS31Intel Core i3-1115G4Intel UHD 4128GB$ 2999%6,1326.2294
426LPGIG00150AORUS 15XIntel i7-13700HXGeForce RTX 4070161TB$ 2,39970%34,11051.7293
13LPASU00666Vivobook 16AMD Ryzen 5 5600HAMD Radeon 8512GB$ 59917%17,09311.6291
352LPASU00726OBGV302XU-DS91T-CAAMD Ryzen 9 7940HSRTX 4050161TB$ 1,97957%30,59441.9290
534LPASU00610TUF517ZC-DS51-CAIntel i5-12450HGeForce RTX 305016512GB$ 1,28837%17,45627.5289
371LPLEN03437NoneIntel i9-13900HXGeForce RTX 407016512GB$ 2,49972%44,97751.7289
195LPASU00721OBG733PZ-XS96AMD Ryzen 9 7945HXRTX 4080321TB$ 3,14990%55,50364.9287
506LPLEN03000IdeaPad Flex 5AMD Ryzen 5 5500UAMD Radeon 8512GB$ 58417%13,14411.6287
60LPASU00770GA402XZ-CS94AMD Ryzen 9 7940HSGeForce RTX 4080161TB$ 2,99986%30,59464.9287
311LPLEN03456OBIdeaPadIntel i5-1135G7None8512GB$ 52215%9,89110.6286
187LPASU00500OBExpertBook B1Intel i5 1135G7None8256GB$ 52215%9,89110.6286
324LPHEW02072ProBook 445 G9AMD Ryzen 5 5625UNone8256GB$ 59917%15,07811.6285
51LPMSI00555Stealth 15Intel i9-13900HGeForce RTX 4060321TB$ 2,19963%29,68746.3285
537LPHEW01738OBProbook 640Intel Core i5-6300UIntel HD 52016512GB$ 2437%3,2405.1284
494LPGIG00136AORUS 5 KE4Intel Core i7-12700HGeForce RTX 3060161TB$ 1,99957%26,42442.0284
478LPMSI00513Katana GF76Intel Core i7-12700HGeForce RTX3070TI161TB$ 2,44969%26,42452.2284
171LPMSI00562Modern 15 NotebookAMD Ryzen 7 7730UAMD Radeon 16512GB$ 69920%18,82413.2283
513LPASU00621GA503RS-XS92-CAAMD Ryzen 9 6900HSGeForce RTX 3080321TB$ 2,24063%23,90147.4282
469LPCNO00052OBVivoBook F515Intel Core i7-1165G7Intel Iris Xe 8512GB$ 60317%10,34712.1280
421LPLEN03352ThinkBook 15 G3AMD Ryzen 5 5500UAMD Radeon 8256GB$ 59917%13,14411.6280
318LPHEW02077OMENAMD Ryzen 9 7940HSGeForce RTX 4070322TB$ 2,49970%30,59451.7279
156LPASU00766Zenbook Pro 14Intel i9-13900HGeForce RTX 4070321TB$ 2,49969%29,68751.7278
148LPGIG00155AERO 16 OLEDIntel i9-13900HGeForce RTX 4070321TB$ 2,49969%29,68751.7278
55LPASU00724ROG ZephyrusIntel i9-13900HGeForce RTX 4070321TB$ 2,49969%29,68751.7278
188LPASU00717OBG614JJ-DS71-CAIntel i7-13650HXRTX 3050161TB$ 1,43940%32,15227.5277
407LPACE00959PH16-71-71AVIntel i7-13700HXGeForce RTX 4060161024GB$ 2,30064%34,11046.3276
567LPMSI00415Stealth 15MIntel Core i7-1260PRTX3060161TB$ 1,99955%17,23142.0276
480LPGIG00138AERO 16Intel Core i9-12900HGeForce RTX 3080 Ti322TB$ 2,59972%28,52453.7276
201LPHEW01929OBProBook 440 G9Intel Core i5-1235UNone8256GB$ 56916%13,54610.6274
128LPLEN03456IdeaPadIntel i5-1135G7None8512GB$ 54915%9,89110.6272
61LPASU00500ExpertBook B1Intel i5 1135G7None8256GB$ 54915%9,89110.6272
366LPHEW02017OBPavilionIntel i5-1240PIntel Iris Xe8512GB$ 59916%17,32010.6271
419LPGIG00144OBAZF-B5US665SPIntel Core i9-13900HXRTX 4090322TB$ 3,64598%44,97772.6269
219LPGIG00137OBAERO 16Intel Core i9-12900HNVIDIA RTX 3080 Ti642TB$ 2,69972%28,52453.7266
349LPMSI00563OBModern 15Intel i5-1155G7Intel Iris Xe16512GB$ 56915%10,27810.6263
249LPMSI00575OBModern 15Intel i7-1255UIntel Iris Xe16512GB$ 66417%13,77212.1263
473LPASU00658OBZenBook 14AMD Ryzen 5 5600HAMD Radeon Vega 78512GB$ 66417%17,09311.6263
255LPCNO00061OBF1500EA-WB51Intel i5-1135G7None8256GB$ 56815%9,89110.6263
229LPASU00581OBExpertBook B1Intel i5-1135G7None8256GB$ 56915%9,89110.6262
560LPHUA00036OBMateBook D15Intel i5-1135G7Intel Iris Xe 8512GB$ 56915%9,89110.6262
267LPACE00981OBAspire 5AMD Ryzen 3 5300UNone8256GB$ 42711%9,7167.6262
237LPLEN03390OBThinkPad T14 G3Ryzen 5 Pro 6650UAMD Radeon 660M16256GB$ 75920%16,75213.6262
304LPASU00561OBExpertBook B1Intel Core i5-1135G7Intel Iris Xe G78256GB$ 57015%9,89110.6262
140LPASU00726GV302XU-DS91T-CAAMD Ryzen 9 7940HSRTX 4050161TB$ 2,19957%30,59441.9261
184LPASU00727GV601VU-DS91T-CAIntel Core i9-13900HRTX 4050161TB$ 2,19957%29,68741.9261
35LPHEW01929ProBook 440 G9Intel Core i5-1235UNone8256GB$ 59916%13,54610.6260
151LPASU00761Vivobook Pro 16X OLEDIntel i9-13980HXGeforce RTX 4070321TB$ 2,79973%47,99451.7260
59LPASU00721ROG StrixAMD Ryzen 9 7945HXRTX 4080321TB$ 3,49990%55,50364.9259
131LPHEW0201715-EG2002CAIntel i5-1240PIntel Iris Xe8512GB$ 63116%17,32010.6258
464LPLEN03130OBNoneAMD Ryzen 5 5625UAMD Radeon 12512GB$ 66517%15,07811.6257
381LPMSI00549Vector GP78HXIntel i7-13700HXGeForce RTX 4080321TB$ 3,39987%34,11064.9255
162LPASU00718G634JZ-XS96Intel i9-13980HXRTX 4080321TB$ 3,49989%47,99464.9255
382LPASU00752OBVivobook 17Intel i7-1165G7Intel Iris Xe 8512GB$ 66417%10,34712.1254
93LPMSI00548Vector GP78 HXIntel i9-13950HXGeForce RTX 4080321TB$ 3,49989%44,93164.9253
222LPASU00786OBVivobook 16XIntel i5-1235UNone8512GB$ 61716%13,54610.6253
226LPHEW02100OB15-fd0030caIntel i5-1340PNone16512GB$ 66417%20,20410.6253
262LPLEN03493OBThinkbook T490Intel i5-8365UNone16256GB$ 3599%6,2456.4252
276LPLEN00715OBNoneIntel Core i5-8365UNone16256 GB$ 3599%6,2456.4252
228LPLEN03569OBV14Ryzen 5 5500UNone16512GB$ 66417%13,14411.6252
543LPLEN02718OBNoneIntel Core i5-8350UIntel UHD 62016256 GB$ 3599%6,2266.4252
204LPLEN03518OBThinkbook T480sIntel i5-8350UNone16256GB$ 3599%6,2266.4252
333LPLEN03312OBT490Intel i5-8265UIntel UHD 16256GB$ 3599%6,0236.4251
233LPLEN03567OBThinkPad X1 Gen 3Intel i7-8550UN/A16256GB$ 3599%5,9296.4251
141LPMSI00563Modern 15 NotebookIntel i5-1155G7Intel Iris Xe16512GB$ 59915%10,27810.6250
31LPMSI00575Modern 15Intel i7-1255UIntel Iris Xe16512GB$ 69917%13,77212.1250
119LPASU00658ZenBook 14AMD Ryzen 5 5600HAMD Radeon Vega 78512GB$ 69917%17,09311.6250
118LPCNO00061Vivobook F SeriesIntel i5-1135G7None8256GB$ 59815%9,89110.6250
88LPASU00717G614JJ-DS71-CAIntel i7-13650HXRTX 3050161TB$ 1,59940%32,15227.5249
575LPHUA00036MateBook D15Intel i5-1135G7Intel Iris Xe 8512GB$ 59915%9,89110.6249
54LPASU00581ExpertBook B1Intel i5-1135G7None8256GB$ 59915%9,89110.6249
12LPACE00981Aspire 5AMD Ryzen 3 5300UNone8256GB$ 44911%9,7167.6249
37LPLEN0339021CF000CUSRyzen 5 Pro 6650UAMD Radeon 660M16256GB$ 79920%16,75213.6249
607LPASU00561ExpertBook B1Intel Core i5-1135G7Intel Iris Xe G78256GB$ 60015%9,89110.6249
235LPGIG00164AORUS 17XIntel i9-13980HXGeForce RTX 4080161TB$ 3,59989%47,99464.9248
153LPASU00722G834JY-XS97Intel i9-13980HXRTX 4090322TB$ 3,99999%47,99472.6247
79LPLEN0290814 G4 ABAAMD Ryzen 7 5825UNone16512 GB$ 79920%18,45813.2246
96LPHEW02036NoneIntel i9-13900HXGeForce RTX 4090322TB$ 3,99998%44,97772.6245
350LPHEW02028OB15-fc0040caAMD Ryzen 7 7730UAMD Radeon 161TB$ 80720%18,82413.2245
268LPASU00784OBVivobook 15AMD Ryzen 7 7730UNone16512GB$ 80720%18,82413.2245
253LPACE00985OBSwift 3 EVOIntel i5-1240PNone16512GB$ 66416%17,32010.6245
107LPLEN02956ThinkBook 14 G4 ABAAMD Ryzen 5 5625UNone16256GB$ 69917%15,07811.6245
125LPLEN03130Consumer LaptopAMD Ryzen 5 5625UAMD Radeon 12512GB$ 70017%15,07811.6244
32LPASU00752Vivobook 17Intel i7-1165G7Intel Iris Xe 8512GB$ 69917%10,34712.1241
21LPASU00786Vivobook 16XIntel i5-1235UNone8512GB$ 64916%13,54610.6240
3LPHEW0210015-fd0030caIntel i5-1340PNone16512GB$ 69917%20,20410.6240
25LPLEN03569V14Ryzen 5 5500UNone16512GB$ 69917%13,14411.6240
163LPGIG00137AERO 16Intel Core i9-12900HRTX 3080 Ti642TB$ 2,99972%28,52453.7239
377LPMSI00554Vector GP77Intel i7-13700HGeForce RTX 4070161TB$ 2,89969%27,89051.7238
580LPMSI00381OBPrestige 14Intel Core i7-1185G7NVIDIA GeForce MX450161TB$ 73618%10,55312.6238
576LPASU00540VivoBook Pro 16XAMD Ryzen 7 5800HNVIDIA GeForce RTX 305016512GB$ 1,59938%21,13027.5237
283LPASU00783OBZenbook 14 OLEDAMD Ryzen 7 5825UNone16512GB$ 83520%18,45813.2236
223LPACE00984OBAspire 3Intel i5-1235UNone16512GB$ 66416%13,54610.6235
449LPLEN03212OBIdeaPad 5Intel Core i5-1235UIntel Iris Xe8512GB$ 66516%13,54610.6234
27LPASU00784Vivobook 15 OLEDAMD Ryzen 7 7730UNone16512GB$ 84920%18,82413.2233
22LPHEW0202815-fc0040caAMD Ryzen 7 7730UAMD Radeon 161TB$ 84920%18,82413.2233
117LPACE00985Swift 3 EVOIntel i5-1240PNone16512GB$ 69916%17,32010.6233
147LPLEN03431IdeaPad Slim 5Intel i5-1335UIntel Iris Xe8512GB$ 70016%16,92910.6231
556LPHEW01739ProBook 820 G3Intel Core i7 6500UIntel HD 52016256GB$ 2997%3,2755.1231
181LPASU00759H7604JI-XS91T-CAIntel i9-13980HXGeforce RTX 4070321TB$ 3,15473%47,99451.7231
384LPLEN03414OBIdeaPadIntel i3-1215UIntel HD 4128GB$ 3137%11,0324.2230
444LPASU00731ROG FlowIntel i9-13900HRTX 4050161TB$ 2,49957%29,68741.9229
428LPLEN03299OBThinkPad T14 Gen 2Intel Core i5-1135G7GeForce MX450 2GB8256GB$ 76017%9,89112.6229
250LPMSI00592Stealth 14StudioIntel i7-13620HGeForce RTX 305016512GB$ 1,69939%26,48927.5229
313LPLEN00182OBThinkPad T480sIntel Core i7-8550UNone16256 GB$ 3949%5,9296.4228
241LPLEN03403OBT480sIntel i7-8550UIntel UHD 62024256GB$ 3949%5,9296.4228
516LPASU00603OBVivobook 15Intel Core i7-1165G7Intel Iris Xe 12512GB$ 74217%10,34712.1227
94LPASU00736GU604VY-XS97Intel i9-13900HRTX 4090322TB$ 4,19995%29,68772.6227
150LPLEN00715ThinkPad T490Intel i5-8365UNone16256GB$ 3999%6,2456.4227
20LPLEN03493NoneIntel i5-8365UNone16256GB$ 3999%6,2456.4227
555LPLEN02718ThinkPad T480Intel Core i5-8350UIntel UHD 62016256 GB$ 3999%6,2266.4227
42LPLEN03518Thinkbook T480sIntel i5-8350UNone16256GB$ 3999%6,2266.4227
451LPLEN03268ThinkPad T580Intel Core i5-8350UNone16256GB$ 4009%6,2266.4226
73LPASU00729Zephyrus DuoAMD Ryzen 9 7945HXRTX 4080321TB$ 3,99990%55,50364.9226
433LPLEN03312T490Intel i5-8265UIntel UHD 16256GB$ 3999%6,0236.4226
33LPLEN03567ThinkPad X1 Gen 3Intel i7-8550UNone16256GB$ 3999%5,9296.4226
585LPHEW01543OBNotebookAMD Ryzen 7 5700UAMD Radeon 161TB$ 85519%15,85413.2225
257LPLEN02154OB20WM0085USIntel i5-1135G7None8256GB$ 66415%9,89110.6225
570LPHUA00035OBMatebook 14Intel Core i5-1135G7Intel Iris Xe 16512GB$ 66515%9,89110.6224
203LPLEN03578OBYoga L390Intel i5-8365UNone16256GB$ 4049%6,2456.4224
457LPLEN03202OBThinkPad X380 YogaIntel i5-8350UIntegrated16512GB$ 4049%6,2266.4224
38LPACE00984Aspire 3Intel i5-1235UNone16512GB$ 69916%13,54610.6223
84LPHEW0210114-ep0000caIntel i3-N305None8256GB$ 54912%9,9788.4222
272LPASU00764OBZenbook 15 OLEDAMD Ryzen 7 7735UAMD Radeon 161TB$ 1,23427%21,35018.8220
100LPLEN0361121KJ000EUSAMD Ryzen 7 7730U Octa-core (8 Core)None16512 GB$ 89920%18,82413.2220
271LPHEW01967OBProBook 440 G9Intel i5-1235UNone16256GB$ 71216%13,54610.6219
294LPHEW02024OBConsumer Notebook 17Intel i5-1335UIntel Iris Xe81TB$ 74016%16,92910.6219
76LPACE00994VeroIntel i7-1255UIntel Iris Xe 161TB$ 79917%13,77212.1219
392LPLEN03414IdeaPadIntel i3-1215UIntel HD 4128GB$ 3297%11,0324.2219
391LPACE00945OBAspireIntel i5-10210UNone8256GB$ 4159%6,2286.4218
441LPLEN03299ThinkPad T14 Gen 2Intel Core i5-1135G7GeForce MX450 2GB8256GB$ 80017%9,89112.6218
82LPMSI00535Stealth 17Intel i9-13900HGeForce RTX 4090642TB$ 4,39995%29,68772.6217
418LPHEW02012Chromebook C204MA-SS02-CBIntel Celeron-N4020Intel UHD 432GB eMMC$ 992%1,5561.5216
546LPASU00603Vivobook 15Intel Core i7-1165G7Intel Iris Xe 12512GB$ 78117%10,34712.1216
282LPLEN03432OBIdeaPad Flex 5AMD Ryzen 5 7530UNone16512GB$ 80717%16,50711.6215
380LPMSI00550Raider GE78HXIntel i9-13980HXGeForce RTX 4070322TB$ 3,39973%47,99451.7214
81LPASU00723GA402NJ-DS71-CAAMD Ryzen 7 7735HSRTX 305016512GB$ 1,79938%24,26427.5214
589LPHEW0154315-ef2030caAMD Ryzen 7 5700UAMD Radeon 161TB$ 90019%15,85413.2214
164LPLEN0215420WM0085USIntel i5-1135G7None8256GB$ 69915%9,89110.6213
521LPSAS00117Galaxy BookIntel i5-1135G7Intel Iris Xe 8256GB$ 69915%9,89110.6213
231LPHEW02099OB17-cn3020caIntel i5-1335UNone16512GB$ 75916%16,92910.6213
121LPHUA00035Matebook 14Intel Core i5-1135G7Intel Iris Xe 16512GB$ 70015%9,89110.6213
378LPMSI00552Raider GE78HXIntel i7-13700HXGeForce RTX 4070321TB$ 3,29970%34,11051.7213
348LPMSI00576CREATOR Z16Intel i7-13700HXGeForce RTX 4060321TB$ 2,99964%34,11046.3212
569LPLGE00019OBgramIntel i5-1155G7Intel Iris Xe 8512GB$ 71215%10,27810.6210
252LPGIG00163AORUS 17XIntel i9-13980HXGeForce RTX 4090322TB$ 4,69999%47,99472.6210
379LPMSI00551Stealth 17StudioIntel i7-13700HGeForce RTX 4070321TB$ 3,29969%27,89051.7210
180LPASU00767Zenbook Pro 14 Duo OLEDIntel i9-13900HGeForce RTX 4060321TB$ 2,99963%29,68746.3209
198LPLEN03707V15 G4Intel i3-1315UIntel UHD 16512GB$ 69915%13,0049.9209
143LPASU00764Zenbook 15 OLEDAMD Ryzen 7 7735UAMD Radeon 161TB$ 1,29927%21,35018.8209
15LPHEW01967ProBook 440 G9Intel i5-1235UNone16256GB$ 74916%13,54610.6208
167LPHEW02024Consumer NotebookIntel i5-1335UIntel Iris Xe81TB$ 77916%16,92910.6208
548LPHUA00037OBMateBook 14sIntel Core i7-11370HIntel Iris Xe 16512GB$ 82417%11,76012.1208
416LPACE00945Aspire A515-54-54B9Intel i5-10210UNone8256GB$ 4379%6,2286.4207
564LPASU00558Zenbook Pro 15AMD Ryzen 9 5900HXNVIDIA GeForce RTX 3050Ti16512GB$ 1,89939%22,67828.2206
139LPLEN00182ThinkPad T480sIntel Core i7-8550UNone16256GB$ 4389%5,9296.4206
142LPLEN03403T480sIntel i7-8550UIntel UHD 62024256GB$ 4389%5,9296.4206
387LPASU00768Zenbook Pro 16X OLEDIntel i9-13905HGeForce RTX 4080321TB$ 4,19986%31,60364.9205
80LPLEN03572Legion Pro 7Intel i9-13900HXGeForce RTX 4090322TB$ 4,79998%44,97772.6204
342LPMSI00581Modern 15AMD Ryzen 5-7530UNone16512GB$ 84917%16,50711.6204
120LPLEN03432NoneAMD Ryzen 5 7530UNone16512GB$ 84917%16,50711.6204
540LPHUA00039OBMateBook 14si7-11370HIntel Iris Xe 16512GB$ 83917%11,76012.1204
23LPHEW0209917-cn3020caIntel i5-1335UNone16512GB$ 79916%16,92910.6203
49LPLEN03578Yoga L390Intel i5-8365UNone16256GB$ 4499%6,2456.4202
191LPLEN03577OBThinkPad T480Intel i5-8365UNone16512GB$ 4499%6,2456.4202
236LPLEN03559OBNoneIntel i5-8365UIntel UHD 62016512GB$ 4499%6,2456.4202
154LPLEN03202X380 YogaIntel i5-8350UIntegrated GPU16512GB$ 4499%6,2266.4202
497LPASU00559OBZenbook NotebookIntel Core i5-1135G7Intel Iris Xe 8256GB$ 74215%9,89110.6201
246LPLEN03552OBX1 Yoga G4Intel i5-8265UNone16512GB$ 4499%6,0236.4201
315LPMSI00583NoneIntel i7-13700HXGeForce RTX 4050321TB$ 2,89958%34,11041.9200
445LPASU00728Zephyrus DuoAMD Ryzen 9 7945HXRTX 4090322TB$ 4,999100%55,50372.6200
75LPMSI00591Stealth 16 AMGIntel i9-13900HGeForce RTX 4070322TB$ 3,49969%29,68751.7198
446LPMSI00534Raider GE78 HXIntel i9-13980HXGeForce RTX 4080642TB$ 4,49989%47,99464.9198
447LPMSI00533Raider GE78 HXIntel i9-13980HXGeForce RTX 4090322TB$ 4,99999%47,99472.6197
489LPLGE00021OBgramIntel i5-1155G7Intel Iris Xe 8512GB$ 76015%10,27810.6197
212LPASU00560OBExpertBook B1Intel i5-1135G7None8256GB$ 75915%9,89110.6197
566LPHUA00038OBMatebook 14i5-1135G7Intel Iris Xe 16512GB$ 76015%9,89110.6196
99LPACE00999PTX17-71-99W5Intel i9-13900HXGeForce RTX 4090642TB$ 4,99998%44,97772.6196
238LPHUA00042OBMatebook D14Intel i7-1360PNone161TB$ 94918%19,30912.1195
572LPHUA00039MateBook 14sIntel i7-11370HIntel Iris Xe 16512GB$ 88317%11,76012.1194
296LPMSI00589Creator Z17HXStudioIntel i9-13950HXGeForce RTX 4060321TB$ 3,39965%44,93146.3193
467LPACE00880OBAspire A515-54Intel i7-10510UNone8512GB$ 4759%6,6486.4192
563LPASU00559Zenbook NotebookIntel Core i5-1135G7Intel Iris Xe 8256GB$ 78115%9,89110.6191
200LPRAZ00059Blade 14AMD Ryzen 9 7940HSGeForce RTX 4070161TB$ 3,64970%30,59451.7191
330LPSAS00150Galaxy Book3 EVOIntel i7-13700HGeForce RTX 405016512GB$ 2,99957%27,89041.9190
397LPLGE00034GramIntel i7-1360PGeForce RTX 3050161TB$ 2,00038%19,30927.5188
357LPMSI00568OBModernIntel i5-1235UIntel Iris Xe16512GB$ 83016%13,54610.6188
583LPLGE00015OBGram 2-in-1Intel i7-1165G7Intel Iris Xe 16512GB$ 90217%10,34712.1187
36LPASU00560ExpertBook B1Intel i5-1135G7None8256GB$ 79915%9,89110.6187
573LPHUA00038Matebook 14i5-1135G7Intel Iris Xe 16512GB$ 80015%9,89110.6187
199LPLEN03706V15 G4AMD Ryzen 5 5500UIntegrated graphics16512GB$ 89917%13,14411.6186
46LPHUA00042Matebook D14Intel i7-1360PNone161TB$ 99918%19,30912.1185
269LPHEW01822OBProBook 450 G9Intel i7-1255UNone16512GB$ 94917%13,77212.1184
338LPLEN03301OBIdeaPad Flex 5Intel i7-1255UNone16512GB$ 94917%13,77212.1184
509LPACE00851OBTravelMate P2Intel Core i5-1135G7Intel HD 8256GB$ 3807%9,8914.2184
234LPLEN03564OBThinkPad X1Intel i7-8650UNone16256GB$ 4949%6,2886.4184
535LPACE00880Aspire A515-54Intel i7-10510UNone8512GB$ 5009%6,6486.4183
239LPHEW01946OBNoneIntel i5-1235UNone16256GB$ 85416%13,54610.6182
209LPLEN03573OBThinkPad T490Intel i7-8550UIntel UHD 62016256GB$ 4949%5,9296.4182
83LPLEN03577ThinkPad T480Intel i5-8365UNone16512GB$ 4999%6,2456.4182
116LPLEN03559ThinkPad T590Intel i5-8365UIntel UHD 62016512GB$ 4999%6,2456.4182
122LPLEN03552X1 Yoga G4Intel i5-8265UNone16512GB$ 4999%6,0236.4181
403LPASU00735OBVivobook 16XIntel i5-12500HIris Xe 16512GB$ 94417%21,52110.6180
344LPMSI00578Modern 14Intel i5-1335UNone16512GB$ 89916%16,92910.6180
398LPASU00734OBZenbook 14XIntel i7-1260PGeForce MX55016512GB$ 1,51927%17,23119.2177
127LPHEW01822ProBook 450 G9Intel i7-1255UNone16512GB$ 99917%13,77212.1175
242LPLEN03568V14Intel i7-1255UNone16512GB$ 99917%13,77212.1175
438LPLEN03301IdeaPad Flex 5Intel i7-1255UNone16512GB$ 99917%13,77212.1175
346LPHEW02045OBConsumer Laptop 17.3"Intel i5-1135G7Intel Iris Xe16512GB$ 85415%9,89110.6175
329LPSAS00152Galaxy Book3 EVOIntel i7-13700HGeForce RTX 4050161TB$ 3,26957%27,89041.9174
102LPLEN0360021KK0009USAMD Ryzen 5 7530U Hexa-core (6 Core)None16512 GB$ 99917%16,50711.6174
399LPASU00707OBZenbook OLEDAMD Ryzen 7 7730UAMD Radeon161TB$ 1,13920%18,82413.2173
5LPHEW01946ProBook 450 G9Intel i5-1235UNone16256GB$ 89916%13,54610.6173
90LPLEN03055ThinkBook 15 G4Intel Core i5-1235UNone16256GB$ 89916%13,54610.6173
479LPRAZ00055Blade 15Intel Core i7-12800HGeForce RTX 3070 Ti161TB$ 3,99969%24,97152.2173
189LPLEN03685OBIdeaPad Slim 3 15AMN8AMD Ryzen 3 7320UNone8256GB$ 4277%9,0664.6172
291LPASU00782OBVivobook GoAMD Ryzen 3 7320UNone8128GB$ 4277%9,0664.6172
440LPASU00735Vivobook 16XIntel i5-12500HIris Xe 16512GB$ 99417%21,52110.6171
423LPLEN03338ThinkPad T14s Gen 2AMD Ryzen 5 PRO 5650U Hexa-core (6 Core) 2.30 GHzNonenan256 GB$ 99917%14,92211.6171
169LPASU00734Zenbook 14XIntel i7-1260PGeForce MX55016512GB$ 1,59927%17,23119.2168
474LPMSI00516Modern 14 Business NotebookIntel Core i5-1235UIntel Iris Xe8512GB$ 92916%13,54610.6168
592LPLEN0213120Y70037USAMD Ryzen 5 5500UNone8256GB$ 99917%13,14411.6168
368LPHEW02045Consumer LaptopIntel i5-1135G7Intel Iris Xe16512GB$ 89915%9,89110.6166
129LPLEN03564ThinkPad X1Intel i7-8650UNone16256GB$ 5499%6,2886.4165
97LPLEN03712Yoga L390Intel i5-8365UNone16256GB$ 5499%6,2456.4165
39LPASU00707ZenbookAMD Ryzen 7 7730UAMD Radeon161TB$ 1,19920%18,82413.2165
490LPLEN03099ThinkPad E15 Gen 4AMD Ryzen 7 5825U Octa-core (8 Core) 2 GHzAMD Radeon 16512GB$ 1,19920%18,45813.2164
44LPLEN03573ThinkPad T490Intel i7-8550UIntel UHD 62016256GB$ 5499%5,9296.4164
364LPMSI00498OBSUMMIT E14Intel i7-1280PIris Xe 161TB$ 1,14219%20,45012.1164
103LPLEN0350821JR001QUSAMD Ryzen 5 7530U (Hexa-core, 6 Core) None8256 GB$ 1,06217%16,50711.6163
53LPASU00782Vivobook GoAMD Ryzen 3 7320UNone8128GB$ 4497%9,0664.6163
24LPLEN03685IdeaPad Slim 3 15AMN8AMD Ryzen 3 7320UNone8256GB$ 4497%9,0664.6163
316LPHEW01834OBEliteBook 640 G9Intel i5-1245UNone16512GB$ 96116%13,48110.6162
552LPDYA00003C50-JIntel Core i5-1135G7Integrated GPU8256GB$ 92915%9,89110.6161
247LPASU00779OBZenbook 14X OLEDIntel i7-12700HIntel Iris Xe161TB$ 1,23420%26,42412.1160
448LPMSI00532TITAN GT77Intel i9-13980HXGeForce RTX 4080642TB$ 5,59989%47,99464.9159
74LPLEN03010ThinkBook 14 G4Intel i7-1255UNone16512GB$ 1,09917%13,77212.1159
523LPRAZ00054Razer Blade 14AMD Ryzen 9 6900HXGeForce RTX 3080Ti161TB$ 4,49971%24,88753.7158
279LPLEN03521NoneAMD Ryzen 5 7530UNone16256GB$ 1,09917%16,50711.6158
232LPLEN02397OBNoneIntel i5-1135G7Intel Iris Xe 8256GB$ 95015%9,89110.6157
202LPMSI00531OBTITAN GT77Intel i9-13980HXGeForce RTX 40901284TB$ 6,29999%47,99472.6157
218LPLEN03487OBThinkPad E16Intel i7-1355UNone16512GB$ 1,13918%15,29412.1156
603LPACE00491Aspire 5Intel i7-10510UIntel UHD 620 graphics8512GB$ 5869%6,6486.4156
483LPLGE00026OBGramIntel i7-1260PIntel Iris Xe 16512GB$ 1,16318%17,23112.1156
550LPDYA00005C50-JIntel Core i7-1165G7Integrated GPU8256GB$ 1,08917%10,34712.1155
361LPHEW02021OB14-em0030caAMD Ryzen 3 7320URadeon 8256GB$ 4747%9,0664.6155
587LPMSI00379Modern 14Intel Core i7-1195G7Intel Iris Xe8512GB$ 1,09917%11,03412.1155
270LPLEN03428OBIdeaPad Slim 3AMD Ryzen 3 7320UAMD Radeon 610M 8512GB$ 4757%9,0664.6154
515LPHEW01834EliteBook 640 G9Intel i5-1245UNone16512GB$ 1,01216%13,48110.6154
388LPMSI00544Titan Gaming NotebookIntel i9-13980HXGeForce RTX 4090642TB$ 6,44999%47,99472.6153
305LPMSI00587CreatorPro M16Intel i7-13700HNVIDIA RTX A1000321TB$ 2,39937%27,89025.5153
158LPASU00779Zenbook 14X OLEDIntel i7-12700HIntel Iris Xe161TB$ 1,29920%26,42412.1152
481LPCNO00054ThinkPad E15 Gen 2Intel Core i5-1135G7Intel Iris Xe 8256GB$ 99915%9,89110.6149
413LPACE00948A317-53-591MIntel i5-1135G7Integrated GPU8512GB$ 99915%9,89110.6149
293LPASU00780OBZenbookIntel i7-12700HNone161TB$ 1,32920%26,42412.1149
288LPHEW01833OBEliteBook 650 G9Intel i5-1245UNone16256GB$ 1,04916%13,48110.6148
290LPMSI00590Modern 14Intel i7-1355UNone161TB$ 1,19918%15,29412.1148
17LPLEN0348721JN0073USIntel i7-1355UNone16512GB$ 1,19918%15,29412.1148
275LPLEN0354421JR001RUSRyzen 5 7530UNone16256 GB$ 1,17417%16,50711.6148
126LPHEW02021Consumer Laptop 14AMD Ryzen 3 7320URadeon 8256GB$ 4997%9,0664.6147
160LPLEN03428IdeaPad Slim 3AMD Ryzen 3 7320UAMD Radeon 610M 8512GB$ 5007%9,0664.6147
369LPLGE00027OBgramIntel i5-1240PIntel Iris Xe 8512GB$ 1,10916%17,32010.6147
373LPLEN03427IdeaPad 1 15AMN7AMD Athlon Gold 7220UAMD Radeon 610M 4128GB$ 4507%4,7484.6146
101LPLEN03602NoneIntel Core i5-1335UNone16256GB$ 1,11916%16,92910.6145
284LPASU00765OBZenbook S 13 OLED EVOIntel i7-1355UNone161TB$ 1,23418%15,29412.1144
488LPASU00547OBVivobook 13Intel Pentium Silver N6000Intel UHD 4128GB$ 3325%3,0893.4144
553LPGIG00125AERO 16 YE4Intel Core i9-12900HNVIDIA GeForce RTX 3080 Ti322TB$ 4,99972%28,52453.7143
518LPLGE00025gramIntel i5-1240PNone8512GB$ 1,13616%17,32010.6143
472LPASU00665Zenbook ProIntel Core i9-12900HGeForce RTX 3060321TB$ 3,99957%28,52442.0143
551LPDYA00004C50-JIntel Core i5-1135G7Integrated GPU8512GB$ 1,04915%9,89110.6142
502LPASU00647P1512CEAIntel Core i5-1135G7Intel UHD 8512GB$ 1,04915%9,89110.6142
501LPASU00649P1512CEAIntel Core i5-1135G7Intel UHD 8512GB$ 1,04915%9,89110.6142
511LPASU00623NoneAMD Ryzen 9 6900HXNVIDIA GeForce RTX 3080 Ti641TB$ 4,99971%24,88753.7142
227LPLEN03429OBIdeaPad Slim 3AMD Ryzen 5 7520UAMD Radeon 610M8512GB$ 5227%9,4754.6142
459LPMSI00514OBSummit E13 Flip EvoIntel Core i7-1280PIntel Iris Xe161TB$ 1,31819%20,45012.1142
254LPLEN03042OBThinkBook 15 G4Intel Core i7-1255UNone16512GB$ 1,23417%13,77212.1142
157LPASU00780ZenbookIntel i7-12700HNone161TB$ 1,39920%26,42412.1141
108LPHEW01833EliteBook 650 G9Intel i5-1245UNone16256GB$ 1,10416%13,48110.6141
185LPMSI00531TITAN GT77Intel i9-13980HXGeForce RTX 40901284TB$ 6,99999%47,99472.6141
549LPDYA00006C50-JIntel Core i7-1165G7Integrated8512GB$ 1,19917%10,34712.1141
95LPLEN03710NoneIntel i5-10310UNone16512GB$ 6499%6,4366.4140
208LPHEW01997OBENVY X360Intel i7-1250UNone161TB$ 1,23417%12,42112.1140
98LPLEN03711X1 CarbonIntel i7-8665UNone16256GB$ 6499%6,2566.4140
517LPLGE00027gramIntel i5-1240PIntel Iris Xe 8512GB$ 1,16816%17,32010.6139
256LPHEW02083OBEliteBook 640 G9Intel i5-1245UNone16512GB$ 1,13616%13,48110.6137
130LPASU00765Zenbook S 13 OLED EVOIntel i7-1355UNone161TB$ 1,29918%15,29412.1137
574LPASU00547Vivobook 13 Slate NotebookIntel Pentium Silver N6000Intel UHD 4128GB$ 3505%3,0893.4136
197LPLEN03708V15 G4Intel i5-1335UNone161TB$ 1,19916%16,92910.6135
244LPLEN01849OBThinkPad X1 Nano EVOIntel Core i7-1160G7None16512GB$ 1,23417%9,17312.1135
165LPLEN03429IdeaPad Slim 3AMD Ryzen 5 7520UAMD Radeon 610M8512GB$ 5507%9,4754.6135
186LPLEN03042ThinkBook 15 G4Intel Core i7-1255UNone16512GB$ 1,29917%13,77212.1135
106LPLEN03221ThinkPad L13 YogaIntel Core i7-1255UNone16512GB$ 1,29917%13,77212.1135
390LPLGE00024OBGramIntel i7-1260PIntel Iris Xe 16512GB$ 1,35618%17,23112.1134
58LPHEW01997ENVY X360Intel i7-1250UNone161TB$ 1,29917%12,42112.1133
207LPMSI00597Prestige 13 EVOIntel i7-1360PNone16512GB$ 1,39918%19,30912.1132
278LPLEN03522ThinkBook 15 G4AMD Ryzen 5 5625UNone16256GB$ 1,29917%15,07811.6132
292LPHEW02023OBConsumer NotebookAMD Ryzen 5 7520UAMD Radeon 8512GB$ 5697%9,4754.6130
77LPHEW02083EliteBook 640 G9Intel i5-1245UNone16512GB$ 1,19616%13,48110.6130
91LPLEN0347614s Yoga G3Intel Core i7-1355UNone16512GB$ 1,38018%15,29412.1129
64LPASU00800Vivobook S 15 OLEDIntel i9-13900HNone161TB$ 1,59920%29,68712.1127
196LPLEN03709V15 G4Intel i7-1355UNone161TB$ 1,39918%15,29412.1127
92LPLEN03474ThinkPad E16Intel i5-1335UNone16256GB$ 1,29916%16,92910.6125
345LPLEN03462ThinkBook 14s YogaIntel Core i5-1335UNone16256GB$ 1,29916%16,92910.6125
558LPASU00565ExpertBook B5Intel Core i5-1135G7Intel Iris Xe G716256GB$ 1,19915%9,89110.6124
57LPHEW02023Consumer Notebook 14AMD Ryzen 5 7520UAMD Radeon 8512GB$ 5997%9,4754.6124
78LPLGE00032Gram EVOIntel i7-1360PIntel Iris Xe16512GB$ 1,49918%19,30912.1123
265LPLGE00033OBGram EVOIntel i7-1360PIntel Iris Xe16512GB$ 1,51918%19,30912.1122
351LPLGE00030OBGramIntel i7-1360PIntel Iris Xe16512GB$ 1,51918%19,30912.1122
312LPLGE00031OBGram EVOIntel i7-1360PIntel Iris Xe16512GB$ 1,52018%19,30912.1122
456LPMSI00527CreatorProIntel i7-12700HNVIDIA RTX A5500321TB$ 5,29964%26,42447.7121
559LPASU00564ExpertBook B1Intel Core i7-1165G7Intel Iris Xe G712512GB$ 1,39917%10,34712.1121
499LPASU00651P1512CEAIntel Core i7-1165G7Intel Iris Xe 161TB$ 1,39917%10,34712.1121
561LPASU00562ExpertBook B1Intel Core i7-1165G7Intel Iris Xe G712512GB$ 1,39917%10,34712.1121
500LPASU00650NoneIntel Core i7-1165G7Intel Iris Xe 161TB$ 1,39917%10,34712.1121
308LPMSI00585CreatorPro Z17HX StudioIntel i9-13950HXNVIDIA RTX A3000321TB$ 3,99948%44,93132.1120
593LPLEN02112ThinkBook 14s Yoga ITLIntel i5-1135G7Intel Iris Xe 8256GB$ 1,24915%9,89110.6119
422LPLEN03339ThinkPad T14s Gen 2AMD Ryzen 5 PRO 5650UNone8256GB$ 1,43017%14,92211.6119
183LPLEN03512ThinkBook 14s Yoga G3Intel Core i7-1355UNone16512GB$ 1,49918%15,29412.1118
595LPLEN02056IdeaPad Slim 7iIntel i5-1135G7Intel Iris Xe 8512GB$ 1,26015%9,89110.6118
307LPMSI00586CreatorPro Z16HXStudioIntel i9-13950HXNVIDIA RTX A2000321TB$ 3,79945%44,93129.7118
194LPLGE00028OBGram EVOIntel i7-1260PIntel Iris Xe 16512GB$ 1,53918%17,23112.1118
85LPLEN03497ThinkPad X1 CarbonIntel i5-1335UNone16256GB$ 1,39916%16,92910.6116
331LPLEN03471ThinkPad E14Intel i5-1335UNone16512GB$ 1,39916%16,92910.6116
105LPLGE00030GramIntel i7-1360PIntel Iris Xe16512GB$ 1,59918%19,30912.1116
87LPLGE00033Gram EVOIntel i7-1360PIntel Iris Xe16512GB$ 1,59918%19,30912.1116
104LPLGE00031Gram EVOIntel i7-1360PIntel Iris Xe16512GB$ 1,60018%19,30912.1115
281LPMSI00577OBPrestige 13 EvoIntel i7-1360PNone321TB$ 1,60518%19,30912.1115
109LPLGE00028Gram EVOIntel i7-1260PIntel Iris Xe 16512GB$ 1,62018%17,23112.1112
245LPLEN03502OBIdeaPad Slim 3AMD Ryzen 5 7520UNone16512GB$ 6647%9,4754.6112
455LPMSI00528CreatorProIntel i7-12700HRTX A3000321TB$ 3,99945%26,42432.1111
297LPMSI00588Prestige 16EVOIntel i7-13700HNone321TB$ 1,79920%27,89012.1111
274LPLEN03546E14Intel i7-1355UNone16512GB$ 1,59918%15,29412.1111
155LPMSI00577Prestige 13 EvoIntel i7-1360PNone321TB$ 1,68918%19,30912.1109
598LPLEN01757ThinkBook 15 G2 ITLIntel Core i7-1165G7 Quad-core (4 Core) 2.80 GHzIntel UHD 16512 GB$ 1,54917%10,34712.1109
437LPLEN03307ThinkPad T14 Gen 2Intel Core i5-1135G7MX450 2GB16256GB$ 1,59917%9,89112.6109
321LPSAS00158Galaxy Book3 360 EVOIntel i5-1335UNone8256GB$ 1,49916%16,92910.6108
7LPLEN03502IdeaPad Slim 3AMD Ryzen 5 7520UNone16512GB$ 6997%9,4754.6106
170LPASU00592Vivobook 15AMD Ryzen 3 3250UAMD Radeon 8128GB$ 4995%3,8553.7106
259LPDYA00033TecraIntel i7-1260PNone16256GB$ 1,74918%17,23112.1104
260LPDYA00029TecraIntel i7-1260PNone16256GB$ 1,75018%17,23112.1103
431LPACE00942A315-56-54YTIntel Core i5-1035G1Integrated Graphic8256GB$ 7498%7,4605.1102
261LPDYA00028TecraIntel i5-1240PNone16256GB$ 1,59916%17,32010.6102
280LPHEW02090ProBook 440Intel i7-1355UNone16512GB$ 1,79918%15,29412.199
529LPSAS00112Galaxy Book ProIntel i7-1165G7Iris Xe 8512GB$ 1,73017%10,34712.197
525LPSAS00116Galaxy Book ProIntel i7-1165G7Intel Iris Xe 8256GB$ 1,73017%10,34712.197
427LPLEN02684OB20UB0067USIntel Core i5-10210UNone16256 GB$ 9329%6,2286.497
514LPHEW01837OMEN 16AMD Ryzen 5 5600HRadeon 161TB$ 1,79917%17,09311.697
436LPLEN03308ThinkPad T14 Gen 2Intel Core i5-1135G7MX450 2GB16256GB + 512GB$ 1,79917%9,89112.697
505LPASU00590OBVivobook 14 FlipIntel Celeron N4500Intel UHD 4128GB$ 4745%2,0033.497
214LPLEN03517OBThinkPad X1 Carbon EVOIntel i7-1365UNone32512GB$ 1,89918%15,45112.194
327LPSAS00157Galaxy Book3 360 EVOIntel i7-1355UNone16512GB$ 1,89918%15,29412.193
597LPLEN0185820TA0025USIntel Core i7 i7-1165G7None8512 GB$ 1,80617%10,34712.193
471LPLEN03138Business NotebookIntel i5-1145G7Intel Iris Xe16512GB$ 1,60015%9,97010.693
528LPSAS00113Galaxy Book ProIntel i5-1135G7Intel Iris Xe 8512GB$ 1,60015%9,89110.693
527LPSAS00114Galaxy Book ProIntel i5-1135G7Iris Xe 8256GB$ 1,60015%9,89110.693
568LPLEN02684ThinkPad X1 Yoga Gen 5Intel Core i5-10210UNone16256GB$ 9819%6,2286.492
62LPASU00590Vivobook 14 Flip NotebookIntel Celeron N4500Intel UHD 4128GB$ 4995%2,0033.492
266LPASU00763OBVivobook S 16 FlipIntel i5-1335UIntel HD 16512GB$ 9028%16,9294.292
177LPASU00743Zenbook S 13 FlipIntel i7-1260PNone161TB$ 1,99918%17,23112.191
530LPSAS00111Galaxy Book ProIntel i7-1165G7Iris Xe 8512GB$ 1,87017%10,34712.190
72LPLEN03517ThinkPad X1 Carbon EVOIntel i7-1365UNone32512GB$ 1,99918%15,45112.189
63LPASU00763Vivobook S 16 FlipIntel i5-1335UIntel HD 16512GB$ 9498%16,9294.287
536LPASU00591OBL510MA-DS09-CAIntel Celeron N4020Intel UHD 600464GB$ 2462%1,5561.587
554LPLEN0274120W400K3USIntel i5-1145G7Intel Iris Xe16512GB$ 1,72115%9,97010.687
526LPSAS00115Galaxy Book ProIntel i5-1135G7Intel Iris Xe 8512GB$ 1,73015%9,89110.686
221LPASU00762OBVivobook SlateIntel Pentium Silver Processor N6000Intel UHD 8128GB$ 5695%3,0893.484
174LPASU00591Vivobook GoIntel Celeron N4020Intel UHD 600464GB$ 2592%1,5561.583
396LPLGE00035GramIntel i7-1360PIntel Iris Xe16512GB$ 2,30018%19,30912.180
86LPASU00762Vivobook SlateIntel Pentium Silver Processor N6000Intel UHD 8128GB$ 5995%3,0893.480
328LPSAS00156Galaxy Book3 Pro 360 EVOIntel i7-1360PNone161TB$ 2,49918%19,30912.174
594LPLEN02071ThinkPad X13 Yoga Gen 2Intel Core i5 (11th Gen) i5-1135G7 Quad-coreIntel Iris Xe 8256 GB$ 2,01915%9,89110.674
277LPLEN03526NoneIntel i5-1335UNone16512GB$ 2,24916%16,92910.672
596LPLEN0187020UN000AUSIntel Core i7-1160G7 EVO Quad-coreIntel Iris Xe 16256 GB$ 2,40017%9,17312.169
340LPLEN03465ThinkPad X1 Yoga EVOIntel i5-1335UNone16256GB$ 2,53416%16,92910.664
325LPLEN03478ThinkPad X1 Yoga Gen 8Intel i7-1355UNone16512 GB$ 2,88418%15,29412.162
301LPLEN03495ThinkPad X13 YogaIntel i5-10310UNone16256GB$ 1,4999%6,4366.461
230LPASU00810Chromebook Flip C434Intel m3-8100YNone464GB Flash Memory$ 6994%2,8773.061
605LPASU00227Chromebook Flip C434Intel m3-8100YNone464GB Flash Memory$ 6994%2,8773.061
590LPLEN02299ThinkPad X13 Yoga Gen 2Intel Core i7 (11th Gen) i7-1165G7 Quad-coreIntel Iris Xe 16256GB$ 2,89217%10,34712.158
- - - - \ No newline at end of file diff --git a/PCData/data/computed/canada_computers_laptops_bench_0.3.csv b/PCData/data/computed/canada_computers_laptops_bench_0.3.csv deleted file mode 100644 index d1e535d..0000000 --- a/PCData/data/computed/canada_computers_laptops_bench_0.3.csv +++ /dev/null @@ -1,576 +0,0 @@ -item_id,Model,CPU,GPU,RAM,Storage,price,bench,cpu_bench,gpu_bench,value -LPMSI00429OB,Katana GF66,Intel Core i7-11800H,RTX3060,16.0,512GB,786.48999847412,51.713099269594984,20753.0,42.0,657.5175700889304 -LPCOI00001OB,VOYAGER Gaming Notebook,AMD Ryzen 7 6800HS,Radeon 6800M,16.0,1TB,989.89,65.04774144439813,22947.0,54.6,657.1209068118491 -LPGIG00147OB,G5 KF-E3US333SH,Intel i5-12500H,GeForce RTX 4060,8.0,512GB,899.1,56.274217475847855,21521.0,46.3,625.8949780430191 -LPGIG00160OB,G5 Gaming Notebook,Intel i5-12450H,GeForce RTX 4050,16.0,512GB,809.1,49.834614702533386,17456.0,41.9,615.9265196209786 -LPGIG00135OB,AERO 16 XE4,Intel Core i7-12700H,GeForce RTX 3070 Ti,16.0,2TB,1079.1,64.6130497301687,26424.0,52.2,598.7679522766074 -LPHEW02076OB,Victus Gaming Notebook,AMD Ryzen 5 7640HS,GeForce RTX 4050,16.0,512GB,899.1,53.042008897441775,23390.0,41.9,589.9456000160357 -LPGIG00142OB,G5 KE-52US213SH,Intel i5-12500H,GeForce RTX 3060,16.0,512GB,899.89,52.12821196620598,21521.0,42.0,579.2731552323727 -LPGIG00162OB,G5 KF,Intel i7-12650H,GeForce RTX 4060,16.0,512GB,989.1,57.225517405581385,23281.0,46.3,578.5614943441652 -LPACE00980OB,Nitro 5,AMD Ryzen 7 5800H,GeForce RTX 3060,16.0,512GB,899.1,51.9168720386345,21130.0,42.0,577.4315653279334 -LPASU00584OB,TUF Gaming Notebook,Ryzen 7 5800H,GeForce RTX 3060,16.0,512GB,899.89,51.9168720386345,21130.0,42.0,576.9246467749891 -LPMSI00467OB,Crosshair 15,Intel Core i7-12700H,RTX3070Ti,16.0,512GB,1129.39,64.6130497301687,26424.0,52.2,572.1057361068249 -LPGIG00147,G5,Intel i5-12500H,GeForce RTX 4060,8.0,512GB,999.0,56.274217475847855,21521.0,46.3,563.3054802387172 -LPACE00968OB,Nitro 5,Intel i5-12450H,GeForce RTX 4060,16.0,512GB,989.1,54.077038944957636,17456.0,46.3,546.7297436554204 -LPACE00912OB,Nitro 5,Intel Core i5-11400H,GTX 1650,8.0,256GB,526.39,28.607066582507713,15822.0,20.8,543.4576375407532 -LPMSI00530OB,Katana GF66,Intel i5-11400H,GeForce RTX 3050,8.0,512GB,651.48999847412,35.06712167892645,15822.0,27.5,538.2603226612614 -LPACE00877OB,Nitro 5,Intel i7-11800H,NVIDIA GeForce RTX3060,16.0,512GB,961.08999023437,51.713099269594984,20753.0,42.0,538.0671924070742 -LPHEW02076,Victus Gaming Notebook,AMD Ryzen 5 7640HS,GeForce RTX 4050,16.0,512GB,999.0,53.042008897441775,23390.0,41.9,530.9510400144322 -LPGIG00133OB,A5 K1,AMD Ryzen 5 5600H,GeForce RTX 3060,16.0,512GB,936.79000152588,49.73482782480822,17093.0,42.0,530.9069027615388 -LPMSI00559OB,Thin GF63,Intel i7-12650H,GeForce RTX 4060,16.0,512GB,1079.1,57.225517405581385,23281.0,46.3,530.3078250911072 -LPHEW01865OB,Omen 16-b0020ca,Intel Core i7-11800H,NVIDIA GeForce RTX 3070,16.0,1TB,1091.5900007629,57.49822323653713,20753.0,48.0,526.7382734941898 -LPGIG00162,G5 KF,Intel i7-12650H,GeForce RTX 4060,16.0,512GB,1099.0,57.225517405581385,23281.0,46.3,520.7053449097488 -LPACE00980,Nitro 5,AMD Ryzen 7 5800H,GeForce RTX 3060,16.0,512GB,999.0,51.9168720386345,21130.0,42.0,519.6884087951402 -LPMSI00504OB,GP66 Leopard,Intel Core i7-11800H,NVIDIA RTX3070,16.0,512GB,1114.0900007629,57.49822323653713,20753.0,48.0,516.1003437528731 -LPACE00967OB,Nitro 5,Intel i9-12900H,GeForce RTX 4060,16.0,1TB,1169.1,60.05941827580461,28524.0,46.3,513.7235332803406 -LPHEW02079,Victus 16,AMD Ryzen 7 7840HS,GeForce RTX 4060,16.0,1TB,1199.0,60.25562388631215,28887.0,46.3,502.5489898774991 -LPMSI00560OB,Thin GF63,Intel i5-12450H,GeForce RTX 4060,16.0,512GB,1079.1,54.077038944957636,17456.0,46.3,501.1309326749851 -LPACE00968,Nitro 5,Intel i5-12450H,GeForce RTX 4060,16.0,512GB,1099.0,54.077038944957636,17456.0,46.3,492.0567692898784 -LPACE00816,Nitro,Intel i5-11400H,NVIDIA GeForce RTX 3050,8.0,512GB,715.88,35.06712167892645,15822.0,27.5,489.8463664151317 -LPMSI00496OB,GF63 11UC-692,Intel i5-11400H,NVIDIA RTX3050,8.0,512GB,719.1,35.06712167892645,15822.0,27.5,487.6529228052628 -LPACE00877,Nitro 5,Intel i7-11800H,NVIDIA GeForce RTX3060,16.0,512GB,1067.8800048828,51.713099269594984,20753.0,42.0,484.2594583018764 -LPHEW02095OB,Victus 15-fb1010ca,AMD Ryzen 5 7535HS,GeForce RTX 2050,8.0,512GB,629.1,30.41050271573437,18445.0,21.2,483.39695939809843 -LPHEW02058,Victus 15-fa1000ca,Intel i5-13500H,GeForce RTX 4050,16.0,512GB,1099.0,52.98741725374683,23289.0,41.9,482.1421042197164 -LPGIG00124OB,AERO 16 XE5,Intel Core i7-12700H,NVIDIA GeForce RTX 3070 Ti,32.0,2 TB,1349.89,64.6130497301687,26424.0,52.2,478.6541846385165 -LPMSI00559,Thin GF63,Intel i7-12650H,GeForce RTX 4060,16.0,512GB,1199.0,57.225517405581385,23281.0,46.3,477.27704258199657 -LPHEW02087OB,Victus 15-fb0000ca,AMD Ryzen 5 5600H,GeForce RTX 3050 Ti,16.0,512GB,764.1,36.42904270084127,17093.0,28.2,476.75752782150596 -LPMSI00572OB,Thin GF63,Intel i5-12450H,GeForce RTX 2050,8.0,512GB,629.1,29.875937016582977,17456.0,21.2,474.8996505576693 -LPHEW02035OB,Omen 16-wd0010ca,Intel i7-13620H,GeForce RTX 4060,16.0,1TB,1259.1,58.959477732050225,26489.0,46.3,468.2668392665414 -LPLEN03469OB,Legion Pro 5i,Intel i7-13700HX,GeForce RTX 4060,16.0,512GB,1349.1,63.07871453006114,34110.0,46.3,467.5614448896386 -LPLEN03434OB,,AMD Ryzen 7 7745HX,GeForce RTX 4060,16.0,512GB,1349.1,62.42956043028275,32909.0,46.3,462.7496881645746 -LPACE00967,Nitro 5,Intel i9-12900H,GeForce RTX 4060,16.0,1TB,1299.0,60.05941827580461,28524.0,46.3,462.3511799523065 -LPACE00896OB,A715,AMD Ryzen 7 5700U,RTX3050,16.0,512GB,764.1,35.08441804128524,15854.0,27.5,459.1600319498134 -LPMSI00564OB,Bravo 15,AMD Ryzen 7 7735HS,GeForce RTX 4060,32.0,1TB,1259.1,57.756840036790514,24264.0,46.3,458.7152731061116 -LPACE00953,Nitro Gaming Notebook ,AMD Ryzen R5-7535HS,GeForce RTX 3050,8.0,512GB,799.0,36.48488288102364,18445.0,27.5,456.6318257950392 -LPMSI00539OB,Katana 15,Intel i7-12650H,GeForce RTX 4060,16.0,1TB,1259.1,57.225517405581385,23281.0,46.3,454.4954126406273 -LPACE00956OB,Nitro 5,Intel i7-12650H,GeForce RTX 4060,16.0,512GB,1259.1,57.225517405581385,23281.0,46.3,454.4954126406273 -LPMSI00560,Thin GF63,Intel i5-12450H,GeForce RTX 4060,16.0,512GB,1199.0,54.077038944957636,17456.0,46.3,451.0178394074865 -LPASU00715OB,TUF F15,Intel i9-13900H,GeForce RTX 4060,16.0,1TB,1349.1,60.68803294528193,29687.0,46.3,449.8408786989989 -LPASU00688OB,TUF Gaming F15,Intel Core i9-13900H,GeForce RTX 4050,16.0,512GB,1259.1,56.44560870285768,29687.0,41.9,448.30123662026597 -LPASU00686OB,TUF Gaming Notebook,AMD Ryzen 7 7735HS,AMD Radeon RX 7600S,16.0,1TB,1349.1,60.263727089132104,24264.0,48.9,446.6957756217634 -LPLEN03438OB,Legion Pro 5,AMD Ryzen 7 7745HX,GeForce RTX 4070,16.0,512GB,1529.1,67.63617200053069,32909.0,51.7,442.3266758258498 -LPMSI00496,GF63,Intel i5-11400H,RTX3050,8.0,512GB,799.0,35.06712167892645,15822.0,27.5,438.88763052473655 -LPASU00787,FX506HCB-DB59-CA,Intel i5-11400H,GeForce RTX 3050,8.0,512GB,799.0,35.06712167892645,15822.0,27.5,438.88763052473655 -LPASU00809OB,ROG Strix G16,Intel i9-13980HX,GeForce RTX 4060,16.0,1TB,1619.1,70.58317374848177,47994.0,46.3,435.940792714976 -LPHEW02095,Victus 15-fb1010ca,AMD Ryzen 5 7535HS,GeForce RTX 2050,8.0,512GB,699.0,30.41050271573437,18445.0,21.2,435.05726345828856 -LPMSI00541OB,Thin GF63,Intel i7-12650H,GeForce RTX 3050,16.0,512GB,899.1,39.098795642495986,23281.0,27.5,434.86592862302285 -LPLEN03269OB,IdeaPad 3,AMD Ryzen 7 5825U,Integrated Radeon ,8.0,256GB,522.39,22.704030740353097,18458.0,13.2,434.61840273269206 -LPHEW02087,Victus 15-fb0000ca,AMD Ryzen 5 5600H,GeForce RTX 3050 Ti,16.0,512GB,849.0,36.42904270084127,17093.0,28.2,429.08177503935536 -LPMSI00572,Thin GF63,Intel i5-12450H,GeForce RTX 2050,8.0,512GB,699.0,29.875937016582977,17456.0,21.2,427.4096855019024 -LPASU00808OB,TUF Gaming F15,Intel i7-11800H,GeForce RTX 3050 Ti,16.0,1TB,899.1,38.40731414562805,20753.0,28.2,427.1751100614842 -LPASU00556,G17,AMD Ryzen 7 4800H,NVIDIA GeForce RTX 3060,16.0,1TB,1196.88,50.5780254897993,18653.0,42.0,422.58225962334825 -LPHEW02035,Omen 16-wd0010ca,Intel i7-13620H,GeForce RTX 4060,16.0,1TB,1399.0,58.959477732050225,26489.0,46.3,421.44015533988727 -LPLEN03469,Legion Pro 5i,Intel i7-13700HX,GeForce RTX 4060,16.0,512GB,1499.0,63.07871453006114,34110.0,46.3,420.8053004006747 -LPLEN02719OB,T470,Intel Core i5-6300U,Intel HD 620,8.0,256 GB,262.69000019073,11.007455035935068,3240.0,9.6,419.0283234208741 -LPASU00627OB,TUF507RR-DS71-CA,AMD Ryzen 7 6800H,GeForce RTX 3070,16.0,512GB,1412.0600000763,59.06624658662631,23654.0,48.0,418.29841921331035 -LPLEN03433OB,Legion Pro 5,AMD Ryzen 7 7745HX,GeForce RTX 4070,16.0,1TB,1619.1,67.63617200053069,32909.0,51.7,417.73931196671424 -LPLEN03434,Legion Pro 5,AMD Ryzen 7 7745HX,GeForce RTX 4060,16.0,512GB,1499.0,62.42956043028275,32909.0,46.3,416.47471934811705 -LPGIG00152OB,AORUS 15,Intel Core i7-13700H,GeForce RTX 4060,16.0,1TB,1439.1,59.71673409657106,27890.0,46.3,414.9588916445769 -LPASU00720OB,G17,AMD Ryzen 9 7945HX,NVIDIA RTX 4060,16.0,1TB,1799.1,74.64187327823691,55503.0,46.3,414.8845160259959 -LPHEW01653OB,15-ef1013dx,AMD Ryzen 7 4700U,AMD Radeon ,8.0,512GB,445.43999923706,18.452288261389487,13446.0,11.6,414.24856979602566 -LPACE00896,A715,AMD Ryzen 7 5700U,RTX3050,16.0,512GB,849.0,35.08441804128524,15854.0,27.5,413.2440287548321 -LPLEN03269,IdeaPad 3,AMD Ryzen 7 5825U,Integrated Radeon ,8.0,256GB,549.88,22.704030740353097,18458.0,13.2,412.89064414696117 -LPMSI00564,Bravo 15,AMD Ryzen 7 7735HS,GeForce RTX 4060,32.0,1TB,1399.0,57.756840036790514,24264.0,46.3,412.84374579550047 -LPASU00716OB,FX507ZC4-DS71-CA,Intel i7-12700H,NVIDIA RTX 3050,16.0,512GB,989.1,40.797622732923536,26424.0,27.5,412.47217402612 -LPLEN03053OB,IdeaPad 5,AMD Ryzen 7 5825U,Integrated Radeon,8.0,512GB,552.78999023437,22.704030740353097,18458.0,13.2,410.71711032117497 -LPMSI00293OB,GF75 10UEK-003CA,Intel Core i7-10750H,RTX3060,16.0,512GB,1146.4900003815,46.988489789026374,12012.0,42.0,409.846485999797 -LPACE00969,Nitro 5,Intel i5-11400H,GeForce GTX 1650,8.0,512GB,699.0,28.607066582507713,15822.0,20.8,409.25703265390143 -LPMSI00539,Katana 15,Intel i7-12650H,GeForce RTX 4060,16.0,1TB,1399.0,57.225517405581385,23281.0,46.3,409.04587137656455 -LPACE00956,Nitro 5,Intel i7-12650H,GeForce RTX 4060,16.0,512GB,1399.0,57.225517405581385,23281.0,46.3,409.04587137656455 -LPLEN03565OB,,Ryzen 7 7745HX,GeForce RTX 4060,16.0,1TB,1529.1,62.42956043028275,32909.0,46.3,408.2765053317818 -LPLEN03097OB,IdeaPad 3,AMD Ryzen 5 5625U,AMD Radeon ,12.0,512GB,474.89,19.33440274168785,15078.0,11.6,407.13434146197756 -LPASU00715,TUF F15,Intel i9-13900H,GeForce RTX 4060,16.0,1TB,1499.0,60.68803294528193,29687.0,46.3,404.856790829099 -LPASU00688,TUF Gaming F15,Intel Core i9-13900H,GeForce RTX 4050,16.0,512GB,1399.0,56.44560870285768,29687.0,41.9,403.47111295823936 -LPASU00785OB,FX706HF-DB51-CA,Intel i5-11400H,GeForce RTX 2050,8.0,512GB,719.1,28.99274151363719,15822.0,21.2,403.18094164423843 -LPASU00686,TUF Gaming Notebook,AMD Ryzen 7 7735HS,AMD Radeon RX 7600S,16.0,1TB,1499.0,60.263727089132104,24264.0,48.9,402.02619805958705 -LPLEN03430OB,IdeaPad Slim 3,AMD Ryzen 7 7730U,,8.0,512GB,569.89,22.901857884831777,18824.0,13.2,401.8645332403056 -LPLEN03438,Legion Pro 5,AMD Ryzen 7 7745HX,GeForce RTX 4070,16.0,512GB,1699.0,67.63617200053069,32909.0,51.7,398.09400824326485 -LPMSI00593OB,Katana 17,Intel i7-13620H,GeForce RTX 4070,16.0,1TB,1619.1,64.16608930229816,26489.0,51.7,396.3071416360828 -LPLEN03086OB,Legion 5,Intel i7-12700H,GeForce RTX 3070,16.0,512GB,1529.89,60.5634629533092,26424.0,48.0,395.86808825019574 -LPASU00625OB,G15,AMD Ryzen 9 6900HX,GeForce RTX 3070 Ti,16.0,1TB,1619.89,63.78228382562301,24887.0,52.2,393.7445371329103 -LPMSI00540OB,Thin GF63,Intel i7-12650H,GeForce RTX 4050,16.0,512GB,1349.1,52.983093163157136,23281.0,41.9,392.72917621493696 -LPASU00809,G614JV-DB91-CA,Intel i9-13980HX,GeForce RTX 4060,16.0,1TB,1799.0,70.58317374848177,47994.0,46.3,392.3467134434784 -LPACE00940,Nitro,Intel i7-12700H,GeForce RTX 3060,16.0,512GB,1399.0,54.77833898636706,26424.0,42.0,391.55353099619055 -LPMSI00541,Thin GF63,Intel i7-12650H,GeForce RTX 3050,16.0,512GB,999.0,39.098795642495986,23281.0,27.5,391.37933576072055 -LPASU00719,G713PU-DS91-CA,AMD Ryzen 9 7945HX,RTX 4050,16.0,1TB,1799.0,70.39944903581267,55503.0,41.9,391.32545322853065 -LPLEN03053,IdeaPad 5,AMD Ryzen 7 5825U,Integrated Radeon,8.0,512GB,581.88000488281,22.704030740353097,18458.0,13.2,390.18406801803866 -LPLEN03435OB,Legion Pro 5,Intel i7-13700HX,GeForce RTX 4060,16.0,1TB,1619.1,63.07871453006114,34110.0,46.3,389.5912206167695 -LPGIG00157OB,AERO 14 OLED,Intel i5-12500H,RTX 4050,16.0,1TB,1349.1,52.031793233423606,21521.0,41.9,385.6778091573909 -LPASU00808,TUF Gaming F15,Intel i7-11800H,GeForce RTX 3050 Ti,16.0,1TB,999.0,38.40731414562805,20753.0,28.2,384.45759905533583 -LPLEN03430,IdeaPad Slim 3,AMD Ryzen 7 7730U,,8.0,512GB,599.88,22.901857884831777,18824.0,13.2,381.7739862111052 -LPLEN03001OB,82RG006WCC (Open Box),AMD Ryzen 7 6800H,GeForce RTX 3060,16.0,1TB,1397.5899969482,53.281122619684176,23654.0,42.0,381.2357181722085 -LPLEN03433,Legion Pro 5,AMD Ryzen 7 7745HX,GeForce RTX 4070,16.0,1TB,1799.0,67.63617200053069,32909.0,51.7,375.96538077004277 -LPGIG00149OB,ASF-B3US754SH,Intel i9-13900HX,GeForce RTX 4070,16.0,1TB,1979.89,74.1590626550899,44977.0,51.7,374.5615294541106 -LPGIG00152,AORUS 15,Intel Core i7-13700H,GeForce RTX 4060,16.0,1TB,1599.0,59.71673409657106,27890.0,46.3,373.4630024801192 -LPASU00720,G713PV-DS91-CA,AMD Ryzen 9 7945HX,NVIDIA RTX 4060,16.0,1TB,1999.0,74.64187327823691,55503.0,46.3,373.39606442339624 -LPMSI00565OB,Bravo 15,AMD Ryzen 7 7735HS,GeForce RTX 4050,16.0,1TB,1439.1,53.514415794366265,24264.0,41.9,371.86030014846966 -LPACE00955,NH.QLZAA.005,Intel i5-12500H,GeForce RTX 4050,8.0,512GB,1399.99,52.031793233423606,21521.0,41.9,371.6583206553162 -LPASU00716,TUF F15,Intel i7-12700H,RTX 3050,16.0,512GB,1099.0,40.797622732923536,26424.0,27.5,371.22495662350804 -LPGIG00153,G5 MF,Intel i5-12450H,GeForce RTX 4050,8.0,512GB,1349.0,49.834614702533386,17456.0,41.9,369.4189377504328 -LPASU00760OB,Vivobook 16X,Intel i9-13900H,Geforce RTX 4050,16.0,512GB,1529.1,56.44560870285768,29687.0,41.9,369.14268983622844 -LPHEW01773OB,15-eg1010ca, Intel Core i5-1155G7,Intel Iris Xe ,8.0,512GB,427.39,15.775761060045445,10278.0,10.6,369.11862842007173 -LPLEN03565,Legion Pro 5 16ARX8,Ryzen 7 7745HX,GeForce RTX 4060,16.0,1TB,1699.0,62.42956043028275,32909.0,46.3,367.4488547986036 -LPGIG00141OB,AORUS 17,Intel i7-12700H,GeForce RTX 3080 Ti,32.0,1TB,1799.1,66.05933072190425,26424.0,53.7,367.179871724219 -LPMSI00580OB,Pulse 17,Intel i9-13900H,GeForce RTX 4070,16.0,1TB,1799.1,65.89464451552988,29687.0,51.7,366.2644906649429 -LPCNO00053OB,15Z-EF2000,AMD Ryzen 5 5500U,AMD Radeon Vega 7,8.0,256GB,501.49000038147,18.289053841628395,13144.0,11.6,364.69428757734755 -LPCNO00060OB,ZenBook,AMD Ryzen 7 5700U,GeForce MX450,8.0,256GB,569.89,20.718026856712235,15854.0,12.6,363.5443130553657 -LPASU00785,TUF Gaming Notebook,Intel i5-11400H,GeForce RTX 2050,8.0,512GB,799.0,28.99274151363719,15822.0,21.2,362.8628474798146 -LPMSI00553OB,Vector GP68HX,Intel i9-12900HX,GeForce RTX 4080,32.0,1TB,2249.1,81.45960169229181,34937.0,64.9,362.18754920764667 -LPGIG00148OB,AORUS Gaming Notebook,Intel i7-13700H,GeForce RTX 4070,16.0,1TB,1799.1,64.923345666819,27890.0,51.7,360.86568654782394 -LPASU00573OB,Vivobook 15,AMD Ryzen 5 5500U,AMD Radeon ,8.0,512GB,508.14,18.289053841628395,13144.0,11.6,359.921553934514 -LPASU00666OB,Vivobook 16,AMD Ryzen 5 5600H,AMD Radeon ,8.0,512GB,569.05,20.423533058967998,17093.0,11.6,358.90577381544676 -LPMSI00593,Katana 17,Intel i7-13620H,GeForce RTX 4070,16.0,1TB,1799.0,64.16608930229816,26489.0,51.7,356.6764274724745 -LPLEN03049OB,Legion 5,AMD Ryzen 7 6800H,GeForce RTX 3070 Ti,16.0,512GB,1780.0900054932,63.11583336348583,23654.0,52.2,354.5654049442217 -LPMSI00540,Thin GF63,Intel i7-12650H,GeForce RTX 4050,16.0,512GB,1499.0,52.983093163157136,23281.0,41.9,353.4562585934432 -LPGIG00159,AORUS Gaming Notebook,Intel i5-12500H,GeForce RTX 4060,16.0,512GB,1599.0,56.274217475847855,21521.0,46.3,351.9338178602117 -LPLEN03435,Legion Pro 5,Intel i7-13700HX,GeForce RTX 4060,16.0,1TB,1799.0,63.07871453006114,34110.0,46.3,350.6320985550925 -LPLEN03442OB,IdeaPad Flex 5,AMD Ryzen 3 5300U,,4.0,128GB,360.05,12.579431712648098,9716.0,7.6,349.38013366610465 -LPHEW01811OB,Pavilion 15-eh2010ca,AMD Ryzen 5 5625U,AMD Radeon ,8.0,512GB,553.74000610352,19.33440274168785,15078.0,11.6,349.1603013792964 -LPGIG00158,AORUS Gaming Notebook,Intel i5-12500H,GeForce RTX 4050,8.0,512GB,1499.0,52.031793233423606,21521.0,41.9,347.11002824165183 -LPGIG00157,AERO 14,Intel i5-12500H,RTX 4050,16.0,1TB,1499.0,52.031793233423606,21521.0,41.9,347.11002824165183 -LPGIG00161,,Intel i5-12500H,GeForce RTX 4050,16.0,512GB,1499.0,52.031793233423606,21521.0,41.9,347.11002824165183 -LPMSI00538OB,Katana 17 B12VGK-217CA,Intel i7-12650H,GeForce RTX 4070,16.0,1TB,1799.1,62.43212897582933,23281.0,51.7,347.0186703119856 -LPCNO00053,15Z-EF2000,AMD Ryzen 5 5500U,AMD Radeon Vega 7,8.0,256GB,527.88,18.289053841628395,13144.0,11.6,346.4623369255966 -LPCNO00060,ZenBook,AMD Ryzen 7 5700U,GeForce MX450,8.0,256GB,599.88,20.718026856712235,15854.0,12.6,345.36952151617385 -LPGIG00146OB,17H,Intel i7-13700H,RTX 4080,16.0,1TB,2249.1,77.65061839409172,27890.0,64.9,345.25196031342193 -LPLEN03436OB,Legion Pro 5,Intel i7-13700HX,GeForce RTX 4070,16.0,1TB,1979.1,68.28532610030908,34110.0,51.7,345.0322171709822 -LPMSI00562OB,Modern 15,AMD Ryzen 7 7730U,AMD Radeon ,16.0,512GB,664.05,22.901857884831777,18824.0,13.2,344.8815282709401 -LPMSI00445OB,Modern 15,Intel Core i5-1155G7,Intel Iris Xe,8.0,256GB,459.69000305176,15.775761060045445,10278.0,10.6,343.1826003461975 -LPMSI00536OB,Katana GF66,Intel i7-12650H,GeForce RTX 3050 Ti,16.0,512GB,1159.0899978638,39.77372677197257,23281.0,28.2,343.1461477993551 -LPASU00573,Vivobook 15,AMD Ryzen 5 5500U,AMD Radeon ,8.0,512GB,534.88,18.289053841628395,13144.0,11.6,341.92816784378545 -LPGIG00151,BSF-73US754SH,Intel i7-13700H,GeForce RTX 4070,16.0,1TB,1899.0,64.923345666819,27890.0,51.7,341.88175706592415 -LPACE00960,PH16-71-72YG,Intel i7-13700HX,GeForce RTX 4070,16.0,1TB,1999.0,68.28532610030908,34110.0,51.7,341.5974292161535 -LPCNO00033OB,F415EA-UB51,Intel Core i5-1135G7,Intel Iris Xe ,8.0,256GB,455.89,15.566583177768814,9891.0,10.6,341.45480659301177 -LPASU00666,Vivobook 16,AMD Ryzen 5 5600H,AMD Radeon ,8.0,512GB,599.0,20.423533058967998,17093.0,11.6,340.9604851246744 -LPHEW02072OB,ProBook 445 G9,AMD Ryzen 5 5625U,,8.0,256GB,569.05,19.33440274168785,15078.0,11.6,339.7663253086346 -LPMSI00567,Thin GF63,Intel Core i5-12450H,GeForce RTX 4060,16.0,512GB,1599.0,54.077038944957636,17456.0,46.3,338.19286394595144 -LPGIG00149,,Intel i9-13900HX,GeForce RTX 4070,16.0,1TB,2199.88,74.1590626550899,44977.0,51.7,337.1050359796439 -LPASU00583OB,TUF Gaming Notebook,Ryzen 5 4600H,GeForce GTX 1650,8.0,512GB,827.89000091553,27.906023395652944,14525.0,20.8,337.0740480594379 -LPACE00946OB,,Intel i5-1135G7,Intel Iris,8.0,512GB,462.53999389648,15.566583177768814,9891.0,10.6,336.54566920007215 -LPMSI00565,Bravo 15,AMD Ryzen 7 7735HS,GeForce RTX 4050,16.0,1TB,1599.0,53.514415794366265,24264.0,41.9,334.6742701336227 -LPASU00760,Vivobook 16X,Intel i9-13900H,GeForce RTX 4050,16.0,512GB,1699.0,56.44560870285768,29687.0,41.9,332.2284208526056 -LPLEN03442,IdeaPad Flex 5,AMD Ryzen 3 5300U,,4.0,128GB,379.0,12.579431712648098,9716.0,7.6,331.91112698279943 -LPGIG00141,YE5-74US544SH,Intel i7-12700H,GeForce RTX 3080 Ti,32.0,1TB,1999.0,66.05933072190425,26424.0,53.7,330.4618845517971 -LPLEN03437OB,Legion Pro 5,Intel i9-13900HX,GeForce RTX 4070,16.0,512GB,2249.1,74.1590626550899,44977.0,51.7,329.72772511266686 -LPLEN03000OB,IdeaPad Flex 5,AMD Ryzen 5 5500U,AMD Radeon ,8.0,512GB,554.69000305176,18.289053841628395,13144.0,11.6,329.71666590359985 -LPMSI00580,Pulse 17,Intel i9-13900H,GeForce RTX 4070,16.0,1TB,1999.0,65.89464451552988,29687.0,51.7,329.6380415984486 -LPHEW01733,16-c0010ca,AMD Ryzen 7 5800H,NVIDIA GeForce RTX 3050 Ti,16.0,1TB,1172.88,38.61108691466756,21130.0,28.2,329.198953982228 -LPACE00888OB,TravelMate P2,Intel Core i5-1135G7,Intel Iris Xe ,8.0,256GB,474.05,15.566583177768814,9891.0,10.6,328.3742891629325 -LPGIG00156OB,AERO 16 OLED,Intel i7-13700H,GeForce RTX 4070,16.0,1TB,1979.1,64.923345666819,27890.0,51.7,328.0447964570714 -LPCNO00048OB,VivoBook R,Intel Core i5-1135G7,Intel Iris Xe ,8.0,256GB,474.89,15.566583177768814,9891.0,10.6,327.7934506468617 -LPHUA00040OB,MateBook D15,Intel i5-1135G7,Intel Iris Xe ,8.0,512GB,474.89,15.566583177768814,9891.0,10.6,327.7934506468617 -LPMSI00562,Modern 15 Notebook,AMD Ryzen 7 7730U,AMD Radeon ,16.0,512GB,699.0,22.901857884831777,18824.0,13.2,327.6374518573931 -LPASU00685OB,VivoBook,Intel Core i3-1115G4,Intel UHD ,4.0,128GB,284.05,9.292376869510292,6132.0,6.2,327.13877379018805 -LPHEW02017OB,Pavilion,Intel i5-1240P,Intel Iris Xe,8.0,512GB,599.34000854492,19.582041801626982,17320.0,10.6,326.72675814131514 -LPMSI00445,Modern 15 A11MU-863CA,Intel Core i5-1155G7,Intel Iris Xe,8.0,256GB,483.88,15.775761060045445,10278.0,10.6,326.02630941649676 -LPMSI00553,Vector GP68HX,Intel i9-12900HX,GeForce RTX 4080,32.0,1TB,2499.0,81.45960169229181,34937.0,64.9,325.96879428688203 -LPGIG00148,,Intel i7-13700H,GeForce RTX 4070,16.0,1TB,1999.0,64.923345666819,27890.0,51.7,324.7791178930415 -LPMSI00537,Pulse 17,Intel i7-13700H,GeForce RTX 4070,16.0,1TB,1999.0,64.923345666819,27890.0,51.7,324.7791178930415 -LPGIG00154OB,AERO 14,Intel Core i7-13700H,GeForce RTX 4050,16.0,1TB,1709.1,55.47430985414681,27890.0,41.9,324.5820013700006 -LPHEW02072,ProBook 445 G9,AMD Ryzen 5 5625U,,8.0,256GB,599.0,19.33440274168785,15078.0,11.6,322.7780090432028 -LPLEN03352OB,ThinkBook 15 G3,AMD Ryzen 5 5500U,AMD Radeon ,8.0,256GB,569.05,18.289053841628395,13144.0,11.6,321.39625413633945 -LPLEN03414OB,IdeaPad,Intel i3-1215U,Intel HD ,4.0,128GB,312.55,10.012507700052845,11032.0,4.2,320.34899056320086 -LPMSI00543,Katana GF76,Intel i7-11800H,GeForce RTX 3050 Ti,16.0,512GB,1199.0,38.40731414562805,20753.0,28.2,320.3278911228361 -LPACE00946,,Intel i5-1135G7,Intel Iris,8.0,512GB,486.88,15.566583177768814,9891.0,10.6,319.72114643790695 -LPLEN03503OB,Legion Slim 7i,Intel i9-13900H,GeForce RTX 4070,32.0,1TB,2069.1,65.89464451552988,29687.0,51.7,318.4700812697786 -LPHEW02100OB,15-fd0030ca,Intel i5-1340P,,16.0,512GB,664.05,21.14087645921306,20204.0,10.6,318.3627205664191 -LPACE00966,Nitro 17,AMD Ryzen 7 7735HS,GeForce RTX 4070,32.0,1TB,1999.0,62.963451607038444,24264.0,51.7,314.9747454078962 -LPLEN03000,IdeaPad Flex 5,AMD Ryzen 5 5500U,AMD Radeon ,8.0,512GB,583.88,18.289053841628395,13144.0,11.6,313.2330931292114 -LPMSI00538,Katana 17 B12VGK-217CA,Intel i7-12650H,GeForce RTX 4070,16.0,1TB,1999.0,62.43212897582933,23281.0,51.7,312.31680328078704 -LPHEW01913OB,15-DY2067MS,Intel Core i5-1135G7,Intel Iris X ,12.0,256GB,498.64,15.566583177768814,9891.0,10.6,312.180795318643 -LPACE00888,TravelMate P2,Intel Core i5-1135G7,,8.0,256 GB,499.0,15.566583177768814,9891.0,10.6,311.9555747047859 -LPACE00963,AN515-58-7578,Intel i7-12650H,GeForce RTX 4050,16.0,1TB,1699.99,52.983093163157136,23281.0,41.9,311.66708723673156 -LPHUA00040,MateBook D15,Intel i5-1135G7,Intel Iris Xe ,8.0,512GB,499.88,15.566583177768814,9891.0,10.6,311.40640109163826 -LPASU00685,VivoBook F415EA-AS31,Intel Core i3-1115G4,Intel UHD ,4.0,128GB,299.0,9.292376869510292,6132.0,6.2,310.7818351006787 -LPGIG00146,,Intel i7-13700H,RTX 4080,16.0,1TB,2499.0,77.65061839409172,27890.0,64.9,310.7267642820797 -LPLEN03436,Legion Pro 5,Intel i7-13700HX,GeForce RTX 4070,16.0,1TB,2199.0,68.28532610030908,34110.0,51.7,310.52899545388397 -LPHEW02017,15-EG2002CA,Intel i5-1240P,Intel Iris Xe,8.0,512GB,630.88000488281,19.582041801626982,17320.0,10.6,310.39249381924014 -LPASU00610OB,TUF517ZC-DS51-CA,Intel i5-12450H,GeForce RTX 3050,16.0,512GB,1159.0899978638,35.95031718187224,17456.0,27.5,310.1598430503981 -LPHEW01929OB,ProBook 440 G9,Intel Core i5-1235U,,8.0,256GB,569.05,17.54215206593702,13546.0,10.6,308.2708385192342 -LPMSI00481OB,Raider GE76,Intel i9-12900HK,RTX3080TI,32.0,1TB,2173.39,66.95712003059026,28085.0,53.7,308.0768754369454 -LPASU00658OB,ZenBook 14,AMD Ryzen 5 5600H,AMD Radeon Vega 7,8.0,512GB,664.05,20.423533058967998,17093.0,11.6,307.5601695500037 -LPGIG00134,A7 K1,AMD Ryzen 7 5800H,GeForce RTX 3060,16.0,512GB,1699.0,51.9168720386345,21130.0,42.0,305.5731138236286 -LPLEN03352,ThinkBook 15 G3,AMD Ryzen 5 5500U,AMD Radeon ,8.0,256GB,599.0,18.289053841628395,13144.0,11.6,305.32644142952245 -LPMSI00561,Bravo 15,AMD Ryzen 7 7735HS,GeForce RTX 3050,16.0,512GB,1299.0,39.630118273705115,24264.0,27.5,305.0817419068907 -LPASU00717OB,G614JJ-DS71-CA,Intel i7-13650HX,RTX 3050,16.0,1TB,1439.1,43.8936715951472,32152.0,27.5,305.0077937262678 -LPLEN03414,IdeaPad,Intel i3-1215U,Intel HD ,4.0,128GB,329.0,10.012507700052845,11032.0,4.2,304.33154103504086 -LPHEW02100,15-fd0030ca,Intel i5-1340P,,16.0,512GB,699.0,21.14087645921306,20204.0,10.6,302.4445845380981 -LPACE00958,PHN16-71-788N,Intel i7-13700HX,GeForce RTX 4060,16.0,1024GB,2099.99,63.07871453006114,34110.0,46.3,300.3762614586791 -LPACE00952,Nitro 5,Intel i5-12450H,GeForce RTX 3050,8.0,512GB,1199.99,35.95031718187224,17456.0,27.5,299.588473086211 -LPASU00609OB,TUF Gaming Notebook,Intel Core i5-10300H,GeForce GTX 1650,8.0,1TB,824.29000152588,24.635389375870233,8474.0,20.8,298.8679873620518 -LPLEN03456OB,IdeaPad,Intel i5-1135G7,,8.0,512GB,521.55,15.566583177768814,9891.0,10.6,298.4677054504614 -LPASU00500OB,ExpertBook B1,Intel i5 1135G7,,8.0,256GB,521.55,15.566583177768814,9891.0,10.6,298.4677054504614 -LPLEN03437,,Intel i9-13900HX,GeForce RTX 4070,16.0,512GB,2499.0,74.1590626550899,44977.0,51.7,296.75495260140013 -LPGIG00156,AERO 16 OLED,Intel i7-13700H,GeForce RTX 4070,16.0,1TB,2199.0,64.923345666819,27890.0,51.7,295.24031681136427 -LPACE00981OB,Aspire 5,AMD Ryzen 3 5300U,,8.0,256GB,426.55,12.579431712648098,9716.0,7.6,294.9110705110326 -LPACE00985OB,Swift 3 EVO,Intel i5-1240P,,16.0,512GB,664.05,19.582041801626982,17320.0,10.6,294.88806267038603 -LPASU00721OB,G733PZ-XS96,AMD Ryzen 9 7945HX,RTX 4080,32.0,1TB,3149.1,92.57575757575758,55503.0,64.9,293.9752868303883 -LPASU00770OB,GA402XZ-CS94,AMD Ryzen 9 7940HS,GeForce RTX 4080,16.0,1TB,2699.1,79.11216101340959,30594.0,64.9,293.1057056552539 -LPASU00724OB,GU604VI-DS92-CA,Intel i9-13900H,GeForce RTX 4070,32.0,1TB,2249.1,65.89464451552988,29687.0,51.7,292.9822796475474 -LPHEW01929,ProBook 440 G9,Intel Core i5-1235U,,8.0,256GB,599.0,17.54215206593702,13546.0,10.6,292.85729659327245 -LPASU00658,ZenBook 14,AMD Ryzen 5 5600H,AMD Radeon Vega 7,8.0,512GB,699.0,20.423533058967998,17093.0,11.6,292.1821610725035 -LPGIG00154,AERO 14,Intel Core i7-13700H,GeForce RTX 4050,16.0,1TB,1899.0,55.47430985414681,27890.0,41.9,292.12380123300056 -LPLEN03390OB,ThinkPad T14 G3,Ryzen 5 Pro 6650U,AMD Radeon 660M,16.0,256GB,759.05,22.16759335322951,16752.0,13.6,292.0439148044201 -LPACE00957,AN16-51-74BV,Intel i7-13700H,GeForce RTX 4050,16.0,1024GB,1899.99,55.47430985414681,27890.0,41.9,291.9715885565019 -LPASU00621OB,GA503RS-XS92-CA,AMD Ryzen 9 6900HS,GeForce RTX 3080,32.0,1TB,2015.89,58.62124048688903,23901.0,47.4,290.7958295685232 -LPLEN03130OB,,AMD Ryzen 5 5625U,AMD Radeon ,12.0,512GB,664.89,19.33440274168785,15078.0,11.6,290.7909991380206 -LPACE00961,Predator Helios,Intel i9-13900HX,GeForce RTX 4080,32.0,1 TB,2999.0,86.88633538236262,44977.0,64.9,289.71769050471033 -LPGIG00145,,Intel Core i9-13900HX,GeForce RTX 4080,16.0,1TB,2999.0,86.88633538236262,44977.0,64.9,289.71769050471033 -LPMSI00575OB,Modern 15,Intel i7-1255U,Intel Iris Xe,16.0,512GB,664.05,19.11058861683152,13772.0,12.1,287.78839871743884 -LPASU00726OB,GV302XU-DS91T-CA,AMD Ryzen 9 7940HS,RTX 4050,16.0,1TB,1979.1,56.935852473464685,30594.0,41.9,287.6855766432453 -LPMSI00524,GP66 Leopard,Intel Core i7-11800H,NVIDIA RTX3070,16.0,512GB,1999.0,57.49822323653713,20753.0,48.0,287.6349336495104 -LPMSI00497,Pulse GL66,Intel i7-11800H,RTX3070,16.0,512GB,1999.88,57.49822323653713,20753.0,48.0,287.5083666846867 -LPLEN03503,82Y3007HCC,Intel i9-13900H,NVIDIA GeForce RTX 4070,32.0,1TB,2299.0,65.89464451552988,29687.0,51.7,286.6230731428007 -LPCNO00052OB,VivoBook F515,Intel Core i7-1165G7,Intel Iris Xe ,8.0,512GB,603.14,17.259337333117127,10347.0,12.1,286.1580616957444 -LPGIG00150,AORUS 15X,Intel i7-13700HX,GeForce RTX 4070,16.0,1TB,2399.0,68.28532610030908,34110.0,51.7,284.640792414794 -LPASU00786OB,Vivobook 16X,Intel i5-1235U,,8.0,512GB,616.55,17.54215206593702,13546.0,10.6,284.521159126381 -LPLEN02908,14 G4 ABA,AMD Ryzen 7 5825U,,16.0,512 GB,799.0,22.704030740353097,18458.0,13.2,284.15557872782347 -LPASU00784OB,Vivobook 15,AMD Ryzen 7 7730U,,16.0,512GB,806.55,22.901857884831777,18824.0,13.2,283.9483960675938 -LPHEW02028OB,15-fc0040ca,AMD Ryzen 7 7730U,AMD Radeon ,16.0,1TB,806.55,22.901857884831777,18824.0,13.2,283.9483960675938 -LPLEN03456,IdeaPad,Intel i5-1135G7,,8.0,512GB,549.0,15.566583177768814,9891.0,10.6,283.5443201779383 -LPASU00500,ExpertBook B1,Intel i5 1135G7,,8.0,256GB,549.0,15.566583177768814,9891.0,10.6,283.5443201779383 -LPACE00965,Nitro,AMD Ryzen 7 7735HS,GeForce RTX 4050,16.0,1TB,1899.0,53.514415794366265,24264.0,41.9,281.8031374110915 -LPMSI00579,Stealth 14Studio,Intel i7-13620H,GeForce RTX 4060,16.0,1TB,2099.0,58.959477732050225,26489.0,46.3,280.89317642710927 -LPACE00981,Aspire 5,AMD Ryzen 3 5300U,,8.0,256GB,449.0,12.579431712648098,9716.0,7.6,280.165516985481 -LPACE00985,Swift 3 EVO,Intel i5-1240P,,16.0,512GB,699.0,19.582041801626982,17320.0,10.6,280.1436595368667 -LPASU00610,TUF517ZC-DS51-CA,Intel i5-12450H,GeForce RTX 3050,16.0,512GB,1287.8799972534,35.95031718187224,17456.0,27.5,279.1433771666751 -LPLEN03390,21CF000CUS,Ryzen 5 Pro 6650U,AMD Radeon 660M,16.0,256GB,799.0,22.16759335322951,16752.0,13.6,277.4417190641991 -LPMSI00563OB,Modern 15,Intel i5-1155G7,Intel Iris Xe,16.0,512GB,569.05,15.775761060045445,10278.0,10.6,277.22978754143656 -LPLEN03431,IdeaPad Slim 5,Intel i5-1335U,Intel Iris Xe,8.0,512GB,699.99,19.370701874055502,16929.0,10.6,276.7282657474464 -LPLEN02956,ThinkBook 14 G4 ABA,AMD Ryzen 5 5625U,,16.0,256GB,699.0,19.33440274168785,15078.0,11.6,276.60089759210086 -LPLEN03130,Consumer Laptop,AMD Ryzen 5 5625U,AMD Radeon ,12.0,512GB,699.88,19.33440274168785,15078.0,11.6,276.2531111288771 -LPMSI00555,Stealth 15,Intel i9-13900H,GeForce RTX 4060,32.0,1TB,2199.0,60.68803294528193,29687.0,46.3,275.98014072433807 -LPLEN03569OB,V14,Ryzen 5 5500U,,16.0,512GB,664.05,18.289053841628395,13144.0,11.6,275.4168186375784 -LPHEW01738OB,Probook 640,Intel Core i5-6300U,Intel HD 520,16.0,512GB,242.89,6.668612060728457,3240.0,5.1,274.5527630091176 -LPASU00717,G614JJ-DS71-CA,Intel i7-13650HX,RTX 3050,16.0,1TB,1599.0,43.8936715951472,32152.0,27.5,274.507014353641 -LPACE00959,PH16-71-71AV,Intel i7-13700HX,GeForce RTX 4060,16.0,1024GB,2299.99,63.07871453006114,34110.0,46.3,274.256472984931 -LPCNO00061OB,F1500EA-WB51,Intel i5-1135G7,,8.0,256GB,568.05999832153,15.566583177768814,9891.0,10.6,274.03061690251087 -LPGIG00136,AORUS 5 KE4,Intel Core i7-12700H,GeForce RTX 3060,16.0,1TB,1999.0,54.77833898636706,26424.0,42.0,274.0287092864785 -LPASU00581OB,ExpertBook B1,Intel i5-1135G7,,8.0,256GB,569.05,15.566583177768814,9891.0,10.6,273.5538736098553 -LPHUA00036OB,MateBook D15,Intel i5-1135G7,Intel Iris Xe ,8.0,512GB,569.05,15.566583177768814,9891.0,10.6,273.5538736098553 -LPMSI00575,Modern 15,Intel i7-1255U,Intel Iris Xe,16.0,512GB,699.0,19.11058861683152,13772.0,12.1,273.3989787815669 -LPASU00561OB,ExpertBook B1,Intel Core i5-1135G7,Intel Iris Xe G7,8.0,256GB,569.89,15.566583177768814,9891.0,10.6,273.1506637731635 -LPASU00783OB,Zenbook 14 OLED,AMD Ryzen 7 5825U,,16.0,512GB,834.93999938965,22.704030740353097,18458.0,13.2,271.9240994197186 -LPASU00761,Vivobook Pro 16X OLED,Intel i9-13980HX,Geforce RTX 4070,32.0,1TB,2799.0,75.78978531872971,47994.0,51.7,270.7745098918532 -LPASU00786,Vivobook 16X,Intel i5-1235U,,8.0,512GB,649.0,17.54215206593702,13546.0,10.6,270.29510117006197 -LPASU00784,Vivobook 15 OLED,AMD Ryzen 7 7730U,,16.0,512GB,849.0,22.901857884831777,18824.0,13.2,269.75097626421416 -LPHEW02028,15-fc0040ca,AMD Ryzen 7 7730U,AMD Radeon ,16.0,1TB,849.0,22.901857884831777,18824.0,13.2,269.75097626421416 -LPLEN03493OB,Thinkbook T490,Intel i5-8365U,,16.0,256GB,359.1,9.546292114654515,6245.0,6.4,265.83937941115323 -LPLEN00715OB,,Intel Core i5-8365U,,16.0,256 GB,359.1,9.546292114654515,6245.0,6.4,265.83937941115323 -LPHEW02077,OMEN,AMD Ryzen 9 7940HS,GeForce RTX 4070,32.0,2TB,2499.0,66.38488828613687,30594.0,51.7,265.64581146913514 -LPLEN02718OB,,Intel Core i5-8350U,Intel UHD 620,16.0,256 GB,359.1,9.536022399503983,6226.0,6.4,265.55339458379234 -LPLEN03518OB,Thinkbook T480s,Intel i5-8350U,,16.0,256GB,359.1,9.536022399503983,6226.0,6.4,265.55339458379234 -LPASU00721,ROG Strix,AMD Ryzen 9 7945HX,RTX 4080,32.0,1TB,3499.0,92.57575757575758,55503.0,64.9,264.57775814734947 -LPACE00984OB,Aspire 3,Intel i5-1235U,,16.0,512GB,664.05,17.54215206593702,13546.0,10.6,264.16914488272 -LPLEN03212OB,IdeaPad 5,Intel Core i5-1235U,Intel Iris Xe,8.0,512GB,664.89,17.54215206593702,13546.0,10.6,263.8354023362815 -LPMSI00513,Katana GF76,Intel Core i7-12700H,GeForce RTX3070TI,16.0,1TB,2449.0,64.6130497301687,26424.0,52.2,263.8344211113463 -LPASU00770,GA402XZ-CS94,AMD Ryzen 9 7940HS,GeForce RTX 4080,16.0,1TB,2999.0,79.11216101340959,30594.0,64.9,263.7951350897285 -LPASU00766,Zenbook Pro 14,Intel i9-13900H,GeForce RTX 4070,32.0,1TB,2499.0,65.89464451552988,29687.0,51.7,263.68405168279264 -LPASU00724,ROG Zephyrus,Intel i9-13900H,GeForce RTX 4070,32.0,1TB,2499.0,65.89464451552988,29687.0,51.7,263.68405168279264 -LPGIG00155,AERO 16 OLED,Intel i9-13900H,GeForce RTX 4070,32.0,1TB,2499.0,65.89464451552988,29687.0,51.7,263.68405168279264 -LPMSI00563,Modern 15 Notebook,Intel i5-1155G7,Intel Iris Xe,16.0,512GB,599.0,15.775761060045445,10278.0,10.6,263.3682981643647 -LPLEN03312OB,T490,Intel i5-8265U,Intel UHD ,16.0,256GB,359.1,9.426298600790398,6023.0,6.4,262.4978724809356 -LPHEW02024OB,Consumer Notebook 17,Intel i5-1335U,Intel Iris Xe,8.0,1TB,739.94001464844,19.370701874055502,16929.0,10.6,261.78746236962064 -LPASU00621,GA503RS-XS92-CA,AMD Ryzen 9 6900HS,GeForce RTX 3080,32.0,1TB,2239.88,58.62124048688903,23901.0,47.4,261.71598695862735 -LPLEN03569,V14,Ryzen 5 5500U,,16.0,512GB,699.0,18.289053841628395,13144.0,11.6,261.6459777056995 -LPLEN03567OB,ThinkPad X1 Gen 3,Intel i7-8550U,N/A,16.0,256GB,359.1,9.375490536361449,5929.0,6.4,261.08300017714976 -LPCNO00061,Vivobook F Series,Intel i5-1135G7,,8.0,256GB,597.95999908447,15.566583177768814,9891.0,10.6,260.32816913510334 -LPASU00752OB,Vivobook 17,Intel i7-1165G7,Intel Iris Xe ,8.0,512GB,664.05,17.259337333117127,10347.0,12.1,259.9102075614356 -LPHUA00036,MateBook D15,Intel i5-1135G7,Intel Iris Xe ,8.0,512GB,599.0,15.566583177768814,9891.0,10.6,259.87617992936254 -LPASU00581,ExpertBook B1,Intel i5-1135G7,,8.0,256GB,599.0,15.566583177768814,9891.0,10.6,259.87617992936254 -LPASU00561,ExpertBook B1,Intel Core i5-1135G7,Intel Iris Xe G7,8.0,256GB,599.88,15.566583177768814,9891.0,10.6,259.49495195320424 -LPASU00726,GV302XU-DS91T-CA,AMD Ryzen 9 7940HS,RTX 4050,16.0,1TB,2199.0,56.935852473464685,30594.0,41.9,258.9170189789208 -LPGIG00144OB,AZF-B5US665SP,Intel Core i9-13900HX,RTX 4090,32.0,2TB,3644.8900085449,94.31057780660504,44977.0,72.6,258.74739041646797 -LPGIG00138,AERO 16,Intel Core i9-12900H,GeForce RTX 3080 Ti,32.0,2TB,2599.0,67.19440450169994,28524.0,53.7,258.53945556637143 -LPASU00727,GV601VU-DS91T-CA,Intel Core i9-13900H,RTX 4050,16.0,1TB,2199.0,56.44560870285768,29687.0,41.9,256.6876248424633 -LPHEW02099OB,17-cn3020ca,Intel i5-1335U,,16.0,512GB,759.05,19.370701874055502,16929.0,10.6,255.1966520526382 -LPLEN03611,21KJ000EUS,AMD Ryzen 7 7730U Octa-core (8 Core),,16.0,512 GB,899.0,22.901857884831777,18824.0,13.2,254.74814109935238 -LPASU00718,G634JZ-XS96,Intel i9-13980HX,RTX 4080,32.0,1TB,3499.0,88.51705804600243,47994.0,64.9,252.9781596056085 -LPACE00984,Aspire 3,Intel i5-1235U,,16.0,512GB,699.0,17.54215206593702,13546.0,10.6,250.96068763858398 -LPLEN03432OB,IdeaPad Flex 5,AMD Ryzen 5 7530U,,16.0,512GB,806.55,20.106793423272627,16507.0,11.6,249.2938246019792 -LPMSI00415,Stealth 15M,Intel Core i7-1260P,RTX3060,16.0,1TB,1999.0,49.809418387480505,17231.0,42.0,249.17167777629066 -LPHEW01543OB,Notebook,AMD Ryzen 7 5700U,AMD Radeon ,16.0,1TB,854.89,21.29653925340645,15854.0,13.2,249.11438025250558 -LPGIG00137OB,AERO 16,Intel Core i9-12900H,NVIDIA RTX 3080 Ti,64.0,2TB,2699.1,67.19440450169994,28524.0,53.7,248.95114853728995 -LPHEW02024,Consumer Notebook,Intel i5-1335U,Intel Iris Xe,8.0,1TB,778.88000488281,19.370701874055502,16929.0,10.6,248.69943704576173 -LPMSI00548,Vector GP78 HX,Intel i9-13950HX,GeForce RTX 4080,32.0,1TB,3499.0,86.86147186147186,44931.0,64.9,248.24656147891358 -LPACE00851OB,TravelMate P2,Intel Core i5-1135G7,Intel HD ,8.0,256GB,379.89,9.395784279697189,9891.0,4.2,247.32907630359284 -LPASU00752,Vivobook 17,Intel i7-1165G7,Intel Iris Xe ,8.0,512GB,699.0,17.259337333117127,10347.0,12.1,246.91469718336376 -LPHEW01967OB,ProBook 440 G9,Intel i5-1235U,,16.0,256GB,711.55,17.54215206593702,13546.0,10.6,246.53435550470127 -LPGIG00164,AORUS 17X,Intel i9-13980HX,GeForce RTX 4080,16.0,1TB,3599.0,88.51705804600243,47994.0,64.9,245.94903597110985 -LPHEW02101,14-ep0000ca,Intel i3-N305,,8.0,256GB,549.0,13.49239554171966,9978.0,8.4,245.7631246214874 -LPMSI00381OB,Prestige 14,Intel Core i7-1185G7,NVIDIA GeForce MX450,16.0,1TB,736.14,17.85277632971369,10553.0,12.6,242.51876449742838 -LPHEW02099,17-cn3020ca,Intel i5-1335U,,16.0,512GB,799.0,19.370701874055502,16929.0,10.6,242.43681945000628 -LPASU00764OB,Zenbook 15 OLED,AMD Ryzen 7 7735U,AMD Radeon ,16.0,1TB,1234.05,29.66663852434155,21350.0,18.8,240.40062010730156 -LPMSI00592,Stealth 14Studio,Intel i7-13620H,GeForce RTX 3050,16.0,512GB,1699.0,40.83275596896483,26489.0,27.5,240.33405514399547 -LPASU00759,H7604JI-XS91T-CA,Intel i9-13980HX,Geforce RTX 4070,32.0,1TB,3154.0,75.78978531872971,47994.0,51.7,240.2973535787245 -LPASU00722,G834JY-XS97,Intel i9-13980HX,RTX 4090,32.0,2TB,3999.0,95.94130047024485,47994.0,72.6,239.91322948298287 -LPLEN00715,ThinkPad T490,Intel i5-8365U,,16.0,256GB,399.0,9.546292114654515,6245.0,6.4,239.25544147003794 -LPLEN03493,,Intel i5-8365U,,16.0,256GB,399.0,9.546292114654515,6245.0,6.4,239.25544147003794 -LPACE00994,Vero,Intel i7-1255U,Intel Iris Xe ,16.0,1TB,799.0,19.11058861683152,13772.0,12.1,239.18133437836698 -LPLEN02718,ThinkPad T480,Intel Core i5-8350U,Intel UHD 620,16.0,256 GB,399.0,9.536022399503983,6226.0,6.4,238.9980551254131 -LPLEN03518,Thinkbook T480s,Intel i5-8350U,,16.0,256GB,399.0,9.536022399503983,6226.0,6.4,238.9980551254131 -LPLEN03268,ThinkPad T580,Intel Core i5-8350U,,16.0,256GB,399.88,9.536022399503983,6226.0,6.4,238.47210161808496 -LPMSI00549,Vector GP78HX,Intel i7-13700HX,GeForce RTX 4080,32.0,1TB,3399.0,81.01259882758181,34110.0,64.9,238.3424502135387 -LPLEN03403OB,T480s,Intel i7-8550U,Intel UHD 620,24.0,256GB,394.15999755859,9.375490536361449,5929.0,6.4,237.86002116990133 -LPLEN00182OB,ThinkPad T480s,Intel Core i7-8550U,,16.0,256 GB,394.15999755859,9.375490536361449,5929.0,6.4,237.86002116990133 -LPASU00540,VivoBook Pro 16X,AMD Ryzen 7 5800H,NVIDIA GeForce RTX 3050,16.0,512GB,1599.0,37.93615578519097,21130.0,27.5,237.2492544414695 -LPLEN03707,V15 G4,Intel i3-1315U,Intel UHD ,16.0,512GB,699.0,16.57426379900841,13004.0,9.9,237.11393131628625 -LPMSI00581,Modern 15,AMD Ryzen 5-7530U,,16.0,512GB,849.0,20.106793423272627,16507.0,11.6,236.8291333718802 -LPLEN03432,,AMD Ryzen 5 7530U,,16.0,512GB,849.0,20.106793423272627,16507.0,11.6,236.8291333718802 -LPHEW01543,15-ef2030ca,AMD Ryzen 7 5700U,AMD Radeon ,16.0,1TB,899.88,21.29653925340645,15854.0,13.2,236.65976856254665 -LPLEN03312,T490,Intel i5-8265U,Intel UHD ,16.0,256GB,399.0,9.426298600790398,6023.0,6.4,236.24808523284204 -LPLEN03578OB,Yoga L390,Intel i5-8365U,,16.0,256GB,404.1,9.546292114654515,6245.0,6.4,236.23588504465513 -LPLEN03202OB,ThinkPad X380 Yoga,Intel i5-8350U,Integrated,16.0,512GB,404.1,9.536022399503983,6226.0,6.4,235.98174708002924 -LPHEW02036,,Intel i9-13900HX,GeForce RTX 4090,32.0,2TB,3999.0,94.31057780660504,44977.0,72.6,235.83540336735444 -LPLEN03567,ThinkPad X1 Gen 3,Intel i7-8550U,,16.0,256GB,399.0,9.375490536361449,5929.0,6.4,234.97470015943478 -LPLEN02154OB,20WM0085US,Intel i5-1135G7,,8.0,256GB,664.05,15.566583177768814,9891.0,10.6,234.41884161989032 -LPHEW01967,ProBook 440 G9,Intel i5-1235U,,16.0,256GB,749.0,17.54215206593702,13546.0,10.6,234.20763772946623 -LPHUA00035OB,Matebook 14,Intel Core i5-1135G7,Intel Iris Xe ,16.0,512GB,664.89,15.566583177768814,9891.0,10.6,234.1226846210473 -LPHUA00042OB,Matebook D14,Intel i7-1360P,,16.0,1TB,949.05,22.103399816226148,19309.0,12.1,232.9002667533444 -LPASU00603OB,Vivobook 15,Intel Core i7-1165G7,Intel Iris Xe ,12.0,512GB,741.83999694824,17.259337333117127,10347.0,12.1,232.65579375765788 -LPASU00729,Zephyrus Duo,AMD Ryzen 9 7945HX,RTX 4080,32.0,1TB,3999.0,92.57575757575758,55503.0,64.9,231.49726825645806 -LPASU00735OB,Vivobook 16X,Intel i5-12500H,Iris Xe ,16.0,512GB,944.18999938965,21.852729872542067,21521.0,10.6,231.44419964909886 -LPHEW02012,Chromebook C204MA-SS02-CB,Intel Celeron-N4020,Intel UHD ,4.0,32GB eMMC,99.0,2.2873166114317693,1556.0,1.5,231.04208196280499 -LPLEN03299OB,ThinkPad T14 Gen 2,Intel Core i5-1135G7,GeForce MX450 2GB,8.0,256GB,759.89,17.494957833416198,9891.0,12.6,230.2301363804787 -LPACE00945OB,Aspire,Intel i5-10210U,,8.0,256GB,415.04000549316,9.537103422151405,6228.0,6.4,229.78756977461006 -LPASU00764,Zenbook 15 OLED,AMD Ryzen 7 7735U,AMD Radeon ,16.0,1TB,1299.0,29.66663852434155,21350.0,18.8,228.3805891019365 -LPASU00731,ROG Flow,Intel i9-13900H,RTX 4050,16.0,1TB,2499.0,56.44560870285768,29687.0,41.9,225.87278392500073 -LPGIG00137,AERO 16,Intel Core i9-12900H,RTX 3080 Ti,64.0,2TB,2999.0,67.19440450169994,28524.0,53.7,224.05603368356097 -LPMSI00554,Vector GP77,Intel i7-13700H,GeForce RTX 4070,16.0,1TB,2899.0,64.923345666819,27890.0,51.7,223.9508301718489 -LPHEW01739,ProBook 820 G3,Intel Core i7 6500U,Intel HD 520,16.0,256GB,299.0,6.687529957058386,3275.0,5.1,223.66320926616675 -LPMSI00550,Raider GE78HX,Intel i9-13980HX,GeForce RTX 4070,32.0,2TB,3399.0,75.78978531872971,47994.0,51.7,222.9767146770512 -LPSAS00117,Galaxy Book,Intel i5-1135G7,Intel Iris Xe ,8.0,256GB,699.0,15.566583177768814,9891.0,10.6,222.69789953889577 -LPLEN02154,20WM0085US,Intel i5-1135G7,,8.0,256GB,699.0,15.566583177768814,9891.0,10.6,222.69789953889577 -LPHUA00035,Matebook 14,Intel Core i5-1135G7,Intel Iris Xe ,16.0,512GB,699.88,15.566583177768814,9891.0,10.6,222.41788846329106 -LPLGE00019OB,gram,Intel i5-1155G7,Intel Iris Xe ,8.0,512GB,712.39,15.775761060045445,10278.0,10.6,221.4483788380725 -LPHUA00042,Matebook D14,Intel i7-1360P,,16.0,1TB,999.0,22.103399816226148,19309.0,12.1,221.25525341567717 -LPASU00603,Vivobook 15,Intel Core i7-1165G7,Intel Iris Xe ,12.0,512GB,780.88,17.259337333117127,10347.0,12.1,221.02419492261458 -LPASU00723,GA402NJ-DS71-CA,AMD Ryzen 7 7735HS,RTX 3050,16.0,512GB,1799.0,39.630118273705115,24264.0,27.5,220.28970691331355 -LPASU00735,Vivobook 16X,Intel i5-12500H,Iris Xe ,16.0,512GB,993.87999725342,21.852729872542067,21521.0,10.6,219.8729216095698 -LPLEN03685OB,IdeaPad Slim 3 15AMN8,AMD Ryzen 3 7320U,,8.0,256GB,426.55,9.335537368764074,9066.0,4.6,218.8615020223672 -LPASU00782OB,Vivobook Go,AMD Ryzen 3 7320U,,8.0,128GB,426.55,9.335537368764074,9066.0,4.6,218.8615020223672 -LPLEN03299,ThinkPad T14 Gen 2,Intel Core i5-1135G7,GeForce MX450 2GB,8.0,256GB,799.88,17.494957833416198,9891.0,12.6,218.7197808848352 -LPHUA00037OB,MateBook 14s,Intel Core i7-11370H,Intel Iris Xe ,16.0,512GB,824.49000038147,18.023079833522512,11760.0,12.1,218.59670614784537 -LPACE00945,Aspire A515-54-54B9,Intel i5-10210U,,8.0,256GB,436.88000488281,9.537103422151405,6228.0,6.4,218.30029563174142 -LPMSI00578,Modern 14,Intel i5-1335U,,16.0,512GB,899.0,19.370701874055502,16929.0,10.6,215.46943130206344 -LPHUA00039OB,MateBook 14s,i7-11370H,Intel Iris Xe ,16.0,512GB,838.82000030518,18.023079833522512,11760.0,12.1,214.8623045106858 -LPLEN00182,ThinkPad T480s,Intel Core i7-8550U,,16.0,256GB,437.96000671387,9.375490536361449,5929.0,6.4,214.07184200923365 -LPLEN03403,T480s,Intel i7-8550U,Intel UHD 620,24.0,256GB,437.96000671387,9.375490536361449,5929.0,6.4,214.07184200923365 -LPLEN03578,Yoga L390,Intel i5-8365U,,16.0,256GB,449.0,9.546292114654515,6245.0,6.4,212.61229654018965 -LPLEN03577OB,ThinkPad T480,Intel i5-8365U,,16.0,512GB,449.1,9.546292114654515,6245.0,6.4,212.56495467945922 -LPLEN03559OB,,Intel i5-8365U,Intel UHD 620,16.0,512GB,449.1,9.546292114654515,6245.0,6.4,212.56495467945922 -LPLEN03202,X380 Yoga,Intel i5-8350U,Integrated GPU,16.0,512GB,449.0,9.536022399503983,6226.0,6.4,212.38357237202635 -LPMSI00568OB,Modern,Intel i5-1235U,Intel Iris Xe,16.0,512GB,830.18999938965,17.54215206593702,13546.0,10.6,211.30285933140473 -LPMSI00576,CREATOR Z16,Intel i7-13700HX,GeForce RTX 4060,32.0,1TB,2999.0,63.07871453006114,34110.0,46.3,210.3324925977364 -LPASU00779OB,Zenbook 14X OLED,Intel i7-12700H,Intel Iris Xe,16.0,1TB,1234.05,25.949137884438677,26424.0,12.1,210.27622774149086 -LPLEN03552OB,X1 Yoga G4,Intel i5-8265U,,16.0,512GB,449.1,9.426298600790398,6023.0,6.4,209.89308841661983 -LPASU00559OB,Zenbook Notebook,Intel Core i5-1135G7,Intel Iris Xe ,8.0,256GB,741.83999328613,15.566583177768814,9891.0,10.6,209.83747598742272 -LPLEN03685,IdeaPad Slim 3 15AMN8,AMD Ryzen 3 7320U,,8.0,256GB,449.0,9.335537368764074,9066.0,4.6,207.91842692124885 -LPASU00782,Vivobook Go,AMD Ryzen 3 7320U,,8.0,128GB,449.0,9.335537368764074,9066.0,4.6,207.91842692124885 -LPASU00558,Zenbook Pro 15,AMD Ryzen 9 5900HX,NVIDIA GeForce RTX 3050Ti,16.0,512GB,1899.0,39.44779844377409,22678.0,28.2,207.72932303198573 -LPLGE00021OB,gram,Intel i5-1155G7,Intel Iris Xe ,8.0,512GB,759.89,15.775761060045445,10278.0,10.6,207.60585163701913 -LPMSI00552,Raider GE78HX,Intel i7-13700HX,GeForce RTX 4070,32.0,1TB,3299.0,68.28532610030908,34110.0,51.7,206.98795422949104 -LPACE00880OB,Aspire A515-54,Intel i7-10510U,,8.0,512GB,474.89,9.764118178110543,6648.0,6.4,205.60799718062168 -LPHEW01946OB,,Intel i5-1235U,,16.0,256GB,854.05,17.54215206593702,13546.0,10.6,205.39959095997915 -LPASU00560OB,ExpertBook B1,Intel i5-1135G7,,8.0,256GB,759.05,15.566583177768814,9891.0,10.6,205.0798126311681 -LPASU00736,GU604VY-XS97,Intel i9-13900H,RTX 4090,32.0,2TB,4199.0,86.04615966704502,29687.0,72.6,204.9205993499524 -LPHUA00038OB,Matebook 14,i5-1135G7,Intel Iris Xe ,16.0,512GB,759.89,15.566583177768814,9891.0,10.6,204.8531126580007 -LPGIG00163,AORUS 17X,Intel i9-13980HX,GeForce RTX 4090,32.0,2TB,4699.0,95.94130047024485,47994.0,72.6,204.17386778089988 -LPHUA00039,MateBook 14s,Intel i7-11370H,Intel Iris Xe ,16.0,512GB,882.95999992371,18.023079833522512,11760.0,12.1,204.12113612258486 -LPLEN03706,V15 G4,AMD Ryzen 5 5500U,Integrated graphics,16.0,512GB,899.0,18.289053841628395,13144.0,11.6,203.4377512973125 -LPMSI00583,,Intel i7-13700HX,GeForce RTX 4050,32.0,1TB,2899.0,58.83629028763689,34110.0,41.9,202.95374366207966 -LPMSI00589,Creator Z17HXStudio,Intel i9-13950HX,GeForce RTX 4060,32.0,1TB,3399.0,68.92758756395119,44931.0,46.3,202.7878422005037 -LPASU00767,Zenbook Pro 14 Duo OLED,Intel i9-13900H,GeForce RTX 4060,32.0,1TB,2999.0,60.68803294528193,29687.0,46.3,202.36089678320084 -LPLEN03301OB,IdeaPad Flex 5,Intel i7-1255U,,16.0,512GB,949.05,19.11058861683152,13772.0,12.1,201.36545615964937 -LPHEW01822OB,ProBook 450 G9,Intel i7-1255U,,16.0,512GB,949.05,19.11058861683152,13772.0,12.1,201.36545615964937 -LPLEN03600,21KK0009US,AMD Ryzen 5 7530U Hexa-core (6 Core),,16.0,512 GB,999.0,20.106793423272627,16507.0,11.6,201.26920343616246 -LPASU00707OB,Zenbook OLED,AMD Ryzen 7 7730U,AMD Radeon,16.0,1TB,1139.05,22.901857884831777,18824.0,13.2,201.06104108539378 -LPASU00728,Zephyrus Duo,AMD Ryzen 9 7945HX,RTX 4090,32.0,2TB,4999.0,100.0,55503.0,72.6,200.0400080016003 -LPASU00779,Zenbook 14X OLED,Intel i7-12700H,Intel Iris Xe,16.0,1TB,1299.0,25.949137884438677,26424.0,12.1,199.7624163544163 -LPASU00559,Zenbook Notebook,Intel Core i5-1135G7,Intel Iris Xe ,8.0,256GB,780.88000488281,15.566583177768814,9891.0,10.6,199.34667401433794 -LPMSI00498OB,SUMMIT E14,Intel i7-1280P,Iris Xe ,16.0,1TB,1141.7899938965,22.720123236581806,20450.0,12.1,198.98688338515362 -LPHEW02021OB,14-em0030ca,AMD Ryzen 3 7320U,Radeon ,8.0,256GB,474.05,9.335537368764074,9066.0,4.6,196.93149179968515 -LPMSI00551,Stealth 17Studio,Intel i7-13700H,GeForce RTX 4070,32.0,1TB,3299.0,64.923345666819,27890.0,51.7,196.7970465802334 -LPMSI00534,Raider GE78 HX,Intel i9-13980HX,GeForce RTX 4080,64.0,2TB,4499.0,88.51705804600243,47994.0,64.9,196.74829527895628 -LPLEN03428OB,IdeaPad Slim 3,AMD Ryzen 3 7320U,AMD Radeon 610M ,8.0,512GB,474.99,9.335537368764074,9066.0,4.6,196.54176653748655 -LPLEN03572,Legion Pro 7,Intel i9-13900HX,GeForce RTX 4090,32.0,2TB,4799.0,94.31057780660504,44977.0,72.6,196.52131237050438 -LPMSI00535,Stealth 17,Intel i9-13900H,GeForce RTX 4090,64.0,2TB,4399.0,86.04615966704502,29687.0,72.6,195.60390922265293 -LPACE00880,Aspire A515-54,Intel i7-10510U,,8.0,512GB,499.88,9.764118178110543,6648.0,6.4,195.32924258043016 -LPASU00780OB,Zenbook,Intel i7-12700H,,16.0,1TB,1329.05,25.949137884438677,26424.0,12.1,195.2457611409554 -LPLEN03055,ThinkBook 15 G4,Intel Core i5-1235U,,16.0,256GB,899.0,17.54215206593702,13546.0,10.6,195.1296114119802 -LPHEW01946,ProBook 450 G9,Intel i5-1235U,,16.0,256GB,899.0,17.54215206593702,13546.0,10.6,195.1296114119802 -LPASU00560,ExpertBook B1,Intel i5-1135G7,,8.0,256GB,799.0,15.566583177768814,9891.0,10.6,194.8258219996097 -LPHUA00038,Matebook 14,i5-1135G7,Intel Iris Xe ,16.0,512GB,799.88,15.566583177768814,9891.0,10.6,194.6114814443268 -LPLEN03564OB,ThinkPad X1,Intel i7-8650U,,16.0,256GB,494.1,9.56953410157414,6288.0,6.4,193.6760595339838 -LPLEN03338,ThinkPad T14s Gen 2,AMD Ryzen 5 PRO 5650U Hexa-core (6 Core) 2.30 GHz,,,256 GB,999.0,19.250082975188743,14922.0,11.6,192.6935232751626 -LPMSI00533,Raider GE78 HX,Intel i9-13980HX,GeForce RTX 4090,32.0,2TB,4999.0,95.94130047024485,47994.0,72.6,191.92098513751722 -LPLEN03559,ThinkPad T590,Intel i5-8365U,Intel UHD 620,16.0,512GB,499.0,9.546292114654515,6245.0,6.4,191.3084592115133 -LPLEN03577,ThinkPad T480,Intel i5-8365U,,16.0,512GB,499.0,9.546292114654515,6245.0,6.4,191.3084592115133 -LPLEN03301,IdeaPad Flex 5,Intel i7-1255U,,16.0,512GB,999.0,19.11058861683152,13772.0,12.1,191.2971833516669 -LPLEN03568,V14,Intel i7-1255U,,16.0,512GB,999.0,19.11058861683152,13772.0,12.1,191.2971833516669 -LPHEW01822,ProBook 450 G9,Intel i7-1255U,,16.0,512GB,999.0,19.11058861683152,13772.0,12.1,191.2971833516669 -LPLGE00015OB,Gram 2-in-1,Intel i7-1165G7,Intel Iris Xe ,16.0,512GB,902.39,17.259337333117127,10347.0,12.1,191.26250660044028 -LPASU00707,Zenbook,AMD Ryzen 7 7730U,AMD Radeon,16.0,1TB,1199.0,22.901857884831777,18824.0,13.2,191.00798903112408 -LPLEN03573OB,ThinkPad T490,Intel i7-8550U,Intel UHD 620,16.0,256GB,494.1,9.375490536361449,5929.0,6.4,189.74884712328372 -LPASU00768,Zenbook Pro 16X OLED,Intel i9-13905H,GeForce RTX 4080,32.0,1TB,4199.0,79.65753693903524,31603.0,64.9,189.70597032397055 -LPLEN03508,21JR001QUS,"AMD Ryzen 5 7530U (Hexa-core, 6 Core) ",,8.0,256 GB,1061.69,20.106793423272627,16507.0,11.6,189.38478673880914 -LPLEN03099,ThinkPad E15 Gen 4,AMD Ryzen 7 5825U Octa-core (8 Core) 2 GHz,AMD Radeon ,16.0,512GB,1199.0,22.704030740353097,18458.0,13.2,189.35805454839948 -LPLEN03552,X1 Yoga G4,Intel i5-8265U,,16.0,512GB,499.0,9.426298600790398,6023.0,6.4,188.90377957495787 -LPMSI00516,Modern 14 Business Notebook,Intel Core i5-1235U,Intel Iris Xe,8.0,512GB,929.0,17.54215206593702,13546.0,10.6,188.82833224905298 -LPACE00999,PTX17-71-99W5,Intel i9-13900HX,GeForce RTX 4090,64.0,2TB,4999.0,94.31057780660504,44977.0,72.6,188.65888739068822 -LPMSI00591,Stealth 16 AMG,Intel i9-13900H,GeForce RTX 4070,32.0,2TB,3499.0,65.89464451552988,29687.0,51.7,188.32421982146292 -LPHEW02021,Consumer Laptop 14,AMD Ryzen 3 7320U,Radeon ,8.0,256GB,499.0,9.335537368764074,9066.0,4.6,187.08491720970088 -LPLEN03428,IdeaPad Slim 3,AMD Ryzen 3 7320U,AMD Radeon 610M ,8.0,512GB,499.99,9.335537368764074,9066.0,4.6,186.71448166491479 -LPASU00780,Zenbook,Intel i7-12700H,,16.0,1TB,1399.0,25.949137884438677,26424.0,12.1,185.48347308390763 -LPSAS00150,Galaxy Book3 EVO,Intel i7-13700H,GeForce RTX 4050,16.0,512GB,2999.0,55.47430985414681,27890.0,41.9,184.97602485544115 -LPLGE00034,Gram,Intel i7-1360P,GeForce RTX 3050,16.0,1TB,1999.99,36.951884664711,19309.0,27.5,184.76034712529065 -LPASU00734OB,Zenbook 14X,Intel i7-1260P,GeForce MX550,16.0,512GB,1519.05,27.82594731310034,17231.0,19.2,183.1799303057855 -LPLEN02131,20Y70037US,AMD Ryzen 5 5500U,,8.0,256GB,999.0,18.289053841628395,13144.0,11.6,183.07361202831225 -LPLEN03521,,AMD Ryzen 5 7530U,,16.0,256GB,1099.0,20.106793423272627,16507.0,11.6,182.95535416990563 -LPLEN03429OB,IdeaPad Slim 3,AMD Ryzen 5 7520U,AMD Radeon 610M,8.0,512GB,522.49,9.556606500162376,9475.0,4.6,182.90506038703853 -LPHEW02045OB,"Consumer Laptop 17.3""",Intel i5-1135G7,Intel Iris Xe,16.0,512GB,854.05,15.566583177768814,9891.0,10.6,182.26782012492026 -LPHEW01834OB,EliteBook 640 G9,Intel i5-1245U,,16.0,512GB,961.35999755859,17.507018829895728,13481.0,10.6,182.10679531450717 -LPRAZ00059,Blade 14,AMD Ryzen 9 7940HS,GeForce RTX 4070,16.0,1TB,3649.0,66.38488828613687,30594.0,51.7,181.92624907135342 -LPLGE00026OB,Gram,Intel i7-1260P,Intel Iris Xe ,16.0,512GB,1162.6900030518,20.980217285552133,17231.0,12.1,180.44549476200686 -LPLGE00027OB,gram,Intel i5-1240P,Intel Iris Xe ,8.0,512GB,1109.4899984741,19.582041801626982,17320.0,10.6,176.49588395171193 -LPLEN03487OB,ThinkPad E16,Intel i7-1355U,,16.0,512GB,1139.05,19.93324685152154,15294.0,12.1,174.99887495300067 -LPLEN03564,ThinkPad X1,Intel i7-8650U,,16.0,256GB,549.0,9.56953410157414,6288.0,6.4,174.30845358058542 -LPASU00734,Zenbook 14X,Intel i7-1260P,GeForce MX550,16.0,512GB,1599.0,27.82594731310034,17231.0,19.2,174.0209337904962 -LPLEN03010,ThinkBook 14 G4,Intel i7-1255U,,16.0,512GB,1099.0,19.11058861683152,13772.0,12.1,173.8907062496044 -LPLEN03712,Yoga L390,Intel i5-8365U,,16.0,256GB,549.0,9.546292114654515,6245.0,6.4,173.88510227057404 -LPLEN03429,IdeaPad Slim 3,AMD Ryzen 5 7520U,AMD Radeon 610M,8.0,512GB,549.99,9.556606500162376,9475.0,4.6,173.7596410873357 -LPASU00800,Vivobook S 15 OLED,Intel i9-13900H,,16.0,1TB,1599.0,27.712826333711693,29687.0,12.1,173.31348551414442 -LPHEW02045,Consumer Laptop,Intel i5-1135G7,Intel Iris Xe,16.0,512GB,899.0,15.566583177768814,9891.0,10.6,173.15442911867424 -LPLEN03602,,Intel Core i5-1335U,,16.0,256GB,1119.2,19.370701874055502,16929.0,10.6,173.0763212478154 -LPHEW01834,EliteBook 640 G9,Intel i5-1245U,,16.0,512GB,1011.9599990845,17.507018829895728,13481.0,10.6,173.00109535687156 -LPLGE00025,gram,Intel i5-1240P,,8.0,512GB,1135.88,19.582041801626982,17320.0,10.6,172.39533931072808 -LPMSI00514OB,Summit E13 Flip Evo,Intel Core i7-1280P,Intel Iris Xe,16.0,1TB,1318.4899984741,22.720123236581806,20450.0,12.1,172.3192687307147 -LPLEN03544,21JR001RUS,Ryzen 5 7530U,,16.0,256 GB,1173.65,20.106793423272627,16507.0,11.6,171.3184801539865 -LPLEN03573,ThinkPad T490,Intel i7-8550U,Intel UHD 620,16.0,256GB,549.0,9.375490536361449,5929.0,6.4,170.77396241095536 -LPSAS00152,Galaxy Book3 EVO,Intel i7-13700H,GeForce RTX 4050,16.0,1TB,3269.0,55.47430985414681,27890.0,41.9,169.69810294936315 -LPHEW02023OB,Consumer Notebook,AMD Ryzen 5 7520U,AMD Radeon ,8.0,512GB,569.05,9.556606500162376,9475.0,4.6,167.93966259840747 -LPLGE00027,gram,Intel i5-1240P,Intel Iris Xe ,8.0,512GB,1167.88,19.582041801626982,17320.0,10.6,167.6716940235896 -LPDYA00003,C50-J,Intel Core i5-1135G7,Integrated GPU,8.0,256GB,929.0,15.566583177768814,9891.0,10.6,167.56278985757606 -LPHEW01833OB,EliteBook 650 G9,Intel i5-1245U,,16.0,256GB,1048.7599990845,17.507018829895728,13481.0,10.6,166.93064995974512 -LPACE00491,Aspire 5,Intel i7-10510U,Intel UHD 620 graphics,8.0,512GB,585.88,9.764118178110543,6648.0,6.4,166.65730487660514 -LPLEN03487,21JN0073US,Intel i7-1355U,,16.0,512GB,1199.0,19.93324685152154,15294.0,12.1,166.24893120535066 -LPMSI00590,Modern 14,Intel i7-1355U,,16.0,1TB,1199.0,19.93324685152154,15294.0,12.1,166.24893120535066 -LPMSI00587,CreatorPro M16,Intel i7-13700H,NVIDIA RTX A1000,32.0,1TB,2399.0,39.66163767783828,27890.0,25.5,165.32570936989697 -LPLEN02397OB,,Intel i5-1135G7,Intel Iris Xe ,8.0,256GB,949.89,15.566583177768814,9891.0,10.6,163.8777456102161 -LPLEN03708,V15 G4,Intel i5-1335U,,16.0,1TB,1199.0,19.370701874055502,16929.0,10.6,161.55714657260634 -LPASU00765OB,Zenbook S 13 OLED EVO,Intel i7-1355U,,16.0,1TB,1234.05,19.93324685152154,15294.0,12.1,161.52706009903602 -LPMSI00379,Modern 14,Intel Core i7-1195G7,Intel Iris Xe,8.0,512GB,1099.0,17.63066861250743,11034.0,12.1,160.42464615566362 -LPRAZ00055,Blade 15,Intel Core i7-12800H,GeForce RTX 3070 Ti,16.0,1TB,3999.0,63.82768677681483,24971.0,52.2,159.60911922184252 -LPHEW02023,Consumer Notebook 14,AMD Ryzen 5 7520U,AMD Radeon ,8.0,512GB,599.0,9.556606500162376,9475.0,4.6,159.54267946848708 -LPHEW01833,EliteBook 650 G9,Intel i5-1245U,,16.0,256GB,1103.9599990845,17.507018829895728,13481.0,10.6,158.58381503328087 -LPDYA00005,C50-J,Intel Core i7-1165G7,Integrated GPU,8.0,256GB,1089.0,17.259337333117127,10347.0,12.1,158.48794612596078 -LPMSI00532,TITAN GT77,Intel i9-13980HX,GeForce RTX 4080,64.0,2TB,5599.0,88.51705804600243,47994.0,64.9,158.09440622611615 -LPMSI00597,Prestige 13 EVO,Intel i7-1360P,,16.0,512GB,1399.0,22.103399816226148,19309.0,12.1,157.99428031612686 -LPCNO00054,ThinkPad E15 Gen 2,Intel Core i5-1135G7,Intel Iris Xe ,8.0,256GB,999.0,15.566583177768814,9891.0,10.6,155.82165343111927 -LPACE00948,A317-53-591M,Intel i5-1135G7,Integrated GPU,8.0,512GB,999.0,15.566583177768814,9891.0,10.6,155.82165343111927 -LPLEN03427,IdeaPad 1 15AMN7,AMD Athlon Gold 7220U,AMD Radeon 610M ,4.0,128GB,449.99,7.001609472974657,4748.0,4.6,155.59477928342088 -LPLEN03042OB,ThinkBook 15 G4,Intel Core i7-1255U,,16.0,512GB,1234.05,19.11058861683152,13772.0,12.1,154.8607318733562 -LPLGE00024OB,Gram,Intel i7-1260P,Intel Iris Xe ,16.0,512GB,1355.5400015259,20.980217285552133,17231.0,12.1,154.7738706488572 -LPHEW02083OB,EliteBook 640 G9,Intel i5-1245U,,16.0,512GB,1136.1600006104,17.507018829895728,13481.0,10.6,154.08937843692888 -LPASU00765,Zenbook S 13 OLED EVO,Intel i7-1355U,,16.0,1TB,1299.0,19.93324685152154,15294.0,12.1,153.45070709408424 -LPMSI00531OB,TITAN GT77,Intel i9-13980HX,GeForce RTX 4090,128.0,4TB,6299.1,95.94130047024485,47994.0,72.6,152.3095370294881 -LPLEN03474,ThinkPad E16,Intel i5-1335U,,16.0,256GB,1299.0,19.370701874055502,16929.0,10.6,149.12010680566206 -LPLEN03462,ThinkBook 14s Yoga,Intel Core i5-1335U,,16.0,256GB,1299.0,19.370701874055502,16929.0,10.6,149.12010680566206 -LPHEW01997OB,ENVY X360,Intel i7-1250U,,16.0,1TB,1234.05,18.380357818496297,12421.0,12.1,148.9433800777626 -LPASU00547OB,Vivobook 13,Intel Pentium Silver N6000,Intel UHD ,4.0,128GB,332.39,4.947876393547635,3089.0,3.4,148.8575586975431 -LPLEN03522,ThinkBook 15 G4,AMD Ryzen 5 5625U,,16.0,256GB,1299.0,19.33440274168785,15078.0,11.6,148.84066775741223 -LPMSI00544,Titan Gaming Notebook,Intel i9-13980HX,GeForce RTX 4090,64.0,2TB,6449.0,95.94130047024485,47994.0,72.6,148.7692672821288 -LPLEN03710,,Intel i5-10310U,,16.0,512GB,649.0,9.64952977748355,6436.0,6.4,148.68304741885288 -LPMSI00588,Prestige 16EVO,Intel i7-13700H,,32.0,1TB,1799.0,26.74152748500081,27890.0,12.1,148.64662304058263 -LPASU00649,P1512CEA,Intel Core i5-1135G7,Intel UHD ,8.0,512GB,1049.0,15.566583177768814,9891.0,10.6,148.39450121800587 -LPASU00647,P1512CEA,Intel Core i5-1135G7,Intel UHD ,8.0,512GB,1049.0,15.566583177768814,9891.0,10.6,148.39450121800587 -LPDYA00004,C50-J,Intel Core i5-1135G7,Integrated GPU,8.0,512GB,1049.0,15.566583177768814,9891.0,10.6,148.39450121800587 -LPLGE00032,Gram EVO,Intel i7-1360P,Intel Iris Xe,16.0,512GB,1499.0,22.103399816226148,19309.0,12.1,147.45430164260273 -LPLEN03711,X1 Carbon,Intel i7-8665U,,16.0,256GB,649.0,9.552237739215348,6256.0,6.4,147.1839405117927 -LPLEN03042,ThinkBook 15 G4,Intel Core i7-1255U,,16.0,512GB,1299.0,19.11058861683152,13772.0,12.1,147.11769527968838 -LPLEN03221,ThinkPad L13 Yoga,Intel Core i7-1255U,,16.0,512GB,1299.0,19.11058861683152,13772.0,12.1,147.11769527968838 -LPASU00763OB,Vivobook S 16 Flip,Intel i5-1335U,Intel HD ,16.0,512GB,901.55,13.199902975983877,16929.0,4.2,146.41343215555295 -LPHEW02083,EliteBook 640 G9,Intel i5-1245U,,16.0,512GB,1195.9599990845,17.507018829895728,13481.0,10.6,146.38465202261983 -LPLGE00030OB,Gram,Intel i7-1360P,Intel Iris Xe,16.0,512GB,1519.05,22.103399816226148,19309.0,12.1,145.50804658323395 -LPLGE00033OB,Gram EVO,Intel i7-1360P,Intel Iris Xe,16.0,512GB,1519.05,22.103399816226148,19309.0,12.1,145.50804658323395 -LPLGE00031OB,Gram EVO,Intel i7-1360P,Intel Iris Xe,16.0,512GB,1519.99,22.103399816226148,19309.0,12.1,145.4180607518875 -LPRAZ00054,Razer Blade 14,AMD Ryzen 9 6900HX,GeForce RTX 3080Ti,16.0,1TB,4499.0,65.22856481735855,24887.0,53.7,144.9845850574762 -LPLEN03476,14s Yoga G3,Intel Core i7-1355U,,16.0,512GB,1379.9599990845,19.93324685152154,15294.0,12.1,144.44800475916517 -LPDYA00006,C50-J,Intel Core i7-1165G7,Integrated,8.0,512GB,1199.0,17.259337333117127,10347.0,12.1,143.94776758229463 -LPLEN03502OB,IdeaPad Slim 3,AMD Ryzen 5 7520U,,16.0,512GB,664.05,9.556606500162376,9475.0,4.6,143.9139597946296 -LPLEN03709,V15 G4,Intel i7-1355U,,16.0,1TB,1399.0,19.93324685152154,15294.0,12.1,142.4821075877165 -LPHEW01997,ENVY X360,Intel i7-1250U,,16.0,1TB,1299.0,18.380357818496297,12421.0,12.1,141.4962110738745 -LPASU00547,Vivobook 13 Slate Notebook,Intel Pentium Silver N6000,Intel UHD ,4.0,128GB,349.88,4.947876393547635,3089.0,3.4,141.41638257538685 -LPASU00665,Zenbook Pro,Intel Core i9-12900H,GeForce RTX 3060,32.0,1TB,3999.0,55.91341276616274,28524.0,42.0,139.8184865370411 -LPMSI00586,CreatorPro Z16HXStudio,Intel i9-13950HX,NVIDIA RTX A2000,32.0,1TB,3799.0,52.922077922077925,44931.0,29.7,139.305285396362 -LPASU00763,Vivobook S 16 Flip,Intel i5-1335U,Intel HD ,16.0,512GB,949.0,13.199902975983877,16929.0,4.2,139.09276054777533 -LPLEN03471,ThinkPad E14,Intel i5-1335U,,16.0,512GB,1399.0,19.370701874055502,16929.0,10.6,138.46105699825233 -LPLEN03497,ThinkPad X1 Carbon,Intel i5-1335U,,16.0,256GB,1399.0,19.370701874055502,16929.0,10.6,138.46105699825233 -LPLGE00033,Gram EVO,Intel i7-1360P,Intel Iris Xe,16.0,512GB,1599.0,22.103399816226148,19309.0,12.1,138.23264425407223 -LPLGE00030,Gram,Intel i7-1360P,Intel Iris Xe,16.0,512GB,1599.0,22.103399816226148,19309.0,12.1,138.23264425407223 -LPLGE00031,Gram EVO,Intel i7-1360P,Intel Iris Xe,16.0,512GB,1599.99,22.103399816226148,19309.0,12.1,138.14711227086514 -LPMSI00585,CreatorPro Z17HX Studio,Intel i9-13950HX,NVIDIA RTX A3000,32.0,1TB,3999.0,55.23612750885478,44931.0,32.1,138.1248499846331 -LPMSI00577OB,Prestige 13 Evo,Intel i7-1360P,,32.0,1TB,1604.55,22.103399816226148,19309.0,12.1,137.754509465122 -LPMSI00531,TITAN GT77,Intel i9-13980HX,GeForce RTX 4090,128.0,4TB,6999.0,95.94130047024485,47994.0,72.6,137.07858332653927 -LPLEN03502,IdeaPad Slim 3,AMD Ryzen 5 7520U,,16.0,512GB,699.0,9.556606500162376,9475.0,4.6,136.71826180489808 -LPLGE00028OB,Gram EVO,Intel i7-1260P,Intel Iris Xe ,16.0,512GB,1538.89,20.980217285552133,17231.0,12.1,136.3334434920763 -LPLEN01849OB,ThinkPad X1 Nano EVO,Intel Core i7-1160G7,,16.0,512GB,1234.05,16.62477703907897,9173.0,12.1,134.71720788524752 -LPLEN03339,ThinkPad T14s Gen 2,AMD Ryzen 5 PRO 5650U,,8.0,256GB,1430.2,19.250082975188743,14922.0,11.6,134.59714008662246 -LPGIG00125,AERO 16 YE4,Intel Core i9-12900H,NVIDIA GeForce RTX 3080 Ti,32.0,2TB,4999.0,67.19440450169994,28524.0,53.7,134.41569214182823 -LPLEN03512,ThinkBook 14s Yoga G3,Intel Core i7-1355U,,16.0,512GB,1499.0,19.93324685152154,15294.0,12.1,132.97696365257866 -LPMSI00577,Prestige 13 Evo,Intel i7-1360P,,32.0,1TB,1689.0,22.103399816226148,19309.0,12.1,130.86678399186587 -LPASU00623,,AMD Ryzen 9 6900HX,NVIDIA GeForce RTX 3080 Ti,64.0,1TB,4999.0,65.22856481735855,24887.0,53.7,130.48322627997308 -LPASU00565,ExpertBook B5,Intel Core i5-1135G7,Intel Iris Xe G7,16.0,256GB,1199.0,15.566583177768814,9891.0,10.6,129.82971791300093 -LPLGE00028,Gram EVO,Intel i7-1260P,Intel Iris Xe ,16.0,512GB,1619.88,20.980217285552133,17231.0,12.1,129.517107968196 -LPSAS00158,Galaxy Book3 360 EVO,Intel i5-1335U,,8.0,256GB,1499.0,19.370701874055502,16929.0,10.6,129.22416193499336 -LPLEN03546,E14,Intel i7-1355U,,16.0,512GB,1599.0,19.93324685152154,15294.0,12.1,124.66070576311157 -LPLEN02112,ThinkBook 14s Yoga ITL,Intel i5-1135G7,Intel Iris Xe ,8.0,256GB,1249.0,15.566583177768814,9891.0,10.6,124.63237131920589 -LPLEN02056,IdeaPad Slim 7i,Intel i5-1135G7,Intel Iris Xe ,8.0,512GB,1259.99,15.566583177768814,9891.0,10.6,123.54529145285926 -LPASU00650,,Intel Core i7-1165G7,Intel Iris Xe ,16.0,1TB,1399.0,17.259337333117127,10347.0,12.1,123.36910173779219 -LPASU00651,P1512CEA,Intel Core i7-1165G7,Intel Iris Xe ,16.0,1TB,1399.0,17.259337333117127,10347.0,12.1,123.36910173779219 -LPASU00562,ExpertBook B1,Intel Core i7-1165G7,Intel Iris Xe G7,12.0,512GB,1399.0,17.259337333117127,10347.0,12.1,123.36910173779219 -LPASU00564,ExpertBook B1,Intel Core i7-1165G7,Intel Iris Xe G7,12.0,512GB,1399.0,17.259337333117127,10347.0,12.1,123.36910173779219 -LPDYA00028,Tecra,Intel i5-1240P,,16.0,256GB,1599.0,19.582041801626982,17320.0,10.6,122.464301448574 -LPDYA00033,Tecra,Intel i7-1260P,,16.0,256GB,1749.0,20.980217285552133,17231.0,12.1,119.95550191853707 -LPDYA00029,Tecra,Intel i7-1260P,,16.0,256GB,1749.99,20.980217285552133,17231.0,12.1,119.88764098967498 -LPACE00942,A315-56-54YT,Intel Core i5-1035G1,Integrated Graphic,8.0,256GB,749.0,8.949569846794075,7460.0,5.1,119.4869138423775 -LPMSI00527,CreatorPro,Intel i7-12700H,NVIDIA RTX A5500,32.0,1TB,5299.0,60.2742067549621,26424.0,47.7,113.74637998671844 -LPHEW01837,OMEN 16,AMD Ryzen 5 5600H,Radeon ,16.0,1TB,1799.0,20.423533058967998,17093.0,11.6,113.52714318492494 -LPASU00592,Vivobook 15,AMD Ryzen 3 3250U,AMD Radeon ,8.0,128GB,499.0,5.651164265858312,3855.0,3.7,113.24978488694012 -LPMSI00528,CreatorPro,Intel i7-12700H,RTX A3000,32.0,1TB,3999.0,45.232884440912514,26424.0,32.1,113.1104887244624 -LPLEN01757,ThinkBook 15 G2 ITL,Intel Core i7-1165G7 Quad-core (4 Core) 2.80 GHz,Intel UHD ,16.0,512 GB,1549.0,17.259337333117127,10347.0,12.1,111.42244889036235 -LPHEW02090,ProBook 440,Intel i7-1355U,,16.0,512GB,1799.0,19.93324685152154,15294.0,12.1,110.80181685114809 -LPLEN03307,ThinkPad T14 Gen 2,Intel Core i5-1135G7,MX450 2GB,16.0,256GB,1599.0,17.494957833416198,9891.0,12.6,109.41186887689929 -LPLEN03517OB,ThinkPad X1 Carbon EVO,Intel i7-1365U,,32.0,512GB,1899.05,20.018107129344358,15451.0,12.1,105.41116415757541 -LPSAS00157,Galaxy Book3 360 EVO,Intel i7-1355U,,16.0,512GB,1899.0,19.93324685152154,15294.0,12.1,104.96707136135619 -LPASU00743,Zenbook S 13 Flip,Intel i7-1260P,,16.0,1TB,1999.0,20.980217285552133,17231.0,12.1,104.95356320936534 -LPLEN02684OB,20UB0067US,Intel Core i5-10210U,,16.0,256 GB,931.92000068665,9.537103422151405,6228.0,6.4,102.3382201811781 -LPLEN03517,ThinkPad X1 Carbon EVO,Intel i7-1365U,,32.0,512GB,1999.0,20.018107129344358,15451.0,12.1,100.14060594969665 -LPSAS00112,Galaxy Book Pro,Intel i7-1165G7,Iris Xe ,8.0,512GB,1730.0,17.259337333117127,10347.0,12.1,99.76495568275796 -LPSAS00116,Galaxy Book Pro,Intel i7-1165G7,Intel Iris Xe ,8.0,256GB,1730.0,17.259337333117127,10347.0,12.1,99.76495568275796 -LPLEN03138,Business Notebook,Intel i5-1145G7,Intel Iris Xe,16.0,512GB,1599.88,15.60928357234208,9970.0,10.6,97.56533972761757 -LPSAS00114,Galaxy Book Pro,Intel i5-1135G7,Iris Xe ,8.0,256GB,1600.0,15.566583177768814,9891.0,10.6,97.29114486105509 -LPSAS00113,Galaxy Book Pro,Intel i5-1135G7,Intel Iris Xe ,8.0,512GB,1600.0,15.566583177768814,9891.0,10.6,97.29114486105509 -LPLEN03308,ThinkPad T14 Gen 2,Intel Core i5-1135G7,MX450 2GB,16.0,256GB + 512GB,1799.0,17.494957833416198,9891.0,12.6,97.24823698396996 -LPLEN02684,ThinkPad X1 Yoga Gen 5,Intel Core i5-10210U,,16.0,256GB,980.95999992371,9.537103422151405,6228.0,6.4,97.2221438477931 -LPLGE00035,Gram,Intel i7-1360P,Intel Iris Xe,16.0,512GB,2299.99,22.103399816226148,19309.0,12.1,96.10215616687965 -LPLEN01858,20TA0025US,Intel Core i7 i7-1165G7,,8.0,512 GB,1805.7,17.259337333117127,10347.0,12.1,95.58252939645084 -LPASU00591OB,L510MA-DS09-CA,Intel Celeron N4020,Intel UHD 600,4.0,64GB,246.05,2.2873166114317693,1556.0,1.5,92.96145545343505 -LPSAS00111,Galaxy Book Pro,Intel i7-1165G7,Iris Xe ,8.0,512GB,1870.0,17.259337333117127,10347.0,12.1,92.29592156747127 -LPASU00590OB,Vivobook 14 Flip,Intel Celeron N4500,Intel UHD ,4.0,128GB,474.05,4.3608810959961515,2003.0,3.4,91.99200708777873 -LPLEN02741,20W400K3US,Intel i5-1145G7,Intel Iris Xe,16.0,512GB,1720.9,15.60928357234208,9970.0,10.6,90.70418718311396 -LPSAS00115,Galaxy Book Pro,Intel i5-1135G7,Intel Iris Xe ,8.0,512GB,1730.0,15.566583177768814,9891.0,10.6,89.98024958247869 -LPSAS00156,Galaxy Book3 Pro 360 EVO,Intel i7-1360P,,16.0,1TB,2499.0,22.103399816226148,19309.0,12.1,88.44897885644717 -LPASU00591,Vivobook Go,Intel Celeron N4020,Intel UHD 600,4.0,64GB,259.0,2.2873166114317693,1556.0,1.5,88.31338268076331 -LPASU00590,Vivobook 14 Flip Notebook,Intel Celeron N4500,Intel UHD ,4.0,128GB,499.0,4.3608810959961515,2003.0,3.4,87.3924067333898 -LPASU00762OB,Vivobook Slate,Intel Pentium Silver Processor N6000,Intel UHD ,8.0,128GB,569.05,4.947876393547635,3089.0,3.4,86.94976528508278 -LPLEN03526,,Intel i5-1335U,,16.0,512GB,2249.42,19.370701874055502,16929.0,10.6,86.11420665796294 -LPASU00762,Vivobook Slate,Intel Pentium Silver Processor N6000,Intel UHD ,8.0,128GB,599.0,4.947876393547635,3089.0,3.4,82.60227702082864 -LPLEN02071,ThinkPad X13 Yoga Gen 2,Intel Core i5 (11th Gen) i5-1135G7 Quad-core,Intel Iris Xe ,8.0,256 GB,2019.0,15.566583177768814,9891.0,10.6,77.10046150455084 -LPLEN03465,ThinkPad X1 Yoga EVO,Intel i5-1335U,,16.0,256GB,2534.06,19.370701874055502,16929.0,10.6,76.44137026769494 -LPLEN01870,20UN000AUS,Intel Core i7-1160G7 EVO Quad-core,Intel Iris Xe ,16.0,256 GB,2399.88,16.62477703907897,9173.0,12.1,69.27336799789559 -LPLEN03478,ThinkPad X1 Yoga Gen 8,Intel i7-1355U,,16.0,512 GB,2884.39,19.93324685152154,15294.0,12.1,69.10732200403392 -LPLEN03495,ThinkPad X13 Yoga,Intel i5-10310U,,16.0,256GB,1499.0,9.64952977748355,6436.0,6.4,64.3731139258409 -LPASU00810,Chromebook Flip C434,Intel m3-8100Y,,4.0,64GB Flash Memory,699.0,4.447613061791165,2877.0,3.0,63.62822692118977 -LPASU00227,Chromebook Flip C434,Intel m3-8100Y,,4.0,64GB Flash Memory,699.0,4.447613061791165,2877.0,3.0,63.62822692118977 -LPLEN02299,ThinkPad X13 Yoga Gen 2,Intel Core i7 (11th Gen) i7-1165G7 Quad-core,Intel Iris Xe ,16.0,256GB,2892.49,17.259337333117127,10347.0,12.1,59.669479697828265 diff --git a/PCData/data/computed/canada_computers_laptops_bench_0.3.html b/PCData/data/computed/canada_computers_laptops_bench_0.3.html deleted file mode 100644 index 816d49d..0000000 --- a/PCData/data/computed/canada_computers_laptops_bench_0.3.html +++ /dev/null @@ -1,11262 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 item_idModelCPUGPURAMStoragepricebenchcpu_benchgpu_benchvalue
531LPMSI00429OBKatana GF66Intel Core i7-11800HRTX306016512GB$ 78652%20,75342.0658
452LPCOI00001OBVOYAGER Gaming NotebookAMD Ryzen 7 6800HSRadeon 6800M161TB$ 99065%22,94754.6657
401LPGIG00147OBG5 KF-E3US333SHIntel i5-12500HGeForce RTX 40608512GB$ 89956%21,52146.3626
367LPGIG00160OBG5 Gaming NotebookIntel i5-12450HGeForce RTX 405016512GB$ 80950%17,45641.9616
360LPGIG00135OBAERO 16 XE4Intel Core i7-12700HGeForce RTX 3070 Ti162TB$ 1,07965%26,42452.2599
210LPHEW02076OBVictus Gaming NotebookAMD Ryzen 5 7640HSGeForce RTX 405016512GB$ 89953%23,39041.9590
434LPGIG00142OBG5 KE-52US213SHIntel i5-12500HGeForce RTX 306016512GB$ 90052%21,52142.0579
224LPGIG00162OBG5 KFIntel i7-12650HGeForce RTX 406016512GB$ 98957%23,28146.3579
258LPACE00980OBNitro 5AMD Ryzen 7 5800HGeForce RTX 306016512GB$ 89952%21,13042.0577
532LPASU00584OBTUF Gaming NotebookRyzen 7 5800HGeForce RTX 306016512GB$ 90052%21,13042.0577
498LPMSI00467OBCrosshair 15Intel Core i7-12700HRTX3070Ti16512GB$ 1,12965%26,42452.2572
111LPGIG00147G5Intel i5-12500HGeForce RTX 40608512GB$ 99956%21,52146.3563
263LPACE00968OBNitro 5Intel i5-12450HGeForce RTX 406016512GB$ 98954%17,45646.3547
462LPACE00912OBNitro 5Intel Core i5-11400HGTX 16508256GB$ 52629%15,82220.8543
429LPMSI00530OBKatana GF66Intel i5-11400HGeForce RTX 30508512GB$ 65135%15,82227.5538
533LPACE00877OBNitro 5Intel i7-11800HNVIDIA GeForce RTX306016512GB$ 96152%20,75342.0538
47LPHEW02076Victus Gaming NotebookAMD Ryzen 5 7640HSGeForce RTX 405016512GB$ 99953%23,39041.9531
484LPGIG00133OBA5 K1AMD Ryzen 5 5600HGeForce RTX 306016512GB$ 93750%17,09342.0531
326LPMSI00559OBThin GF63Intel i7-12650HGeForce RTX 406016512GB$ 1,07957%23,28146.3530
495LPHEW01865OBOmen 16-b0020caIntel Core i7-11800HNVIDIA GeForce RTX 3070161TB$ 1,09257%20,75348.0527
4LPGIG00162G5 KFIntel i7-12650HGeForce RTX 406016512GB$ 1,09957%23,28146.3521
8LPACE00980Nitro 5AMD Ryzen 7 5800HGeForce RTX 306016512GB$ 99952%21,13042.0520
493LPMSI00504OBGP66 LeopardIntel Core i7-11800HNVIDIA RTX307016512GB$ 1,11457%20,75348.0516
310LPACE00967OBNitro 5Intel i9-12900HGeForce RTX 4060161TB$ 1,16960%28,52446.3514
134LPHEW02079Victus 16AMD Ryzen 7 7840HSGeForce RTX 4060161TB$ 1,19960%28,88746.3503
347LPMSI00560OBThin GF63Intel i5-12450HGeForce RTX 406016512GB$ 1,07954%17,45646.3501
14LPACE00968Nitro 5Intel i5-12450HGeForce RTX 406016512GB$ 1,09954%17,45646.3492
588LPACE00816NitroIntel i5-11400HNVIDIA GeForce RTX 30508512GB$ 71635%15,82227.5490
322LPMSI00496OBGF63 11UC-692Intel i5-11400HNVIDIA RTX30508512GB$ 71935%15,82227.5488
542LPACE00877Nitro 5Intel i7-11800HNVIDIA GeForce RTX306016512GB$ 1,06852%20,75342.0484
243LPHEW02095OBVictus 15-fb1010caAMD Ryzen 5 7535HSGeForce RTX 20508512GB$ 62930%18,44521.2483
175LPHEW02058Victus 15-fa1000caIntel i5-13500HGeForce RTX 405016512GB$ 1,09953%23,28941.9482
414LPGIG00124OBAERO 16 XE5Intel Core i7-12700HNVIDIA GeForce RTX 3070 Ti322 TB$ 1,35065%26,42452.2479
113LPMSI00559Thin GF63Intel i7-12650HGeForce RTX 406016512GB$ 1,19957%23,28146.3477
264LPHEW02087OBVictus 15-fb0000caAMD Ryzen 5 5600HGeForce RTX 3050 Ti16512GB$ 76436%17,09328.2477
299LPMSI00572OBThin GF63Intel i5-12450HGeForce RTX 20508512GB$ 62930%17,45621.2475
362LPHEW02035OBOmen 16-wd0010caIntel i7-13620HGeForce RTX 4060161TB$ 1,25959%26,48946.3468
206LPLEN03469OBLegion Pro 5iIntel i7-13700HXGeForce RTX 406016512GB$ 1,34963%34,11046.3468
339LPLEN03434OBNoneAMD Ryzen 7 7745HXGeForce RTX 406016512GB$ 1,34962%32,90946.3463
1LPACE00967Nitro 5Intel i9-12900HGeForce RTX 4060161TB$ 1,29960%28,52446.3462
487LPACE00896OBA715AMD Ryzen 7 5700URTX305016512GB$ 76435%15,85427.5459
319LPMSI00564OBBravo 15AMD Ryzen 7 7735HSGeForce RTX 4060321TB$ 1,25958%24,26446.3459
411LPACE00953Nitro Gaming Notebook AMD Ryzen R5-7535HSGeForce RTX 30508512GB$ 79936%18,44527.5457
406LPMSI00539OBKatana 15Intel i7-12650HGeForce RTX 4060161TB$ 1,25957%23,28146.3454
341LPACE00956OBNitro 5Intel i7-12650HGeForce RTX 406016512GB$ 1,25957%23,28146.3454
50LPMSI00560Thin GF63Intel i5-12450HGeForce RTX 406016512GB$ 1,19954%17,45646.3451
298LPASU00715OBTUF F15Intel i9-13900HGeForce RTX 4060161TB$ 1,34961%29,68746.3450
383LPASU00688OBTUF Gaming F15Intel Core i9-13900HGeForce RTX 405016512GB$ 1,25956%29,68741.9448
354LPASU00686OBTUF Gaming NotebookAMD Ryzen 7 7735HSAMD Radeon RX 7600S161TB$ 1,34960%24,26448.9447
332LPLEN03438OBLegion Pro 5AMD Ryzen 7 7745HXGeForce RTX 407016512GB$ 1,52968%32,90951.7442
132LPMSI00496GF63Intel i5-11400HRTX30508512GB$ 79935%15,82227.5439
65LPASU00787FX506HCB-DB59-CAIntel i5-11400HGeForce RTX 30508512GB$ 79935%15,82227.5439
193LPASU00809OBROG Strix G16Intel i9-13980HXGeForce RTX 4060161TB$ 1,61971%47,99446.3436
114LPHEW02095Victus 15-fb1010caAMD Ryzen 5 7535HSGeForce RTX 20508512GB$ 69930%18,44521.2435
358LPMSI00541OBThin GF63Intel i7-12650HGeForce RTX 305016512GB$ 89939%23,28127.5435
402LPLEN03269OBIdeaPad 3AMD Ryzen 7 5825UIntegrated Radeon 8256GB$ 52223%18,45813.2435
18LPHEW02087Victus 15-fb0000caAMD Ryzen 5 5600HGeForce RTX 3050 Ti16512GB$ 84936%17,09328.2429
6LPMSI00572Thin GF63Intel i5-12450HGeForce RTX 20508512GB$ 69930%17,45621.2427
220LPASU00808OBTUF Gaming F15Intel i7-11800HGeForce RTX 3050 Ti161TB$ 89938%20,75328.2427
565LPASU00556G17AMD Ryzen 7 4800HNVIDIA GeForce RTX 3060161TB$ 1,19751%18,65342.0423
145LPHEW02035Omen 16-wd0010caIntel i7-13620HGeForce RTX 4060161TB$ 1,39959%26,48946.3421
2LPLEN03469Legion Pro 5iIntel i7-13700HXGeForce RTX 406016512GB$ 1,49963%34,11046.3421
545LPLEN02719OBT470Intel Core i5-6300UIntel HD 6208256 GB$ 26311%3,2409.6419
465LPASU00627OBTUF507RR-DS71-CAAMD Ryzen 7 6800HGeForce RTX 307016512GB$ 1,41259%23,65448.0418
359LPLEN03433OBLegion Pro 5AMD Ryzen 7 7745HXGeForce RTX 4070161TB$ 1,61968%32,90951.7418
372LPLEN03434Legion Pro 5AMD Ryzen 7 7745HXGeForce RTX 406016512GB$ 1,49962%32,90946.3416
240LPGIG00152OBAORUS 15Intel Core i7-13700HGeForce RTX 4060161TB$ 1,43960%27,89046.3415
285LPASU00720OBG17AMD Ryzen 9 7945HXNVIDIA RTX 4060161TB$ 1,79975%55,50346.3415
582LPHEW01653OB15-ef1013dxAMD Ryzen 7 4700UAMD Radeon 8512GB$ 44518%13,44611.6414
507LPACE00896A715AMD Ryzen 7 5700URTX305016512GB$ 84935%15,85427.5413
450LPLEN03269IdeaPad 3AMD Ryzen 7 5825UIntegrated Radeon 8256GB$ 55023%18,45813.2413
19LPMSI00564Bravo 15AMD Ryzen 7 7735HSGeForce RTX 4060321TB$ 1,39958%24,26446.3413
365LPASU00716OBFX507ZC4-DS71-CAIntel i7-12700HNVIDIA RTX 305016512GB$ 98941%26,42427.5412
454LPLEN03053OBIdeaPad 5AMD Ryzen 7 5825UIntegrated Radeon8512GB$ 55323%18,45813.2411
584LPMSI00293OBGF75 10UEK-003CAIntel Core i7-10750HRTX306016512GB$ 1,14647%12,01242.0410
356LPACE00969Nitro 5Intel i5-11400HGeForce GTX 16508512GB$ 69929%15,82220.8409
11LPMSI00539Katana 15Intel i7-12650HGeForce RTX 4060161TB$ 1,39957%23,28146.3409
136LPACE00956Nitro 5Intel i7-12650HGeForce RTX 406016512GB$ 1,39957%23,28146.3409
211LPLEN03565OBNoneRyzen 7 7745HXGeForce RTX 4060161TB$ 1,52962%32,90946.3408
486LPLEN03097OBIdeaPad 3AMD Ryzen 5 5625UAMD Radeon 12512GB$ 47519%15,07811.6407
0LPASU00715TUF F15Intel i9-13900HGeForce RTX 4060161TB$ 1,49961%29,68746.3405
40LPASU00688TUF Gaming F15Intel Core i9-13900HGeForce RTX 405016512GB$ 1,39956%29,68741.9403
273LPASU00785OBFX706HF-DB51-CAIntel i5-11400HGeForce RTX 20508512GB$ 71929%15,82221.2403
173LPASU00686TUF Gaming NotebookAMD Ryzen 7 7735HSAMD Radeon RX 7600S161TB$ 1,49960%24,26448.9402
205LPLEN03430OBIdeaPad Slim 3AMD Ryzen 7 7730UNone8512GB$ 57023%18,82413.2402
16LPLEN03438Legion Pro 5AMD Ryzen 7 7745HXGeForce RTX 407016512GB$ 1,69968%32,90951.7398
225LPMSI00593OBKatana 17Intel i7-13620HGeForce RTX 4070161TB$ 1,61964%26,48951.7396
491LPLEN03086OBLegion 5Intel i7-12700HGeForce RTX 307016512GB$ 1,53061%26,42448.0396
504LPASU00625OBG15AMD Ryzen 9 6900HXGeForce RTX 3070 Ti161TB$ 1,62064%24,88752.2394
400LPMSI00540OBThin GF63Intel i7-12650HGeForce RTX 405016512GB$ 1,34953%23,28141.9393
124LPASU00809G614JV-DB91-CAIntel i9-13980HXGeForce RTX 4060161TB$ 1,79971%47,99446.3392
439LPACE00940NitroIntel i7-12700HGeForce RTX 306016512GB$ 1,39955%26,42442.0392
172LPMSI00541Thin GF63Intel i7-12650HGeForce RTX 305016512GB$ 99939%23,28127.5391
52LPASU00719G713PU-DS91-CAAMD Ryzen 9 7945HXRTX 4050161TB$ 1,79970%55,50341.9391
496LPLEN03053IdeaPad 5AMD Ryzen 7 5825UIntegrated Radeon8512GB$ 58223%18,45813.2390
336LPLEN03435OBLegion Pro 5Intel i7-13700HXGeForce RTX 4060161TB$ 1,61963%34,11046.3390
335LPGIG00157OBAERO 14 OLEDIntel i5-12500HRTX 4050161TB$ 1,34952%21,52141.9386
66LPASU00808TUF Gaming F15Intel i7-11800HGeForce RTX 3050 Ti161TB$ 99938%20,75328.2384
133LPLEN03430IdeaPad Slim 3AMD Ryzen 7 7730UNone8512GB$ 60023%18,82413.2382
492LPLEN03001OB82RG006WCC (Open Box)AMD Ryzen 7 6800HGeForce RTX 3060161TB$ 1,39853%23,65442.0381
30LPLEN03433Legion Pro 5AMD Ryzen 7 7745HXGeForce RTX 4070161TB$ 1,79968%32,90951.7376
393LPGIG00149OBASF-B3US754SHIntel i9-13900HXGeForce RTX 4070161TB$ 1,98074%44,97751.7375
146LPGIG00152AORUS 15Intel Core i7-13700HGeForce RTX 4060161TB$ 1,59960%27,89046.3373
28LPASU00720G713PV-DS91-CAAMD Ryzen 9 7945HXNVIDIA RTX 4060161TB$ 1,99975%55,50346.3373
251LPMSI00565OBBravo 15AMD Ryzen 7 7735HSGeForce RTX 4050161TB$ 1,43954%24,26441.9372
410LPACE00955NH.QLZAA.005Intel i5-12500HGeForce RTX 40508512GB$ 1,40052%21,52141.9372
34LPASU00716TUF F15Intel i7-12700HRTX 305016512GB$ 1,09941%26,42427.5371
425LPGIG00153G5 MFIntel i5-12450HGeForce RTX 40508512GB$ 1,34950%17,45641.9369
289LPASU00760OBVivobook 16XIntel i9-13900HGeforce RTX 405016512GB$ 1,52956%29,68741.9369
538LPHEW01773OB15-eg1010ca Intel Core i5-1155G7Intel Iris Xe 8512GB$ 42716%10,27810.6369
45LPLEN03565Legion Pro 5 16ARX8Ryzen 7 7745HXGeForce RTX 4060161TB$ 1,69962%32,90946.3367
453LPGIG00141OBAORUS 17Intel i7-12700HGeForce RTX 3080 Ti321TB$ 1,79966%26,42453.7367
248LPMSI00580OBPulse 17Intel i9-13900HGeForce RTX 4070161TB$ 1,79966%29,68751.7366
466LPCNO00053OB15Z-EF2000AMD Ryzen 5 5500UAMD Radeon Vega 78256GB$ 50118%13,14411.6365
405LPCNO00060OBZenBookAMD Ryzen 7 5700UGeForce MX4508256GB$ 57021%15,85412.6364
123LPASU00785TUF Gaming NotebookIntel i5-11400HGeForce RTX 20508512GB$ 79929%15,82221.2363
320LPMSI00553OBVector GP68HXIntel i9-12900HXGeForce RTX 4080321TB$ 2,24981%34,93764.9362
334LPGIG00148OBAORUS Gaming NotebookIntel i7-13700HGeForce RTX 4070161TB$ 1,79965%27,89051.7361
539LPASU00573OBVivobook 15AMD Ryzen 5 5500UAMD Radeon 8512GB$ 50818%13,14411.6360
461LPASU00666OBVivobook 16AMD Ryzen 5 5600HAMD Radeon 8512GB$ 56920%17,09311.6359
29LPMSI00593Katana 17Intel i7-13620HGeForce RTX 4070161TB$ 1,79964%26,48951.7357
475LPLEN03049OBLegion 5AMD Ryzen 7 6800HGeForce RTX 3070 Ti16512GB$ 1,78063%23,65452.2355
43LPMSI00540Thin GF63Intel i7-12650HGeForce RTX 405016512GB$ 1,49953%23,28141.9353
394LPGIG00159AORUS Gaming NotebookIntel i5-12500HGeForce RTX 406016512GB$ 1,59956%21,52146.3352
41LPLEN03435Legion Pro 5Intel i7-13700HXGeForce RTX 4060161TB$ 1,79963%34,11046.3351
303LPLEN03442OBIdeaPad Flex 5AMD Ryzen 3 5300UNone4128GB$ 36013%9,7167.6349
512LPHEW01811OBPavilion 15-eh2010caAMD Ryzen 5 5625UAMD Radeon 8512GB$ 55419%15,07811.6349
395LPGIG00158AORUS Gaming NotebookIntel i5-12500HGeForce RTX 40508512GB$ 1,49952%21,52141.9347
178LPGIG00157AERO 14Intel i5-12500HRTX 4050161TB$ 1,49952%21,52141.9347
314LPGIG00161NoneIntel i5-12500HGeForce RTX 405016512GB$ 1,49952%21,52141.9347
417LPMSI00538OBKatana 17 B12VGK-217CAIntel i7-12650HGeForce RTX 4070161TB$ 1,79962%23,28151.7347
482LPCNO0005315Z-EF2000AMD Ryzen 5 5500UAMD Radeon Vega 78256GB$ 52818%13,14411.6346
432LPCNO00060ZenBookAMD Ryzen 7 5700UGeForce MX4508256GB$ 60021%15,85412.6345
424LPGIG00146OB17HIntel i7-13700HRTX 4080161TB$ 2,24978%27,89064.9345
300LPLEN03436OBLegion Pro 5Intel i7-13700HXGeForce RTX 4070161TB$ 1,97968%34,11051.7345
302LPMSI00562OBModern 15AMD Ryzen 7 7730UAMD Radeon 16512GB$ 66423%18,82413.2345
522LPMSI00445OBModern 15Intel Core i5-1155G7Intel Iris Xe8256GB$ 46016%10,27810.6343
317LPMSI00536OBKatana GF66Intel i7-12650HGeForce RTX 3050 Ti16512GB$ 1,15940%23,28128.2343
557LPASU00573Vivobook 15AMD Ryzen 5 5500UAMD Radeon 8512GB$ 53518%13,14411.6342
69LPGIG00151BSF-73US754SHIntel i7-13700HGeForce RTX 4070161TB$ 1,89965%27,89051.7342
89LPACE00960PH16-71-72YGIntel i7-13700HXGeForce RTX 4070161TB$ 1,99968%34,11051.7342
544LPCNO00033OBF415EA-UB51Intel Core i5-1135G7Intel Iris Xe 8256GB$ 45616%9,89110.6341
13LPASU00666Vivobook 16AMD Ryzen 5 5600HAMD Radeon 8512GB$ 59920%17,09311.6341
287LPHEW02072OBProBook 445 G9AMD Ryzen 5 5625UNone8256GB$ 56919%15,07811.6340
370LPMSI00567Thin GF63Intel Core i5-12450HGeForce RTX 406016512GB$ 1,59954%17,45646.3338
179LPGIG00149NoneIntel i9-13900HXGeForce RTX 4070161TB$ 2,20074%44,97751.7337
524LPASU00583OBTUF Gaming NotebookRyzen 5 4600HGeForce GTX 16508512GB$ 82828%14,52520.8337
323LPACE00946OBNoneIntel i5-1135G7Intel Iris8512GB$ 46316%9,89110.6337
48LPMSI00565Bravo 15AMD Ryzen 7 7735HSGeForce RTX 4050161TB$ 1,59954%24,26441.9335
56LPASU00760Vivobook 16XIntel i9-13900HGeForce RTX 405016512GB$ 1,69956%29,68741.9332
363LPLEN03442IdeaPad Flex 5AMD Ryzen 3 5300UNone4128GB$ 37913%9,7167.6332
144LPGIG00141YE5-74US544SHIntel i7-12700HGeForce RTX 3080 Ti321TB$ 1,99966%26,42453.7330
353LPLEN03437OBLegion Pro 5Intel i9-13900HXGeForce RTX 407016512GB$ 2,24974%44,97751.7330
463LPLEN03000OBIdeaPad Flex 5AMD Ryzen 5 5500UAMD Radeon 8512GB$ 55518%13,14411.6330
68LPMSI00580Pulse 17Intel i9-13900HGeForce RTX 4070161TB$ 1,99966%29,68751.7330
562LPHEW0173316-c0010caAMD Ryzen 7 5800HNVIDIA GeForce RTX 3050 Ti161TB$ 1,17339%21,13028.2329
385LPACE00888OBTravelMate P2Intel Core i5-1135G7Intel Iris Xe 8256GB$ 47416%9,89110.6328
217LPGIG00156OBAERO 16 OLEDIntel i7-13700HGeForce RTX 4070161TB$ 1,97965%27,89051.7328
477LPCNO00048OBVivoBook RIntel Core i5-1135G7Intel Iris Xe 8256GB$ 47516%9,89110.6328
541LPHUA00040OBMateBook D15Intel i5-1135G7Intel Iris Xe 8512GB$ 47516%9,89110.6328
171LPMSI00562Modern 15 NotebookAMD Ryzen 7 7730UAMD Radeon 16512GB$ 69923%18,82413.2328
420LPASU00685OBVivoBookIntel Core i3-1115G4Intel UHD 4128GB$ 2849%6,1326.2327
366LPHEW02017OBPavilionIntel i5-1240PIntel Iris Xe8512GB$ 59920%17,32010.6327
149LPMSI00445Modern 15 A11MU-863CAIntel Core i5-1155G7Intel Iris Xe8256GB$ 48416%10,27810.6326
26LPMSI00553Vector GP68HXIntel i9-12900HXGeForce RTX 4080321TB$ 2,49981%34,93764.9326
168LPGIG00148NoneIntel i7-13700HGeForce RTX 4070161TB$ 1,99965%27,89051.7325
443LPMSI00537Pulse 17Intel i7-13700HGeForce RTX 4070161TB$ 1,99965%27,89051.7325
355LPGIG00154OBAERO 14Intel Core i7-13700HGeForce RTX 4050161TB$ 1,70955%27,89041.9325
324LPHEW02072ProBook 445 G9AMD Ryzen 5 5625UNone8256GB$ 59919%15,07811.6323
386LPLEN03352OBThinkBook 15 G3AMD Ryzen 5 5500UAMD Radeon 8256GB$ 56918%13,14411.6321
384LPLEN03414OBIdeaPadIntel i3-1215UIntel HD 4128GB$ 31310%11,0324.2320
435LPMSI00543Katana GF76Intel i7-11800HGeForce RTX 3050 Ti16512GB$ 1,19938%20,75328.2320
415LPACE00946NoneIntel i5-1135G7Intel Iris8512GB$ 48716%9,89110.6320
213LPLEN03503OBLegion Slim 7iIntel i9-13900HGeForce RTX 4070321TB$ 2,06966%29,68751.7318
226LPHEW02100OB15-fd0030caIntel i5-1340PNone16512GB$ 66421%20,20410.6318
138LPACE00966Nitro 17AMD Ryzen 7 7735HSGeForce RTX 4070321TB$ 1,99963%24,26451.7315
506LPLEN03000IdeaPad Flex 5AMD Ryzen 5 5500UAMD Radeon 8512GB$ 58418%13,14411.6313
442LPMSI00538Katana 17 B12VGK-217CAIntel i7-12650HGeForce RTX 4070161TB$ 1,99962%23,28151.7312
476LPHEW01913OB15-DY2067MSIntel Core i5-1135G7Intel Iris X 12256GB$ 49916%9,89110.6312
520LPACE00888TravelMate P2Intel Core i5-1135G7None8256 GB$ 49916%9,89110.6312
376LPACE00963AN515-58-7578Intel i7-12650HGeForce RTX 4050161TB$ 1,70053%23,28141.9312
571LPHUA00040MateBook D15Intel i5-1135G7Intel Iris Xe 8512GB$ 50016%9,89110.6311
115LPASU00685VivoBook F415EA-AS31Intel Core i3-1115G4Intel UHD 4128GB$ 2999%6,1326.2311
70LPGIG00146NoneIntel i7-13700HRTX 4080161TB$ 2,49978%27,89064.9311
135LPLEN03436Legion Pro 5Intel i7-13700HXGeForce RTX 4070161TB$ 2,19968%34,11051.7311
131LPHEW0201715-EG2002CAIntel i5-1240PIntel Iris Xe8512GB$ 63120%17,32010.6310
470LPASU00610OBTUF517ZC-DS51-CAIntel i5-12450HGeForce RTX 305016512GB$ 1,15936%17,45627.5310
201LPHEW01929OBProBook 440 G9Intel Core i5-1235UNone8256GB$ 56918%13,54610.6308
404LPMSI00481OBRaider GE76Intel i9-12900HKRTX3080TI321TB$ 2,17367%28,08553.7308
473LPASU00658OBZenBook 14AMD Ryzen 5 5600HAMD Radeon Vega 78512GB$ 66420%17,09311.6308
503LPGIG00134A7 K1AMD Ryzen 7 5800HGeForce RTX 306016512GB$ 1,69952%21,13042.0306
421LPLEN03352ThinkBook 15 G3AMD Ryzen 5 5500UAMD Radeon 8256GB$ 59918%13,14411.6305
166LPMSI00561Bravo 15AMD Ryzen 7 7735HSGeForce RTX 305016512GB$ 1,29940%24,26427.5305
188LPASU00717OBG614JJ-DS71-CAIntel i7-13650HXRTX 3050161TB$ 1,43944%32,15227.5305
392LPLEN03414IdeaPadIntel i3-1215UIntel HD 4128GB$ 32910%11,0324.2304
3LPHEW0210015-fd0030caIntel i5-1340PNone16512GB$ 69921%20,20410.6302
408LPACE00958PHN16-71-788NIntel i7-13700HXGeForce RTX 4060161024GB$ 2,10063%34,11046.3300
412LPACE00952Nitro 5Intel i5-12450HGeForce RTX 30508512GB$ 1,20036%17,45627.5300
485LPASU00609OBTUF Gaming NotebookIntel Core i5-10300HGeForce GTX 165081TB$ 82425%8,47420.8299
311LPLEN03456OBIdeaPadIntel i5-1135G7None8512GB$ 52216%9,89110.6298
187LPASU00500OBExpertBook B1Intel i5 1135G7None8256GB$ 52216%9,89110.6298
371LPLEN03437NoneIntel i9-13900HXGeForce RTX 407016512GB$ 2,49974%44,97751.7297
182LPGIG00156AERO 16 OLEDIntel i7-13700HGeForce RTX 4070161TB$ 2,19965%27,89051.7295
267LPACE00981OBAspire 5AMD Ryzen 3 5300UNone8256GB$ 42713%9,7167.6295
253LPACE00985OBSwift 3 EVOIntel i5-1240PNone16512GB$ 66420%17,32010.6295
195LPASU00721OBG733PZ-XS96AMD Ryzen 9 7945HXRTX 4080321TB$ 3,14993%55,50364.9294
286LPASU00770OBGA402XZ-CS94AMD Ryzen 9 7940HSGeForce RTX 4080161TB$ 2,69979%30,59464.9293
389LPASU00724OBGU604VI-DS92-CAIntel i9-13900HGeForce RTX 4070321TB$ 2,24966%29,68751.7293
35LPHEW01929ProBook 440 G9Intel Core i5-1235UNone8256GB$ 59918%13,54610.6293
119LPASU00658ZenBook 14AMD Ryzen 5 5600HAMD Radeon Vega 78512GB$ 69920%17,09311.6292
152LPGIG00154AERO 14Intel Core i7-13700HGeForce RTX 4050161TB$ 1,89955%27,89041.9292
237LPLEN03390OBThinkPad T14 G3Ryzen 5 Pro 6650UAMD Radeon 660M16256GB$ 75922%16,75213.6292
409LPACE00957AN16-51-74BVIntel i7-13700HGeForce RTX 4050161024GB$ 1,90055%27,89041.9292
508LPASU00621OBGA503RS-XS92-CAAMD Ryzen 9 6900HSGeForce RTX 3080321TB$ 2,01659%23,90147.4291
464LPLEN03130OBNoneAMD Ryzen 5 5625UAMD Radeon 12512GB$ 66519%15,07811.6291
161LPACE00961Predator HeliosIntel i9-13900HXGeForce RTX 4080321 TB$ 2,99987%44,97764.9290
67LPGIG00145NoneIntel Core i9-13900HXGeForce RTX 4080161TB$ 2,99987%44,97764.9290
249LPMSI00575OBModern 15Intel i7-1255UIntel Iris Xe16512GB$ 66419%13,77212.1288
352LPASU00726OBGV302XU-DS91T-CAAMD Ryzen 9 7940HSRTX 4050161TB$ 1,97957%30,59441.9288
458LPMSI00524GP66 LeopardIntel Core i7-11800HNVIDIA RTX307016512GB$ 1,99957%20,75348.0288
510LPMSI00497Pulse GL66Intel i7-11800HRTX307016512GB$ 2,00057%20,75348.0288
10LPLEN0350382Y3007HCCIntel i9-13900HNVIDIA GeForce RTX 4070321TB$ 2,29966%29,68751.7287
469LPCNO00052OBVivoBook F515Intel Core i7-1165G7Intel Iris Xe 8512GB$ 60317%10,34712.1286
426LPGIG00150AORUS 15XIntel i7-13700HXGeForce RTX 4070161TB$ 2,39968%34,11051.7285
222LPASU00786OBVivobook 16XIntel i5-1235UNone8512GB$ 61718%13,54610.6285
79LPLEN0290814 G4 ABAAMD Ryzen 7 5825UNone16512 GB$ 79923%18,45813.2284
268LPASU00784OBVivobook 15AMD Ryzen 7 7730UNone16512GB$ 80723%18,82413.2284
350LPHEW02028OB15-fc0040caAMD Ryzen 7 7730UAMD Radeon 161TB$ 80723%18,82413.2284
128LPLEN03456IdeaPadIntel i5-1135G7None8512GB$ 54916%9,89110.6284
61LPASU00500ExpertBook B1Intel i5 1135G7None8256GB$ 54916%9,89110.6284
375LPACE00965NitroAMD Ryzen 7 7735HSGeForce RTX 4050161TB$ 1,89954%24,26441.9282
343LPMSI00579Stealth 14StudioIntel i7-13620HGeForce RTX 4060161TB$ 2,09959%26,48946.3281
12LPACE00981Aspire 5AMD Ryzen 3 5300UNone8256GB$ 44913%9,7167.6280
117LPACE00985Swift 3 EVOIntel i5-1240PNone16512GB$ 69920%17,32010.6280
534LPASU00610TUF517ZC-DS51-CAIntel i5-12450HGeForce RTX 305016512GB$ 1,28836%17,45627.5279
37LPLEN0339021CF000CUSRyzen 5 Pro 6650UAMD Radeon 660M16256GB$ 79922%16,75213.6277
349LPMSI00563OBModern 15Intel i5-1155G7Intel Iris Xe16512GB$ 56916%10,27810.6277
147LPLEN03431IdeaPad Slim 5Intel i5-1335UIntel Iris Xe8512GB$ 70019%16,92910.6277
107LPLEN02956ThinkBook 14 G4 ABAAMD Ryzen 5 5625UNone16256GB$ 69919%15,07811.6277
125LPLEN03130Consumer LaptopAMD Ryzen 5 5625UAMD Radeon 12512GB$ 70019%15,07811.6276
51LPMSI00555Stealth 15Intel i9-13900HGeForce RTX 4060321TB$ 2,19961%29,68746.3276
228LPLEN03569OBV14Ryzen 5 5500UNone16512GB$ 66418%13,14411.6275
537LPHEW01738OBProbook 640Intel Core i5-6300UIntel HD 52016512GB$ 2437%3,2405.1275
88LPASU00717G614JJ-DS71-CAIntel i7-13650HXRTX 3050161TB$ 1,59944%32,15227.5275
407LPACE00959PH16-71-71AVIntel i7-13700HXGeForce RTX 4060161024GB$ 2,30063%34,11046.3274
255LPCNO00061OBF1500EA-WB51Intel i5-1135G7None8256GB$ 56816%9,89110.6274
494LPGIG00136AORUS 5 KE4Intel Core i7-12700HGeForce RTX 3060161TB$ 1,99955%26,42442.0274
229LPASU00581OBExpertBook B1Intel i5-1135G7None8256GB$ 56916%9,89110.6274
560LPHUA00036OBMateBook D15Intel i5-1135G7Intel Iris Xe 8512GB$ 56916%9,89110.6274
31LPMSI00575Modern 15Intel i7-1255UIntel Iris Xe16512GB$ 69919%13,77212.1273
304LPASU00561OBExpertBook B1Intel Core i5-1135G7Intel Iris Xe G78256GB$ 57016%9,89110.6273
283LPASU00783OBZenbook 14 OLEDAMD Ryzen 7 5825UNone16512GB$ 83523%18,45813.2272
151LPASU00761Vivobook Pro 16X OLEDIntel i9-13980HXGeforce RTX 4070321TB$ 2,79976%47,99451.7271
21LPASU00786Vivobook 16XIntel i5-1235UNone8512GB$ 64918%13,54610.6270
27LPASU00784Vivobook 15 OLEDAMD Ryzen 7 7730UNone16512GB$ 84923%18,82413.2270
22LPHEW0202815-fc0040caAMD Ryzen 7 7730UAMD Radeon 161TB$ 84923%18,82413.2270
262LPLEN03493OBThinkbook T490Intel i5-8365UNone16256GB$ 35910%6,2456.4266
276LPLEN00715OBNoneIntel Core i5-8365UNone16256 GB$ 35910%6,2456.4266
318LPHEW02077OMENAMD Ryzen 9 7940HSGeForce RTX 4070322TB$ 2,49966%30,59451.7266
543LPLEN02718OBNoneIntel Core i5-8350UIntel UHD 62016256 GB$ 35910%6,2266.4266
204LPLEN03518OBThinkbook T480sIntel i5-8350UNone16256GB$ 35910%6,2266.4266
59LPASU00721ROG StrixAMD Ryzen 9 7945HXRTX 4080321TB$ 3,49993%55,50364.9265
223LPACE00984OBAspire 3Intel i5-1235UNone16512GB$ 66418%13,54610.6264
449LPLEN03212OBIdeaPad 5Intel Core i5-1235UIntel Iris Xe8512GB$ 66518%13,54610.6264
478LPMSI00513Katana GF76Intel Core i7-12700HGeForce RTX3070TI161TB$ 2,44965%26,42452.2264
60LPASU00770GA402XZ-CS94AMD Ryzen 9 7940HSGeForce RTX 4080161TB$ 2,99979%30,59464.9264
156LPASU00766Zenbook Pro 14Intel i9-13900HGeForce RTX 4070321TB$ 2,49966%29,68751.7264
55LPASU00724ROG ZephyrusIntel i9-13900HGeForce RTX 4070321TB$ 2,49966%29,68751.7264
148LPGIG00155AERO 16 OLEDIntel i9-13900HGeForce RTX 4070321TB$ 2,49966%29,68751.7264
141LPMSI00563Modern 15 NotebookIntel i5-1155G7Intel Iris Xe16512GB$ 59916%10,27810.6263
333LPLEN03312OBT490Intel i5-8265UIntel UHD 16256GB$ 3599%6,0236.4262
294LPHEW02024OBConsumer Notebook 17Intel i5-1335UIntel Iris Xe81TB$ 74019%16,92910.6262
513LPASU00621GA503RS-XS92-CAAMD Ryzen 9 6900HSGeForce RTX 3080321TB$ 2,24059%23,90147.4262
25LPLEN03569V14Ryzen 5 5500UNone16512GB$ 69918%13,14411.6262
233LPLEN03567OBThinkPad X1 Gen 3Intel i7-8550UN/A16256GB$ 3599%5,9296.4261
118LPCNO00061Vivobook F SeriesIntel i5-1135G7None8256GB$ 59816%9,89110.6260
382LPASU00752OBVivobook 17Intel i7-1165G7Intel Iris Xe 8512GB$ 66417%10,34712.1260
575LPHUA00036MateBook D15Intel i5-1135G7Intel Iris Xe 8512GB$ 59916%9,89110.6260
54LPASU00581ExpertBook B1Intel i5-1135G7None8256GB$ 59916%9,89110.6260
607LPASU00561ExpertBook B1Intel Core i5-1135G7Intel Iris Xe G78256GB$ 60016%9,89110.6259
140LPASU00726GV302XU-DS91T-CAAMD Ryzen 9 7940HSRTX 4050161TB$ 2,19957%30,59441.9259
419LPGIG00144OBAZF-B5US665SPIntel Core i9-13900HXRTX 4090322TB$ 3,64594%44,97772.6259
480LPGIG00138AERO 16Intel Core i9-12900HGeForce RTX 3080 Ti322TB$ 2,59967%28,52453.7259
184LPASU00727GV601VU-DS91T-CAIntel Core i9-13900HRTX 4050161TB$ 2,19956%29,68741.9257
231LPHEW02099OB17-cn3020caIntel i5-1335UNone16512GB$ 75919%16,92910.6255
100LPLEN0361121KJ000EUSAMD Ryzen 7 7730U Octa-core (8 Core)None16512 GB$ 89923%18,82413.2255
162LPASU00718G634JZ-XS96Intel i9-13980HXRTX 4080321TB$ 3,49989%47,99464.9253
38LPACE00984Aspire 3Intel i5-1235UNone16512GB$ 69918%13,54610.6251
282LPLEN03432OBIdeaPad Flex 5AMD Ryzen 5 7530UNone16512GB$ 80720%16,50711.6249
567LPMSI00415Stealth 15MIntel Core i7-1260PRTX3060161TB$ 1,99950%17,23142.0249
585LPHEW01543OBNotebookAMD Ryzen 7 5700UAMD Radeon 161TB$ 85521%15,85413.2249
219LPGIG00137OBAERO 16Intel Core i9-12900HNVIDIA RTX 3080 Ti642TB$ 2,69967%28,52453.7249
167LPHEW02024Consumer NotebookIntel i5-1335UIntel Iris Xe81TB$ 77919%16,92910.6249
93LPMSI00548Vector GP78 HXIntel i9-13950HXGeForce RTX 4080321TB$ 3,49987%44,93164.9248
509LPACE00851OBTravelMate P2Intel Core i5-1135G7Intel HD 8256GB$ 3809%9,8914.2247
32LPASU00752Vivobook 17Intel i7-1165G7Intel Iris Xe 8512GB$ 69917%10,34712.1247
271LPHEW01967OBProBook 440 G9Intel i5-1235UNone16256GB$ 71218%13,54610.6247
235LPGIG00164AORUS 17XIntel i9-13980HXGeForce RTX 4080161TB$ 3,59989%47,99464.9246
84LPHEW0210114-ep0000caIntel i3-N305None8256GB$ 54913%9,9788.4246
580LPMSI00381OBPrestige 14Intel Core i7-1185G7NVIDIA GeForce MX450161TB$ 73618%10,55312.6243
23LPHEW0209917-cn3020caIntel i5-1335UNone16512GB$ 79919%16,92910.6242
272LPASU00764OBZenbook 15 OLEDAMD Ryzen 7 7735UAMD Radeon 161TB$ 1,23430%21,35018.8240
250LPMSI00592Stealth 14StudioIntel i7-13620HGeForce RTX 305016512GB$ 1,69941%26,48927.5240
181LPASU00759H7604JI-XS91T-CAIntel i9-13980HXGeforce RTX 4070321TB$ 3,15476%47,99451.7240
153LPASU00722G834JY-XS97Intel i9-13980HXRTX 4090322TB$ 3,99996%47,99472.6240
150LPLEN00715ThinkPad T490Intel i5-8365UNone16256GB$ 39910%6,2456.4239
20LPLEN03493NoneIntel i5-8365UNone16256GB$ 39910%6,2456.4239
76LPACE00994VeroIntel i7-1255UIntel Iris Xe 161TB$ 79919%13,77212.1239
555LPLEN02718ThinkPad T480Intel Core i5-8350UIntel UHD 62016256 GB$ 39910%6,2266.4239
42LPLEN03518Thinkbook T480sIntel i5-8350UNone16256GB$ 39910%6,2266.4239
451LPLEN03268ThinkPad T580Intel Core i5-8350UNone16256GB$ 40010%6,2266.4238
381LPMSI00549Vector GP78HXIntel i7-13700HXGeForce RTX 4080321TB$ 3,39981%34,11064.9238
241LPLEN03403OBT480sIntel i7-8550UIntel UHD 62024256GB$ 3949%5,9296.4238
313LPLEN00182OBThinkPad T480sIntel Core i7-8550UNone16256 GB$ 3949%5,9296.4238
576LPASU00540VivoBook Pro 16XAMD Ryzen 7 5800HNVIDIA GeForce RTX 305016512GB$ 1,59938%21,13027.5237
198LPLEN03707V15 G4Intel i3-1315UIntel UHD 16512GB$ 69917%13,0049.9237
342LPMSI00581Modern 15AMD Ryzen 5-7530UNone16512GB$ 84920%16,50711.6237
120LPLEN03432NoneAMD Ryzen 5 7530UNone16512GB$ 84920%16,50711.6237
589LPHEW0154315-ef2030caAMD Ryzen 7 5700UAMD Radeon 161TB$ 90021%15,85413.2237
433LPLEN03312T490Intel i5-8265UIntel UHD 16256GB$ 3999%6,0236.4236
203LPLEN03578OBYoga L390Intel i5-8365UNone16256GB$ 40410%6,2456.4236
457LPLEN03202OBThinkPad X380 YogaIntel i5-8350UIntegrated16512GB$ 40410%6,2266.4236
96LPHEW02036NoneIntel i9-13900HXGeForce RTX 4090322TB$ 3,99994%44,97772.6236
33LPLEN03567ThinkPad X1 Gen 3Intel i7-8550UNone16256GB$ 3999%5,9296.4235
257LPLEN02154OB20WM0085USIntel i5-1135G7None8256GB$ 66416%9,89110.6234
15LPHEW01967ProBook 440 G9Intel i5-1235UNone16256GB$ 74918%13,54610.6234
570LPHUA00035OBMatebook 14Intel Core i5-1135G7Intel Iris Xe 16512GB$ 66516%9,89110.6234
238LPHUA00042OBMatebook D14Intel i7-1360PNone161TB$ 94922%19,30912.1233
516LPASU00603OBVivobook 15Intel Core i7-1165G7Intel Iris Xe 12512GB$ 74217%10,34712.1233
73LPASU00729Zephyrus DuoAMD Ryzen 9 7945HXRTX 4080321TB$ 3,99993%55,50364.9231
403LPASU00735OBVivobook 16XIntel i5-12500HIris Xe 16512GB$ 94422%21,52110.6231
418LPHEW02012Chromebook C204MA-SS02-CBIntel Celeron-N4020Intel UHD 432GB eMMC$ 992%1,5561.5231
428LPLEN03299OBThinkPad T14 Gen 2Intel Core i5-1135G7GeForce MX450 2GB8256GB$ 76017%9,89112.6230
391LPACE00945OBAspireIntel i5-10210UNone8256GB$ 41510%6,2286.4230
143LPASU00764Zenbook 15 OLEDAMD Ryzen 7 7735UAMD Radeon 161TB$ 1,29930%21,35018.8228
444LPASU00731ROG FlowIntel i9-13900HRTX 4050161TB$ 2,49956%29,68741.9226
163LPGIG00137AERO 16Intel Core i9-12900HRTX 3080 Ti642TB$ 2,99967%28,52453.7224
377LPMSI00554Vector GP77Intel i7-13700HGeForce RTX 4070161TB$ 2,89965%27,89051.7224
556LPHEW01739ProBook 820 G3Intel Core i7 6500UIntel HD 52016256GB$ 2997%3,2755.1224
380LPMSI00550Raider GE78HXIntel i9-13980HXGeForce RTX 4070322TB$ 3,39976%47,99451.7223
521LPSAS00117Galaxy BookIntel i5-1135G7Intel Iris Xe 8256GB$ 69916%9,89110.6223
164LPLEN0215420WM0085USIntel i5-1135G7None8256GB$ 69916%9,89110.6223
121LPHUA00035Matebook 14Intel Core i5-1135G7Intel Iris Xe 16512GB$ 70016%9,89110.6222
569LPLGE00019OBgramIntel i5-1155G7Intel Iris Xe 8512GB$ 71216%10,27810.6221
46LPHUA00042Matebook D14Intel i7-1360PNone161TB$ 99922%19,30912.1221
546LPASU00603Vivobook 15Intel Core i7-1165G7Intel Iris Xe 12512GB$ 78117%10,34712.1221
81LPASU00723GA402NJ-DS71-CAAMD Ryzen 7 7735HSRTX 305016512GB$ 1,79940%24,26427.5220
440LPASU00735Vivobook 16XIntel i5-12500HIris Xe 16512GB$ 99422%21,52110.6220
189LPLEN03685OBIdeaPad Slim 3 15AMN8AMD Ryzen 3 7320UNone8256GB$ 4279%9,0664.6219
291LPASU00782OBVivobook GoAMD Ryzen 3 7320UNone8128GB$ 4279%9,0664.6219
441LPLEN03299ThinkPad T14 Gen 2Intel Core i5-1135G7GeForce MX450 2GB8256GB$ 80017%9,89112.6219
548LPHUA00037OBMateBook 14sIntel Core i7-11370HIntel Iris Xe 16512GB$ 82418%11,76012.1219
416LPACE00945Aspire A515-54-54B9Intel i5-10210UNone8256GB$ 43710%6,2286.4218
344LPMSI00578Modern 14Intel i5-1335UNone16512GB$ 89919%16,92910.6215
540LPHUA00039OBMateBook 14si7-11370HIntel Iris Xe 16512GB$ 83918%11,76012.1215
139LPLEN00182ThinkPad T480sIntel Core i7-8550UNone16256GB$ 4389%5,9296.4214
142LPLEN03403T480sIntel i7-8550UIntel UHD 62024256GB$ 4389%5,9296.4214
49LPLEN03578Yoga L390Intel i5-8365UNone16256GB$ 44910%6,2456.4213
191LPLEN03577OBThinkPad T480Intel i5-8365UNone16512GB$ 44910%6,2456.4213
236LPLEN03559OBNoneIntel i5-8365UIntel UHD 62016512GB$ 44910%6,2456.4213
154LPLEN03202X380 YogaIntel i5-8350UIntegrated GPU16512GB$ 44910%6,2266.4212
357LPMSI00568OBModernIntel i5-1235UIntel Iris Xe16512GB$ 83018%13,54610.6211
348LPMSI00576CREATOR Z16Intel i7-13700HXGeForce RTX 4060321TB$ 2,99963%34,11046.3210
247LPASU00779OBZenbook 14X OLEDIntel i7-12700HIntel Iris Xe161TB$ 1,23426%26,42412.1210
246LPLEN03552OBX1 Yoga G4Intel i5-8265UNone16512GB$ 4499%6,0236.4210
497LPASU00559OBZenbook NotebookIntel Core i5-1135G7Intel Iris Xe 8256GB$ 74216%9,89110.6210
24LPLEN03685IdeaPad Slim 3 15AMN8AMD Ryzen 3 7320UNone8256GB$ 4499%9,0664.6208
53LPASU00782Vivobook GoAMD Ryzen 3 7320UNone8128GB$ 4499%9,0664.6208
564LPASU00558Zenbook Pro 15AMD Ryzen 9 5900HXNVIDIA GeForce RTX 3050Ti16512GB$ 1,89939%22,67828.2208
489LPLGE00021OBgramIntel i5-1155G7Intel Iris Xe 8512GB$ 76016%10,27810.6208
378LPMSI00552Raider GE78HXIntel i7-13700HXGeForce RTX 4070321TB$ 3,29968%34,11051.7207
467LPACE00880OBAspire A515-54Intel i7-10510UNone8512GB$ 47510%6,6486.4206
239LPHEW01946OBNoneIntel i5-1235UNone16256GB$ 85418%13,54610.6205
212LPASU00560OBExpertBook B1Intel i5-1135G7None8256GB$ 75916%9,89110.6205
94LPASU00736GU604VY-XS97Intel i9-13900HRTX 4090322TB$ 4,19986%29,68772.6205
566LPHUA00038OBMatebook 14i5-1135G7Intel Iris Xe 16512GB$ 76016%9,89110.6205
252LPGIG00163AORUS 17XIntel i9-13980HXGeForce RTX 4090322TB$ 4,69996%47,99472.6204
572LPHUA00039MateBook 14sIntel i7-11370HIntel Iris Xe 16512GB$ 88318%11,76012.1204
199LPLEN03706V15 G4AMD Ryzen 5 5500UIntegrated graphics16512GB$ 89918%13,14411.6203
315LPMSI00583NoneIntel i7-13700HXGeForce RTX 4050321TB$ 2,89959%34,11041.9203
296LPMSI00589Creator Z17HXStudioIntel i9-13950HXGeForce RTX 4060321TB$ 3,39969%44,93146.3203
180LPASU00767Zenbook Pro 14 Duo OLEDIntel i9-13900HGeForce RTX 4060321TB$ 2,99961%29,68746.3202
338LPLEN03301OBIdeaPad Flex 5Intel i7-1255UNone16512GB$ 94919%13,77212.1201
269LPHEW01822OBProBook 450 G9Intel i7-1255UNone16512GB$ 94919%13,77212.1201
102LPLEN0360021KK0009USAMD Ryzen 5 7530U Hexa-core (6 Core)None16512 GB$ 99920%16,50711.6201
399LPASU00707OBZenbook OLEDAMD Ryzen 7 7730UAMD Radeon161TB$ 1,13923%18,82413.2201
445LPASU00728Zephyrus DuoAMD Ryzen 9 7945HXRTX 4090322TB$ 4,999100%55,50372.6200
158LPASU00779Zenbook 14X OLEDIntel i7-12700HIntel Iris Xe161TB$ 1,29926%26,42412.1200
563LPASU00559Zenbook NotebookIntel Core i5-1135G7Intel Iris Xe 8256GB$ 78116%9,89110.6199
364LPMSI00498OBSUMMIT E14Intel i7-1280PIris Xe 161TB$ 1,14223%20,45012.1199
361LPHEW02021OB14-em0030caAMD Ryzen 3 7320URadeon 8256GB$ 4749%9,0664.6197
379LPMSI00551Stealth 17StudioIntel i7-13700HGeForce RTX 4070321TB$ 3,29965%27,89051.7197
446LPMSI00534Raider GE78 HXIntel i9-13980HXGeForce RTX 4080642TB$ 4,49989%47,99464.9197
270LPLEN03428OBIdeaPad Slim 3AMD Ryzen 3 7320UAMD Radeon 610M 8512GB$ 4759%9,0664.6197
80LPLEN03572Legion Pro 7Intel i9-13900HXGeForce RTX 4090322TB$ 4,79994%44,97772.6197
82LPMSI00535Stealth 17Intel i9-13900HGeForce RTX 4090642TB$ 4,39986%29,68772.6196
535LPACE00880Aspire A515-54Intel i7-10510UNone8512GB$ 50010%6,6486.4195
293LPASU00780OBZenbookIntel i7-12700HNone161TB$ 1,32926%26,42412.1195
90LPLEN03055ThinkBook 15 G4Intel Core i5-1235UNone16256GB$ 89918%13,54610.6195
5LPHEW01946ProBook 450 G9Intel i5-1235UNone16256GB$ 89918%13,54610.6195
36LPASU00560ExpertBook B1Intel i5-1135G7None8256GB$ 79916%9,89110.6195
573LPHUA00038Matebook 14i5-1135G7Intel Iris Xe 16512GB$ 80016%9,89110.6195
234LPLEN03564OBThinkPad X1Intel i7-8650UNone16256GB$ 49410%6,2886.4194
423LPLEN03338ThinkPad T14s Gen 2AMD Ryzen 5 PRO 5650U Hexa-core (6 Core) 2.30 GHzNonenan256 GB$ 99919%14,92211.6193
447LPMSI00533Raider GE78 HXIntel i9-13980HXGeForce RTX 4090322TB$ 4,99996%47,99472.6192
116LPLEN03559ThinkPad T590Intel i5-8365UIntel UHD 62016512GB$ 49910%6,2456.4191
83LPLEN03577ThinkPad T480Intel i5-8365UNone16512GB$ 49910%6,2456.4191
438LPLEN03301IdeaPad Flex 5Intel i7-1255UNone16512GB$ 99919%13,77212.1191
242LPLEN03568V14Intel i7-1255UNone16512GB$ 99919%13,77212.1191
127LPHEW01822ProBook 450 G9Intel i7-1255UNone16512GB$ 99919%13,77212.1191
583LPLGE00015OBGram 2-in-1Intel i7-1165G7Intel Iris Xe 16512GB$ 90217%10,34712.1191
39LPASU00707ZenbookAMD Ryzen 7 7730UAMD Radeon161TB$ 1,19923%18,82413.2191
209LPLEN03573OBThinkPad T490Intel i7-8550UIntel UHD 62016256GB$ 4949%5,9296.4190
387LPASU00768Zenbook Pro 16X OLEDIntel i9-13905HGeForce RTX 4080321TB$ 4,19980%31,60364.9190
103LPLEN0350821JR001QUSAMD Ryzen 5 7530U (Hexa-core, 6 Core) None8256 GB$ 1,06220%16,50711.6189
490LPLEN03099ThinkPad E15 Gen 4AMD Ryzen 7 5825U Octa-core (8 Core) 2 GHzAMD Radeon 16512GB$ 1,19923%18,45813.2189
122LPLEN03552X1 Yoga G4Intel i5-8265UNone16512GB$ 4999%6,0236.4189
474LPMSI00516Modern 14 Business NotebookIntel Core i5-1235UIntel Iris Xe8512GB$ 92918%13,54610.6189
99LPACE00999PTX17-71-99W5Intel i9-13900HXGeForce RTX 4090642TB$ 4,99994%44,97772.6189
75LPMSI00591Stealth 16 AMGIntel i9-13900HGeForce RTX 4070322TB$ 3,49966%29,68751.7188
126LPHEW02021Consumer Laptop 14AMD Ryzen 3 7320URadeon 8256GB$ 4999%9,0664.6187
160LPLEN03428IdeaPad Slim 3AMD Ryzen 3 7320UAMD Radeon 610M 8512GB$ 5009%9,0664.6187
157LPASU00780ZenbookIntel i7-12700HNone161TB$ 1,39926%26,42412.1185
330LPSAS00150Galaxy Book3 EVOIntel i7-13700HGeForce RTX 405016512GB$ 2,99955%27,89041.9185
397LPLGE00034GramIntel i7-1360PGeForce RTX 3050161TB$ 2,00037%19,30927.5185
398LPASU00734OBZenbook 14XIntel i7-1260PGeForce MX55016512GB$ 1,51928%17,23119.2183
592LPLEN0213120Y70037USAMD Ryzen 5 5500UNone8256GB$ 99918%13,14411.6183
279LPLEN03521NoneAMD Ryzen 5 7530UNone16256GB$ 1,09920%16,50711.6183
227LPLEN03429OBIdeaPad Slim 3AMD Ryzen 5 7520UAMD Radeon 610M8512GB$ 52210%9,4754.6183
346LPHEW02045OBConsumer Laptop 17.3"Intel i5-1135G7Intel Iris Xe16512GB$ 85416%9,89110.6182
316LPHEW01834OBEliteBook 640 G9Intel i5-1245UNone16512GB$ 96118%13,48110.6182
200LPRAZ00059Blade 14AMD Ryzen 9 7940HSGeForce RTX 4070161TB$ 3,64966%30,59451.7182
483LPLGE00026OBGramIntel i7-1260PIntel Iris Xe 16512GB$ 1,16321%17,23112.1180
369LPLGE00027OBgramIntel i5-1240PIntel Iris Xe 8512GB$ 1,10920%17,32010.6176
218LPLEN03487OBThinkPad E16Intel i7-1355UNone16512GB$ 1,13920%15,29412.1175
129LPLEN03564ThinkPad X1Intel i7-8650UNone16256GB$ 54910%6,2886.4174
169LPASU00734Zenbook 14XIntel i7-1260PGeForce MX55016512GB$ 1,59928%17,23119.2174
74LPLEN03010ThinkBook 14 G4Intel i7-1255UNone16512GB$ 1,09919%13,77212.1174
97LPLEN03712Yoga L390Intel i5-8365UNone16256GB$ 54910%6,2456.4174
165LPLEN03429IdeaPad Slim 3AMD Ryzen 5 7520UAMD Radeon 610M8512GB$ 55010%9,4754.6174
64LPASU00800Vivobook S 15 OLEDIntel i9-13900HNone161TB$ 1,59928%29,68712.1173
368LPHEW02045Consumer LaptopIntel i5-1135G7Intel Iris Xe16512GB$ 89916%9,89110.6173
101LPLEN03602NoneIntel Core i5-1335UNone16256GB$ 1,11919%16,92910.6173
515LPHEW01834EliteBook 640 G9Intel i5-1245UNone16512GB$ 1,01218%13,48110.6173
518LPLGE00025gramIntel i5-1240PNone8512GB$ 1,13620%17,32010.6172
459LPMSI00514OBSummit E13 Flip EvoIntel Core i7-1280PIntel Iris Xe161TB$ 1,31823%20,45012.1172
275LPLEN0354421JR001RUSRyzen 5 7530UNone16256 GB$ 1,17420%16,50711.6171
44LPLEN03573ThinkPad T490Intel i7-8550UIntel UHD 62016256GB$ 5499%5,9296.4171
329LPSAS00152Galaxy Book3 EVOIntel i7-13700HGeForce RTX 4050161TB$ 3,26955%27,89041.9170
292LPHEW02023OBConsumer NotebookAMD Ryzen 5 7520UAMD Radeon 8512GB$ 56910%9,4754.6168
517LPLGE00027gramIntel i5-1240PIntel Iris Xe 8512GB$ 1,16820%17,32010.6168
552LPDYA00003C50-JIntel Core i5-1135G7Integrated GPU8256GB$ 92916%9,89110.6168
288LPHEW01833OBEliteBook 650 G9Intel i5-1245UNone16256GB$ 1,04918%13,48110.6167
603LPACE00491Aspire 5Intel i7-10510UIntel UHD 620 graphics8512GB$ 58610%6,6486.4167
17LPLEN0348721JN0073USIntel i7-1355UNone16512GB$ 1,19920%15,29412.1166
290LPMSI00590Modern 14Intel i7-1355UNone161TB$ 1,19920%15,29412.1166
305LPMSI00587CreatorPro M16Intel i7-13700HNVIDIA RTX A1000321TB$ 2,39940%27,89025.5165
232LPLEN02397OBNoneIntel i5-1135G7Intel Iris Xe 8256GB$ 95016%9,89110.6164
197LPLEN03708V15 G4Intel i5-1335UNone161TB$ 1,19919%16,92910.6162
284LPASU00765OBZenbook S 13 OLED EVOIntel i7-1355UNone161TB$ 1,23420%15,29412.1162
587LPMSI00379Modern 14Intel Core i7-1195G7Intel Iris Xe8512GB$ 1,09918%11,03412.1160
479LPRAZ00055Blade 15Intel Core i7-12800HGeForce RTX 3070 Ti161TB$ 3,99964%24,97152.2160
57LPHEW02023Consumer Notebook 14AMD Ryzen 5 7520UAMD Radeon 8512GB$ 59910%9,4754.6160
108LPHEW01833EliteBook 650 G9Intel i5-1245UNone16256GB$ 1,10418%13,48110.6159
550LPDYA00005C50-JIntel Core i7-1165G7Integrated GPU8256GB$ 1,08917%10,34712.1158
448LPMSI00532TITAN GT77Intel i9-13980HXGeForce RTX 4080642TB$ 5,59989%47,99464.9158
207LPMSI00597Prestige 13 EVOIntel i7-1360PNone16512GB$ 1,39922%19,30912.1158
481LPCNO00054ThinkPad E15 Gen 2Intel Core i5-1135G7Intel Iris Xe 8256GB$ 99916%9,89110.6156
413LPACE00948A317-53-591MIntel i5-1135G7Integrated GPU8512GB$ 99916%9,89110.6156
373LPLEN03427IdeaPad 1 15AMN7AMD Athlon Gold 7220UAMD Radeon 610M 4128GB$ 4507%4,7484.6156
254LPLEN03042OBThinkBook 15 G4Intel Core i7-1255UNone16512GB$ 1,23419%13,77212.1155
390LPLGE00024OBGramIntel i7-1260PIntel Iris Xe 16512GB$ 1,35621%17,23112.1155
256LPHEW02083OBEliteBook 640 G9Intel i5-1245UNone16512GB$ 1,13618%13,48110.6154
130LPASU00765Zenbook S 13 OLED EVOIntel i7-1355UNone161TB$ 1,29920%15,29412.1153
202LPMSI00531OBTITAN GT77Intel i9-13980HXGeForce RTX 40901284TB$ 6,29996%47,99472.6152
92LPLEN03474ThinkPad E16Intel i5-1335UNone16256GB$ 1,29919%16,92910.6149
345LPLEN03462ThinkBook 14s YogaIntel Core i5-1335UNone16256GB$ 1,29919%16,92910.6149
208LPHEW01997OBENVY X360Intel i7-1250UNone161TB$ 1,23418%12,42112.1149
488LPASU00547OBVivobook 13Intel Pentium Silver N6000Intel UHD 4128GB$ 3325%3,0893.4149
278LPLEN03522ThinkBook 15 G4AMD Ryzen 5 5625UNone16256GB$ 1,29919%15,07811.6149
388LPMSI00544Titan Gaming NotebookIntel i9-13980HXGeForce RTX 4090642TB$ 6,44996%47,99472.6149
95LPLEN03710NoneIntel i5-10310UNone16512GB$ 64910%6,4366.4149
297LPMSI00588Prestige 16EVOIntel i7-13700HNone321TB$ 1,79927%27,89012.1149
501LPASU00649P1512CEAIntel Core i5-1135G7Intel UHD 8512GB$ 1,04916%9,89110.6148
502LPASU00647P1512CEAIntel Core i5-1135G7Intel UHD 8512GB$ 1,04916%9,89110.6148
551LPDYA00004C50-JIntel Core i5-1135G7Integrated GPU8512GB$ 1,04916%9,89110.6148
78LPLGE00032Gram EVOIntel i7-1360PIntel Iris Xe16512GB$ 1,49922%19,30912.1147
98LPLEN03711X1 CarbonIntel i7-8665UNone16256GB$ 64910%6,2566.4147
186LPLEN03042ThinkBook 15 G4Intel Core i7-1255UNone16512GB$ 1,29919%13,77212.1147
106LPLEN03221ThinkPad L13 YogaIntel Core i7-1255UNone16512GB$ 1,29919%13,77212.1147
266LPASU00763OBVivobook S 16 FlipIntel i5-1335UIntel HD 16512GB$ 90213%16,9294.2146
77LPHEW02083EliteBook 640 G9Intel i5-1245UNone16512GB$ 1,19618%13,48110.6146
351LPLGE00030OBGramIntel i7-1360PIntel Iris Xe16512GB$ 1,51922%19,30912.1146
265LPLGE00033OBGram EVOIntel i7-1360PIntel Iris Xe16512GB$ 1,51922%19,30912.1146
312LPLGE00031OBGram EVOIntel i7-1360PIntel Iris Xe16512GB$ 1,52022%19,30912.1145
523LPRAZ00054Razer Blade 14AMD Ryzen 9 6900HXGeForce RTX 3080Ti161TB$ 4,49965%24,88753.7145
91LPLEN0347614s Yoga G3Intel Core i7-1355UNone16512GB$ 1,38020%15,29412.1144
549LPDYA00006C50-JIntel Core i7-1165G7Integrated8512GB$ 1,19917%10,34712.1144
245LPLEN03502OBIdeaPad Slim 3AMD Ryzen 5 7520UNone16512GB$ 66410%9,4754.6144
196LPLEN03709V15 G4Intel i7-1355UNone161TB$ 1,39920%15,29412.1142
58LPHEW01997ENVY X360Intel i7-1250UNone161TB$ 1,29918%12,42112.1141
574LPASU00547Vivobook 13 Slate NotebookIntel Pentium Silver N6000Intel UHD 4128GB$ 3505%3,0893.4141
472LPASU00665Zenbook ProIntel Core i9-12900HGeForce RTX 3060321TB$ 3,99956%28,52442.0140
307LPMSI00586CreatorPro Z16HXStudioIntel i9-13950HXNVIDIA RTX A2000321TB$ 3,79953%44,93129.7139
63LPASU00763Vivobook S 16 FlipIntel i5-1335UIntel HD 16512GB$ 94913%16,9294.2139
331LPLEN03471ThinkPad E14Intel i5-1335UNone16512GB$ 1,39919%16,92910.6138
85LPLEN03497ThinkPad X1 CarbonIntel i5-1335UNone16256GB$ 1,39919%16,92910.6138
87LPLGE00033Gram EVOIntel i7-1360PIntel Iris Xe16512GB$ 1,59922%19,30912.1138
105LPLGE00030GramIntel i7-1360PIntel Iris Xe16512GB$ 1,59922%19,30912.1138
104LPLGE00031Gram EVOIntel i7-1360PIntel Iris Xe16512GB$ 1,60022%19,30912.1138
308LPMSI00585CreatorPro Z17HX StudioIntel i9-13950HXNVIDIA RTX A3000321TB$ 3,99955%44,93132.1138
281LPMSI00577OBPrestige 13 EvoIntel i7-1360PNone321TB$ 1,60522%19,30912.1138
185LPMSI00531TITAN GT77Intel i9-13980HXGeForce RTX 40901284TB$ 6,99996%47,99472.6137
7LPLEN03502IdeaPad Slim 3AMD Ryzen 5 7520UNone16512GB$ 69910%9,4754.6137
194LPLGE00028OBGram EVOIntel i7-1260PIntel Iris Xe 16512GB$ 1,53921%17,23112.1136
244LPLEN01849OBThinkPad X1 Nano EVOIntel Core i7-1160G7None16512GB$ 1,23417%9,17312.1135
422LPLEN03339ThinkPad T14s Gen 2AMD Ryzen 5 PRO 5650UNone8256GB$ 1,43019%14,92211.6135
553LPGIG00125AERO 16 YE4Intel Core i9-12900HNVIDIA GeForce RTX 3080 Ti322TB$ 4,99967%28,52453.7134
183LPLEN03512ThinkBook 14s Yoga G3Intel Core i7-1355UNone16512GB$ 1,49920%15,29412.1133
155LPMSI00577Prestige 13 EvoIntel i7-1360PNone321TB$ 1,68922%19,30912.1131
511LPASU00623NoneAMD Ryzen 9 6900HXNVIDIA GeForce RTX 3080 Ti641TB$ 4,99965%24,88753.7130
558LPASU00565ExpertBook B5Intel Core i5-1135G7Intel Iris Xe G716256GB$ 1,19916%9,89110.6130
109LPLGE00028Gram EVOIntel i7-1260PIntel Iris Xe 16512GB$ 1,62021%17,23112.1130
321LPSAS00158Galaxy Book3 360 EVOIntel i5-1335UNone8256GB$ 1,49919%16,92910.6129
274LPLEN03546E14Intel i7-1355UNone16512GB$ 1,59920%15,29412.1125
593LPLEN02112ThinkBook 14s Yoga ITLIntel i5-1135G7Intel Iris Xe 8256GB$ 1,24916%9,89110.6125
595LPLEN02056IdeaPad Slim 7iIntel i5-1135G7Intel Iris Xe 8512GB$ 1,26016%9,89110.6124
500LPASU00650NoneIntel Core i7-1165G7Intel Iris Xe 161TB$ 1,39917%10,34712.1123
499LPASU00651P1512CEAIntel Core i7-1165G7Intel Iris Xe 161TB$ 1,39917%10,34712.1123
561LPASU00562ExpertBook B1Intel Core i7-1165G7Intel Iris Xe G712512GB$ 1,39917%10,34712.1123
559LPASU00564ExpertBook B1Intel Core i7-1165G7Intel Iris Xe G712512GB$ 1,39917%10,34712.1123
261LPDYA00028TecraIntel i5-1240PNone16256GB$ 1,59920%17,32010.6122
259LPDYA00033TecraIntel i7-1260PNone16256GB$ 1,74921%17,23112.1120
260LPDYA00029TecraIntel i7-1260PNone16256GB$ 1,75021%17,23112.1120
431LPACE00942A315-56-54YTIntel Core i5-1035G1Integrated Graphic8256GB$ 7499%7,4605.1119
456LPMSI00527CreatorProIntel i7-12700HNVIDIA RTX A5500321TB$ 5,29960%26,42447.7114
514LPHEW01837OMEN 16AMD Ryzen 5 5600HRadeon 161TB$ 1,79920%17,09311.6114
170LPASU00592Vivobook 15AMD Ryzen 3 3250UAMD Radeon 8128GB$ 4996%3,8553.7113
455LPMSI00528CreatorProIntel i7-12700HRTX A3000321TB$ 3,99945%26,42432.1113
598LPLEN01757ThinkBook 15 G2 ITLIntel Core i7-1165G7 Quad-core (4 Core) 2.80 GHzIntel UHD 16512 GB$ 1,54917%10,34712.1111
280LPHEW02090ProBook 440Intel i7-1355UNone16512GB$ 1,79920%15,29412.1111
437LPLEN03307ThinkPad T14 Gen 2Intel Core i5-1135G7MX450 2GB16256GB$ 1,59917%9,89112.6109
214LPLEN03517OBThinkPad X1 Carbon EVOIntel i7-1365UNone32512GB$ 1,89920%15,45112.1105
327LPSAS00157Galaxy Book3 360 EVOIntel i7-1355UNone16512GB$ 1,89920%15,29412.1105
177LPASU00743Zenbook S 13 FlipIntel i7-1260PNone161TB$ 1,99921%17,23112.1105
427LPLEN02684OB20UB0067USIntel Core i5-10210UNone16256 GB$ 93210%6,2286.4102
72LPLEN03517ThinkPad X1 Carbon EVOIntel i7-1365UNone32512GB$ 1,99920%15,45112.1100
529LPSAS00112Galaxy Book ProIntel i7-1165G7Iris Xe 8512GB$ 1,73017%10,34712.1100
525LPSAS00116Galaxy Book ProIntel i7-1165G7Intel Iris Xe 8256GB$ 1,73017%10,34712.1100
471LPLEN03138Business NotebookIntel i5-1145G7Intel Iris Xe16512GB$ 1,60016%9,97010.698
527LPSAS00114Galaxy Book ProIntel i5-1135G7Iris Xe 8256GB$ 1,60016%9,89110.697
528LPSAS00113Galaxy Book ProIntel i5-1135G7Intel Iris Xe 8512GB$ 1,60016%9,89110.697
436LPLEN03308ThinkPad T14 Gen 2Intel Core i5-1135G7MX450 2GB16256GB + 512GB$ 1,79917%9,89112.697
568LPLEN02684ThinkPad X1 Yoga Gen 5Intel Core i5-10210UNone16256GB$ 98110%6,2286.497
396LPLGE00035GramIntel i7-1360PIntel Iris Xe16512GB$ 2,30022%19,30912.196
597LPLEN0185820TA0025USIntel Core i7 i7-1165G7None8512 GB$ 1,80617%10,34712.196
536LPASU00591OBL510MA-DS09-CAIntel Celeron N4020Intel UHD 600464GB$ 2462%1,5561.593
530LPSAS00111Galaxy Book ProIntel i7-1165G7Iris Xe 8512GB$ 1,87017%10,34712.192
505LPASU00590OBVivobook 14 FlipIntel Celeron N4500Intel UHD 4128GB$ 4744%2,0033.492
554LPLEN0274120W400K3USIntel i5-1145G7Intel Iris Xe16512GB$ 1,72116%9,97010.691
526LPSAS00115Galaxy Book ProIntel i5-1135G7Intel Iris Xe 8512GB$ 1,73016%9,89110.690
328LPSAS00156Galaxy Book3 Pro 360 EVOIntel i7-1360PNone161TB$ 2,49922%19,30912.188
174LPASU00591Vivobook GoIntel Celeron N4020Intel UHD 600464GB$ 2592%1,5561.588
62LPASU00590Vivobook 14 Flip NotebookIntel Celeron N4500Intel UHD 4128GB$ 4994%2,0033.487
221LPASU00762OBVivobook SlateIntel Pentium Silver Processor N6000Intel UHD 8128GB$ 5695%3,0893.487
277LPLEN03526NoneIntel i5-1335UNone16512GB$ 2,24919%16,92910.686
86LPASU00762Vivobook SlateIntel Pentium Silver Processor N6000Intel UHD 8128GB$ 5995%3,0893.483
594LPLEN02071ThinkPad X13 Yoga Gen 2Intel Core i5 (11th Gen) i5-1135G7 Quad-coreIntel Iris Xe 8256 GB$ 2,01916%9,89110.677
340LPLEN03465ThinkPad X1 Yoga EVOIntel i5-1335UNone16256GB$ 2,53419%16,92910.676
596LPLEN0187020UN000AUSIntel Core i7-1160G7 EVO Quad-coreIntel Iris Xe 16256 GB$ 2,40017%9,17312.169
325LPLEN03478ThinkPad X1 Yoga Gen 8Intel i7-1355UNone16512 GB$ 2,88420%15,29412.169
301LPLEN03495ThinkPad X13 YogaIntel i5-10310UNone16256GB$ 1,49910%6,4366.464
230LPASU00810Chromebook Flip C434Intel m3-8100YNone464GB Flash Memory$ 6994%2,8773.064
605LPASU00227Chromebook Flip C434Intel m3-8100YNone464GB Flash Memory$ 6994%2,8773.064
590LPLEN02299ThinkPad X13 Yoga Gen 2Intel Core i7 (11th Gen) i7-1165G7 Quad-coreIntel Iris Xe 16256GB$ 2,89217%10,34712.160
- - - - \ No newline at end of file diff --git a/PCData/data/computed/canada_computers_laptops_bench_0.5.csv b/PCData/data/computed/canada_computers_laptops_bench_0.5.csv deleted file mode 100644 index 7cca382..0000000 --- a/PCData/data/computed/canada_computers_laptops_bench_0.5.csv +++ /dev/null @@ -1,576 +0,0 @@ -item_id,Model,CPU,GPU,RAM,Storage,price,bench,cpu_bench,gpu_bench,value -LPMSI00429OB,Katana GF66,Intel Core i7-11800H,RTX3060,16.0,512GB,786.48999847412,47.621005669710655,20753.0,42.0,605.4877463426213 -LPCOI00001OB,VOYAGER Gaming Notebook,AMD Ryzen 7 6800HS,Radeon 6800M,16.0,1TB,989.89,58.275161360498274,22947.0,54.6,588.7034050298344 -LPGIG00147OB,G5 KF-E3US333SH,Intel i5-12500H,GeForce RTX 4060,8.0,512GB,899.1,51.274292670949364,21521.0,46.3,570.2846476582067 -LPHEW02076OB,Victus Gaming Notebook,AMD Ryzen 5 7640HS,GeForce RTX 4050,16.0,512GB,899.1,49.92768241400994,23390.0,41.9,555.307334156489 -LPGIG00135OB,AERO 16 XE4,Intel Core i7-12700H,GeForce RTX 3070 Ti,16.0,2TB,1079.1,59.75453191942719,26424.0,52.2,553.7441564213436 -LPGIG00160OB,G5 Gaming Notebook,Intel i5-12450H,GeForce RTX 4050,16.0,512GB,809.1,44.58202542249596,17456.0,41.9,551.0076062599921 -LPACE00912OB,Nitro 5,Intel Core i5-11400H,GTX 1650,8.0,256GB,526.39,28.57835247681497,15822.0,20.8,542.9121464468354 -LPGIG00142OB,G5 KE-52US213SH,Intel i5-12500H,GeForce RTX 3060,16.0,512GB,899.89,48.31286016406231,21521.0,42.0,536.8751754554703 -LPGIG00162OB,G5 KF,Intel i7-12650H,GeForce RTX 4060,16.0,512GB,989.1,52.85979255383858,23281.0,46.3,534.4231377397491 -LPACE00980OB,Nitro 5,AMD Ryzen 7 5800H,GeForce RTX 3060,16.0,512GB,899.1,47.960626951443174,21130.0,42.0,533.4292843003357 -LPASU00584OB,TUF Gaming Notebook,Ryzen 7 5800H,GeForce RTX 3060,16.0,512GB,899.89,47.960626951443174,21130.0,42.0,532.9609946931645 -LPMSI00467OB,Crosshair 15,Intel Core i7-12700H,RTX3070Ti,16.0,512GB,1129.39,59.75453191942719,26424.0,52.2,529.0867806464302 -LPGIG00147,G5,Intel i5-12500H,GeForce RTX 4060,8.0,512GB,999.0,51.274292670949364,21521.0,46.3,513.256182892386 -LPMSI00530OB,Katana GF66,Intel i5-11400H,GeForce RTX 3050,8.0,512GB,651.48999847412,33.1926775456855,15822.0,27.5,509.4886740153702 -LPHEW02076,Victus Gaming Notebook,AMD Ryzen 5 7640HS,GeForce RTX 4050,16.0,512GB,999.0,49.92768241400994,23390.0,41.9,499.77660074084014 -LPHEW02095OB,Victus 15-fb1010ca,AMD Ryzen 5 7535HS,GeForce RTX 2050,8.0,512GB,629.1,31.21676990730752,18445.0,21.2,496.2131601860994 -LPACE00877OB,Nitro 5,Intel i7-11800H,NVIDIA GeForce RTX3060,16.0,512GB,961.08999023437,47.621005669710655,20753.0,42.0,495.48956032824634 -LPACE00967OB,Nitro 5,Intel i9-12900H,GeForce RTX 4060,16.0,1TB,1169.1,57.58296067087729,28524.0,46.3,492.54093465808995 -LPLEN03269OB,IdeaPad 3,AMD Ryzen 7 5825U,Integrated Radeon ,8.0,256GB,522.39,25.718839112709713,18458.0,13.2,492.33023435957256 -LPMSI00559OB,Thin GF63,Intel i7-12650H,GeForce RTX 4060,16.0,512GB,1079.1,52.85979255383858,23281.0,46.3,489.85073259047897 -LPHEW02079,Victus 16,AMD Ryzen 7 7840HS,GeForce RTX 4060,16.0,1TB,1199.0,57.9099700217232,28887.0,46.3,482.9855714906022 -LPMSI00572OB,Thin GF63,Intel i5-12450H,GeForce RTX 2050,8.0,512GB,629.1,30.325827075388524,17456.0,21.2,482.0509787853842 -LPACE00968OB,Nitro 5,Intel i5-12450H,GeForce RTX 4060,16.0,512GB,989.1,47.612328452799,17456.0,46.3,481.37021992517435 -LPGIG00162,G5 KF,Intel i7-12650H,GeForce RTX 4060,16.0,512GB,1099.0,52.85979255383858,23281.0,46.3,480.98082396577416 -LPACE00980,Nitro 5,AMD Ryzen 7 5800H,GeForce RTX 3060,16.0,512GB,999.0,47.960626951443174,21130.0,42.0,480.08635587030204 -LPHEW01865OB,Omen 16-b0020ca,Intel Core i7-11800H,NVIDIA GeForce RTX 3070,16.0,1TB,1091.5900007629,51.753237074669336,20753.0,48.0,474.1087499748035 -LPGIG00133OB,A5 K1,AMD Ryzen 5 5600H,GeForce RTX 3060,16.0,512GB,936.79000152588,44.32388659506604,17093.0,42.0,473.14645249062835 -LPLEN03269,IdeaPad 3,AMD Ryzen 7 5825U,Integrated Radeon ,8.0,256GB,549.88,25.718839112709713,18458.0,13.2,467.7173040065053 -LPLEN03053OB,IdeaPad 5,AMD Ryzen 7 5825U,Integrated Radeon,8.0,512GB,552.78999023437,25.718839112709713,18458.0,13.2,465.255152355518 -LPMSI00504OB,GP66 Leopard,Intel Core i7-11800H,NVIDIA RTX3070,16.0,512GB,1114.0900007629,51.753237074669336,20753.0,48.0,464.5337184538956 -LPLEN03469OB,Legion Pro 5i,Intel i7-13700HX,GeForce RTX 4060,16.0,512GB,1349.1,62.615121094638184,34110.0,46.3,464.12512856451104 -LPASU00809OB,ROG Strix G16,Intel i9-13980HX,GeForce RTX 4060,16.0,1TB,1619.1,75.12255312533922,47994.0,46.3,463.9772288638085 -LPACE00816,Nitro,Intel i5-11400H,NVIDIA GeForce RTX 3050,8.0,512GB,715.88,33.1926775456855,15822.0,27.5,463.66259073707175 -LPMSI00496OB,GF63 11UC-692,Intel i5-11400H,NVIDIA RTX3050,8.0,512GB,719.1,33.1926775456855,15822.0,27.5,461.58639334842854 -LPLEN03430OB,IdeaPad Slim 3,AMD Ryzen 7 7730U,,8.0,512GB,569.89,26.048551020174177,18824.0,13.2,457.080331646005 -LPLEN03434OB,,AMD Ryzen 7 7745HX,GeForce RTX 4060,16.0,512GB,1349.1,61.53319759500753,32909.0,46.3,456.1055340227376 -LPHEW02087OB,Victus 15-fb0000ca,AMD Ryzen 5 5600H,GeForce RTX 3050 Ti,16.0,512GB,764.1,34.81975436366108,17093.0,28.2,455.6963010556351 -LPASU00720OB,G17,AMD Ryzen 9 7945HX,NVIDIA RTX 4060,16.0,1TB,1799.1,81.8870523415978,55503.0,46.3,455.15564638762606 -LPLEN03097OB,IdeaPad 3,AMD Ryzen 5 5625U,AMD Radeon ,12.0,512GB,474.89,21.572030281141828,15078.0,11.6,454.2532013969935 -LPHEW02058,Victus 15-fa1000ca,Intel i5-13500H,GeForce RTX 4050,16.0,512GB,1099.0,49.83669634118504,23289.0,41.9,453.4731241236127 -LPHEW01653OB,15-ef1013dx,AMD Ryzen 7 4700U,AMD Radeon ,8.0,512GB,445.43999923706,20.101839480644557,13446.0,11.6,451.28052072275847 -LPHEW02095,Victus 15-fb1010ca,AMD Ryzen 5 7535HS,GeForce RTX 2050,8.0,512GB,699.0,31.21676990730752,18445.0,21.2,446.5918441674895 -LPACE00877,Nitro 5,Intel i7-11800H,NVIDIA GeForce RTX3060,16.0,512GB,1067.8800048828,47.621005669710655,20753.0,42.0,445.93966973786604 -LPACE00953,Nitro Gaming Notebook ,AMD Ryzen R5-7535HS,GeForce RTX 3050,8.0,512GB,799.0,35.55561288251413,18445.0,27.5,445.0014127974234 -LPMSI00541OB,Thin GF63,Intel i7-12650H,GeForce RTX 3050,16.0,512GB,899.1,39.91213415163472,23281.0,27.5,443.9120693096955 -LPACE00967,Nitro 5,Intel i9-12900H,GeForce RTX 4060,16.0,1TB,1299.0,57.58296067087729,28524.0,46.3,443.2868411922809 -LPHEW02035OB,Omen 16-wd0010ca,Intel i7-13620H,GeForce RTX 4060,16.0,1TB,1259.1,55.74972643128664,26489.0,46.3,442.77441371842303 -LPGIG00124OB,AERO 16 XE5,Intel Core i7-12700H,NVIDIA GeForce RTX 3070 Ti,32.0,2 TB,1349.89,59.75453191942719,26424.0,52.2,442.66223114051655 -LPLEN03053,IdeaPad 5,AMD Ryzen 7 5825U,Integrated Radeon,8.0,512GB,581.88000488281,25.718839112709713,18458.0,13.2,441.9955815097901 -LPASU00688OB,TUF Gaming F15,Intel Core i9-13900H,GeForce RTX 4050,16.0,512GB,1259.1,55.60034875636981,29687.0,41.9,441.5880291983942 -LPMSI00560OB,Thin GF63,Intel i5-12450H,GeForce RTX 4060,16.0,512GB,1079.1,47.612328452799,17456.0,46.3,441.2225785636085 -LPMSI00559,Thin GF63,Intel i7-12650H,GeForce RTX 4060,16.0,512GB,1199.0,52.85979255383858,23281.0,46.3,440.865659331431 -LPASU00719,G713PU-DS91-CA,AMD Ryzen 9 7945HX,RTX 4050,16.0,1TB,1799.0,78.85674931129476,55503.0,41.9,438.3365720472193 -LPACE00896OB,A715,AMD Ryzen 7 5700U,RTX3050,16.0,512GB,764.1,33.22150481628348,15854.0,27.5,434.7795421578782 -LPASU00715OB,TUF F15,Intel i9-13900H,GeForce RTX 4060,16.0,1TB,1349.1,58.630651786672836,29687.0,46.3,434.5908515801115 -LPLEN03430,IdeaPad Slim 3,AMD Ryzen 7 7730U,,8.0,512GB,599.88,26.048551020174177,18824.0,13.2,434.22936287547805 -LPMSI00572,Thin GF63,Intel i5-12450H,GeForce RTX 2050,8.0,512GB,699.0,30.325827075388524,17456.0,21.2,433.8458809068458 -LPACE00968,Nitro 5,Intel i5-12450H,GeForce RTX 4060,16.0,512GB,1099.0,47.612328452799,17456.0,46.3,433.23319793265694 -LPASU00716OB,FX507ZC4-DS71-CA,Intel i7-12700H,NVIDIA RTX 3050,16.0,512GB,989.1,42.74351263568063,26424.0,27.5,432.14551244242875 -LPMSI00564OB,Bravo 15,AMD Ryzen 7 7735HS,GeForce RTX 4060,32.0,1TB,1259.1,53.745330272520455,24264.0,46.3,426.85513678437337 -LPLEN03438OB,Legion Pro 5,AMD Ryzen 7 7745HX,GeForce RTX 4070,16.0,512GB,1529.1,65.25220585947034,32909.0,51.7,426.73602680969424 -LPASU00808OB,TUF Gaming F15,Intel i7-11800H,GeForce RTX 3050 Ti,16.0,1TB,899.1,38.116873438305696,20753.0,28.2,423.94476074191635 -LPACE00956OB,Nitro 5,Intel i7-12650H,GeForce RTX 4060,16.0,512GB,1259.1,52.85979255383858,23281.0,46.3,419.82203600856633 -LPMSI00539OB,Katana 15,Intel i7-12650H,GeForce RTX 4060,16.0,1TB,1259.1,52.85979255383858,23281.0,46.3,419.82203600856633 -LPLEN03469,Legion Pro 5i,Intel i7-13700HX,GeForce RTX 4060,16.0,512GB,1499.0,62.615121094638184,34110.0,46.3,417.71261570805996 -LPASU00809,G614JV-DB91-CA,Intel i9-13980HX,GeForce RTX 4060,16.0,1TB,1799.0,75.12255312533922,47994.0,46.3,417.5795059774276 -LPASU00787,FX506HCB-DB59-CA,Intel i5-11400H,GeForce RTX 3050,8.0,512GB,799.0,33.1926775456855,15822.0,27.5,415.4277540135857 -LPMSI00496,GF63,Intel i5-11400H,RTX3050,8.0,512GB,799.0,33.1926775456855,15822.0,27.5,415.4277540135857 -LPASU00686OB,TUF Gaming Notebook,AMD Ryzen 7 7735HS,AMD Radeon RX 7600S,16.0,1TB,1349.1,55.53596388133588,24264.0,48.9,411.6519448620257 -LPASU00666OB,Vivobook 16,AMD Ryzen 5 5600H,AMD Radeon ,8.0,512GB,569.05,23.38724747660874,17093.0,11.6,410.9875665865696 -LPLEN03414OB,IdeaPad,Intel i3-1215U,Intel HD ,4.0,128GB,312.55,12.830763522126642,11032.0,4.2,410.5187497080993 -LPLEN03434,Legion Pro 5,AMD Ryzen 7 7745HX,GeForce RTX 4060,16.0,512GB,1499.0,61.53319759500753,32909.0,46.3,410.4949806204638 -LPHEW02087,Victus 15-fb0000ca,AMD Ryzen 5 5600H,GeForce RTX 3050 Ti,16.0,512GB,849.0,34.81975436366108,17093.0,28.2,410.1266709500716 -LPASU00720,G713PV-DS91-CA,AMD Ryzen 9 7945HX,NVIDIA RTX 4060,16.0,1TB,1999.0,81.8870523415978,55503.0,46.3,409.64008174886345 -LPACE00969,Nitro 5,Intel i5-11400H,GeForce GTX 1650,8.0,512GB,699.0,28.57835247681497,15822.0,20.8,408.8462443035046 -LPLEN03433OB,Legion Pro 5,AMD Ryzen 7 7745HX,GeForce RTX 4070,16.0,1TB,1619.1,65.25220585947034,32909.0,51.7,403.0152915784716 -LPCNO00060OB,ZenBook,AMD Ryzen 7 5700U,GeForce MX450,8.0,256GB,569.89,22.95979682730276,15854.0,12.6,402.88120211449154 -LPLEN03565OB,,Ryzen 7 7745HX,GeForce RTX 4060,16.0,1TB,1529.1,61.53319759500753,32909.0,46.3,402.4144764567885 -LPASU00785OB,FX706HF-DB51-CA,Intel i5-11400H,GeForce RTX 2050,8.0,512GB,719.1,28.85383457047888,15822.0,21.2,401.2492639476968 -LPMSI00541,Thin GF63,Intel i7-12650H,GeForce RTX 3050,16.0,512GB,999.0,39.91213415163472,23281.0,27.5,399.52086237872595 -LPHEW02035,Omen 16-wd0010ca,Intel i7-13620H,GeForce RTX 4060,16.0,1TB,1399.0,55.74972643128664,26489.0,46.3,398.4969723465807 -LPASU00688,TUF Gaming F15,Intel Core i9-13900H,GeForce RTX 4050,16.0,512GB,1399.0,55.60034875636981,29687.0,41.9,397.4292262785547 -LPMSI00560,Thin GF63,Intel i5-12450H,GeForce RTX 4060,16.0,512GB,1199.0,47.612328452799,17456.0,46.3,397.10032070724765 -LPGIG00152OB,AORUS 15,Intel Core i7-13700H,GeForce RTX 4060,16.0,1TB,1439.1,57.01182037215471,27890.0,46.3,396.16302113928646 -LPCNO00053OB,15Z-EF2000,AMD Ryzen 5 5500U,AMD Radeon Vega 7,8.0,256GB,501.49000038147,19.82978211437607,13144.0,11.6,395.41729843650097 -LPMSI00562OB,Modern 15,AMD Ryzen 7 7730U,AMD Radeon ,16.0,512GB,664.05,26.048551020174177,18824.0,13.2,392.2679168763524 -LPACE00896,A715,AMD Ryzen 7 5700U,RTX3050,16.0,512GB,849.0,33.22150481628348,15854.0,27.5,391.3015879420904 -LPASU00715,TUF F15,Intel i9-13900H,GeForce RTX 4060,16.0,1TB,1499.0,58.630651786672836,29687.0,46.3,391.1317664221003 -LPASU00666,Vivobook 16,AMD Ryzen 5 5600H,AMD Radeon ,8.0,512GB,599.0,23.38724747660874,17093.0,11.6,390.438188257241 -LPASU00573OB,Vivobook 15,AMD Ryzen 5 5500U,AMD Radeon ,8.0,512GB,508.14,19.82978211437607,13144.0,11.6,390.24249447742886 -LPLEN03414,IdeaPad,Intel i3-1215U,Intel HD ,4.0,128GB,329.0,12.830763522126642,11032.0,4.2,389.9928122226943 -LPHEW01811OB,Pavilion 15-eh2010ca,AMD Ryzen 5 5625U,AMD Radeon ,8.0,512GB,553.74000610352,21.572030281141828,15078.0,11.6,389.5696544112256 -LPASU00716,TUF F15,Intel i7-12700H,RTX 3050,16.0,512GB,1099.0,42.74351263568063,26424.0,27.5,388.93096119818586 -LPLEN03442OB,IdeaPad Flex 5,AMD Ryzen 3 5300U,,4.0,128GB,360.05,13.986839814927732,9716.0,7.6,388.4693741126991 -LPHEW01773OB,15-eg1010ca, Intel Core i5-1155G7,Intel Iris Xe ,8.0,512GB,427.39,16.559234457284195,10278.0,10.6,387.4502084111513 -LPLEN03435OB,Legion Pro 5,Intel i7-13700HX,GeForce RTX 4060,16.0,1TB,1619.1,62.615121094638184,34110.0,46.3,386.72794203346416 -LPASU00627OB,TUF507RR-DS71-CA,AMD Ryzen 7 6800H,GeForce RTX 3070,16.0,512GB,1412.0600000763,54.36660932481797,23654.0,48.0,385.0162834573623 -LPGIG00149OB,ASF-B3US754SH,Intel i9-13900HX,GeForce RTX 4070,16.0,1TB,1979.89,76.12369028373568,44977.0,51.7,384.48444248789417 -LPMSI00564,Bravo 15,AMD Ryzen 7 7735HS,GeForce RTX 4060,32.0,1TB,1399.0,53.745330272520455,24264.0,46.3,384.16962310593607 -LPLEN03438,Legion Pro 5,AMD Ryzen 7 7745HX,GeForce RTX 4070,16.0,512GB,1699.0,65.25220585947034,32909.0,51.7,384.0624241287248 -LPHEW02100OB,15-fd0030ca,Intel i5-1340P,,16.0,512GB,664.05,25.501093455896886,20204.0,10.6,384.02369484070306 -LPCNO00060,ZenBook,AMD Ryzen 7 5700U,GeForce MX450,8.0,256GB,599.88,22.95979682730276,15854.0,12.6,382.73982842073013 -LPHEW02017OB,Pavilion,Intel i5-1240P,Intel Iris Xe,8.0,512GB,599.34000854492,22.903035693253422,17320.0,10.6,382.13760748022645 -LPASU00556,G17,AMD Ryzen 7 4800H,NVIDIA GeForce RTX 3060,16.0,1TB,1196.88,45.729216036717844,18653.0,42.0,382.07018278121313 -LPASU00808,TUF Gaming F15,Intel i7-11800H,GeForce RTX 3050 Ti,16.0,1TB,999.0,38.116873438305696,20753.0,28.2,381.5502846677247 -LPHEW02072OB,ProBook 445 G9,AMD Ryzen 5 5625U,,8.0,256GB,569.05,21.572030281141828,15078.0,11.6,379.08848574188255 -LPMSI00539,Katana 15,Intel i7-12650H,GeForce RTX 4060,16.0,1TB,1399.0,52.85979255383858,23281.0,46.3,377.83983240770965 -LPACE00956,Nitro 5,Intel i7-12650H,GeForce RTX 4060,16.0,512GB,1399.0,52.85979255383858,23281.0,46.3,377.83983240770965 -LPACE00940,Nitro,Intel i7-12700H,GeForce RTX 3060,16.0,512GB,1399.0,52.72973853099744,26424.0,42.0,376.91021108647203 -LPCNO00053,15Z-EF2000,AMD Ryzen 5 5500U,AMD Radeon Vega 7,8.0,256GB,527.88,19.82978211437607,13144.0,11.6,375.6494300669862 -LPMSI00562,Modern 15 Notebook,AMD Ryzen 7 7730U,AMD Radeon ,16.0,512GB,699.0,26.048551020174177,18824.0,13.2,372.6545210325347 -LPLEN03086OB,Legion 5,Intel i7-12700H,GeForce RTX 3070,16.0,512GB,1529.89,56.86196993595611,26424.0,48.0,371.67358395672966 -LPASU00573,Vivobook 15,AMD Ryzen 5 5500U,AMD Radeon ,8.0,512GB,534.88,19.82978211437607,13144.0,11.6,370.7332881090351 -LPASU00686,TUF Gaming Notebook,AMD Ryzen 7 7735HS,AMD Radeon RX 7600S,16.0,1TB,1499.0,55.53596388133588,24264.0,48.9,370.48675037582314 -LPMSI00540OB,Thin GF63,Intel i7-12650H,GeForce RTX 4050,16.0,512GB,1349.1,49.82948952353554,23281.0,41.9,369.3535655143099 -LPLEN03442,IdeaPad Flex 5,AMD Ryzen 3 5300U,,4.0,128GB,379.0,13.986839814927732,9716.0,7.6,369.0459054070642 -LPMSI00593OB,Katana 17,Intel i7-13620H,GeForce RTX 4070,16.0,1TB,1619.1,59.46873469574946,26489.0,51.7,367.295007694086 -LPHEW02100,15-fd0030ca,Intel i5-1340P,,16.0,512GB,699.0,25.501093455896886,20204.0,10.6,364.82251009866786 -LPASU00760OB,Vivobook 16X,Intel i9-13900H,Geforce RTX 4050,16.0,512GB,1529.1,55.60034875636981,29687.0,41.9,363.6148633599491 -LPHEW02017,15-EG2002CA,Intel i5-1240P,Intel Iris Xe,8.0,512GB,630.88000488281,22.903035693253422,17320.0,10.6,363.03315235847117 -LPLEN02719OB,T470,Intel Core i5-6300U,Intel HD 620,8.0,256 GB,262.69000019073,9.530331395979937,3240.0,9.6,362.79764700065846 -LPLEN03433,Legion Pro 5,AMD Ryzen 7 7745HX,GeForce RTX 4070,16.0,1TB,1799.0,65.25220585947034,32909.0,51.7,362.71376242062445 -LPLEN03565,Legion Pro 5 16ARX8,Ryzen 7 7745HX,GeForce RTX 4060,16.0,1TB,1699.0,61.53319759500753,32909.0,46.3,362.1730288111096 -LPASU00785,TUF Gaming Notebook,Intel i5-11400H,GeForce RTX 2050,8.0,512GB,799.0,28.85383457047888,15822.0,21.2,361.12433755292716 -LPASU00625OB,G15,AMD Ryzen 9 6900HX,GeForce RTX 3070 Ti,16.0,1TB,1619.89,58.36992207851769,24887.0,52.2,360.3326280088011 -LPMSI00445OB,Modern 15,Intel Core i5-1155G7,Intel Iris Xe,8.0,256GB,459.69000305176,16.559234457284195,10278.0,10.6,360.22611645569464 -LPHEW02072,ProBook 445 G9,AMD Ryzen 5 5625U,,8.0,256GB,599.0,21.572030281141828,15078.0,11.6,360.1340614547884 -LPLEN03001OB,82RG006WCC (Open Box),AMD Ryzen 7 6800H,GeForce RTX 3060,16.0,1TB,1397.5899969482,50.2343779198593,23654.0,42.0,359.4357288586201 -LPGIG00157OB,AERO 14 OLED,Intel i5-12500H,RTX 4050,16.0,1TB,1349.1,48.24398964064633,21521.0,41.9,357.60128708506664 -LPLEN03000OB,IdeaPad Flex 5,AMD Ryzen 5 5500U,AMD Radeon ,8.0,512GB,554.69000305176,19.82978211437607,13144.0,11.6,357.4930502673164 -LPGIG00152,AORUS 15,Intel Core i7-13700H,GeForce RTX 4060,16.0,1TB,1599.0,57.01182037215471,27890.0,46.3,356.5467190253578 -LPCNO00033OB,F415EA-UB51,Intel Core i5-1135G7,Intel Iris Xe ,8.0,256GB,455.89,16.210604653489806,9891.0,10.6,355.58149232248576 -LPMSI00565OB,Bravo 15,AMD Ryzen 7 7735HS,GeForce RTX 4050,16.0,1TB,1439.1,50.71502724221742,24264.0,41.9,352.40794414715737 -LPASU00658OB,ZenBook 14,AMD Ryzen 5 5600H,AMD Radeon Vega 7,8.0,512GB,664.05,23.38724747660874,17093.0,11.6,352.191062067747 -LPACE00946OB,,Intel i5-1135G7,Intel Iris,8.0,512GB,462.53999389648,16.210604653489806,9891.0,10.6,350.4692538461412 -LPMSI00536OB,Katana GF66,Intel i7-12650H,GeForce RTX 3050 Ti,16.0,512GB,1159.0899978638,40.39422781554657,23281.0,28.2,348.49949434464133 -LPLEN03352OB,ThinkBook 15 G3,AMD Ryzen 5 5500U,AMD Radeon ,8.0,256GB,569.05,19.82978211437607,13144.0,11.6,348.471700454724 -LPLEN03435,Legion Pro 5,Intel i7-13700HX,GeForce RTX 4060,16.0,1TB,1799.0,62.615121094638184,34110.0,46.3,348.05514783011773 -LPMSI00293OB,GF75 10UEK-003CA,Intel Core i7-10750H,RTX3060,16.0,512GB,1146.4900003815,39.74665653542962,12012.0,42.0,346.6812316043205 -LPMSI00580OB,Pulse 17,Intel i9-13900H,GeForce RTX 4070,16.0,1TB,1799.1,62.34966005113564,29687.0,51.7,346.5602804242991 -LPGIG00149,,Intel i9-13900HX,GeForce RTX 4070,16.0,1TB,2199.88,76.12369028373568,44977.0,51.7,346.03564868872706 -LPACE00985OB,Swift 3 EVO,Intel i5-1240P,,16.0,512GB,664.05,22.903035693253422,17320.0,10.6,344.8992650139812 -LPASU00685OB,VivoBook,Intel Core i3-1115G4,Intel UHD ,4.0,128GB,284.05,9.793998180129643,6132.0,6.2,344.7983869082782 -LPACE00955,NH.QLZAA.005,Intel i5-12500H,GeForce RTX 4050,8.0,512GB,1399.99,48.24398964064633,21521.0,41.9,344.60238745024134 -LPHEW01929OB,ProBook 440 G9,Intel Core i5-1235U,,8.0,256GB,569.05,19.503219467103484,13546.0,10.6,342.73296664798323 -LPMSI00445,Modern 15 A11MU-863CA,Intel Core i5-1155G7,Intel Iris Xe,8.0,256GB,483.88,16.559234457284195,10278.0,10.6,342.2177907184466 -LPACE00888OB,TravelMate P2,Intel Core i5-1135G7,Intel Iris Xe ,8.0,256GB,474.05,16.210604653489806,9891.0,10.6,341.9598070560026 -LPCNO00048OB,VivoBook R,Intel Core i5-1135G7,Intel Iris Xe ,8.0,256GB,474.89,16.210604653489806,9891.0,10.6,341.35493805912535 -LPHUA00040OB,MateBook D15,Intel i5-1135G7,Intel Iris Xe ,8.0,512GB,474.89,16.210604653489806,9891.0,10.6,341.35493805912535 -LPLEN03000,IdeaPad Flex 5,AMD Ryzen 5 5500U,AMD Radeon ,8.0,512GB,583.88,19.82978211437607,13144.0,11.6,339.6208487082289 -LPMSI00553OB,Vector GP68HX,Intel i9-12900HX,GeForce RTX 4080,32.0,1TB,2249.1,76.17004322452678,34937.0,64.9,338.66899303955705 -LPLEN03437OB,Legion Pro 5,Intel i9-13900HX,GeForce RTX 4070,16.0,512GB,2249.1,76.12369028373568,44977.0,51.7,338.4628975311711 -LPGIG00141OB,AORUS 17,Intel i7-12700H,GeForce RTX 3080 Ti,32.0,1TB,1799.1,60.78758977066686,26424.0,53.7,337.87777094473273 -LPGIG00148OB,AORUS Gaming Notebook,Intel i7-13700H,GeForce RTX 4070,16.0,1TB,1799.1,60.73082863661752,27890.0,51.7,337.56227356243414 -LPLEN03436OB,Legion Pro 5,Intel i7-13700HX,GeForce RTX 4070,16.0,1TB,1979.1,66.33412935910098,34110.0,51.7,335.1732068066343 -LPASU00658,ZenBook 14,AMD Ryzen 5 5600H,AMD Radeon Vega 7,8.0,512GB,699.0,23.38724747660874,17093.0,11.6,334.5815089643596 -LPACE00946,,Intel i5-1135G7,Intel Iris,8.0,512GB,486.88,16.210604653489806,9891.0,10.6,332.9486660674048 -LPASU00717OB,G614JJ-DS71-CA,Intel i7-13650HX,RTX 3050,16.0,1TB,1439.1,47.90359407272007,32152.0,27.5,332.8718926601353 -LPMSI00540,Thin GF63,Intel i7-12650H,GeForce RTX 4050,16.0,512GB,1499.0,49.82948952353554,23281.0,41.9,332.41820896287885 -LPACE00960,PH16-71-72YG,Intel i7-13700HX,GeForce RTX 4070,16.0,1TB,1999.0,66.33412935910098,34110.0,51.7,331.836565078044 -LPASU00583OB,TUF Gaming Notebook,Ryzen 5 4600H,GeForce GTX 1650,8.0,512GB,827.89000091553,27.409947165390356,14525.0,20.8,331.0819932005316 -LPLEN03352,ThinkBook 15 G3,AMD Ryzen 5 5500U,AMD Radeon ,8.0,256GB,599.0,19.82978211437607,13144.0,11.6,331.04811543198775 -LPMSI00593,Katana 17,Intel i7-13620H,GeForce RTX 4070,16.0,1TB,1799.0,59.46873469574946,26489.0,51.7,330.5655069246774 -LPGIG00153,G5 MF,Intel i5-12450H,GeForce RTX 4050,8.0,512GB,1349.0,44.58202542249596,17456.0,41.9,330.48202685319467 -LPACE00981OB,Aspire 5,AMD Ryzen 3 5300U,,8.0,256GB,426.55,13.986839814927732,9716.0,7.6,327.9062200194052 -LPHEW01733,16-c0010ca,AMD Ryzen 7 5800H,NVIDIA GeForce RTX 3050 Ti,16.0,1TB,1172.88,38.456494720038215,21130.0,28.2,327.8808976198606 -LPACE00985,Swift 3 EVO,Intel i5-1240P,,16.0,512GB,699.0,22.903035693253422,17320.0,10.6,327.65430176328215 -LPASU00685,VivoBook F415EA-AS31,Intel Core i3-1115G4,Intel UHD ,4.0,128GB,299.0,9.793998180129643,6132.0,6.2,327.55846756286434 -LPASU00760,Vivobook 16X,Intel i9-13900H,GeForce RTX 4050,16.0,512GB,1699.0,55.60034875636981,29687.0,41.9,327.25337702395416 -LPHEW01929,ProBook 440 G9,Intel Core i5-1235U,,8.0,256GB,599.0,19.503219467103484,13546.0,10.6,325.596318315584 -LPHEW01913OB,15-DY2067MS,Intel Core i5-1135G7,Intel Iris X ,12.0,256GB,498.64,16.210604653489806,9891.0,10.6,325.09635515581994 -LPACE00888,TravelMate P2,Intel Core i5-1135G7,,8.0,256 GB,499.0,16.210604653489806,9891.0,10.6,324.86181670320246 -LPLEN03130OB,,AMD Ryzen 5 5625U,AMD Radeon ,12.0,512GB,664.89,21.572030281141828,15078.0,11.6,324.4451004097193 -LPHUA00040,MateBook D15,Intel i5-1135G7,Intel Iris Xe ,8.0,512GB,499.88,16.210604653489806,9891.0,10.6,324.2899226512324 -LPHEW02028OB,15-fc0040ca,AMD Ryzen 7 7730U,AMD Radeon ,16.0,1TB,806.55,26.048551020174177,18824.0,13.2,322.96263120915233 -LPASU00784OB,Vivobook 15,AMD Ryzen 7 7730U,,16.0,512GB,806.55,26.048551020174177,18824.0,13.2,322.96263120915233 -LPLEN03390OB,ThinkPad T14 G3,Ryzen 5 Pro 6650U,AMD Radeon 660M,16.0,256GB,759.05,24.457467342618514,16752.0,13.6,322.2115452554972 -LPLEN03431,IdeaPad Slim 5,Intel i5-1335U,Intel Iris Xe,8.0,512GB,699.99,22.550802480634285,16929.0,10.6,322.15892342225294 -LPLEN02908,14 G4 ABA,AMD Ryzen 7 5825U,,16.0,512 GB,799.0,25.718839112709713,18458.0,13.2,321.88784871977117 -LPGIG00157,AERO 14,Intel i5-12500H,RTX 4050,16.0,1TB,1499.0,48.24398964064633,21521.0,41.9,321.8411583765599 -LPGIG00161,,Intel i5-12500H,GeForce RTX 4050,16.0,512GB,1499.0,48.24398964064633,21521.0,41.9,321.8411583765599 -LPGIG00158,AORUS Gaming Notebook,Intel i5-12500H,GeForce RTX 4050,8.0,512GB,1499.0,48.24398964064633,21521.0,41.9,321.8411583765599 -LPLEN03049OB,Legion 5,AMD Ryzen 7 6800H,GeForce RTX 3070 Ti,16.0,512GB,1780.0900054932,57.25917130828905,23654.0,52.2,321.6644727603229 -LPGIG00159,AORUS Gaming Notebook,Intel i5-12500H,GeForce RTX 4060,16.0,512GB,1599.0,51.274292670949364,21521.0,46.3,320.6647446588453 -LPGIG00151,BSF-73US754SH,Intel i7-13700H,GeForce RTX 4070,16.0,1TB,1899.0,60.73082863661752,27890.0,51.7,319.80425822336764 -LPMSI00543,Katana GF76,Intel i7-11800H,GeForce RTX 3050 Ti,16.0,512GB,1199.0,38.116873438305696,20753.0,28.2,317.9055332636005 -LPMSI00565,Bravo 15,AMD Ryzen 7 7735HS,GeForce RTX 4050,16.0,1TB,1599.0,50.71502724221742,24264.0,41.9,317.1671497324416 -LPASU00786OB,Vivobook 16X,Intel i5-1235U,,8.0,512GB,616.55,19.503219467103484,13546.0,10.6,316.3282696797257 -LPGIG00154OB,AERO 14,Intel Core i7-13700H,GeForce RTX 4050,16.0,1TB,1709.1,53.98151734185167,27890.0,41.9,315.8476235553898 -LPMSI00538OB,Katana 17 B12VGK-217CA,Intel i7-12650H,GeForce RTX 4070,16.0,1TB,1799.1,56.57880081830139,23281.0,51.7,314.4839131693702 -LPMSI00561,Bravo 15,AMD Ryzen 7 7735HS,GeForce RTX 3050,16.0,512GB,1299.0,40.7976718703166,24264.0,27.5,314.0698373388499 -LPMSI00575OB,Modern 15,Intel i7-1255U,Intel Iris Xe,16.0,512GB,664.05,20.739869916941426,13772.0,12.1,312.3239201406736 -LPMSI00580,Pulse 17,Intel i9-13900H,GeForce RTX 4070,16.0,1TB,1999.0,62.34966005113564,29687.0,51.7,311.9042523818691 -LPACE00981,Aspire 5,AMD Ryzen 3 5300U,,8.0,256GB,449.0,13.986839814927732,9716.0,7.6,311.510909018435 -LPASU00500OB,ExpertBook B1,Intel i5 1135G7,,8.0,256GB,521.55,16.210604653489806,9891.0,10.6,310.8159266319587 -LPLEN03456OB,IdeaPad,Intel i5-1135G7,,8.0,512GB,521.55,16.210604653489806,9891.0,10.6,310.8159266319587 -LPACE00851OB,TravelMate P2,Intel Core i5-1135G7,Intel HD ,8.0,256GB,379.89,11.802891154867215,9891.0,4.2,310.6923360674726 -LPGIG00146OB,17H,Intel i7-13700H,RTX 4080,16.0,1TB,2249.1,69.8217377275266,27890.0,64.9,310.4430115491823 -LPLEN02956,ThinkBook 14 G4 ABA,AMD Ryzen 5 5625U,,16.0,256GB,699.0,21.572030281141828,15078.0,11.6,308.61273649702184 -LPLEN03130,Consumer Laptop,AMD Ryzen 5 5625U,AMD Radeon ,12.0,512GB,699.88,21.572030281141828,15078.0,11.6,308.224699679114 -LPASU00783OB,Zenbook 14 OLED,AMD Ryzen 7 5825U,,16.0,512GB,834.93999938965,25.718839112709713,18458.0,13.2,308.032183528283 -LPGIG00156OB,AERO 16 OLED,Intel i7-13700H,GeForce RTX 4070,16.0,1TB,1979.1,60.73082863661752,27890.0,51.7,306.8608389501163 -LPHEW02028,15-fc0040ca,AMD Ryzen 7 7730U,AMD Radeon ,16.0,1TB,849.0,26.048551020174177,18824.0,13.2,306.81449964869466 -LPASU00784,Vivobook 15 OLED,AMD Ryzen 7 7730U,,16.0,512GB,849.0,26.048551020174177,18824.0,13.2,306.81449964869466 -LPLEN03390,21CF000CUS,Ryzen 5 Pro 6650U,AMD Radeon 660M,16.0,256GB,799.0,24.457467342618514,16752.0,13.6,306.10096799272236 -LPMSI00553,Vector GP68HX,Intel i9-12900HX,GeForce RTX 4080,32.0,1TB,2499.0,76.17004322452678,34937.0,64.9,304.8020937356013 -LPHEW02024OB,Consumer Notebook 17,Intel i5-1335U,Intel Iris Xe,8.0,1TB,739.94001464844,22.550802480634285,16929.0,10.6,304.7652787280144 -LPLEN03437,,Intel i9-13900HX,GeForce RTX 4070,16.0,512GB,2499.0,76.12369028373568,44977.0,51.7,304.61660777805395 -LPGIG00141,YE5-74US544SH,Intel i7-12700H,GeForce RTX 3080 Ti,32.0,1TB,1999.0,60.78758977066686,26424.0,53.7,304.0899938502594 -LPGIG00148,,Intel i7-13700H,GeForce RTX 4070,16.0,1TB,1999.0,60.73082863661752,27890.0,51.7,303.8060462061907 -LPMSI00537,Pulse 17,Intel i7-13700H,GeForce RTX 4070,16.0,1TB,1999.0,60.73082863661752,27890.0,51.7,303.8060462061907 -LPLEN03436,Legion Pro 5,Intel i7-13700HX,GeForce RTX 4070,16.0,1TB,2199.0,66.33412935910098,34110.0,51.7,301.6558861259708 -LPLEN03503OB,Legion Slim 7i,Intel i9-13900H,GeForce RTX 4070,32.0,1TB,2069.1,62.34966005113564,29687.0,51.7,301.3371033354388 -LPASU00721OB,G733PZ-XS96,AMD Ryzen 9 7945HX,RTX 4080,32.0,1TB,3149.1,94.6969696969697,55503.0,64.9,300.71121811619093 -LPASU00786,Vivobook 16X,Intel i5-1235U,,8.0,512GB,649.0,19.503219467103484,13546.0,10.6,300.51185619573937 -LPASU00717,G614JJ-DS71-CA,Intel i7-13650HX,RTX 3050,16.0,1TB,1599.0,47.90359407272007,32152.0,27.5,299.58470339412173 -LPASU00610OB,TUF517ZC-DS51-CA,Intel i5-12450H,GeForce RTX 3050,16.0,512GB,1159.0899978638,34.664670050595134,17456.0,27.5,299.0679767272778 -LPLEN03569OB,V14,Ryzen 5 5500U,,16.0,512GB,664.05,19.82978211437607,13144.0,11.6,298.6188105470382 -LPACE00958,PHN16-71-788N,Intel i7-13700HX,GeForce RTX 4060,16.0,1024GB,2099.99,62.615121094638184,34110.0,46.3,298.16866315857783 -LPMSI00567,Thin GF63,Intel Core i5-12450H,GeForce RTX 4060,16.0,512GB,1599.0,47.612328452799,17456.0,46.3,297.7631548017448 -LPHEW02099OB,17-cn3020ca,Intel i5-1335U,,16.0,512GB,759.05,22.550802480634285,16929.0,10.6,297.09245083504754 -LPMSI00575,Modern 15,Intel i7-1255U,Intel Iris Xe,16.0,512GB,699.0,20.739869916941426,13772.0,12.1,296.7077241336399 -LPASU00500,ExpertBook B1,Intel i5 1135G7,,8.0,256GB,549.0,16.210604653489806,9891.0,10.6,295.27513030036073 -LPLEN03456,IdeaPad,Intel i5-1135G7,,8.0,512GB,549.0,16.210604653489806,9891.0,10.6,295.27513030036073 -LPACE00984OB,Aspire 3,Intel i5-1235U,,16.0,512GB,664.05,19.503219467103484,13546.0,10.6,293.7010687012045 -LPLEN03212OB,IdeaPad 5,Intel Core i5-1235U,Intel Iris Xe,8.0,512GB,664.89,19.503219467103484,13546.0,10.6,293.33001650052614 -LPACE00963,AN515-58-7578,Intel i7-12650H,GeForce RTX 4050,16.0,1TB,1699.99,49.82948952353554,23281.0,41.9,293.1163684700236 -LPCNO00052OB,VivoBook F515,Intel Core i7-1165G7,Intel Iris Xe ,8.0,512GB,603.14,17.65445111075077,10347.0,12.1,292.7090080371186 -LPMSI00563OB,Modern 15,Intel i5-1155G7,Intel Iris Xe,16.0,512GB,569.05,16.559234457284195,10278.0,10.6,290.9978816849872 -LPLEN03611,21KJ000EUS,AMD Ryzen 7 7730U Octa-core (8 Core),,16.0,512 GB,899.0,26.048551020174177,18824.0,13.2,289.7502894346404 -LPHEW02024,Consumer Notebook,Intel i5-1335U,Intel Iris Xe,8.0,1TB,778.88000488281,22.550802480634285,16929.0,10.6,289.52858385454726 -LPACE00952,Nitro 5,Intel i5-12450H,GeForce RTX 3050,8.0,512GB,1199.99,34.664670050595134,17456.0,27.5,288.8746577104404 -LPACE00966,Nitro 17,AMD Ryzen 7 7735HS,GeForce RTX 4070,32.0,1TB,1999.0,57.46433853698327,24264.0,51.7,287.46542539761515 -LPMSI00481OB,Raider GE76,Intel i9-12900HK,RTX3080TI,32.0,1TB,2173.39,62.28390528514356,28085.0,53.7,286.57491423602556 -LPCNO00061OB,F1500EA-WB51,Intel i5-1135G7,,8.0,256GB,568.05999832153,16.210604653489806,9891.0,10.6,285.3678256062377 -LPASU00726OB,GV302XU-DS91T-CA,AMD Ryzen 9 7940HS,RTX 4050,16.0,1TB,1979.1,56.417421707381465,30594.0,41.9,285.06604874630625 -LPASU00581OB,ExpertBook B1,Intel i5-1135G7,,8.0,256GB,569.05,16.210604653489806,9891.0,10.6,284.871358465685 -LPHUA00036OB,MateBook D15,Intel i5-1135G7,Intel Iris Xe ,8.0,512GB,569.05,16.210604653489806,9891.0,10.6,284.871358465685 -LPASU00561OB,ExpertBook B1,Intel Core i5-1135G7,Intel Iris Xe G7,8.0,256GB,569.89,16.210604653489806,9891.0,10.6,284.45146701099867 -LPGIG00154,AERO 14,Intel Core i7-13700H,GeForce RTX 4050,16.0,1TB,1899.0,53.98151734185167,27890.0,41.9,284.2628611998508 -LPGIG00145,,Intel Core i9-13900HX,GeForce RTX 4080,16.0,1TB,2999.0,85.21459937464478,44977.0,64.9,284.14337904182986 -LPACE00961,Predator Helios,Intel i9-13900HX,GeForce RTX 4080,32.0,1 TB,2999.0,85.21459937464478,44977.0,64.9,284.14337904182986 -LPACE00957,AN16-51-74BV,Intel i7-13700H,GeForce RTX 4050,16.0,1024GB,1899.99,53.98151734185167,27890.0,41.9,284.1147445084009 -LPLEN03569,V14,Ryzen 5 5500U,,16.0,512GB,699.0,19.82978211437607,13144.0,11.6,283.6878700196863 -LPLEN03432OB,IdeaPad Flex 5,AMD Ryzen 5 7530U,,16.0,512GB,806.55,22.859348083783125,16507.0,11.6,283.42133883557284 -LPMSI00538,Katana 17 B12VGK-217CA,Intel i7-12650H,GeForce RTX 4070,16.0,1TB,1999.0,56.57880081830139,23281.0,51.7,283.0355218524332 -LPASU00735OB,Vivobook 16X,Intel i5-12500H,Iris Xe ,16.0,512GB,944.18999938965,26.687515811445227,21521.0,10.6,282.64984620359 -LPGIG00134,A7 K1,AMD Ryzen 7 5800H,GeForce RTX 3060,16.0,512GB,1699.0,47.960626951443174,21130.0,42.0,282.2873864122612 -LPHEW02099,17-cn3020ca,Intel i5-1335U,,16.0,512GB,799.0,22.550802480634285,16929.0,10.6,282.2378282932952 -LPASU00761,Vivobook Pro 16X OLED,Intel i9-13980HX,Geforce RTX 4070,32.0,1TB,2799.0,78.84156138980202,47994.0,51.7,281.67760410790294 -LPLEN03493OB,Thinkbook T490,Intel i5-8365U,,16.0,256GB,359.1,10.033535526260737,6245.0,6.4,279.4078397733427 -LPLEN00715OB,,Intel Core i5-8365U,,16.0,256 GB,359.1,10.033535526260737,6245.0,6.4,279.4078397733427 -LPGIG00146,,Intel i7-13700H,RTX 4080,16.0,1TB,2499.0,69.8217377275266,27890.0,64.9,279.3987103942641 -LPACE00984,Aspire 3,Intel i5-1235U,,16.0,512GB,699.0,19.503219467103484,13546.0,10.6,279.0160152661442 -LPLEN03518OB,Thinkbook T480s,Intel i5-8350U,,16.0,256GB,359.1,10.016419334343182,6226.0,6.4,278.9311983944077 -LPLEN02718OB,,Intel Core i5-8350U,Intel UHD 620,16.0,256 GB,359.1,10.016419334343182,6226.0,6.4,278.9311983944077 -LPASU00724OB,GU604VI-DS92-CA,Intel i9-13900H,GeForce RTX 4070,32.0,1TB,2249.1,62.34966005113564,29687.0,51.7,277.2204884226386 -LPGIG00150,AORUS 15X,Intel i7-13700HX,GeForce RTX 4070,16.0,1TB,2399.0,66.33412935910098,34110.0,51.7,276.50741708670694 -LPMSI00563,Modern 15 Notebook,Intel i5-1155G7,Intel Iris Xe,16.0,512GB,599.0,16.559234457284195,10278.0,10.6,276.4479876007378 -LPGIG00156,AERO 16 OLED,Intel i7-13700H,GeForce RTX 4070,16.0,1TB,2199.0,60.73082863661752,27890.0,51.7,276.17475505510464 -LPHEW01967OB,ProBook 440 G9,Intel i5-1235U,,16.0,256GB,711.55,19.503219467103484,13546.0,10.6,274.09485583730566 -LPLEN03312OB,T490,Intel i5-8265U,Intel UHD ,16.0,256GB,359.1,9.83354633648721,6023.0,6.4,273.83866155631324 -LPHEW01543OB,Notebook,AMD Ryzen 7 5700U,AMD Radeon ,16.0,1TB,854.89,23.373019967798626,15854.0,13.2,273.40382935580755 -LPACE00959,PH16-71-71AV,Intel i7-13700HX,GeForce RTX 4060,16.0,1024GB,2299.99,62.615121094638184,34110.0,46.3,272.24084058903816 -LPLEN03567OB,ThinkPad X1 Gen 3,Intel i7-8550U,N/A,16.0,256GB,359.1,9.748866229105627,5929.0,6.4,271.4805410500035 -LPLEN03503,82Y3007HCC,Intel i9-13900H,NVIDIA GeForce RTX 4070,32.0,1TB,2299.0,62.34966005113564,29687.0,51.7,271.20339300189494 -LPCNO00061,Vivobook F Series,Intel i5-1135G7,,8.0,256GB,597.95999908447,16.210604653489806,9891.0,10.6,271.09847946868825 -LPHUA00042OB,Matebook D14,Intel i7-1360P,,16.0,1TB,949.05,25.72788858259914,19309.0,12.1,271.0909707876207 -LPASU00721,ROG Strix,AMD Ryzen 9 7945HX,RTX 4080,32.0,1TB,3499.0,94.6969696969697,55503.0,64.9,270.6400963045719 -LPASU00581,ExpertBook B1,Intel i5-1135G7,,8.0,256GB,599.0,16.210604653489806,9891.0,10.6,270.62779054240076 -LPHUA00036,MateBook D15,Intel i5-1135G7,Intel Iris Xe ,8.0,512GB,599.0,16.210604653489806,9891.0,10.6,270.62779054240076 -LPASU00561,ExpertBook B1,Intel Core i5-1135G7,Intel Iris Xe G7,8.0,256GB,599.88,16.210604653489806,9891.0,10.6,270.23079038290666 -LPLEN03432,,AMD Ryzen 5 7530U,,16.0,512GB,849.0,22.859348083783125,16507.0,11.6,269.25027189379415 -LPMSI00581,Modern 15,AMD Ryzen 5-7530U,,16.0,512GB,849.0,22.859348083783125,16507.0,11.6,269.25027189379415 -LPASU00610,TUF517ZC-DS51-CA,Intel i5-12450H,GeForce RTX 3050,16.0,512GB,1287.8799972534,34.664670050595134,17456.0,27.5,269.1607146979751 -LPHEW02101,14-ep0000ca,Intel i3-N305,,8.0,256GB,549.0,14.773827280276564,9978.0,8.4,269.10432204511045 -LPASU00621OB,GA503RS-XS92-CA,AMD Ryzen 9 6900HS,GeForce RTX 3080,32.0,1TB,2015.89,54.175896679250314,23901.0,47.4,268.74430985445787 -LPASU00735,Vivobook 16X,Intel i5-12500H,Iris Xe ,16.0,512GB,993.87999725342,26.687515811445227,21521.0,10.6,268.51849202314145 -LPASU00770OB,GA402XZ-CS94,AMD Ryzen 9 7940HS,GeForce RTX 4080,16.0,1TB,2699.1,72.2576420930564,30594.0,64.9,267.71013335206703 -LPACE00965,Nitro,AMD Ryzen 7 7735HS,GeForce RTX 4050,16.0,1TB,1899.0,50.71502724221742,24264.0,41.9,267.0617548300022 -LPMSI00555,Stealth 15,Intel i9-13900H,GeForce RTX 4060,32.0,1TB,2199.0,58.630651786672836,29687.0,46.3,266.6241554646332 -LPASU00609OB,TUF Gaming Notebook,Intel Core i5-10300H,GeForce GTX 1650,8.0,1TB,824.29000152588,21.958890465752503,8474.0,20.8,266.39763220593994 -LPASU00752OB,Vivobook 17,Intel i7-1165G7,Intel Iris Xe ,8.0,512GB,664.05,17.65445111075077,10347.0,12.1,265.86026821400156 -LPLEN03685OB,IdeaPad Slim 3 15AMN8,AMD Ryzen 3 7320U,,8.0,256GB,426.55,11.335170178426807,9066.0,4.6,265.7407145335086 -LPASU00782OB,Vivobook Go,AMD Ryzen 3 7320U,,8.0,128GB,426.55,11.335170178426807,9066.0,4.6,265.7407145335086 -LPMSI00579,Stealth 14Studio,Intel i7-13620H,GeForce RTX 4060,16.0,1TB,2099.0,55.74972643128664,26489.0,46.3,265.6013646083213 -LPLEN03707,V15 G4,Intel i3-1315U,Intel UHD ,16.0,512GB,699.0,18.53286390743826,13004.0,9.9,265.1339614798034 -LPHEW01738OB,Probook 640,Intel Core i5-6300U,Intel HD 520,16.0,512GB,242.89,6.4311578422609275,3240.0,5.1,264.7765590292284 -LPGIG00136,AORUS 5 KE4,Intel Core i7-12700H,GeForce RTX 3060,16.0,1TB,1999.0,52.72973853099744,26424.0,42.0,263.78058294646047 -LPASU00764OB,Zenbook 15 OLED,AMD Ryzen 7 7735U,AMD Radeon ,16.0,1TB,1234.05,32.18085300429744,21350.0,18.8,260.77430415540243 -LPASU00779OB,Zenbook 14X OLED,Intel i7-12700H,Intel Iris Xe,16.0,1TB,1234.05,32.13745202962002,26424.0,12.1,260.42260872428204 -LPHEW01967,ProBook 440 G9,Intel i5-1235U,,16.0,256GB,749.0,19.503219467103484,13546.0,10.6,260.39011304544033 -LPHEW01543,15-ef2030ca,AMD Ryzen 7 5700U,AMD Radeon ,16.0,1TB,899.88,23.373019967798626,15854.0,13.2,259.73485317818626 -LPACE00994,Vero,Intel i7-1255U,Intel Iris Xe ,16.0,1TB,799.0,20.739869916941426,13772.0,12.1,259.5728400117826 -LPMSI00524,GP66 Leopard,Intel Core i7-11800H,NVIDIA RTX3070,16.0,512GB,1999.0,51.753237074669336,20753.0,48.0,258.89563318994163 -LPMSI00497,Pulse GL66,Intel i7-11800H,RTX3070,16.0,512GB,1999.88,51.753237074669336,20753.0,48.0,258.78171227608317 -LPHUA00042,Matebook D14,Intel i7-1360P,,16.0,1TB,999.0,25.72788858259914,19309.0,12.1,257.5364222482396 -LPASU00726,GV302XU-DS91T-CA,AMD Ryzen 9 7940HS,RTX 4050,16.0,1TB,2199.0,56.417421707381465,30594.0,41.9,256.55944387167557 -LPASU00727,GV601VU-DS91T-CA,Intel Core i9-13900H,RTX 4050,16.0,1TB,2199.0,55.60034875636981,29687.0,41.9,252.8437869775799 -LPHEW02077,OMEN,AMD Ryzen 9 7940HS,GeForce RTX 4070,32.0,2TB,2499.0,63.16673300214731,30594.0,51.7,252.76803922427894 -LPASU00752,Vivobook 17,Intel i7-1165G7,Intel Iris Xe ,8.0,512GB,699.0,17.65445111075077,10347.0,12.1,252.56725480330144 -LPASU00782,Vivobook Go,AMD Ryzen 3 7320U,,8.0,128GB,449.0,11.335170178426807,9066.0,4.6,252.45367880683315 -LPLEN03685,IdeaPad Slim 3 15AMN8,AMD Ryzen 3 7320U,,8.0,256GB,449.0,11.335170178426807,9066.0,4.6,252.45367880683315 -LPMSI00592,Stealth 14Studio,Intel i7-13620H,GeForce RTX 3050,16.0,512GB,1699.0,42.80206802908278,26489.0,27.5,251.92506197223534 -LPLEN03493,,Intel i5-8365U,,16.0,256GB,399.0,10.033535526260737,6245.0,6.4,251.46705579600845 -LPLEN00715,ThinkPad T490,Intel i5-8365U,,16.0,256GB,399.0,10.033535526260737,6245.0,6.4,251.46705579600845 -LPASU00718,G634JZ-XS96,Intel i9-13980HX,RTX 4080,32.0,1TB,3499.0,87.93247048071112,47994.0,64.9,251.30743206833705 -LPLEN02718,ThinkPad T480,Intel Core i5-8350U,Intel UHD 620,16.0,256 GB,399.0,10.016419334343182,6226.0,6.4,251.03807855496697 -LPLEN03518,Thinkbook T480s,Intel i5-8350U,,16.0,256GB,399.0,10.016419334343182,6226.0,6.4,251.03807855496697 -LPMSI00578,Modern 14,Intel i5-1335U,,16.0,512GB,899.0,22.550802480634285,16929.0,10.6,250.8431866588908 -LPLEN03268,ThinkPad T580,Intel Core i5-8350U,,16.0,256GB,399.88,10.016419334343182,6226.0,6.4,250.48562904729374 -LPASU00759,H7604JI-XS91T-CA,Intel i9-13980HX,Geforce RTX 4070,32.0,1TB,3154.0,78.84156138980202,47994.0,51.7,249.97324473621444 -LPASU00766,Zenbook Pro 14,Intel i9-13900H,GeForce RTX 4070,32.0,1TB,2499.0,62.34966005113564,29687.0,51.7,249.4984395803747 -LPASU00724,ROG Zephyrus,Intel i9-13900H,GeForce RTX 4070,32.0,1TB,2499.0,62.34966005113564,29687.0,51.7,249.4984395803747 -LPGIG00155,AERO 16 OLED,Intel i9-13900H,GeForce RTX 4070,32.0,1TB,2499.0,62.34966005113564,29687.0,51.7,249.4984395803747 -LPGIG00144OB,AZF-B5US665SP,Intel Core i9-13900HX,RTX 4090,32.0,2TB,3644.8900085449,90.51762967767509,44977.0,72.6,248.34118304110692 -LPLEN03578OB,Yoga L390,Intel i5-8365U,,16.0,256GB,404.1,10.033535526260737,6245.0,6.4,248.2933810012555 -LPLEN03202OB,ThinkPad X380 Yoga,Intel i5-8350U,Integrated,16.0,512GB,404.1,10.016419334343182,6226.0,6.4,247.86981772687906 -LPASU00764,Zenbook 15 OLED,AMD Ryzen 7 7735U,AMD Radeon ,16.0,1TB,1299.0,32.18085300429744,21350.0,18.8,247.73558894763232 -LPASU00779,Zenbook 14X OLED,Intel i7-12700H,Intel Iris Xe,16.0,1TB,1299.0,32.13745202962002,26424.0,12.1,247.40147828806792 -LPLEN03403OB,T480s,Intel i7-8550U,Intel UHD 620,24.0,256GB,394.15999755859,9.748866229105627,5929.0,6.4,247.33271487440842 -LPLEN00182OB,ThinkPad T480s,Intel Core i7-8550U,,16.0,256 GB,394.15999755859,9.748866229105627,5929.0,6.4,247.33271487440842 -LPMSI00381OB,Prestige 14,Intel Core i7-1185G7,NVIDIA GeForce MX450,16.0,1TB,736.14,18.184379282305194,10553.0,12.6,247.0233825400765 -LPLEN03312,T490,Intel i5-8265U,Intel UHD ,16.0,256GB,399.0,9.83354633648721,6023.0,6.4,246.45479540068197 -LPHEW02012,Chromebook C204MA-SS02-CB,Intel Celeron-N4020,Intel UHD ,4.0,32GB eMMC,99.0,2.434783884066724,1556.0,1.5,245.93776606734585 -LPLEN03567,ThinkPad X1 Gen 3,Intel i7-8550U,,16.0,256GB,399.0,9.748866229105627,5929.0,6.4,244.33248694500318 -LPGIG00164,AORUS 17X,Intel i9-13980HX,GeForce RTX 4080,16.0,1TB,3599.0,87.93247048071112,47994.0,64.9,244.324730427094 -LPLEN02154OB,20WM0085US,Intel i5-1135G7,,8.0,256GB,664.05,16.210604653489806,9891.0,10.6,244.11722992982163 -LPMSI00513,Katana GF76,Intel Core i7-12700H,GeForce RTX3070TI,16.0,1TB,2449.0,59.75453191942719,26424.0,52.2,243.99563870733846 -LPHUA00035OB,Matebook 14,Intel Core i5-1135G7,Intel Iris Xe ,16.0,512GB,664.89,16.210604653489806,9891.0,10.6,243.80882030846914 -LPMSI00548,Vector GP78 HX,Intel i9-13950HX,GeForce RTX 4080,32.0,1TB,3499.0,85.17316017316018,44931.0,64.9,243.42143519051209 -LPASU00621,GA503RS-XS92-CA,AMD Ryzen 9 6900HS,GeForce RTX 3080,32.0,1TB,2239.88,54.175896679250314,23901.0,47.4,241.86963890588027 -LPASU00780OB,Zenbook,Intel i7-12700H,,16.0,1TB,1329.05,32.13745202962002,26424.0,12.1,241.80769745020896 -LPACE00945OB,Aspire,Intel i5-10210U,,8.0,256GB,415.04000549316,10.018221038755556,6228.0,6.4,241.3796478932598 -LPGIG00138,AERO 16,Intel Core i9-12900H,GeForce RTX 3080 Ti,32.0,2TB,2599.0,62.67937940365967,28524.0,53.7,241.16729281900604 -LPASU00770,GA402XZ-CS94,AMD Ryzen 9 7940HS,GeForce RTX 4080,16.0,1TB,2999.0,72.2576420930564,30594.0,64.9,240.93912001686033 -LPHEW02021OB,14-em0030ca,AMD Ryzen 3 7320U,Radeon ,8.0,256GB,474.05,11.335170178426807,9066.0,4.6,239.11338842794657 -LPLEN03428OB,IdeaPad Slim 3,AMD Ryzen 3 7320U,AMD Radeon 610M ,8.0,512GB,474.99,11.335170178426807,9066.0,4.6,238.64018565499921 -LPASU00603OB,Vivobook 15,Intel Core i7-1165G7,Intel Iris Xe ,12.0,512GB,741.83999694824,17.65445111075077,10347.0,12.1,237.98192579770762 -LPASU00540,VivoBook Pro 16X,AMD Ryzen 7 5800H,NVIDIA GeForce RTX 3050,16.0,512GB,1599.0,37.974401056126375,21130.0,27.5,237.48843687383595 -LPASU00729,Zephyrus Duo,AMD Ryzen 9 7945HX,RTX 4080,32.0,1TB,3999.0,94.6969696969697,55503.0,64.9,236.8016246485864 -LPMSI00568OB,Modern,Intel i5-1235U,Intel Iris Xe,16.0,512GB,830.18999938965,19.503219467103484,13546.0,10.6,234.9247700097823 -LPMSI00498OB,SUMMIT E14,Intel i7-1280P,Iris Xe ,16.0,1TB,1141.7899938965,26.755760949858566,20450.0,12.1,234.3317168032907 -LPASU00722,G834JY-XS97,Intel i9-13980HX,RTX 4090,32.0,2TB,3999.0,93.23550078374141,47994.0,72.6,233.1470387190333 -LPLGE00019OB,gram,Intel i5-1155G7,Intel Iris Xe ,8.0,512GB,712.39,16.559234457284195,10278.0,10.6,232.44619460245366 -LPGIG00137OB,AERO 16,Intel Core i9-12900H,NVIDIA RTX 3080 Ti,64.0,2TB,2699.1,62.67937940365967,28524.0,53.7,232.22325739564917 -LPMSI00550,Raider GE78HX,Intel i9-13980HX,GeForce RTX 4070,32.0,2TB,3399.0,78.84156138980202,47994.0,51.7,231.95516737217426 -LPSAS00117,Galaxy Book,Intel i5-1135G7,Intel Iris Xe ,8.0,256GB,699.0,16.210604653489806,9891.0,10.6,231.91136843333055 -LPLEN02154,20WM0085US,Intel i5-1135G7,,8.0,256GB,699.0,16.210604653489806,9891.0,10.6,231.91136843333055 -LPHUA00035,Matebook 14,Intel Core i5-1135G7,Intel Iris Xe ,16.0,512GB,699.88,16.210604653489806,9891.0,10.6,231.61977272517868 -LPLEN03299OB,ThinkPad T14 Gen 2,Intel Core i5-1135G7,GeForce MX450 2GB,8.0,256GB,759.89,17.588015121809363,9891.0,12.6,231.45475163259636 -LPASU00780,Zenbook,Intel i7-12700H,,16.0,1TB,1399.0,32.13745202962002,26424.0,12.1,229.71731257769852 -LPHUA00037OB,MateBook 14s,Intel Core i7-11370H,Intel Iris Xe ,16.0,512GB,824.49000038147,18.927355278093078,11760.0,12.1,229.56440065174695 -LPACE00945,Aspire A515-54-54B9,Intel i5-10210U,,8.0,256GB,436.88000488281,10.018221038755556,6228.0,6.4,229.31287600225318 -LPLEN03600,21KK0009US,AMD Ryzen 5 7530U Hexa-core (6 Core),,16.0,512 GB,999.0,22.859348083783125,16507.0,11.6,228.82230314097222 -LPASU00707OB,Zenbook OLED,AMD Ryzen 7 7730U,AMD Radeon,16.0,1TB,1139.05,26.048551020174177,18824.0,13.2,228.686633775288 -LPHEW01946OB,,Intel i5-1235U,,16.0,256GB,854.05,19.503219467103484,13546.0,10.6,228.36156509693208 -LPHEW02021,Consumer Laptop 14,AMD Ryzen 3 7320U,Radeon ,8.0,256GB,499.0,11.335170178426807,9066.0,4.6,227.15771900654926 -LPASU00723,GA402NJ-DS71-CA,AMD Ryzen 7 7735HS,RTX 3050,16.0,512GB,1799.0,40.7976718703166,24264.0,27.5,226.77972134695162 -LPLEN03428,IdeaPad Slim 3,AMD Ryzen 3 7320U,AMD Radeon 610M ,8.0,512GB,499.99,11.335170178426807,9066.0,4.6,226.7079377272907 -LPHEW02036,,Intel i9-13900HX,GeForce RTX 4090,32.0,2TB,3999.0,90.51762967767509,44977.0,72.6,226.3506618596526 -LPASU00603,Vivobook 15,Intel Core i7-1165G7,Intel Iris Xe ,12.0,512GB,780.88,17.65445111075077,10347.0,12.1,226.08404762256393 -LPHUA00039OB,MateBook 14s,i7-11370H,Intel Iris Xe ,16.0,512GB,838.82000030518,18.927355278093078,11760.0,12.1,225.64263216431317 -LPLEN03429OB,IdeaPad Slim 3,AMD Ryzen 5 7520U,AMD Radeon 610M,8.0,512GB,522.49,11.703618730757313,9475.0,4.6,223.99699000473333 -LPLEN03578,Yoga L390,Intel i5-8365U,,16.0,256GB,449.0,10.033535526260737,6245.0,6.4,223.46404290112997 -LPLEN03577OB,ThinkPad T480,Intel i5-8365U,,16.0,512GB,449.1,10.033535526260737,6245.0,6.4,223.41428470854456 -LPLEN03559OB,,Intel i5-8365U,Intel UHD 620,16.0,512GB,449.1,10.033535526260737,6245.0,6.4,223.41428470854456 -LPLEN03202,X380 Yoga,Intel i5-8350U,Integrated GPU,16.0,512GB,449.0,10.016419334343182,6226.0,6.4,223.08283595419115 -LPLEN03403,T480s,Intel i7-8550U,Intel UHD 620,24.0,256GB,437.96000671387,9.748866229105627,5929.0,6.4,222.59717964327277 -LPLEN00182,ThinkPad T480s,Intel Core i7-8550U,,16.0,256GB,437.96000671387,9.748866229105627,5929.0,6.4,222.59717964327277 -LPASU00731,ROG Flow,Intel i9-13900H,RTX 4050,16.0,1TB,2499.0,55.60034875636981,29687.0,41.9,222.49039118195202 -LPMSI00415,Stealth 15M,Intel Core i7-1260P,RTX3060,16.0,1TB,1999.0,44.44820419951986,17231.0,42.0,222.35219709614736 -LPMSI00549,Vector GP78HX,Intel i7-13700HX,GeForce RTX 4080,32.0,1TB,3399.0,75.42503845001008,34110.0,64.9,221.90361415125057 -LPLEN03706,V15 G4,AMD Ryzen 5 5500U,Integrated graphics,16.0,512GB,899.0,19.82978211437607,13144.0,11.6,220.57599682287062 -LPLEN03299,ThinkPad T14 Gen 2,Intel Core i5-1135G7,GeForce MX450 2GB,8.0,256GB,799.88,17.588015121809363,9891.0,12.6,219.8831714983418 -LPASU00800,Vivobook S 15 OLED,Intel i9-13900H,,16.0,1TB,1599.0,35.07693277840838,29687.0,12.1,219.36793482431756 -LPLEN03552OB,X1 Yoga G4,Intel i5-8265U,,16.0,512GB,449.1,9.83354633648721,6023.0,6.4,218.96117427047895 -LPACE00880OB,Aspire A515-54,Intel i7-10510U,,8.0,512GB,474.89,10.396578965354118,6648.0,6.4,218.92604530215667 -LPLEN03301OB,IdeaPad Flex 5,Intel i7-1255U,,16.0,512GB,949.05,20.739869916941426,13772.0,12.1,218.5329531314623 -LPHEW01822OB,ProBook 450 G9,Intel i7-1255U,,16.0,512GB,949.05,20.739869916941426,13772.0,12.1,218.5329531314623 -LPASU00559OB,Zenbook Notebook,Intel Core i5-1135G7,Intel Iris Xe ,8.0,256GB,741.83999328613,16.210604653489806,9891.0,10.6,218.51888278066082 -LPLGE00021OB,gram,Intel i5-1155G7,Intel Iris Xe ,8.0,512GB,759.89,16.559234457284195,10278.0,10.6,217.91620441490474 -LPASU00707,Zenbook,AMD Ryzen 7 7730U,AMD Radeon,16.0,1TB,1199.0,26.048551020174177,18824.0,13.2,217.25230208652357 -LPHEW01946,ProBook 450 G9,Intel i5-1235U,,16.0,256GB,899.0,19.503219467103484,13546.0,10.6,216.94348684208546 -LPLEN03055,ThinkBook 15 G4,Intel Core i5-1235U,,16.0,256GB,899.0,19.503219467103484,13546.0,10.6,216.94348684208546 -LPHEW01739,ProBook 820 G3,Intel Core i7 6500U,Intel HD 520,16.0,256GB,299.0,6.462687669477473,3275.0,5.1,216.14340031697236 -LPLEN03508,21JR001QUS,"AMD Ryzen 5 7530U (Hexa-core, 6 Core) ",,8.0,256 GB,1061.69,22.859348083783125,16507.0,11.6,215.31094842923193 -LPLEN03338,ThinkPad T14s Gen 2,AMD Ryzen 5 PRO 5650U Hexa-core (6 Core) 2.30 GHz,,,256 GB,999.0,21.431497336976648,14922.0,11.6,214.5295028726391 -LPLEN03099,ThinkPad E15 Gen 4,AMD Ryzen 7 5825U Octa-core (8 Core) 2 GHz,AMD Radeon ,16.0,512GB,1199.0,25.718839112709713,18458.0,13.2,214.50241128198257 -LPHUA00039,MateBook 14s,Intel i7-11370H,Intel Iris Xe ,16.0,512GB,882.95999992371,18.927355278093078,11760.0,12.1,214.36254507257914 -LPASU00560OB,ExpertBook B1,Intel i5-1135G7,,8.0,256GB,759.05,16.210604653489806,9891.0,10.6,213.5643851325974 -LPHUA00038OB,Matebook 14,i5-1135G7,Intel Iris Xe ,16.0,512GB,759.89,16.210604653489806,9891.0,10.6,213.3283061165406 -LPMSI00589,Creator Z17HXStudio,Intel i9-13950HX,GeForce RTX 4060,32.0,1TB,3399.0,72.36324281778828,44931.0,46.3,212.89568348863864 -LPLEN03429,IdeaPad Slim 3,AMD Ryzen 5 7520U,AMD Radeon 610M,8.0,512GB,549.99,11.703618730757313,9475.0,4.6,212.79693686716692 -LPMSI00516,Modern 14 Business Notebook,Intel Core i5-1235U,Intel Iris Xe,8.0,512GB,929.0,19.503219467103484,13546.0,10.6,209.93777682565644 -LPASU00558,Zenbook Pro 15,AMD Ryzen 9 5900HX,NVIDIA GeForce RTX 3050Ti,16.0,512GB,1899.0,39.851013935215775,22678.0,28.2,209.85262735763968 -LPMSI00554,Vector GP77,Intel i7-13700H,GeForce RTX 4070,16.0,1TB,2899.0,60.73082863661752,27890.0,51.7,209.48888801868756 -LPGIG00137,AERO 16,Intel Core i9-12900H,RTX 3080 Ti,64.0,2TB,2999.0,62.67937940365967,28524.0,53.7,209.00093165608425 -LPMSI00576,CREATOR Z16,Intel i7-13700HX,GeForce RTX 4060,32.0,1TB,2999.0,62.615121094638184,34110.0,46.3,208.78666587075085 -LPLEN03521,,AMD Ryzen 5 7530U,,16.0,256GB,1099.0,22.859348083783125,16507.0,11.6,208.00134744115675 -LPACE00880,Aspire A515-54,Intel i7-10510U,,8.0,512GB,499.88,10.396578965354118,6648.0,6.4,207.98149486585015 -LPHEW01822,ProBook 450 G9,Intel i7-1255U,,16.0,512GB,999.0,20.739869916941426,13772.0,12.1,207.60630547488915 -LPLEN03301,IdeaPad Flex 5,Intel i7-1255U,,16.0,512GB,999.0,20.739869916941426,13772.0,12.1,207.60630547488915 -LPLEN03568,V14,Intel i7-1255U,,16.0,512GB,999.0,20.739869916941426,13772.0,12.1,207.60630547488915 -LPASU00559,Zenbook Notebook,Intel Core i5-1135G7,Intel Iris Xe ,8.0,256GB,780.88000488281,16.210604653489806,9891.0,10.6,207.59405481156608 -LPLGE00027OB,gram,Intel i5-1240P,Intel Iris Xe ,8.0,512GB,1109.4899984741,22.903035693253422,17320.0,10.6,206.42850070530014 -LPHEW02023OB,Consumer Notebook,AMD Ryzen 5 7520U,AMD Radeon ,8.0,512GB,569.05,11.703618730757313,9475.0,4.6,205.66942677721315 -LPMSI00583,,Intel i7-13700HX,GeForce RTX 4050,32.0,1TB,2899.0,59.584818064335145,34110.0,41.9,205.53576427849308 -LPLGE00026OB,Gram,Intel i7-1260P,Intel Iris Xe ,16.0,512GB,1162.6900030518,23.85591769814244,17231.0,12.1,205.17866013749168 -LPLEN03564OB,ThinkPad X1,Intel i7-8650U,,16.0,256GB,494.1,10.07227217112678,6288.0,6.4,203.85088385198904 -LPMSI00514OB,Summit E13 Flip Evo,Intel Core i7-1280P,Intel Iris Xe,16.0,1TB,1318.4899984741,26.755760949858566,20450.0,12.1,202.92729547302778 -LPASU00560,ExpertBook B1,Intel i5-1135G7,,8.0,256GB,799.0,16.210604653489806,9891.0,10.6,202.88616587596752 -LPHUA00038,Matebook 14,i5-1135G7,Intel Iris Xe ,16.0,512GB,799.88,16.210604653489806,9891.0,10.6,202.6629576122644 -LPHEW01834OB,EliteBook 640 G9,Intel i5-1245U,,16.0,512GB,961.35999755859,19.444664073701322,13481.0,10.6,202.26204671592103 -LPLGE00025,gram,Intel i5-1240P,,8.0,512GB,1135.88,22.903035693253422,17320.0,10.6,201.632528904932 -LPLEN03602,,Intel Core i5-1335U,,16.0,256GB,1119.2,22.550802480634285,16929.0,10.6,201.49037241453078 -LPASU00763OB,Vivobook S 16 Flip,Intel i5-1335U,Intel HD ,16.0,512GB,901.55,18.143088982011697,16929.0,4.2,201.24329190850975 -LPMSI00552,Raider GE78HX,Intel i7-13700HX,GeForce RTX 4070,32.0,1TB,3299.0,66.33412935910098,34110.0,51.7,201.07344455623218 -LPLEN03559,ThinkPad T590,Intel i5-8365U,Intel UHD 620,16.0,512GB,499.0,10.033535526260737,6245.0,6.4,201.07285623769013 -LPLEN03577,ThinkPad T480,Intel i5-8365U,,16.0,512GB,499.0,10.033535526260737,6245.0,6.4,201.07285623769013 -LPASU00728,Zephyrus Duo,AMD Ryzen 9 7945HX,RTX 4090,32.0,2TB,4999.0,100.0,55503.0,72.6,200.0400080016003 -LPLEN02131,20Y70037US,AMD Ryzen 5 5500U,,8.0,256GB,999.0,19.82978211437607,13144.0,11.6,198.4963174612219 -LPGIG00163,AORUS 17X,Intel i9-13980HX,GeForce RTX 4090,32.0,2TB,4699.0,93.23550078374141,47994.0,72.6,198.415622012644 -LPLEN03573OB,ThinkPad T490,Intel i7-8550U,Intel UHD 620,16.0,256GB,494.1,9.748866229105627,5929.0,6.4,197.30552983415555 -LPLEN03552,X1 Yoga G4,Intel i5-8265U,,16.0,512GB,499.0,9.83354633648721,6023.0,6.4,197.06505684343108 -LPLGE00027,gram,Intel i5-1240P,Intel Iris Xe ,8.0,512GB,1167.88,22.903035693253422,17320.0,10.6,196.10778241988407 -LPLGE00015OB,Gram 2-in-1,Intel i7-1165G7,Intel Iris Xe ,16.0,512GB,902.39,17.65445111075077,10347.0,12.1,195.64103226709926 -LPASU00767,Zenbook Pro 14 Duo OLED,Intel i9-13900H,GeForce RTX 4060,32.0,1TB,2999.0,58.630651786672836,29687.0,46.3,195.500672846525 -LPMSI00534,Raider GE78 HX,Intel i9-13980HX,GeForce RTX 4080,64.0,2TB,4499.0,87.93247048071112,47994.0,64.9,195.44892305114718 -LPHEW02023,Consumer Notebook 14,AMD Ryzen 5 7520U,AMD Radeon ,8.0,512GB,599.0,11.703618730757313,9475.0,4.6,195.38595543835248 -LPLEN03544,21JR001RUS,Ryzen 5 7530U,,16.0,256 GB,1173.65,22.859348083783125,16507.0,11.6,194.77142319927682 -LPLEN03487OB,ThinkPad E16,Intel i7-1355U,,16.0,512GB,1139.05,22.110966974758124,15294.0,12.1,194.11761533521903 -LPHEW01834,EliteBook 640 G9,Intel i5-1245U,,16.0,512GB,1011.9599990845,19.444664073701322,13481.0,10.6,192.14854432282422 -LPASU00763,Vivobook S 16 Flip,Intel i5-1335U,Intel HD ,16.0,512GB,949.0,18.143088982011697,16929.0,4.2,191.18112731308426 -LPHEW02045OB,"Consumer Laptop 17.3""",Intel i5-1135G7,Intel Iris Xe,16.0,512GB,854.05,16.210604653489806,9891.0,10.6,189.80861370516723 -LPASU00734OB,Zenbook 14X,Intel i7-1260P,GeForce MX550,16.0,512GB,1519.05,28.74572486067688,17231.0,19.2,189.2348827272103 -LPLEN03010,ThinkBook 14 G4,Intel i7-1255U,,16.0,512GB,1099.0,20.739869916941426,13772.0,12.1,188.71583181930328 -LPLEN03572,Legion Pro 7,Intel i9-13900HX,GeForce RTX 4090,32.0,2TB,4799.0,90.51762967767509,44977.0,72.6,188.6176905140135 -LPLEN03708,V15 G4,Intel i5-1335U,,16.0,1TB,1199.0,22.550802480634285,16929.0,10.6,188.08008741146193 -LPMSI00533,Raider GE78 HX,Intel i9-13980HX,GeForce RTX 4090,32.0,2TB,4999.0,93.23550078374141,47994.0,72.6,186.50830322812848 -LPMSI00588,Prestige 16EVO,Intel i7-13700H,,32.0,1TB,1799.0,33.458101363890236,27890.0,12.1,185.98166405719977 -LPHEW01833OB,EliteBook 650 G9,Intel i5-1245U,,16.0,256GB,1048.7599990845,19.444664073701322,13481.0,10.6,185.40623298633878 -LPLEN03487,21JN0073US,Intel i7-1355U,,16.0,512GB,1199.0,22.110966974758124,15294.0,12.1,184.4117345684581 -LPMSI00590,Modern 14,Intel i7-1355U,,16.0,1TB,1199.0,22.110966974758124,15294.0,12.1,184.4117345684581 -LPMSI00551,Stealth 17Studio,Intel i7-13700H,GeForce RTX 4070,32.0,1TB,3299.0,60.73082863661752,27890.0,51.7,184.08859847413618 -LPMSI00597,Prestige 13 EVO,Intel i7-1360P,,16.0,512GB,1399.0,25.72788858259914,19309.0,12.1,183.9019912980639 -LPLEN03564,ThinkPad X1,Intel i7-8650U,,16.0,256GB,549.0,10.07227217112678,6288.0,6.4,183.46579546679015 -LPASU00736,GU604VY-XS97,Intel i9-13900H,RTX 4090,32.0,2TB,4199.0,76.74359944507503,29687.0,72.6,182.76637162437495 -LPLEN03712,Yoga L390,Intel i5-8365U,,16.0,256GB,549.0,10.033535526260737,6245.0,6.4,182.7602099501045 -LPLGE00034,Gram,Intel i7-1360P,GeForce RTX 3050,16.0,1TB,1999.99,36.333949188659744,19309.0,27.5,181.67065429657023 -LPACE00999,PTX17-71-99W5,Intel i9-13900HX,GeForce RTX 4090,64.0,2TB,4999.0,90.51762967767509,44977.0,72.6,181.07147365008018 -LPHEW02045,Consumer Laptop,Intel i5-1135G7,Intel Iris Xe,16.0,512GB,899.0,16.210604653489806,9891.0,10.6,180.31818301990882 -LPSAS00150,Galaxy Book3 EVO,Intel i7-13700H,GeForce RTX 4050,16.0,512GB,2999.0,53.98151734185167,27890.0,41.9,179.99839060303992 -LPASU00734,Zenbook 14X,Intel i7-1260P,GeForce MX550,16.0,512GB,1599.0,28.74572486067688,17231.0,19.2,179.77313859084978 -LPASU00765OB,Zenbook S 13 OLED EVO,Intel i7-1355U,,16.0,1TB,1234.05,22.110966974758124,15294.0,12.1,179.17399598685728 -LPMSI00591,Stealth 16 AMG,Intel i9-13900H,GeForce RTX 4070,32.0,2TB,3499.0,62.34966005113564,29687.0,51.7,178.19279808841281 -LPMSI00587,CreatorPro M16,Intel i7-13700H,NVIDIA RTX A1000,32.0,1TB,2399.0,42.686751501631285,27890.0,25.5,177.93560442530756 -LPLEN03573,ThinkPad T490,Intel i7-8550U,Intel UHD 620,16.0,256GB,549.0,9.748866229105627,5929.0,6.4,177.57497685074 -LPACE00491,Aspire 5,Intel i7-10510U,Intel UHD 620 graphics,8.0,512GB,585.88,10.396578965354118,6648.0,6.4,177.45236166713522 -LPLEN03502OB,IdeaPad Slim 3,AMD Ryzen 5 7520U,,16.0,512GB,664.05,11.703618730757313,9475.0,4.6,176.24604669463616 -LPHEW01833,EliteBook 650 G9,Intel i5-1245U,,16.0,256GB,1103.9599990845,19.444664073701322,13481.0,10.6,176.1355854363069 -LPLGE00024OB,Gram,Intel i7-1260P,Intel Iris Xe ,16.0,512GB,1355.5400015259,23.85591769814244,17231.0,12.1,175.98829744078662 -LPDYA00003,C50-J,Intel Core i5-1135G7,Integrated GPU,8.0,256GB,929.0,16.210604653489806,9891.0,10.6,174.49520617319487 -LPMSI00535,Stealth 17,Intel i9-13900H,GeForce RTX 4090,64.0,2TB,4399.0,76.74359944507503,29687.0,72.6,174.4569207662538 -LPASU00768,Zenbook Pro 16X OLED,Intel i9-13905H,GeForce RTX 4080,32.0,1TB,4199.0,73.16660196909915,31603.0,64.9,174.24768270802366 -LPLEN03474,ThinkPad E16,Intel i5-1335U,,16.0,256GB,1299.0,22.550802480634285,16929.0,10.6,173.60125081319697 -LPLEN03462,ThinkBook 14s Yoga,Intel Core i5-1335U,,16.0,256GB,1299.0,22.550802480634285,16929.0,10.6,173.60125081319697 -LPRAZ00059,Blade 14,AMD Ryzen 9 7940HS,GeForce RTX 4070,16.0,1TB,3649.0,63.16673300214731,30594.0,51.7,173.10696903849632 -LPLGE00032,Gram EVO,Intel i7-1360P,Intel Iris Xe,16.0,512GB,1499.0,25.72788858259914,19309.0,12.1,171.63367967044124 -LPHEW02083OB,EliteBook 640 G9,Intel i5-1245U,,16.0,512GB,1136.1600006104,19.444664073701322,13481.0,10.6,171.1437127099591 -LPLEN02397OB,,Intel i5-1135G7,Intel Iris Xe ,8.0,256GB,949.89,16.210604653489806,9891.0,10.6,170.65770408668166 -LPASU00765,Zenbook S 13 OLED EVO,Intel i7-1355U,,16.0,1TB,1299.0,22.110966974758124,15294.0,12.1,170.2152961875144 -LPLGE00030OB,Gram,Intel i7-1360P,Intel Iris Xe,16.0,512GB,1519.05,25.72788858259914,19309.0,12.1,169.36828006055853 -LPLGE00033OB,Gram EVO,Intel i7-1360P,Intel Iris Xe,16.0,512GB,1519.05,25.72788858259914,19309.0,12.1,169.36828006055853 -LPLGE00031OB,Gram EVO,Intel i7-1360P,Intel Iris Xe,16.0,512GB,1519.99,25.72788858259914,19309.0,12.1,169.26353846143158 -LPLEN03042OB,ThinkBook 15 G4,Intel Core i7-1255U,,16.0,512GB,1234.05,20.739869916941426,13772.0,12.1,168.0634489440576 -LPLEN03502,IdeaPad Slim 3,AMD Ryzen 5 7520U,,16.0,512GB,699.0,11.703618730757313,9475.0,4.6,167.43374435990435 -LPMSI00379,Modern 14,Intel Core i7-1195G7,Intel Iris Xe,8.0,512GB,1099.0,18.273336576401277,11034.0,12.1,166.272398329402 -LPLEN03522,ThinkBook 15 G4,AMD Ryzen 5 5625U,,16.0,256GB,1299.0,21.572030281141828,15078.0,11.6,166.0664378840787 -LPLEN03427,IdeaPad 1 15AMN7,AMD Athlon Gold 7220U,AMD Radeon 610M ,4.0,128GB,449.99,7.4452903521111145,4748.0,4.6,165.4545734818799 -LPSAS00152,Galaxy Book3 EVO,Intel i7-13700H,GeForce RTX 4050,16.0,1TB,3269.0,53.98151734185167,27890.0,41.9,165.13159174625778 -LPHEW02083,EliteBook 640 G9,Intel i5-1245U,,16.0,512GB,1195.9599990845,19.444664073701322,13481.0,10.6,162.58624108319756 -LPACE00948,A317-53-591M,Intel i5-1135G7,Integrated GPU,8.0,512GB,999.0,16.210604653489806,9891.0,10.6,162.26831484974778 -LPCNO00054,ThinkPad E15 Gen 2,Intel Core i5-1135G7,Intel Iris Xe ,8.0,256GB,999.0,16.210604653489806,9891.0,10.6,162.26831484974778 -LPDYA00005,C50-J,Intel Core i7-1165G7,Integrated GPU,8.0,256GB,1089.0,17.65445111075077,10347.0,12.1,162.1161718158932 -LPLEN03497,ThinkPad X1 Carbon,Intel i5-1335U,,16.0,256GB,1399.0,22.550802480634285,16929.0,10.6,161.19229793162464 -LPLEN03471,ThinkPad E14,Intel i5-1335U,,16.0,512GB,1399.0,22.550802480634285,16929.0,10.6,161.19229793162464 -LPLGE00030,Gram,Intel i7-1360P,Intel Iris Xe,16.0,512GB,1599.0,25.72788858259914,19309.0,12.1,160.89986605753057 -LPLGE00033,Gram EVO,Intel i7-1360P,Intel Iris Xe,16.0,512GB,1599.0,25.72788858259914,19309.0,12.1,160.89986605753057 -LPLGE00031,Gram EVO,Intel i7-1360P,Intel Iris Xe,16.0,512GB,1599.99,25.72788858259914,19309.0,12.1,160.80030864317362 -LPMSI00586,CreatorPro Z16HXStudio,Intel i9-13950HX,NVIDIA RTX A2000,32.0,1TB,3799.0,60.930735930735935,44931.0,29.7,160.3862488305763 -LPMSI00577OB,Prestige 13 Evo,Intel i7-1360P,,32.0,1TB,1604.55,25.72788858259914,19309.0,12.1,160.34332730422324 -LPLEN03476,14s Yoga G3,Intel Core i7-1355U,,16.0,512GB,1379.9599990845,22.110966974758124,15294.0,12.1,160.22904279419035 -LPLEN03042,ThinkBook 15 G4,Intel Core i7-1255U,,16.0,512GB,1299.0,20.739869916941426,13772.0,12.1,159.66027649685472 -LPLEN03221,ThinkPad L13 Yoga,Intel Core i7-1255U,,16.0,512GB,1299.0,20.739869916941426,13772.0,12.1,159.66027649685472 -LPHEW01997OB,ENVY X360,Intel i7-1250U,,16.0,1TB,1234.05,19.52281858638272,12421.0,12.1,158.20119595140162 -LPLEN03709,V15 G4,Intel i7-1355U,,16.0,1TB,1399.0,22.110966974758124,15294.0,12.1,158.0483700840466 -LPLEN03710,,Intel i5-10310U,,16.0,512GB,649.0,10.205598297642462,6436.0,6.4,157.25112939356646 -LPMSI00532,TITAN GT77,Intel i9-13980HX,GeForce RTX 4080,64.0,2TB,5599.0,87.93247048071112,47994.0,64.9,157.05031341437956 -LPMSI00585,CreatorPro Z17HX Studio,Intel i9-13950HX,NVIDIA RTX A3000,32.0,1TB,3999.0,62.58362849271941,44931.0,32.1,156.4981957807437 -LPLGE00028OB,Gram EVO,Intel i7-1260P,Intel Iris Xe ,16.0,512GB,1538.89,23.85591769814244,17231.0,12.1,155.02029188663542 -LPLEN03711,X1 Carbon,Intel i7-8665U,,16.0,256GB,649.0,10.043444900528794,6256.0,6.4,154.7526178817996 -LPASU00649,P1512CEA,Intel Core i5-1135G7,Intel UHD ,8.0,512GB,1049.0,16.210604653489806,9891.0,10.6,154.53388611525074 -LPASU00647,P1512CEA,Intel Core i5-1135G7,Intel UHD ,8.0,512GB,1049.0,16.210604653489806,9891.0,10.6,154.53388611525074 -LPDYA00004,C50-J,Intel Core i5-1135G7,Integrated GPU,8.0,512GB,1049.0,16.210604653489806,9891.0,10.6,154.53388611525074 -LPASU00547OB,Vivobook 13,Intel Pentium Silver N6000,Intel UHD ,4.0,128GB,332.39,5.124330261055057,3089.0,3.4,154.16619817247985 -LPMSI00577,Prestige 13 Evo,Intel i7-1360P,,32.0,1TB,1689.0,25.72788858259914,19309.0,12.1,152.32616093901208 -LPSAS00158,Galaxy Book3 360 EVO,Intel i5-1335U,,8.0,256GB,1499.0,22.550802480634285,16929.0,10.6,150.43897585479843 -LPHEW01997,ENVY X360,Intel i7-1250U,,16.0,1TB,1299.0,19.52281858638272,12421.0,12.1,150.29113615383156 -LPLEN03339,ThinkPad T14s Gen 2,AMD Ryzen 5 PRO 5650U,,8.0,256GB,1430.2,21.431497336976648,14922.0,11.6,149.8496527546962 -LPMSI00531OB,TITAN GT77,Intel i9-13980HX,GeForce RTX 4090,128.0,4TB,6299.1,93.23550078374141,47994.0,72.6,148.0140032444975 -LPLEN03512,ThinkBook 14s Yoga G3,Intel Core i7-1355U,,16.0,512GB,1499.0,22.110966974758124,15294.0,12.1,147.50478302040108 -LPLGE00028,Gram EVO,Intel i7-1260P,Intel Iris Xe ,16.0,512GB,1619.88,23.85591769814244,17231.0,12.1,147.26966008681163 -LPDYA00006,C50-J,Intel Core i7-1165G7,Integrated,8.0,512GB,1199.0,17.65445111075077,10347.0,12.1,147.24312853003144 -LPASU00547,Vivobook 13 Slate Notebook,Intel Pentium Silver N6000,Intel UHD ,4.0,128GB,349.88,5.124330261055057,3089.0,3.4,146.4596507675505 -LPRAZ00055,Blade 15,Intel Core i7-12800H,GeForce RTX 3070 Ti,16.0,1TB,3999.0,58.44559366383739,24971.0,52.2,146.150521790041 -LPMSI00544,Titan Gaming Notebook,Intel i9-13980HX,GeForce RTX 4090,64.0,2TB,6449.0,93.23550078374141,47994.0,72.6,144.57357851409742 -LPDYA00028,Tecra,Intel i5-1240P,,16.0,256GB,1599.0,22.903035693253422,17320.0,10.6,143.23349401659425 -LPLEN03546,E14,Intel i7-1355U,,16.0,512GB,1599.0,22.110966974758124,15294.0,12.1,138.27996857259615 -LPACE00942,A315-56-54YT,Intel Core i5-1035G1,Integrated Graphic,8.0,256GB,749.0,10.23275415237029,7460.0,5.1,136.61888053898917 -LPASU00665,Zenbook Pro,Intel Core i9-12900H,GeForce RTX 3060,32.0,1TB,3999.0,54.62152816399024,28524.0,42.0,136.58796740182606 -LPDYA00033,Tecra,Intel i7-1260P,,16.0,256GB,1749.0,23.85591769814244,17231.0,12.1,136.39747111573723 -LPDYA00029,Tecra,Intel i7-1260P,,16.0,256GB,1749.99,23.85591769814244,17231.0,12.1,136.32030867686356 -LPASU00565,ExpertBook B5,Intel Core i5-1135G7,Intel Iris Xe G7,16.0,256GB,1199.0,16.210604653489806,9891.0,10.6,135.2010396454529 -LPLEN01849OB,ThinkPad X1 Nano EVO,Intel Core i7-1160G7,,16.0,512GB,1234.05,16.59685062068717,9173.0,12.1,134.49090896387645 -LPMSI00531,TITAN GT77,Intel i9-13980HX,GeForce RTX 4090,128.0,4TB,6999.0,93.23550078374141,47994.0,72.6,133.21260292004774 -LPRAZ00054,Razer Blade 14,AMD Ryzen 9 6900HX,GeForce RTX 3080Ti,16.0,1TB,4499.0,59.40297992975736,24887.0,53.7,132.03596339132554 -LPHEW01837,OMEN 16,AMD Ryzen 5 5600H,Radeon ,16.0,1TB,1799.0,23.38724747660874,17093.0,11.6,130.00137563428981 -LPLEN02112,ThinkBook 14s Yoga ITL,Intel i5-1135G7,Intel Iris Xe ,8.0,256GB,1249.0,16.210604653489806,9891.0,10.6,129.7886681624484 -LPLEN02056,IdeaPad Slim 7i,Intel i5-1135G7,Intel Iris Xe ,8.0,512GB,1259.99,16.210604653489806,9891.0,10.6,128.65661357224903 -LPASU00564,ExpertBook B1,Intel Core i7-1165G7,Intel Iris Xe G7,12.0,512GB,1399.0,17.65445111075077,10347.0,12.1,126.19336033417277 -LPASU00562,ExpertBook B1,Intel Core i7-1165G7,Intel Iris Xe G7,12.0,512GB,1399.0,17.65445111075077,10347.0,12.1,126.19336033417277 -LPASU00651,P1512CEA,Intel Core i7-1165G7,Intel Iris Xe ,16.0,1TB,1399.0,17.65445111075077,10347.0,12.1,126.19336033417277 -LPASU00650,,Intel Core i7-1165G7,Intel Iris Xe ,16.0,1TB,1399.0,17.65445111075077,10347.0,12.1,126.19336033417277 -LPGIG00125,AERO 16 YE4,Intel Core i9-12900H,NVIDIA GeForce RTX 3080 Ti,32.0,2TB,4999.0,62.67937940365967,28524.0,53.7,125.3838355744342 -LPHEW02090,ProBook 440,Intel i7-1355U,,16.0,512GB,1799.0,22.110966974758124,15294.0,12.1,122.9069870748089 -LPASU00592,Vivobook 15,AMD Ryzen 3 3250U,AMD Radeon ,8.0,128GB,499.0,6.0209946212422745,3855.0,3.7,120.6612148545546 -LPASU00743,Zenbook S 13 Flip,Intel i7-1260P,,16.0,1TB,1999.0,23.85591769814244,17231.0,12.1,119.3392581197721 -LPASU00623,,AMD Ryzen 9 6900HX,NVIDIA GeForce RTX 3080 Ti,64.0,1TB,4999.0,59.40297992975736,24887.0,53.7,118.82972580467566 -LPLEN03517OB,ThinkPad X1 Carbon EVO,Intel i7-1365U,,32.0,512GB,1899.05,22.25240077112949,15451.0,12.1,117.17648703893785 -LPSAS00157,Galaxy Book3 360 EVO,Intel i7-1355U,,16.0,512GB,1899.0,22.110966974758124,15294.0,12.1,116.43479186286531 -LPMSI00528,CreatorPro,Intel i7-12700H,RTX A3000,32.0,1TB,3999.0,45.91155671281562,26424.0,32.1,114.80759368045915 -LPLEN01757,ThinkBook 15 G2 ITL,Intel Core i7-1165G7 Quad-core (4 Core) 2.80 GHz,Intel UHD ,16.0,512 GB,1549.0,17.65445111075077,10347.0,12.1,113.97321569238716 -LPLGE00035,Gram,Intel i7-1360P,Intel Iris Xe,16.0,512GB,2299.99,25.72788858259914,19309.0,12.1,111.86087149335059 -LPLEN03517,ThinkPad X1 Carbon EVO,Intel i7-1365U,,32.0,512GB,1999.0,22.25240077112949,15451.0,12.1,111.31766268699096 -LPLEN03307,ThinkPad T14 Gen 2,Intel Core i5-1135G7,MX450 2GB,16.0,256GB,1599.0,17.588015121809363,9891.0,12.6,109.99384066172209 -LPLEN02684OB,20UB0067US,Intel Core i5-10210U,,16.0,256 GB,931.92000068665,10.018221038755556,6228.0,6.4,107.5008695099795 -LPMSI00527,CreatorPro,Intel i7-12700H,NVIDIA RTX A5500,32.0,1TB,5299.0,56.65535836570819,26424.0,47.7,106.91707560994185 -LPSAS00156,Galaxy Book3 Pro 360 EVO,Intel i7-1360P,,16.0,1TB,2499.0,25.72788858259914,19309.0,12.1,102.95273542456638 -LPLEN02684,ThinkPad X1 Yoga Gen 5,Intel Core i5-10210U,,16.0,256GB,980.95999992371,10.018221038755556,6228.0,6.4,102.12670281698215 -LPSAS00116,Galaxy Book Pro,Intel i7-1165G7,Intel Iris Xe ,8.0,256GB,1730.0,17.65445111075077,10347.0,12.1,102.04885035116052 -LPSAS00112,Galaxy Book Pro,Intel i7-1165G7,Iris Xe ,8.0,512GB,1730.0,17.65445111075077,10347.0,12.1,102.04885035116052 -LPLEN03138,Business Notebook,Intel i5-1145G7,Intel Iris Xe,16.0,512GB,1599.88,16.281771977778583,9970.0,10.6,101.76870751417968 -LPSAS00113,Galaxy Book Pro,Intel i5-1135G7,Intel Iris Xe ,8.0,512GB,1600.0,16.210604653489806,9891.0,10.6,101.31627908431128 -LPSAS00114,Galaxy Book Pro,Intel i5-1135G7,Iris Xe ,8.0,256GB,1600.0,16.210604653489806,9891.0,10.6,101.31627908431128 -LPLEN03526,,Intel i5-1335U,,16.0,512GB,2249.42,22.550802480634285,16929.0,10.6,100.25163144559168 -LPASU00591OB,L510MA-DS09-CA,Intel Celeron N4020,Intel UHD 600,4.0,64GB,246.05,2.434783884066724,1556.0,1.5,98.95484186412209 -LPLEN01858,20TA0025US,Intel Core i7 i7-1165G7,,8.0,512 GB,1805.7,17.65445111075077,10347.0,12.1,97.7706768053983 -LPLEN03308,ThinkPad T14 Gen 2,Intel Core i5-1135G7,MX450 2GB,16.0,256GB + 512GB,1799.0,17.588015121809363,9891.0,12.6,97.76550929299256 -LPLEN02741,20W400K3US,Intel i5-1145G7,Intel Iris Xe,16.0,512GB,1720.9,16.281771977778583,9970.0,10.6,94.61195872960998 -LPSAS00111,Galaxy Book Pro,Intel i7-1165G7,Iris Xe ,8.0,512GB,1870.0,17.65445111075077,10347.0,12.1,94.40882946925545 -LPASU00591,Vivobook Go,Intel Celeron N4020,Intel UHD 600,4.0,64GB,259.0,2.434783884066724,1556.0,1.5,94.00709977091599 -LPSAS00115,Galaxy Book Pro,Intel i5-1135G7,Intel Iris Xe ,8.0,512GB,1730.0,16.210604653489806,9891.0,10.6,93.70291707219539 -LPASU00762OB,Vivobook Slate,Intel Pentium Silver Processor N6000,Intel UHD ,8.0,128GB,569.05,5.124330261055057,3089.0,3.4,90.05061525446021 -LPLEN03465,ThinkPad X1 Yoga EVO,Intel i5-1335U,,16.0,256GB,2534.06,22.550802480634285,16929.0,10.6,88.99079927323854 -LPASU00590OB,Vivobook 14 Flip,Intel Celeron N4500,Intel UHD ,4.0,128GB,474.05,4.146004765135918,2003.0,3.4,87.45922930357382 -LPASU00762,Vivobook Slate,Intel Pentium Silver Processor N6000,Intel UHD ,8.0,128GB,599.0,5.124330261055057,3089.0,3.4,85.54808449173719 -LPASU00590,Vivobook 14 Flip Notebook,Intel Celeron N4500,Intel UHD ,4.0,128GB,499.0,4.146004765135918,2003.0,3.4,83.08626783839513 -LPLEN02071,ThinkPad X13 Yoga Gen 2,Intel Core i5 (11th Gen) i5-1135G7 Quad-core,Intel Iris Xe ,8.0,256 GB,2019.0,16.210604653489806,9891.0,10.6,80.29026574289155 -LPLEN03478,ThinkPad X1 Yoga Gen 8,Intel i7-1355U,,16.0,512 GB,2884.39,22.110966974758124,15294.0,12.1,76.65734167279086 -LPLEN01870,20UN000AUS,Intel Core i7-1160G7 EVO Quad-core,Intel Iris Xe ,16.0,256 GB,2399.88,16.59685062068717,9173.0,12.1,69.15700210296835 -LPLEN03495,ThinkPad X13 Yoga,Intel i5-10310U,,16.0,256GB,1499.0,10.205598297642462,6436.0,6.4,68.0827104579217 -LPASU00810,Chromebook Flip C434,Intel m3-8100Y,,4.0,64GB Flash Memory,699.0,4.65786749967949,2877.0,3.0,66.636158793698 -LPASU00227,Chromebook Flip C434,Intel m3-8100Y,,4.0,64GB Flash Memory,699.0,4.65786749967949,2877.0,3.0,66.636158793698 -LPLEN02299,ThinkPad X13 Yoga Gen 2,Intel Core i7 (11th Gen) i7-1165G7 Quad-core,Intel Iris Xe ,16.0,256GB,2892.49,17.65445111075077,10347.0,12.1,61.0354784657882 diff --git a/PCData/data/computed/canada_computers_laptops_bench_0.5.html b/PCData/data/computed/canada_computers_laptops_bench_0.5.html deleted file mode 100644 index c735b62..0000000 --- a/PCData/data/computed/canada_computers_laptops_bench_0.5.html +++ /dev/null @@ -1,11387 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 item_idModelCPUGPURAMStoragepricebenchcpu_benchgpu_benchvalue
531LPMSI00429OBKatana GF66Intel Core i7-11800HRTX306016512GB$ 78648%20,75342.0605
452LPCOI00001OBVOYAGER Gaming NotebookAMD Ryzen 7 6800HSRadeon 6800M161TB$ 99058%22,94754.6589
401LPGIG00147OBG5 KF-E3US333SHIntel i5-12500HGeForce RTX 40608512GB$ 89951%21,52146.3570
210LPHEW02076OBVictus Gaming NotebookAMD Ryzen 5 7640HSGeForce RTX 405016512GB$ 89950%23,39041.9555
360LPGIG00135OBAERO 16 XE4Intel Core i7-12700HGeForce RTX 3070 Ti162TB$ 1,07960%26,42452.2554
367LPGIG00160OBG5 Gaming NotebookIntel i5-12450HGeForce RTX 405016512GB$ 80945%17,45641.9551
462LPACE00912OBNitro 5Intel Core i5-11400HGTX 16508256GB$ 52629%15,82220.8543
434LPGIG00142OBG5 KE-52US213SHIntel i5-12500HGeForce RTX 306016512GB$ 90048%21,52142.0537
224LPGIG00162OBG5 KFIntel i7-12650HGeForce RTX 406016512GB$ 98953%23,28146.3534
258LPACE00980OBNitro 5AMD Ryzen 7 5800HGeForce RTX 306016512GB$ 89948%21,13042.0533
532LPASU00584OBTUF Gaming NotebookRyzen 7 5800HGeForce RTX 306016512GB$ 90048%21,13042.0533
498LPMSI00467OBCrosshair 15Intel Core i7-12700HRTX3070Ti16512GB$ 1,12960%26,42452.2529
111LPGIG00147G5Intel i5-12500HGeForce RTX 40608512GB$ 99951%21,52146.3513
429LPMSI00530OBKatana GF66Intel i5-11400HGeForce RTX 30508512GB$ 65133%15,82227.5509
47LPHEW02076Victus Gaming NotebookAMD Ryzen 5 7640HSGeForce RTX 405016512GB$ 99950%23,39041.9500
243LPHEW02095OBVictus 15-fb1010caAMD Ryzen 5 7535HSGeForce RTX 20508512GB$ 62931%18,44521.2496
533LPACE00877OBNitro 5Intel i7-11800HNVIDIA GeForce RTX306016512GB$ 96148%20,75342.0495
310LPACE00967OBNitro 5Intel i9-12900HGeForce RTX 4060161TB$ 1,16958%28,52446.3493
402LPLEN03269OBIdeaPad 3AMD Ryzen 7 5825UIntegrated Radeon 8256GB$ 52226%18,45813.2492
326LPMSI00559OBThin GF63Intel i7-12650HGeForce RTX 406016512GB$ 1,07953%23,28146.3490
134LPHEW02079Victus 16AMD Ryzen 7 7840HSGeForce RTX 4060161TB$ 1,19958%28,88746.3483
299LPMSI00572OBThin GF63Intel i5-12450HGeForce RTX 20508512GB$ 62930%17,45621.2482
263LPACE00968OBNitro 5Intel i5-12450HGeForce RTX 406016512GB$ 98948%17,45646.3481
4LPGIG00162G5 KFIntel i7-12650HGeForce RTX 406016512GB$ 1,09953%23,28146.3481
8LPACE00980Nitro 5AMD Ryzen 7 5800HGeForce RTX 306016512GB$ 99948%21,13042.0480
495LPHEW01865OBOmen 16-b0020caIntel Core i7-11800HNVIDIA GeForce RTX 3070161TB$ 1,09252%20,75348.0474
484LPGIG00133OBA5 K1AMD Ryzen 5 5600HGeForce RTX 306016512GB$ 93744%17,09342.0473
450LPLEN03269IdeaPad 3AMD Ryzen 7 5825UIntegrated Radeon 8256GB$ 55026%18,45813.2468
454LPLEN03053OBIdeaPad 5AMD Ryzen 7 5825UIntegrated Radeon8512GB$ 55326%18,45813.2465
493LPMSI00504OBGP66 LeopardIntel Core i7-11800HNVIDIA RTX307016512GB$ 1,11452%20,75348.0465
206LPLEN03469OBLegion Pro 5iIntel i7-13700HXGeForce RTX 406016512GB$ 1,34963%34,11046.3464
193LPASU00809OBROG Strix G16Intel i9-13980HXGeForce RTX 4060161TB$ 1,61975%47,99446.3464
588LPACE00816NitroIntel i5-11400HNVIDIA GeForce RTX 30508512GB$ 71633%15,82227.5464
322LPMSI00496OBGF63 11UC-692Intel i5-11400HNVIDIA RTX30508512GB$ 71933%15,82227.5462
205LPLEN03430OBIdeaPad Slim 3AMD Ryzen 7 7730UNone8512GB$ 57026%18,82413.2457
339LPLEN03434OBNoneAMD Ryzen 7 7745HXGeForce RTX 406016512GB$ 1,34962%32,90946.3456
264LPHEW02087OBVictus 15-fb0000caAMD Ryzen 5 5600HGeForce RTX 3050 Ti16512GB$ 76435%17,09328.2456
285LPASU00720OBG17AMD Ryzen 9 7945HXNVIDIA RTX 4060161TB$ 1,79982%55,50346.3455
486LPLEN03097OBIdeaPad 3AMD Ryzen 5 5625UAMD Radeon 12512GB$ 47522%15,07811.6454
175LPHEW02058Victus 15-fa1000caIntel i5-13500HGeForce RTX 405016512GB$ 1,09950%23,28941.9453
582LPHEW01653OB15-ef1013dxAMD Ryzen 7 4700UAMD Radeon 8512GB$ 44520%13,44611.6451
114LPHEW02095Victus 15-fb1010caAMD Ryzen 5 7535HSGeForce RTX 20508512GB$ 69931%18,44521.2447
542LPACE00877Nitro 5Intel i7-11800HNVIDIA GeForce RTX306016512GB$ 1,06848%20,75342.0446
411LPACE00953Nitro Gaming Notebook AMD Ryzen R5-7535HSGeForce RTX 30508512GB$ 79936%18,44527.5445
358LPMSI00541OBThin GF63Intel i7-12650HGeForce RTX 305016512GB$ 89940%23,28127.5444
1LPACE00967Nitro 5Intel i9-12900HGeForce RTX 4060161TB$ 1,29958%28,52446.3443
362LPHEW02035OBOmen 16-wd0010caIntel i7-13620HGeForce RTX 4060161TB$ 1,25956%26,48946.3443
414LPGIG00124OBAERO 16 XE5Intel Core i7-12700HNVIDIA GeForce RTX 3070 Ti322 TB$ 1,35060%26,42452.2443
496LPLEN03053IdeaPad 5AMD Ryzen 7 5825UIntegrated Radeon8512GB$ 58226%18,45813.2442
383LPASU00688OBTUF Gaming F15Intel Core i9-13900HGeForce RTX 405016512GB$ 1,25956%29,68741.9442
347LPMSI00560OBThin GF63Intel i5-12450HGeForce RTX 406016512GB$ 1,07948%17,45646.3441
113LPMSI00559Thin GF63Intel i7-12650HGeForce RTX 406016512GB$ 1,19953%23,28146.3441
52LPASU00719G713PU-DS91-CAAMD Ryzen 9 7945HXRTX 4050161TB$ 1,79979%55,50341.9438
487LPACE00896OBA715AMD Ryzen 7 5700URTX305016512GB$ 76433%15,85427.5435
298LPASU00715OBTUF F15Intel i9-13900HGeForce RTX 4060161TB$ 1,34959%29,68746.3435
133LPLEN03430IdeaPad Slim 3AMD Ryzen 7 7730UNone8512GB$ 60026%18,82413.2434
6LPMSI00572Thin GF63Intel i5-12450HGeForce RTX 20508512GB$ 69930%17,45621.2434
14LPACE00968Nitro 5Intel i5-12450HGeForce RTX 406016512GB$ 1,09948%17,45646.3433
365LPASU00716OBFX507ZC4-DS71-CAIntel i7-12700HNVIDIA RTX 305016512GB$ 98943%26,42427.5432
319LPMSI00564OBBravo 15AMD Ryzen 7 7735HSGeForce RTX 4060321TB$ 1,25954%24,26446.3427
332LPLEN03438OBLegion Pro 5AMD Ryzen 7 7745HXGeForce RTX 407016512GB$ 1,52965%32,90951.7427
220LPASU00808OBTUF Gaming F15Intel i7-11800HGeForce RTX 3050 Ti161TB$ 89938%20,75328.2424
341LPACE00956OBNitro 5Intel i7-12650HGeForce RTX 406016512GB$ 1,25953%23,28146.3420
406LPMSI00539OBKatana 15Intel i7-12650HGeForce RTX 4060161TB$ 1,25953%23,28146.3420
2LPLEN03469Legion Pro 5iIntel i7-13700HXGeForce RTX 406016512GB$ 1,49963%34,11046.3418
124LPASU00809G614JV-DB91-CAIntel i9-13980HXGeForce RTX 4060161TB$ 1,79975%47,99446.3418
65LPASU00787FX506HCB-DB59-CAIntel i5-11400HGeForce RTX 30508512GB$ 79933%15,82227.5415
132LPMSI00496GF63Intel i5-11400HRTX30508512GB$ 79933%15,82227.5415
354LPASU00686OBTUF Gaming NotebookAMD Ryzen 7 7735HSAMD Radeon RX 7600S161TB$ 1,34956%24,26448.9412
461LPASU00666OBVivobook 16AMD Ryzen 5 5600HAMD Radeon 8512GB$ 56923%17,09311.6411
384LPLEN03414OBIdeaPadIntel i3-1215UIntel HD 4128GB$ 31313%11,0324.2411
372LPLEN03434Legion Pro 5AMD Ryzen 7 7745HXGeForce RTX 406016512GB$ 1,49962%32,90946.3410
18LPHEW02087Victus 15-fb0000caAMD Ryzen 5 5600HGeForce RTX 3050 Ti16512GB$ 84935%17,09328.2410
28LPASU00720G713PV-DS91-CAAMD Ryzen 9 7945HXNVIDIA RTX 4060161TB$ 1,99982%55,50346.3410
356LPACE00969Nitro 5Intel i5-11400HGeForce GTX 16508512GB$ 69929%15,82220.8409
359LPLEN03433OBLegion Pro 5AMD Ryzen 7 7745HXGeForce RTX 4070161TB$ 1,61965%32,90951.7403
405LPCNO00060OBZenBookAMD Ryzen 7 5700UGeForce MX4508256GB$ 57023%15,85412.6403
211LPLEN03565OBNoneRyzen 7 7745HXGeForce RTX 4060161TB$ 1,52962%32,90946.3402
273LPASU00785OBFX706HF-DB51-CAIntel i5-11400HGeForce RTX 20508512GB$ 71929%15,82221.2401
172LPMSI00541Thin GF63Intel i7-12650HGeForce RTX 305016512GB$ 99940%23,28127.5400
145LPHEW02035Omen 16-wd0010caIntel i7-13620HGeForce RTX 4060161TB$ 1,39956%26,48946.3398
40LPASU00688TUF Gaming F15Intel Core i9-13900HGeForce RTX 405016512GB$ 1,39956%29,68741.9397
50LPMSI00560Thin GF63Intel i5-12450HGeForce RTX 406016512GB$ 1,19948%17,45646.3397
240LPGIG00152OBAORUS 15Intel Core i7-13700HGeForce RTX 4060161TB$ 1,43957%27,89046.3396
466LPCNO00053OB15Z-EF2000AMD Ryzen 5 5500UAMD Radeon Vega 78256GB$ 50120%13,14411.6395
302LPMSI00562OBModern 15AMD Ryzen 7 7730UAMD Radeon 16512GB$ 66426%18,82413.2392
507LPACE00896A715AMD Ryzen 7 5700URTX305016512GB$ 84933%15,85427.5391
0LPASU00715TUF F15Intel i9-13900HGeForce RTX 4060161TB$ 1,49959%29,68746.3391
13LPASU00666Vivobook 16AMD Ryzen 5 5600HAMD Radeon 8512GB$ 59923%17,09311.6390
539LPASU00573OBVivobook 15AMD Ryzen 5 5500UAMD Radeon 8512GB$ 50820%13,14411.6390
392LPLEN03414IdeaPadIntel i3-1215UIntel HD 4128GB$ 32913%11,0324.2390
512LPHEW01811OBPavilion 15-eh2010caAMD Ryzen 5 5625UAMD Radeon 8512GB$ 55422%15,07811.6390
34LPASU00716TUF F15Intel i7-12700HRTX 305016512GB$ 1,09943%26,42427.5389
303LPLEN03442OBIdeaPad Flex 5AMD Ryzen 3 5300UNone4128GB$ 36014%9,7167.6388
538LPHEW01773OB15-eg1010ca Intel Core i5-1155G7Intel Iris Xe 8512GB$ 42717%10,27810.6387
336LPLEN03435OBLegion Pro 5Intel i7-13700HXGeForce RTX 4060161TB$ 1,61963%34,11046.3387
465LPASU00627OBTUF507RR-DS71-CAAMD Ryzen 7 6800HGeForce RTX 307016512GB$ 1,41254%23,65448.0385
393LPGIG00149OBASF-B3US754SHIntel i9-13900HXGeForce RTX 4070161TB$ 1,98076%44,97751.7384
19LPMSI00564Bravo 15AMD Ryzen 7 7735HSGeForce RTX 4060321TB$ 1,39954%24,26446.3384
16LPLEN03438Legion Pro 5AMD Ryzen 7 7745HXGeForce RTX 407016512GB$ 1,69965%32,90951.7384
226LPHEW02100OB15-fd0030caIntel i5-1340PNone16512GB$ 66426%20,20410.6384
432LPCNO00060ZenBookAMD Ryzen 7 5700UGeForce MX4508256GB$ 60023%15,85412.6383
366LPHEW02017OBPavilionIntel i5-1240PIntel Iris Xe8512GB$ 59923%17,32010.6382
565LPASU00556G17AMD Ryzen 7 4800HNVIDIA GeForce RTX 3060161TB$ 1,19746%18,65342.0382
66LPASU00808TUF Gaming F15Intel i7-11800HGeForce RTX 3050 Ti161TB$ 99938%20,75328.2382
287LPHEW02072OBProBook 445 G9AMD Ryzen 5 5625UNone8256GB$ 56922%15,07811.6379
11LPMSI00539Katana 15Intel i7-12650HGeForce RTX 4060161TB$ 1,39953%23,28146.3378
136LPACE00956Nitro 5Intel i7-12650HGeForce RTX 406016512GB$ 1,39953%23,28146.3378
439LPACE00940NitroIntel i7-12700HGeForce RTX 306016512GB$ 1,39953%26,42442.0377
482LPCNO0005315Z-EF2000AMD Ryzen 5 5500UAMD Radeon Vega 78256GB$ 52820%13,14411.6376
171LPMSI00562Modern 15 NotebookAMD Ryzen 7 7730UAMD Radeon 16512GB$ 69926%18,82413.2373
491LPLEN03086OBLegion 5Intel i7-12700HGeForce RTX 307016512GB$ 1,53057%26,42448.0372
557LPASU00573Vivobook 15AMD Ryzen 5 5500UAMD Radeon 8512GB$ 53520%13,14411.6371
173LPASU00686TUF Gaming NotebookAMD Ryzen 7 7735HSAMD Radeon RX 7600S161TB$ 1,49956%24,26448.9370
400LPMSI00540OBThin GF63Intel i7-12650HGeForce RTX 405016512GB$ 1,34950%23,28141.9369
363LPLEN03442IdeaPad Flex 5AMD Ryzen 3 5300UNone4128GB$ 37914%9,7167.6369
225LPMSI00593OBKatana 17Intel i7-13620HGeForce RTX 4070161TB$ 1,61959%26,48951.7367
3LPHEW0210015-fd0030caIntel i5-1340PNone16512GB$ 69926%20,20410.6365
289LPASU00760OBVivobook 16XIntel i9-13900HGeforce RTX 405016512GB$ 1,52956%29,68741.9364
131LPHEW0201715-EG2002CAIntel i5-1240PIntel Iris Xe8512GB$ 63123%17,32010.6363
545LPLEN02719OBT470Intel Core i5-6300UIntel HD 6208256 GB$ 26310%3,2409.6363
30LPLEN03433Legion Pro 5AMD Ryzen 7 7745HXGeForce RTX 4070161TB$ 1,79965%32,90951.7363
45LPLEN03565Legion Pro 5 16ARX8Ryzen 7 7745HXGeForce RTX 4060161TB$ 1,69962%32,90946.3362
123LPASU00785TUF Gaming NotebookIntel i5-11400HGeForce RTX 20508512GB$ 79929%15,82221.2361
504LPASU00625OBG15AMD Ryzen 9 6900HXGeForce RTX 3070 Ti161TB$ 1,62058%24,88752.2360
522LPMSI00445OBModern 15Intel Core i5-1155G7Intel Iris Xe8256GB$ 46017%10,27810.6360
324LPHEW02072ProBook 445 G9AMD Ryzen 5 5625UNone8256GB$ 59922%15,07811.6360
492LPLEN03001OB82RG006WCC (Open Box)AMD Ryzen 7 6800HGeForce RTX 3060161TB$ 1,39850%23,65442.0359
335LPGIG00157OBAERO 14 OLEDIntel i5-12500HRTX 4050161TB$ 1,34948%21,52141.9358
463LPLEN03000OBIdeaPad Flex 5AMD Ryzen 5 5500UAMD Radeon 8512GB$ 55520%13,14411.6357
146LPGIG00152AORUS 15Intel Core i7-13700HGeForce RTX 4060161TB$ 1,59957%27,89046.3357
544LPCNO00033OBF415EA-UB51Intel Core i5-1135G7Intel Iris Xe 8256GB$ 45616%9,89110.6356
251LPMSI00565OBBravo 15AMD Ryzen 7 7735HSGeForce RTX 4050161TB$ 1,43951%24,26441.9352
473LPASU00658OBZenBook 14AMD Ryzen 5 5600HAMD Radeon Vega 78512GB$ 66423%17,09311.6352
323LPACE00946OBNoneIntel i5-1135G7Intel Iris8512GB$ 46316%9,89110.6350
317LPMSI00536OBKatana GF66Intel i7-12650HGeForce RTX 3050 Ti16512GB$ 1,15940%23,28128.2348
386LPLEN03352OBThinkBook 15 G3AMD Ryzen 5 5500UAMD Radeon 8256GB$ 56920%13,14411.6348
41LPLEN03435Legion Pro 5Intel i7-13700HXGeForce RTX 4060161TB$ 1,79963%34,11046.3348
584LPMSI00293OBGF75 10UEK-003CAIntel Core i7-10750HRTX306016512GB$ 1,14640%12,01242.0347
248LPMSI00580OBPulse 17Intel i9-13900HGeForce RTX 4070161TB$ 1,79962%29,68751.7347
179LPGIG00149NoneIntel i9-13900HXGeForce RTX 4070161TB$ 2,20076%44,97751.7346
253LPACE00985OBSwift 3 EVOIntel i5-1240PNone16512GB$ 66423%17,32010.6345
420LPASU00685OBVivoBookIntel Core i3-1115G4Intel UHD 4128GB$ 28410%6,1326.2345
410LPACE00955NH.QLZAA.005Intel i5-12500HGeForce RTX 40508512GB$ 1,40048%21,52141.9345
201LPHEW01929OBProBook 440 G9Intel Core i5-1235UNone8256GB$ 56920%13,54610.6343
149LPMSI00445Modern 15 A11MU-863CAIntel Core i5-1155G7Intel Iris Xe8256GB$ 48417%10,27810.6342
385LPACE00888OBTravelMate P2Intel Core i5-1135G7Intel Iris Xe 8256GB$ 47416%9,89110.6342
477LPCNO00048OBVivoBook RIntel Core i5-1135G7Intel Iris Xe 8256GB$ 47516%9,89110.6341
541LPHUA00040OBMateBook D15Intel i5-1135G7Intel Iris Xe 8512GB$ 47516%9,89110.6341
506LPLEN03000IdeaPad Flex 5AMD Ryzen 5 5500UAMD Radeon 8512GB$ 58420%13,14411.6340
320LPMSI00553OBVector GP68HXIntel i9-12900HXGeForce RTX 4080321TB$ 2,24976%34,93764.9339
353LPLEN03437OBLegion Pro 5Intel i9-13900HXGeForce RTX 407016512GB$ 2,24976%44,97751.7338
453LPGIG00141OBAORUS 17Intel i7-12700HGeForce RTX 3080 Ti321TB$ 1,79961%26,42453.7338
334LPGIG00148OBAORUS Gaming NotebookIntel i7-13700HGeForce RTX 4070161TB$ 1,79961%27,89051.7338
300LPLEN03436OBLegion Pro 5Intel i7-13700HXGeForce RTX 4070161TB$ 1,97966%34,11051.7335
119LPASU00658ZenBook 14AMD Ryzen 5 5600HAMD Radeon Vega 78512GB$ 69923%17,09311.6335
415LPACE00946NoneIntel i5-1135G7Intel Iris8512GB$ 48716%9,89110.6333
188LPASU00717OBG614JJ-DS71-CAIntel i7-13650HXRTX 3050161TB$ 1,43948%32,15227.5333
43LPMSI00540Thin GF63Intel i7-12650HGeForce RTX 405016512GB$ 1,49950%23,28141.9332
89LPACE00960PH16-71-72YGIntel i7-13700HXGeForce RTX 4070161TB$ 1,99966%34,11051.7332
524LPASU00583OBTUF Gaming NotebookRyzen 5 4600HGeForce GTX 16508512GB$ 82827%14,52520.8331
421LPLEN03352ThinkBook 15 G3AMD Ryzen 5 5500UAMD Radeon 8256GB$ 59920%13,14411.6331
29LPMSI00593Katana 17Intel i7-13620HGeForce RTX 4070161TB$ 1,79959%26,48951.7331
425LPGIG00153G5 MFIntel i5-12450HGeForce RTX 40508512GB$ 1,34945%17,45641.9330
267LPACE00981OBAspire 5AMD Ryzen 3 5300UNone8256GB$ 42714%9,7167.6328
562LPHEW0173316-c0010caAMD Ryzen 7 5800HNVIDIA GeForce RTX 3050 Ti161TB$ 1,17338%21,13028.2328
117LPACE00985Swift 3 EVOIntel i5-1240PNone16512GB$ 69923%17,32010.6328
115LPASU00685VivoBook F415EA-AS31Intel Core i3-1115G4Intel UHD 4128GB$ 29910%6,1326.2328
56LPASU00760Vivobook 16XIntel i9-13900HGeForce RTX 405016512GB$ 1,69956%29,68741.9327
35LPHEW01929ProBook 440 G9Intel Core i5-1235UNone8256GB$ 59920%13,54610.6326
476LPHEW01913OB15-DY2067MSIntel Core i5-1135G7Intel Iris X 12256GB$ 49916%9,89110.6325
520LPACE00888TravelMate P2Intel Core i5-1135G7None8256 GB$ 49916%9,89110.6325
464LPLEN03130OBNoneAMD Ryzen 5 5625UAMD Radeon 12512GB$ 66522%15,07811.6324
571LPHUA00040MateBook D15Intel i5-1135G7Intel Iris Xe 8512GB$ 50016%9,89110.6324
350LPHEW02028OB15-fc0040caAMD Ryzen 7 7730UAMD Radeon 161TB$ 80726%18,82413.2323
268LPASU00784OBVivobook 15AMD Ryzen 7 7730UNone16512GB$ 80726%18,82413.2323
237LPLEN03390OBThinkPad T14 G3Ryzen 5 Pro 6650UAMD Radeon 660M16256GB$ 75924%16,75213.6322
147LPLEN03431IdeaPad Slim 5Intel i5-1335UIntel Iris Xe8512GB$ 70023%16,92910.6322
79LPLEN0290814 G4 ABAAMD Ryzen 7 5825UNone16512 GB$ 79926%18,45813.2322
178LPGIG00157AERO 14Intel i5-12500HRTX 4050161TB$ 1,49948%21,52141.9322
314LPGIG00161NoneIntel i5-12500HGeForce RTX 405016512GB$ 1,49948%21,52141.9322
395LPGIG00158AORUS Gaming NotebookIntel i5-12500HGeForce RTX 40508512GB$ 1,49948%21,52141.9322
475LPLEN03049OBLegion 5AMD Ryzen 7 6800HGeForce RTX 3070 Ti16512GB$ 1,78057%23,65452.2322
394LPGIG00159AORUS Gaming NotebookIntel i5-12500HGeForce RTX 406016512GB$ 1,59951%21,52146.3321
69LPGIG00151BSF-73US754SHIntel i7-13700HGeForce RTX 4070161TB$ 1,89961%27,89051.7320
435LPMSI00543Katana GF76Intel i7-11800HGeForce RTX 3050 Ti16512GB$ 1,19938%20,75328.2318
48LPMSI00565Bravo 15AMD Ryzen 7 7735HSGeForce RTX 4050161TB$ 1,59951%24,26441.9317
222LPASU00786OBVivobook 16XIntel i5-1235UNone8512GB$ 61720%13,54610.6316
355LPGIG00154OBAERO 14Intel Core i7-13700HGeForce RTX 4050161TB$ 1,70954%27,89041.9316
417LPMSI00538OBKatana 17 B12VGK-217CAIntel i7-12650HGeForce RTX 4070161TB$ 1,79957%23,28151.7314
166LPMSI00561Bravo 15AMD Ryzen 7 7735HSGeForce RTX 305016512GB$ 1,29941%24,26427.5314
249LPMSI00575OBModern 15Intel i7-1255UIntel Iris Xe16512GB$ 66421%13,77212.1312
68LPMSI00580Pulse 17Intel i9-13900HGeForce RTX 4070161TB$ 1,99962%29,68751.7312
12LPACE00981Aspire 5AMD Ryzen 3 5300UNone8256GB$ 44914%9,7167.6312
187LPASU00500OBExpertBook B1Intel i5 1135G7None8256GB$ 52216%9,89110.6311
311LPLEN03456OBIdeaPadIntel i5-1135G7None8512GB$ 52216%9,89110.6311
509LPACE00851OBTravelMate P2Intel Core i5-1135G7Intel HD 8256GB$ 38012%9,8914.2311
424LPGIG00146OB17HIntel i7-13700HRTX 4080161TB$ 2,24970%27,89064.9310
107LPLEN02956ThinkBook 14 G4 ABAAMD Ryzen 5 5625UNone16256GB$ 69922%15,07811.6309
125LPLEN03130Consumer LaptopAMD Ryzen 5 5625UAMD Radeon 12512GB$ 70022%15,07811.6308
283LPASU00783OBZenbook 14 OLEDAMD Ryzen 7 5825UNone16512GB$ 83526%18,45813.2308
217LPGIG00156OBAERO 16 OLEDIntel i7-13700HGeForce RTX 4070161TB$ 1,97961%27,89051.7307
22LPHEW0202815-fc0040caAMD Ryzen 7 7730UAMD Radeon 161TB$ 84926%18,82413.2307
27LPASU00784Vivobook 15 OLEDAMD Ryzen 7 7730UNone16512GB$ 84926%18,82413.2307
37LPLEN0339021CF000CUSRyzen 5 Pro 6650UAMD Radeon 660M16256GB$ 79924%16,75213.6306
26LPMSI00553Vector GP68HXIntel i9-12900HXGeForce RTX 4080321TB$ 2,49976%34,93764.9305
294LPHEW02024OBConsumer Notebook 17Intel i5-1335UIntel Iris Xe81TB$ 74023%16,92910.6305
371LPLEN03437NoneIntel i9-13900HXGeForce RTX 407016512GB$ 2,49976%44,97751.7305
144LPGIG00141YE5-74US544SHIntel i7-12700HGeForce RTX 3080 Ti321TB$ 1,99961%26,42453.7304
168LPGIG00148NoneIntel i7-13700HGeForce RTX 4070161TB$ 1,99961%27,89051.7304
443LPMSI00537Pulse 17Intel i7-13700HGeForce RTX 4070161TB$ 1,99961%27,89051.7304
135LPLEN03436Legion Pro 5Intel i7-13700HXGeForce RTX 4070161TB$ 2,19966%34,11051.7302
213LPLEN03503OBLegion Slim 7iIntel i9-13900HGeForce RTX 4070321TB$ 2,06962%29,68751.7301
195LPASU00721OBG733PZ-XS96AMD Ryzen 9 7945HXRTX 4080321TB$ 3,14995%55,50364.9301
21LPASU00786Vivobook 16XIntel i5-1235UNone8512GB$ 64920%13,54610.6301
88LPASU00717G614JJ-DS71-CAIntel i7-13650HXRTX 3050161TB$ 1,59948%32,15227.5300
470LPASU00610OBTUF517ZC-DS51-CAIntel i5-12450HGeForce RTX 305016512GB$ 1,15935%17,45627.5299
228LPLEN03569OBV14Ryzen 5 5500UNone16512GB$ 66420%13,14411.6299
408LPACE00958PHN16-71-788NIntel i7-13700HXGeForce RTX 4060161024GB$ 2,10063%34,11046.3298
370LPMSI00567Thin GF63Intel Core i5-12450HGeForce RTX 406016512GB$ 1,59948%17,45646.3298
231LPHEW02099OB17-cn3020caIntel i5-1335UNone16512GB$ 75923%16,92910.6297
31LPMSI00575Modern 15Intel i7-1255UIntel Iris Xe16512GB$ 69921%13,77212.1297
61LPASU00500ExpertBook B1Intel i5 1135G7None8256GB$ 54916%9,89110.6295
128LPLEN03456IdeaPadIntel i5-1135G7None8512GB$ 54916%9,89110.6295
223LPACE00984OBAspire 3Intel i5-1235UNone16512GB$ 66420%13,54610.6294
449LPLEN03212OBIdeaPad 5Intel Core i5-1235UIntel Iris Xe8512GB$ 66520%13,54610.6293
376LPACE00963AN515-58-7578Intel i7-12650HGeForce RTX 4050161TB$ 1,70050%23,28141.9293
469LPCNO00052OBVivoBook F515Intel Core i7-1165G7Intel Iris Xe 8512GB$ 60318%10,34712.1293
349LPMSI00563OBModern 15Intel i5-1155G7Intel Iris Xe16512GB$ 56917%10,27810.6291
100LPLEN0361121KJ000EUSAMD Ryzen 7 7730U Octa-core (8 Core)None16512 GB$ 89926%18,82413.2290
167LPHEW02024Consumer NotebookIntel i5-1335UIntel Iris Xe81TB$ 77923%16,92910.6290
412LPACE00952Nitro 5Intel i5-12450HGeForce RTX 30508512GB$ 1,20035%17,45627.5289
138LPACE00966Nitro 17AMD Ryzen 7 7735HSGeForce RTX 4070321TB$ 1,99957%24,26451.7287
404LPMSI00481OBRaider GE76Intel i9-12900HKRTX3080TI321TB$ 2,17362%28,08553.7287
255LPCNO00061OBF1500EA-WB51Intel i5-1135G7None8256GB$ 56816%9,89110.6285
352LPASU00726OBGV302XU-DS91T-CAAMD Ryzen 9 7940HSRTX 4050161TB$ 1,97956%30,59441.9285
229LPASU00581OBExpertBook B1Intel i5-1135G7None8256GB$ 56916%9,89110.6285
560LPHUA00036OBMateBook D15Intel i5-1135G7Intel Iris Xe 8512GB$ 56916%9,89110.6285
304LPASU00561OBExpertBook B1Intel Core i5-1135G7Intel Iris Xe G78256GB$ 57016%9,89110.6284
152LPGIG00154AERO 14Intel Core i7-13700HGeForce RTX 4050161TB$ 1,89954%27,89041.9284
67LPGIG00145NoneIntel Core i9-13900HXGeForce RTX 4080161TB$ 2,99985%44,97764.9284
161LPACE00961Predator HeliosIntel i9-13900HXGeForce RTX 4080321 TB$ 2,99985%44,97764.9284
409LPACE00957AN16-51-74BVIntel i7-13700HGeForce RTX 4050161024GB$ 1,90054%27,89041.9284
25LPLEN03569V14Ryzen 5 5500UNone16512GB$ 69920%13,14411.6284
282LPLEN03432OBIdeaPad Flex 5AMD Ryzen 5 7530UNone16512GB$ 80723%16,50711.6283
442LPMSI00538Katana 17 B12VGK-217CAIntel i7-12650HGeForce RTX 4070161TB$ 1,99957%23,28151.7283
403LPASU00735OBVivobook 16XIntel i5-12500HIris Xe 16512GB$ 94427%21,52110.6283
503LPGIG00134A7 K1AMD Ryzen 7 5800HGeForce RTX 306016512GB$ 1,69948%21,13042.0282
23LPHEW0209917-cn3020caIntel i5-1335UNone16512GB$ 79923%16,92910.6282
151LPASU00761Vivobook Pro 16X OLEDIntel i9-13980HXGeforce RTX 4070321TB$ 2,79979%47,99451.7282
262LPLEN03493OBThinkbook T490Intel i5-8365UNone16256GB$ 35910%6,2456.4279
276LPLEN00715OBNoneIntel Core i5-8365UNone16256 GB$ 35910%6,2456.4279
70LPGIG00146NoneIntel i7-13700HRTX 4080161TB$ 2,49970%27,89064.9279
38LPACE00984Aspire 3Intel i5-1235UNone16512GB$ 69920%13,54610.6279
204LPLEN03518OBThinkbook T480sIntel i5-8350UNone16256GB$ 35910%6,2266.4279
543LPLEN02718OBNoneIntel Core i5-8350UIntel UHD 62016256 GB$ 35910%6,2266.4279
389LPASU00724OBGU604VI-DS92-CAIntel i9-13900HGeForce RTX 4070321TB$ 2,24962%29,68751.7277
426LPGIG00150AORUS 15XIntel i7-13700HXGeForce RTX 4070161TB$ 2,39966%34,11051.7277
141LPMSI00563Modern 15 NotebookIntel i5-1155G7Intel Iris Xe16512GB$ 59917%10,27810.6276
182LPGIG00156AERO 16 OLEDIntel i7-13700HGeForce RTX 4070161TB$ 2,19961%27,89051.7276
271LPHEW01967OBProBook 440 G9Intel i5-1235UNone16256GB$ 71220%13,54610.6274
333LPLEN03312OBT490Intel i5-8265UIntel UHD 16256GB$ 35910%6,0236.4274
585LPHEW01543OBNotebookAMD Ryzen 7 5700UAMD Radeon 161TB$ 85523%15,85413.2273
407LPACE00959PH16-71-71AVIntel i7-13700HXGeForce RTX 4060161024GB$ 2,30063%34,11046.3272
233LPLEN03567OBThinkPad X1 Gen 3Intel i7-8550UN/A16256GB$ 35910%5,9296.4271
10LPLEN0350382Y3007HCCIntel i9-13900HNVIDIA GeForce RTX 4070321TB$ 2,29962%29,68751.7271
118LPCNO00061Vivobook F SeriesIntel i5-1135G7None8256GB$ 59816%9,89110.6271
238LPHUA00042OBMatebook D14Intel i7-1360PNone161TB$ 94926%19,30912.1271
59LPASU00721ROG StrixAMD Ryzen 9 7945HXRTX 4080321TB$ 3,49995%55,50364.9271
54LPASU00581ExpertBook B1Intel i5-1135G7None8256GB$ 59916%9,89110.6271
575LPHUA00036MateBook D15Intel i5-1135G7Intel Iris Xe 8512GB$ 59916%9,89110.6271
607LPASU00561ExpertBook B1Intel Core i5-1135G7Intel Iris Xe G78256GB$ 60016%9,89110.6270
120LPLEN03432NoneAMD Ryzen 5 7530UNone16512GB$ 84923%16,50711.6269
342LPMSI00581Modern 15AMD Ryzen 5-7530UNone16512GB$ 84923%16,50711.6269
534LPASU00610TUF517ZC-DS51-CAIntel i5-12450HGeForce RTX 305016512GB$ 1,28835%17,45627.5269
84LPHEW0210114-ep0000caIntel i3-N305None8256GB$ 54915%9,9788.4269
508LPASU00621OBGA503RS-XS92-CAAMD Ryzen 9 6900HSGeForce RTX 3080321TB$ 2,01654%23,90147.4269
440LPASU00735Vivobook 16XIntel i5-12500HIris Xe 16512GB$ 99427%21,52110.6269
286LPASU00770OBGA402XZ-CS94AMD Ryzen 9 7940HSGeForce RTX 4080161TB$ 2,69972%30,59464.9268
375LPACE00965NitroAMD Ryzen 7 7735HSGeForce RTX 4050161TB$ 1,89951%24,26441.9267
51LPMSI00555Stealth 15Intel i9-13900HGeForce RTX 4060321TB$ 2,19959%29,68746.3267
485LPASU00609OBTUF Gaming NotebookIntel Core i5-10300HGeForce GTX 165081TB$ 82422%8,47420.8266
382LPASU00752OBVivobook 17Intel i7-1165G7Intel Iris Xe 8512GB$ 66418%10,34712.1266
189LPLEN03685OBIdeaPad Slim 3 15AMN8AMD Ryzen 3 7320UNone8256GB$ 42711%9,0664.6266
291LPASU00782OBVivobook GoAMD Ryzen 3 7320UNone8128GB$ 42711%9,0664.6266
343LPMSI00579Stealth 14StudioIntel i7-13620HGeForce RTX 4060161TB$ 2,09956%26,48946.3266
198LPLEN03707V15 G4Intel i3-1315UIntel UHD 16512GB$ 69919%13,0049.9265
537LPHEW01738OBProbook 640Intel Core i5-6300UIntel HD 52016512GB$ 2436%3,2405.1265
494LPGIG00136AORUS 5 KE4Intel Core i7-12700HGeForce RTX 3060161TB$ 1,99953%26,42442.0264
272LPASU00764OBZenbook 15 OLEDAMD Ryzen 7 7735UAMD Radeon 161TB$ 1,23432%21,35018.8261
247LPASU00779OBZenbook 14X OLEDIntel i7-12700HIntel Iris Xe161TB$ 1,23432%26,42412.1260
15LPHEW01967ProBook 440 G9Intel i5-1235UNone16256GB$ 74920%13,54610.6260
589LPHEW0154315-ef2030caAMD Ryzen 7 5700UAMD Radeon 161TB$ 90023%15,85413.2260
76LPACE00994VeroIntel i7-1255UIntel Iris Xe 161TB$ 79921%13,77212.1260
458LPMSI00524GP66 LeopardIntel Core i7-11800HNVIDIA RTX307016512GB$ 1,99952%20,75348.0259
510LPMSI00497Pulse GL66Intel i7-11800HRTX307016512GB$ 2,00052%20,75348.0259
46LPHUA00042Matebook D14Intel i7-1360PNone161TB$ 99926%19,30912.1258
140LPASU00726GV302XU-DS91T-CAAMD Ryzen 9 7940HSRTX 4050161TB$ 2,19956%30,59441.9257
184LPASU00727GV601VU-DS91T-CAIntel Core i9-13900HRTX 4050161TB$ 2,19956%29,68741.9253
318LPHEW02077OMENAMD Ryzen 9 7940HSGeForce RTX 4070322TB$ 2,49963%30,59451.7253
32LPASU00752Vivobook 17Intel i7-1165G7Intel Iris Xe 8512GB$ 69918%10,34712.1253
53LPASU00782Vivobook GoAMD Ryzen 3 7320UNone8128GB$ 44911%9,0664.6252
24LPLEN03685IdeaPad Slim 3 15AMN8AMD Ryzen 3 7320UNone8256GB$ 44911%9,0664.6252
250LPMSI00592Stealth 14StudioIntel i7-13620HGeForce RTX 305016512GB$ 1,69943%26,48927.5252
20LPLEN03493NoneIntel i5-8365UNone16256GB$ 39910%6,2456.4251
150LPLEN00715ThinkPad T490Intel i5-8365UNone16256GB$ 39910%6,2456.4251
162LPASU00718G634JZ-XS96Intel i9-13980HXRTX 4080321TB$ 3,49988%47,99464.9251
555LPLEN02718ThinkPad T480Intel Core i5-8350UIntel UHD 62016256 GB$ 39910%6,2266.4251
42LPLEN03518Thinkbook T480sIntel i5-8350UNone16256GB$ 39910%6,2266.4251
344LPMSI00578Modern 14Intel i5-1335UNone16512GB$ 89923%16,92910.6251
451LPLEN03268ThinkPad T580Intel Core i5-8350UNone16256GB$ 40010%6,2266.4250
181LPASU00759H7604JI-XS91T-CAIntel i9-13980HXGeforce RTX 4070321TB$ 3,15479%47,99451.7250
156LPASU00766Zenbook Pro 14Intel i9-13900HGeForce RTX 4070321TB$ 2,49962%29,68751.7249
55LPASU00724ROG ZephyrusIntel i9-13900HGeForce RTX 4070321TB$ 2,49962%29,68751.7249
148LPGIG00155AERO 16 OLEDIntel i9-13900HGeForce RTX 4070321TB$ 2,49962%29,68751.7249
419LPGIG00144OBAZF-B5US665SPIntel Core i9-13900HXRTX 4090322TB$ 3,64591%44,97772.6248
203LPLEN03578OBYoga L390Intel i5-8365UNone16256GB$ 40410%6,2456.4248
457LPLEN03202OBThinkPad X380 YogaIntel i5-8350UIntegrated16512GB$ 40410%6,2266.4248
143LPASU00764Zenbook 15 OLEDAMD Ryzen 7 7735UAMD Radeon 161TB$ 1,29932%21,35018.8248
158LPASU00779Zenbook 14X OLEDIntel i7-12700HIntel Iris Xe161TB$ 1,29932%26,42412.1247
241LPLEN03403OBT480sIntel i7-8550UIntel UHD 62024256GB$ 39410%5,9296.4247
313LPLEN00182OBThinkPad T480sIntel Core i7-8550UNone16256 GB$ 39410%5,9296.4247
580LPMSI00381OBPrestige 14Intel Core i7-1185G7NVIDIA GeForce MX450161TB$ 73618%10,55312.6247
433LPLEN03312T490Intel i5-8265UIntel UHD 16256GB$ 39910%6,0236.4246
418LPHEW02012Chromebook C204MA-SS02-CBIntel Celeron-N4020Intel UHD 432GB eMMC$ 992%1,5561.5246
33LPLEN03567ThinkPad X1 Gen 3Intel i7-8550UNone16256GB$ 39910%5,9296.4244
235LPGIG00164AORUS 17XIntel i9-13980HXGeForce RTX 4080161TB$ 3,59988%47,99464.9244
257LPLEN02154OB20WM0085USIntel i5-1135G7None8256GB$ 66416%9,89110.6244
478LPMSI00513Katana GF76Intel Core i7-12700HGeForce RTX3070TI161TB$ 2,44960%26,42452.2244
570LPHUA00035OBMatebook 14Intel Core i5-1135G7Intel Iris Xe 16512GB$ 66516%9,89110.6244
93LPMSI00548Vector GP78 HXIntel i9-13950HXGeForce RTX 4080321TB$ 3,49985%44,93164.9243
513LPASU00621GA503RS-XS92-CAAMD Ryzen 9 6900HSGeForce RTX 3080321TB$ 2,24054%23,90147.4242
293LPASU00780OBZenbookIntel i7-12700HNone161TB$ 1,32932%26,42412.1242
391LPACE00945OBAspireIntel i5-10210UNone8256GB$ 41510%6,2286.4241
480LPGIG00138AERO 16Intel Core i9-12900HGeForce RTX 3080 Ti322TB$ 2,59963%28,52453.7241
60LPASU00770GA402XZ-CS94AMD Ryzen 9 7940HSGeForce RTX 4080161TB$ 2,99972%30,59464.9241
361LPHEW02021OB14-em0030caAMD Ryzen 3 7320URadeon 8256GB$ 47411%9,0664.6239
270LPLEN03428OBIdeaPad Slim 3AMD Ryzen 3 7320UAMD Radeon 610M 8512GB$ 47511%9,0664.6239
516LPASU00603OBVivobook 15Intel Core i7-1165G7Intel Iris Xe 12512GB$ 74218%10,34712.1238
576LPASU00540VivoBook Pro 16XAMD Ryzen 7 5800HNVIDIA GeForce RTX 305016512GB$ 1,59938%21,13027.5237
73LPASU00729Zephyrus DuoAMD Ryzen 9 7945HXRTX 4080321TB$ 3,99995%55,50364.9237
357LPMSI00568OBModernIntel i5-1235UIntel Iris Xe16512GB$ 83020%13,54610.6235
364LPMSI00498OBSUMMIT E14Intel i7-1280PIris Xe 161TB$ 1,14227%20,45012.1234
153LPASU00722G834JY-XS97Intel i9-13980HXRTX 4090322TB$ 3,99993%47,99472.6233
569LPLGE00019OBgramIntel i5-1155G7Intel Iris Xe 8512GB$ 71217%10,27810.6232
219LPGIG00137OBAERO 16Intel Core i9-12900HNVIDIA RTX 3080 Ti642TB$ 2,69963%28,52453.7232
380LPMSI00550Raider GE78HXIntel i9-13980HXGeForce RTX 4070322TB$ 3,39979%47,99451.7232
521LPSAS00117Galaxy BookIntel i5-1135G7Intel Iris Xe 8256GB$ 69916%9,89110.6232
164LPLEN0215420WM0085USIntel i5-1135G7None8256GB$ 69916%9,89110.6232
121LPHUA00035Matebook 14Intel Core i5-1135G7Intel Iris Xe 16512GB$ 70016%9,89110.6232
428LPLEN03299OBThinkPad T14 Gen 2Intel Core i5-1135G7GeForce MX450 2GB8256GB$ 76018%9,89112.6231
157LPASU00780ZenbookIntel i7-12700HNone161TB$ 1,39932%26,42412.1230
548LPHUA00037OBMateBook 14sIntel Core i7-11370HIntel Iris Xe 16512GB$ 82419%11,76012.1230
416LPACE00945Aspire A515-54-54B9Intel i5-10210UNone8256GB$ 43710%6,2286.4229
102LPLEN0360021KK0009USAMD Ryzen 5 7530U Hexa-core (6 Core)None16512 GB$ 99923%16,50711.6229
399LPASU00707OBZenbook OLEDAMD Ryzen 7 7730UAMD Radeon161TB$ 1,13926%18,82413.2229
239LPHEW01946OBNoneIntel i5-1235UNone16256GB$ 85420%13,54610.6228
126LPHEW02021Consumer Laptop 14AMD Ryzen 3 7320URadeon 8256GB$ 49911%9,0664.6227
81LPASU00723GA402NJ-DS71-CAAMD Ryzen 7 7735HSRTX 305016512GB$ 1,79941%24,26427.5227
160LPLEN03428IdeaPad Slim 3AMD Ryzen 3 7320UAMD Radeon 610M 8512GB$ 50011%9,0664.6227
96LPHEW02036NoneIntel i9-13900HXGeForce RTX 4090322TB$ 3,99991%44,97772.6226
546LPASU00603Vivobook 15Intel Core i7-1165G7Intel Iris Xe 12512GB$ 78118%10,34712.1226
540LPHUA00039OBMateBook 14si7-11370HIntel Iris Xe 16512GB$ 83919%11,76012.1226
227LPLEN03429OBIdeaPad Slim 3AMD Ryzen 5 7520UAMD Radeon 610M8512GB$ 52212%9,4754.6224
49LPLEN03578Yoga L390Intel i5-8365UNone16256GB$ 44910%6,2456.4223
191LPLEN03577OBThinkPad T480Intel i5-8365UNone16512GB$ 44910%6,2456.4223
236LPLEN03559OBNoneIntel i5-8365UIntel UHD 62016512GB$ 44910%6,2456.4223
154LPLEN03202X380 YogaIntel i5-8350UIntegrated GPU16512GB$ 44910%6,2266.4223
142LPLEN03403T480sIntel i7-8550UIntel UHD 62024256GB$ 43810%5,9296.4223
139LPLEN00182ThinkPad T480sIntel Core i7-8550UNone16256GB$ 43810%5,9296.4223
444LPASU00731ROG FlowIntel i9-13900HRTX 4050161TB$ 2,49956%29,68741.9222
567LPMSI00415Stealth 15MIntel Core i7-1260PRTX3060161TB$ 1,99944%17,23142.0222
381LPMSI00549Vector GP78HXIntel i7-13700HXGeForce RTX 4080321TB$ 3,39975%34,11064.9222
199LPLEN03706V15 G4AMD Ryzen 5 5500UIntegrated graphics16512GB$ 89920%13,14411.6221
441LPLEN03299ThinkPad T14 Gen 2Intel Core i5-1135G7GeForce MX450 2GB8256GB$ 80018%9,89112.6220
64LPASU00800Vivobook S 15 OLEDIntel i9-13900HNone161TB$ 1,59935%29,68712.1219
246LPLEN03552OBX1 Yoga G4Intel i5-8265UNone16512GB$ 44910%6,0236.4219
467LPACE00880OBAspire A515-54Intel i7-10510UNone8512GB$ 47510%6,6486.4219
338LPLEN03301OBIdeaPad Flex 5Intel i7-1255UNone16512GB$ 94921%13,77212.1219
269LPHEW01822OBProBook 450 G9Intel i7-1255UNone16512GB$ 94921%13,77212.1219
497LPASU00559OBZenbook NotebookIntel Core i5-1135G7Intel Iris Xe 8256GB$ 74216%9,89110.6219
489LPLGE00021OBgramIntel i5-1155G7Intel Iris Xe 8512GB$ 76017%10,27810.6218
39LPASU00707ZenbookAMD Ryzen 7 7730UAMD Radeon161TB$ 1,19926%18,82413.2217
5LPHEW01946ProBook 450 G9Intel i5-1235UNone16256GB$ 89920%13,54610.6217
90LPLEN03055ThinkBook 15 G4Intel Core i5-1235UNone16256GB$ 89920%13,54610.6217
556LPHEW01739ProBook 820 G3Intel Core i7 6500UIntel HD 52016256GB$ 2996%3,2755.1216
103LPLEN0350821JR001QUSAMD Ryzen 5 7530U (Hexa-core, 6 Core) None8256 GB$ 1,06223%16,50711.6215
423LPLEN03338ThinkPad T14s Gen 2AMD Ryzen 5 PRO 5650U Hexa-core (6 Core) 2.30 GHzNonenan256 GB$ 99921%14,92211.6215
490LPLEN03099ThinkPad E15 Gen 4AMD Ryzen 7 5825U Octa-core (8 Core) 2 GHzAMD Radeon 16512GB$ 1,19926%18,45813.2215
572LPHUA00039MateBook 14sIntel i7-11370HIntel Iris Xe 16512GB$ 88319%11,76012.1214
212LPASU00560OBExpertBook B1Intel i5-1135G7None8256GB$ 75916%9,89110.6214
566LPHUA00038OBMatebook 14i5-1135G7Intel Iris Xe 16512GB$ 76016%9,89110.6213
296LPMSI00589Creator Z17HXStudioIntel i9-13950HXGeForce RTX 4060321TB$ 3,39972%44,93146.3213
165LPLEN03429IdeaPad Slim 3AMD Ryzen 5 7520UAMD Radeon 610M8512GB$ 55012%9,4754.6213
474LPMSI00516Modern 14 Business NotebookIntel Core i5-1235UIntel Iris Xe8512GB$ 92920%13,54610.6210
564LPASU00558Zenbook Pro 15AMD Ryzen 9 5900HXNVIDIA GeForce RTX 3050Ti16512GB$ 1,89940%22,67828.2210
377LPMSI00554Vector GP77Intel i7-13700HGeForce RTX 4070161TB$ 2,89961%27,89051.7209
163LPGIG00137AERO 16Intel Core i9-12900HRTX 3080 Ti642TB$ 2,99963%28,52453.7209
348LPMSI00576CREATOR Z16Intel i7-13700HXGeForce RTX 4060321TB$ 2,99963%34,11046.3209
279LPLEN03521NoneAMD Ryzen 5 7530UNone16256GB$ 1,09923%16,50711.6208
535LPACE00880Aspire A515-54Intel i7-10510UNone8512GB$ 50010%6,6486.4208
127LPHEW01822ProBook 450 G9Intel i7-1255UNone16512GB$ 99921%13,77212.1208
438LPLEN03301IdeaPad Flex 5Intel i7-1255UNone16512GB$ 99921%13,77212.1208
242LPLEN03568V14Intel i7-1255UNone16512GB$ 99921%13,77212.1208
563LPASU00559Zenbook NotebookIntel Core i5-1135G7Intel Iris Xe 8256GB$ 78116%9,89110.6208
369LPLGE00027OBgramIntel i5-1240PIntel Iris Xe 8512GB$ 1,10923%17,32010.6206
292LPHEW02023OBConsumer NotebookAMD Ryzen 5 7520UAMD Radeon 8512GB$ 56912%9,4754.6206
315LPMSI00583NoneIntel i7-13700HXGeForce RTX 4050321TB$ 2,89960%34,11041.9206
483LPLGE00026OBGramIntel i7-1260PIntel Iris Xe 16512GB$ 1,16324%17,23112.1205
234LPLEN03564OBThinkPad X1Intel i7-8650UNone16256GB$ 49410%6,2886.4204
459LPMSI00514OBSummit E13 Flip EvoIntel Core i7-1280PIntel Iris Xe161TB$ 1,31827%20,45012.1203
36LPASU00560ExpertBook B1Intel i5-1135G7None8256GB$ 79916%9,89110.6203
573LPHUA00038Matebook 14i5-1135G7Intel Iris Xe 16512GB$ 80016%9,89110.6203
316LPHEW01834OBEliteBook 640 G9Intel i5-1245UNone16512GB$ 96119%13,48110.6202
518LPLGE00025gramIntel i5-1240PNone8512GB$ 1,13623%17,32010.6202
101LPLEN03602NoneIntel Core i5-1335UNone16256GB$ 1,11923%16,92910.6201
266LPASU00763OBVivobook S 16 FlipIntel i5-1335UIntel HD 16512GB$ 90218%16,9294.2201
378LPMSI00552Raider GE78HXIntel i7-13700HXGeForce RTX 4070321TB$ 3,29966%34,11051.7201
116LPLEN03559ThinkPad T590Intel i5-8365UIntel UHD 62016512GB$ 49910%6,2456.4201
83LPLEN03577ThinkPad T480Intel i5-8365UNone16512GB$ 49910%6,2456.4201
445LPASU00728Zephyrus DuoAMD Ryzen 9 7945HXRTX 4090322TB$ 4,999100%55,50372.6200
592LPLEN0213120Y70037USAMD Ryzen 5 5500UNone8256GB$ 99920%13,14411.6198
252LPGIG00163AORUS 17XIntel i9-13980HXGeForce RTX 4090322TB$ 4,69993%47,99472.6198
209LPLEN03573OBThinkPad T490Intel i7-8550UIntel UHD 62016256GB$ 49410%5,9296.4197
122LPLEN03552X1 Yoga G4Intel i5-8265UNone16512GB$ 49910%6,0236.4197
517LPLGE00027gramIntel i5-1240PIntel Iris Xe 8512GB$ 1,16823%17,32010.6196
583LPLGE00015OBGram 2-in-1Intel i7-1165G7Intel Iris Xe 16512GB$ 90218%10,34712.1196
180LPASU00767Zenbook Pro 14 Duo OLEDIntel i9-13900HGeForce RTX 4060321TB$ 2,99959%29,68746.3196
446LPMSI00534Raider GE78 HXIntel i9-13980HXGeForce RTX 4080642TB$ 4,49988%47,99464.9195
57LPHEW02023Consumer Notebook 14AMD Ryzen 5 7520UAMD Radeon 8512GB$ 59912%9,4754.6195
275LPLEN0354421JR001RUSRyzen 5 7530UNone16256 GB$ 1,17423%16,50711.6195
218LPLEN03487OBThinkPad E16Intel i7-1355UNone16512GB$ 1,13922%15,29412.1194
515LPHEW01834EliteBook 640 G9Intel i5-1245UNone16512GB$ 1,01219%13,48110.6192
63LPASU00763Vivobook S 16 FlipIntel i5-1335UIntel HD 16512GB$ 94918%16,9294.2191
346LPHEW02045OBConsumer Laptop 17.3"Intel i5-1135G7Intel Iris Xe16512GB$ 85416%9,89110.6190
398LPASU00734OBZenbook 14XIntel i7-1260PGeForce MX55016512GB$ 1,51929%17,23119.2189
74LPLEN03010ThinkBook 14 G4Intel i7-1255UNone16512GB$ 1,09921%13,77212.1189
80LPLEN03572Legion Pro 7Intel i9-13900HXGeForce RTX 4090322TB$ 4,79991%44,97772.6189
197LPLEN03708V15 G4Intel i5-1335UNone161TB$ 1,19923%16,92910.6188
447LPMSI00533Raider GE78 HXIntel i9-13980HXGeForce RTX 4090322TB$ 4,99993%47,99472.6187
297LPMSI00588Prestige 16EVOIntel i7-13700HNone321TB$ 1,79933%27,89012.1186
288LPHEW01833OBEliteBook 650 G9Intel i5-1245UNone16256GB$ 1,04919%13,48110.6185
17LPLEN0348721JN0073USIntel i7-1355UNone16512GB$ 1,19922%15,29412.1184
290LPMSI00590Modern 14Intel i7-1355UNone161TB$ 1,19922%15,29412.1184
379LPMSI00551Stealth 17StudioIntel i7-13700HGeForce RTX 4070321TB$ 3,29961%27,89051.7184
207LPMSI00597Prestige 13 EVOIntel i7-1360PNone16512GB$ 1,39926%19,30912.1184
129LPLEN03564ThinkPad X1Intel i7-8650UNone16256GB$ 54910%6,2886.4183
94LPASU00736GU604VY-XS97Intel i9-13900HRTX 4090322TB$ 4,19977%29,68772.6183
97LPLEN03712Yoga L390Intel i5-8365UNone16256GB$ 54910%6,2456.4183
397LPLGE00034GramIntel i7-1360PGeForce RTX 3050161TB$ 2,00036%19,30927.5182
99LPACE00999PTX17-71-99W5Intel i9-13900HXGeForce RTX 4090642TB$ 4,99991%44,97772.6181
368LPHEW02045Consumer LaptopIntel i5-1135G7Intel Iris Xe16512GB$ 89916%9,89110.6180
330LPSAS00150Galaxy Book3 EVOIntel i7-13700HGeForce RTX 405016512GB$ 2,99954%27,89041.9180
169LPASU00734Zenbook 14XIntel i7-1260PGeForce MX55016512GB$ 1,59929%17,23119.2180
284LPASU00765OBZenbook S 13 OLED EVOIntel i7-1355UNone161TB$ 1,23422%15,29412.1179
75LPMSI00591Stealth 16 AMGIntel i9-13900HGeForce RTX 4070322TB$ 3,49962%29,68751.7178
305LPMSI00587CreatorPro M16Intel i7-13700HNVIDIA RTX A1000321TB$ 2,39943%27,89025.5178
44LPLEN03573ThinkPad T490Intel i7-8550UIntel UHD 62016256GB$ 54910%5,9296.4178
603LPACE00491Aspire 5Intel i7-10510UIntel UHD 620 graphics8512GB$ 58610%6,6486.4177
245LPLEN03502OBIdeaPad Slim 3AMD Ryzen 5 7520UNone16512GB$ 66412%9,4754.6176
108LPHEW01833EliteBook 650 G9Intel i5-1245UNone16256GB$ 1,10419%13,48110.6176
390LPLGE00024OBGramIntel i7-1260PIntel Iris Xe 16512GB$ 1,35624%17,23112.1176
552LPDYA00003C50-JIntel Core i5-1135G7Integrated GPU8256GB$ 92916%9,89110.6174
82LPMSI00535Stealth 17Intel i9-13900HGeForce RTX 4090642TB$ 4,39977%29,68772.6174
387LPASU00768Zenbook Pro 16X OLEDIntel i9-13905HGeForce RTX 4080321TB$ 4,19973%31,60364.9174
92LPLEN03474ThinkPad E16Intel i5-1335UNone16256GB$ 1,29923%16,92910.6174
345LPLEN03462ThinkBook 14s YogaIntel Core i5-1335UNone16256GB$ 1,29923%16,92910.6174
200LPRAZ00059Blade 14AMD Ryzen 9 7940HSGeForce RTX 4070161TB$ 3,64963%30,59451.7173
78LPLGE00032Gram EVOIntel i7-1360PIntel Iris Xe16512GB$ 1,49926%19,30912.1172
256LPHEW02083OBEliteBook 640 G9Intel i5-1245UNone16512GB$ 1,13619%13,48110.6171
232LPLEN02397OBNoneIntel i5-1135G7Intel Iris Xe 8256GB$ 95016%9,89110.6171
130LPASU00765Zenbook S 13 OLED EVOIntel i7-1355UNone161TB$ 1,29922%15,29412.1170
351LPLGE00030OBGramIntel i7-1360PIntel Iris Xe16512GB$ 1,51926%19,30912.1169
265LPLGE00033OBGram EVOIntel i7-1360PIntel Iris Xe16512GB$ 1,51926%19,30912.1169
312LPLGE00031OBGram EVOIntel i7-1360PIntel Iris Xe16512GB$ 1,52026%19,30912.1169
254LPLEN03042OBThinkBook 15 G4Intel Core i7-1255UNone16512GB$ 1,23421%13,77212.1168
7LPLEN03502IdeaPad Slim 3AMD Ryzen 5 7520UNone16512GB$ 69912%9,4754.6167
587LPMSI00379Modern 14Intel Core i7-1195G7Intel Iris Xe8512GB$ 1,09918%11,03412.1166
278LPLEN03522ThinkBook 15 G4AMD Ryzen 5 5625UNone16256GB$ 1,29922%15,07811.6166
373LPLEN03427IdeaPad 1 15AMN7AMD Athlon Gold 7220UAMD Radeon 610M 4128GB$ 4507%4,7484.6165
329LPSAS00152Galaxy Book3 EVOIntel i7-13700HGeForce RTX 4050161TB$ 3,26954%27,89041.9165
77LPHEW02083EliteBook 640 G9Intel i5-1245UNone16512GB$ 1,19619%13,48110.6163
413LPACE00948A317-53-591MIntel i5-1135G7Integrated GPU8512GB$ 99916%9,89110.6162
481LPCNO00054ThinkPad E15 Gen 2Intel Core i5-1135G7Intel Iris Xe 8256GB$ 99916%9,89110.6162
550LPDYA00005C50-JIntel Core i7-1165G7Integrated GPU8256GB$ 1,08918%10,34712.1162
85LPLEN03497ThinkPad X1 CarbonIntel i5-1335UNone16256GB$ 1,39923%16,92910.6161
331LPLEN03471ThinkPad E14Intel i5-1335UNone16512GB$ 1,39923%16,92910.6161
105LPLGE00030GramIntel i7-1360PIntel Iris Xe16512GB$ 1,59926%19,30912.1161
87LPLGE00033Gram EVOIntel i7-1360PIntel Iris Xe16512GB$ 1,59926%19,30912.1161
104LPLGE00031Gram EVOIntel i7-1360PIntel Iris Xe16512GB$ 1,60026%19,30912.1161
307LPMSI00586CreatorPro Z16HXStudioIntel i9-13950HXNVIDIA RTX A2000321TB$ 3,79961%44,93129.7160
281LPMSI00577OBPrestige 13 EvoIntel i7-1360PNone321TB$ 1,60526%19,30912.1160
91LPLEN0347614s Yoga G3Intel Core i7-1355UNone16512GB$ 1,38022%15,29412.1160
186LPLEN03042ThinkBook 15 G4Intel Core i7-1255UNone16512GB$ 1,29921%13,77212.1160
106LPLEN03221ThinkPad L13 YogaIntel Core i7-1255UNone16512GB$ 1,29921%13,77212.1160
208LPHEW01997OBENVY X360Intel i7-1250UNone161TB$ 1,23420%12,42112.1158
196LPLEN03709V15 G4Intel i7-1355UNone161TB$ 1,39922%15,29412.1158
95LPLEN03710NoneIntel i5-10310UNone16512GB$ 64910%6,4366.4157
448LPMSI00532TITAN GT77Intel i9-13980HXGeForce RTX 4080642TB$ 5,59988%47,99464.9157
308LPMSI00585CreatorPro Z17HX StudioIntel i9-13950HXNVIDIA RTX A3000321TB$ 3,99963%44,93132.1156
194LPLGE00028OBGram EVOIntel i7-1260PIntel Iris Xe 16512GB$ 1,53924%17,23112.1155
98LPLEN03711X1 CarbonIntel i7-8665UNone16256GB$ 64910%6,2566.4155
501LPASU00649P1512CEAIntel Core i5-1135G7Intel UHD 8512GB$ 1,04916%9,89110.6155
502LPASU00647P1512CEAIntel Core i5-1135G7Intel UHD 8512GB$ 1,04916%9,89110.6155
551LPDYA00004C50-JIntel Core i5-1135G7Integrated GPU8512GB$ 1,04916%9,89110.6155
488LPASU00547OBVivobook 13Intel Pentium Silver N6000Intel UHD 4128GB$ 3325%3,0893.4154
155LPMSI00577Prestige 13 EvoIntel i7-1360PNone321TB$ 1,68926%19,30912.1152
321LPSAS00158Galaxy Book3 360 EVOIntel i5-1335UNone8256GB$ 1,49923%16,92910.6150
58LPHEW01997ENVY X360Intel i7-1250UNone161TB$ 1,29920%12,42112.1150
422LPLEN03339ThinkPad T14s Gen 2AMD Ryzen 5 PRO 5650UNone8256GB$ 1,43021%14,92211.6150
202LPMSI00531OBTITAN GT77Intel i9-13980HXGeForce RTX 40901284TB$ 6,29993%47,99472.6148
183LPLEN03512ThinkBook 14s Yoga G3Intel Core i7-1355UNone16512GB$ 1,49922%15,29412.1148
109LPLGE00028Gram EVOIntel i7-1260PIntel Iris Xe 16512GB$ 1,62024%17,23112.1147
549LPDYA00006C50-JIntel Core i7-1165G7Integrated8512GB$ 1,19918%10,34712.1147
574LPASU00547Vivobook 13 Slate NotebookIntel Pentium Silver N6000Intel UHD 4128GB$ 3505%3,0893.4146
479LPRAZ00055Blade 15Intel Core i7-12800HGeForce RTX 3070 Ti161TB$ 3,99958%24,97152.2146
388LPMSI00544Titan Gaming NotebookIntel i9-13980HXGeForce RTX 4090642TB$ 6,44993%47,99472.6145
261LPDYA00028TecraIntel i5-1240PNone16256GB$ 1,59923%17,32010.6143
274LPLEN03546E14Intel i7-1355UNone16512GB$ 1,59922%15,29412.1138
431LPACE00942A315-56-54YTIntel Core i5-1035G1Integrated Graphic8256GB$ 74910%7,4605.1137
472LPASU00665Zenbook ProIntel Core i9-12900HGeForce RTX 3060321TB$ 3,99955%28,52442.0137
259LPDYA00033TecraIntel i7-1260PNone16256GB$ 1,74924%17,23112.1136
260LPDYA00029TecraIntel i7-1260PNone16256GB$ 1,75024%17,23112.1136
558LPASU00565ExpertBook B5Intel Core i5-1135G7Intel Iris Xe G716256GB$ 1,19916%9,89110.6135
244LPLEN01849OBThinkPad X1 Nano EVOIntel Core i7-1160G7None16512GB$ 1,23417%9,17312.1134
185LPMSI00531TITAN GT77Intel i9-13980HXGeForce RTX 40901284TB$ 6,99993%47,99472.6133
523LPRAZ00054Razer Blade 14AMD Ryzen 9 6900HXGeForce RTX 3080Ti161TB$ 4,49959%24,88753.7132
514LPHEW01837OMEN 16AMD Ryzen 5 5600HRadeon 161TB$ 1,79923%17,09311.6130
593LPLEN02112ThinkBook 14s Yoga ITLIntel i5-1135G7Intel Iris Xe 8256GB$ 1,24916%9,89110.6130
595LPLEN02056IdeaPad Slim 7iIntel i5-1135G7Intel Iris Xe 8512GB$ 1,26016%9,89110.6129
559LPASU00564ExpertBook B1Intel Core i7-1165G7Intel Iris Xe G712512GB$ 1,39918%10,34712.1126
561LPASU00562ExpertBook B1Intel Core i7-1165G7Intel Iris Xe G712512GB$ 1,39918%10,34712.1126
499LPASU00651P1512CEAIntel Core i7-1165G7Intel Iris Xe 161TB$ 1,39918%10,34712.1126
500LPASU00650NoneIntel Core i7-1165G7Intel Iris Xe 161TB$ 1,39918%10,34712.1126
553LPGIG00125AERO 16 YE4Intel Core i9-12900HNVIDIA GeForce RTX 3080 Ti322TB$ 4,99963%28,52453.7125
280LPHEW02090ProBook 440Intel i7-1355UNone16512GB$ 1,79922%15,29412.1123
170LPASU00592Vivobook 15AMD Ryzen 3 3250UAMD Radeon 8128GB$ 4996%3,8553.7121
177LPASU00743Zenbook S 13 FlipIntel i7-1260PNone161TB$ 1,99924%17,23112.1119
511LPASU00623NoneAMD Ryzen 9 6900HXNVIDIA GeForce RTX 3080 Ti641TB$ 4,99959%24,88753.7119
214LPLEN03517OBThinkPad X1 Carbon EVOIntel i7-1365UNone32512GB$ 1,89922%15,45112.1117
327LPSAS00157Galaxy Book3 360 EVOIntel i7-1355UNone16512GB$ 1,89922%15,29412.1116
455LPMSI00528CreatorProIntel i7-12700HRTX A3000321TB$ 3,99946%26,42432.1115
598LPLEN01757ThinkBook 15 G2 ITLIntel Core i7-1165G7 Quad-core (4 Core) 2.80 GHzIntel UHD 16512 GB$ 1,54918%10,34712.1114
396LPLGE00035GramIntel i7-1360PIntel Iris Xe16512GB$ 2,30026%19,30912.1112
72LPLEN03517ThinkPad X1 Carbon EVOIntel i7-1365UNone32512GB$ 1,99922%15,45112.1111
437LPLEN03307ThinkPad T14 Gen 2Intel Core i5-1135G7MX450 2GB16256GB$ 1,59918%9,89112.6110
427LPLEN02684OB20UB0067USIntel Core i5-10210UNone16256 GB$ 93210%6,2286.4108
456LPMSI00527CreatorProIntel i7-12700HNVIDIA RTX A5500321TB$ 5,29957%26,42447.7107
328LPSAS00156Galaxy Book3 Pro 360 EVOIntel i7-1360PNone161TB$ 2,49926%19,30912.1103
568LPLEN02684ThinkPad X1 Yoga Gen 5Intel Core i5-10210UNone16256GB$ 98110%6,2286.4102
525LPSAS00116Galaxy Book ProIntel i7-1165G7Intel Iris Xe 8256GB$ 1,73018%10,34712.1102
529LPSAS00112Galaxy Book ProIntel i7-1165G7Iris Xe 8512GB$ 1,73018%10,34712.1102
471LPLEN03138Business NotebookIntel i5-1145G7Intel Iris Xe16512GB$ 1,60016%9,97010.6102
528LPSAS00113Galaxy Book ProIntel i5-1135G7Intel Iris Xe 8512GB$ 1,60016%9,89110.6101
527LPSAS00114Galaxy Book ProIntel i5-1135G7Iris Xe 8256GB$ 1,60016%9,89110.6101
277LPLEN03526NoneIntel i5-1335UNone16512GB$ 2,24923%16,92910.6100
536LPASU00591OBL510MA-DS09-CAIntel Celeron N4020Intel UHD 600464GB$ 2462%1,5561.599
597LPLEN0185820TA0025USIntel Core i7 i7-1165G7None8512 GB$ 1,80618%10,34712.198
436LPLEN03308ThinkPad T14 Gen 2Intel Core i5-1135G7MX450 2GB16256GB + 512GB$ 1,79918%9,89112.698
554LPLEN0274120W400K3USIntel i5-1145G7Intel Iris Xe16512GB$ 1,72116%9,97010.695
530LPSAS00111Galaxy Book ProIntel i7-1165G7Iris Xe 8512GB$ 1,87018%10,34712.194
174LPASU00591Vivobook GoIntel Celeron N4020Intel UHD 600464GB$ 2592%1,5561.594
526LPSAS00115Galaxy Book ProIntel i5-1135G7Intel Iris Xe 8512GB$ 1,73016%9,89110.694
221LPASU00762OBVivobook SlateIntel Pentium Silver Processor N6000Intel UHD 8128GB$ 5695%3,0893.490
340LPLEN03465ThinkPad X1 Yoga EVOIntel i5-1335UNone16256GB$ 2,53423%16,92910.689
505LPASU00590OBVivobook 14 FlipIntel Celeron N4500Intel UHD 4128GB$ 4744%2,0033.487
86LPASU00762Vivobook SlateIntel Pentium Silver Processor N6000Intel UHD 8128GB$ 5995%3,0893.486
62LPASU00590Vivobook 14 Flip NotebookIntel Celeron N4500Intel UHD 4128GB$ 4994%2,0033.483
594LPLEN02071ThinkPad X13 Yoga Gen 2Intel Core i5 (11th Gen) i5-1135G7 Quad-coreIntel Iris Xe 8256 GB$ 2,01916%9,89110.680
325LPLEN03478ThinkPad X1 Yoga Gen 8Intel i7-1355UNone16512 GB$ 2,88422%15,29412.177
596LPLEN0187020UN000AUSIntel Core i7-1160G7 EVO Quad-coreIntel Iris Xe 16256 GB$ 2,40017%9,17312.169
301LPLEN03495ThinkPad X13 YogaIntel i5-10310UNone16256GB$ 1,49910%6,4366.468
230LPASU00810Chromebook Flip C434Intel m3-8100YNone464GB Flash Memory$ 6995%2,8773.067
605LPASU00227Chromebook Flip C434Intel m3-8100YNone464GB Flash Memory$ 6995%2,8773.067
590LPLEN02299ThinkPad X13 Yoga Gen 2Intel Core i7 (11th Gen) i7-1165G7 Quad-coreIntel Iris Xe 16256GB$ 2,89218%10,34712.161
- - - - \ No newline at end of file diff --git a/PCData/data/computed/canada_computers_laptops_bench_0.7.csv b/PCData/data/computed/canada_computers_laptops_bench_0.7.csv deleted file mode 100644 index 39c0aba..0000000 --- a/PCData/data/computed/canada_computers_laptops_bench_0.7.csv +++ /dev/null @@ -1,576 +0,0 @@ -item_id,Model,CPU,GPU,RAM,Storage,price,bench,cpu_bench,gpu_bench,value -LPMSI00429OB,Katana GF66,Intel Core i7-11800H,RTX3060,16.0,512GB,786.48999847412,43.52891206982632,20753.0,42.0,553.4579225963122 -LPLEN03269OB,IdeaPad 3,AMD Ryzen 7 5825U,Integrated Radeon ,8.0,256GB,522.39,28.733647485066328,18458.0,13.2,550.0420659864532 -LPACE00912OB,Nitro 5,Intel Core i5-11400H,GTX 1650,8.0,256GB,526.39,28.54963837112222,15822.0,20.8,542.3666553529174 -LPLEN03269,IdeaPad 3,AMD Ryzen 7 5825U,Integrated Radeon ,8.0,256GB,549.88,28.733647485066328,18458.0,13.2,522.5439638660495 -LPHEW02076OB,Victus Gaming Notebook,AMD Ryzen 5 7640HS,GeForce RTX 4050,16.0,512GB,899.1,46.81335593057809,23390.0,41.9,520.6690682969424 -LPCOI00001OB,VOYAGER Gaming Notebook,AMD Ryzen 7 6800HS,Radeon 6800M,16.0,1TB,989.89,51.502581276598406,22947.0,54.6,520.2859032478195 -LPLEN03053OB,IdeaPad 5,AMD Ryzen 7 5825U,Integrated Radeon,8.0,512GB,552.78999023437,28.733647485066328,18458.0,13.2,519.793194389861 -LPGIG00147OB,G5 KF-E3US333SH,Intel i5-12500H,GeForce RTX 4060,8.0,512GB,899.1,46.27436786605087,21521.0,46.3,514.6743172733942 -LPLEN03430OB,IdeaPad Slim 3,AMD Ryzen 7 7730U,,8.0,512GB,569.89,29.195244155516576,18824.0,13.2,512.2961300517043 -LPHEW02095OB,Victus 15-fb1010ca,AMD Ryzen 5 7535HS,GeForce RTX 2050,8.0,512GB,629.1,32.02303709888067,18445.0,21.2,509.0293609741006 -LPGIG00135OB,AERO 16 XE4,Intel Core i7-12700H,GeForce RTX 3070 Ti,16.0,2TB,1079.1,54.89601410868566,26424.0,52.2,508.72036056607976 -LPLEN03097OB,IdeaPad 3,AMD Ryzen 5 5625U,AMD Radeon ,12.0,512GB,474.89,23.809657820595802,15078.0,11.6,501.3720613320096 -LPLEN03414OB,IdeaPad,Intel i3-1215U,Intel HD ,4.0,128GB,312.55,15.64901934420044,11032.0,4.2,500.6885088529976 -LPASU00720OB,G17,AMD Ryzen 9 7945HX,NVIDIA RTX 4060,16.0,1TB,1799.1,89.13223140495867,55503.0,46.3,495.42677674925613 -LPGIG00142OB,G5 KE-52US213SH,Intel i5-12500H,GeForce RTX 3060,16.0,512GB,899.89,44.49750836191865,21521.0,42.0,494.47719567856785 -LPLEN03053,IdeaPad 5,AMD Ryzen 7 5825U,Integrated Radeon,8.0,512GB,581.88000488281,28.733647485066328,18458.0,13.2,493.80709500154165 -LPASU00809OB,ROG Strix G16,Intel i9-13980HX,GeForce RTX 4060,16.0,1TB,1619.1,79.66193250219666,47994.0,46.3,492.0136650126408 -LPGIG00162OB,G5 KF,Intel i7-12650H,GeForce RTX 4060,16.0,512GB,989.1,48.49406770209577,23281.0,46.3,490.2847811353329 -LPACE00980OB,Nitro 5,AMD Ryzen 7 5800H,GeForce RTX 3060,16.0,512GB,899.1,44.004381864251854,21130.0,42.0,489.42700327273775 -LPMSI00572OB,Thin GF63,Intel i5-12450H,GeForce RTX 2050,8.0,512GB,629.1,30.775717134194068,17456.0,21.2,489.2023070130992 -LPASU00584OB,TUF Gaming Notebook,Ryzen 7 5800H,GeForce RTX 3060,16.0,512GB,899.89,44.004381864251854,21130.0,42.0,488.9973426113397 -LPHEW01653OB,15-ef1013dx,AMD Ryzen 7 4700U,AMD Radeon ,8.0,512GB,445.43999923706,21.751390699899627,13446.0,11.6,488.3124716494912 -LPLEN03430,IdeaPad Slim 3,AMD Ryzen 7 7730U,,8.0,512GB,599.88,29.195244155516576,18824.0,13.2,486.6847395398509 -LPGIG00160OB,G5 Gaming Notebook,Intel i5-12450H,GeForce RTX 4050,16.0,512GB,809.1,39.32943614245853,17456.0,41.9,486.0886928990055 -LPMSI00467OB,Crosshair 15,Intel Core i7-12700H,RTX3070Ti,16.0,512GB,1129.39,54.89601410868566,26424.0,52.2,486.06782518603546 -LPASU00719,G713PU-DS91-CA,AMD Ryzen 9 7945HX,RTX 4050,16.0,1TB,1799.0,87.31404958677686,55503.0,41.9,485.347690865908 -LPMSI00530OB,Katana GF66,Intel i5-11400H,GeForce RTX 3050,8.0,512GB,651.48999847412,31.318233412444542,15822.0,27.5,480.7170253694791 -LPLEN03414,IdeaPad,Intel i3-1215U,Intel HD ,4.0,128GB,329.0,15.64901934420044,11032.0,4.2,475.65408341034777 -LPACE00967OB,Nitro 5,Intel i9-12900H,GeForce RTX 4060,16.0,1TB,1169.1,55.10650306594997,28524.0,46.3,471.35833603583933 -LPHEW02076,Victus Gaming Notebook,AMD Ryzen 5 7640HS,GeForce RTX 4050,16.0,512GB,999.0,46.81335593057809,23390.0,41.9,468.6021614672482 -LPHEW02079,Victus 16,AMD Ryzen 7 7840HS,GeForce RTX 4060,16.0,1TB,1199.0,55.56431615713424,28887.0,46.3,463.4221531037051 -LPGIG00147,G5,Intel i5-12500H,GeForce RTX 4060,8.0,512GB,999.0,46.27436786605087,21521.0,46.3,463.2068855460548 -LPASU00666OB,Vivobook 16,AMD Ryzen 5 5600H,AMD Radeon ,8.0,512GB,569.05,26.35096189424948,17093.0,11.6,463.06935935769235 -LPLEN03469OB,Legion Pro 5i,Intel i7-13700HX,GeForce RTX 4060,16.0,512GB,1349.1,62.15152765921521,34110.0,46.3,460.6888122393834 -LPHEW02095,Victus 15-fb1010ca,AMD Ryzen 5 7535HS,GeForce RTX 2050,8.0,512GB,699.0,32.02303709888067,18445.0,21.2,458.1264248766905 -LPMSI00541OB,Thin GF63,Intel i7-12650H,GeForce RTX 3050,16.0,512GB,899.1,40.725472660773455,23281.0,27.5,452.95820999636805 -LPACE00877OB,Nitro 5,Intel i7-11800H,NVIDIA GeForce RTX3060,16.0,512GB,961.08999023437,43.52891206982632,20753.0,42.0,452.9119282494184 -LPASU00716OB,FX507ZC4-DS71-CA,Intel i7-12700H,NVIDIA RTX 3050,16.0,512GB,989.1,44.689402538437726,26424.0,27.5,451.8188508587375 -LPHEW02100OB,15-fd0030ca,Intel i5-1340P,,16.0,512GB,664.05,29.861310452580703,20204.0,10.6,449.6846691149869 -LPLEN03434OB,,AMD Ryzen 7 7745HX,GeForce RTX 4060,16.0,512GB,1349.1,60.636834759732295,32909.0,46.3,449.46137988090055 -LPMSI00559OB,Thin GF63,Intel i7-12650H,GeForce RTX 4060,16.0,512GB,1079.1,48.49406770209577,23281.0,46.3,449.3936400898506 -LPASU00720,G713PV-DS91-CA,AMD Ryzen 9 7945HX,NVIDIA RTX 4060,16.0,1TB,1999.0,89.13223140495867,55503.0,46.3,445.8840990743305 -LPASU00809,G614JV-DB91-CA,Intel i9-13980HX,GeForce RTX 4060,16.0,1TB,1799.0,79.66193250219666,47994.0,46.3,442.8122985113767 -LPCNO00060OB,ZenBook,AMD Ryzen 7 5700U,GeForce MX450,8.0,256GB,569.89,25.201566797893282,15854.0,12.6,442.2180911736174 -LPGIG00162,G5 KF,Intel i7-12650H,GeForce RTX 4060,16.0,512GB,1099.0,48.49406770209577,23281.0,46.3,441.25630302179957 -LPACE00980,Nitro 5,AMD Ryzen 7 5800H,GeForce RTX 3060,16.0,512GB,999.0,44.004381864251854,21130.0,42.0,440.484302945464 -LPMSI00572,Thin GF63,Intel i5-12450H,GeForce RTX 2050,8.0,512GB,699.0,30.775717134194068,17456.0,21.2,440.28207631178924 -LPASU00666,Vivobook 16,AMD Ryzen 5 5600H,AMD Radeon ,8.0,512GB,599.0,26.35096189424948,17093.0,11.6,439.9158913898077 -LPMSI00562OB,Modern 15,AMD Ryzen 7 7730U,AMD Radeon ,16.0,512GB,664.05,29.195244155516576,18824.0,13.2,439.6543054817646 -LPHEW02017OB,Pavilion,Intel i5-1240P,Intel Iris Xe,8.0,512GB,599.34000854492,26.224029584879858,17320.0,10.6,437.54845681913775 -LPACE00816,Nitro,Intel i5-11400H,NVIDIA GeForce RTX 3050,8.0,512GB,715.88,31.318233412444542,15822.0,27.5,437.4788150590119 -LPMSI00496OB,GF63 11UC-692,Intel i5-11400H,NVIDIA RTX3050,8.0,512GB,719.1,31.318233412444542,15822.0,27.5,435.5198638915942 -LPASU00688OB,TUF Gaming F15,Intel Core i9-13900H,GeForce RTX 4050,16.0,512GB,1259.1,54.75508880988191,29687.0,41.9,434.87482177652225 -LPHEW02087OB,Victus 15-fb0000ca,AMD Ryzen 5 5600H,GeForce RTX 3050 Ti,16.0,512GB,764.1,33.21046602648089,17093.0,28.2,434.6350742897643 -LPACE00953,Nitro Gaming Notebook ,AMD Ryzen R5-7535HS,GeForce RTX 3050,8.0,512GB,799.0,34.626342884004636,18445.0,27.5,433.3709997998077 -LPHEW01811OB,Pavilion 15-eh2010ca,AMD Ryzen 5 5625U,AMD Radeon ,8.0,512GB,553.74000610352,23.809657820595802,15078.0,11.6,429.9790074431548 -LPLEN03442OB,IdeaPad Flex 5,AMD Ryzen 3 5300U,,4.0,128GB,360.05,15.394247917207363,9716.0,7.6,427.5586145592935 -LPHEW02100,15-fd0030ca,Intel i5-1340P,,16.0,512GB,699.0,29.861310452580703,20204.0,10.6,427.2004356592375 -LPCNO00053OB,15Z-EF2000,AMD Ryzen 5 5500U,AMD Radeon Vega 7,8.0,256GB,501.49000038147,21.370510387123744,13144.0,11.6,426.14030929565433 -LPHEW02058,Victus 15-fa1000ca,Intel i5-13500H,GeForce RTX 4050,16.0,512GB,1099.0,46.68597542862325,23289.0,41.9,424.8041440275091 -LPACE00967,Nitro 5,Intel i9-12900H,GeForce RTX 4060,16.0,1TB,1299.0,55.10650306594997,28524.0,46.3,424.2225024322554 -LPHEW01865OB,Omen 16-b0020ca,Intel Core i7-11800H,NVIDIA GeForce RTX 3070,16.0,1TB,1091.5900007629,46.00825091280153,20753.0,48.0,421.4792264554171 -LPASU00808OB,TUF Gaming F15,Intel i7-11800H,GeForce RTX 3050 Ti,16.0,1TB,899.1,37.82643273098334,20753.0,28.2,420.71441142234835 -LPASU00573OB,Vivobook 15,AMD Ryzen 5 5500U,AMD Radeon ,8.0,512GB,508.14,21.370510387123744,13144.0,11.6,420.56343502034366 -LPCNO00060,ZenBook,AMD Ryzen 7 5700U,GeForce MX450,8.0,256GB,599.88,25.201566797893282,15854.0,12.6,420.1101353252864 -LPASU00715OB,TUF F15,Intel i9-13900H,GeForce RTX 4060,16.0,1TB,1349.1,56.573270628063746,29687.0,46.3,419.34082446122414 -LPHEW02072OB,ProBook 445 G9,AMD Ryzen 5 5625U,,8.0,256GB,569.05,23.809657820595802,15078.0,11.6,418.4106461751306 -LPMSI00562,Modern 15 Notebook,AMD Ryzen 7 7730U,AMD Radeon ,16.0,512GB,699.0,29.195244155516576,18824.0,13.2,417.67159020767633 -LPHEW02035OB,Omen 16-wd0010ca,Intel i7-13620H,GeForce RTX 4060,16.0,1TB,1259.1,52.53997513052306,26489.0,46.3,417.2819881703047 -LPACE00968OB,Nitro 5,Intel i5-12450H,GeForce RTX 4060,16.0,512GB,989.1,41.14761796064036,17456.0,46.3,416.0106961949283 -LPHEW02017,15-EG2002CA,Intel i5-1240P,Intel Iris Xe,8.0,512GB,630.88000488281,26.224029584879858,17320.0,10.6,415.6738108977022 -LPGIG00133OB,A5 K1,AMD Ryzen 5 5600H,GeForce RTX 3060,16.0,512GB,936.79000152588,38.912945365323864,17093.0,42.0,415.3860022197178 -LPLEN03469,Legion Pro 5i,Intel i7-13700HX,GeForce RTX 4060,16.0,512GB,1499.0,62.15152765921521,34110.0,46.3,414.61993101544505 -LPMSI00504OB,GP66 Leopard,Intel Core i7-11800H,NVIDIA RTX3070,16.0,512GB,1114.0900007629,46.00825091280153,20753.0,48.0,412.96709315491813 -LPLEN03438OB,Legion Pro 5,AMD Ryzen 7 7745HX,GeForce RTX 4070,16.0,512GB,1529.1,62.86823971840999,32909.0,51.7,411.14537779353867 -LPACE00896OB,A715,AMD Ryzen 7 5700U,RTX3050,16.0,512GB,764.1,31.358591591281716,15854.0,27.5,410.39905236594313 -LPACE00969,Nitro 5,Intel i5-11400H,GeForce GTX 1650,8.0,512GB,699.0,28.54963837112222,15822.0,20.8,408.4354559531076 -LPMSI00541,Thin GF63,Intel i7-12650H,GeForce RTX 3050,16.0,512GB,999.0,40.725472660773455,23281.0,27.5,407.6623889967313 -LPACE00877,Nitro 5,Intel i7-11800H,NVIDIA GeForce RTX3060,16.0,512GB,1067.8800048828,43.52891206982632,20753.0,42.0,407.6198811738555 -LPGIG00124OB,AERO 16 XE5,Intel Core i7-12700H,NVIDIA GeForce RTX 3070 Ti,32.0,2 TB,1349.89,54.89601410868566,26424.0,52.2,406.6702776425165 -LPASU00716,TUF F15,Intel i7-12700H,RTX 3050,16.0,512GB,1099.0,44.689402538437726,26424.0,27.5,406.63696577286373 -LPLEN03442,IdeaPad Flex 5,AMD Ryzen 3 5300U,,4.0,128GB,379.0,15.394247917207363,9716.0,7.6,406.1806838313288 -LPHEW01773OB,15-eg1010ca, Intel Core i5-1155G7,Intel Iris Xe ,8.0,512GB,427.39,17.34270785452294,10278.0,10.6,405.7817884022308 -LPCNO00053,15Z-EF2000,AMD Ryzen 5 5500U,AMD Radeon Vega 7,8.0,256GB,527.88,21.370510387123744,13144.0,11.6,404.8365232083758 -LPLEN03434,Legion Pro 5,AMD Ryzen 7 7745HX,GeForce RTX 4060,16.0,512GB,1499.0,60.636834759732295,32909.0,46.3,404.51524189281054 -LPMSI00559,Thin GF63,Intel i7-12650H,GeForce RTX 4060,16.0,512GB,1199.0,48.49406770209577,23281.0,46.3,404.4542760808655 -LPASU00573,Vivobook 15,AMD Ryzen 5 5500U,AMD Radeon ,8.0,512GB,534.88,21.370510387123744,13144.0,11.6,399.53840837428476 -LPASU00785OB,FX706HF-DB51-CA,Intel i5-11400H,GeForce RTX 2050,8.0,512GB,719.1,28.714927627320574,15822.0,21.2,399.31758625115526 -LPHEW02072,ProBook 445 G9,AMD Ryzen 5 5625U,,8.0,256GB,599.0,23.809657820595802,15078.0,11.6,397.49011386637403 -LPASU00658OB,ZenBook 14,AMD Ryzen 5 5600H,AMD Radeon Vega 7,8.0,512GB,664.05,26.35096189424948,17093.0,11.6,396.8219545854903 -LPLEN03565OB,,Ryzen 7 7745HX,GeForce RTX 4060,16.0,1TB,1529.1,60.636834759732295,32909.0,46.3,396.55244758179515 -LPMSI00564OB,Bravo 15,AMD Ryzen 7 7735HS,GeForce RTX 4060,32.0,1TB,1259.1,49.733820508250396,24264.0,46.3,394.99500046263523 -LPACE00985OB,Swift 3 EVO,Intel i5-1240P,,16.0,512GB,664.05,26.224029584879858,17320.0,10.6,394.9104673575764 -LPGIG00149OB,ASF-B3US754SH,Intel i9-13900HX,GeForce RTX 4070,16.0,1TB,1979.89,78.08831791238148,44977.0,51.7,394.4073555216779 -LPASU00787,FX506HCB-DB59-CA,Intel i5-11400H,GeForce RTX 3050,8.0,512GB,799.0,31.318233412444542,15822.0,27.5,391.9678775024348 -LPMSI00496,GF63,Intel i5-11400H,RTX3050,8.0,512GB,799.0,31.318233412444542,15822.0,27.5,391.9678775024348 -LPASU00688,TUF Gaming F15,Intel Core i9-13900H,GeForce RTX 4050,16.0,512GB,1399.0,54.75508880988191,29687.0,41.9,391.38733959887 -LPHEW02087,Victus 15-fb0000ca,AMD Ryzen 5 5600H,GeForce RTX 3050 Ti,16.0,512GB,849.0,33.21046602648089,17093.0,28.2,391.17156686078783 -LPLEN03433OB,Legion Pro 5,AMD Ryzen 7 7745HX,GeForce RTX 4070,16.0,1TB,1619.1,62.86823971840999,32909.0,51.7,388.2912711902291 -LPLEN03000OB,IdeaPad Flex 5,AMD Ryzen 5 5500U,AMD Radeon ,8.0,512GB,554.69000305176,21.370510387123744,13144.0,11.6,385.2694346310328 -LPMSI00539OB,Katana 15,Intel i7-12650H,GeForce RTX 4060,16.0,1TB,1259.1,48.49406770209577,23281.0,46.3,385.14865937650524 -LPACE00956OB,Nitro 5,Intel i7-12650H,GeForce RTX 4060,16.0,512GB,1259.1,48.49406770209577,23281.0,46.3,385.14865937650524 -LPLEN03435OB,Legion Pro 5,Intel i7-13700HX,GeForce RTX 4060,16.0,1TB,1619.1,62.15152765921521,34110.0,46.3,383.86466345015884 -LPMSI00560OB,Thin GF63,Intel i5-12450H,GeForce RTX 4060,16.0,512GB,1079.1,41.14761796064036,17456.0,46.3,381.3142244522321 -LPASU00808,TUF Gaming F15,Intel i7-11800H,GeForce RTX 3050 Ti,16.0,1TB,999.0,37.82643273098334,20753.0,28.2,378.64297028011356 -LPASU00715,TUF F15,Intel i9-13900H,GeForce RTX 4060,16.0,1TB,1499.0,56.573270628063746,29687.0,46.3,377.4067420151017 -LPGIG00152OB,AORUS 15,Intel Core i7-13700H,GeForce RTX 4060,16.0,1TB,1439.1,54.30690664773834,27890.0,46.3,377.3671506339959 -LPMSI00445OB,Modern 15,Intel Core i5-1155G7,Intel Iris Xe,8.0,256GB,459.69000305176,17.34270785452294,10278.0,10.6,377.2696325651918 -LPHEW01929OB,ProBook 440 G9,Intel Core i5-1235U,,8.0,256GB,569.05,21.464286868269944,13546.0,10.6,377.19509477673216 -LPASU00658,ZenBook 14,AMD Ryzen 5 5600H,AMD Radeon Vega 7,8.0,512GB,699.0,26.35096189424948,17093.0,11.6,376.9808568562158 -LPASU00686OB,TUF Gaming Notebook,AMD Ryzen 7 7735HS,AMD Radeon RX 7600S,16.0,1TB,1349.1,50.80820067353966,24264.0,48.9,376.6081141022879 -LPHEW02035,Omen 16-wd0010ca,Intel i7-13620H,GeForce RTX 4060,16.0,1TB,1399.0,52.53997513052306,26489.0,46.3,375.5537893532742 -LPLEN03352OB,ThinkBook 15 G3,AMD Ryzen 5 5500U,AMD Radeon ,8.0,256GB,569.05,21.370510387123744,13144.0,11.6,375.5471467731086 -LPACE00985,Swift 3 EVO,Intel i5-1240P,,16.0,512GB,699.0,26.224029584879858,17320.0,10.6,375.1649439896975 -LPACE00968,Nitro 5,Intel i5-12450H,GeForce RTX 4060,16.0,512GB,1099.0,41.14761796064036,17456.0,46.3,374.4096265754355 -LPACE00851OB,TravelMate P2,Intel Core i5-1135G7,Intel HD ,8.0,256GB,379.89,14.20999803003724,9891.0,4.2,374.05559583135226 -LPLEN03438,Legion Pro 5,AMD Ryzen 7 7745HX,GeForce RTX 4070,16.0,512GB,1699.0,62.86823971840999,32909.0,51.7,370.0308400141848 -LPCNO00033OB,F415EA-UB51,Intel Core i5-1135G7,Intel Iris Xe ,8.0,256GB,455.89,16.854626129210796,9891.0,10.6,369.7081780519598 -LPACE00896,A715,AMD Ryzen 7 5700U,RTX3050,16.0,512GB,849.0,31.358591591281716,15854.0,27.5,369.35914712934886 -LPLEN03431,IdeaPad Slim 5,Intel i5-1335U,Intel Iris Xe,8.0,512GB,699.99,25.730903087213065,16929.0,10.6,367.58958109705947 -LPLEN03000,IdeaPad Flex 5,AMD Ryzen 5 5500U,AMD Radeon ,8.0,512GB,583.88,21.370510387123744,13144.0,11.6,366.0086042872464 -LPACE00946OB,,Intel i5-1135G7,Intel Iris,8.0,512GB,462.53999389648,16.854626129210796,9891.0,10.6,364.3928384922102 -LPASU00685OB,VivoBook,Intel Core i3-1115G4,Intel UHD ,4.0,128GB,284.05,10.295619490748994,6132.0,6.2,362.4580000263684 -LPACE00940,Nitro,Intel i7-12700H,GeForce RTX 3060,16.0,512GB,1399.0,50.68113807562782,26424.0,42.0,362.2668911767535 -LPHEW02028OB,15-fc0040ca,AMD Ryzen 7 7730U,AMD Radeon ,16.0,1TB,806.55,29.195244155516576,18824.0,13.2,361.97686635071074 -LPASU00784OB,Vivobook 15,AMD Ryzen 7 7730U,,16.0,512GB,806.55,29.195244155516576,18824.0,13.2,361.97686635071074 -LPACE00981OB,Aspire 5,AMD Ryzen 3 5300U,,8.0,256GB,426.55,15.394247917207363,9716.0,7.6,360.9013695277778 -LPASU00717OB,G614JJ-DS71-CA,Intel i7-13650HX,RTX 3050,16.0,1TB,1439.1,51.91351655029295,32152.0,27.5,360.7359915940029 -LPLEN02908,14 G4 ABA,AMD Ryzen 7 5825U,,16.0,512 GB,799.0,28.733647485066328,18458.0,13.2,359.62011871171876 -LPASU00785,TUF Gaming Notebook,Intel i5-11400H,GeForce RTX 2050,8.0,512GB,799.0,28.714927627320574,15822.0,21.2,359.3858276260397 -LPMSI00445,Modern 15 A11MU-863CA,Intel Core i5-1155G7,Intel Iris Xe,8.0,256GB,483.88,17.34270785452294,10278.0,10.6,358.40927202039643 -LPHEW01929,ProBook 440 G9,Intel Core i5-1235U,,8.0,256GB,599.0,21.464286868269944,13546.0,10.6,358.33534003789555 -LPLEN03130OB,,AMD Ryzen 5 5625U,AMD Radeon ,12.0,512GB,664.89,23.809657820595802,15078.0,11.6,358.09920168141804 -LPASU00760OB,Vivobook 16X,Intel i9-13900H,Geforce RTX 4050,16.0,512GB,1529.1,54.75508880988191,29687.0,41.9,358.0870368836696 -LPLEN03565,Legion Pro 5 16ARX8,Ryzen 7 7745HX,GeForce RTX 4060,16.0,1TB,1699.0,60.636834759732295,32909.0,46.3,356.8972028236156 -LPLEN03352,ThinkBook 15 G3,AMD Ryzen 5 5500U,AMD Radeon ,8.0,256GB,599.0,21.370510387123744,13144.0,11.6,356.7697894344531 -LPACE00888OB,TravelMate P2,Intel Core i5-1135G7,Intel Iris Xe ,8.0,256GB,474.05,16.854626129210796,9891.0,10.6,355.5453249490728 -LPMSI00564,Bravo 15,AMD Ryzen 7 7735HS,GeForce RTX 4060,32.0,1TB,1399.0,49.733820508250396,24264.0,46.3,355.49550041637167 -LPGIG00149,,Intel i9-13900HX,GeForce RTX 4070,16.0,1TB,2199.88,78.08831791238148,44977.0,51.7,354.9662613978103 -LPCNO00048OB,VivoBook R,Intel Core i5-1135G7,Intel Iris Xe ,8.0,256GB,474.89,16.854626129210796,9891.0,10.6,354.91642547138906 -LPHUA00040OB,MateBook D15,Intel i5-1135G7,Intel Iris Xe ,8.0,512GB,474.89,16.854626129210796,9891.0,10.6,354.91642547138906 -LPMSI00536OB,Katana GF66,Intel i7-12650H,GeForce RTX 3050 Ti,16.0,512GB,1159.0899978638,41.01472885912057,23281.0,28.2,353.85284088992756 -LPLEN03390OB,ThinkPad T14 G3,Ryzen 5 Pro 6650U,AMD Radeon 660M,16.0,256GB,759.05,26.74734133200752,16752.0,13.6,352.3791757065743 -LPASU00627OB,TUF507RR-DS71-CA,AMD Ryzen 7 6800H,GeForce RTX 3070,16.0,512GB,1412.0600000763,49.66697206300962,23654.0,48.0,351.73414770141414 -LPLEN03433,Legion Pro 5,AMD Ryzen 7 7745HX,GeForce RTX 4070,16.0,1TB,1799.0,62.86823971840999,32909.0,51.7,349.4621440712062 -LPASU00786OB,Vivobook 16X,Intel i5-1235U,,8.0,512GB,616.55,21.464286868269944,13546.0,10.6,348.13538023307024 -LPHEW02024OB,Consumer Notebook 17,Intel i5-1335U,Intel Iris Xe,8.0,1TB,739.94001464844,25.730903087213065,16929.0,10.6,347.74309508640806 -LPLEN03086OB,Legion 5,Intel i7-12700H,GeForce RTX 3070,16.0,512GB,1529.89,53.16047691860302,26424.0,48.0,347.47907966326346 -LPLEN03437OB,Legion Pro 5,Intel i9-13900HX,GeForce RTX 4070,16.0,512GB,2249.1,78.08831791238148,44977.0,51.7,347.1980699496754 -LPACE00956,Nitro 5,Intel i7-12650H,GeForce RTX 4060,16.0,512GB,1399.0,48.49406770209577,23281.0,46.3,346.6337934388547 -LPMSI00539,Katana 15,Intel i7-12650H,GeForce RTX 4060,16.0,1TB,1399.0,48.49406770209577,23281.0,46.3,346.6337934388547 -LPACE00946,,Intel i5-1135G7,Intel Iris,8.0,512GB,486.88,16.854626129210796,9891.0,10.6,346.1761856969026 -LPMSI00540OB,Thin GF63,Intel i7-12650H,GeForce RTX 4050,16.0,512GB,1349.1,46.67588588391395,23281.0,41.9,345.97795481368286 -LPLEN03435,Legion Pro 5,Intel i7-13700HX,GeForce RTX 4060,16.0,1TB,1799.0,62.15152765921521,34110.0,46.3,345.47819710514295 -LPASU00685,VivoBook F415EA-AS31,Intel Core i3-1115G4,Intel UHD ,4.0,128GB,299.0,10.295619490748994,6132.0,6.2,344.33510002504994 -LPASU00783OB,Zenbook 14 OLED,AMD Ryzen 7 5825U,,16.0,512GB,834.93999938965,28.733647485066328,18458.0,13.2,344.1402676368473 -LPASU00784,Vivobook 15 OLED,AMD Ryzen 7 7730U,,16.0,512GB,849.0,29.195244155516576,18824.0,13.2,343.8780230331752 -LPHEW02028,15-fc0040ca,AMD Ryzen 7 7730U,AMD Radeon ,16.0,1TB,849.0,29.195244155516576,18824.0,13.2,343.8780230331752 -LPMSI00560,Thin GF63,Intel i5-12450H,GeForce RTX 4060,16.0,512GB,1199.0,41.14761796064036,17456.0,46.3,343.18280200700883 -LPACE00981,Aspire 5,AMD Ryzen 3 5300U,,8.0,256GB,449.0,15.394247917207363,9716.0,7.6,342.8563010513889 -LPASU00556,G17,AMD Ryzen 7 4800H,NVIDIA GeForce RTX 3060,16.0,1TB,1196.88,40.880406583636386,18653.0,42.0,341.55810593907813 -LPLEN02956,ThinkBook 14 G4 ABA,AMD Ryzen 5 5625U,,16.0,256GB,699.0,23.809657820595802,15078.0,11.6,340.6245754019428 -LPLEN03130,Consumer Laptop,AMD Ryzen 5 5625U,AMD Radeon ,12.0,512GB,699.88,23.809657820595802,15078.0,11.6,340.1962882293508 -LPGIG00152,AORUS 15,Intel Core i7-13700H,GeForce RTX 4060,16.0,1TB,1599.0,54.30690664773834,27890.0,46.3,339.63043557059626 -LPHEW02099OB,17-cn3020ca,Intel i5-1335U,,16.0,512GB,759.05,25.730903087213065,16929.0,10.6,338.98824961745686 -LPASU00686,TUF Gaming Notebook,AMD Ryzen 7 7735HS,AMD Radeon RX 7600S,16.0,1TB,1499.0,50.80820067353966,24264.0,48.9,338.9473026920591 -LPMSI00593OB,Katana 17,Intel i7-13620H,GeForce RTX 4070,16.0,1TB,1619.1,54.77138008920075,26489.0,51.7,338.28287375208913 -LPHEW01913OB,15-DY2067MS,Intel Core i5-1135G7,Intel Iris X ,12.0,256GB,498.64,16.854626129210796,9891.0,10.6,338.0119149929969 -LPACE00888,TravelMate P2,Intel Core i5-1135G7,,8.0,256 GB,499.0,16.854626129210796,9891.0,10.6,337.76805870161917 -LPLEN03001OB,82RG006WCC (Open Box),AMD Ryzen 7 6800H,GeForce RTX 3060,16.0,1TB,1397.5899969482,47.18763322003442,23654.0,42.0,337.63573954503175 -LPHUA00040,MateBook D15,Intel i5-1135G7,Intel Iris Xe ,8.0,512GB,499.88,16.854626129210796,9891.0,10.6,337.1734442108265 -LPMSI00575OB,Modern 15,Intel i7-1255U,Intel Iris Xe,16.0,512GB,664.05,22.369151217051332,13772.0,12.1,336.8594415639083 -LPLEN03390,21CF000CUS,Ryzen 5 Pro 6650U,AMD Radeon 660M,16.0,256GB,799.0,26.74734133200752,16752.0,13.6,334.76021692124556 -LPASU00735OB,Vivobook 16X,Intel i5-12500H,Iris Xe ,16.0,512GB,944.18999938965,31.52230175034839,21521.0,10.6,333.85549275808114 -LPMSI00565OB,Bravo 15,AMD Ryzen 7 7735HS,GeForce RTX 4050,16.0,1TB,1439.1,47.915638690068576,24264.0,41.9,332.9555881458451 -LPASU00786,Vivobook 16X,Intel i5-1235U,,8.0,512GB,649.0,21.464286868269944,13546.0,10.6,330.7286112214167 -LPHEW02024,Consumer Notebook,Intel i5-1335U,Intel Iris Xe,8.0,1TB,778.88000488281,25.730903087213065,16929.0,10.6,330.35773066333275 -LPGIG00157OB,AERO 14 OLED,Intel i5-12500H,RTX 4050,16.0,1TB,1349.1,44.45618604786905,21521.0,41.9,329.5247650127422 -LPASU00625OB,G15,AMD Ryzen 9 6900HX,GeForce RTX 3070 Ti,16.0,1TB,1619.89,52.95756033141237,24887.0,52.2,326.92071888469195 -LPMSI00580OB,Pulse 17,Intel i9-13900H,GeForce RTX 4070,16.0,1TB,1799.1,58.804675586741425,29687.0,51.7,326.85607018365533 -LPHEW01733,16-c0010ca,AMD Ryzen 7 5800H,NVIDIA GeForce RTX 3050 Ti,16.0,1TB,1172.88,38.30190252540887,21130.0,28.2,326.56284125749323 -LPLEN03436OB,Legion Pro 5,Intel i7-13700HX,GeForce RTX 4070,16.0,1TB,1979.1,64.38293261789289,34110.0,51.7,325.31419644228635 -LPASU00583OB,TUF Gaming Notebook,Ryzen 5 4600H,GeForce GTX 1650,8.0,512GB,827.89000091553,26.913870935127772,14525.0,20.8,325.08993834162527 -LPLEN03611,21KJ000EUS,AMD Ryzen 7 7730U Octa-core (8 Core),,16.0,512 GB,899.0,29.195244155516576,18824.0,13.2,324.7524377699285 -LPASU00717,G614JJ-DS71-CA,Intel i7-13650HX,RTX 3050,16.0,1TB,1599.0,51.91351655029295,32152.0,27.5,324.6623924346025 -LPACE00984OB,Aspire 3,Intel i5-1235U,,16.0,512GB,664.05,21.464286868269944,13546.0,10.6,323.23299251968893 -LPLEN03456OB,IdeaPad,Intel i5-1135G7,,8.0,512GB,521.55,16.854626129210796,9891.0,10.6,323.164147813456 -LPASU00500OB,ExpertBook B1,Intel i5 1135G7,,8.0,256GB,521.55,16.854626129210796,9891.0,10.6,323.164147813456 -LPMSI00561,Bravo 15,AMD Ryzen 7 7735HS,GeForce RTX 3050,16.0,512GB,1299.0,41.96522546692808,24264.0,27.5,323.0579327708089 -LPLEN03212OB,IdeaPad 5,Intel Core i5-1235U,Intel Iris Xe,8.0,512GB,664.89,21.464286868269944,13546.0,10.6,322.8246306647708 -LPASU00760,Vivobook 16X,Intel i9-13900H,GeForce RTX 4050,16.0,512GB,1699.0,54.75508880988191,29687.0,41.9,322.27833319530265 -LPACE00960,PH16-71-72YG,Intel i7-13700HX,GeForce RTX 4070,16.0,1TB,1999.0,64.38293261789289,34110.0,51.7,322.07570093993445 -LPHEW02099,17-cn3020ca,Intel i5-1335U,,16.0,512GB,799.0,25.730903087213065,16929.0,10.6,322.03883713658405 -LPLEN03569OB,V14,Ryzen 5 5500U,,16.0,512GB,664.05,21.370510387123744,13144.0,11.6,321.8208024564979 -LPMSI00575,Modern 15,Intel i7-1255U,Intel Iris Xe,16.0,512GB,699.0,22.369151217051332,13772.0,12.1,320.0164694857129 -LPLEN03432OB,IdeaPad Flex 5,AMD Ryzen 5 7530U,,16.0,512GB,806.55,25.611902744293623,16507.0,11.6,317.5488530691665 -LPACE00955,NH.QLZAA.005,Intel i5-12500H,GeForce RTX 4050,8.0,512GB,1399.99,44.45618604786905,21521.0,41.9,317.54645424516644 -LPASU00735,Vivobook 16X,Intel i5-12500H,Iris Xe ,16.0,512GB,993.87999725342,31.52230175034839,21521.0,10.6,317.1640624367131 -LPMSI00543,Katana GF76,Intel i7-11800H,GeForce RTX 3050 Ti,16.0,512GB,1199.0,37.82643273098334,20753.0,28.2,315.48317540436483 -LPMSI00553OB,Vector GP68HX,Intel i9-12900HX,GeForce RTX 4080,32.0,1TB,2249.1,70.88048475676172,34937.0,64.9,315.1504368714674 -LPGIG00148OB,AORUS Gaming Notebook,Intel i7-13700H,GeForce RTX 4070,16.0,1TB,1799.1,56.53831160641604,27890.0,51.7,314.2588605770443 -LPASU00782OB,Vivobook Go,AMD Ryzen 3 7320U,,8.0,128GB,426.55,13.334802988089542,9066.0,4.6,312.6199270446499 -LPLEN03685OB,IdeaPad Slim 3 15AMN8,AMD Ryzen 3 7320U,,8.0,256GB,426.55,13.334802988089542,9066.0,4.6,312.6199270446499 -LPLEN03437,,Intel i9-13900HX,GeForce RTX 4070,16.0,512GB,2499.0,78.08831791238148,44977.0,51.7,312.4782629547079 -LPMSI00540,Thin GF63,Intel i7-12650H,GeForce RTX 4050,16.0,512GB,1499.0,46.67588588391395,23281.0,41.9,311.3801593323145 -LPASU00779OB,Zenbook 14X OLED,Intel i7-12700H,Intel Iris Xe,16.0,1TB,1234.05,38.32576617480136,26424.0,12.1,310.5689897070732 -LPHUA00042OB,Matebook D14,Intel i7-1360P,,16.0,1TB,949.05,29.352377348972126,19309.0,12.1,309.28167482189696 -LPGIG00141OB,AORUS 17,Intel i7-12700H,GeForce RTX 3080 Ti,32.0,1TB,1799.1,55.51584881942947,26424.0,53.7,308.5756701652464 -LPASU00721OB,G733PZ-XS96,AMD Ryzen 9 7945HX,RTX 4080,32.0,1TB,3149.1,96.81818181818183,55503.0,64.9,307.44714940199367 -LPGIG00154OB,AERO 14,Intel Core i7-13700H,GeForce RTX 4050,16.0,1TB,1709.1,52.488724829556524,27890.0,41.9,307.11324574077895 -LPACE00984,Aspire 3,Intel i5-1235U,,16.0,512GB,699.0,21.464286868269944,13546.0,10.6,307.07134289370447 -LPASU00500,ExpertBook B1,Intel i5 1135G7,,8.0,256GB,549.0,16.854626129210796,9891.0,10.6,307.00594042278317 -LPLEN03456,IdeaPad,Intel i5-1135G7,,8.0,512GB,549.0,16.854626129210796,9891.0,10.6,307.00594042278317 -LPLEN02719OB,T470,Intel Core i5-6300U,Intel HD 620,8.0,256 GB,262.69000019073,8.053207756024804,3240.0,9.6,306.5669705804428 -LPLEN03569,V14,Ryzen 5 5500U,,16.0,512GB,699.0,21.370510387123744,13144.0,11.6,305.72976233367297 -LPMSI00563OB,Modern 15,Intel i5-1155G7,Intel Iris Xe,16.0,512GB,569.05,17.34270785452294,10278.0,10.6,304.76597582853776 -LPMSI00593,Katana 17,Intel i7-13620H,GeForce RTX 4070,16.0,1TB,1799.0,54.77138008920075,26489.0,51.7,304.45458637688023 -LPMSI00581,Modern 15,AMD Ryzen 5-7530U,,16.0,512GB,849.0,25.611902744293623,16507.0,11.6,301.6714104157082 -LPLEN03432,,AMD Ryzen 5 7530U,,16.0,512GB,849.0,25.611902744293623,16507.0,11.6,301.6714104157082 -LPHEW01967OB,ProBook 440 G9,Intel i5-1235U,,16.0,256GB,711.55,21.464286868269944,13546.0,10.6,301.65535616990996 -LPMSI00565,Bravo 15,AMD Ryzen 7 7735HS,GeForce RTX 4050,16.0,1TB,1599.0,47.915638690068576,24264.0,41.9,299.6600293312606 -LPCNO00052OB,VivoBook F515,Intel Core i7-1165G7,Intel Iris Xe ,8.0,512GB,603.14,18.049564888384413,10347.0,12.1,299.25995437849275 -LPGIG00151,BSF-73US754SH,Intel i7-13700H,GeForce RTX 4070,16.0,1TB,1899.0,56.53831160641604,27890.0,51.7,297.7267593808112 -LPHEW01543OB,Notebook,AMD Ryzen 7 5700U,AMD Radeon ,16.0,1TB,854.89,25.449500682190806,15854.0,13.2,297.6932784591094 -LPLEN03685,IdeaPad Slim 3 15AMN8,AMD Ryzen 3 7320U,,8.0,256GB,449.0,13.334802988089542,9066.0,4.6,296.98893069241745 -LPASU00782,Vivobook Go,AMD Ryzen 3 7320U,,8.0,128GB,449.0,13.334802988089542,9066.0,4.6,296.98893069241745 -LPCNO00061OB,F1500EA-WB51,Intel i5-1135G7,,8.0,256GB,568.05999832153,16.854626129210796,9891.0,10.6,296.70503430996456 -LPGIG00161,,Intel i5-12500H,GeForce RTX 4050,16.0,512GB,1499.0,44.45618604786905,21521.0,41.9,296.57228851146795 -LPGIG00157,AERO 14,Intel i5-12500H,RTX 4050,16.0,1TB,1499.0,44.45618604786905,21521.0,41.9,296.57228851146795 -LPGIG00158,AORUS Gaming Notebook,Intel i5-12500H,GeForce RTX 4050,8.0,512GB,1499.0,44.45618604786905,21521.0,41.9,296.57228851146795 -LPHUA00036OB,MateBook D15,Intel i5-1135G7,Intel Iris Xe ,8.0,512GB,569.05,16.854626129210796,9891.0,10.6,296.18884332151475 -LPASU00581OB,ExpertBook B1,Intel i5-1135G7,,8.0,256GB,569.05,16.854626129210796,9891.0,10.6,296.18884332151475 -LPACE00958,PHN16-71-788N,Intel i7-13700HX,GeForce RTX 4060,16.0,1024GB,2099.99,62.15152765921521,34110.0,46.3,295.96106485847656 -LPASU00561OB,ExpertBook B1,Intel Core i5-1135G7,Intel Iris Xe G7,8.0,256GB,569.89,16.854626129210796,9891.0,10.6,295.75227024883395 -LPASU00779,Zenbook 14X OLED,Intel i7-12700H,Intel Iris Xe,16.0,1TB,1299.0,38.32576617480136,26424.0,12.1,295.04054022171954 -LPMSI00580,Pulse 17,Intel i9-13900H,GeForce RTX 4070,16.0,1TB,1999.0,58.804675586741425,29687.0,51.7,294.1704631652898 -LPHUA00042,Matebook D14,Intel i7-1360P,,16.0,1TB,999.0,29.352377348972126,19309.0,12.1,293.81759108080206 -LPLEN03707,V15 G4,Intel i3-1315U,Intel UHD ,16.0,512GB,699.0,20.491464015868104,13004.0,9.9,293.1539916433205 -LPLEN00715OB,,Intel Core i5-8365U,,16.0,256 GB,359.1,10.520778937866957,6245.0,6.4,292.9763001355321 -LPLEN03493OB,Thinkbook T490,Intel i5-8365U,,16.0,256GB,359.1,10.520778937866957,6245.0,6.4,292.9763001355321 -LPLEN03436,Legion Pro 5,Intel i7-13700HX,GeForce RTX 4070,16.0,1TB,2199.0,64.38293261789289,34110.0,51.7,292.78277679805774 -LPASU00761,Vivobook Pro 16X OLED,Intel i9-13980HX,Geforce RTX 4070,32.0,1TB,2799.0,81.89333746087436,47994.0,51.7,292.58069832395273 -LPHEW02101,14-ep0000ca,Intel i3-N305,,8.0,256GB,549.0,16.05525901883347,9978.0,8.4,292.4455194687335 -LPLEN03518OB,Thinkbook T480s,Intel i5-8350U,,16.0,256GB,359.1,10.496816269182382,6226.0,6.4,292.30900220502315 -LPLEN02718OB,,Intel Core i5-8350U,Intel UHD 620,16.0,256 GB,359.1,10.496816269182382,6226.0,6.4,292.30900220502315 -LPGIG00153,G5 MF,Intel i5-12450H,GeForce RTX 4050,8.0,512GB,1349.0,39.32943614245853,17456.0,41.9,291.54511595595653 -LPMSI00563,Modern 15 Notebook,Intel i5-1155G7,Intel Iris Xe,16.0,512GB,599.0,17.34270785452294,10278.0,10.6,289.5276770371109 -LPGIG00159,AORUS Gaming Notebook,Intel i5-12500H,GeForce RTX 4060,16.0,512GB,1599.0,46.27436786605087,21521.0,46.3,289.3956714574789 -LPLEN03049OB,Legion 5,AMD Ryzen 7 6800H,GeForce RTX 3070 Ti,16.0,512GB,1780.0900054932,51.40250925309226,23654.0,52.2,288.7635405764241 -LPASU00780OB,Zenbook,Intel i7-12700H,,16.0,1TB,1329.05,38.32576617480136,26424.0,12.1,288.3696337594625 -LPASU00610OB,TUF517ZC-DS51-CA,Intel i5-12450H,GeForce RTX 3050,16.0,512GB,1159.0899978638,33.37902291931804,17456.0,27.5,287.97611040415757 -LPHEW01967,ProBook 440 G9,Intel i5-1235U,,16.0,256GB,749.0,21.464286868269944,13546.0,10.6,286.57258836141443 -LPMSI00578,Modern 14,Intel i5-1335U,,16.0,512GB,899.0,25.730903087213065,16929.0,10.6,286.2169420157182 -LPGIG00156OB,AERO 16 OLED,Intel i7-13700H,GeForce RTX 4070,16.0,1TB,1979.1,56.53831160641604,27890.0,51.7,285.6768814431613 -LPLEN03312OB,T490,Intel i5-8265U,Intel UHD ,16.0,256GB,359.1,10.240794072184022,6023.0,6.4,285.17945063169094 -LPLEN03503OB,Legion Slim 7i,Intel i9-13900H,GeForce RTX 4070,32.0,1TB,2069.1,58.804675586741425,29687.0,51.7,284.2041254010992 -LPMSI00553,Vector GP68HX,Intel i9-12900HX,GeForce RTX 4080,32.0,1TB,2499.0,70.88048475676172,34937.0,64.9,283.6353931843206 -LPMSI00293OB,GF75 10UEK-003CA,Intel Core i7-10750H,RTX3060,16.0,512GB,1146.4900003815,32.504823281832884,12012.0,42.0,283.51597720884394 -LPMSI00537,Pulse 17,Intel i7-13700H,GeForce RTX 4070,16.0,1TB,1999.0,56.53831160641604,27890.0,51.7,282.83297451933987 -LPGIG00148,,Intel i7-13700H,GeForce RTX 4070,16.0,1TB,1999.0,56.53831160641604,27890.0,51.7,282.83297451933987 -LPHEW01543,15-ef2030ca,AMD Ryzen 7 5700U,AMD Radeon ,16.0,1TB,899.88,25.449500682190806,15854.0,13.2,282.8099377938259 -LPASU00726OB,GV302XU-DS91T-CA,AMD Ryzen 9 7940HS,RTX 4050,16.0,1TB,1979.1,55.898990941298244,30594.0,41.9,282.4465208493671 -LPMSI00538OB,Katana 17 B12VGK-217CA,Intel i7-12650H,GeForce RTX 4070,16.0,1TB,1799.1,50.72547266077346,23281.0,51.7,281.94915602675485 -LPLEN03567OB,ThinkPad X1 Gen 3,Intel i7-8550U,N/A,16.0,256GB,359.1,10.122241921849806,5929.0,6.4,281.8780819228573 -LPCNO00061,Vivobook F Series,Intel i5-1135G7,,8.0,256GB,597.95999908447,16.854626129210796,9891.0,10.6,281.86878980227317 -LPASU00581,ExpertBook B1,Intel i5-1135G7,,8.0,256GB,599.0,16.854626129210796,9891.0,10.6,281.379401155439 -LPHUA00036,MateBook D15,Intel i5-1135G7,Intel Iris Xe ,8.0,512GB,599.0,16.854626129210796,9891.0,10.6,281.379401155439 -LPHEW02021OB,14-em0030ca,AMD Ryzen 3 7320U,Radeon ,8.0,256GB,474.05,13.334802988089542,9066.0,4.6,281.295285056208 -LPASU00764OB,Zenbook 15 OLED,AMD Ryzen 7 7735U,AMD Radeon ,16.0,1TB,1234.05,34.69506748425333,21350.0,18.8,281.1479882035033 -LPASU00561,ExpertBook B1,Intel Core i5-1135G7,Intel Iris Xe G7,8.0,256GB,599.88,16.854626129210796,9891.0,10.6,280.9666288126091 -LPLEN03428OB,IdeaPad Slim 3,AMD Ryzen 3 7320U,AMD Radeon 610M ,8.0,512GB,474.99,13.334802988089542,9066.0,4.6,280.7386047725119 -LPACE00994,Vero,Intel i7-1255U,Intel Iris Xe ,16.0,1TB,799.0,22.369151217051332,13772.0,12.1,279.96434564519814 -LPGIG00145,,Intel Core i9-13900HX,GeForce RTX 4080,16.0,1TB,2999.0,83.54286336692694,44977.0,64.9,278.56906757894944 -LPACE00961,Predator Helios,Intel i9-13900HX,GeForce RTX 4080,32.0,1 TB,2999.0,83.54286336692694,44977.0,64.9,278.56906757894944 -LPACE00952,Nitro 5,Intel i5-12450H,GeForce RTX 3050,8.0,512GB,1199.99,33.37902291931804,17456.0,27.5,278.1608423346698 -LPGIG00141,YE5-74US544SH,Intel i7-12700H,GeForce RTX 3080 Ti,32.0,1TB,1999.0,55.51584881942947,26424.0,53.7,277.7181031487217 -LPASU00721,ROG Strix,AMD Ryzen 9 7945HX,RTX 4080,32.0,1TB,3499.0,96.81818181818183,55503.0,64.9,276.7024344617943 -LPGIG00154,AERO 14,Intel Core i7-13700H,GeForce RTX 4050,16.0,1TB,1899.0,52.488724829556524,27890.0,41.9,276.40192116670096 -LPACE00957,AN16-51-74BV,Intel i7-13700H,GeForce RTX 4050,16.0,1024GB,1899.99,52.488724829556524,27890.0,41.9,276.2579004602999 -LPGIG00146OB,17H,Intel i7-13700H,RTX 4080,16.0,1TB,2249.1,61.99285706096149,27890.0,64.9,275.63406278494284 -LPACE00963,AN515-58-7578,Intel i7-12650H,GeForce RTX 4050,16.0,1TB,1699.99,46.67588588391395,23281.0,41.9,274.5656497033156 -LPASU00780,Zenbook,Intel i7-12700H,,16.0,1TB,1399.0,38.32576617480136,26424.0,12.1,273.9511520714894 -LPASU00752OB,Vivobook 17,Intel i7-1165G7,Intel Iris Xe ,8.0,512GB,664.05,18.049564888384413,10347.0,12.1,271.8103288665675 -LPACE00959,PH16-71-71AV,Intel i7-13700HX,GeForce RTX 4060,16.0,1024GB,2299.99,62.15152765921521,34110.0,46.3,270.22520819314525 -LPMSI00498OB,SUMMIT E14,Intel i7-1280P,Iris Xe ,16.0,1TB,1141.7899938965,30.791398663135322,20450.0,12.1,269.6765502214278 -LPGIG00150,AORUS 15X,Intel i7-13700HX,GeForce RTX 4070,16.0,1TB,2399.0,64.38293261789289,34110.0,51.7,268.37404175861985 -LPHEW02021,Consumer Laptop 14,AMD Ryzen 3 7320U,Radeon ,8.0,256GB,499.0,13.334802988089542,9066.0,4.6,267.2305208033976 -LPASU00764,Zenbook 15 OLED,AMD Ryzen 7 7735U,AMD Radeon ,16.0,1TB,1299.0,34.69506748425333,21350.0,18.8,267.09058879332815 -LPLEN03428,IdeaPad Slim 3,AMD Ryzen 3 7320U,AMD Radeon 610M ,8.0,512GB,499.99,13.334802988089542,9066.0,4.6,266.7013937896666 -LPASU00800,Vivobook S 15 OLED,Intel i9-13900H,,16.0,1TB,1599.0,42.44103922310505,29687.0,12.1,265.42238413449064 -LPLEN03429OB,IdeaPad Slim 3,AMD Ryzen 5 7520U,AMD Radeon 610M,8.0,512GB,522.49,13.850630961352248,9475.0,4.6,265.08891962242814 -LPMSI00481OB,Raider GE76,Intel i9-12900HK,RTX3080TI,32.0,1TB,2173.39,57.61069053969684,28085.0,53.7,265.07295303510574 -LPLEN00715,ThinkPad T490,Intel i5-8365U,,16.0,256GB,399.0,10.520778937866957,6245.0,6.4,263.6786701219789 -LPLEN03493,,Intel i5-8365U,,16.0,256GB,399.0,10.520778937866957,6245.0,6.4,263.6786701219789 -LPMSI00592,Stealth 14Studio,Intel i7-13620H,GeForce RTX 3050,16.0,512GB,1699.0,44.771380089200754,26489.0,27.5,263.5160688004753 -LPLEN03518,Thinkbook T480s,Intel i5-8350U,,16.0,256GB,399.0,10.496816269182382,6226.0,6.4,263.07810198452086 -LPLEN02718,ThinkPad T480,Intel Core i5-8350U,Intel UHD 620,16.0,256 GB,399.0,10.496816269182382,6226.0,6.4,263.07810198452086 -LPLEN03268,ThinkPad T580,Intel Core i5-8350U,,16.0,256GB,399.88,10.496816269182382,6226.0,6.4,262.4991564765025 -LPASU00724OB,GU604VI-DS92-CA,Intel i9-13900H,GeForce RTX 4070,32.0,1TB,2249.1,58.804675586741425,29687.0,51.7,261.45869719772986 -LPHEW02012,Chromebook C204MA-SS02-CB,Intel Celeron-N4020,Intel UHD ,4.0,32GB eMMC,99.0,2.5822511567016777,1556.0,1.5,260.8334501718866 -LPLEN03578OB,Yoga L390,Intel i5-8365U,,16.0,256GB,404.1,10.520778937866957,6245.0,6.4,260.3508769578559 -LPACE00966,Nitro 17,AMD Ryzen 7 7735HS,GeForce RTX 4070,32.0,1TB,1999.0,51.96522546692809,24264.0,51.7,259.9561053873341 -LPLEN03202OB,ThinkPad X380 Yoga,Intel i5-8350U,Integrated,16.0,512GB,404.1,10.496816269182382,6226.0,6.4,259.7578883737288 -LPASU00759,H7604JI-XS91T-CA,Intel i9-13980HX,Geforce RTX 4070,32.0,1TB,3154.0,81.89333746087436,47994.0,51.7,259.64913589370434 -LPASU00610,TUF517ZC-DS51-CA,Intel i5-12450H,GeForce RTX 3050,16.0,512GB,1287.8799972534,33.37902291931804,17456.0,27.5,259.1780522292751 -LPGIG00134,A7 K1,AMD Ryzen 7 5800H,GeForce RTX 3060,16.0,512GB,1699.0,44.004381864251854,21130.0,42.0,259.00165900089377 -LPMSI00568OB,Modern,Intel i5-1235U,Intel Iris Xe,16.0,512GB,830.18999938965,21.464286868269944,13546.0,10.6,258.5466806881598 -LPASU00752,Vivobook 17,Intel i7-1165G7,Intel Iris Xe ,8.0,512GB,699.0,18.049564888384413,10347.0,12.1,258.2198124232391 -LPMSI00567,Thin GF63,Intel Core i5-12450H,GeForce RTX 4060,16.0,512GB,1599.0,41.14761796064036,17456.0,46.3,257.3334456575382 -LPMSI00555,Stealth 15,Intel i9-13900H,GeForce RTX 4060,32.0,1TB,2199.0,56.573270628063746,29687.0,46.3,257.2681702049283 -LPGIG00156,AERO 16 OLED,Intel i7-13700H,GeForce RTX 4070,16.0,1TB,2199.0,56.53831160641604,27890.0,51.7,257.10919329884507 -LPLEN03403OB,T480s,Intel i7-8550U,Intel UHD 620,24.0,256GB,394.15999755859,10.122241921849806,5929.0,6.4,256.80540857891555 -LPLEN00182OB,ThinkPad T480s,Intel Core i7-8550U,,16.0,256 GB,394.15999755859,10.122241921849806,5929.0,6.4,256.80540857891555 -LPLEN03312,T490,Intel i5-8265U,Intel UHD ,16.0,256GB,399.0,10.240794072184022,6023.0,6.4,256.6615055685218 -LPLEN03600,21KK0009US,AMD Ryzen 5 7530U Hexa-core (6 Core),,16.0,512 GB,999.0,25.611902744293623,16507.0,11.6,256.375402845782 -LPASU00707OB,Zenbook OLED,AMD Ryzen 7 7730U,AMD Radeon,16.0,1TB,1139.05,29.195244155516576,18824.0,13.2,256.31222646518216 -LPASU00763OB,Vivobook S 16 Flip,Intel i5-1335U,Intel HD ,16.0,512GB,901.55,23.086274988039513,16929.0,4.2,256.0731516614665 -LPLEN03503,82Y3007HCC,Intel i9-13900H,NVIDIA GeForce RTX 4070,32.0,1TB,2299.0,58.804675586741425,29687.0,51.7,255.78371286098925 -LPHEW01738OB,Probook 640,Intel Core i5-6300U,Intel HD 520,16.0,512GB,242.89,6.193703623793398,3240.0,5.1,255.00035504933913 -LPASU00726,GV302XU-DS91T-CA,AMD Ryzen 9 7940HS,RTX 4050,16.0,1TB,2199.0,55.898990941298244,30594.0,41.9,254.20186876443043 -LPLEN02154OB,20WM0085US,Intel i5-1135G7,,8.0,256GB,664.05,16.854626129210796,9891.0,10.6,253.81561823975298 -LPMSI00538,Katana 17 B12VGK-217CA,Intel i7-12650H,GeForce RTX 4070,16.0,1TB,1999.0,50.72547266077346,23281.0,51.7,253.75424042407937 -LPLEN03567,ThinkPad X1 Gen 3,Intel i7-8550U,,16.0,256GB,399.0,10.122241921849806,5929.0,6.4,253.69027373057156 -LPGIG00136,AORUS 5 KE4,Intel Core i7-12700H,GeForce RTX 3060,16.0,1TB,1999.0,50.68113807562782,26424.0,42.0,253.53245660644234 -LPHUA00035OB,Matebook 14,Intel Core i5-1135G7,Intel Iris Xe ,16.0,512GB,664.89,16.854626129210796,9891.0,10.6,253.49495599589102 -LPACE00945OB,Aspire,Intel i5-10210U,,8.0,256GB,415.04000549316,10.499338655359706,6228.0,6.4,252.97172601190945 -LPACE00965,Nitro,AMD Ryzen 7 7735HS,GeForce RTX 4050,16.0,1TB,1899.0,47.915638690068576,24264.0,41.9,252.32037224891295 -LPLEN03429,IdeaPad Slim 3,AMD Ryzen 5 7520U,AMD Radeon 610M,8.0,512GB,549.99,13.850630961352248,9475.0,4.6,251.83423264699806 -LPMSI00381OB,Prestige 14,Intel Core i7-1185G7,NVIDIA GeForce MX450,16.0,1TB,736.14,18.51598223489669,10553.0,12.6,251.52800058272462 -LPHEW01946OB,,Intel i5-1235U,,16.0,256GB,854.05,21.464286868269944,13546.0,10.6,251.32353923388493 -LPMSI00579,Stealth 14Studio,Intel i7-13620H,GeForce RTX 4060,16.0,1TB,2099.0,52.53997513052306,26489.0,46.3,250.30955278953343 -LPASU00718,G634JZ-XS96,Intel i9-13980HX,RTX 4080,32.0,1TB,3499.0,87.34788291541982,47994.0,64.9,249.6367045310655 -LPASU00727,GV601VU-DS91T-CA,Intel Core i9-13900H,RTX 4050,16.0,1TB,2199.0,54.75508880988191,29687.0,41.9,248.99994911269627 -LPGIG00146,,Intel i7-13700H,RTX 4080,16.0,1TB,2499.0,61.99285706096149,27890.0,64.9,248.07065650644856 -LPASU00621OB,GA503RS-XS92-CA,AMD Ryzen 9 6900HS,GeForce RTX 3080,32.0,1TB,2015.89,49.730552871611586,23901.0,47.4,246.69279014039253 -LPASU00707,Zenbook,AMD Ryzen 7 7730U,AMD Radeon,16.0,1TB,1199.0,29.195244155516576,18824.0,13.2,243.4966151419231 -LPLGE00019OB,gram,Intel i5-1155G7,Intel Iris Xe ,8.0,512GB,712.39,17.34270785452294,10278.0,10.6,243.44401036683473 -LPHEW02023OB,Consumer Notebook,AMD Ryzen 5 7520U,AMD Radeon ,8.0,512GB,569.05,13.850630961352248,9475.0,4.6,243.39919095601877 -LPASU00603OB,Vivobook 15,Intel Core i7-1165G7,Intel Iris Xe ,12.0,512GB,741.83999694824,18.049564888384413,10347.0,12.1,243.30805783775733 -LPASU00763,Vivobook S 16 Flip,Intel i5-1335U,Intel HD ,16.0,512GB,949.0,23.086274988039513,16929.0,4.2,243.26949407839317 -LPGIG00164,AORUS 17X,Intel i9-13980HX,GeForce RTX 4080,16.0,1TB,3599.0,87.34788291541982,47994.0,64.9,242.7004248830781 -LPASU00770OB,GA402XZ-CS94,AMD Ryzen 9 7940HS,GeForce RTX 4080,16.0,1TB,2699.1,65.4031231727032,30594.0,64.9,242.31456104888002 -LPASU00729,Zephyrus Duo,AMD Ryzen 9 7945HX,RTX 4080,32.0,1TB,3999.0,96.81818181818183,55503.0,64.9,242.10598104071474 -LPLEN03508,21JR001QUS,"AMD Ryzen 5 7530U (Hexa-core, 6 Core) ",,8.0,256 GB,1061.69,25.611902744293623,16507.0,11.6,241.23711011965474 -LPLEN02154,20WM0085US,Intel i5-1135G7,,8.0,256GB,699.0,16.854626129210796,9891.0,10.6,241.1248373277653 -LPSAS00117,Galaxy Book,Intel i5-1135G7,Intel Iris Xe ,8.0,256GB,699.0,16.854626129210796,9891.0,10.6,241.1248373277653 -LPMSI00550,Raider GE78HX,Intel i9-13980HX,GeForce RTX 4070,32.0,2TB,3399.0,81.89333746087436,47994.0,51.7,240.9336200672973 -LPHUA00035,Matebook 14,Intel Core i5-1135G7,Intel Iris Xe ,16.0,512GB,699.88,16.854626129210796,9891.0,10.6,240.8216569870663 -LPHUA00037OB,MateBook 14s,Intel Core i7-11370H,Intel Iris Xe ,16.0,512GB,824.49000038147,19.83163072266364,11760.0,12.1,240.53209515564848 -LPACE00945,Aspire A515-54-54B9,Intel i5-10210U,,8.0,256GB,436.88000488281,10.499338655359706,6228.0,6.4,240.32545637276488 -LPHEW02077,OMEN,AMD Ryzen 9 7940HS,GeForce RTX 4070,32.0,2TB,2499.0,59.94857771815775,30594.0,51.7,239.89026697942276 -LPLEN03099,ThinkPad E15 Gen 4,AMD Ryzen 7 5825U Octa-core (8 Core) 2 GHz,AMD Radeon ,16.0,512GB,1199.0,28.733647485066328,18458.0,13.2,239.6467680155657 -LPLEN03055,ThinkBook 15 G4,Intel Core i5-1235U,,16.0,256GB,899.0,21.464286868269944,13546.0,10.6,238.7573622721907 -LPHEW01946,ProBook 450 G9,Intel i5-1235U,,16.0,256GB,899.0,21.464286868269944,13546.0,10.6,238.7573622721907 -LPMSI00548,Vector GP78 HX,Intel i9-13950HX,GeForce RTX 4080,32.0,1TB,3499.0,83.4848484848485,44931.0,64.9,238.5963089021106 -LPGIG00144OB,AZF-B5US665SP,Intel Core i9-13900HX,RTX 4090,32.0,2TB,3644.8900085449,86.72468154874512,44977.0,72.6,237.93497566574592 -LPASU00540,VivoBook Pro 16X,AMD Ryzen 7 5800H,NVIDIA GeForce RTX 3050,16.0,512GB,1599.0,38.01264632706176,21130.0,27.5,237.72761930620237 -LPLEN03706,V15 G4,AMD Ryzen 5 5500U,Integrated graphics,16.0,512GB,899.0,21.370510387123744,13144.0,11.6,237.7142423484287 -LPHUA00039OB,MateBook 14s,i7-11370H,Intel Iris Xe ,16.0,512GB,838.82000030518,19.83163072266364,11760.0,12.1,236.4229598179405 -LPLEN03338,ThinkPad T14s Gen 2,AMD Ryzen 5 PRO 5650U Hexa-core (6 Core) 2.30 GHz,,,256 GB,999.0,23.612911698764556,14922.0,11.6,236.36548247011567 -LPLGE00027OB,gram,Intel i5-1240P,Intel Iris Xe ,8.0,512GB,1109.4899984741,26.224029584879858,17320.0,10.6,236.36111745888832 -LPLEN03301OB,IdeaPad Flex 5,Intel i7-1255U,,16.0,512GB,949.05,22.369151217051332,13772.0,12.1,235.7004501032752 -LPHEW01822OB,ProBook 450 G9,Intel i7-1255U,,16.0,512GB,949.05,22.369151217051332,13772.0,12.1,235.7004501032752 -LPGIG00155,AERO 16 OLED,Intel i9-13900H,GeForce RTX 4070,32.0,1TB,2499.0,58.804675586741425,29687.0,51.7,235.3128274779569 -LPASU00724,ROG Zephyrus,Intel i9-13900H,GeForce RTX 4070,32.0,1TB,2499.0,58.804675586741425,29687.0,51.7,235.3128274779569 -LPASU00766,Zenbook Pro 14,Intel i9-13900H,GeForce RTX 4070,32.0,1TB,2499.0,58.804675586741425,29687.0,51.7,235.3128274779569 -LPLEN03578,Yoga L390,Intel i5-8365U,,16.0,256GB,449.0,10.520778937866957,6245.0,6.4,234.31578926207033 -LPLEN03577OB,ThinkPad T480,Intel i5-8365U,,16.0,512GB,449.1,10.520778937866957,6245.0,6.4,234.26361473762987 -LPLEN03559OB,,Intel i5-8365U,Intel UHD 620,16.0,512GB,449.1,10.520778937866957,6245.0,6.4,234.26361473762987 -LPASU00609OB,TUF Gaming Notebook,Intel Core i5-10300H,GeForce GTX 1650,8.0,1TB,824.29000152588,19.282391555634774,8474.0,20.8,233.92727704982806 -LPLEN03202,X380 Yoga,Intel i5-8350U,Integrated GPU,16.0,512GB,449.0,10.496816269182382,6226.0,6.4,233.78209953635593 -LPMSI00514OB,Summit E13 Flip Evo,Intel Core i7-1280P,Intel Iris Xe,16.0,1TB,1318.4899984741,30.791398663135322,20450.0,12.1,233.53532221534084 -LPASU00723,GA402NJ-DS71-CA,AMD Ryzen 7 7735HS,RTX 3050,16.0,512GB,1799.0,41.96522546692808,24264.0,27.5,233.26973578058968 -LPLEN03521,,AMD Ryzen 5 7530U,,16.0,256GB,1099.0,25.611902744293623,16507.0,11.6,233.04734071240787 -LPLEN03299OB,ThinkPad T14 Gen 2,Intel Core i5-1135G7,GeForce MX450 2GB,8.0,256GB,759.89,17.681072410202532,9891.0,12.6,232.67936688471397 -LPACE00880OB,Aspire A515-54,Intel i7-10510U,,8.0,512GB,474.89,11.029039752597694,6648.0,6.4,232.24409342369165 -LPHEW02023,Consumer Notebook 14,AMD Ryzen 5 7520U,AMD Radeon ,8.0,512GB,599.0,13.850630961352248,9475.0,4.6,231.22923140821783 -LPASU00603,Vivobook 15,Intel Core i7-1165G7,Intel Iris Xe ,12.0,512GB,780.88,18.049564888384413,10347.0,12.1,231.14390032251322 -LPLEN03403,T480s,Intel i7-8550U,Intel UHD 620,24.0,256GB,437.96000671387,10.122241921849806,5929.0,6.4,231.12251727731194 -LPLEN00182,ThinkPad T480s,Intel Core i7-8550U,,16.0,256GB,437.96000671387,10.122241921849806,5929.0,6.4,231.12251727731194 -LPMSI00516,Modern 14 Business Notebook,Intel Core i5-1235U,Intel Iris Xe,8.0,512GB,929.0,21.464286868269944,13546.0,10.6,231.0472214022599 -LPLGE00025,gram,Intel i5-1240P,,8.0,512GB,1135.88,26.224029584879858,17320.0,10.6,230.86971849913598 -LPMSI00524,GP66 Leopard,Intel Core i7-11800H,NVIDIA RTX3070,16.0,512GB,1999.0,46.00825091280153,20753.0,48.0,230.15633273037284 -LPMSI00497,Pulse GL66,Intel i7-11800H,RTX3070,16.0,512GB,1999.88,46.00825091280153,20753.0,48.0,230.0550578674797 -LPLGE00026OB,Gram,Intel i7-1260P,Intel Iris Xe ,16.0,512GB,1162.6900030518,26.731618110732754,17231.0,12.1,229.9118255129765 -LPLEN03602,,Intel Core i5-1335U,,16.0,256GB,1119.2,25.730903087213065,16929.0,10.6,229.9044235812461 -LPLGE00021OB,gram,Intel i5-1155G7,Intel Iris Xe ,8.0,512GB,759.89,17.34270785452294,10278.0,10.6,228.22655719279027 -LPLEN03552OB,X1 Yoga G4,Intel i5-8265U,,16.0,512GB,449.1,10.240794072184022,6023.0,6.4,228.02926012433804 -LPASU00559OB,Zenbook Notebook,Intel Core i5-1135G7,Intel Iris Xe ,8.0,256GB,741.83999328613,16.854626129210796,9891.0,10.6,227.20028957389889 -LPASU00722,G834JY-XS97,Intel i9-13980HX,RTX 4090,32.0,2TB,3999.0,90.52970109723799,47994.0,72.6,226.38084795508374 -LPHUA00039,MateBook 14s,Intel i7-11370H,Intel Iris Xe ,16.0,512GB,882.95999992371,19.83163072266364,11760.0,12.1,224.60395402257342 -LPLGE00027,gram,Intel i5-1240P,Intel Iris Xe ,8.0,512GB,1167.88,26.224029584879858,17320.0,10.6,224.54387081617853 -LPMSI00513,Katana GF76,Intel Core i7-12700H,GeForce RTX3070TI,16.0,1TB,2449.0,54.89601410868566,26424.0,52.2,224.1568563033306 -LPHEW01822,ProBook 450 G9,Intel i7-1255U,,16.0,512GB,999.0,22.369151217051332,13772.0,12.1,223.91542759811142 -LPLEN03568,V14,Intel i7-1255U,,16.0,512GB,999.0,22.369151217051332,13772.0,12.1,223.91542759811142 -LPLEN03301,IdeaPad Flex 5,Intel i7-1255U,,16.0,512GB,999.0,22.369151217051332,13772.0,12.1,223.91542759811142 -LPGIG00138,AERO 16,Intel Core i9-12900H,GeForce RTX 3080 Ti,32.0,2TB,2599.0,58.164354305619405,28524.0,53.7,223.79513007164064 -LPMSI00588,Prestige 16EVO,Intel i7-13700H,,32.0,1TB,1799.0,40.174675242779664,27890.0,12.1,223.3167050738169 -LPMSI00589,Creator Z17HXStudio,Intel i9-13950HX,GeForce RTX 4060,32.0,1TB,3399.0,75.79889807162535,44931.0,46.3,223.0035247767736 -LPHEW01834OB,EliteBook 640 G9,Intel i5-1245U,,16.0,512GB,961.35999755859,21.382309317506923,13481.0,10.6,222.41729811733487 -LPASU00560OB,ExpertBook B1,Intel i5-1135G7,,8.0,256GB,759.05,16.854626129210796,9891.0,10.6,222.0489576340267 -LPASU00621,GA503RS-XS92-CA,AMD Ryzen 9 6900HS,GeForce RTX 3080,32.0,1TB,2239.88,49.730552871611586,23901.0,47.4,222.02329085313315 -LPHUA00038OB,Matebook 14,i5-1135G7,Intel Iris Xe ,16.0,512GB,759.89,16.854626129210796,9891.0,10.6,221.80349957508054 -LPLEN03299,ThinkPad T14 Gen 2,Intel Core i5-1135G7,GeForce MX450 2GB,8.0,256GB,799.88,17.681072410202532,9891.0,12.6,221.0465621118484 -LPACE00880,Aspire A515-54,Intel i7-10510U,,8.0,512GB,499.88,11.029039752597694,6648.0,6.4,220.63374715127017 -LPASU00731,ROG Flow,Intel i9-13900H,RTX 4050,16.0,1TB,2499.0,54.75508880988191,29687.0,41.9,219.10799843890322 -LPLEN03544,21JR001RUS,Ryzen 5 7530U,,16.0,256 GB,1173.65,25.611902744293623,16507.0,11.6,218.22436624456714 -LPASU00770,GA402XZ-CS94,AMD Ryzen 9 7940HS,GeForce RTX 4080,16.0,1TB,2999.0,65.4031231727032,30594.0,64.9,218.08310494399203 -LPHEW02036,,Intel i9-13900HX,GeForce RTX 4090,32.0,2TB,3999.0,86.72468154874512,44977.0,72.6,216.8659203519508 -LPASU00559,Zenbook Notebook,Intel Core i5-1135G7,Intel Iris Xe ,8.0,256GB,780.88000488281,16.854626129210796,9891.0,10.6,215.84143560879423 -LPGIG00137OB,AERO 16,Intel Core i9-12900H,NVIDIA RTX 3080 Ti,64.0,2TB,2699.1,58.164354305619405,28524.0,53.7,215.4953662540084 -LPLEN03708,V15 G4,Intel i5-1335U,,16.0,1TB,1199.0,25.730903087213065,16929.0,10.6,214.60302825031746 -LPLEN03564OB,ThinkPad X1,Intel i7-8650U,,16.0,256GB,494.1,10.57501024067942,6288.0,6.4,214.02570816999432 -LPLEN02131,20Y70037US,AMD Ryzen 5 5500U,,8.0,256GB,999.0,21.370510387123744,13144.0,11.6,213.91902289413156 -LPLEN03487OB,ThinkPad E16,Intel i7-1355U,,16.0,512GB,1139.05,24.288687097994703,15294.0,12.1,213.2363557174374 -LPASU00558,Zenbook Pro 15,AMD Ryzen 9 5900HX,NVIDIA GeForce RTX 3050Ti,16.0,512GB,1899.0,40.25422942665745,22678.0,28.2,211.97593168329357 -LPHEW01834,EliteBook 640 G9,Intel i5-1245U,,16.0,512GB,1011.9599990845,21.382309317506923,13481.0,10.6,211.29599328877694 -LPASU00560,ExpertBook B1,Intel i5-1135G7,,8.0,256GB,799.0,16.854626129210796,9891.0,10.6,210.94650975232534 -LPLEN03577,ThinkPad T480,Intel i5-8365U,,16.0,512GB,499.0,10.520778937866957,6245.0,6.4,210.8372532638669 -LPLEN03559,ThinkPad T590,Intel i5-8365U,Intel UHD 620,16.0,512GB,499.0,10.520778937866957,6245.0,6.4,210.8372532638669 -LPHUA00038,Matebook 14,i5-1135G7,Intel Iris Xe ,16.0,512GB,799.88,16.854626129210796,9891.0,10.6,210.71443378020197 -LPMSI00597,Prestige 13 EVO,Intel i7-1360P,,16.0,512GB,1399.0,29.352377348972126,19309.0,12.1,209.8097022800009 -LPHEW01739,ProBook 820 G3,Intel Core i7 6500U,Intel HD 520,16.0,256GB,299.0,6.237845381896563,3275.0,5.1,208.62359136777803 -LPLEN03502OB,IdeaPad Slim 3,AMD Ryzen 5 7520U,,16.0,512GB,664.05,13.850630961352248,9475.0,4.6,208.5781335946427 -LPMSI00583,,Intel i7-13700HX,GeForce RTX 4050,32.0,1TB,2899.0,60.33334584103339,34110.0,41.9,208.1177848949065 -LPMSI00576,CREATOR Z16,Intel i7-13700HX,GeForce RTX 4060,32.0,1TB,2999.0,62.15152765921521,34110.0,46.3,207.2408391437653 -LPMSI00549,Vector GP78HX,Intel i7-13700HX,GeForce RTX 4080,32.0,1TB,3399.0,69.83747807243836,34110.0,64.9,205.4647780889625 -LPLEN03552,X1 Yoga G4,Intel i5-8265U,,16.0,512GB,499.0,10.240794072184022,6023.0,6.4,205.22633411190424 -LPLEN03573OB,ThinkPad T490,Intel i7-8550U,Intel UHD 620,16.0,256GB,494.1,10.122241921849806,5929.0,6.4,204.86221254502743 -LPHEW01833OB,EliteBook 650 G9,Intel i5-1245U,,16.0,256GB,1048.7599990845,21.382309317506923,13481.0,10.6,203.88181601293246 -LPLEN03010,ThinkBook 14 G4,Intel i7-1255U,,16.0,512GB,1099.0,22.369151217051332,13772.0,12.1,203.5409573890021 -LPLEN03487,21JN0073US,Intel i7-1355U,,16.0,512GB,1199.0,24.288687097994703,15294.0,12.1,202.57453793156552 -LPMSI00590,Modern 14,Intel i7-1355U,,16.0,1TB,1199.0,24.288687097994703,15294.0,12.1,202.57453793156552 -LPASU00728,Zephyrus Duo,AMD Ryzen 9 7945HX,RTX 4090,32.0,2TB,4999.0,100.0,55503.0,72.6,200.0400080016003 -LPLGE00015OB,Gram 2-in-1,Intel i7-1165G7,Intel Iris Xe ,16.0,512GB,902.39,18.049564888384413,10347.0,12.1,200.01955793375825 -LPLEN03502,IdeaPad Slim 3,AMD Ryzen 5 7520U,,16.0,512GB,699.0,13.850630961352248,9475.0,4.6,198.14922691491057 -LPLEN03474,ThinkPad E16,Intel i5-1335U,,16.0,256GB,1299.0,25.730903087213065,16929.0,10.6,198.08239482073182 -LPLEN03462,ThinkBook 14s Yoga,Intel Core i5-1335U,,16.0,256GB,1299.0,25.730903087213065,16929.0,10.6,198.08239482073182 -LPHEW02045OB,"Consumer Laptop 17.3""",Intel i5-1135G7,Intel Iris Xe,16.0,512GB,854.05,16.854626129210796,9891.0,10.6,197.34940728541415 -LPLGE00024OB,Gram,Intel i7-1260P,Intel Iris Xe ,16.0,512GB,1355.5400015259,26.731618110732754,17231.0,12.1,197.20272423271604 -LPASU00765OB,Zenbook S 13 OLED EVO,Intel i7-1355U,,16.0,1TB,1234.05,24.288687097994703,15294.0,12.1,196.82093187467856 -LPLGE00032,Gram EVO,Intel i7-1360P,Intel Iris Xe,16.0,512GB,1499.0,29.352377348972126,19309.0,12.1,195.8130576982797 -LPMSI00415,Stealth 15M,Intel Core i7-1260P,RTX3060,16.0,1TB,1999.0,39.0869900115592,17231.0,42.0,195.532716416004 -LPASU00734OB,Zenbook 14X,Intel i7-1260P,GeForce MX550,16.0,512GB,1519.05,29.665502408253413,17231.0,19.2,195.28983514863512 -LPMSI00552,Raider GE78HX,Intel i7-13700HX,GeForce RTX 4070,32.0,1TB,3299.0,64.38293261789289,34110.0,51.7,195.1589348829733 -LPMSI00554,Vector GP77,Intel i7-13700H,GeForce RTX 4070,16.0,1TB,2899.0,56.53831160641604,27890.0,51.7,195.0269458655262 -LPMSI00534,Raider GE78 HX,Intel i9-13980HX,GeForce RTX 4080,64.0,2TB,4499.0,87.34788291541982,47994.0,64.9,194.1495508233381 -LPGIG00137,AERO 16,Intel Core i9-12900H,RTX 3080 Ti,64.0,2TB,2999.0,58.164354305619405,28524.0,53.7,193.94582962860753 -LPHEW01833,EliteBook 650 G9,Intel i5-1245U,,16.0,256GB,1103.9599990845,21.382309317506923,13481.0,10.6,193.68735583933295 -LPLGE00033OB,Gram EVO,Intel i7-1360P,Intel Iris Xe,16.0,512GB,1519.05,29.352377348972126,19309.0,12.1,193.22851353788306 -LPLGE00030OB,Gram,Intel i7-1360P,Intel Iris Xe,16.0,512GB,1519.05,29.352377348972126,19309.0,12.1,193.22851353788306 -LPLGE00031OB,Gram EVO,Intel i7-1360P,Intel Iris Xe,16.0,512GB,1519.99,29.352377348972126,19309.0,12.1,193.10901617097562 -LPGIG00163,AORUS 17X,Intel i9-13980HX,GeForce RTX 4090,32.0,2TB,4699.0,90.52970109723799,47994.0,72.6,192.65737624438816 -LPLEN03564,ThinkPad X1,Intel i7-8650U,,16.0,256GB,549.0,10.57501024067942,6288.0,6.4,192.6231373529949 -LPLEN03712,Yoga L390,Intel i5-8365U,,16.0,256GB,549.0,10.520778937866957,6245.0,6.4,191.63531762963493 -LPMSI00587,CreatorPro M16,Intel i7-13700H,NVIDIA RTX A1000,32.0,1TB,2399.0,45.71186532542429,27890.0,25.5,190.5454994807182 -LPASU00767,Zenbook Pro 14 Duo OLED,Intel i9-13900H,GeForce RTX 4060,32.0,1TB,2999.0,56.573270628063746,29687.0,46.3,188.64044890984908 -LPACE00491,Aspire 5,Intel i7-10510U,Intel UHD 620 graphics,8.0,512GB,585.88,11.029039752597694,6648.0,6.4,188.24741845766528 -LPHEW02083OB,EliteBook 640 G9,Intel i5-1245U,,16.0,512GB,1136.1600006104,21.382309317506923,13481.0,10.6,188.19804698298933 -LPHEW02045,Consumer Laptop,Intel i5-1135G7,Intel Iris Xe,16.0,512GB,899.0,16.854626129210796,9891.0,10.6,187.48193692114342 -LPASU00765,Zenbook S 13 OLED EVO,Intel i7-1355U,,16.0,1TB,1299.0,24.288687097994703,15294.0,12.1,186.97988528094461 -LPASU00734,Zenbook 14X,Intel i7-1260P,GeForce MX550,16.0,512GB,1599.0,29.665502408253413,17231.0,19.2,185.52534339120334 -LPLEN03573,ThinkPad T490,Intel i7-8550U,Intel UHD 620,16.0,256GB,549.0,10.122241921849806,5929.0,6.4,184.3759912905247 -LPLEN03497,ThinkPad X1 Carbon,Intel i5-1335U,,16.0,256GB,1399.0,25.730903087213065,16929.0,10.6,183.92353886499689 -LPLEN03471,ThinkPad E14,Intel i5-1335U,,16.0,512GB,1399.0,25.730903087213065,16929.0,10.6,183.92353886499689 -LPLGE00033,Gram EVO,Intel i7-1360P,Intel Iris Xe,16.0,512GB,1599.0,29.352377348972126,19309.0,12.1,183.5670878609889 -LPLGE00030,Gram,Intel i7-1360P,Intel Iris Xe,16.0,512GB,1599.0,29.352377348972126,19309.0,12.1,183.5670878609889 -LPLGE00031,Gram EVO,Intel i7-1360P,Intel Iris Xe,16.0,512GB,1599.99,29.352377348972126,19309.0,12.1,183.45350501548214 -LPLEN03522,ThinkBook 15 G4,AMD Ryzen 5 5625U,,16.0,256GB,1299.0,23.809657820595802,15078.0,11.6,183.2922080107452 -LPMSI00577OB,Prestige 13 Evo,Intel i7-1360P,,32.0,1TB,1604.55,29.352377348972126,19309.0,12.1,182.93214514332445 -LPMSI00586,CreatorPro Z16HXStudio,Intel i9-13950HX,NVIDIA RTX A2000,32.0,1TB,3799.0,68.93939393939394,44931.0,29.7,181.4672122647906 -LPDYA00003,C50-J,Intel Core i5-1135G7,Integrated GPU,8.0,256GB,929.0,16.854626129210796,9891.0,10.6,181.42762248881374 -LPLEN03042OB,ThinkBook 15 G4,Intel Core i7-1255U,,16.0,512GB,1234.05,22.369151217051332,13772.0,12.1,181.266166014759 -LPMSI00533,Raider GE78 HX,Intel i9-13980HX,GeForce RTX 4090,32.0,2TB,4999.0,90.52970109723799,47994.0,72.6,181.09562131873975 -LPLEN03572,Legion Pro 7,Intel i9-13900HX,GeForce RTX 4090,32.0,2TB,4799.0,86.72468154874512,44977.0,72.6,180.71406865752266 -LPHEW02083,EliteBook 640 G9,Intel i5-1245U,,16.0,512GB,1195.9599990845,21.382309317506923,13481.0,10.6,178.7878301437753 -LPLGE00034,Gram,Intel i7-1360P,GeForce RTX 3050,16.0,1TB,1999.99,35.71601371260849,19309.0,27.5,178.58096146784982 -LPLEN02397OB,,Intel i5-1135G7,Intel Iris Xe ,8.0,256GB,949.89,16.854626129210796,9891.0,10.6,177.43766256314726 -LPLEN03476,14s Yoga G3,Intel Core i7-1355U,,16.0,512GB,1379.9599990845,24.288687097994703,15294.0,12.1,176.01008082921555 -LPLEN03427,IdeaPad 1 15AMN7,AMD Athlon Gold 7220U,AMD Radeon 610M ,4.0,128GB,449.99,7.888971231247568,4748.0,4.6,175.31436768033885 -LPSAS00150,Galaxy Book3 EVO,Intel i7-13700H,GeForce RTX 4050,16.0,512GB,2999.0,52.488724829556524,27890.0,41.9,175.02075635063864 -LPMSI00585,CreatorPro Z17HX Studio,Intel i9-13950HX,NVIDIA RTX A3000,32.0,1TB,3999.0,69.93112947658402,44931.0,32.1,174.87154157685427 -LPMSI00577,Prestige 13 Evo,Intel i7-1360P,,32.0,1TB,1689.0,29.352377348972126,19309.0,12.1,173.78553788615824 -LPLGE00028OB,Gram EVO,Intel i7-1260P,Intel Iris Xe ,16.0,512GB,1538.89,26.731618110732754,17231.0,12.1,173.70714028119457 -LPLEN03709,V15 G4,Intel i7-1355U,,16.0,1TB,1399.0,24.288687097994703,15294.0,12.1,173.6146325803767 -LPACE00999,PTX17-71-99W5,Intel i9-13900HX,GeForce RTX 4090,64.0,2TB,4999.0,86.72468154874512,44977.0,72.6,173.48405990947214 -LPLEN03042,ThinkBook 15 G4,Intel Core i7-1255U,,16.0,512GB,1299.0,22.369151217051332,13772.0,12.1,172.20285771402104 -LPLEN03221,ThinkPad L13 Yoga,Intel Core i7-1255U,,16.0,512GB,1299.0,22.369151217051332,13772.0,12.1,172.20285771402104 -LPMSI00379,Modern 14,Intel Core i7-1195G7,Intel Iris Xe,8.0,512GB,1099.0,18.91600454029512,11034.0,12.1,172.1201505031403 -LPSAS00158,Galaxy Book3 360 EVO,Intel i5-1335U,,8.0,256GB,1499.0,25.730903087213065,16929.0,10.6,171.6537897746035 -LPMSI00551,Stealth 17Studio,Intel i7-13700H,GeForce RTX 4070,32.0,1TB,3299.0,56.53831160641604,27890.0,51.7,171.3801503680389 -LPCNO00054,ThinkPad E15 Gen 2,Intel Core i5-1135G7,Intel Iris Xe ,8.0,256GB,999.0,16.854626129210796,9891.0,10.6,168.71497626837632 -LPACE00948,A317-53-591M,Intel i5-1135G7,Integrated GPU,8.0,512GB,999.0,16.854626129210796,9891.0,10.6,168.71497626837632 -LPMSI00591,Stealth 16 AMG,Intel i9-13900H,GeForce RTX 4070,32.0,2TB,3499.0,58.804675586741425,29687.0,51.7,168.06137635536277 -LPHEW01997OB,ENVY X360,Intel i7-1250U,,16.0,1TB,1234.05,20.66527935426914,12421.0,12.1,167.45901182504062 -LPLEN03710,,Intel i5-10310U,,16.0,512GB,649.0,10.761666817801375,6436.0,6.4,165.81921136828004 -LPDYA00005,C50-J,Intel Core i7-1165G7,Integrated GPU,8.0,256GB,1089.0,18.049564888384413,10347.0,12.1,165.74439750582562 -LPLEN03339,ThinkPad T14s Gen 2,AMD Ryzen 5 PRO 5650U,,8.0,256GB,1430.2,23.612911698764556,14922.0,11.6,165.10216542276993 -LPLGE00028,Gram EVO,Intel i7-1260P,Intel Iris Xe ,16.0,512GB,1619.88,26.731618110732754,17231.0,12.1,165.02221220542728 -LPRAZ00059,Blade 14,AMD Ryzen 9 7940HS,GeForce RTX 4070,16.0,1TB,3649.0,59.94857771815775,30594.0,51.7,164.2876890056392 -LPDYA00028,Tecra,Intel i5-1240P,,16.0,256GB,1599.0,26.224029584879858,17320.0,10.6,164.0026865846145 -LPLEN03711,X1 Carbon,Intel i7-8665U,,16.0,256GB,649.0,10.534652061842237,6256.0,6.4,162.32129525180645 -LPLEN03512,ThinkBook 14s Yoga G3,Intel Core i7-1355U,,16.0,512GB,1499.0,24.288687097994703,15294.0,12.1,162.0326023882235 -LPDYA00004,C50-J,Intel Core i5-1135G7,Integrated GPU,8.0,512GB,1049.0,16.854626129210796,9891.0,10.6,160.67327101249566 -LPASU00649,P1512CEA,Intel Core i5-1135G7,Intel UHD ,8.0,512GB,1049.0,16.854626129210796,9891.0,10.6,160.67327101249566 -LPASU00647,P1512CEA,Intel Core i5-1135G7,Intel UHD ,8.0,512GB,1049.0,16.854626129210796,9891.0,10.6,160.67327101249566 -LPASU00736,GU604VY-XS97,Intel i9-13900H,RTX 4090,32.0,2TB,4199.0,67.44103922310507,29687.0,72.6,160.61214389879748 -LPSAS00152,Galaxy Book3 EVO,Intel i7-13700H,GeForce RTX 4050,16.0,1TB,3269.0,52.488724829556524,27890.0,41.9,160.56508054315242 -LPASU00547OB,Vivobook 13,Intel Pentium Silver N6000,Intel UHD ,4.0,128GB,332.39,5.30078412856248,3089.0,3.4,159.4748376474166 -LPHEW01997,ENVY X360,Intel i7-1250U,,16.0,1TB,1299.0,20.66527935426914,12421.0,12.1,159.0860612337886 -LPASU00768,Zenbook Pro 16X OLED,Intel i9-13905H,GeForce RTX 4080,32.0,1TB,4199.0,66.67566699916303,31603.0,64.9,158.78939509207675 -LPMSI00532,TITAN GT77,Intel i9-13980HX,GeForce RTX 4080,64.0,2TB,5599.0,87.34788291541982,47994.0,64.9,156.006220602643 -LPACE00942,A315-56-54YT,Intel Core i5-1035G1,Integrated Graphic,8.0,256GB,749.0,11.515938457946506,7460.0,5.1,153.75084723560087 -LPMSI00535,Stealth 17,Intel i9-13900H,GeForce RTX 4090,64.0,2TB,4399.0,67.44103922310507,29687.0,72.6,153.30993230985464 -LPDYA00033,Tecra,Intel i7-1260P,,16.0,256GB,1749.0,26.731618110732754,17231.0,12.1,152.83944031293743 -LPDYA00029,Tecra,Intel i7-1260P,,16.0,256GB,1749.99,26.731618110732754,17231.0,12.1,152.75297636405207 -LPLEN03546,E14,Intel i7-1355U,,16.0,512GB,1599.0,24.288687097994703,15294.0,12.1,151.8992313820807 -LPASU00547,Vivobook 13 Slate Notebook,Intel Pentium Silver N6000,Intel UHD ,4.0,128GB,349.88,5.30078412856248,3089.0,3.4,151.5029189597142 -LPDYA00006,C50-J,Intel Core i7-1165G7,Integrated,8.0,512GB,1199.0,18.049564888384413,10347.0,12.1,150.53848947776825 -LPHEW01837,OMEN 16,AMD Ryzen 5 5600H,Radeon ,16.0,1TB,1799.0,26.35096189424948,17093.0,11.6,146.4756080836547 -LPMSI00531OB,TITAN GT77,Intel i9-13980HX,GeForce RTX 4090,128.0,4TB,6299.1,90.52970109723799,47994.0,72.6,143.7184694595069 -LPASU00565,ExpertBook B5,Intel Core i5-1135G7,Intel Iris Xe G7,16.0,256GB,1199.0,16.854626129210796,9891.0,10.6,140.57236137790488 -LPMSI00544,Titan Gaming Notebook,Intel i9-13980HX,GeForce RTX 4090,64.0,2TB,6449.0,90.52970109723799,47994.0,72.6,140.37788974606605 -LPHEW02090,ProBook 440,Intel i7-1355U,,16.0,512GB,1799.0,24.288687097994703,15294.0,12.1,135.01215729846973 -LPLEN02112,ThinkBook 14s Yoga ITL,Intel i5-1135G7,Intel Iris Xe ,8.0,256GB,1249.0,16.854626129210796,9891.0,10.6,134.9449650056909 -LPLEN01849OB,ThinkPad X1 Nano EVO,Intel Core i7-1160G7,,16.0,512GB,1234.05,16.568924202295374,9173.0,12.1,134.26461004250535 -LPLEN02056,IdeaPad Slim 7i,Intel i5-1135G7,Intel Iris Xe ,8.0,512GB,1259.99,16.854626129210796,9891.0,10.6,133.76793569163877 -LPASU00743,Zenbook S 13 Flip,Intel i7-1260P,,16.0,1TB,1999.0,26.731618110732754,17231.0,12.1,133.72495303017885 -LPASU00665,Zenbook Pro,Intel Core i9-12900H,GeForce RTX 3060,32.0,1TB,3999.0,53.329643561817754,28524.0,42.0,133.35744826661102 -LPRAZ00055,Blade 15,Intel Core i7-12800H,GeForce RTX 3070 Ti,16.0,1TB,3999.0,53.063500550859956,24971.0,52.2,132.69192435823945 -LPMSI00531,TITAN GT77,Intel i9-13980HX,GeForce RTX 4090,128.0,4TB,6999.0,90.52970109723799,47994.0,72.6,129.3466225135562 -LPASU00651,P1512CEA,Intel Core i7-1165G7,Intel Iris Xe ,16.0,1TB,1399.0,18.049564888384413,10347.0,12.1,129.01761893055334 -LPASU00564,ExpertBook B1,Intel Core i7-1165G7,Intel Iris Xe G7,12.0,512GB,1399.0,18.049564888384413,10347.0,12.1,129.01761893055334 -LPASU00650,,Intel Core i7-1165G7,Intel Iris Xe ,16.0,1TB,1399.0,18.049564888384413,10347.0,12.1,129.01761893055334 -LPASU00562,ExpertBook B1,Intel Core i7-1165G7,Intel Iris Xe G7,12.0,512GB,1399.0,18.049564888384413,10347.0,12.1,129.01761893055334 -LPLEN03517OB,ThinkPad X1 Carbon EVO,Intel i7-1365U,,32.0,512GB,1899.05,24.48669441291462,15451.0,12.1,128.94180992030024 -LPASU00592,Vivobook 15,AMD Ryzen 3 3250U,AMD Radeon ,8.0,128GB,499.0,6.390824976626236,3855.0,3.7,128.07264482216905 -LPSAS00157,Galaxy Book3 360 EVO,Intel i7-1355U,,16.0,512GB,1899.0,24.288687097994703,15294.0,12.1,127.90251236437442 -LPLGE00035,Gram,Intel i7-1360P,Intel Iris Xe,16.0,512GB,2299.99,29.352377348972126,19309.0,12.1,127.6195868198215 -LPLEN03517,ThinkPad X1 Carbon EVO,Intel i7-1365U,,32.0,512GB,1999.0,24.48669441291462,15451.0,12.1,122.49471942428524 -LPRAZ00054,Razer Blade 14,AMD Ryzen 9 6900HX,GeForce RTX 3080Ti,16.0,1TB,4499.0,53.57739504215617,24887.0,53.7,119.08734172517487 -LPSAS00156,Galaxy Book3 Pro 360 EVO,Intel i7-1360P,,16.0,1TB,2499.0,29.352377348972126,19309.0,12.1,117.45649199268557 -LPLEN01757,ThinkBook 15 G2 ITL,Intel Core i7-1165G7 Quad-core (4 Core) 2.80 GHz,Intel UHD ,16.0,512 GB,1549.0,18.049564888384413,10347.0,12.1,116.52398249441195 -LPMSI00528,CreatorPro,Intel i7-12700H,RTX A3000,32.0,1TB,3999.0,46.59022898471872,26424.0,32.1,116.50469863645591 -LPGIG00125,AERO 16 YE4,Intel Core i9-12900H,NVIDIA GeForce RTX 3080 Ti,32.0,2TB,4999.0,58.164354305619405,28524.0,53.7,116.35197900704021 -LPLEN03526,,Intel i5-1335U,,16.0,512GB,2249.42,25.730903087213065,16929.0,10.6,114.3890562332204 -LPLEN02684OB,20UB0067US,Intel Core i5-10210U,,16.0,256 GB,931.92000068665,10.499338655359706,6228.0,6.4,112.66351883878086 -LPLEN03307,ThinkPad T14 Gen 2,Intel Core i5-1135G7,MX450 2GB,16.0,256GB,1599.0,17.681072410202532,9891.0,12.6,110.57581244654492 -LPASU00623,,AMD Ryzen 9 6900HX,NVIDIA GeForce RTX 3080 Ti,64.0,1TB,4999.0,53.57739504215617,24887.0,53.7,107.17622532937823 -LPLEN02684,ThinkPad X1 Yoga Gen 5,Intel Core i5-10210U,,16.0,256GB,980.95999992371,10.499338655359706,6228.0,6.4,107.03126178617117 -LPLEN03138,Business Notebook,Intel i5-1145G7,Intel Iris Xe,16.0,512GB,1599.88,16.954260383215082,9970.0,10.6,105.97207530074182 -LPSAS00114,Galaxy Book Pro,Intel i5-1135G7,Iris Xe ,8.0,256GB,1600.0,16.854626129210796,9891.0,10.6,105.34141330756748 -LPSAS00113,Galaxy Book Pro,Intel i5-1135G7,Intel Iris Xe ,8.0,512GB,1600.0,16.854626129210796,9891.0,10.6,105.34141330756748 -LPASU00591OB,L510MA-DS09-CA,Intel Celeron N4020,Intel UHD 600,4.0,64GB,246.05,2.5822511567016777,1556.0,1.5,104.94822827480908 -LPSAS00112,Galaxy Book Pro,Intel i7-1165G7,Iris Xe ,8.0,512GB,1730.0,18.049564888384413,10347.0,12.1,104.33274501956306 -LPSAS00116,Galaxy Book Pro,Intel i7-1165G7,Intel Iris Xe ,8.0,256GB,1730.0,18.049564888384413,10347.0,12.1,104.33274501956306 -LPLEN03465,ThinkPad X1 Yoga EVO,Intel i5-1335U,,16.0,256GB,2534.06,25.730903087213065,16929.0,10.6,101.54022827878212 -LPMSI00527,CreatorPro,Intel i7-12700H,NVIDIA RTX A5500,32.0,1TB,5299.0,53.03650997645426,26424.0,47.7,100.08777123316524 -LPLEN01858,20TA0025US,Intel Core i7 i7-1165G7,,8.0,512 GB,1805.7,18.049564888384413,10347.0,12.1,99.95882421434575 -LPASU00591,Vivobook Go,Intel Celeron N4020,Intel UHD 600,4.0,64GB,259.0,2.5822511567016777,1556.0,1.5,99.70081686106865 -LPLEN02741,20W400K3US,Intel i5-1145G7,Intel Iris Xe,16.0,512GB,1720.9,16.954260383215082,9970.0,10.6,98.519730276106 -LPLEN03308,ThinkPad T14 Gen 2,Intel Core i5-1135G7,MX450 2GB,16.0,256GB + 512GB,1799.0,17.681072410202532,9891.0,12.6,98.28278160201518 -LPSAS00115,Galaxy Book Pro,Intel i5-1135G7,Intel Iris Xe ,8.0,512GB,1730.0,16.854626129210796,9891.0,10.6,97.4255845619121 -LPSAS00111,Galaxy Book Pro,Intel i7-1165G7,Iris Xe ,8.0,512GB,1870.0,18.049564888384413,10347.0,12.1,96.52173737103963 -LPASU00762OB,Vivobook Slate,Intel Pentium Silver Processor N6000,Intel UHD ,8.0,128GB,569.05,5.30078412856248,3089.0,3.4,93.15146522383763 -LPASU00762,Vivobook Slate,Intel Pentium Silver Processor N6000,Intel UHD ,8.0,128GB,599.0,5.30078412856248,3089.0,3.4,88.49389196264575 -LPLEN03478,ThinkPad X1 Yoga Gen 8,Intel i7-1355U,,16.0,512 GB,2884.39,24.288687097994703,15294.0,12.1,84.20736134154781 -LPLEN02071,ThinkPad X13 Yoga Gen 2,Intel Core i5 (11th Gen) i5-1135G7 Quad-core,Intel Iris Xe ,8.0,256 GB,2019.0,16.854626129210796,9891.0,10.6,83.48006998123228 -LPASU00590OB,Vivobook 14 Flip,Intel Celeron N4500,Intel UHD ,4.0,128GB,474.05,3.9311284342756845,2003.0,3.4,82.92645151936894 -LPASU00590,Vivobook 14 Flip Notebook,Intel Celeron N4500,Intel UHD ,4.0,128GB,499.0,3.9311284342756845,2003.0,3.4,78.78012894340048 -LPLEN03495,ThinkPad X13 Yoga,Intel i5-10310U,,16.0,256GB,1499.0,10.761666817801375,6436.0,6.4,71.7923069900025 -LPASU00810,Chromebook Flip C434,Intel m3-8100Y,,4.0,64GB Flash Memory,699.0,4.868121937567816,2877.0,3.0,69.64409066620622 -LPASU00227,Chromebook Flip C434,Intel m3-8100Y,,4.0,64GB Flash Memory,699.0,4.868121937567816,2877.0,3.0,69.64409066620622 -LPLEN01870,20UN000AUS,Intel Core i7-1160G7 EVO Quad-core,Intel Iris Xe ,16.0,256 GB,2399.88,16.568924202295374,9173.0,12.1,69.04063620804112 -LPLEN02299,ThinkPad X13 Yoga Gen 2,Intel Core i7 (11th Gen) i7-1165G7 Quad-core,Intel Iris Xe ,16.0,256GB,2892.49,18.049564888384413,10347.0,12.1,62.401477233748125 diff --git a/PCData/data/computed/canada_computers_laptops_bench_0.7.html b/PCData/data/computed/canada_computers_laptops_bench_0.7.html deleted file mode 100644 index 6d0b13a..0000000 --- a/PCData/data/computed/canada_computers_laptops_bench_0.7.html +++ /dev/null @@ -1,11422 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 item_idModelCPUGPURAMStoragepricebenchcpu_benchgpu_benchvalue
531LPMSI00429OBKatana GF66Intel Core i7-11800HRTX306016512GB$ 78644%20,75342.0553
402LPLEN03269OBIdeaPad 3AMD Ryzen 7 5825UIntegrated Radeon 8256GB$ 52229%18,45813.2550
462LPACE00912OBNitro 5Intel Core i5-11400HGTX 16508256GB$ 52629%15,82220.8542
450LPLEN03269IdeaPad 3AMD Ryzen 7 5825UIntegrated Radeon 8256GB$ 55029%18,45813.2523
210LPHEW02076OBVictus Gaming NotebookAMD Ryzen 5 7640HSGeForce RTX 405016512GB$ 89947%23,39041.9521
452LPCOI00001OBVOYAGER Gaming NotebookAMD Ryzen 7 6800HSRadeon 6800M161TB$ 99052%22,94754.6520
454LPLEN03053OBIdeaPad 5AMD Ryzen 7 5825UIntegrated Radeon8512GB$ 55329%18,45813.2520
401LPGIG00147OBG5 KF-E3US333SHIntel i5-12500HGeForce RTX 40608512GB$ 89946%21,52146.3515
205LPLEN03430OBIdeaPad Slim 3AMD Ryzen 7 7730UNone8512GB$ 57029%18,82413.2512
243LPHEW02095OBVictus 15-fb1010caAMD Ryzen 5 7535HSGeForce RTX 20508512GB$ 62932%18,44521.2509
360LPGIG00135OBAERO 16 XE4Intel Core i7-12700HGeForce RTX 3070 Ti162TB$ 1,07955%26,42452.2509
486LPLEN03097OBIdeaPad 3AMD Ryzen 5 5625UAMD Radeon 12512GB$ 47524%15,07811.6501
384LPLEN03414OBIdeaPadIntel i3-1215UIntel HD 4128GB$ 31316%11,0324.2501
285LPASU00720OBG17AMD Ryzen 9 7945HXNVIDIA RTX 4060161TB$ 1,79989%55,50346.3495
434LPGIG00142OBG5 KE-52US213SHIntel i5-12500HGeForce RTX 306016512GB$ 90044%21,52142.0494
496LPLEN03053IdeaPad 5AMD Ryzen 7 5825UIntegrated Radeon8512GB$ 58229%18,45813.2494
193LPASU00809OBROG Strix G16Intel i9-13980HXGeForce RTX 4060161TB$ 1,61980%47,99446.3492
224LPGIG00162OBG5 KFIntel i7-12650HGeForce RTX 406016512GB$ 98948%23,28146.3490
258LPACE00980OBNitro 5AMD Ryzen 7 5800HGeForce RTX 306016512GB$ 89944%21,13042.0489
299LPMSI00572OBThin GF63Intel i5-12450HGeForce RTX 20508512GB$ 62931%17,45621.2489
532LPASU00584OBTUF Gaming NotebookRyzen 7 5800HGeForce RTX 306016512GB$ 90044%21,13042.0489
582LPHEW01653OB15-ef1013dxAMD Ryzen 7 4700UAMD Radeon 8512GB$ 44522%13,44611.6488
133LPLEN03430IdeaPad Slim 3AMD Ryzen 7 7730UNone8512GB$ 60029%18,82413.2487
367LPGIG00160OBG5 Gaming NotebookIntel i5-12450HGeForce RTX 405016512GB$ 80939%17,45641.9486
498LPMSI00467OBCrosshair 15Intel Core i7-12700HRTX3070Ti16512GB$ 1,12955%26,42452.2486
52LPASU00719G713PU-DS91-CAAMD Ryzen 9 7945HXRTX 4050161TB$ 1,79987%55,50341.9485
429LPMSI00530OBKatana GF66Intel i5-11400HGeForce RTX 30508512GB$ 65131%15,82227.5481
392LPLEN03414IdeaPadIntel i3-1215UIntel HD 4128GB$ 32916%11,0324.2476
310LPACE00967OBNitro 5Intel i9-12900HGeForce RTX 4060161TB$ 1,16955%28,52446.3471
47LPHEW02076Victus Gaming NotebookAMD Ryzen 5 7640HSGeForce RTX 405016512GB$ 99947%23,39041.9469
134LPHEW02079Victus 16AMD Ryzen 7 7840HSGeForce RTX 4060161TB$ 1,19956%28,88746.3463
111LPGIG00147G5Intel i5-12500HGeForce RTX 40608512GB$ 99946%21,52146.3463
461LPASU00666OBVivobook 16AMD Ryzen 5 5600HAMD Radeon 8512GB$ 56926%17,09311.6463
206LPLEN03469OBLegion Pro 5iIntel i7-13700HXGeForce RTX 406016512GB$ 1,34962%34,11046.3461
114LPHEW02095Victus 15-fb1010caAMD Ryzen 5 7535HSGeForce RTX 20508512GB$ 69932%18,44521.2458
358LPMSI00541OBThin GF63Intel i7-12650HGeForce RTX 305016512GB$ 89941%23,28127.5453
533LPACE00877OBNitro 5Intel i7-11800HNVIDIA GeForce RTX306016512GB$ 96144%20,75342.0453
365LPASU00716OBFX507ZC4-DS71-CAIntel i7-12700HNVIDIA RTX 305016512GB$ 98945%26,42427.5452
226LPHEW02100OB15-fd0030caIntel i5-1340PNone16512GB$ 66430%20,20410.6450
339LPLEN03434OBNoneAMD Ryzen 7 7745HXGeForce RTX 406016512GB$ 1,34961%32,90946.3449
326LPMSI00559OBThin GF63Intel i7-12650HGeForce RTX 406016512GB$ 1,07948%23,28146.3449
28LPASU00720G713PV-DS91-CAAMD Ryzen 9 7945HXNVIDIA RTX 4060161TB$ 1,99989%55,50346.3446
124LPASU00809G614JV-DB91-CAIntel i9-13980HXGeForce RTX 4060161TB$ 1,79980%47,99446.3443
405LPCNO00060OBZenBookAMD Ryzen 7 5700UGeForce MX4508256GB$ 57025%15,85412.6442
4LPGIG00162G5 KFIntel i7-12650HGeForce RTX 406016512GB$ 1,09948%23,28146.3441
8LPACE00980Nitro 5AMD Ryzen 7 5800HGeForce RTX 306016512GB$ 99944%21,13042.0440
6LPMSI00572Thin GF63Intel i5-12450HGeForce RTX 20508512GB$ 69931%17,45621.2440
13LPASU00666Vivobook 16AMD Ryzen 5 5600HAMD Radeon 8512GB$ 59926%17,09311.6440
302LPMSI00562OBModern 15AMD Ryzen 7 7730UAMD Radeon 16512GB$ 66429%18,82413.2440
366LPHEW02017OBPavilionIntel i5-1240PIntel Iris Xe8512GB$ 59926%17,32010.6438
588LPACE00816NitroIntel i5-11400HNVIDIA GeForce RTX 30508512GB$ 71631%15,82227.5437
322LPMSI00496OBGF63 11UC-692Intel i5-11400HNVIDIA RTX30508512GB$ 71931%15,82227.5436
383LPASU00688OBTUF Gaming F15Intel Core i9-13900HGeForce RTX 405016512GB$ 1,25955%29,68741.9435
264LPHEW02087OBVictus 15-fb0000caAMD Ryzen 5 5600HGeForce RTX 3050 Ti16512GB$ 76433%17,09328.2435
411LPACE00953Nitro Gaming Notebook AMD Ryzen R5-7535HSGeForce RTX 30508512GB$ 79935%18,44527.5433
512LPHEW01811OBPavilion 15-eh2010caAMD Ryzen 5 5625UAMD Radeon 8512GB$ 55424%15,07811.6430
303LPLEN03442OBIdeaPad Flex 5AMD Ryzen 3 5300UNone4128GB$ 36015%9,7167.6428
3LPHEW0210015-fd0030caIntel i5-1340PNone16512GB$ 69930%20,20410.6427
466LPCNO00053OB15Z-EF2000AMD Ryzen 5 5500UAMD Radeon Vega 78256GB$ 50121%13,14411.6426
175LPHEW02058Victus 15-fa1000caIntel i5-13500HGeForce RTX 405016512GB$ 1,09947%23,28941.9425
1LPACE00967Nitro 5Intel i9-12900HGeForce RTX 4060161TB$ 1,29955%28,52446.3424
495LPHEW01865OBOmen 16-b0020caIntel Core i7-11800HNVIDIA GeForce RTX 3070161TB$ 1,09246%20,75348.0421
220LPASU00808OBTUF Gaming F15Intel i7-11800HGeForce RTX 3050 Ti161TB$ 89938%20,75328.2421
539LPASU00573OBVivobook 15AMD Ryzen 5 5500UAMD Radeon 8512GB$ 50821%13,14411.6421
432LPCNO00060ZenBookAMD Ryzen 7 5700UGeForce MX4508256GB$ 60025%15,85412.6420
298LPASU00715OBTUF F15Intel i9-13900HGeForce RTX 4060161TB$ 1,34957%29,68746.3419
287LPHEW02072OBProBook 445 G9AMD Ryzen 5 5625UNone8256GB$ 56924%15,07811.6418
171LPMSI00562Modern 15 NotebookAMD Ryzen 7 7730UAMD Radeon 16512GB$ 69929%18,82413.2418
362LPHEW02035OBOmen 16-wd0010caIntel i7-13620HGeForce RTX 4060161TB$ 1,25953%26,48946.3417
263LPACE00968OBNitro 5Intel i5-12450HGeForce RTX 406016512GB$ 98941%17,45646.3416
131LPHEW0201715-EG2002CAIntel i5-1240PIntel Iris Xe8512GB$ 63126%17,32010.6416
484LPGIG00133OBA5 K1AMD Ryzen 5 5600HGeForce RTX 306016512GB$ 93739%17,09342.0415
2LPLEN03469Legion Pro 5iIntel i7-13700HXGeForce RTX 406016512GB$ 1,49962%34,11046.3415
493LPMSI00504OBGP66 LeopardIntel Core i7-11800HNVIDIA RTX307016512GB$ 1,11446%20,75348.0413
332LPLEN03438OBLegion Pro 5AMD Ryzen 7 7745HXGeForce RTX 407016512GB$ 1,52963%32,90951.7411
487LPACE00896OBA715AMD Ryzen 7 5700URTX305016512GB$ 76431%15,85427.5410
356LPACE00969Nitro 5Intel i5-11400HGeForce GTX 16508512GB$ 69929%15,82220.8408
172LPMSI00541Thin GF63Intel i7-12650HGeForce RTX 305016512GB$ 99941%23,28127.5408
542LPACE00877Nitro 5Intel i7-11800HNVIDIA GeForce RTX306016512GB$ 1,06844%20,75342.0408
414LPGIG00124OBAERO 16 XE5Intel Core i7-12700HNVIDIA GeForce RTX 3070 Ti322 TB$ 1,35055%26,42452.2407
34LPASU00716TUF F15Intel i7-12700HRTX 305016512GB$ 1,09945%26,42427.5407
363LPLEN03442IdeaPad Flex 5AMD Ryzen 3 5300UNone4128GB$ 37915%9,7167.6406
538LPHEW01773OB15-eg1010ca Intel Core i5-1155G7Intel Iris Xe 8512GB$ 42717%10,27810.6406
482LPCNO0005315Z-EF2000AMD Ryzen 5 5500UAMD Radeon Vega 78256GB$ 52821%13,14411.6405
372LPLEN03434Legion Pro 5AMD Ryzen 7 7745HXGeForce RTX 406016512GB$ 1,49961%32,90946.3405
113LPMSI00559Thin GF63Intel i7-12650HGeForce RTX 406016512GB$ 1,19948%23,28146.3404
557LPASU00573Vivobook 15AMD Ryzen 5 5500UAMD Radeon 8512GB$ 53521%13,14411.6400
273LPASU00785OBFX706HF-DB51-CAIntel i5-11400HGeForce RTX 20508512GB$ 71929%15,82221.2399
324LPHEW02072ProBook 445 G9AMD Ryzen 5 5625UNone8256GB$ 59924%15,07811.6397
473LPASU00658OBZenBook 14AMD Ryzen 5 5600HAMD Radeon Vega 78512GB$ 66426%17,09311.6397
211LPLEN03565OBNoneRyzen 7 7745HXGeForce RTX 4060161TB$ 1,52961%32,90946.3397
319LPMSI00564OBBravo 15AMD Ryzen 7 7735HSGeForce RTX 4060321TB$ 1,25950%24,26446.3395
253LPACE00985OBSwift 3 EVOIntel i5-1240PNone16512GB$ 66426%17,32010.6395
393LPGIG00149OBASF-B3US754SHIntel i9-13900HXGeForce RTX 4070161TB$ 1,98078%44,97751.7394
65LPASU00787FX506HCB-DB59-CAIntel i5-11400HGeForce RTX 30508512GB$ 79931%15,82227.5392
132LPMSI00496GF63Intel i5-11400HRTX30508512GB$ 79931%15,82227.5392
40LPASU00688TUF Gaming F15Intel Core i9-13900HGeForce RTX 405016512GB$ 1,39955%29,68741.9391
18LPHEW02087Victus 15-fb0000caAMD Ryzen 5 5600HGeForce RTX 3050 Ti16512GB$ 84933%17,09328.2391
359LPLEN03433OBLegion Pro 5AMD Ryzen 7 7745HXGeForce RTX 4070161TB$ 1,61963%32,90951.7388
463LPLEN03000OBIdeaPad Flex 5AMD Ryzen 5 5500UAMD Radeon 8512GB$ 55521%13,14411.6385
406LPMSI00539OBKatana 15Intel i7-12650HGeForce RTX 4060161TB$ 1,25948%23,28146.3385
341LPACE00956OBNitro 5Intel i7-12650HGeForce RTX 406016512GB$ 1,25948%23,28146.3385
336LPLEN03435OBLegion Pro 5Intel i7-13700HXGeForce RTX 4060161TB$ 1,61962%34,11046.3384
347LPMSI00560OBThin GF63Intel i5-12450HGeForce RTX 406016512GB$ 1,07941%17,45646.3381
66LPASU00808TUF Gaming F15Intel i7-11800HGeForce RTX 3050 Ti161TB$ 99938%20,75328.2379
0LPASU00715TUF F15Intel i9-13900HGeForce RTX 4060161TB$ 1,49957%29,68746.3377
240LPGIG00152OBAORUS 15Intel Core i7-13700HGeForce RTX 4060161TB$ 1,43954%27,89046.3377
522LPMSI00445OBModern 15Intel Core i5-1155G7Intel Iris Xe8256GB$ 46017%10,27810.6377
201LPHEW01929OBProBook 440 G9Intel Core i5-1235UNone8256GB$ 56921%13,54610.6377
119LPASU00658ZenBook 14AMD Ryzen 5 5600HAMD Radeon Vega 78512GB$ 69926%17,09311.6377
354LPASU00686OBTUF Gaming NotebookAMD Ryzen 7 7735HSAMD Radeon RX 7600S161TB$ 1,34951%24,26448.9377
145LPHEW02035Omen 16-wd0010caIntel i7-13620HGeForce RTX 4060161TB$ 1,39953%26,48946.3376
386LPLEN03352OBThinkBook 15 G3AMD Ryzen 5 5500UAMD Radeon 8256GB$ 56921%13,14411.6376
117LPACE00985Swift 3 EVOIntel i5-1240PNone16512GB$ 69926%17,32010.6375
14LPACE00968Nitro 5Intel i5-12450HGeForce RTX 406016512GB$ 1,09941%17,45646.3374
509LPACE00851OBTravelMate P2Intel Core i5-1135G7Intel HD 8256GB$ 38014%9,8914.2374
16LPLEN03438Legion Pro 5AMD Ryzen 7 7745HXGeForce RTX 407016512GB$ 1,69963%32,90951.7370
544LPCNO00033OBF415EA-UB51Intel Core i5-1135G7Intel Iris Xe 8256GB$ 45617%9,89110.6370
507LPACE00896A715AMD Ryzen 7 5700URTX305016512GB$ 84931%15,85427.5369
147LPLEN03431IdeaPad Slim 5Intel i5-1335UIntel Iris Xe8512GB$ 70026%16,92910.6368
506LPLEN03000IdeaPad Flex 5AMD Ryzen 5 5500UAMD Radeon 8512GB$ 58421%13,14411.6366
323LPACE00946OBNoneIntel i5-1135G7Intel Iris8512GB$ 46317%9,89110.6364
420LPASU00685OBVivoBookIntel Core i3-1115G4Intel UHD 4128GB$ 28410%6,1326.2362
439LPACE00940NitroIntel i7-12700HGeForce RTX 306016512GB$ 1,39951%26,42442.0362
350LPHEW02028OB15-fc0040caAMD Ryzen 7 7730UAMD Radeon 161TB$ 80729%18,82413.2362
268LPASU00784OBVivobook 15AMD Ryzen 7 7730UNone16512GB$ 80729%18,82413.2362
267LPACE00981OBAspire 5AMD Ryzen 3 5300UNone8256GB$ 42715%9,7167.6361
188LPASU00717OBG614JJ-DS71-CAIntel i7-13650HXRTX 3050161TB$ 1,43952%32,15227.5361
79LPLEN0290814 G4 ABAAMD Ryzen 7 5825UNone16512 GB$ 79929%18,45813.2360
123LPASU00785TUF Gaming NotebookIntel i5-11400HGeForce RTX 20508512GB$ 79929%15,82221.2359
149LPMSI00445Modern 15 A11MU-863CAIntel Core i5-1155G7Intel Iris Xe8256GB$ 48417%10,27810.6358
35LPHEW01929ProBook 440 G9Intel Core i5-1235UNone8256GB$ 59921%13,54610.6358
464LPLEN03130OBNoneAMD Ryzen 5 5625UAMD Radeon 12512GB$ 66524%15,07811.6358
289LPASU00760OBVivobook 16XIntel i9-13900HGeforce RTX 405016512GB$ 1,52955%29,68741.9358
45LPLEN03565Legion Pro 5 16ARX8Ryzen 7 7745HXGeForce RTX 4060161TB$ 1,69961%32,90946.3357
421LPLEN03352ThinkBook 15 G3AMD Ryzen 5 5500UAMD Radeon 8256GB$ 59921%13,14411.6357
385LPACE00888OBTravelMate P2Intel Core i5-1135G7Intel Iris Xe 8256GB$ 47417%9,89110.6356
19LPMSI00564Bravo 15AMD Ryzen 7 7735HSGeForce RTX 4060321TB$ 1,39950%24,26446.3355
179LPGIG00149NoneIntel i9-13900HXGeForce RTX 4070161TB$ 2,20078%44,97751.7355
477LPCNO00048OBVivoBook RIntel Core i5-1135G7Intel Iris Xe 8256GB$ 47517%9,89110.6355
541LPHUA00040OBMateBook D15Intel i5-1135G7Intel Iris Xe 8512GB$ 47517%9,89110.6355
317LPMSI00536OBKatana GF66Intel i7-12650HGeForce RTX 3050 Ti16512GB$ 1,15941%23,28128.2354
237LPLEN03390OBThinkPad T14 G3Ryzen 5 Pro 6650UAMD Radeon 660M16256GB$ 75927%16,75213.6352
465LPASU00627OBTUF507RR-DS71-CAAMD Ryzen 7 6800HGeForce RTX 307016512GB$ 1,41250%23,65448.0352
30LPLEN03433Legion Pro 5AMD Ryzen 7 7745HXGeForce RTX 4070161TB$ 1,79963%32,90951.7349
222LPASU00786OBVivobook 16XIntel i5-1235UNone8512GB$ 61721%13,54610.6348
294LPHEW02024OBConsumer Notebook 17Intel i5-1335UIntel Iris Xe81TB$ 74026%16,92910.6348
491LPLEN03086OBLegion 5Intel i7-12700HGeForce RTX 307016512GB$ 1,53053%26,42448.0347
353LPLEN03437OBLegion Pro 5Intel i9-13900HXGeForce RTX 407016512GB$ 2,24978%44,97751.7347
136LPACE00956Nitro 5Intel i7-12650HGeForce RTX 406016512GB$ 1,39948%23,28146.3347
11LPMSI00539Katana 15Intel i7-12650HGeForce RTX 4060161TB$ 1,39948%23,28146.3347
415LPACE00946NoneIntel i5-1135G7Intel Iris8512GB$ 48717%9,89110.6346
400LPMSI00540OBThin GF63Intel i7-12650HGeForce RTX 405016512GB$ 1,34947%23,28141.9346
41LPLEN03435Legion Pro 5Intel i7-13700HXGeForce RTX 4060161TB$ 1,79962%34,11046.3345
115LPASU00685VivoBook F415EA-AS31Intel Core i3-1115G4Intel UHD 4128GB$ 29910%6,1326.2344
283LPASU00783OBZenbook 14 OLEDAMD Ryzen 7 5825UNone16512GB$ 83529%18,45813.2344
27LPASU00784Vivobook 15 OLEDAMD Ryzen 7 7730UNone16512GB$ 84929%18,82413.2344
22LPHEW0202815-fc0040caAMD Ryzen 7 7730UAMD Radeon 161TB$ 84929%18,82413.2344
50LPMSI00560Thin GF63Intel i5-12450HGeForce RTX 406016512GB$ 1,19941%17,45646.3343
12LPACE00981Aspire 5AMD Ryzen 3 5300UNone8256GB$ 44915%9,7167.6343
565LPASU00556G17AMD Ryzen 7 4800HNVIDIA GeForce RTX 3060161TB$ 1,19741%18,65342.0342
107LPLEN02956ThinkBook 14 G4 ABAAMD Ryzen 5 5625UNone16256GB$ 69924%15,07811.6341
125LPLEN03130Consumer LaptopAMD Ryzen 5 5625UAMD Radeon 12512GB$ 70024%15,07811.6340
146LPGIG00152AORUS 15Intel Core i7-13700HGeForce RTX 4060161TB$ 1,59954%27,89046.3340
231LPHEW02099OB17-cn3020caIntel i5-1335UNone16512GB$ 75926%16,92910.6339
173LPASU00686TUF Gaming NotebookAMD Ryzen 7 7735HSAMD Radeon RX 7600S161TB$ 1,49951%24,26448.9339
225LPMSI00593OBKatana 17Intel i7-13620HGeForce RTX 4070161TB$ 1,61955%26,48951.7338
476LPHEW01913OB15-DY2067MSIntel Core i5-1135G7Intel Iris X 12256GB$ 49917%9,89110.6338
520LPACE00888TravelMate P2Intel Core i5-1135G7None8256 GB$ 49917%9,89110.6338
492LPLEN03001OB82RG006WCC (Open Box)AMD Ryzen 7 6800HGeForce RTX 3060161TB$ 1,39847%23,65442.0338
571LPHUA00040MateBook D15Intel i5-1135G7Intel Iris Xe 8512GB$ 50017%9,89110.6337
249LPMSI00575OBModern 15Intel i7-1255UIntel Iris Xe16512GB$ 66422%13,77212.1337
37LPLEN0339021CF000CUSRyzen 5 Pro 6650UAMD Radeon 660M16256GB$ 79927%16,75213.6335
403LPASU00735OBVivobook 16XIntel i5-12500HIris Xe 16512GB$ 94432%21,52110.6334
251LPMSI00565OBBravo 15AMD Ryzen 7 7735HSGeForce RTX 4050161TB$ 1,43948%24,26441.9333
21LPASU00786Vivobook 16XIntel i5-1235UNone8512GB$ 64921%13,54610.6331
167LPHEW02024Consumer NotebookIntel i5-1335UIntel Iris Xe81TB$ 77926%16,92910.6330
335LPGIG00157OBAERO 14 OLEDIntel i5-12500HRTX 4050161TB$ 1,34944%21,52141.9330
504LPASU00625OBG15AMD Ryzen 9 6900HXGeForce RTX 3070 Ti161TB$ 1,62053%24,88752.2327
248LPMSI00580OBPulse 17Intel i9-13900HGeForce RTX 4070161TB$ 1,79959%29,68751.7327
562LPHEW0173316-c0010caAMD Ryzen 7 5800HNVIDIA GeForce RTX 3050 Ti161TB$ 1,17338%21,13028.2327
300LPLEN03436OBLegion Pro 5Intel i7-13700HXGeForce RTX 4070161TB$ 1,97964%34,11051.7325
524LPASU00583OBTUF Gaming NotebookRyzen 5 4600HGeForce GTX 16508512GB$ 82827%14,52520.8325
100LPLEN0361121KJ000EUSAMD Ryzen 7 7730U Octa-core (8 Core)None16512 GB$ 89929%18,82413.2325
88LPASU00717G614JJ-DS71-CAIntel i7-13650HXRTX 3050161TB$ 1,59952%32,15227.5325
223LPACE00984OBAspire 3Intel i5-1235UNone16512GB$ 66421%13,54610.6323
311LPLEN03456OBIdeaPadIntel i5-1135G7None8512GB$ 52217%9,89110.6323
187LPASU00500OBExpertBook B1Intel i5 1135G7None8256GB$ 52217%9,89110.6323
166LPMSI00561Bravo 15AMD Ryzen 7 7735HSGeForce RTX 305016512GB$ 1,29942%24,26427.5323
449LPLEN03212OBIdeaPad 5Intel Core i5-1235UIntel Iris Xe8512GB$ 66521%13,54610.6323
56LPASU00760Vivobook 16XIntel i9-13900HGeForce RTX 405016512GB$ 1,69955%29,68741.9322
89LPACE00960PH16-71-72YGIntel i7-13700HXGeForce RTX 4070161TB$ 1,99964%34,11051.7322
23LPHEW0209917-cn3020caIntel i5-1335UNone16512GB$ 79926%16,92910.6322
228LPLEN03569OBV14Ryzen 5 5500UNone16512GB$ 66421%13,14411.6322
31LPMSI00575Modern 15Intel i7-1255UIntel Iris Xe16512GB$ 69922%13,77212.1320
282LPLEN03432OBIdeaPad Flex 5AMD Ryzen 5 7530UNone16512GB$ 80726%16,50711.6318
410LPACE00955NH.QLZAA.005Intel i5-12500HGeForce RTX 40508512GB$ 1,40044%21,52141.9318
440LPASU00735Vivobook 16XIntel i5-12500HIris Xe 16512GB$ 99432%21,52110.6317
435LPMSI00543Katana GF76Intel i7-11800HGeForce RTX 3050 Ti16512GB$ 1,19938%20,75328.2315
320LPMSI00553OBVector GP68HXIntel i9-12900HXGeForce RTX 4080321TB$ 2,24971%34,93764.9315
334LPGIG00148OBAORUS Gaming NotebookIntel i7-13700HGeForce RTX 4070161TB$ 1,79957%27,89051.7314
291LPASU00782OBVivobook GoAMD Ryzen 3 7320UNone8128GB$ 42713%9,0664.6313
189LPLEN03685OBIdeaPad Slim 3 15AMN8AMD Ryzen 3 7320UNone8256GB$ 42713%9,0664.6313
371LPLEN03437NoneIntel i9-13900HXGeForce RTX 407016512GB$ 2,49978%44,97751.7312
43LPMSI00540Thin GF63Intel i7-12650HGeForce RTX 405016512GB$ 1,49947%23,28141.9311
247LPASU00779OBZenbook 14X OLEDIntel i7-12700HIntel Iris Xe161TB$ 1,23438%26,42412.1311
238LPHUA00042OBMatebook D14Intel i7-1360PNone161TB$ 94929%19,30912.1309
453LPGIG00141OBAORUS 17Intel i7-12700HGeForce RTX 3080 Ti321TB$ 1,79956%26,42453.7309
195LPASU00721OBG733PZ-XS96AMD Ryzen 9 7945HXRTX 4080321TB$ 3,14997%55,50364.9307
355LPGIG00154OBAERO 14Intel Core i7-13700HGeForce RTX 4050161TB$ 1,70952%27,89041.9307
38LPACE00984Aspire 3Intel i5-1235UNone16512GB$ 69921%13,54610.6307
61LPASU00500ExpertBook B1Intel i5 1135G7None8256GB$ 54917%9,89110.6307
128LPLEN03456IdeaPadIntel i5-1135G7None8512GB$ 54917%9,89110.6307
545LPLEN02719OBT470Intel Core i5-6300UIntel HD 6208256 GB$ 2638%3,2409.6307
25LPLEN03569V14Ryzen 5 5500UNone16512GB$ 69921%13,14411.6306
349LPMSI00563OBModern 15Intel i5-1155G7Intel Iris Xe16512GB$ 56917%10,27810.6305
29LPMSI00593Katana 17Intel i7-13620HGeForce RTX 4070161TB$ 1,79955%26,48951.7304
342LPMSI00581Modern 15AMD Ryzen 5-7530UNone16512GB$ 84926%16,50711.6302
120LPLEN03432NoneAMD Ryzen 5 7530UNone16512GB$ 84926%16,50711.6302
271LPHEW01967OBProBook 440 G9Intel i5-1235UNone16256GB$ 71221%13,54610.6302
48LPMSI00565Bravo 15AMD Ryzen 7 7735HSGeForce RTX 4050161TB$ 1,59948%24,26441.9300
469LPCNO00052OBVivoBook F515Intel Core i7-1165G7Intel Iris Xe 8512GB$ 60318%10,34712.1299
69LPGIG00151BSF-73US754SHIntel i7-13700HGeForce RTX 4070161TB$ 1,89957%27,89051.7298
585LPHEW01543OBNotebookAMD Ryzen 7 5700UAMD Radeon 161TB$ 85525%15,85413.2298
24LPLEN03685IdeaPad Slim 3 15AMN8AMD Ryzen 3 7320UNone8256GB$ 44913%9,0664.6297
53LPASU00782Vivobook GoAMD Ryzen 3 7320UNone8128GB$ 44913%9,0664.6297
255LPCNO00061OBF1500EA-WB51Intel i5-1135G7None8256GB$ 56817%9,89110.6297
314LPGIG00161NoneIntel i5-12500HGeForce RTX 405016512GB$ 1,49944%21,52141.9297
178LPGIG00157AERO 14Intel i5-12500HRTX 4050161TB$ 1,49944%21,52141.9297
395LPGIG00158AORUS Gaming NotebookIntel i5-12500HGeForce RTX 40508512GB$ 1,49944%21,52141.9297
560LPHUA00036OBMateBook D15Intel i5-1135G7Intel Iris Xe 8512GB$ 56917%9,89110.6296
229LPASU00581OBExpertBook B1Intel i5-1135G7None8256GB$ 56917%9,89110.6296
408LPACE00958PHN16-71-788NIntel i7-13700HXGeForce RTX 4060161024GB$ 2,10062%34,11046.3296
304LPASU00561OBExpertBook B1Intel Core i5-1135G7Intel Iris Xe G78256GB$ 57017%9,89110.6296
158LPASU00779Zenbook 14X OLEDIntel i7-12700HIntel Iris Xe161TB$ 1,29938%26,42412.1295
68LPMSI00580Pulse 17Intel i9-13900HGeForce RTX 4070161TB$ 1,99959%29,68751.7294
46LPHUA00042Matebook D14Intel i7-1360PNone161TB$ 99929%19,30912.1294
198LPLEN03707V15 G4Intel i3-1315UIntel UHD 16512GB$ 69920%13,0049.9293
276LPLEN00715OBNoneIntel Core i5-8365UNone16256 GB$ 35911%6,2456.4293
262LPLEN03493OBThinkbook T490Intel i5-8365UNone16256GB$ 35911%6,2456.4293
135LPLEN03436Legion Pro 5Intel i7-13700HXGeForce RTX 4070161TB$ 2,19964%34,11051.7293
151LPASU00761Vivobook Pro 16X OLEDIntel i9-13980HXGeforce RTX 4070321TB$ 2,79982%47,99451.7293
84LPHEW0210114-ep0000caIntel i3-N305None8256GB$ 54916%9,9788.4292
204LPLEN03518OBThinkbook T480sIntel i5-8350UNone16256GB$ 35910%6,2266.4292
543LPLEN02718OBNoneIntel Core i5-8350UIntel UHD 62016256 GB$ 35910%6,2266.4292
425LPGIG00153G5 MFIntel i5-12450HGeForce RTX 40508512GB$ 1,34939%17,45641.9292
141LPMSI00563Modern 15 NotebookIntel i5-1155G7Intel Iris Xe16512GB$ 59917%10,27810.6290
394LPGIG00159AORUS Gaming NotebookIntel i5-12500HGeForce RTX 406016512GB$ 1,59946%21,52146.3289
475LPLEN03049OBLegion 5AMD Ryzen 7 6800HGeForce RTX 3070 Ti16512GB$ 1,78051%23,65452.2289
293LPASU00780OBZenbookIntel i7-12700HNone161TB$ 1,32938%26,42412.1288
470LPASU00610OBTUF517ZC-DS51-CAIntel i5-12450HGeForce RTX 305016512GB$ 1,15933%17,45627.5288
15LPHEW01967ProBook 440 G9Intel i5-1235UNone16256GB$ 74921%13,54610.6287
344LPMSI00578Modern 14Intel i5-1335UNone16512GB$ 89926%16,92910.6286
217LPGIG00156OBAERO 16 OLEDIntel i7-13700HGeForce RTX 4070161TB$ 1,97957%27,89051.7286
333LPLEN03312OBT490Intel i5-8265UIntel UHD 16256GB$ 35910%6,0236.4285
213LPLEN03503OBLegion Slim 7iIntel i9-13900HGeForce RTX 4070321TB$ 2,06959%29,68751.7284
26LPMSI00553Vector GP68HXIntel i9-12900HXGeForce RTX 4080321TB$ 2,49971%34,93764.9284
584LPMSI00293OBGF75 10UEK-003CAIntel Core i7-10750HRTX306016512GB$ 1,14633%12,01242.0284
443LPMSI00537Pulse 17Intel i7-13700HGeForce RTX 4070161TB$ 1,99957%27,89051.7283
168LPGIG00148NoneIntel i7-13700HGeForce RTX 4070161TB$ 1,99957%27,89051.7283
589LPHEW0154315-ef2030caAMD Ryzen 7 5700UAMD Radeon 161TB$ 90025%15,85413.2283
352LPASU00726OBGV302XU-DS91T-CAAMD Ryzen 9 7940HSRTX 4050161TB$ 1,97956%30,59441.9282
417LPMSI00538OBKatana 17 B12VGK-217CAIntel i7-12650HGeForce RTX 4070161TB$ 1,79951%23,28151.7282
233LPLEN03567OBThinkPad X1 Gen 3Intel i7-8550UN/A16256GB$ 35910%5,9296.4282
118LPCNO00061Vivobook F SeriesIntel i5-1135G7None8256GB$ 59817%9,89110.6282
54LPASU00581ExpertBook B1Intel i5-1135G7None8256GB$ 59917%9,89110.6281
575LPHUA00036MateBook D15Intel i5-1135G7Intel Iris Xe 8512GB$ 59917%9,89110.6281
361LPHEW02021OB14-em0030caAMD Ryzen 3 7320URadeon 8256GB$ 47413%9,0664.6281
272LPASU00764OBZenbook 15 OLEDAMD Ryzen 7 7735UAMD Radeon 161TB$ 1,23435%21,35018.8281
607LPASU00561ExpertBook B1Intel Core i5-1135G7Intel Iris Xe G78256GB$ 60017%9,89110.6281
270LPLEN03428OBIdeaPad Slim 3AMD Ryzen 3 7320UAMD Radeon 610M 8512GB$ 47513%9,0664.6281
76LPACE00994VeroIntel i7-1255UIntel Iris Xe 161TB$ 79922%13,77212.1280
67LPGIG00145NoneIntel Core i9-13900HXGeForce RTX 4080161TB$ 2,99984%44,97764.9279
161LPACE00961Predator HeliosIntel i9-13900HXGeForce RTX 4080321 TB$ 2,99984%44,97764.9279
412LPACE00952Nitro 5Intel i5-12450HGeForce RTX 30508512GB$ 1,20033%17,45627.5278
144LPGIG00141YE5-74US544SHIntel i7-12700HGeForce RTX 3080 Ti321TB$ 1,99956%26,42453.7278
59LPASU00721ROG StrixAMD Ryzen 9 7945HXRTX 4080321TB$ 3,49997%55,50364.9277
152LPGIG00154AERO 14Intel Core i7-13700HGeForce RTX 4050161TB$ 1,89952%27,89041.9276
409LPACE00957AN16-51-74BVIntel i7-13700HGeForce RTX 4050161024GB$ 1,90052%27,89041.9276
424LPGIG00146OB17HIntel i7-13700HRTX 4080161TB$ 2,24962%27,89064.9276
376LPACE00963AN515-58-7578Intel i7-12650HGeForce RTX 4050161TB$ 1,70047%23,28141.9275
157LPASU00780ZenbookIntel i7-12700HNone161TB$ 1,39938%26,42412.1274
382LPASU00752OBVivobook 17Intel i7-1165G7Intel Iris Xe 8512GB$ 66418%10,34712.1272
407LPACE00959PH16-71-71AVIntel i7-13700HXGeForce RTX 4060161024GB$ 2,30062%34,11046.3270
364LPMSI00498OBSUMMIT E14Intel i7-1280PIris Xe 161TB$ 1,14231%20,45012.1270
426LPGIG00150AORUS 15XIntel i7-13700HXGeForce RTX 4070161TB$ 2,39964%34,11051.7268
126LPHEW02021Consumer Laptop 14AMD Ryzen 3 7320URadeon 8256GB$ 49913%9,0664.6267
143LPASU00764Zenbook 15 OLEDAMD Ryzen 7 7735UAMD Radeon 161TB$ 1,29935%21,35018.8267
160LPLEN03428IdeaPad Slim 3AMD Ryzen 3 7320UAMD Radeon 610M 8512GB$ 50013%9,0664.6267
64LPASU00800Vivobook S 15 OLEDIntel i9-13900HNone161TB$ 1,59942%29,68712.1265
227LPLEN03429OBIdeaPad Slim 3AMD Ryzen 5 7520UAMD Radeon 610M8512GB$ 52214%9,4754.6265
404LPMSI00481OBRaider GE76Intel i9-12900HKRTX3080TI321TB$ 2,17358%28,08553.7265
150LPLEN00715ThinkPad T490Intel i5-8365UNone16256GB$ 39911%6,2456.4264
20LPLEN03493NoneIntel i5-8365UNone16256GB$ 39911%6,2456.4264
250LPMSI00592Stealth 14StudioIntel i7-13620HGeForce RTX 305016512GB$ 1,69945%26,48927.5264
42LPLEN03518Thinkbook T480sIntel i5-8350UNone16256GB$ 39910%6,2266.4263
555LPLEN02718ThinkPad T480Intel Core i5-8350UIntel UHD 62016256 GB$ 39910%6,2266.4263
451LPLEN03268ThinkPad T580Intel Core i5-8350UNone16256GB$ 40010%6,2266.4262
389LPASU00724OBGU604VI-DS92-CAIntel i9-13900HGeForce RTX 4070321TB$ 2,24959%29,68751.7261
418LPHEW02012Chromebook C204MA-SS02-CBIntel Celeron-N4020Intel UHD 432GB eMMC$ 993%1,5561.5261
203LPLEN03578OBYoga L390Intel i5-8365UNone16256GB$ 40411%6,2456.4260
138LPACE00966Nitro 17AMD Ryzen 7 7735HSGeForce RTX 4070321TB$ 1,99952%24,26451.7260
457LPLEN03202OBThinkPad X380 YogaIntel i5-8350UIntegrated16512GB$ 40410%6,2266.4260
181LPASU00759H7604JI-XS91T-CAIntel i9-13980HXGeforce RTX 4070321TB$ 3,15482%47,99451.7260
534LPASU00610TUF517ZC-DS51-CAIntel i5-12450HGeForce RTX 305016512GB$ 1,28833%17,45627.5259
503LPGIG00134A7 K1AMD Ryzen 7 5800HGeForce RTX 306016512GB$ 1,69944%21,13042.0259
357LPMSI00568OBModernIntel i5-1235UIntel Iris Xe16512GB$ 83021%13,54610.6259
32LPASU00752Vivobook 17Intel i7-1165G7Intel Iris Xe 8512GB$ 69918%10,34712.1258
370LPMSI00567Thin GF63Intel Core i5-12450HGeForce RTX 406016512GB$ 1,59941%17,45646.3257
51LPMSI00555Stealth 15Intel i9-13900HGeForce RTX 4060321TB$ 2,19957%29,68746.3257
182LPGIG00156AERO 16 OLEDIntel i7-13700HGeForce RTX 4070161TB$ 2,19957%27,89051.7257
241LPLEN03403OBT480sIntel i7-8550UIntel UHD 62024256GB$ 39410%5,9296.4257
313LPLEN00182OBThinkPad T480sIntel Core i7-8550UNone16256 GB$ 39410%5,9296.4257
433LPLEN03312T490Intel i5-8265UIntel UHD 16256GB$ 39910%6,0236.4257
102LPLEN0360021KK0009USAMD Ryzen 5 7530U Hexa-core (6 Core)None16512 GB$ 99926%16,50711.6256
399LPASU00707OBZenbook OLEDAMD Ryzen 7 7730UAMD Radeon161TB$ 1,13929%18,82413.2256
266LPASU00763OBVivobook S 16 FlipIntel i5-1335UIntel HD 16512GB$ 90223%16,9294.2256
10LPLEN0350382Y3007HCCIntel i9-13900HNVIDIA GeForce RTX 4070321TB$ 2,29959%29,68751.7256
537LPHEW01738OBProbook 640Intel Core i5-6300UIntel HD 52016512GB$ 2436%3,2405.1255
140LPASU00726GV302XU-DS91T-CAAMD Ryzen 9 7940HSRTX 4050161TB$ 2,19956%30,59441.9254
257LPLEN02154OB20WM0085USIntel i5-1135G7None8256GB$ 66417%9,89110.6254
442LPMSI00538Katana 17 B12VGK-217CAIntel i7-12650HGeForce RTX 4070161TB$ 1,99951%23,28151.7254
33LPLEN03567ThinkPad X1 Gen 3Intel i7-8550UNone16256GB$ 39910%5,9296.4254
494LPGIG00136AORUS 5 KE4Intel Core i7-12700HGeForce RTX 3060161TB$ 1,99951%26,42442.0254
570LPHUA00035OBMatebook 14Intel Core i5-1135G7Intel Iris Xe 16512GB$ 66517%9,89110.6253
391LPACE00945OBAspireIntel i5-10210UNone8256GB$ 41510%6,2286.4253
375LPACE00965NitroAMD Ryzen 7 7735HSGeForce RTX 4050161TB$ 1,89948%24,26441.9252
165LPLEN03429IdeaPad Slim 3AMD Ryzen 5 7520UAMD Radeon 610M8512GB$ 55014%9,4754.6252
580LPMSI00381OBPrestige 14Intel Core i7-1185G7NVIDIA GeForce MX450161TB$ 73619%10,55312.6252
239LPHEW01946OBNoneIntel i5-1235UNone16256GB$ 85421%13,54610.6251
343LPMSI00579Stealth 14StudioIntel i7-13620HGeForce RTX 4060161TB$ 2,09953%26,48946.3250
162LPASU00718G634JZ-XS96Intel i9-13980HXRTX 4080321TB$ 3,49987%47,99464.9250
184LPASU00727GV601VU-DS91T-CAIntel Core i9-13900HRTX 4050161TB$ 2,19955%29,68741.9249
70LPGIG00146NoneIntel i7-13700HRTX 4080161TB$ 2,49962%27,89064.9248
508LPASU00621OBGA503RS-XS92-CAAMD Ryzen 9 6900HSGeForce RTX 3080321TB$ 2,01650%23,90147.4247
39LPASU00707ZenbookAMD Ryzen 7 7730UAMD Radeon161TB$ 1,19929%18,82413.2243
569LPLGE00019OBgramIntel i5-1155G7Intel Iris Xe 8512GB$ 71217%10,27810.6243
292LPHEW02023OBConsumer NotebookAMD Ryzen 5 7520UAMD Radeon 8512GB$ 56914%9,4754.6243
516LPASU00603OBVivobook 15Intel Core i7-1165G7Intel Iris Xe 12512GB$ 74218%10,34712.1243
63LPASU00763Vivobook S 16 FlipIntel i5-1335UIntel HD 16512GB$ 94923%16,9294.2243
235LPGIG00164AORUS 17XIntel i9-13980HXGeForce RTX 4080161TB$ 3,59987%47,99464.9243
286LPASU00770OBGA402XZ-CS94AMD Ryzen 9 7940HSGeForce RTX 4080161TB$ 2,69965%30,59464.9242
73LPASU00729Zephyrus DuoAMD Ryzen 9 7945HXRTX 4080321TB$ 3,99997%55,50364.9242
103LPLEN0350821JR001QUSAMD Ryzen 5 7530U (Hexa-core, 6 Core) None8256 GB$ 1,06226%16,50711.6241
164LPLEN0215420WM0085USIntel i5-1135G7None8256GB$ 69917%9,89110.6241
521LPSAS00117Galaxy BookIntel i5-1135G7Intel Iris Xe 8256GB$ 69917%9,89110.6241
380LPMSI00550Raider GE78HXIntel i9-13980HXGeForce RTX 4070322TB$ 3,39982%47,99451.7241
121LPHUA00035Matebook 14Intel Core i5-1135G7Intel Iris Xe 16512GB$ 70017%9,89110.6241
548LPHUA00037OBMateBook 14sIntel Core i7-11370HIntel Iris Xe 16512GB$ 82420%11,76012.1241
416LPACE00945Aspire A515-54-54B9Intel i5-10210UNone8256GB$ 43710%6,2286.4240
318LPHEW02077OMENAMD Ryzen 9 7940HSGeForce RTX 4070322TB$ 2,49960%30,59451.7240
490LPLEN03099ThinkPad E15 Gen 4AMD Ryzen 7 5825U Octa-core (8 Core) 2 GHzAMD Radeon 16512GB$ 1,19929%18,45813.2240
90LPLEN03055ThinkBook 15 G4Intel Core i5-1235UNone16256GB$ 89921%13,54610.6239
5LPHEW01946ProBook 450 G9Intel i5-1235UNone16256GB$ 89921%13,54610.6239
93LPMSI00548Vector GP78 HXIntel i9-13950HXGeForce RTX 4080321TB$ 3,49983%44,93164.9239
419LPGIG00144OBAZF-B5US665SPIntel Core i9-13900HXRTX 4090322TB$ 3,64587%44,97772.6238
576LPASU00540VivoBook Pro 16XAMD Ryzen 7 5800HNVIDIA GeForce RTX 305016512GB$ 1,59938%21,13027.5238
199LPLEN03706V15 G4AMD Ryzen 5 5500UIntegrated graphics16512GB$ 89921%13,14411.6238
540LPHUA00039OBMateBook 14si7-11370HIntel Iris Xe 16512GB$ 83920%11,76012.1236
423LPLEN03338ThinkPad T14s Gen 2AMD Ryzen 5 PRO 5650U Hexa-core (6 Core) 2.30 GHzNonenan256 GB$ 99924%14,92211.6236
369LPLGE00027OBgramIntel i5-1240PIntel Iris Xe 8512GB$ 1,10926%17,32010.6236
338LPLEN03301OBIdeaPad Flex 5Intel i7-1255UNone16512GB$ 94922%13,77212.1236
269LPHEW01822OBProBook 450 G9Intel i7-1255UNone16512GB$ 94922%13,77212.1236
148LPGIG00155AERO 16 OLEDIntel i9-13900HGeForce RTX 4070321TB$ 2,49959%29,68751.7235
55LPASU00724ROG ZephyrusIntel i9-13900HGeForce RTX 4070321TB$ 2,49959%29,68751.7235
156LPASU00766Zenbook Pro 14Intel i9-13900HGeForce RTX 4070321TB$ 2,49959%29,68751.7235
49LPLEN03578Yoga L390Intel i5-8365UNone16256GB$ 44911%6,2456.4234
191LPLEN03577OBThinkPad T480Intel i5-8365UNone16512GB$ 44911%6,2456.4234
236LPLEN03559OBNoneIntel i5-8365UIntel UHD 62016512GB$ 44911%6,2456.4234
485LPASU00609OBTUF Gaming NotebookIntel Core i5-10300HGeForce GTX 165081TB$ 82419%8,47420.8234
154LPLEN03202X380 YogaIntel i5-8350UIntegrated GPU16512GB$ 44910%6,2266.4234
459LPMSI00514OBSummit E13 Flip EvoIntel Core i7-1280PIntel Iris Xe161TB$ 1,31831%20,45012.1234
81LPASU00723GA402NJ-DS71-CAAMD Ryzen 7 7735HSRTX 305016512GB$ 1,79942%24,26427.5233
279LPLEN03521NoneAMD Ryzen 5 7530UNone16256GB$ 1,09926%16,50711.6233
428LPLEN03299OBThinkPad T14 Gen 2Intel Core i5-1135G7GeForce MX450 2GB8256GB$ 76018%9,89112.6233
467LPACE00880OBAspire A515-54Intel i7-10510UNone8512GB$ 47511%6,6486.4232
57LPHEW02023Consumer Notebook 14AMD Ryzen 5 7520UAMD Radeon 8512GB$ 59914%9,4754.6231
546LPASU00603Vivobook 15Intel Core i7-1165G7Intel Iris Xe 12512GB$ 78118%10,34712.1231
142LPLEN03403T480sIntel i7-8550UIntel UHD 62024256GB$ 43810%5,9296.4231
139LPLEN00182ThinkPad T480sIntel Core i7-8550UNone16256GB$ 43810%5,9296.4231
474LPMSI00516Modern 14 Business NotebookIntel Core i5-1235UIntel Iris Xe8512GB$ 92921%13,54610.6231
518LPLGE00025gramIntel i5-1240PNone8512GB$ 1,13626%17,32010.6231
458LPMSI00524GP66 LeopardIntel Core i7-11800HNVIDIA RTX307016512GB$ 1,99946%20,75348.0230
510LPMSI00497Pulse GL66Intel i7-11800HRTX307016512GB$ 2,00046%20,75348.0230
483LPLGE00026OBGramIntel i7-1260PIntel Iris Xe 16512GB$ 1,16327%17,23112.1230
101LPLEN03602NoneIntel Core i5-1335UNone16256GB$ 1,11926%16,92910.6230
489LPLGE00021OBgramIntel i5-1155G7Intel Iris Xe 8512GB$ 76017%10,27810.6228
246LPLEN03552OBX1 Yoga G4Intel i5-8265UNone16512GB$ 44910%6,0236.4228
497LPASU00559OBZenbook NotebookIntel Core i5-1135G7Intel Iris Xe 8256GB$ 74217%9,89110.6227
153LPASU00722G834JY-XS97Intel i9-13980HXRTX 4090322TB$ 3,99991%47,99472.6226
572LPHUA00039MateBook 14sIntel i7-11370HIntel Iris Xe 16512GB$ 88320%11,76012.1225
517LPLGE00027gramIntel i5-1240PIntel Iris Xe 8512GB$ 1,16826%17,32010.6225
478LPMSI00513Katana GF76Intel Core i7-12700HGeForce RTX3070TI161TB$ 2,44955%26,42452.2224
127LPHEW01822ProBook 450 G9Intel i7-1255UNone16512GB$ 99922%13,77212.1224
242LPLEN03568V14Intel i7-1255UNone16512GB$ 99922%13,77212.1224
438LPLEN03301IdeaPad Flex 5Intel i7-1255UNone16512GB$ 99922%13,77212.1224
480LPGIG00138AERO 16Intel Core i9-12900HGeForce RTX 3080 Ti322TB$ 2,59958%28,52453.7224
297LPMSI00588Prestige 16EVOIntel i7-13700HNone321TB$ 1,79940%27,89012.1223
296LPMSI00589Creator Z17HXStudioIntel i9-13950HXGeForce RTX 4060321TB$ 3,39976%44,93146.3223
316LPHEW01834OBEliteBook 640 G9Intel i5-1245UNone16512GB$ 96121%13,48110.6222
212LPASU00560OBExpertBook B1Intel i5-1135G7None8256GB$ 75917%9,89110.6222
513LPASU00621GA503RS-XS92-CAAMD Ryzen 9 6900HSGeForce RTX 3080321TB$ 2,24050%23,90147.4222
566LPHUA00038OBMatebook 14i5-1135G7Intel Iris Xe 16512GB$ 76017%9,89110.6222
441LPLEN03299ThinkPad T14 Gen 2Intel Core i5-1135G7GeForce MX450 2GB8256GB$ 80018%9,89112.6221
535LPACE00880Aspire A515-54Intel i7-10510UNone8512GB$ 50011%6,6486.4221
444LPASU00731ROG FlowIntel i9-13900HRTX 4050161TB$ 2,49955%29,68741.9219
275LPLEN0354421JR001RUSRyzen 5 7530UNone16256 GB$ 1,17426%16,50711.6218
60LPASU00770GA402XZ-CS94AMD Ryzen 9 7940HSGeForce RTX 4080161TB$ 2,99965%30,59464.9218
96LPHEW02036NoneIntel i9-13900HXGeForce RTX 4090322TB$ 3,99987%44,97772.6217
563LPASU00559Zenbook NotebookIntel Core i5-1135G7Intel Iris Xe 8256GB$ 78117%9,89110.6216
219LPGIG00137OBAERO 16Intel Core i9-12900HNVIDIA RTX 3080 Ti642TB$ 2,69958%28,52453.7215
197LPLEN03708V15 G4Intel i5-1335UNone161TB$ 1,19926%16,92910.6215
234LPLEN03564OBThinkPad X1Intel i7-8650UNone16256GB$ 49411%6,2886.4214
592LPLEN0213120Y70037USAMD Ryzen 5 5500UNone8256GB$ 99921%13,14411.6214
218LPLEN03487OBThinkPad E16Intel i7-1355UNone16512GB$ 1,13924%15,29412.1213
564LPASU00558Zenbook Pro 15AMD Ryzen 9 5900HXNVIDIA GeForce RTX 3050Ti16512GB$ 1,89940%22,67828.2212
515LPHEW01834EliteBook 640 G9Intel i5-1245UNone16512GB$ 1,01221%13,48110.6211
36LPASU00560ExpertBook B1Intel i5-1135G7None8256GB$ 79917%9,89110.6211
83LPLEN03577ThinkPad T480Intel i5-8365UNone16512GB$ 49911%6,2456.4211
116LPLEN03559ThinkPad T590Intel i5-8365UIntel UHD 62016512GB$ 49911%6,2456.4211
573LPHUA00038Matebook 14i5-1135G7Intel Iris Xe 16512GB$ 80017%9,89110.6211
207LPMSI00597Prestige 13 EVOIntel i7-1360PNone16512GB$ 1,39929%19,30912.1210
556LPHEW01739ProBook 820 G3Intel Core i7 6500UIntel HD 52016256GB$ 2996%3,2755.1209
245LPLEN03502OBIdeaPad Slim 3AMD Ryzen 5 7520UNone16512GB$ 66414%9,4754.6209
315LPMSI00583NoneIntel i7-13700HXGeForce RTX 4050321TB$ 2,89960%34,11041.9208
348LPMSI00576CREATOR Z16Intel i7-13700HXGeForce RTX 4060321TB$ 2,99962%34,11046.3207
381LPMSI00549Vector GP78HXIntel i7-13700HXGeForce RTX 4080321TB$ 3,39970%34,11064.9205
122LPLEN03552X1 Yoga G4Intel i5-8265UNone16512GB$ 49910%6,0236.4205
209LPLEN03573OBThinkPad T490Intel i7-8550UIntel UHD 62016256GB$ 49410%5,9296.4205
288LPHEW01833OBEliteBook 650 G9Intel i5-1245UNone16256GB$ 1,04921%13,48110.6204
74LPLEN03010ThinkBook 14 G4Intel i7-1255UNone16512GB$ 1,09922%13,77212.1204
17LPLEN0348721JN0073USIntel i7-1355UNone16512GB$ 1,19924%15,29412.1203
290LPMSI00590Modern 14Intel i7-1355UNone161TB$ 1,19924%15,29412.1203
445LPASU00728Zephyrus DuoAMD Ryzen 9 7945HXRTX 4090322TB$ 4,999100%55,50372.6200
583LPLGE00015OBGram 2-in-1Intel i7-1165G7Intel Iris Xe 16512GB$ 90218%10,34712.1200
7LPLEN03502IdeaPad Slim 3AMD Ryzen 5 7520UNone16512GB$ 69914%9,4754.6198
92LPLEN03474ThinkPad E16Intel i5-1335UNone16256GB$ 1,29926%16,92910.6198
345LPLEN03462ThinkBook 14s YogaIntel Core i5-1335UNone16256GB$ 1,29926%16,92910.6198
346LPHEW02045OBConsumer Laptop 17.3"Intel i5-1135G7Intel Iris Xe16512GB$ 85417%9,89110.6197
390LPLGE00024OBGramIntel i7-1260PIntel Iris Xe 16512GB$ 1,35627%17,23112.1197
284LPASU00765OBZenbook S 13 OLED EVOIntel i7-1355UNone161TB$ 1,23424%15,29412.1197
78LPLGE00032Gram EVOIntel i7-1360PIntel Iris Xe16512GB$ 1,49929%19,30912.1196
567LPMSI00415Stealth 15MIntel Core i7-1260PRTX3060161TB$ 1,99939%17,23142.0196
398LPASU00734OBZenbook 14XIntel i7-1260PGeForce MX55016512GB$ 1,51930%17,23119.2195
378LPMSI00552Raider GE78HXIntel i7-13700HXGeForce RTX 4070321TB$ 3,29964%34,11051.7195
377LPMSI00554Vector GP77Intel i7-13700HGeForce RTX 4070161TB$ 2,89957%27,89051.7195
446LPMSI00534Raider GE78 HXIntel i9-13980HXGeForce RTX 4080642TB$ 4,49987%47,99464.9194
163LPGIG00137AERO 16Intel Core i9-12900HRTX 3080 Ti642TB$ 2,99958%28,52453.7194
108LPHEW01833EliteBook 650 G9Intel i5-1245UNone16256GB$ 1,10421%13,48110.6194
265LPLGE00033OBGram EVOIntel i7-1360PIntel Iris Xe16512GB$ 1,51929%19,30912.1193
351LPLGE00030OBGramIntel i7-1360PIntel Iris Xe16512GB$ 1,51929%19,30912.1193
312LPLGE00031OBGram EVOIntel i7-1360PIntel Iris Xe16512GB$ 1,52029%19,30912.1193
252LPGIG00163AORUS 17XIntel i9-13980HXGeForce RTX 4090322TB$ 4,69991%47,99472.6193
129LPLEN03564ThinkPad X1Intel i7-8650UNone16256GB$ 54911%6,2886.4193
97LPLEN03712Yoga L390Intel i5-8365UNone16256GB$ 54911%6,2456.4192
305LPMSI00587CreatorPro M16Intel i7-13700HNVIDIA RTX A1000321TB$ 2,39946%27,89025.5191
180LPASU00767Zenbook Pro 14 Duo OLEDIntel i9-13900HGeForce RTX 4060321TB$ 2,99957%29,68746.3189
603LPACE00491Aspire 5Intel i7-10510UIntel UHD 620 graphics8512GB$ 58611%6,6486.4188
256LPHEW02083OBEliteBook 640 G9Intel i5-1245UNone16512GB$ 1,13621%13,48110.6188
368LPHEW02045Consumer LaptopIntel i5-1135G7Intel Iris Xe16512GB$ 89917%9,89110.6187
130LPASU00765Zenbook S 13 OLED EVOIntel i7-1355UNone161TB$ 1,29924%15,29412.1187
169LPASU00734Zenbook 14XIntel i7-1260PGeForce MX55016512GB$ 1,59930%17,23119.2186
44LPLEN03573ThinkPad T490Intel i7-8550UIntel UHD 62016256GB$ 54910%5,9296.4184
85LPLEN03497ThinkPad X1 CarbonIntel i5-1335UNone16256GB$ 1,39926%16,92910.6184
331LPLEN03471ThinkPad E14Intel i5-1335UNone16512GB$ 1,39926%16,92910.6184
87LPLGE00033Gram EVOIntel i7-1360PIntel Iris Xe16512GB$ 1,59929%19,30912.1184
105LPLGE00030GramIntel i7-1360PIntel Iris Xe16512GB$ 1,59929%19,30912.1184
104LPLGE00031Gram EVOIntel i7-1360PIntel Iris Xe16512GB$ 1,60029%19,30912.1183
278LPLEN03522ThinkBook 15 G4AMD Ryzen 5 5625UNone16256GB$ 1,29924%15,07811.6183
281LPMSI00577OBPrestige 13 EvoIntel i7-1360PNone321TB$ 1,60529%19,30912.1183
307LPMSI00586CreatorPro Z16HXStudioIntel i9-13950HXNVIDIA RTX A2000321TB$ 3,79969%44,93129.7181
552LPDYA00003C50-JIntel Core i5-1135G7Integrated GPU8256GB$ 92917%9,89110.6181
254LPLEN03042OBThinkBook 15 G4Intel Core i7-1255UNone16512GB$ 1,23422%13,77212.1181
447LPMSI00533Raider GE78 HXIntel i9-13980HXGeForce RTX 4090322TB$ 4,99991%47,99472.6181
80LPLEN03572Legion Pro 7Intel i9-13900HXGeForce RTX 4090322TB$ 4,79987%44,97772.6181
77LPHEW02083EliteBook 640 G9Intel i5-1245UNone16512GB$ 1,19621%13,48110.6179
397LPLGE00034GramIntel i7-1360PGeForce RTX 3050161TB$ 2,00036%19,30927.5179
232LPLEN02397OBNoneIntel i5-1135G7Intel Iris Xe 8256GB$ 95017%9,89110.6177
91LPLEN0347614s Yoga G3Intel Core i7-1355UNone16512GB$ 1,38024%15,29412.1176
373LPLEN03427IdeaPad 1 15AMN7AMD Athlon Gold 7220UAMD Radeon 610M 4128GB$ 4508%4,7484.6175
330LPSAS00150Galaxy Book3 EVOIntel i7-13700HGeForce RTX 405016512GB$ 2,99952%27,89041.9175
308LPMSI00585CreatorPro Z17HX StudioIntel i9-13950HXNVIDIA RTX A3000321TB$ 3,99970%44,93132.1175
155LPMSI00577Prestige 13 EvoIntel i7-1360PNone321TB$ 1,68929%19,30912.1174
194LPLGE00028OBGram EVOIntel i7-1260PIntel Iris Xe 16512GB$ 1,53927%17,23112.1174
196LPLEN03709V15 G4Intel i7-1355UNone161TB$ 1,39924%15,29412.1174
99LPACE00999PTX17-71-99W5Intel i9-13900HXGeForce RTX 4090642TB$ 4,99987%44,97772.6173
186LPLEN03042ThinkBook 15 G4Intel Core i7-1255UNone16512GB$ 1,29922%13,77212.1172
106LPLEN03221ThinkPad L13 YogaIntel Core i7-1255UNone16512GB$ 1,29922%13,77212.1172
587LPMSI00379Modern 14Intel Core i7-1195G7Intel Iris Xe8512GB$ 1,09919%11,03412.1172
321LPSAS00158Galaxy Book3 360 EVOIntel i5-1335UNone8256GB$ 1,49926%16,92910.6172
379LPMSI00551Stealth 17StudioIntel i7-13700HGeForce RTX 4070321TB$ 3,29957%27,89051.7171
481LPCNO00054ThinkPad E15 Gen 2Intel Core i5-1135G7Intel Iris Xe 8256GB$ 99917%9,89110.6169
413LPACE00948A317-53-591MIntel i5-1135G7Integrated GPU8512GB$ 99917%9,89110.6169
75LPMSI00591Stealth 16 AMGIntel i9-13900HGeForce RTX 4070322TB$ 3,49959%29,68751.7168
208LPHEW01997OBENVY X360Intel i7-1250UNone161TB$ 1,23421%12,42112.1167
95LPLEN03710NoneIntel i5-10310UNone16512GB$ 64911%6,4366.4166
550LPDYA00005C50-JIntel Core i7-1165G7Integrated GPU8256GB$ 1,08918%10,34712.1166
422LPLEN03339ThinkPad T14s Gen 2AMD Ryzen 5 PRO 5650UNone8256GB$ 1,43024%14,92211.6165
109LPLGE00028Gram EVOIntel i7-1260PIntel Iris Xe 16512GB$ 1,62027%17,23112.1165
200LPRAZ00059Blade 14AMD Ryzen 9 7940HSGeForce RTX 4070161TB$ 3,64960%30,59451.7164
261LPDYA00028TecraIntel i5-1240PNone16256GB$ 1,59926%17,32010.6164
98LPLEN03711X1 CarbonIntel i7-8665UNone16256GB$ 64911%6,2566.4162
183LPLEN03512ThinkBook 14s Yoga G3Intel Core i7-1355UNone16512GB$ 1,49924%15,29412.1162
551LPDYA00004C50-JIntel Core i5-1135G7Integrated GPU8512GB$ 1,04917%9,89110.6161
501LPASU00649P1512CEAIntel Core i5-1135G7Intel UHD 8512GB$ 1,04917%9,89110.6161
502LPASU00647P1512CEAIntel Core i5-1135G7Intel UHD 8512GB$ 1,04917%9,89110.6161
94LPASU00736GU604VY-XS97Intel i9-13900HRTX 4090322TB$ 4,19967%29,68772.6161
329LPSAS00152Galaxy Book3 EVOIntel i7-13700HGeForce RTX 4050161TB$ 3,26952%27,89041.9161
488LPASU00547OBVivobook 13Intel Pentium Silver N6000Intel UHD 4128GB$ 3325%3,0893.4159
58LPHEW01997ENVY X360Intel i7-1250UNone161TB$ 1,29921%12,42112.1159
387LPASU00768Zenbook Pro 16X OLEDIntel i9-13905HGeForce RTX 4080321TB$ 4,19967%31,60364.9159
448LPMSI00532TITAN GT77Intel i9-13980HXGeForce RTX 4080642TB$ 5,59987%47,99464.9156
431LPACE00942A315-56-54YTIntel Core i5-1035G1Integrated Graphic8256GB$ 74912%7,4605.1154
82LPMSI00535Stealth 17Intel i9-13900HGeForce RTX 4090642TB$ 4,39967%29,68772.6153
259LPDYA00033TecraIntel i7-1260PNone16256GB$ 1,74927%17,23112.1153
260LPDYA00029TecraIntel i7-1260PNone16256GB$ 1,75027%17,23112.1153
274LPLEN03546E14Intel i7-1355UNone16512GB$ 1,59924%15,29412.1152
574LPASU00547Vivobook 13 Slate NotebookIntel Pentium Silver N6000Intel UHD 4128GB$ 3505%3,0893.4152
549LPDYA00006C50-JIntel Core i7-1165G7Integrated8512GB$ 1,19918%10,34712.1151
514LPHEW01837OMEN 16AMD Ryzen 5 5600HRadeon 161TB$ 1,79926%17,09311.6146
202LPMSI00531OBTITAN GT77Intel i9-13980HXGeForce RTX 40901284TB$ 6,29991%47,99472.6144
558LPASU00565ExpertBook B5Intel Core i5-1135G7Intel Iris Xe G716256GB$ 1,19917%9,89110.6141
388LPMSI00544Titan Gaming NotebookIntel i9-13980HXGeForce RTX 4090642TB$ 6,44991%47,99472.6140
280LPHEW02090ProBook 440Intel i7-1355UNone16512GB$ 1,79924%15,29412.1135
593LPLEN02112ThinkBook 14s Yoga ITLIntel i5-1135G7Intel Iris Xe 8256GB$ 1,24917%9,89110.6135
244LPLEN01849OBThinkPad X1 Nano EVOIntel Core i7-1160G7None16512GB$ 1,23417%9,17312.1134
595LPLEN02056IdeaPad Slim 7iIntel i5-1135G7Intel Iris Xe 8512GB$ 1,26017%9,89110.6134
177LPASU00743Zenbook S 13 FlipIntel i7-1260PNone161TB$ 1,99927%17,23112.1134
472LPASU00665Zenbook ProIntel Core i9-12900HGeForce RTX 3060321TB$ 3,99953%28,52442.0133
479LPRAZ00055Blade 15Intel Core i7-12800HGeForce RTX 3070 Ti161TB$ 3,99953%24,97152.2133
185LPMSI00531TITAN GT77Intel i9-13980HXGeForce RTX 40901284TB$ 6,99991%47,99472.6129
499LPASU00651P1512CEAIntel Core i7-1165G7Intel Iris Xe 161TB$ 1,39918%10,34712.1129
559LPASU00564ExpertBook B1Intel Core i7-1165G7Intel Iris Xe G712512GB$ 1,39918%10,34712.1129
500LPASU00650NoneIntel Core i7-1165G7Intel Iris Xe 161TB$ 1,39918%10,34712.1129
561LPASU00562ExpertBook B1Intel Core i7-1165G7Intel Iris Xe G712512GB$ 1,39918%10,34712.1129
214LPLEN03517OBThinkPad X1 Carbon EVOIntel i7-1365UNone32512GB$ 1,89924%15,45112.1129
170LPASU00592Vivobook 15AMD Ryzen 3 3250UAMD Radeon 8128GB$ 4996%3,8553.7128
327LPSAS00157Galaxy Book3 360 EVOIntel i7-1355UNone16512GB$ 1,89924%15,29412.1128
396LPLGE00035GramIntel i7-1360PIntel Iris Xe16512GB$ 2,30029%19,30912.1128
72LPLEN03517ThinkPad X1 Carbon EVOIntel i7-1365UNone32512GB$ 1,99924%15,45112.1122
523LPRAZ00054Razer Blade 14AMD Ryzen 9 6900HXGeForce RTX 3080Ti161TB$ 4,49954%24,88753.7119
328LPSAS00156Galaxy Book3 Pro 360 EVOIntel i7-1360PNone161TB$ 2,49929%19,30912.1117
598LPLEN01757ThinkBook 15 G2 ITLIntel Core i7-1165G7 Quad-core (4 Core) 2.80 GHzIntel UHD 16512 GB$ 1,54918%10,34712.1117
455LPMSI00528CreatorProIntel i7-12700HRTX A3000321TB$ 3,99947%26,42432.1117
553LPGIG00125AERO 16 YE4Intel Core i9-12900HNVIDIA GeForce RTX 3080 Ti322TB$ 4,99958%28,52453.7116
277LPLEN03526NoneIntel i5-1335UNone16512GB$ 2,24926%16,92910.6114
427LPLEN02684OB20UB0067USIntel Core i5-10210UNone16256 GB$ 93210%6,2286.4113
437LPLEN03307ThinkPad T14 Gen 2Intel Core i5-1135G7MX450 2GB16256GB$ 1,59918%9,89112.6111
511LPASU00623NoneAMD Ryzen 9 6900HXNVIDIA GeForce RTX 3080 Ti641TB$ 4,99954%24,88753.7107
568LPLEN02684ThinkPad X1 Yoga Gen 5Intel Core i5-10210UNone16256GB$ 98110%6,2286.4107
471LPLEN03138Business NotebookIntel i5-1145G7Intel Iris Xe16512GB$ 1,60017%9,97010.6106
527LPSAS00114Galaxy Book ProIntel i5-1135G7Iris Xe 8256GB$ 1,60017%9,89110.6105
528LPSAS00113Galaxy Book ProIntel i5-1135G7Intel Iris Xe 8512GB$ 1,60017%9,89110.6105
536LPASU00591OBL510MA-DS09-CAIntel Celeron N4020Intel UHD 600464GB$ 2463%1,5561.5105
529LPSAS00112Galaxy Book ProIntel i7-1165G7Iris Xe 8512GB$ 1,73018%10,34712.1104
525LPSAS00116Galaxy Book ProIntel i7-1165G7Intel Iris Xe 8256GB$ 1,73018%10,34712.1104
340LPLEN03465ThinkPad X1 Yoga EVOIntel i5-1335UNone16256GB$ 2,53426%16,92910.6102
456LPMSI00527CreatorProIntel i7-12700HNVIDIA RTX A5500321TB$ 5,29953%26,42447.7100
597LPLEN0185820TA0025USIntel Core i7 i7-1165G7None8512 GB$ 1,80618%10,34712.1100
174LPASU00591Vivobook GoIntel Celeron N4020Intel UHD 600464GB$ 2593%1,5561.5100
554LPLEN0274120W400K3USIntel i5-1145G7Intel Iris Xe16512GB$ 1,72117%9,97010.699
436LPLEN03308ThinkPad T14 Gen 2Intel Core i5-1135G7MX450 2GB16256GB + 512GB$ 1,79918%9,89112.698
526LPSAS00115Galaxy Book ProIntel i5-1135G7Intel Iris Xe 8512GB$ 1,73017%9,89110.697
530LPSAS00111Galaxy Book ProIntel i7-1165G7Iris Xe 8512GB$ 1,87018%10,34712.197
221LPASU00762OBVivobook SlateIntel Pentium Silver Processor N6000Intel UHD 8128GB$ 5695%3,0893.493
86LPASU00762Vivobook SlateIntel Pentium Silver Processor N6000Intel UHD 8128GB$ 5995%3,0893.488
325LPLEN03478ThinkPad X1 Yoga Gen 8Intel i7-1355UNone16512 GB$ 2,88424%15,29412.184
594LPLEN02071ThinkPad X13 Yoga Gen 2Intel Core i5 (11th Gen) i5-1135G7 Quad-coreIntel Iris Xe 8256 GB$ 2,01917%9,89110.683
505LPASU00590OBVivobook 14 FlipIntel Celeron N4500Intel UHD 4128GB$ 4744%2,0033.483
62LPASU00590Vivobook 14 Flip NotebookIntel Celeron N4500Intel UHD 4128GB$ 4994%2,0033.479
301LPLEN03495ThinkPad X13 YogaIntel i5-10310UNone16256GB$ 1,49911%6,4366.472
230LPASU00810Chromebook Flip C434Intel m3-8100YNone464GB Flash Memory$ 6995%2,8773.070
605LPASU00227Chromebook Flip C434Intel m3-8100YNone464GB Flash Memory$ 6995%2,8773.070
596LPLEN0187020UN000AUSIntel Core i7-1160G7 EVO Quad-coreIntel Iris Xe 16256 GB$ 2,40017%9,17312.169
590LPLEN02299ThinkPad X13 Yoga Gen 2Intel Core i7 (11th Gen) i7-1165G7 Quad-coreIntel Iris Xe 16256GB$ 2,89218%10,34712.162
- - - - \ No newline at end of file diff --git a/PCData/data/computed/canada_computers_laptops_bench_0.9.csv b/PCData/data/computed/canada_computers_laptops_bench_0.9.csv deleted file mode 100644 index ccf4590..0000000 --- a/PCData/data/computed/canada_computers_laptops_bench_0.9.csv +++ /dev/null @@ -1,576 +0,0 @@ -item_id,Model,CPU,GPU,RAM,Storage,price,bench,cpu_bench,gpu_bench,value -LPLEN03269OB,IdeaPad 3,AMD Ryzen 7 5825U,Integrated Radeon ,8.0,256GB,522.39,31.74845585742294,18458.0,13.2,607.7538976133337 -LPLEN03414OB,IdeaPad,Intel i3-1215U,Intel HD ,4.0,128GB,312.55,18.467275166274234,11032.0,4.2,590.8582679978958 -LPLEN03269,IdeaPad 3,AMD Ryzen 7 5825U,Integrated Radeon ,8.0,256GB,549.88,31.74845585742294,18458.0,13.2,577.3706237255936 -LPLEN03053OB,IdeaPad 5,AMD Ryzen 7 5825U,Integrated Radeon,8.0,512GB,552.78999023437,31.74845585742294,18458.0,13.2,574.3312364242041 -LPLEN03430OB,IdeaPad Slim 3,AMD Ryzen 7 7730U,,8.0,512GB,569.89,32.34193729085897,18824.0,13.2,567.5119284574037 -LPLEN03414,IdeaPad,Intel i3-1215U,Intel HD ,4.0,128GB,329.0,18.467275166274234,11032.0,4.2,561.3153545980011 -LPLEN03097OB,IdeaPad 3,AMD Ryzen 5 5625U,AMD Radeon ,12.0,512GB,474.89,26.047285360049777,15078.0,11.6,548.4909212670256 -LPLEN03053,IdeaPad 5,AMD Ryzen 7 5825U,Integrated Radeon,8.0,512GB,581.88000488281,31.74845585742294,18458.0,13.2,545.6186084932932 -LPACE00912OB,Nitro 5,Intel Core i5-11400H,GTX 1650,8.0,256GB,526.39,28.520924265429482,15822.0,20.8,541.8211642589997 -LPLEN03430,IdeaPad Slim 3,AMD Ryzen 7 7730U,,8.0,512GB,599.88,32.34193729085897,18824.0,13.2,539.1401162042238 -LPASU00720OB,G17,AMD Ryzen 9 7945HX,NVIDIA RTX 4060,16.0,1TB,1799.1,96.37741046831955,55503.0,46.3,535.6979071108863 -LPASU00719,G713PU-DS91-CA,AMD Ryzen 9 7945HX,RTX 4050,16.0,1TB,1799.0,95.77134986225896,55503.0,41.9,532.3588096845967 -LPHEW01653OB,15-ef1013dx,AMD Ryzen 7 4700U,AMD Radeon ,8.0,512GB,445.43999923706,23.400941919154693,13446.0,11.6,525.344422576224 -LPHEW02095OB,Victus 15-fb1010ca,AMD Ryzen 5 7535HS,GeForce RTX 2050,8.0,512GB,629.1,32.82930429045381,18445.0,21.2,521.8455617621016 -LPASU00809OB,ROG Strix G16,Intel i9-13980HX,GeForce RTX 4060,16.0,1TB,1619.1,84.20131187905412,47994.0,46.3,520.0501011614732 -LPHEW02100OB,15-fd0030ca,Intel i5-1340P,,16.0,512GB,664.05,34.22152744926453,20204.0,10.6,515.3456433892709 -LPASU00666OB,Vivobook 16,AMD Ryzen 5 5600H,AMD Radeon ,8.0,512GB,569.05,29.31467631189022,17093.0,11.6,515.1511521288152 -LPMSI00429OB,Katana GF66,Intel Core i7-11800H,RTX3060,16.0,512GB,786.48999847412,39.43681846994198,20753.0,42.0,501.4280988500031 -LPMSI00572OB,Thin GF63,Intel i5-12450H,GeForce RTX 2050,8.0,512GB,629.1,31.22560719299962,17456.0,21.2,496.3536352408142 -LPHEW02017OB,Pavilion,Intel i5-1240P,Intel Iris Xe,8.0,512GB,599.34000854492,29.545023476506298,17320.0,10.6,492.95930615804906 -LPHEW02100,15-fd0030ca,Intel i5-1340P,,16.0,512GB,699.0,34.22152744926453,20204.0,10.6,489.5783612198073 -LPASU00666,Vivobook 16,AMD Ryzen 5 5600H,AMD Radeon ,8.0,512GB,599.0,29.31467631189022,17093.0,11.6,489.3935945223743 -LPMSI00562OB,Modern 15,AMD Ryzen 7 7730U,AMD Radeon ,16.0,512GB,664.05,32.34193729085897,18824.0,13.2,487.04069408717686 -LPHEW02076OB,Victus Gaming Notebook,AMD Ryzen 5 7640HS,GeForce RTX 4050,16.0,512GB,899.1,43.69902944714626,23390.0,41.9,486.03080243739583 -LPASU00720,G713PV-DS91-CA,AMD Ryzen 9 7945HX,NVIDIA RTX 4060,16.0,1TB,1999.0,96.37741046831955,55503.0,46.3,482.1281163997977 -LPCNO00060OB,ZenBook,AMD Ryzen 7 5700U,GeForce MX450,8.0,256GB,569.89,27.44333676848381,15854.0,12.6,481.5549802327434 -LPASU00716OB,FX507ZC4-DS71-CA,Intel i7-12700H,NVIDIA RTX 3050,16.0,512GB,989.1,46.63529244119483,26424.0,27.5,471.4921892750463 -LPHEW01811OB,Pavilion 15-eh2010ca,AMD Ryzen 5 5625U,AMD Radeon ,8.0,512GB,553.74000610352,26.047285360049777,15078.0,11.6,470.3883604750839 -LPHEW02095,Victus 15-fb1010ca,AMD Ryzen 5 7535HS,GeForce RTX 2050,8.0,512GB,699.0,32.82930429045381,18445.0,21.2,469.6610055858915 -LPHEW02017,15-EG2002CA,Intel i5-1240P,Intel Iris Xe,8.0,512GB,630.88000488281,29.545023476506298,17320.0,10.6,468.31446943693317 -LPASU00809,G614JV-DB91-CA,Intel i9-13980HX,GeForce RTX 4060,16.0,1TB,1799.0,84.20131187905412,47994.0,46.3,468.0450910453258 -LPLEN03442OB,IdeaPad Flex 5,AMD Ryzen 3 5300U,,4.0,128GB,360.05,16.801656019486995,9716.0,7.6,466.64785500588795 -LPGIG00135OB,AERO 16 XE4,Intel Core i7-12700H,GeForce RTX 3070 Ti,16.0,2TB,1079.1,50.03749629794414,26424.0,52.2,463.6965647108159 -LPMSI00562,Modern 15 Notebook,AMD Ryzen 7 7730U,AMD Radeon ,16.0,512GB,699.0,32.34193729085897,18824.0,13.2,462.68865938281795 -LPMSI00541OB,Thin GF63,Intel i7-12650H,GeForce RTX 3050,16.0,512GB,899.1,41.538811169912194,23281.0,27.5,462.00435068304074 -LPGIG00147OB,G5 KF-E3US333SH,Intel i5-12500H,GeForce RTX 4060,8.0,512GB,899.1,41.274443061152375,21521.0,46.3,459.06398688858167 -LPHEW02072OB,ProBook 445 G9,AMD Ryzen 5 5625U,,8.0,256GB,569.05,26.047285360049777,15078.0,11.6,457.7328066083785 -LPCNO00060,ZenBook,AMD Ryzen 7 5700U,GeForce MX450,8.0,256GB,599.88,27.44333676848381,15854.0,12.6,457.4804422298428 -LPLEN03469OB,Legion Pro 5i,Intel i7-13700HX,GeForce RTX 4060,16.0,512GB,1349.1,61.68793422379224,34110.0,46.3,457.25249591425575 -LPCNO00053OB,15Z-EF2000,AMD Ryzen 5 5500U,AMD Radeon Vega 7,8.0,256GB,501.49000038147,22.911238659871415,13144.0,11.6,456.86332015480764 -LPGIG00142OB,G5 KE-52US213SH,Intel i5-12500H,GeForce RTX 3060,16.0,512GB,899.89,40.68215655977496,21521.0,42.0,452.07921590166535 -LPMSI00530OB,Katana GF66,Intel i5-11400H,GeForce RTX 3050,8.0,512GB,651.48999847412,29.443789279203582,15822.0,27.5,451.94537672358786 -LPCOI00001OB,VOYAGER Gaming Notebook,AMD Ryzen 7 6800HS,Radeon 6800M,16.0,1TB,989.89,44.730001192698545,22947.0,54.6,451.8684014658047 -LPASU00573OB,Vivobook 15,AMD Ryzen 5 5500U,AMD Radeon ,8.0,512GB,508.14,22.911238659871415,13144.0,11.6,450.8843755632584 -LPACE00967OB,Nitro 5,Intel i9-12900H,GeForce RTX 4060,16.0,1TB,1169.1,52.630045461022654,28524.0,46.3,450.17573741358876 -LPMSI00572,Thin GF63,Intel i5-12450H,GeForce RTX 2050,8.0,512GB,699.0,31.22560719299962,17456.0,21.2,446.71827171673283 -LPGIG00162OB,G5 KF,Intel i7-12650H,GeForce RTX 4060,16.0,512GB,989.1,44.128342850352965,23281.0,46.3,446.14642453091665 -LPACE00980OB,Nitro 5,AMD Ryzen 7 5800H,GeForce RTX 3060,16.0,512GB,899.1,40.04813677706052,21130.0,42.0,445.4247222451398 -LPASU00584OB,TUF Gaming Notebook,Ryzen 7 5800H,GeForce RTX 3060,16.0,512GB,899.89,40.04813677706052,21130.0,42.0,445.0336905295149 -LPACE00985OB,Swift 3 EVO,Intel i5-1240P,,16.0,512GB,664.05,29.545023476506298,17320.0,10.6,444.9216697011716 -LPHEW02079,Victus 16,AMD Ryzen 7 7840HS,GeForce RTX 4060,16.0,1TB,1199.0,53.21866229254527,28887.0,46.3,443.85873471680793 -LPLEN03442,IdeaPad Flex 5,AMD Ryzen 3 5300U,,4.0,128GB,379.0,16.801656019486995,9716.0,7.6,443.31546225559356 -LPMSI00467OB,Crosshair 15,Intel Core i7-12700H,RTX3070Ti,16.0,512GB,1129.39,50.03749629794414,26424.0,52.2,443.0488697256407 -LPLEN03434OB,,AMD Ryzen 7 7745HX,GeForce RTX 4060,16.0,512GB,1349.1,59.740471924457076,32909.0,46.3,442.81722573906364 -LPASU00658OB,ZenBook 14,AMD Ryzen 5 5600H,AMD Radeon Vega 7,8.0,512GB,664.05,29.31467631189022,17093.0,11.6,441.4528471032335 -LPHEW02076,Victus Gaming Notebook,AMD Ryzen 5 7640HS,GeForce RTX 4050,16.0,512GB,999.0,43.69902944714626,23390.0,41.9,437.4277221936563 -LPACE00851OB,TravelMate P2,Intel Core i5-1135G7,Intel HD ,8.0,256GB,379.89,16.617104905207267,9891.0,4.2,437.41885559523195 -LPHEW02072,ProBook 445 G9,AMD Ryzen 5 5625U,,8.0,256GB,599.0,26.047285360049777,15078.0,11.6,434.8461662779595 -LPCNO00053,15Z-EF2000,AMD Ryzen 5 5500U,AMD Radeon Vega 7,8.0,256GB,527.88,22.911238659871415,13144.0,11.6,434.02361634976535 -LPASU00573,Vivobook 15,AMD Ryzen 5 5500U,AMD Radeon ,8.0,512GB,534.88,22.911238659871415,13144.0,11.6,428.3435286395344 -LPASU00688OB,TUF Gaming F15,Intel Core i9-13900H,GeForce RTX 4050,16.0,512GB,1259.1,53.909828863394026,29687.0,41.9,428.1616143546504 -LPASU00716,TUF F15,Intel i7-12700H,RTX 3050,16.0,512GB,1099.0,46.63529244119483,26424.0,27.5,424.3429703475417 -LPHEW01773OB,15-eg1010ca, Intel Core i5-1155G7,Intel Iris Xe ,8.0,512GB,427.39,18.12618125176169,10278.0,10.6,424.11336839331034 -LPACE00985,Swift 3 EVO,Intel i5-1240P,,16.0,512GB,699.0,29.545023476506298,17320.0,10.6,422.675586216113 -LPACE00953,Nitro Gaming Notebook ,AMD Ryzen R5-7535HS,GeForce RTX 3050,8.0,512GB,799.0,33.69707288549514,18445.0,27.5,421.74058680219196 -LPGIG00160OB,G5 Gaming Notebook,Intel i5-12450H,GeForce RTX 4050,16.0,512GB,809.1,34.07684686242111,17456.0,41.9,421.1697795380189 -LPASU00658,ZenBook 14,AMD Ryzen 5 5600H,AMD Radeon Vega 7,8.0,512GB,699.0,29.31467631189022,17093.0,11.6,419.38020474807183 -LPASU00808OB,TUF Gaming F15,Intel i7-11800H,GeForce RTX 3050 Ti,16.0,1TB,899.1,37.53599202366099,20753.0,28.2,417.48406210278046 -LPMSI00541,Thin GF63,Intel i7-12650H,GeForce RTX 3050,16.0,512GB,999.0,41.538811169912194,23281.0,27.5,415.80391561473664 -LPHEW02087OB,Victus 15-fb0000ca,AMD Ryzen 5 5600H,GeForce RTX 3050 Ti,16.0,512GB,764.1,31.601177689300684,17093.0,28.2,413.5738475238933 -LPGIG00147,G5,Intel i5-12500H,GeForce RTX 4060,8.0,512GB,999.0,41.274443061152375,21521.0,46.3,413.15758819972353 -LPLEN03000OB,IdeaPad Flex 5,AMD Ryzen 5 5500U,AMD Radeon ,8.0,512GB,554.69000305176,22.911238659871415,13144.0,11.6,413.0458189947492 -LPLEN03431,IdeaPad Slim 5,Intel i5-1335U,Intel Iris Xe,8.0,512GB,699.99,28.911003693791848,16929.0,10.6,413.020238771866 -LPHEW01929OB,ProBook 440 G9,Intel Core i5-1235U,,8.0,256GB,569.05,23.425354269436408,13546.0,10.6,411.65722290548126 -LPLEN03469,Legion Pro 5i,Intel i7-13700HX,GeForce RTX 4060,16.0,512GB,1499.0,61.68793422379224,34110.0,46.3,411.52724632283014 -LPACE00816,Nitro,Intel i5-11400H,NVIDIA GeForce RTX 3050,8.0,512GB,715.88,29.443789279203582,15822.0,27.5,411.29503938095183 -LPACE00877OB,Nitro 5,Intel i7-11800H,NVIDIA GeForce RTX3060,16.0,512GB,961.08999023437,39.43681846994198,20753.0,42.0,410.3342961705904 -LPMSI00496OB,GF63 11UC-692,Intel i5-11400H,NVIDIA RTX3050,8.0,512GB,719.1,29.443789279203582,15822.0,27.5,409.4533344347598 -LPMSI00559OB,Thin GF63,Intel i7-12650H,GeForce RTX 4060,16.0,512GB,1079.1,44.128342850352965,23281.0,46.3,408.93654758922224 -LPACE00969,Nitro 5,Intel i5-11400H,GeForce GTX 1650,8.0,512GB,699.0,28.520924265429482,15822.0,20.8,408.02466760271074 -LPACE00967,Nitro 5,Intel i9-12900H,GeForce RTX 4060,16.0,1TB,1299.0,52.630045461022654,28524.0,46.3,405.1581636722298 -LPGIG00149OB,ASF-B3US754SH,Intel i9-13900HX,GeForce RTX 4070,16.0,1TB,1979.89,80.05294554102727,44977.0,51.7,404.33026855546143 -LPASU00715OB,TUF F15,Intel i9-13900H,GeForce RTX 4060,16.0,1TB,1349.1,54.51588946945463,29687.0,46.3,404.0907973423366 -LPLEN03352OB,ThinkBook 15 G3,AMD Ryzen 5 5500U,AMD Radeon ,8.0,256GB,569.05,22.911238659871415,13144.0,11.6,402.6225930914931 -LPGIG00162,G5 KF,Intel i7-12650H,GeForce RTX 4060,16.0,512GB,1099.0,44.128342850352965,23281.0,46.3,401.53178207782497 -LPHEW02028OB,15-fc0040ca,AMD Ryzen 7 7730U,AMD Radeon ,16.0,1TB,806.55,32.34193729085897,18824.0,13.2,400.99110149226925 -LPASU00784OB,Vivobook 15,AMD Ryzen 7 7730U,,16.0,512GB,806.55,32.34193729085897,18824.0,13.2,400.99110149226925 -LPACE00980,Nitro 5,AMD Ryzen 7 5800H,GeForce RTX 3060,16.0,512GB,999.0,40.04813677706052,21130.0,42.0,400.8822500206258 -LPLEN03434,Legion Pro 5,AMD Ryzen 7 7745HX,GeForce RTX 4060,16.0,512GB,1499.0,59.740471924457076,32909.0,46.3,398.53550316515725 -LPASU00785OB,FX706HF-DB51-CA,Intel i5-11400H,GeForce RTX 2050,8.0,512GB,719.1,28.576020684162263,15822.0,21.2,397.3859085546136 -LPLEN02908,14 G4 ABA,AMD Ryzen 7 5825U,,16.0,512 GB,799.0,31.74845585742294,18458.0,13.2,397.35238870366635 -LPHEW02058,Victus 15-fa1000ca,Intel i5-13500H,GeForce RTX 4050,16.0,512GB,1099.0,43.53525451606144,23289.0,41.9,396.1351639314053 -LPLEN03438OB,Legion Pro 5,AMD Ryzen 7 7745HX,GeForce RTX 4070,16.0,512GB,1529.1,60.48427357734963,32909.0,51.7,395.554728777383 -LPMSI00445OB,Modern 15,Intel Core i5-1155G7,Intel Iris Xe,8.0,256GB,459.69000305176,18.12618125176169,10278.0,10.6,394.31314867468905 -LPACE00981OB,Aspire 5,AMD Ryzen 3 5300U,,8.0,256GB,426.55,16.801656019486995,9716.0,7.6,393.8965190361504 -LPLEN03000,IdeaPad Flex 5,AMD Ryzen 5 5500U,AMD Radeon ,8.0,512GB,583.88,22.911238659871415,13144.0,11.6,392.3963598662638 -LPHEW02035OB,Omen 16-wd0010ca,Intel i7-13620H,GeForce RTX 4060,16.0,1TB,1259.1,49.330223829759476,26489.0,46.3,391.78956262218634 -LPLEN03130OB,,AMD Ryzen 5 5625U,AMD Radeon ,12.0,512GB,664.89,26.047285360049777,15078.0,11.6,391.7533029531167 -LPHEW01929,ProBook 440 G9,Intel Core i5-1235U,,8.0,256GB,599.0,23.425354269436408,13546.0,10.6,391.0743617602071 -LPHEW02024OB,Consumer Notebook 17,Intel i5-1335U,Intel Iris Xe,8.0,1TB,739.94001464844,28.911003693791848,16929.0,10.6,390.72091144480186 -LPLEN03565OB,,Ryzen 7 7745HX,GeForce RTX 4060,16.0,1TB,1529.1,59.740471924457076,32909.0,46.3,390.6904187068019 -LPASU00717OB,G614JJ-DS71-CA,Intel i7-13650HX,RTX 3050,16.0,1TB,1439.1,55.92343902786582,32152.0,27.5,388.60009052787035 -LPACE00896OB,A715,AMD Ryzen 7 5700U,RTX3050,16.0,512GB,764.1,29.495678366279954,15854.0,27.5,386.018562574008 -LPASU00688,TUF Gaming F15,Intel Core i9-13900H,GeForce RTX 4050,16.0,512GB,1399.0,53.909828863394026,29687.0,41.9,385.34545291918533 -LPASU00735OB,Vivobook 16X,Intel i5-12500H,Iris Xe ,16.0,512GB,944.18999938965,36.35708768925155,21521.0,10.6,385.06113931257227 -LPCNO00033OB,F415EA-UB51,Intel Core i5-1135G7,Intel Iris Xe ,8.0,256GB,455.89,17.498647604931787,9891.0,10.6,383.8348637814338 -LPLEN03390OB,ThinkPad T14 G3,Ryzen 5 Pro 6650U,AMD Radeon 660M,16.0,256GB,759.05,29.03721532139652,16752.0,13.6,382.5468061576513 -LPLEN03352,ThinkBook 15 G3,AMD Ryzen 5 5500U,AMD Radeon ,8.0,256GB,599.0,22.911238659871415,13144.0,11.6,382.4914634369184 -LPLEN03435OB,Legion Pro 5,Intel i7-13700HX,GeForce RTX 4060,16.0,1TB,1619.1,61.68793422379224,34110.0,46.3,381.00138486685347 -LPASU00784,Vivobook 15 OLED,AMD Ryzen 7 7730U,,16.0,512GB,849.0,32.34193729085897,18824.0,13.2,380.94154641765573 -LPHEW02028,15-fc0040ca,AMD Ryzen 7 7730U,AMD Radeon ,16.0,1TB,849.0,32.34193729085897,18824.0,13.2,380.94154641765573 -LPHEW02099OB,17-cn3020ca,Intel i5-1335U,,16.0,512GB,759.05,28.911003693791848,16929.0,10.6,380.8840483998663 -LPASU00783OB,Zenbook 14 OLED,AMD Ryzen 7 5825U,,16.0,512GB,834.93999938965,31.74845585742294,18458.0,13.2,380.24835174541164 -LPASU00685OB,VivoBook,Intel Core i3-1115G4,Intel UHD ,4.0,128GB,284.05,10.797240801368343,6132.0,6.2,380.11761314445846 -LPASU00786OB,Vivobook 16X,Intel i5-1235U,,8.0,512GB,616.55,23.425354269436408,13546.0,10.6,379.9424907864149 -LPACE00946OB,,Intel i5-1135G7,Intel Iris,8.0,512GB,462.53999389648,17.498647604931787,9891.0,10.6,378.31642313827933 -LPASU00808,TUF Gaming F15,Intel i7-11800H,GeForce RTX 3050 Ti,16.0,1TB,999.0,37.53599202366099,20753.0,28.2,375.7356558925024 -LPMSI00445,Modern 15 A11MU-863CA,Intel Core i5-1155G7,Intel Iris Xe,8.0,256GB,483.88,18.12618125176169,10278.0,10.6,374.60075332234624 -LPACE00981,Aspire 5,AMD Ryzen 3 5300U,,8.0,256GB,449.0,16.801656019486995,9716.0,7.6,374.2016930843429 -LPLEN03433OB,Legion Pro 5,AMD Ryzen 7 7745HX,GeForce RTX 4070,16.0,1TB,1619.1,60.48427357734963,32909.0,51.7,373.5672508019865 -LPLEN02956,ThinkBook 14 G4 ABA,AMD Ryzen 5 5625U,,16.0,256GB,699.0,26.047285360049777,15078.0,11.6,372.63641430686374 -LPHEW02087,Victus 15-fb0000ca,AMD Ryzen 5 5600H,GeForce RTX 3050 Ti,16.0,512GB,849.0,31.601177689300684,17093.0,28.2,372.216462771504 -LPLEN03130,Consumer Laptop,AMD Ryzen 5 5625U,AMD Radeon ,12.0,512GB,699.88,26.047285360049777,15078.0,11.6,372.1678767795876 -LPHEW02024,Consumer Notebook,Intel i5-1335U,Intel Iris Xe,8.0,1TB,778.88000488281,28.911003693791848,16929.0,10.6,371.1868774721183 -LPGIG00124OB,AERO 16 XE5,Intel Core i7-12700H,NVIDIA GeForce RTX 3070 Ti,32.0,2 TB,1349.89,50.03749629794414,26424.0,52.2,370.6783241445165 -LPACE00877,Nitro 5,Intel i7-11800H,NVIDIA GeForce RTX3060,16.0,512GB,1067.8800048828,39.43681846994198,20753.0,42.0,369.3000926098451 -LPACE00888OB,TravelMate P2,Intel Core i5-1135G7,Intel Iris Xe ,8.0,256GB,474.05,17.498647604931787,9891.0,10.6,369.13084284214295 -LPHEW01865OB,Omen 16-b0020ca,Intel Core i7-11800H,NVIDIA GeForce RTX 3070,16.0,1TB,1091.5900007629,40.26326475093372,20753.0,48.0,368.8497029360307 -LPASU00787,FX506HCB-DB59-CA,Intel i5-11400H,GeForce RTX 3050,8.0,512GB,799.0,29.443789279203582,15822.0,27.5,368.50800099128384 -LPMSI00496,GF63,Intel i5-11400H,RTX3050,8.0,512GB,799.0,29.443789279203582,15822.0,27.5,368.50800099128384 -LPHUA00040OB,MateBook D15,Intel i5-1135G7,Intel Iris Xe ,8.0,512GB,474.89,17.498647604931787,9891.0,10.6,368.4779128836528 -LPCNO00048OB,VivoBook R,Intel Core i5-1135G7,Intel Iris Xe ,8.0,256GB,474.89,17.498647604931787,9891.0,10.6,368.4779128836528 -LPMSI00559,Thin GF63,Intel i7-12650H,GeForce RTX 4060,16.0,512GB,1199.0,44.128342850352965,23281.0,46.3,368.04289283029993 -LPASU00735,Vivobook 16X,Intel i5-12500H,Iris Xe ,16.0,512GB,993.87999725342,36.35708768925155,21521.0,10.6,365.80963285028463 -LPGIG00149,,Intel i9-13900HX,GeForce RTX 4070,16.0,1TB,2199.88,80.05294554102727,44977.0,51.7,363.8968741068934 -LPASU00715,TUF F15,Intel i9-13900H,GeForce RTX 4060,16.0,1TB,1499.0,54.51588946945463,29687.0,46.3,363.68171760810293 -LPLEN03390,21CF000CUS,Ryzen 5 Pro 6650U,AMD Radeon 660M,16.0,256GB,799.0,29.03721532139652,16752.0,13.6,363.4194658497687 -LPMSI00564OB,Bravo 15,AMD Ryzen 7 7735HS,GeForce RTX 4060,32.0,1TB,1259.1,45.72231074398033,24264.0,46.3,363.1348641408969 -LPHEW02099,17-cn3020ca,Intel i5-1335U,,16.0,512GB,799.0,28.911003693791848,16929.0,10.6,361.83984597987296 -LPMSI00504OB,GP66 Leopard,Intel Core i7-11800H,NVIDIA RTX3070,16.0,512GB,1114.0900007629,40.26326475093372,20753.0,48.0,361.4004678559405 -LPMSI00575OB,Modern 15,Intel i7-1255U,Intel Iris Xe,16.0,512GB,664.05,23.998432517161238,13772.0,12.1,361.3949629871431 -LPASU00685,VivoBook F415EA-AS31,Intel Core i3-1115G4,Intel UHD ,4.0,128GB,299.0,10.797240801368343,6132.0,6.2,361.1117324872356 -LPASU00786,Vivobook 16X,Intel i5-1235U,,8.0,512GB,649.0,23.425354269436408,13546.0,10.6,360.9453662470941 -LPASU00779OB,Zenbook 14X OLED,Intel i7-12700H,Intel Iris Xe,16.0,1TB,1234.05,44.51408031998271,26424.0,12.1,360.71537068986436 -LPLEN03611,21KJ000EUS,AMD Ryzen 7 7730U Octa-core (8 Core),,16.0,512 GB,899.0,32.34193729085897,18824.0,13.2,359.7545861052166 -LPLEN03685OB,IdeaPad Slim 3 15AMN8,AMD Ryzen 3 7320U,,8.0,256GB,426.55,15.334435797752278,9066.0,4.6,359.4991395557913 -LPASU00782OB,Vivobook Go,AMD Ryzen 3 7320U,,8.0,128GB,426.55,15.334435797752278,9066.0,4.6,359.4991395557913 -LPACE00946,,Intel i5-1135G7,Intel Iris,8.0,512GB,486.88,17.498647604931787,9891.0,10.6,359.4037053264005 -LPMSI00536OB,Katana GF66,Intel i7-12650H,GeForce RTX 3050 Ti,16.0,512GB,1159.0899978638,41.63522990269456,23281.0,28.2,359.20618743521374 -LPGIG00152OB,AORUS 15,Intel Core i7-13700H,GeForce RTX 4060,16.0,1TB,1439.1,51.60199292332198,27890.0,46.3,358.5712801287054 -LPASU00785,TUF Gaming Notebook,Intel i5-11400H,GeForce RTX 2050,8.0,512GB,799.0,28.576020684162263,15822.0,21.2,357.6473176991522 -LPGIG00133OB,A5 K1,AMD Ryzen 5 5600H,GeForce RTX 3060,16.0,512GB,936.79000152588,33.50200413558168,17093.0,42.0,357.6255519488072 -LPLEN03438,Legion Pro 5,AMD Ryzen 7 7745HX,GeForce RTX 4070,16.0,512GB,1699.0,60.48427357734963,32909.0,51.7,355.9992558996447 -LPLEN03437OB,Legion Pro 5,Intel i9-13900HX,GeForce RTX 4070,16.0,512GB,2249.1,80.05294554102727,44977.0,51.7,355.93324236817955 -LPACE00984OB,Aspire 3,Intel i5-1235U,,16.0,512GB,664.05,23.425354269436408,13546.0,10.6,352.76491633817346 -LPHEW02035,Omen 16-wd0010ca,Intel i7-13620H,GeForce RTX 4060,16.0,1TB,1399.0,49.330223829759476,26489.0,46.3,352.6106063599677 -LPASU00760OB,Vivobook 16X,Intel i9-13900H,Geforce RTX 4050,16.0,512GB,1529.1,53.909828863394026,29687.0,41.9,352.55921040739014 -LPLEN03212OB,IdeaPad 5,Intel Core i5-1235U,Intel Iris Xe,8.0,512GB,664.89,23.425354269436408,13546.0,10.6,352.3192448290154 -LPLEN03432OB,IdeaPad Flex 5,AMD Ryzen 5 7530U,,16.0,512GB,806.55,28.36445740480412,16507.0,11.6,351.6763673027602 -LPLEN03565,Legion Pro 5 16ARX8,Ryzen 7 7745HX,GeForce RTX 4060,16.0,1TB,1699.0,59.740471924457076,32909.0,46.3,351.6213768361217 -LPHEW01913OB,15-DY2067MS,Intel Core i5-1135G7,Intel Iris X ,12.0,256GB,498.64,17.498647604931787,9891.0,10.6,350.92747483017376 -LPACE00888,TravelMate P2,Intel Core i5-1135G7,,8.0,256 GB,499.0,17.498647604931787,9891.0,10.6,350.67430070003576 -LPACE00968OB,Nitro 5,Intel i5-12450H,GeForce RTX 4060,16.0,512GB,989.1,34.682907468481716,17456.0,46.3,350.6511724646822 -LPMSI00539OB,Katana 15,Intel i7-12650H,GeForce RTX 4060,16.0,1TB,1259.1,44.128342850352965,23281.0,46.3,350.47528274444414 -LPACE00956OB,Nitro 5,Intel i7-12650H,GeForce RTX 4060,16.0,512GB,1259.1,44.128342850352965,23281.0,46.3,350.47528274444414 -LPHUA00040,MateBook D15,Intel i5-1135G7,Intel Iris Xe ,8.0,512GB,499.88,17.498647604931787,9891.0,10.6,350.0569657704206 -LPASU00717,G614JJ-DS71-CA,Intel i7-13650HX,RTX 3050,16.0,1TB,1599.0,55.92343902786582,32152.0,27.5,349.7400814750833 -LPACE00940,Nitro,Intel i7-12700H,GeForce RTX 3060,16.0,512GB,1399.0,48.63253762025819,26424.0,42.0,347.62357126703495 -LPHUA00042OB,Matebook D14,Intel i7-1360P,,16.0,1TB,949.05,32.97686611534512,19309.0,12.1,347.4723788561732 -LPACE00896,A715,AMD Ryzen 7 5700U,RTX3050,16.0,512GB,849.0,29.495678366279954,15854.0,27.5,347.41670631660725 -LPLEN03569OB,V14,Ryzen 5 5500U,,16.0,512GB,664.05,22.911238659871415,13144.0,11.6,345.0227943659576 -LPMSI00575,Modern 15,Intel i7-1255U,Intel Iris Xe,16.0,512GB,699.0,23.998432517161238,13772.0,12.1,343.3252148377859 -LPLEN03435,Legion Pro 5,Intel i7-13700HX,GeForce RTX 4060,16.0,1TB,1799.0,61.68793422379224,34110.0,46.3,342.9012463801681 -LPASU00779,Zenbook 14X OLED,Intel i7-12700H,Intel Iris Xe,16.0,1TB,1299.0,44.51408031998271,26424.0,12.1,342.67960215537113 -LPASU00686OB,TUF Gaming Notebook,AMD Ryzen 7 7735HS,AMD Radeon RX 7600S,16.0,1TB,1349.1,46.080437465743415,24264.0,48.9,341.56428334254997 -LPLEN03685,IdeaPad Slim 3 15AMN8,AMD Ryzen 3 7320U,,8.0,256GB,449.0,15.334435797752278,9066.0,4.6,341.5241825780017 -LPASU00782,Vivobook Go,AMD Ryzen 3 7320U,,8.0,128GB,449.0,15.334435797752278,9066.0,4.6,341.5241825780017 -LPLEN03433,Legion Pro 5,AMD Ryzen 7 7745HX,GeForce RTX 4070,16.0,1TB,1799.0,60.48427357734963,32909.0,51.7,336.21052572178786 -LPLEN03456OB,IdeaPad,Intel i5-1135G7,,8.0,512GB,521.55,17.498647604931787,9891.0,10.6,335.51236899495325 -LPASU00500OB,ExpertBook B1,Intel i5 1135G7,,8.0,256GB,521.55,17.498647604931787,9891.0,10.6,335.51236899495325 -LPACE00984,Aspire 3,Intel i5-1235U,,16.0,512GB,699.0,23.425354269436408,13546.0,10.6,335.12667052126477 -LPASU00780OB,Zenbook,Intel i7-12700H,,16.0,1TB,1329.05,44.51408031998271,26424.0,12.1,334.9315700687161 -LPLEN03432,,AMD Ryzen 5 7530U,,16.0,512GB,849.0,28.36445740480412,16507.0,11.6,334.09254893762215 -LPMSI00581,Modern 15,AMD Ryzen 5-7530U,,16.0,512GB,849.0,28.36445740480412,16507.0,11.6,334.09254893762215 -LPMSI00561,Bravo 15,AMD Ryzen 7 7735HS,GeForce RTX 3050,16.0,512GB,1299.0,43.13277906353956,24264.0,27.5,332.046028202768 -LPHUA00042,Matebook D14,Intel i7-1360P,,16.0,1TB,999.0,32.97686611534512,19309.0,12.1,330.0987599133645 -LPHEW01967OB,ProBook 440 G9,Intel i5-1235U,,16.0,256GB,711.55,23.425354269436408,13546.0,10.6,329.2158565025144 -LPLEN03569,V14,Ryzen 5 5500U,,16.0,512GB,699.0,22.911238659871415,13144.0,11.6,327.7716546476597 -LPMSI00564,Bravo 15,AMD Ryzen 7 7735HS,GeForce RTX 4060,32.0,1TB,1399.0,45.72231074398033,24264.0,46.3,326.8213777268072 -LPHEW01733,16-c0010ca,AMD Ryzen 7 5800H,NVIDIA GeForce RTX 3050 Ti,16.0,1TB,1172.88,38.147310330779526,21130.0,28.2,325.24478489512586 -LPHEW02021OB,14-em0030ca,AMD Ryzen 3 7320U,Radeon ,8.0,256GB,474.05,15.334435797752278,9066.0,4.6,323.47718168446954 -LPLEN03086OB,Legion 5,Intel i7-12700H,GeForce RTX 3070,16.0,512GB,1529.89,49.45898390124992,26424.0,48.0,323.2845753697973 -LPLEN03428OB,IdeaPad Slim 3,AMD Ryzen 3 7320U,AMD Radeon 610M ,8.0,512GB,474.99,15.334435797752278,9066.0,4.6,322.83702389002457 -LPGIG00152,AORUS 15,Intel Core i7-13700H,GeForce RTX 4060,16.0,1TB,1599.0,51.60199292332198,27890.0,46.3,322.7141521158348 -LPMSI00540OB,Thin GF63,Intel i7-12650H,GeForce RTX 4050,16.0,512GB,1349.1,43.522282244292356,23281.0,41.9,322.6023441130558 -LPHEW01543OB,Notebook,AMD Ryzen 7 5700U,AMD Radeon ,16.0,1TB,854.89,27.52598139658299,15854.0,13.2,321.9827275624114 -LPMSI00578,Modern 14,Intel i5-1335U,,16.0,512GB,899.0,28.911003693791848,16929.0,10.6,321.5906973725456 -LPMSI00560OB,Thin GF63,Intel i5-12450H,GeForce RTX 4060,16.0,512GB,1079.1,34.682907468481716,17456.0,46.3,321.40587034085553 -LPLEN03707,V15 G4,Intel i3-1315U,Intel UHD ,16.0,512GB,699.0,22.45006412429795,13004.0,9.9,321.17402180683763 -LPLEN03437,,Intel i9-13900HX,GeForce RTX 4070,16.0,512GB,2499.0,80.05294554102727,44977.0,51.7,320.3399181313616 -LPASU00583OB,TUF Gaming Notebook,Ryzen 5 4600H,GeForce GTX 1650,8.0,512GB,827.89000091553,26.417794704865184,14525.0,20.8,319.0978834827189 -LPASU00500,ExpertBook B1,Intel i5 1135G7,,8.0,256GB,549.0,17.498647604931787,9891.0,10.6,318.7367505452056 -LPLEN03456,IdeaPad,Intel i5-1135G7,,8.0,512GB,549.0,17.498647604931787,9891.0,10.6,318.7367505452056 -LPMSI00563OB,Modern 15,Intel i5-1155G7,Intel Iris Xe,16.0,512GB,569.05,18.12618125176169,10278.0,10.6,318.5340699720884 -LPASU00627OB,TUF507RR-DS71-CA,AMD Ryzen 7 6800H,GeForce RTX 3070,16.0,512GB,1412.0600000763,44.967334801201275,23654.0,48.0,318.4520119454661 -LPASU00780,Zenbook,Intel i7-12700H,,16.0,1TB,1399.0,44.51408031998271,26424.0,12.1,318.18499156528026 -LPASU00760,Vivobook 16X,Intel i9-13900H,GeForce RTX 4050,16.0,512GB,1699.0,53.909828863394026,29687.0,41.9,317.30328936665114 -LPLEN03001OB,82RG006WCC (Open Box),AMD Ryzen 7 6800H,GeForce RTX 3060,16.0,1TB,1397.5899969482,44.140888520209536,23654.0,42.0,315.83575023144334 -LPHEW02101,14-ep0000ca,Intel i3-N305,,8.0,256GB,549.0,17.33669075739038,9978.0,8.4,315.7867168923566 -LPACE00968,Nitro 5,Intel i5-12450H,GeForce RTX 4060,16.0,512GB,1099.0,34.682907468481716,17456.0,46.3,315.58605521821397 -LPLEN03436OB,Legion Pro 5,Intel i7-13700HX,GeForce RTX 4070,16.0,1TB,1979.1,62.431735876684805,34110.0,51.7,315.4551860779385 -LPMSI00539,Katana 15,Intel i7-12650H,GeForce RTX 4060,16.0,1TB,1399.0,44.128342850352965,23281.0,46.3,315.42775446999974 -LPACE00956,Nitro 5,Intel i7-12650H,GeForce RTX 4060,16.0,512GB,1399.0,44.128342850352965,23281.0,46.3,315.42775446999974 -LPASU00721OB,G733PZ-XS96,AMD Ryzen 9 7945HX,RTX 4080,32.0,1TB,3149.1,98.93939393939394,55503.0,64.9,314.18308068779635 -LPMSI00565OB,Bravo 15,AMD Ryzen 7 7735HS,GeForce RTX 4050,16.0,1TB,1439.1,45.11625013791973,24264.0,41.9,313.5032321445329 -LPMSI00543,Katana GF76,Intel i7-11800H,GeForce RTX 3050 Ti,16.0,512GB,1199.0,37.53599202366099,20753.0,28.2,313.06081754512917 -LPHEW01967,ProBook 440 G9,Intel i5-1235U,,16.0,256GB,749.0,23.425354269436408,13546.0,10.6,312.75506367738865 -LPACE00960,PH16-71-72YG,Intel i7-13700HX,GeForce RTX 4070,16.0,1TB,1999.0,62.431735876684805,34110.0,51.7,312.3148368018249 -LPASU00800,Vivobook S 15 OLED,Intel i9-13900H,,16.0,1TB,1599.0,49.80514566780174,29687.0,12.1,311.4768334446637 -LPASU00763OB,Vivobook S 16 Flip,Intel i5-1335U,Intel HD ,16.0,512GB,901.55,28.02946099406733,16929.0,4.2,310.9030114144233 -LPMSI00593OB,Katana 17,Intel i7-13620H,GeForce RTX 4070,16.0,1TB,1619.1,50.07402548265204,26489.0,51.7,309.2707398100923 -LPCNO00061OB,F1500EA-WB51,Intel i5-1135G7,,8.0,256GB,568.05999832153,17.498647604931787,9891.0,10.6,308.0422430136914 -LPASU00581OB,ExpertBook B1,Intel i5-1135G7,,8.0,256GB,569.05,17.498647604931787,9891.0,10.6,307.50632817734447 -LPHUA00036OB,MateBook D15,Intel i5-1135G7,Intel Iris Xe ,8.0,512GB,569.05,17.498647604931787,9891.0,10.6,307.50632817734447 -LPASU00686,TUF Gaming Notebook,AMD Ryzen 7 7735HS,AMD Radeon RX 7600S,16.0,1TB,1499.0,46.080437465743415,24264.0,48.9,307.40785500829503 -LPHEW02021,Consumer Laptop 14,AMD Ryzen 3 7320U,Radeon ,8.0,256GB,499.0,15.334435797752278,9066.0,4.6,307.303322600246 -LPMSI00580OB,Pulse 17,Intel i9-13900H,GeForce RTX 4070,16.0,1TB,1799.1,55.259691122347185,29687.0,51.7,307.15185994301146 -LPASU00561OB,ExpertBook B1,Intel Core i5-1135G7,Intel Iris Xe G7,8.0,256GB,569.89,17.498647604931787,9891.0,10.6,307.0530734866691 -LPLEN03428,IdeaPad Slim 3,AMD Ryzen 3 7320U,AMD Radeon 610M ,8.0,512GB,499.99,15.334435797752278,9066.0,4.6,306.6948498520426 -LPLEN00715OB,,Intel Core i5-8365U,,16.0,256 GB,359.1,11.00802234947318,6245.0,6.4,306.5447604977215 -LPLEN03493OB,Thinkbook T490,Intel i5-8365U,,16.0,256GB,359.1,11.00802234947318,6245.0,6.4,306.5447604977215 -LPLEN03429OB,IdeaPad Slim 3,AMD Ryzen 5 7520U,AMD Radeon 610M,8.0,512GB,522.49,15.997643191947187,9475.0,4.6,306.18084924012294 -LPHEW01543,15-ef2030ca,AMD Ryzen 7 5700U,AMD Radeon ,16.0,1TB,899.88,27.52598139658299,15854.0,13.2,305.88502240946553 -LPCNO00052OB,VivoBook F515,Intel Core i7-1165G7,Intel Iris Xe ,8.0,512GB,603.14,18.444678666018053,10347.0,12.1,305.81090071986694 -LPLEN03518OB,Thinkbook T480s,Intel i5-8350U,,16.0,256GB,359.1,10.977213204021584,6226.0,6.4,305.68680601563864 -LPLEN02718OB,,Intel Core i5-8350U,Intel UHD 620,16.0,256 GB,359.1,10.977213204021584,6226.0,6.4,305.68680601563864 -LPMSI00498OB,SUMMIT E14,Intel i7-1280P,Iris Xe ,16.0,1TB,1141.7899938965,34.82703637641208,20450.0,12.1,305.021383639565 -LPASU00761,Vivobook Pro 16X OLED,Intel i9-13980HX,Geforce RTX 4070,32.0,1TB,2799.0,84.94511353194667,47994.0,51.7,303.4837925400024 -LPMSI00563,Modern 15 Notebook,Intel i5-1155G7,Intel Iris Xe,16.0,512GB,599.0,18.12618125176169,10278.0,10.6,302.607366473484 -LPASU00764OB,Zenbook 15 OLED,AMD Ryzen 7 7735U,AMD Radeon ,16.0,1TB,1234.05,37.20928196420922,21350.0,18.8,301.52167225160423 -LPGIG00157OB,AERO 14 OLED,Intel i5-12500H,RTX 4050,16.0,1TB,1349.1,40.668382455091766,21521.0,41.9,301.44824294041786 -LPASU00556,G17,AMD Ryzen 7 4800H,NVIDIA GeForce RTX 3060,16.0,1TB,1196.88,36.03159713055493,18653.0,42.0,301.0460290969431 -LPACE00994,Vero,Intel i7-1255U,Intel Iris Xe ,16.0,1TB,799.0,23.998432517161238,13772.0,12.1,300.3558512786137 -LPGIG00154OB,AERO 14,Intel Core i7-13700H,GeForce RTX 4050,16.0,1TB,1709.1,50.995932317261385,27890.0,41.9,298.3788679261681 -LPLEN03312OB,T490,Intel i5-8265U,Intel UHD ,16.0,256GB,359.1,10.648041807880833,6023.0,6.4,296.5202397070686 -LPASU00763,Vivobook S 16 Flip,Intel i5-1335U,Intel HD ,16.0,512GB,949.0,28.02946099406733,16929.0,4.2,295.3578608437021 -LPACE00958,PHN16-71-788N,Intel i7-13700HX,GeForce RTX 4060,16.0,1024GB,2099.99,61.68793422379224,34110.0,46.3,293.7534665583753 -LPASU00625OB,G15,AMD Ryzen 9 6900HX,GeForce RTX 3070 Ti,16.0,1TB,1619.89,47.54519858430704,24887.0,52.2,293.5088097605827 -LPCNO00061,Vivobook F Series,Intel i5-1135G7,,8.0,256GB,597.95999908447,17.498647604931787,9891.0,10.6,292.63910013585814 -LPLEN03567OB,ThinkPad X1 Gen 3,Intel i7-8550U,N/A,16.0,256GB,359.1,10.495617614593984,5929.0,6.4,292.27562279571106 -LPASU00581,ExpertBook B1,Intel i5-1135G7,,8.0,256GB,599.0,17.498647604931787,9891.0,10.6,292.13101176847726 -LPHUA00036,MateBook D15,Intel i5-1135G7,Intel Iris Xe ,8.0,512GB,599.0,17.498647604931787,9891.0,10.6,292.13101176847726 -LPASU00561,ExpertBook B1,Intel Core i5-1135G7,Intel Iris Xe G7,8.0,256GB,599.88,17.498647604931787,9891.0,10.6,291.7024672423115 -LPMSI00553OB,Vector GP68HX,Intel i9-12900HX,GeForce RTX 4080,32.0,1TB,2249.1,65.59092628899667,34937.0,64.9,291.63188070337765 -LPGIG00148OB,AORUS Gaming Notebook,Intel i7-13700H,GeForce RTX 4070,16.0,1TB,1799.1,52.345794576214544,27890.0,51.7,290.95544759165443 -LPLEN03429,IdeaPad Slim 3,AMD Ryzen 5 7520U,AMD Radeon 610M,8.0,512GB,549.99,15.997643191947187,9475.0,4.6,290.8715284268293 -LPACE00955,NH.QLZAA.005,Intel i5-12500H,GeForce RTX 4050,8.0,512GB,1399.99,40.668382455091766,21521.0,41.9,290.49052104009144 -LPMSI00540,Thin GF63,Intel i7-12650H,GeForce RTX 4050,16.0,512GB,1499.0,43.522282244292356,23281.0,41.9,290.3421097017502 -LPMSI00560,Thin GF63,Intel i5-12450H,GeForce RTX 4060,16.0,512GB,1199.0,34.682907468481716,17456.0,46.3,289.26528330676996 -LPASU00764,Zenbook 15 OLED,AMD Ryzen 7 7735U,AMD Radeon ,16.0,1TB,1299.0,37.20928196420922,21350.0,18.8,286.445588639024 -LPASU00707OB,Zenbook OLED,AMD Ryzen 7 7730U,AMD Radeon,16.0,1TB,1139.05,32.34193729085897,18824.0,13.2,283.9378191550764 -LPLEN03600,21KK0009US,AMD Ryzen 5 7530U Hexa-core (6 Core),,16.0,512 GB,999.0,28.36445740480412,16507.0,11.6,283.9285025505918 -LPLEN03436,Legion Pro 5,Intel i7-13700HX,GeForce RTX 4070,16.0,1TB,2199.0,62.431735876684805,34110.0,51.7,283.90966747014465 -LPASU00721,ROG Strix,AMD Ryzen 9 7945HX,RTX 4080,32.0,1TB,3499.0,98.93939393939394,55503.0,64.9,282.7647726190167 -LPMSI00568OB,Modern,Intel i5-1235U,Intel Iris Xe,16.0,512GB,830.18999938965,23.425354269436408,13546.0,10.6,282.1685913665374 -LPMSI00565,Bravo 15,AMD Ryzen 7 7735HS,GeForce RTX 4050,16.0,1TB,1599.0,45.11625013791973,24264.0,41.9,282.1529089300796 -LPHEW02023OB,Consumer Notebook,AMD Ryzen 5 7520U,AMD Radeon ,8.0,512GB,569.05,15.997643191947187,9475.0,4.6,281.1289551348245 -LPASU00726OB,GV302XU-DS91T-CA,AMD Ryzen 9 7940HS,RTX 4050,16.0,1TB,1979.1,55.38056017521501,30594.0,41.9,279.82699295242793 -LPGIG00141OB,AORUS 17,Intel i7-12700H,GeForce RTX 3080 Ti,32.0,1TB,1799.1,50.24410786819207,26424.0,53.7,279.2735693857599 -LPMSI00593,Katana 17,Intel i7-13620H,GeForce RTX 4070,16.0,1TB,1799.0,50.07402548265204,26489.0,51.7,278.3436658290831 -LPASU00752OB,Vivobook 17,Intel i7-1165G7,Intel Iris Xe ,8.0,512GB,664.05,18.444678666018053,10347.0,12.1,277.7603895191334 -LPASU00610OB,TUF517ZC-DS51-CA,Intel i5-12450H,GeForce RTX 3050,16.0,512GB,1159.0899978638,32.093375788040944,17456.0,27.5,276.88424408103737 -LPMSI00580,Pulse 17,Intel i9-13900H,GeForce RTX 4070,16.0,1TB,1999.0,55.259691122347185,29687.0,51.7,276.4366739487103 -LPLEN03493,,Intel i5-8365U,,16.0,256GB,399.0,11.00802234947318,6245.0,6.4,275.8902844479494 -LPLEN00715,ThinkPad T490,Intel i5-8365U,,16.0,256GB,399.0,11.00802234947318,6245.0,6.4,275.8902844479494 -LPHEW02012,Chromebook C204MA-SS02-CB,Intel Celeron-N4020,Intel UHD ,4.0,32GB eMMC,99.0,2.729718429336632,1556.0,1.5,275.7291342764275 -LPGIG00151,BSF-73US754SH,Intel i7-13700H,GeForce RTX 4070,16.0,1TB,1899.0,52.345794576214544,27890.0,51.7,275.64926053825457 -LPLEN02718,ThinkPad T480,Intel Core i5-8350U,Intel UHD 620,16.0,256 GB,399.0,10.977213204021584,6226.0,6.4,275.11812541407477 -LPLEN03518,Thinkbook T480s,Intel i5-8350U,,16.0,256GB,399.0,10.977213204021584,6226.0,6.4,275.11812541407477 -LPMSI00592,Stealth 14Studio,Intel i7-13620H,GeForce RTX 3050,16.0,512GB,1699.0,46.740692149318704,26489.0,27.5,275.10707562871517 -LPLEN03268,ThinkPad T580,Intel Core i5-8350U,,16.0,256GB,399.88,10.977213204021584,6226.0,6.4,274.51268390571136 -LPHEW01946OB,,Intel i5-1235U,,16.0,256GB,854.05,23.425354269436408,13546.0,10.6,274.2855133708379 -LPACE00961,Predator Helios,Intel i9-13900HX,GeForce RTX 4080,32.0,1 TB,2999.0,81.87112735920908,44977.0,64.9,272.99475611606897 -LPGIG00145,,Intel Core i9-13900HX,GeForce RTX 4080,16.0,1TB,2999.0,81.87112735920908,44977.0,64.9,272.99475611606897 -LPLEN03578OB,Yoga L390,Intel i5-8365U,,16.0,256GB,404.1,11.00802234947318,6245.0,6.4,272.4083729144563 -LPLEN03202OB,ThinkPad X380 Yoga,Intel i5-8350U,Integrated,16.0,512GB,404.1,10.977213204021584,6226.0,6.4,271.64595902057863 -LPGIG00161,,Intel i5-12500H,GeForce RTX 4050,16.0,512GB,1499.0,40.668382455091766,21521.0,41.9,271.30341864637603 -LPGIG00158,AORUS Gaming Notebook,Intel i5-12500H,GeForce RTX 4050,8.0,512GB,1499.0,40.668382455091766,21521.0,41.9,271.30341864637603 -LPGIG00157,AERO 14,Intel i5-12500H,RTX 4050,16.0,1TB,1499.0,40.668382455091766,21521.0,41.9,271.30341864637603 -LPASU00707,Zenbook,AMD Ryzen 7 7730U,AMD Radeon,16.0,1TB,1199.0,32.34193729085897,18824.0,13.2,269.7409281973226 -LPASU00759,H7604JI-XS91T-CA,Intel i9-13980HX,Geforce RTX 4070,32.0,1TB,3154.0,84.94511353194667,47994.0,51.7,269.3250270511943 -LPGIG00154,AERO 14,Intel Core i7-13700H,GeForce RTX 4050,16.0,1TB,1899.0,50.995932317261385,27890.0,41.9,268.54098113355127 -LPACE00957,AN16-51-74BV,Intel i7-13700H,GeForce RTX 4050,16.0,1024GB,1899.99,50.995932317261385,27890.0,41.9,268.40105641219895 -LPACE00959,PH16-71-71AV,Intel i7-13700HX,GeForce RTX 4060,16.0,1024GB,2299.99,61.68793422379224,34110.0,46.3,268.2095757972524 -LPACE00952,Nitro 5,Intel i5-12450H,GeForce RTX 3050,8.0,512GB,1199.99,32.093375788040944,17456.0,27.5,267.44702695889924 -LPLEN03508,21JR001QUS,"AMD Ryzen 5 7530U (Hexa-core, 6 Core) ",,8.0,256 GB,1061.69,28.36445740480412,16507.0,11.6,267.16327181007756 -LPHEW02023,Consumer Notebook 14,AMD Ryzen 5 7520U,AMD Radeon ,8.0,512GB,599.0,15.997643191947187,9475.0,4.6,267.0725073780833 -LPLEN03503OB,Legion Slim 7i,Intel i9-13900H,GeForce RTX 4070,32.0,1TB,2069.1,55.259691122347185,29687.0,51.7,267.07114746675944 -LPLEN03312,T490,Intel i5-8265U,Intel UHD ,16.0,256GB,399.0,10.648041807880833,6023.0,6.4,266.8682157363617 -LPLGE00027OB,gram,Intel i5-1240P,Intel Iris Xe ,8.0,512GB,1109.4899984741,29.545023476506298,17320.0,10.6,266.2937342124765 -LPLEN03403OB,T480s,Intel i7-8550U,Intel UHD 620,24.0,256GB,394.15999755859,10.495617614593984,5929.0,6.4,266.27810228342264 -LPLEN00182OB,ThinkPad T480s,Intel Core i7-8550U,,16.0,256 GB,394.15999755859,10.495617614593984,5929.0,6.4,266.27810228342264 -LPLEN03099,ThinkPad E15 Gen 4,AMD Ryzen 7 5825U Octa-core (8 Core) 2 GHz,AMD Radeon ,16.0,512GB,1199.0,31.74845585742294,18458.0,13.2,264.79112474914876 -LPACE00945OB,Aspire,Intel i5-10210U,,8.0,256GB,415.04000549316,10.980456271963856,6228.0,6.4,264.5638041305591 -LPGIG00156OB,AERO 16 OLED,Intel i7-13700H,GeForce RTX 4070,16.0,1TB,1979.1,52.345794576214544,27890.0,51.7,264.49292393620607 -LPMSI00514OB,Summit E13 Flip Evo,Intel Core i7-1280P,Intel Iris Xe,16.0,1TB,1318.4899984741,34.82703637641208,20450.0,12.1,264.1433489576539 -LPASU00752,Vivobook 17,Intel i7-1165G7,Intel Iris Xe ,8.0,512GB,699.0,18.444678666018053,10347.0,12.1,263.8723700431767 -LPLEN02154OB,20WM0085US,Intel i5-1135G7,,8.0,256GB,664.05,17.498647604931787,9891.0,10.6,263.5140065496843 -LPHUA00035OB,Matebook 14,Intel Core i5-1135G7,Intel Iris Xe ,16.0,512GB,664.89,17.498647604931787,9891.0,10.6,263.18109168331284 -LPLEN03567,ThinkPad X1 Gen 3,Intel i7-8550U,,16.0,256GB,399.0,10.495617614593984,5929.0,6.4,263.04806051613997 -LPMSI00553,Vector GP68HX,Intel i9-12900HX,GeForce RTX 4080,32.0,1TB,2499.0,65.59092628899667,34937.0,64.9,262.4686926330399 -LPMSI00537,Pulse 17,Intel i7-13700H,GeForce RTX 4070,16.0,1TB,1999.0,52.345794576214544,27890.0,51.7,261.85990283248896 -LPGIG00148,,Intel i7-13700H,GeForce RTX 4070,16.0,1TB,1999.0,52.345794576214544,27890.0,51.7,261.85990283248896 -LPMSI00588,Prestige 16EVO,Intel i7-13700H,,32.0,1TB,1799.0,46.89124912166909,27890.0,12.1,260.6517460904341 -LPLEN03055,ThinkBook 15 G4,Intel Core i5-1235U,,16.0,256GB,899.0,23.425354269436408,13546.0,10.6,260.57123770229595 -LPHEW01946,ProBook 450 G9,Intel i5-1235U,,16.0,256GB,899.0,23.425354269436408,13546.0,10.6,260.57123770229595 -LPGIG00150,AORUS 15X,Intel i7-13700HX,GeForce RTX 4070,16.0,1TB,2399.0,62.431735876684805,34110.0,51.7,260.2406664305327 -LPLGE00025,gram,Intel i5-1240P,,8.0,512GB,1135.88,29.545023476506298,17320.0,10.6,260.1069080933399 -LPLEN03602,,Intel Core i5-1335U,,16.0,256GB,1119.2,28.911003693791848,16929.0,10.6,258.3184747479615 -LPLEN03338,ThinkPad T14s Gen 2,AMD Ryzen 5 PRO 5650U Hexa-core (6 Core) 2.30 GHz,,,256 GB,999.0,25.794326060552457,14922.0,11.6,258.2014620675922 -LPGIG00159,AORUS Gaming Notebook,Intel i5-12500H,GeForce RTX 4060,16.0,512GB,1599.0,41.274443061152375,21521.0,46.3,258.1265982561124 -LPLEN03521,,AMD Ryzen 5 7530U,,16.0,256GB,1099.0,28.36445740480412,16507.0,11.6,258.09333398365897 -LPMSI00381OB,Prestige 14,Intel Core i7-1185G7,NVIDIA GeForce MX450,16.0,1TB,736.14,18.847585187488193,10553.0,12.6,256.0326186253728 -LPACE00963,AN515-58-7578,Intel i7-12650H,GeForce RTX 4050,16.0,1TB,1699.99,43.522282244292356,23281.0,41.9,256.0149309366076 -LPLEN03049OB,Legion 5,AMD Ryzen 7 6800H,GeForce RTX 3070 Ti,16.0,512GB,1780.0900054932,45.54584719789549,23654.0,52.2,255.86260839252537 -LPLEN03706,V15 G4,AMD Ryzen 5 5500U,Integrated graphics,16.0,512GB,899.0,22.911238659871415,13144.0,11.6,254.85248787398677 -LPLGE00026OB,Gram,Intel i7-1260P,Intel Iris Xe ,16.0,512GB,1162.6900030518,29.607318523323062,17231.0,12.1,254.64499088846128 -LPLGE00019OB,gram,Intel i5-1155G7,Intel Iris Xe ,8.0,512GB,712.39,18.12618125176169,10278.0,10.6,254.4418261312159 -LPLGE00027,gram,Intel i5-1240P,Intel Iris Xe ,8.0,512GB,1167.88,29.545023476506298,17320.0,10.6,252.97995921247298 -LPLEN03301OB,IdeaPad Flex 5,Intel i7-1255U,,16.0,512GB,949.05,23.998432517161238,13772.0,12.1,252.8679470750881 -LPHEW01822OB,ProBook 450 G9,Intel i7-1255U,,16.0,512GB,949.05,23.998432517161238,13772.0,12.1,252.8679470750881 -LPGIG00153,G5 MF,Intel i5-12450H,GeForce RTX 4050,8.0,512GB,1349.0,34.07684686242111,17456.0,41.9,252.60820505871837 -LPMSI00516,Modern 14 Business Notebook,Intel Core i5-1235U,Intel Iris Xe,8.0,512GB,929.0,23.425354269436408,13546.0,10.6,252.15666597886337 -LPASU00726,GV302XU-DS91T-CA,AMD Ryzen 9 7940HS,RTX 4050,16.0,1TB,2199.0,55.38056017521501,30594.0,41.9,251.84429365718515 -LPHUA00037OB,MateBook 14s,Intel Core i7-11370H,Intel Iris Xe ,16.0,512GB,824.49000038147,20.735906167234205,11760.0,12.1,251.49978965955006 -LPGIG00141,YE5-74US544SH,Intel i7-12700H,GeForce RTX 3080 Ti,32.0,1TB,1999.0,50.24410786819207,26424.0,53.7,251.34621244718392 -LPACE00945,Aspire A515-54-54B9,Intel i5-10210U,,8.0,256GB,436.88000488281,10.980456271963856,6228.0,6.4,251.3380367432766 -LPLEN02154,20WM0085US,Intel i5-1135G7,,8.0,256GB,699.0,17.498647604931787,9891.0,10.6,250.33830622220006 -LPSAS00117,Galaxy Book,Intel i5-1135G7,Intel Iris Xe ,8.0,256GB,699.0,17.498647604931787,9891.0,10.6,250.33830622220006 -LPLEN02719OB,T470,Intel Core i5-6300U,Intel HD 620,8.0,256 GB,262.69000019073,6.576084116069671,3240.0,9.6,250.33629416022714 -LPHUA00035,Matebook 14,Intel Core i5-1135G7,Intel Iris Xe ,16.0,512GB,699.88,17.498647604931787,9891.0,10.6,250.0235412489539 -LPMSI00550,Raider GE78HX,Intel i9-13980HX,GeForce RTX 4070,32.0,2TB,3399.0,84.94511353194667,47994.0,51.7,249.91207276242037 -LPMSI00538OB,Katana 17 B12VGK-217CA,Intel i7-12650H,GeForce RTX 4070,16.0,1TB,1799.1,44.87214450324552,23281.0,51.7,249.41439888413947 -LPASU00610,TUF517ZC-DS51-CA,Intel i5-12450H,GeForce RTX 3050,16.0,512GB,1287.8799972534,32.093375788040944,17456.0,27.5,249.19538976057513 -LPASU00603OB,Vivobook 15,Intel Core i7-1165G7,Intel Iris Xe ,12.0,512GB,741.83999694824,18.444678666018053,10347.0,12.1,248.63418987780707 -LPASU00718,G634JZ-XS96,Intel i9-13980HX,RTX 4080,32.0,1TB,3499.0,86.7632953501285,47994.0,64.9,247.96597699379393 -LPMSI00555,Stealth 15,Intel i9-13900H,GeForce RTX 4060,32.0,1TB,2199.0,54.51588946945463,29687.0,46.3,247.9121849452234 -LPASU00729,Zephyrus Duo,AMD Ryzen 9 7945HX,RTX 4080,32.0,1TB,3999.0,98.93939393939394,55503.0,64.9,247.41033743284305 -LPHUA00039OB,MateBook 14s,i7-11370H,Intel Iris Xe ,16.0,512GB,838.82000030518,20.735906167234205,11760.0,12.1,247.20328747156785 -LPASU00724OB,GU604VI-DS92-CA,Intel i9-13900H,GeForce RTX 4070,32.0,1TB,2249.1,55.259691122347185,29687.0,51.7,245.69690597282107 -LPACE00880OB,Aspire A515-54,Intel i7-10510U,,8.0,512GB,474.89,11.661500539841269,6648.0,6.4,245.56214154522667 -LPHEW01738OB,Probook 640,Intel Core i5-6300U,Intel HD 520,16.0,512GB,242.89,5.9562494053258686,3240.0,5.1,245.2241510694499 -LPLEN03578,Yoga L390,Intel i5-8365U,,16.0,256GB,449.0,11.00802234947318,6245.0,6.4,245.1675356230107 -LPASU00727,GV601VU-DS91T-CA,Intel Core i9-13900H,RTX 4050,16.0,1TB,2199.0,53.909828863394026,29687.0,41.9,245.1561112478128 -LPLEN03577OB,ThinkPad T480,Intel i5-8365U,,16.0,512GB,449.1,11.00802234947318,6245.0,6.4,245.11294476671517 -LPLEN03559OB,,Intel i5-8365U,Intel UHD 620,16.0,512GB,449.1,11.00802234947318,6245.0,6.4,245.11294476671517 -LPLEN03202,X380 Yoga,Intel i5-8350U,Integrated GPU,16.0,512GB,449.0,10.977213204021584,6226.0,6.4,244.48136311852082 -LPMSI00481OB,Raider GE76,Intel i9-12900HK,RTX3080TI,32.0,1TB,2173.39,52.93747579425012,28085.0,53.7,243.5709918341859 -LPGIG00136,AORUS 5 KE4,Intel Core i7-12700H,GeForce RTX 3060,16.0,1TB,1999.0,48.63253762025819,26424.0,42.0,243.28433026642415 -LPHEW01834OB,EliteBook 640 G9,Intel i5-1245U,,16.0,512GB,961.35999755859,23.31995456131252,13481.0,10.6,242.57254951874873 -LPLEN03544,21JR001RUS,Ryzen 5 7530U,,16.0,256 GB,1173.65,28.36445740480412,16507.0,11.6,241.67730928985748 -LPLEN03708,V15 G4,Intel i5-1335U,,16.0,1TB,1199.0,28.911003693791848,16929.0,10.6,241.12596908917305 -LPGIG00164,AORUS 17X,Intel i9-13980HX,GeForce RTX 4080,16.0,1TB,3599.0,86.7632953501285,47994.0,64.9,241.07611933906225 -LPLEN03502OB,IdeaPad Slim 3,AMD Ryzen 5 7520U,,16.0,512GB,664.05,15.997643191947187,9475.0,4.6,240.9102204946493 -LPGIG00146OB,17H,Intel i7-13700H,RTX 4080,16.0,1TB,2249.1,54.163976394396364,27890.0,64.9,240.82511402070324 -LPLEN03503,82Y3007HCC,Intel i9-13900H,NVIDIA GeForce RTX 4070,32.0,1TB,2299.0,55.259691122347185,29687.0,51.7,240.36403272008346 -LPHEW01822,ProBook 450 G9,Intel i7-1255U,,16.0,512GB,999.0,23.998432517161238,13772.0,12.1,240.22454972133372 -LPLEN03301,IdeaPad Flex 5,Intel i7-1255U,,16.0,512GB,999.0,23.998432517161238,13772.0,12.1,240.22454972133372 -LPLEN03568,V14,Intel i7-1255U,,16.0,512GB,999.0,23.998432517161238,13772.0,12.1,240.22454972133372 -LPASU00723,GA402NJ-DS71-CA,AMD Ryzen 7 7735HS,RTX 3050,16.0,512GB,1799.0,43.13277906353956,24264.0,27.5,239.7597502142277 -LPLEN00182,ThinkPad T480s,Intel Core i7-8550U,,16.0,256GB,437.96000671387,10.495617614593984,5929.0,6.4,239.64785491135106 -LPLEN03403,T480s,Intel i7-8550U,Intel UHD 620,24.0,256GB,437.96000671387,10.495617614593984,5929.0,6.4,239.64785491135106 -LPLGE00021OB,gram,Intel i5-1155G7,Intel Iris Xe ,8.0,512GB,759.89,18.12618125176169,10278.0,10.6,238.53690997067588 -LPGIG00156,AERO 16 OLED,Intel i7-13700H,GeForce RTX 4070,16.0,1TB,2199.0,52.345794576214544,27890.0,51.7,238.04363154258547 -LPASU00540,VivoBook Pro 16X,AMD Ryzen 7 5800H,NVIDIA GeForce RTX 3050,16.0,512GB,1599.0,38.05089159799716,21130.0,27.5,237.96680173856888 -LPACE00965,Nitro,AMD Ryzen 7 7735HS,GeForce RTX 4050,16.0,1TB,1899.0,45.11625013791973,24264.0,41.9,237.57898966782375 -LPLEN03552OB,X1 Yoga G4,Intel i5-8265U,,16.0,512GB,449.1,10.648041807880833,6023.0,6.4,237.09734597819715 -LPASU00603,Vivobook 15,Intel Core i7-1165G7,Intel Iris Xe ,12.0,512GB,780.88,18.444678666018053,10347.0,12.1,236.2037530224625 -LPASU00559OB,Zenbook Notebook,Intel Core i5-1135G7,Intel Iris Xe ,8.0,256GB,741.83999328613,17.498647604931787,9891.0,10.6,235.88169636713698 -LPMSI00597,Prestige 13 EVO,Intel i7-1360P,,16.0,512GB,1399.0,32.97686611534512,19309.0,12.1,235.7174132619379 -LPGIG00134,A7 K1,AMD Ryzen 7 5800H,GeForce RTX 3060,16.0,512GB,1699.0,40.04813677706052,21130.0,42.0,235.7159315895263 -LPMSI00579,Stealth 14Studio,Intel i7-13620H,GeForce RTX 4060,16.0,1TB,2099.0,49.330223829759476,26489.0,46.3,235.0177409707455 -LPHUA00039,MateBook 14s,Intel i7-11370H,Intel Iris Xe ,16.0,512GB,882.95999992371,20.735906167234205,11760.0,12.1,234.84536297256773 -LPLEN03299OB,ThinkPad T14 Gen 2,Intel Core i5-1135G7,GeForce MX450 2GB,8.0,256GB,759.89,17.774129698595697,9891.0,12.6,233.90398213683162 -LPMSI00548,Vector GP78 HX,Intel i9-13950HX,GeForce RTX 4080,32.0,1TB,3499.0,81.7965367965368,44931.0,64.9,233.77118261370907 -LPACE00880,Aspire A515-54,Intel i7-10510U,,8.0,512GB,499.88,11.661500539841269,6648.0,6.4,233.2859994366902 -LPMSI00589,Creator Z17HXStudio,Intel i9-13950HX,GeForce RTX 4060,32.0,1TB,3399.0,79.23455332546241,44931.0,46.3,233.11136606490857 -LPACE00966,Nitro 17,AMD Ryzen 7 7735HS,GeForce RTX 4070,32.0,1TB,1999.0,46.4661123968729,24264.0,51.7,232.44678537705303 -LPLEN03487OB,ThinkPad E16,Intel i7-1355U,,16.0,512GB,1139.05,26.466407221231286,15294.0,12.1,232.35509609965575 -LPASU00560OB,ExpertBook B1,Intel i5-1135G7,,8.0,256GB,759.05,17.498647604931787,9891.0,10.6,230.53353013545598 -LPHEW01834,EliteBook 640 G9,Intel i5-1245U,,16.0,512GB,1011.9599990845,23.31995456131252,13481.0,10.6,230.44344225472963 -LPHUA00038OB,Matebook 14,i5-1135G7,Intel Iris Xe ,16.0,512GB,759.89,17.498647604931787,9891.0,10.6,230.27869303362047 -LPLEN02131,20Y70037US,AMD Ryzen 5 5500U,,8.0,256GB,999.0,22.911238659871415,13144.0,11.6,229.34172832704118 -LPLEN03502,IdeaPad Slim 3,AMD Ryzen 5 7520U,,16.0,512GB,699.0,15.997643191947187,9475.0,4.6,228.86470946991682 -LPGIG00144OB,AZF-B5US665SP,Intel Core i9-13900HX,RTX 4090,32.0,2TB,3644.8900085449,82.93173341981515,44977.0,72.6,227.52876829038487 -LPHEW02077,OMEN,AMD Ryzen 9 7940HS,GeForce RTX 4070,32.0,2TB,2499.0,56.73042243416818,30594.0,51.7,227.01249473456656 -LPASU00621OB,GA503RS-XS92-CA,AMD Ryzen 9 6900HS,GeForce RTX 3080,32.0,1TB,2015.89,45.285209063972864,23901.0,47.4,224.64127042632714 -LPMSI00538,Katana 17 B12VGK-217CA,Intel i7-12650H,GeForce RTX 4070,16.0,1TB,1999.0,44.87214450324552,23281.0,51.7,224.4729589957255 -LPLEN03564OB,ThinkPad X1,Intel i7-8650U,,16.0,256GB,494.1,11.077748310232058,6288.0,6.4,224.20053248799954 -LPASU00559,Zenbook Notebook,Intel Core i5-1135G7,Intel Iris Xe ,8.0,256GB,780.88000488281,17.498647604931787,9891.0,10.6,224.08881640602237 -LPLEN03462,ThinkBook 14s Yoga,Intel Core i5-1335U,,16.0,256GB,1299.0,28.911003693791848,16929.0,10.6,222.56353882826673 -LPLEN03474,ThinkPad E16,Intel i5-1335U,,16.0,256GB,1299.0,28.911003693791848,16929.0,10.6,222.56353882826673 -LPHEW01833OB,EliteBook 650 G9,Intel i5-1245U,,16.0,256GB,1048.7599990845,23.31995456131252,13481.0,10.6,222.35739903952614 -LPLEN03299,ThinkPad T14 Gen 2,Intel Core i5-1135G7,GeForce MX450 2GB,8.0,256GB,799.88,17.774129698595697,9891.0,12.6,222.20995272535504 -LPASU00766,Zenbook Pro 14,Intel i9-13900H,GeForce RTX 4070,32.0,1TB,2499.0,55.259691122347185,29687.0,51.7,221.12721537553895 -LPASU00724,ROG Zephyrus,Intel i9-13900H,GeForce RTX 4070,32.0,1TB,2499.0,55.259691122347185,29687.0,51.7,221.12721537553895 -LPGIG00155,AERO 16 OLED,Intel i9-13900H,GeForce RTX 4070,32.0,1TB,2499.0,55.259691122347185,29687.0,51.7,221.12721537553895 -LPLEN03487,21JN0073US,Intel i7-1355U,,16.0,512GB,1199.0,26.466407221231286,15294.0,12.1,220.73734129467294 -LPMSI00590,Modern 14,Intel i7-1355U,,16.0,1TB,1199.0,26.466407221231286,15294.0,12.1,220.73734129467294 -LPLEN03577,ThinkPad T480,Intel i5-8365U,,16.0,512GB,499.0,11.00802234947318,6245.0,6.4,220.6016502900437 -LPLEN03559,ThinkPad T590,Intel i5-8365U,Intel UHD 620,16.0,512GB,499.0,11.00802234947318,6245.0,6.4,220.6016502900437 -LPMSI00293OB,GF75 10UEK-003CA,Intel Core i7-10750H,RTX3060,16.0,512GB,1146.4900003815,25.262990028236132,12012.0,42.0,220.35072281336733 -LPLGE00032,Gram EVO,Intel i7-1360P,Intel Iris Xe,16.0,512GB,1499.0,32.97686611534512,19309.0,12.1,219.99243572611817 -LPASU00722,G834JY-XS97,Intel i9-13980HX,RTX 4090,32.0,2TB,3999.0,87.82390141073456,47994.0,72.6,219.6146571911342 -LPASU00560,ExpertBook B1,Intel i5-1135G7,,8.0,256GB,799.0,17.498647604931787,9891.0,10.6,219.00685362868316 -LPHUA00038,Matebook 14,i5-1135G7,Intel Iris Xe ,16.0,512GB,799.88,17.498647604931787,9891.0,10.6,218.76590994813955 -LPLGE00024OB,Gram,Intel i7-1260P,Intel Iris Xe ,16.0,512GB,1355.5400015259,29.607318523323062,17231.0,12.1,218.41715102464545 -LPLEN03010,ThinkBook 14 G4,Intel i7-1255U,,16.0,512GB,1099.0,23.998432517161238,13772.0,12.1,218.36608295870099 -LPLGE00033OB,Gram EVO,Intel i7-1360P,Intel Iris Xe,16.0,512GB,1519.05,32.97686611534512,19309.0,12.1,217.08874701520764 -LPLGE00030OB,Gram,Intel i7-1360P,Intel Iris Xe,16.0,512GB,1519.05,32.97686611534512,19309.0,12.1,217.08874701520764 -LPLGE00031OB,Gram EVO,Intel i7-1360P,Intel Iris Xe,16.0,512GB,1519.99,32.97686611534512,19309.0,12.1,216.9544938805197 -LPASU00770OB,GA402XZ-CS94,AMD Ryzen 9 7940HS,GeForce RTX 4080,16.0,1TB,2699.1,58.54860425235,30594.0,64.9,216.918988745693 -LPMSI00567,Thin GF63,Intel Core i5-12450H,GeForce RTX 4060,16.0,512GB,1599.0,34.682907468481716,17456.0,46.3,216.90373651333155 -LPGIG00146,,Intel i7-13700H,RTX 4080,16.0,1TB,2499.0,54.163976394396364,27890.0,64.9,216.7426026186329 -LPASU00731,ROG Flow,Intel i9-13900H,RTX 4050,16.0,1TB,2499.0,53.909828863394026,29687.0,41.9,215.72560569585445 -LPASU00765OB,Zenbook S 13 OLED EVO,Intel i7-1355U,,16.0,1TB,1234.05,26.466407221231286,15294.0,12.1,214.4678677624998 -LPASU00558,Zenbook Pro 15,AMD Ryzen 9 5900HX,NVIDIA GeForce RTX 3050Ti,16.0,512GB,1899.0,40.65744491809913,22678.0,28.2,214.09923600894754 -LPLEN03552,X1 Yoga G4,Intel i5-8265U,,16.0,512GB,499.0,10.648041807880833,6023.0,6.4,213.38761138037745 -LPLEN03573OB,ThinkPad T490,Intel i7-8550U,Intel UHD 620,16.0,256GB,494.1,10.495617614593984,5929.0,6.4,212.4188952558993 -LPHEW01833,EliteBook 650 G9,Intel i5-1245U,,16.0,256GB,1103.9599990845,23.31995456131252,13481.0,10.6,211.23912624235902 -LPMSI00583,,Intel i7-13700HX,GeForce RTX 4050,32.0,1TB,2899.0,61.08187361773164,34110.0,41.9,210.6998055113199 -LPHEW02036,,Intel i9-13900HX,GeForce RTX 4090,32.0,2TB,3999.0,82.93173341981515,44977.0,72.6,207.38117884424892 -LPLEN03471,ThinkPad E14,Intel i5-1335U,,16.0,512GB,1399.0,28.911003693791848,16929.0,10.6,206.6547797983692 -LPLEN03497,ThinkPad X1 Carbon,Intel i5-1335U,,16.0,256GB,1399.0,28.911003693791848,16929.0,10.6,206.6547797983692 -LPGIG00138,AERO 16,Intel Core i9-12900H,GeForce RTX 3080 Ti,32.0,2TB,2599.0,53.649329207579136,28524.0,53.7,206.42296732427522 -LPLGE00033,Gram EVO,Intel i7-1360P,Intel Iris Xe,16.0,512GB,1599.0,32.97686611534512,19309.0,12.1,206.23430966444727 -LPLGE00030,Gram,Intel i7-1360P,Intel Iris Xe,16.0,512GB,1599.0,32.97686611534512,19309.0,12.1,206.23430966444727 -LPLGE00031,Gram EVO,Intel i7-1360P,Intel Iris Xe,16.0,512GB,1599.99,32.97686611534512,19309.0,12.1,206.10670138779065 -LPMSI00576,CREATOR Z16,Intel i7-13700HX,GeForce RTX 4060,32.0,1TB,2999.0,61.68793422379224,34110.0,46.3,205.69501241677972 -LPMSI00577OB,Prestige 13 Evo,Intel i7-1360P,,32.0,1TB,1604.55,32.97686611534512,19309.0,12.1,205.52096298242571 -LPHEW02083OB,EliteBook 640 G9,Intel i5-1245U,,16.0,512GB,1136.1600006104,23.31995456131252,13481.0,10.6,205.25238125601956 -LPHEW02045OB,"Consumer Laptop 17.3""",Intel i5-1135G7,Intel Iris Xe,16.0,512GB,854.05,17.498647604931787,9891.0,10.6,204.8902008656611 -LPLGE00015OB,Gram 2-in-1,Intel i7-1165G7,Intel Iris Xe ,16.0,512GB,902.39,18.444678666018053,10347.0,12.1,204.39808360041727 -LPMSI00513,Katana GF76,Intel Core i7-12700H,GeForce RTX3070TI,16.0,1TB,2449.0,50.03749629794414,26424.0,52.2,204.31807389932274 -LPASU00765,Zenbook S 13 OLED EVO,Intel i7-1355U,,16.0,1TB,1299.0,26.466407221231286,15294.0,12.1,203.7444743743748 -LPMSI00587,CreatorPro M16,Intel i7-13700H,NVIDIA RTX A1000,32.0,1TB,2399.0,48.736979149217305,27890.0,25.5,203.15539453612882 -LPMSI00586,CreatorPro Z16HXStudio,Intel i9-13950HX,NVIDIA RTX A2000,32.0,1TB,3799.0,76.94805194805195,44931.0,29.7,202.5481756990049 -LPASU00621,GA503RS-XS92-CA,AMD Ryzen 9 6900HS,GeForce RTX 3080,32.0,1TB,2239.88,45.285209063972864,23901.0,47.4,202.176942800386 -LPLEN03564,ThinkPad X1,Intel i7-8650U,,16.0,256GB,549.0,11.077748310232058,6288.0,6.4,201.7804792391996 -LPASU00609OB,TUF Gaming Notebook,Intel Core i5-10300H,GeForce GTX 1650,8.0,1TB,824.29000152588,16.605892645517038,8474.0,20.8,201.45692189371618 -LPMSI00524,GP66 Leopard,Intel Core i7-11800H,NVIDIA RTX3070,16.0,512GB,1999.0,40.26326475093372,20753.0,48.0,201.417032270804 -LPASU00734OB,Zenbook 14X,Intel i7-1260P,GeForce MX550,16.0,512GB,1519.05,30.585279955829947,17231.0,19.2,201.3447875700599 -LPMSI00497,Pulse GL66,Intel i7-11800H,RTX3070,16.0,512GB,1999.88,40.26326475093372,20753.0,48.0,201.32840345887612 -LPHEW01739,ProBook 820 G3,Intel Core i7 6500U,Intel HD 520,16.0,256GB,299.0,6.013003094315652,3275.0,5.1,201.10378241858368 -LPLEN03522,ThinkBook 15 G4,AMD Ryzen 5 5625U,,16.0,256GB,1299.0,26.047285360049777,15078.0,11.6,200.5179781374117 -LPLEN03712,Yoga L390,Intel i5-8365U,,16.0,256GB,549.0,11.00802234947318,6245.0,6.4,200.51042530916538 -LPASU00728,Zephyrus Duo,AMD Ryzen 9 7945HX,RTX 4090,32.0,2TB,4999.0,100.0,55503.0,72.6,200.0400080016003 -LPACE00491,Aspire 5,Intel i7-10510U,Intel UHD 620 graphics,8.0,512GB,585.88,11.661500539841269,6648.0,6.4,199.04247524819533 -LPGIG00137OB,AERO 16,Intel Core i9-12900H,NVIDIA RTX 3080 Ti,64.0,2TB,2699.1,53.649329207579136,28524.0,53.7,198.76747511236758 -LPMSI00577,Prestige 13 Evo,Intel i7-1360P,,32.0,1TB,1689.0,32.97686611534512,19309.0,12.1,195.24491483330442 -LPASU00770,GA402XZ-CS94,AMD Ryzen 9 7940HS,GeForce RTX 4080,16.0,1TB,2999.0,58.54860425235,30594.0,64.9,195.22708987112372 -LPHEW02083,EliteBook 640 G9,Intel i5-1245U,,16.0,512GB,1195.9599990845,23.31995456131252,13481.0,10.6,194.98941920435303 -LPHEW02045,Consumer Laptop,Intel i5-1135G7,Intel Iris Xe,16.0,512GB,899.0,17.498647604931787,9891.0,10.6,194.64569082237804 -LPLEN03042OB,ThinkBook 15 G4,Intel Core i7-1255U,,16.0,512GB,1234.05,23.998432517161238,13772.0,12.1,194.4688830854604 -LPMSI00585,CreatorPro Z17HX Studio,Intel i9-13950HX,NVIDIA RTX A3000,32.0,1TB,3999.0,77.27863046044865,44931.0,32.1,193.24488737296488 -LPSAS00158,Galaxy Book3 360 EVO,Intel i5-1335U,,8.0,256GB,1499.0,28.911003693791848,16929.0,10.6,192.8686036944086 -LPMSI00534,Raider GE78 HX,Intel i9-13980HX,GeForce RTX 4080,64.0,2TB,4499.0,86.7632953501285,47994.0,64.9,192.85017859552903 -LPLGE00028OB,Gram EVO,Intel i7-1260P,Intel Iris Xe ,16.0,512GB,1538.89,29.607318523323062,17231.0,12.1,192.3939886757537 -LPLEN03476,14s Yoga G3,Intel Core i7-1355U,,16.0,512GB,1379.9599990845,26.466407221231286,15294.0,12.1,191.79111886424073 -LPASU00734,Zenbook 14X,Intel i7-1260P,GeForce MX550,16.0,512GB,1599.0,30.585279955829947,17231.0,19.2,191.27754819155692 -LPLEN03573,ThinkPad T490,Intel i7-8550U,Intel UHD 620,16.0,256GB,549.0,10.495617614593984,5929.0,6.4,191.1770057303094 -LPMSI00552,Raider GE78HX,Intel i7-13700HX,GeForce RTX 4070,32.0,1TB,3299.0,62.431735876684805,34110.0,51.7,189.24442520971448 -LPLEN03709,V15 G4,Intel i7-1355U,,16.0,1TB,1399.0,26.466407221231286,15294.0,12.1,189.18089507670683 -LPMSI00549,Vector GP78HX,Intel i7-13700HX,GeForce RTX 4080,32.0,1TB,3399.0,64.24991769486662,34110.0,64.9,189.0259420266744 -LPDYA00003,C50-J,Intel Core i5-1135G7,Integrated GPU,8.0,256GB,929.0,17.498647604931787,9891.0,10.6,188.36003880443255 -LPGIG00163,AORUS 17X,Intel i9-13980HX,GeForce RTX 4090,32.0,2TB,4699.0,87.82390141073456,47994.0,72.6,186.89913047613229 -LPLEN03427,IdeaPad 1 15AMN7,AMD Athlon Gold 7220U,AMD Radeon 610M ,4.0,128GB,449.99,8.332652110384027,4748.0,4.6,185.17416187879792 -LPDYA00028,Tecra,Intel i5-1240P,,16.0,256GB,1599.0,29.545023476506298,17320.0,10.6,184.77187915263477 -LPLEN03221,ThinkPad L13 Yoga,Intel Core i7-1255U,,16.0,512GB,1299.0,23.998432517161238,13772.0,12.1,184.74543893118735 -LPLEN03042,ThinkBook 15 G4,Intel Core i7-1255U,,16.0,512GB,1299.0,23.998432517161238,13772.0,12.1,184.74543893118735 -LPLEN02397OB,,Intel i5-1135G7,Intel Iris Xe ,8.0,256GB,949.89,17.498647604931787,9891.0,10.6,184.21762103961285 -LPLGE00028,Gram EVO,Intel i7-1260P,Intel Iris Xe ,16.0,512GB,1619.88,29.607318523323062,17231.0,12.1,182.77476432404288 -LPASU00767,Zenbook Pro 14 Duo OLED,Intel i9-13900H,GeForce RTX 4060,32.0,1TB,2999.0,54.51588946945463,29687.0,46.3,181.78022497317312 -LPMSI00554,Vector GP77,Intel i7-13700H,GeForce RTX 4070,16.0,1TB,2899.0,52.345794576214544,27890.0,51.7,180.56500371236476 -LPLEN03339,ThinkPad T14s Gen 2,AMD Ryzen 5 PRO 5650U,,8.0,256GB,1430.2,25.794326060552457,14922.0,11.6,180.35467809084366 -LPGIG00137,AERO 16,Intel Core i9-12900H,RTX 3080 Ti,64.0,2TB,2999.0,53.649329207579136,28524.0,53.7,178.8907276011308 -LPMSI00379,Modern 14,Intel Core i7-1195G7,Intel Iris Xe,8.0,512GB,1099.0,19.558672504188962,11034.0,12.1,177.96790267687862 -LPHEW01997OB,ENVY X360,Intel i7-1250U,,16.0,1TB,1234.05,21.807740122155558,12421.0,12.1,176.71682769867962 -LPLEN03512,ThinkBook 14s Yoga G3,Intel Core i7-1355U,,16.0,512GB,1499.0,26.466407221231286,15294.0,12.1,176.56042175604594 -LPMSI00533,Raider GE78 HX,Intel i9-13980HX,GeForce RTX 4090,32.0,2TB,4999.0,87.82390141073456,47994.0,72.6,175.68293940935098 -LPLGE00034,Gram,Intel i7-1360P,GeForce RTX 3050,16.0,1TB,1999.99,35.09807823655724,19309.0,27.5,175.4912686391294 -LPCNO00054,ThinkPad E15 Gen 2,Intel Core i5-1135G7,Intel Iris Xe ,8.0,256GB,999.0,17.498647604931787,9891.0,10.6,175.16163768700486 -LPACE00948,A317-53-591M,Intel i5-1135G7,Integrated GPU,8.0,512GB,999.0,17.498647604931787,9891.0,10.6,175.16163768700486 -LPLEN03710,,Intel i5-10310U,,16.0,512GB,649.0,11.317735337960288,6436.0,6.4,174.38729334299367 -LPLEN03572,Legion Pro 7,Intel i9-13900HX,GeForce RTX 4090,32.0,2TB,4799.0,82.93173341981515,44977.0,72.6,172.81044680103176 -LPACE00942,A315-56-54YT,Intel Core i5-1035G1,Integrated Graphic,8.0,256GB,749.0,12.799122763522725,7460.0,5.1,170.8828139322126 -LPSAS00150,Galaxy Book3 EVO,Intel i7-13700H,GeForce RTX 4050,16.0,512GB,2999.0,50.995932317261385,27890.0,41.9,170.04312209823735 -LPLEN03711,X1 Carbon,Intel i7-8665U,,16.0,256GB,649.0,11.025859223155685,6256.0,6.4,169.88997262181334 -LPDYA00005,C50-J,Intel Core i7-1165G7,Integrated GPU,8.0,256GB,1089.0,18.444678666018053,10347.0,12.1,169.37262319575805 -LPDYA00033,Tecra,Intel i7-1260P,,16.0,256GB,1749.0,29.607318523323062,17231.0,12.1,169.28140951013756 -LPDYA00029,Tecra,Intel i7-1260P,,16.0,256GB,1749.99,29.607318523323062,17231.0,12.1,169.18564405124064 -LPMSI00415,Stealth 15M,Intel Core i7-1260P,RTX3060,16.0,1TB,1999.0,33.72577582359854,17231.0,42.0,168.71323573586065 -LPHEW01997,ENVY X360,Intel i7-1250U,,16.0,1TB,1299.0,21.807740122155558,12421.0,12.1,167.88098631374564 -LPASU00649,P1512CEA,Intel Core i5-1135G7,Intel UHD ,8.0,512GB,1049.0,17.498647604931787,9891.0,10.6,166.81265590974058 -LPASU00647,P1512CEA,Intel Core i5-1135G7,Intel UHD ,8.0,512GB,1049.0,17.498647604931787,9891.0,10.6,166.81265590974058 -LPDYA00004,C50-J,Intel Core i5-1135G7,Integrated GPU,8.0,512GB,1049.0,17.498647604931787,9891.0,10.6,166.81265590974058 -LPACE00999,PTX17-71-99W5,Intel i9-13900HX,GeForce RTX 4090,64.0,2TB,4999.0,82.93173341981515,44977.0,72.6,165.89664616886407 -LPLEN03546,E14,Intel i7-1355U,,16.0,512GB,1599.0,26.466407221231286,15294.0,12.1,165.51849419156528 -LPASU00547OB,Vivobook 13,Intel Pentium Silver N6000,Intel UHD ,4.0,128GB,332.39,5.477237996069902,3089.0,3.4,164.7834771223533 -LPHEW01837,OMEN 16,AMD Ryzen 5 5600H,Radeon ,16.0,1TB,1799.0,29.31467631189022,17093.0,11.6,162.94984053301957 -LPMSI00551,Stealth 17Studio,Intel i7-13700H,GeForce RTX 4070,32.0,1TB,3299.0,52.345794576214544,27890.0,51.7,158.67170226194162 -LPMSI00591,Stealth 16 AMG,Intel i9-13900H,GeForce RTX 4070,32.0,2TB,3499.0,55.259691122347185,29687.0,51.7,157.92995462231264 -LPASU00547,Vivobook 13 Slate Notebook,Intel Pentium Silver N6000,Intel UHD ,4.0,128GB,349.88,5.477237996069902,3089.0,3.4,156.54618715187786 -LPSAS00152,Galaxy Book3 EVO,Intel i7-13700H,GeForce RTX 4050,16.0,1TB,3269.0,50.995932317261385,27890.0,41.9,155.99856934004706 -LPRAZ00059,Blade 14,AMD Ryzen 9 7940HS,GeForce RTX 4070,16.0,1TB,3649.0,56.73042243416818,30594.0,51.7,155.4684089727821 -LPMSI00532,TITAN GT77,Intel i9-13980HX,GeForce RTX 4080,64.0,2TB,5599.0,86.7632953501285,47994.0,64.9,154.9621277909064 -LPDYA00006,C50-J,Intel Core i7-1165G7,Integrated,8.0,512GB,1199.0,18.444678666018053,10347.0,12.1,153.83385042550503 -LPASU00743,Zenbook S 13 Flip,Intel i7-1260P,,16.0,1TB,1999.0,29.607318523323062,17231.0,12.1,148.1106479405856 -LPHEW02090,ProBook 440,Intel i7-1355U,,16.0,512GB,1799.0,26.466407221231286,15294.0,12.1,147.11732752213055 -LPASU00565,ExpertBook B5,Intel Core i5-1135G7,Intel Iris Xe G7,16.0,256GB,1199.0,17.498647604931787,9891.0,10.6,145.94368311035686 -LPLGE00035,Gram,Intel i7-1360P,Intel Iris Xe,16.0,512GB,2299.99,32.97686611534512,19309.0,12.1,143.37830214629247 -LPASU00768,Zenbook Pro 16X OLED,Intel i9-13905H,GeForce RTX 4080,32.0,1TB,4199.0,60.184732029226915,31603.0,64.9,143.33110747612983 -LPLEN03517OB,ThinkPad X1 Carbon EVO,Intel i7-1365U,,32.0,512GB,1899.05,26.720988054699752,15451.0,12.1,140.70713280166268 -LPLEN02112,ThinkBook 14s Yoga ITL,Intel i5-1135G7,Intel Iris Xe ,8.0,256GB,1249.0,17.498647604931787,9891.0,10.6,140.10126184893343 -LPMSI00531OB,TITAN GT77,Intel i9-13980HX,GeForce RTX 4090,128.0,4TB,6299.1,87.82390141073456,47994.0,72.6,139.42293567451628 -LPSAS00157,Galaxy Book3 360 EVO,Intel i7-1355U,,16.0,512GB,1899.0,26.466407221231286,15294.0,12.1,139.37023286588354 -LPLEN02056,IdeaPad Slim 7i,Intel i5-1135G7,Intel Iris Xe ,8.0,512GB,1259.99,17.498647604931787,9891.0,10.6,138.87925781102857 -LPASU00736,GU604VY-XS97,Intel i9-13900H,RTX 4090,32.0,2TB,4199.0,58.13847900113507,29687.0,72.6,138.45791617321999 -LPMSI00544,Titan Gaming Notebook,Intel i9-13980HX,GeForce RTX 4090,64.0,2TB,6449.0,87.82390141073456,47994.0,72.6,136.18220097803467 -LPASU00592,Vivobook 15,AMD Ryzen 3 3250U,AMD Radeon ,8.0,128GB,499.0,6.760655332010197,3855.0,3.7,135.4840747897835 -LPLEN01849OB,ThinkPad X1 Nano EVO,Intel Core i7-1160G7,,16.0,512GB,1234.05,16.540997783903574,9173.0,12.1,134.03831112113426 -LPLEN03517,ThinkPad X1 Carbon EVO,Intel i7-1365U,,32.0,512GB,1999.0,26.720988054699752,15451.0,12.1,133.67177616157954 -LPMSI00535,Stealth 17,Intel i9-13900H,GeForce RTX 4090,64.0,2TB,4399.0,58.13847900113507,29687.0,72.6,132.1629438534555 -LPSAS00156,Galaxy Book3 Pro 360 EVO,Intel i7-1360P,,16.0,1TB,2499.0,32.97686611534512,19309.0,12.1,131.96024856080479 -LPASU00651,P1512CEA,Intel Core i7-1165G7,Intel Iris Xe ,16.0,1TB,1399.0,18.444678666018053,10347.0,12.1,131.8418775269339 -LPASU00564,ExpertBook B1,Intel Core i7-1165G7,Intel Iris Xe G7,12.0,512GB,1399.0,18.444678666018053,10347.0,12.1,131.8418775269339 -LPASU00562,ExpertBook B1,Intel Core i7-1165G7,Intel Iris Xe G7,12.0,512GB,1399.0,18.444678666018053,10347.0,12.1,131.8418775269339 -LPASU00650,,Intel Core i7-1165G7,Intel Iris Xe ,16.0,1TB,1399.0,18.444678666018053,10347.0,12.1,131.8418775269339 -LPASU00665,Zenbook Pro,Intel Core i9-12900H,GeForce RTX 3060,32.0,1TB,3999.0,52.03775895964525,28524.0,42.0,130.12692913139597 -LPLEN03526,,Intel i5-1335U,,16.0,512GB,2249.42,28.911003693791848,16929.0,10.6,128.52648102084913 -LPMSI00531,TITAN GT77,Intel i9-13980HX,GeForce RTX 4090,128.0,4TB,6999.0,87.82390141073456,47994.0,72.6,125.48064210706467 -LPRAZ00055,Blade 15,Intel Core i7-12800H,GeForce RTX 3070 Ti,16.0,1TB,3999.0,47.68140743788252,24971.0,52.2,119.23332692643791 -LPLEN01757,ThinkBook 15 G2 ITL,Intel Core i7-1165G7 Quad-core (4 Core) 2.80 GHz,Intel UHD ,16.0,512 GB,1549.0,18.444678666018053,10347.0,12.1,119.07474929643675 -LPMSI00528,CreatorPro,Intel i7-12700H,RTX A3000,32.0,1TB,3999.0,47.268901256621824,26424.0,32.1,118.20180359245268 -LPLEN02684OB,20UB0067US,Intel Core i5-10210U,,16.0,256 GB,931.92000068665,10.980456271963856,6228.0,6.4,117.82616816758221 -LPLEN03465,ThinkPad X1 Yoga EVO,Intel i5-1335U,,16.0,256GB,2534.06,28.911003693791848,16929.0,10.6,114.08965728432575 -LPLEN02684,ThinkPad X1 Yoga Gen 5,Intel Core i5-10210U,,16.0,256GB,980.95999992371,10.980456271963856,6228.0,6.4,111.93582075536021 -LPLEN03307,ThinkPad T14 Gen 2,Intel Core i5-1135G7,MX450 2GB,16.0,256GB,1599.0,17.774129698595697,9891.0,12.6,111.15778423136771 -LPASU00591OB,L510MA-DS09-CA,Intel Celeron N4020,Intel UHD 600,4.0,64GB,246.05,2.729718429336632,1556.0,1.5,110.94161468549612 -LPLEN03138,Business Notebook,Intel i5-1145G7,Intel Iris Xe,16.0,512GB,1599.88,17.626748788651586,9970.0,10.6,110.17544308730396 -LPSAS00113,Galaxy Book Pro,Intel i5-1135G7,Intel Iris Xe ,8.0,512GB,1600.0,17.498647604931787,9891.0,10.6,109.36654753082365 -LPSAS00114,Galaxy Book Pro,Intel i5-1135G7,Iris Xe ,8.0,256GB,1600.0,17.498647604931787,9891.0,10.6,109.36654753082365 -LPGIG00125,AERO 16 YE4,Intel Core i9-12900H,NVIDIA GeForce RTX 3080 Ti,32.0,2TB,4999.0,53.649329207579136,28524.0,53.7,107.3201224396462 -LPSAS00112,Galaxy Book Pro,Intel i7-1165G7,Iris Xe ,8.0,512GB,1730.0,18.444678666018053,10347.0,12.1,106.61663968796563 -LPSAS00116,Galaxy Book Pro,Intel i7-1165G7,Intel Iris Xe ,8.0,256GB,1730.0,18.444678666018053,10347.0,12.1,106.61663968796563 -LPRAZ00054,Razer Blade 14,AMD Ryzen 9 6900HX,GeForce RTX 3080Ti,16.0,1TB,4499.0,47.75181015455497,24887.0,53.7,106.13872005902415 -LPASU00591,Vivobook Go,Intel Celeron N4020,Intel UHD 600,4.0,64GB,259.0,2.729718429336632,1556.0,1.5,105.3945339512213 -LPLEN02741,20W400K3US,Intel i5-1145G7,Intel Iris Xe,16.0,512GB,1720.9,17.626748788651586,9970.0,10.6,102.42750182260204 -LPLEN01858,20TA0025US,Intel Core i7 i7-1165G7,,8.0,512 GB,1805.7,18.444678666018053,10347.0,12.1,102.1469716232932 -LPSAS00115,Galaxy Book Pro,Intel i5-1135G7,Intel Iris Xe ,8.0,512GB,1730.0,17.498647604931787,9891.0,10.6,101.14825205162883 -LPLEN03308,ThinkPad T14 Gen 2,Intel Core i5-1135G7,MX450 2GB,16.0,256GB + 512GB,1799.0,17.774129698595697,9891.0,12.6,98.80005391103779 -LPSAS00111,Galaxy Book Pro,Intel i7-1165G7,Iris Xe ,8.0,512GB,1870.0,18.444678666018053,10347.0,12.1,98.63464527282382 -LPASU00762OB,Vivobook Slate,Intel Pentium Silver Processor N6000,Intel UHD ,8.0,128GB,569.05,5.477237996069902,3089.0,3.4,96.25231519321504 -LPASU00623,,AMD Ryzen 9 6900HX,NVIDIA GeForce RTX 3080 Ti,64.0,1TB,4999.0,47.75181015455497,24887.0,53.7,95.52272485408075 -LPMSI00527,CreatorPro,Intel i7-12700H,NVIDIA RTX A5500,32.0,1TB,5299.0,49.41766158720034,26424.0,47.7,93.25846685638864 -LPLEN03478,ThinkPad X1 Yoga Gen 8,Intel i7-1355U,,16.0,512 GB,2884.39,26.466407221231286,15294.0,12.1,91.75738101030474 -LPASU00762,Vivobook Slate,Intel Pentium Silver Processor N6000,Intel UHD ,8.0,128GB,599.0,5.477237996069902,3089.0,3.4,91.4396994335543 -LPLEN02071,ThinkPad X13 Yoga Gen 2,Intel Core i5 (11th Gen) i5-1135G7 Quad-core,Intel Iris Xe ,8.0,256 GB,2019.0,17.498647604931787,9891.0,10.6,86.66987421957299 -LPASU00590OB,Vivobook 14 Flip,Intel Celeron N4500,Intel UHD ,4.0,128GB,474.05,3.7162521034154508,2003.0,3.4,78.39367373516403 -LPLEN03495,ThinkPad X13 Yoga,Intel i5-10310U,,16.0,256GB,1499.0,11.317735337960288,6436.0,6.4,75.50190352208331 -LPASU00590,Vivobook 14 Flip Notebook,Intel Celeron N4500,Intel UHD ,4.0,128GB,499.0,3.7162521034154508,2003.0,3.4,74.47399004840584 -LPASU00810,Chromebook Flip C434,Intel m3-8100Y,,4.0,64GB Flash Memory,699.0,5.078376375456141,2877.0,3.0,72.65202253871446 -LPASU00227,Chromebook Flip C434,Intel m3-8100Y,,4.0,64GB Flash Memory,699.0,5.078376375456141,2877.0,3.0,72.65202253871446 -LPLEN01870,20UN000AUS,Intel Core i7-1160G7 EVO Quad-core,Intel Iris Xe ,16.0,256 GB,2399.88,16.540997783903574,9173.0,12.1,68.92427031311388 -LPLEN02299,ThinkPad X13 Yoga Gen 2,Intel Core i7 (11th Gen) i7-1165G7 Quad-core,Intel Iris Xe ,16.0,256GB,2892.49,18.444678666018053,10347.0,12.1,63.76747600170806 diff --git a/PCData/data/computed/canada_computers_laptops_bench_0.9.html b/PCData/data/computed/canada_computers_laptops_bench_0.9.html deleted file mode 100644 index d24004a..0000000 --- a/PCData/data/computed/canada_computers_laptops_bench_0.9.html +++ /dev/null @@ -1,11272 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 item_idModelCPUGPURAMStoragepricebenchcpu_benchgpu_benchvalue
402LPLEN03269OBIdeaPad 3AMD Ryzen 7 5825UIntegrated Radeon 8256GB$ 52232%18,45813.2608
384LPLEN03414OBIdeaPadIntel i3-1215UIntel HD 4128GB$ 31318%11,0324.2591
450LPLEN03269IdeaPad 3AMD Ryzen 7 5825UIntegrated Radeon 8256GB$ 55032%18,45813.2577
454LPLEN03053OBIdeaPad 5AMD Ryzen 7 5825UIntegrated Radeon8512GB$ 55332%18,45813.2574
205LPLEN03430OBIdeaPad Slim 3AMD Ryzen 7 7730UNone8512GB$ 57032%18,82413.2568
392LPLEN03414IdeaPadIntel i3-1215UIntel HD 4128GB$ 32918%11,0324.2561
486LPLEN03097OBIdeaPad 3AMD Ryzen 5 5625UAMD Radeon 12512GB$ 47526%15,07811.6548
496LPLEN03053IdeaPad 5AMD Ryzen 7 5825UIntegrated Radeon8512GB$ 58232%18,45813.2546
462LPACE00912OBNitro 5Intel Core i5-11400HGTX 16508256GB$ 52629%15,82220.8542
133LPLEN03430IdeaPad Slim 3AMD Ryzen 7 7730UNone8512GB$ 60032%18,82413.2539
285LPASU00720OBG17AMD Ryzen 9 7945HXNVIDIA RTX 4060161TB$ 1,79996%55,50346.3536
52LPASU00719G713PU-DS91-CAAMD Ryzen 9 7945HXRTX 4050161TB$ 1,79996%55,50341.9532
582LPHEW01653OB15-ef1013dxAMD Ryzen 7 4700UAMD Radeon 8512GB$ 44523%13,44611.6525
243LPHEW02095OBVictus 15-fb1010caAMD Ryzen 5 7535HSGeForce RTX 20508512GB$ 62933%18,44521.2522
193LPASU00809OBROG Strix G16Intel i9-13980HXGeForce RTX 4060161TB$ 1,61984%47,99446.3520
226LPHEW02100OB15-fd0030caIntel i5-1340PNone16512GB$ 66434%20,20410.6515
461LPASU00666OBVivobook 16AMD Ryzen 5 5600HAMD Radeon 8512GB$ 56929%17,09311.6515
531LPMSI00429OBKatana GF66Intel Core i7-11800HRTX306016512GB$ 78639%20,75342.0501
299LPMSI00572OBThin GF63Intel i5-12450HGeForce RTX 20508512GB$ 62931%17,45621.2496
366LPHEW02017OBPavilionIntel i5-1240PIntel Iris Xe8512GB$ 59930%17,32010.6493
3LPHEW0210015-fd0030caIntel i5-1340PNone16512GB$ 69934%20,20410.6490
13LPASU00666Vivobook 16AMD Ryzen 5 5600HAMD Radeon 8512GB$ 59929%17,09311.6489
302LPMSI00562OBModern 15AMD Ryzen 7 7730UAMD Radeon 16512GB$ 66432%18,82413.2487
210LPHEW02076OBVictus Gaming NotebookAMD Ryzen 5 7640HSGeForce RTX 405016512GB$ 89944%23,39041.9486
28LPASU00720G713PV-DS91-CAAMD Ryzen 9 7945HXNVIDIA RTX 4060161TB$ 1,99996%55,50346.3482
405LPCNO00060OBZenBookAMD Ryzen 7 5700UGeForce MX4508256GB$ 57027%15,85412.6482
365LPASU00716OBFX507ZC4-DS71-CAIntel i7-12700HNVIDIA RTX 305016512GB$ 98947%26,42427.5471
512LPHEW01811OBPavilion 15-eh2010caAMD Ryzen 5 5625UAMD Radeon 8512GB$ 55426%15,07811.6470
114LPHEW02095Victus 15-fb1010caAMD Ryzen 5 7535HSGeForce RTX 20508512GB$ 69933%18,44521.2470
131LPHEW0201715-EG2002CAIntel i5-1240PIntel Iris Xe8512GB$ 63130%17,32010.6468
124LPASU00809G614JV-DB91-CAIntel i9-13980HXGeForce RTX 4060161TB$ 1,79984%47,99446.3468
303LPLEN03442OBIdeaPad Flex 5AMD Ryzen 3 5300UNone4128GB$ 36017%9,7167.6467
360LPGIG00135OBAERO 16 XE4Intel Core i7-12700HGeForce RTX 3070 Ti162TB$ 1,07950%26,42452.2464
171LPMSI00562Modern 15 NotebookAMD Ryzen 7 7730UAMD Radeon 16512GB$ 69932%18,82413.2463
358LPMSI00541OBThin GF63Intel i7-12650HGeForce RTX 305016512GB$ 89942%23,28127.5462
401LPGIG00147OBG5 KF-E3US333SHIntel i5-12500HGeForce RTX 40608512GB$ 89941%21,52146.3459
287LPHEW02072OBProBook 445 G9AMD Ryzen 5 5625UNone8256GB$ 56926%15,07811.6458
432LPCNO00060ZenBookAMD Ryzen 7 5700UGeForce MX4508256GB$ 60027%15,85412.6457
206LPLEN03469OBLegion Pro 5iIntel i7-13700HXGeForce RTX 406016512GB$ 1,34962%34,11046.3457
466LPCNO00053OB15Z-EF2000AMD Ryzen 5 5500UAMD Radeon Vega 78256GB$ 50123%13,14411.6457
434LPGIG00142OBG5 KE-52US213SHIntel i5-12500HGeForce RTX 306016512GB$ 90041%21,52142.0452
429LPMSI00530OBKatana GF66Intel i5-11400HGeForce RTX 30508512GB$ 65129%15,82227.5452
452LPCOI00001OBVOYAGER Gaming NotebookAMD Ryzen 7 6800HSRadeon 6800M161TB$ 99045%22,94754.6452
539LPASU00573OBVivobook 15AMD Ryzen 5 5500UAMD Radeon 8512GB$ 50823%13,14411.6451
310LPACE00967OBNitro 5Intel i9-12900HGeForce RTX 4060161TB$ 1,16953%28,52446.3450
6LPMSI00572Thin GF63Intel i5-12450HGeForce RTX 20508512GB$ 69931%17,45621.2447
224LPGIG00162OBG5 KFIntel i7-12650HGeForce RTX 406016512GB$ 98944%23,28146.3446
258LPACE00980OBNitro 5AMD Ryzen 7 5800HGeForce RTX 306016512GB$ 89940%21,13042.0445
532LPASU00584OBTUF Gaming NotebookRyzen 7 5800HGeForce RTX 306016512GB$ 90040%21,13042.0445
253LPACE00985OBSwift 3 EVOIntel i5-1240PNone16512GB$ 66430%17,32010.6445
134LPHEW02079Victus 16AMD Ryzen 7 7840HSGeForce RTX 4060161TB$ 1,19953%28,88746.3444
363LPLEN03442IdeaPad Flex 5AMD Ryzen 3 5300UNone4128GB$ 37917%9,7167.6443
498LPMSI00467OBCrosshair 15Intel Core i7-12700HRTX3070Ti16512GB$ 1,12950%26,42452.2443
339LPLEN03434OBNoneAMD Ryzen 7 7745HXGeForce RTX 406016512GB$ 1,34960%32,90946.3443
473LPASU00658OBZenBook 14AMD Ryzen 5 5600HAMD Radeon Vega 78512GB$ 66429%17,09311.6441
47LPHEW02076Victus Gaming NotebookAMD Ryzen 5 7640HSGeForce RTX 405016512GB$ 99944%23,39041.9437
509LPACE00851OBTravelMate P2Intel Core i5-1135G7Intel HD 8256GB$ 38017%9,8914.2437
324LPHEW02072ProBook 445 G9AMD Ryzen 5 5625UNone8256GB$ 59926%15,07811.6435
482LPCNO0005315Z-EF2000AMD Ryzen 5 5500UAMD Radeon Vega 78256GB$ 52823%13,14411.6434
557LPASU00573Vivobook 15AMD Ryzen 5 5500UAMD Radeon 8512GB$ 53523%13,14411.6428
383LPASU00688OBTUF Gaming F15Intel Core i9-13900HGeForce RTX 405016512GB$ 1,25954%29,68741.9428
34LPASU00716TUF F15Intel i7-12700HRTX 305016512GB$ 1,09947%26,42427.5424
538LPHEW01773OB15-eg1010ca Intel Core i5-1155G7Intel Iris Xe 8512GB$ 42718%10,27810.6424
117LPACE00985Swift 3 EVOIntel i5-1240PNone16512GB$ 69930%17,32010.6423
411LPACE00953Nitro Gaming Notebook AMD Ryzen R5-7535HSGeForce RTX 30508512GB$ 79934%18,44527.5422
367LPGIG00160OBG5 Gaming NotebookIntel i5-12450HGeForce RTX 405016512GB$ 80934%17,45641.9421
119LPASU00658ZenBook 14AMD Ryzen 5 5600HAMD Radeon Vega 78512GB$ 69929%17,09311.6419
220LPASU00808OBTUF Gaming F15Intel i7-11800HGeForce RTX 3050 Ti161TB$ 89938%20,75328.2417
172LPMSI00541Thin GF63Intel i7-12650HGeForce RTX 305016512GB$ 99942%23,28127.5416
264LPHEW02087OBVictus 15-fb0000caAMD Ryzen 5 5600HGeForce RTX 3050 Ti16512GB$ 76432%17,09328.2414
111LPGIG00147G5Intel i5-12500HGeForce RTX 40608512GB$ 99941%21,52146.3413
463LPLEN03000OBIdeaPad Flex 5AMD Ryzen 5 5500UAMD Radeon 8512GB$ 55523%13,14411.6413
147LPLEN03431IdeaPad Slim 5Intel i5-1335UIntel Iris Xe8512GB$ 70029%16,92910.6413
201LPHEW01929OBProBook 440 G9Intel Core i5-1235UNone8256GB$ 56923%13,54610.6412
2LPLEN03469Legion Pro 5iIntel i7-13700HXGeForce RTX 406016512GB$ 1,49962%34,11046.3412
588LPACE00816NitroIntel i5-11400HNVIDIA GeForce RTX 30508512GB$ 71629%15,82227.5411
533LPACE00877OBNitro 5Intel i7-11800HNVIDIA GeForce RTX306016512GB$ 96139%20,75342.0410
322LPMSI00496OBGF63 11UC-692Intel i5-11400HNVIDIA RTX30508512GB$ 71929%15,82227.5409
326LPMSI00559OBThin GF63Intel i7-12650HGeForce RTX 406016512GB$ 1,07944%23,28146.3409
356LPACE00969Nitro 5Intel i5-11400HGeForce GTX 16508512GB$ 69929%15,82220.8408
1LPACE00967Nitro 5Intel i9-12900HGeForce RTX 4060161TB$ 1,29953%28,52446.3405
393LPGIG00149OBASF-B3US754SHIntel i9-13900HXGeForce RTX 4070161TB$ 1,98080%44,97751.7404
298LPASU00715OBTUF F15Intel i9-13900HGeForce RTX 4060161TB$ 1,34955%29,68746.3404
386LPLEN03352OBThinkBook 15 G3AMD Ryzen 5 5500UAMD Radeon 8256GB$ 56923%13,14411.6403
4LPGIG00162G5 KFIntel i7-12650HGeForce RTX 406016512GB$ 1,09944%23,28146.3402
350LPHEW02028OB15-fc0040caAMD Ryzen 7 7730UAMD Radeon 161TB$ 80732%18,82413.2401
268LPASU00784OBVivobook 15AMD Ryzen 7 7730UNone16512GB$ 80732%18,82413.2401
8LPACE00980Nitro 5AMD Ryzen 7 5800HGeForce RTX 306016512GB$ 99940%21,13042.0401
372LPLEN03434Legion Pro 5AMD Ryzen 7 7745HXGeForce RTX 406016512GB$ 1,49960%32,90946.3399
273LPASU00785OBFX706HF-DB51-CAIntel i5-11400HGeForce RTX 20508512GB$ 71929%15,82221.2397
79LPLEN0290814 G4 ABAAMD Ryzen 7 5825UNone16512 GB$ 79932%18,45813.2397
175LPHEW02058Victus 15-fa1000caIntel i5-13500HGeForce RTX 405016512GB$ 1,09944%23,28941.9396
332LPLEN03438OBLegion Pro 5AMD Ryzen 7 7745HXGeForce RTX 407016512GB$ 1,52960%32,90951.7396
522LPMSI00445OBModern 15Intel Core i5-1155G7Intel Iris Xe8256GB$ 46018%10,27810.6394
267LPACE00981OBAspire 5AMD Ryzen 3 5300UNone8256GB$ 42717%9,7167.6394
506LPLEN03000IdeaPad Flex 5AMD Ryzen 5 5500UAMD Radeon 8512GB$ 58423%13,14411.6392
362LPHEW02035OBOmen 16-wd0010caIntel i7-13620HGeForce RTX 4060161TB$ 1,25949%26,48946.3392
464LPLEN03130OBNoneAMD Ryzen 5 5625UAMD Radeon 12512GB$ 66526%15,07811.6392
35LPHEW01929ProBook 440 G9Intel Core i5-1235UNone8256GB$ 59923%13,54610.6391
294LPHEW02024OBConsumer Notebook 17Intel i5-1335UIntel Iris Xe81TB$ 74029%16,92910.6391
211LPLEN03565OBNoneRyzen 7 7745HXGeForce RTX 4060161TB$ 1,52960%32,90946.3391
188LPASU00717OBG614JJ-DS71-CAIntel i7-13650HXRTX 3050161TB$ 1,43956%32,15227.5389
487LPACE00896OBA715AMD Ryzen 7 5700URTX305016512GB$ 76429%15,85427.5386
40LPASU00688TUF Gaming F15Intel Core i9-13900HGeForce RTX 405016512GB$ 1,39954%29,68741.9385
403LPASU00735OBVivobook 16XIntel i5-12500HIris Xe 16512GB$ 94436%21,52110.6385
544LPCNO00033OBF415EA-UB51Intel Core i5-1135G7Intel Iris Xe 8256GB$ 45617%9,89110.6384
237LPLEN03390OBThinkPad T14 G3Ryzen 5 Pro 6650UAMD Radeon 660M16256GB$ 75929%16,75213.6383
421LPLEN03352ThinkBook 15 G3AMD Ryzen 5 5500UAMD Radeon 8256GB$ 59923%13,14411.6382
336LPLEN03435OBLegion Pro 5Intel i7-13700HXGeForce RTX 4060161TB$ 1,61962%34,11046.3381
27LPASU00784Vivobook 15 OLEDAMD Ryzen 7 7730UNone16512GB$ 84932%18,82413.2381
22LPHEW0202815-fc0040caAMD Ryzen 7 7730UAMD Radeon 161TB$ 84932%18,82413.2381
231LPHEW02099OB17-cn3020caIntel i5-1335UNone16512GB$ 75929%16,92910.6381
283LPASU00783OBZenbook 14 OLEDAMD Ryzen 7 5825UNone16512GB$ 83532%18,45813.2380
420LPASU00685OBVivoBookIntel Core i3-1115G4Intel UHD 4128GB$ 28411%6,1326.2380
222LPASU00786OBVivobook 16XIntel i5-1235UNone8512GB$ 61723%13,54610.6380
323LPACE00946OBNoneIntel i5-1135G7Intel Iris8512GB$ 46317%9,89110.6378
66LPASU00808TUF Gaming F15Intel i7-11800HGeForce RTX 3050 Ti161TB$ 99938%20,75328.2376
149LPMSI00445Modern 15 A11MU-863CAIntel Core i5-1155G7Intel Iris Xe8256GB$ 48418%10,27810.6375
12LPACE00981Aspire 5AMD Ryzen 3 5300UNone8256GB$ 44917%9,7167.6374
359LPLEN03433OBLegion Pro 5AMD Ryzen 7 7745HXGeForce RTX 4070161TB$ 1,61960%32,90951.7374
107LPLEN02956ThinkBook 14 G4 ABAAMD Ryzen 5 5625UNone16256GB$ 69926%15,07811.6373
18LPHEW02087Victus 15-fb0000caAMD Ryzen 5 5600HGeForce RTX 3050 Ti16512GB$ 84932%17,09328.2372
125LPLEN03130Consumer LaptopAMD Ryzen 5 5625UAMD Radeon 12512GB$ 70026%15,07811.6372
167LPHEW02024Consumer NotebookIntel i5-1335UIntel Iris Xe81TB$ 77929%16,92910.6371
414LPGIG00124OBAERO 16 XE5Intel Core i7-12700HNVIDIA GeForce RTX 3070 Ti322 TB$ 1,35050%26,42452.2371
542LPACE00877Nitro 5Intel i7-11800HNVIDIA GeForce RTX306016512GB$ 1,06839%20,75342.0369
385LPACE00888OBTravelMate P2Intel Core i5-1135G7Intel Iris Xe 8256GB$ 47417%9,89110.6369
495LPHEW01865OBOmen 16-b0020caIntel Core i7-11800HNVIDIA GeForce RTX 3070161TB$ 1,09240%20,75348.0369
65LPASU00787FX506HCB-DB59-CAIntel i5-11400HGeForce RTX 30508512GB$ 79929%15,82227.5369
132LPMSI00496GF63Intel i5-11400HRTX30508512GB$ 79929%15,82227.5369
541LPHUA00040OBMateBook D15Intel i5-1135G7Intel Iris Xe 8512GB$ 47517%9,89110.6368
477LPCNO00048OBVivoBook RIntel Core i5-1135G7Intel Iris Xe 8256GB$ 47517%9,89110.6368
113LPMSI00559Thin GF63Intel i7-12650HGeForce RTX 406016512GB$ 1,19944%23,28146.3368
440LPASU00735Vivobook 16XIntel i5-12500HIris Xe 16512GB$ 99436%21,52110.6366
179LPGIG00149NoneIntel i9-13900HXGeForce RTX 4070161TB$ 2,20080%44,97751.7364
0LPASU00715TUF F15Intel i9-13900HGeForce RTX 4060161TB$ 1,49955%29,68746.3364
37LPLEN0339021CF000CUSRyzen 5 Pro 6650UAMD Radeon 660M16256GB$ 79929%16,75213.6363
319LPMSI00564OBBravo 15AMD Ryzen 7 7735HSGeForce RTX 4060321TB$ 1,25946%24,26446.3363
23LPHEW0209917-cn3020caIntel i5-1335UNone16512GB$ 79929%16,92910.6362
493LPMSI00504OBGP66 LeopardIntel Core i7-11800HNVIDIA RTX307016512GB$ 1,11440%20,75348.0361
249LPMSI00575OBModern 15Intel i7-1255UIntel Iris Xe16512GB$ 66424%13,77212.1361
115LPASU00685VivoBook F415EA-AS31Intel Core i3-1115G4Intel UHD 4128GB$ 29911%6,1326.2361
21LPASU00786Vivobook 16XIntel i5-1235UNone8512GB$ 64923%13,54610.6361
247LPASU00779OBZenbook 14X OLEDIntel i7-12700HIntel Iris Xe161TB$ 1,23445%26,42412.1361
100LPLEN0361121KJ000EUSAMD Ryzen 7 7730U Octa-core (8 Core)None16512 GB$ 89932%18,82413.2360
189LPLEN03685OBIdeaPad Slim 3 15AMN8AMD Ryzen 3 7320UNone8256GB$ 42715%9,0664.6359
291LPASU00782OBVivobook GoAMD Ryzen 3 7320UNone8128GB$ 42715%9,0664.6359
415LPACE00946NoneIntel i5-1135G7Intel Iris8512GB$ 48717%9,89110.6359
317LPMSI00536OBKatana GF66Intel i7-12650HGeForce RTX 3050 Ti16512GB$ 1,15942%23,28128.2359
240LPGIG00152OBAORUS 15Intel Core i7-13700HGeForce RTX 4060161TB$ 1,43952%27,89046.3359
123LPASU00785TUF Gaming NotebookIntel i5-11400HGeForce RTX 20508512GB$ 79929%15,82221.2358
484LPGIG00133OBA5 K1AMD Ryzen 5 5600HGeForce RTX 306016512GB$ 93734%17,09342.0358
16LPLEN03438Legion Pro 5AMD Ryzen 7 7745HXGeForce RTX 407016512GB$ 1,69960%32,90951.7356
353LPLEN03437OBLegion Pro 5Intel i9-13900HXGeForce RTX 407016512GB$ 2,24980%44,97751.7356
223LPACE00984OBAspire 3Intel i5-1235UNone16512GB$ 66423%13,54610.6353
145LPHEW02035Omen 16-wd0010caIntel i7-13620HGeForce RTX 4060161TB$ 1,39949%26,48946.3353
289LPASU00760OBVivobook 16XIntel i9-13900HGeforce RTX 405016512GB$ 1,52954%29,68741.9353
449LPLEN03212OBIdeaPad 5Intel Core i5-1235UIntel Iris Xe8512GB$ 66523%13,54610.6352
282LPLEN03432OBIdeaPad Flex 5AMD Ryzen 5 7530UNone16512GB$ 80728%16,50711.6352
45LPLEN03565Legion Pro 5 16ARX8Ryzen 7 7745HXGeForce RTX 4060161TB$ 1,69960%32,90946.3352
476LPHEW01913OB15-DY2067MSIntel Core i5-1135G7Intel Iris X 12256GB$ 49917%9,89110.6351
520LPACE00888TravelMate P2Intel Core i5-1135G7None8256 GB$ 49917%9,89110.6351
263LPACE00968OBNitro 5Intel i5-12450HGeForce RTX 406016512GB$ 98935%17,45646.3351
406LPMSI00539OBKatana 15Intel i7-12650HGeForce RTX 4060161TB$ 1,25944%23,28146.3350
341LPACE00956OBNitro 5Intel i7-12650HGeForce RTX 406016512GB$ 1,25944%23,28146.3350
571LPHUA00040MateBook D15Intel i5-1135G7Intel Iris Xe 8512GB$ 50017%9,89110.6350
88LPASU00717G614JJ-DS71-CAIntel i7-13650HXRTX 3050161TB$ 1,59956%32,15227.5350
439LPACE00940NitroIntel i7-12700HGeForce RTX 306016512GB$ 1,39949%26,42442.0348
238LPHUA00042OBMatebook D14Intel i7-1360PNone161TB$ 94933%19,30912.1347
507LPACE00896A715AMD Ryzen 7 5700URTX305016512GB$ 84929%15,85427.5347
228LPLEN03569OBV14Ryzen 5 5500UNone16512GB$ 66423%13,14411.6345
31LPMSI00575Modern 15Intel i7-1255UIntel Iris Xe16512GB$ 69924%13,77212.1343
41LPLEN03435Legion Pro 5Intel i7-13700HXGeForce RTX 4060161TB$ 1,79962%34,11046.3343
158LPASU00779Zenbook 14X OLEDIntel i7-12700HIntel Iris Xe161TB$ 1,29945%26,42412.1343
354LPASU00686OBTUF Gaming NotebookAMD Ryzen 7 7735HSAMD Radeon RX 7600S161TB$ 1,34946%24,26448.9342
24LPLEN03685IdeaPad Slim 3 15AMN8AMD Ryzen 3 7320UNone8256GB$ 44915%9,0664.6342
53LPASU00782Vivobook GoAMD Ryzen 3 7320UNone8128GB$ 44915%9,0664.6342
30LPLEN03433Legion Pro 5AMD Ryzen 7 7745HXGeForce RTX 4070161TB$ 1,79960%32,90951.7336
311LPLEN03456OBIdeaPadIntel i5-1135G7None8512GB$ 52217%9,89110.6336
187LPASU00500OBExpertBook B1Intel i5 1135G7None8256GB$ 52217%9,89110.6336
38LPACE00984Aspire 3Intel i5-1235UNone16512GB$ 69923%13,54610.6335
293LPASU00780OBZenbookIntel i7-12700HNone161TB$ 1,32945%26,42412.1335
120LPLEN03432NoneAMD Ryzen 5 7530UNone16512GB$ 84928%16,50711.6334
342LPMSI00581Modern 15AMD Ryzen 5-7530UNone16512GB$ 84928%16,50711.6334
166LPMSI00561Bravo 15AMD Ryzen 7 7735HSGeForce RTX 305016512GB$ 1,29943%24,26427.5332
46LPHUA00042Matebook D14Intel i7-1360PNone161TB$ 99933%19,30912.1330
271LPHEW01967OBProBook 440 G9Intel i5-1235UNone16256GB$ 71223%13,54610.6329
25LPLEN03569V14Ryzen 5 5500UNone16512GB$ 69923%13,14411.6328
19LPMSI00564Bravo 15AMD Ryzen 7 7735HSGeForce RTX 4060321TB$ 1,39946%24,26446.3327
562LPHEW0173316-c0010caAMD Ryzen 7 5800HNVIDIA GeForce RTX 3050 Ti161TB$ 1,17338%21,13028.2325
361LPHEW02021OB14-em0030caAMD Ryzen 3 7320URadeon 8256GB$ 47415%9,0664.6323
491LPLEN03086OBLegion 5Intel i7-12700HGeForce RTX 307016512GB$ 1,53049%26,42448.0323
270LPLEN03428OBIdeaPad Slim 3AMD Ryzen 3 7320UAMD Radeon 610M 8512GB$ 47515%9,0664.6323
146LPGIG00152AORUS 15Intel Core i7-13700HGeForce RTX 4060161TB$ 1,59952%27,89046.3323
400LPMSI00540OBThin GF63Intel i7-12650HGeForce RTX 405016512GB$ 1,34944%23,28141.9323
585LPHEW01543OBNotebookAMD Ryzen 7 5700UAMD Radeon 161TB$ 85528%15,85413.2322
344LPMSI00578Modern 14Intel i5-1335UNone16512GB$ 89929%16,92910.6322
347LPMSI00560OBThin GF63Intel i5-12450HGeForce RTX 406016512GB$ 1,07935%17,45646.3321
198LPLEN03707V15 G4Intel i3-1315UIntel UHD 16512GB$ 69922%13,0049.9321
371LPLEN03437NoneIntel i9-13900HXGeForce RTX 407016512GB$ 2,49980%44,97751.7320
524LPASU00583OBTUF Gaming NotebookRyzen 5 4600HGeForce GTX 16508512GB$ 82826%14,52520.8319
61LPASU00500ExpertBook B1Intel i5 1135G7None8256GB$ 54917%9,89110.6319
128LPLEN03456IdeaPadIntel i5-1135G7None8512GB$ 54917%9,89110.6319
349LPMSI00563OBModern 15Intel i5-1155G7Intel Iris Xe16512GB$ 56918%10,27810.6319
465LPASU00627OBTUF507RR-DS71-CAAMD Ryzen 7 6800HGeForce RTX 307016512GB$ 1,41245%23,65448.0318
157LPASU00780ZenbookIntel i7-12700HNone161TB$ 1,39945%26,42412.1318
56LPASU00760Vivobook 16XIntel i9-13900HGeForce RTX 405016512GB$ 1,69954%29,68741.9317
492LPLEN03001OB82RG006WCC (Open Box)AMD Ryzen 7 6800HGeForce RTX 3060161TB$ 1,39844%23,65442.0316
84LPHEW0210114-ep0000caIntel i3-N305None8256GB$ 54917%9,9788.4316
14LPACE00968Nitro 5Intel i5-12450HGeForce RTX 406016512GB$ 1,09935%17,45646.3316
300LPLEN03436OBLegion Pro 5Intel i7-13700HXGeForce RTX 4070161TB$ 1,97962%34,11051.7315
11LPMSI00539Katana 15Intel i7-12650HGeForce RTX 4060161TB$ 1,39944%23,28146.3315
136LPACE00956Nitro 5Intel i7-12650HGeForce RTX 406016512GB$ 1,39944%23,28146.3315
195LPASU00721OBG733PZ-XS96AMD Ryzen 9 7945HXRTX 4080321TB$ 3,14999%55,50364.9314
251LPMSI00565OBBravo 15AMD Ryzen 7 7735HSGeForce RTX 4050161TB$ 1,43945%24,26441.9314
435LPMSI00543Katana GF76Intel i7-11800HGeForce RTX 3050 Ti16512GB$ 1,19938%20,75328.2313
15LPHEW01967ProBook 440 G9Intel i5-1235UNone16256GB$ 74923%13,54610.6313
89LPACE00960PH16-71-72YGIntel i7-13700HXGeForce RTX 4070161TB$ 1,99962%34,11051.7312
64LPASU00800Vivobook S 15 OLEDIntel i9-13900HNone161TB$ 1,59950%29,68712.1311
266LPASU00763OBVivobook S 16 FlipIntel i5-1335UIntel HD 16512GB$ 90228%16,9294.2311
225LPMSI00593OBKatana 17Intel i7-13620HGeForce RTX 4070161TB$ 1,61950%26,48951.7309
255LPCNO00061OBF1500EA-WB51Intel i5-1135G7None8256GB$ 56817%9,89110.6308
229LPASU00581OBExpertBook B1Intel i5-1135G7None8256GB$ 56917%9,89110.6308
560LPHUA00036OBMateBook D15Intel i5-1135G7Intel Iris Xe 8512GB$ 56917%9,89110.6308
173LPASU00686TUF Gaming NotebookAMD Ryzen 7 7735HSAMD Radeon RX 7600S161TB$ 1,49946%24,26448.9307
126LPHEW02021Consumer Laptop 14AMD Ryzen 3 7320URadeon 8256GB$ 49915%9,0664.6307
248LPMSI00580OBPulse 17Intel i9-13900HGeForce RTX 4070161TB$ 1,79955%29,68751.7307
304LPASU00561OBExpertBook B1Intel Core i5-1135G7Intel Iris Xe G78256GB$ 57017%9,89110.6307
160LPLEN03428IdeaPad Slim 3AMD Ryzen 3 7320UAMD Radeon 610M 8512GB$ 50015%9,0664.6307
276LPLEN00715OBNoneIntel Core i5-8365UNone16256 GB$ 35911%6,2456.4307
262LPLEN03493OBThinkbook T490Intel i5-8365UNone16256GB$ 35911%6,2456.4307
227LPLEN03429OBIdeaPad Slim 3AMD Ryzen 5 7520UAMD Radeon 610M8512GB$ 52216%9,4754.6306
589LPHEW0154315-ef2030caAMD Ryzen 7 5700UAMD Radeon 161TB$ 90028%15,85413.2306
469LPCNO00052OBVivoBook F515Intel Core i7-1165G7Intel Iris Xe 8512GB$ 60318%10,34712.1306
204LPLEN03518OBThinkbook T480sIntel i5-8350UNone16256GB$ 35911%6,2266.4306
543LPLEN02718OBNoneIntel Core i5-8350UIntel UHD 62016256 GB$ 35911%6,2266.4306
364LPMSI00498OBSUMMIT E14Intel i7-1280PIris Xe 161TB$ 1,14235%20,45012.1305
151LPASU00761Vivobook Pro 16X OLEDIntel i9-13980HXGeforce RTX 4070321TB$ 2,79985%47,99451.7303
141LPMSI00563Modern 15 NotebookIntel i5-1155G7Intel Iris Xe16512GB$ 59918%10,27810.6303
272LPASU00764OBZenbook 15 OLEDAMD Ryzen 7 7735UAMD Radeon 161TB$ 1,23437%21,35018.8302
335LPGIG00157OBAERO 14 OLEDIntel i5-12500HRTX 4050161TB$ 1,34941%21,52141.9301
565LPASU00556G17AMD Ryzen 7 4800HNVIDIA GeForce RTX 3060161TB$ 1,19736%18,65342.0301
76LPACE00994VeroIntel i7-1255UIntel Iris Xe 161TB$ 79924%13,77212.1300
355LPGIG00154OBAERO 14Intel Core i7-13700HGeForce RTX 4050161TB$ 1,70951%27,89041.9298
333LPLEN03312OBT490Intel i5-8265UIntel UHD 16256GB$ 35911%6,0236.4297
63LPASU00763Vivobook S 16 FlipIntel i5-1335UIntel HD 16512GB$ 94928%16,9294.2295
408LPACE00958PHN16-71-788NIntel i7-13700HXGeForce RTX 4060161024GB$ 2,10062%34,11046.3294
504LPASU00625OBG15AMD Ryzen 9 6900HXGeForce RTX 3070 Ti161TB$ 1,62048%24,88752.2294
118LPCNO00061Vivobook F SeriesIntel i5-1135G7None8256GB$ 59817%9,89110.6293
233LPLEN03567OBThinkPad X1 Gen 3Intel i7-8550UN/A16256GB$ 35910%5,9296.4292
54LPASU00581ExpertBook B1Intel i5-1135G7None8256GB$ 59917%9,89110.6292
575LPHUA00036MateBook D15Intel i5-1135G7Intel Iris Xe 8512GB$ 59917%9,89110.6292
607LPASU00561ExpertBook B1Intel Core i5-1135G7Intel Iris Xe G78256GB$ 60017%9,89110.6292
320LPMSI00553OBVector GP68HXIntel i9-12900HXGeForce RTX 4080321TB$ 2,24966%34,93764.9292
334LPGIG00148OBAORUS Gaming NotebookIntel i7-13700HGeForce RTX 4070161TB$ 1,79952%27,89051.7291
165LPLEN03429IdeaPad Slim 3AMD Ryzen 5 7520UAMD Radeon 610M8512GB$ 55016%9,4754.6291
410LPACE00955NH.QLZAA.005Intel i5-12500HGeForce RTX 40508512GB$ 1,40041%21,52141.9290
43LPMSI00540Thin GF63Intel i7-12650HGeForce RTX 405016512GB$ 1,49944%23,28141.9290
50LPMSI00560Thin GF63Intel i5-12450HGeForce RTX 406016512GB$ 1,19935%17,45646.3289
143LPASU00764Zenbook 15 OLEDAMD Ryzen 7 7735UAMD Radeon 161TB$ 1,29937%21,35018.8286
399LPASU00707OBZenbook OLEDAMD Ryzen 7 7730UAMD Radeon161TB$ 1,13932%18,82413.2284
102LPLEN0360021KK0009USAMD Ryzen 5 7530U Hexa-core (6 Core)None16512 GB$ 99928%16,50711.6284
135LPLEN03436Legion Pro 5Intel i7-13700HXGeForce RTX 4070161TB$ 2,19962%34,11051.7284
59LPASU00721ROG StrixAMD Ryzen 9 7945HXRTX 4080321TB$ 3,49999%55,50364.9283
357LPMSI00568OBModernIntel i5-1235UIntel Iris Xe16512GB$ 83023%13,54610.6282
48LPMSI00565Bravo 15AMD Ryzen 7 7735HSGeForce RTX 4050161TB$ 1,59945%24,26441.9282
292LPHEW02023OBConsumer NotebookAMD Ryzen 5 7520UAMD Radeon 8512GB$ 56916%9,4754.6281
352LPASU00726OBGV302XU-DS91T-CAAMD Ryzen 9 7940HSRTX 4050161TB$ 1,97955%30,59441.9280
453LPGIG00141OBAORUS 17Intel i7-12700HGeForce RTX 3080 Ti321TB$ 1,79950%26,42453.7279
29LPMSI00593Katana 17Intel i7-13620HGeForce RTX 4070161TB$ 1,79950%26,48951.7278
382LPASU00752OBVivobook 17Intel i7-1165G7Intel Iris Xe 8512GB$ 66418%10,34712.1278
470LPASU00610OBTUF517ZC-DS51-CAIntel i5-12450HGeForce RTX 305016512GB$ 1,15932%17,45627.5277
68LPMSI00580Pulse 17Intel i9-13900HGeForce RTX 4070161TB$ 1,99955%29,68751.7276
20LPLEN03493NoneIntel i5-8365UNone16256GB$ 39911%6,2456.4276
150LPLEN00715ThinkPad T490Intel i5-8365UNone16256GB$ 39911%6,2456.4276
418LPHEW02012Chromebook C204MA-SS02-CBIntel Celeron-N4020Intel UHD 432GB eMMC$ 993%1,5561.5276
69LPGIG00151BSF-73US754SHIntel i7-13700HGeForce RTX 4070161TB$ 1,89952%27,89051.7276
555LPLEN02718ThinkPad T480Intel Core i5-8350UIntel UHD 62016256 GB$ 39911%6,2266.4275
42LPLEN03518Thinkbook T480sIntel i5-8350UNone16256GB$ 39911%6,2266.4275
250LPMSI00592Stealth 14StudioIntel i7-13620HGeForce RTX 305016512GB$ 1,69947%26,48927.5275
451LPLEN03268ThinkPad T580Intel Core i5-8350UNone16256GB$ 40011%6,2266.4275
239LPHEW01946OBNoneIntel i5-1235UNone16256GB$ 85423%13,54610.6274
161LPACE00961Predator HeliosIntel i9-13900HXGeForce RTX 4080321 TB$ 2,99982%44,97764.9273
67LPGIG00145NoneIntel Core i9-13900HXGeForce RTX 4080161TB$ 2,99982%44,97764.9273
203LPLEN03578OBYoga L390Intel i5-8365UNone16256GB$ 40411%6,2456.4272
457LPLEN03202OBThinkPad X380 YogaIntel i5-8350UIntegrated16512GB$ 40411%6,2266.4272
314LPGIG00161NoneIntel i5-12500HGeForce RTX 405016512GB$ 1,49941%21,52141.9271
395LPGIG00158AORUS Gaming NotebookIntel i5-12500HGeForce RTX 40508512GB$ 1,49941%21,52141.9271
178LPGIG00157AERO 14Intel i5-12500HRTX 4050161TB$ 1,49941%21,52141.9271
39LPASU00707ZenbookAMD Ryzen 7 7730UAMD Radeon161TB$ 1,19932%18,82413.2270
181LPASU00759H7604JI-XS91T-CAIntel i9-13980HXGeforce RTX 4070321TB$ 3,15485%47,99451.7269
152LPGIG00154AERO 14Intel Core i7-13700HGeForce RTX 4050161TB$ 1,89951%27,89041.9269
409LPACE00957AN16-51-74BVIntel i7-13700HGeForce RTX 4050161024GB$ 1,90051%27,89041.9268
407LPACE00959PH16-71-71AVIntel i7-13700HXGeForce RTX 4060161024GB$ 2,30062%34,11046.3268
412LPACE00952Nitro 5Intel i5-12450HGeForce RTX 30508512GB$ 1,20032%17,45627.5267
103LPLEN0350821JR001QUSAMD Ryzen 5 7530U (Hexa-core, 6 Core) None8256 GB$ 1,06228%16,50711.6267
57LPHEW02023Consumer Notebook 14AMD Ryzen 5 7520UAMD Radeon 8512GB$ 59916%9,4754.6267
213LPLEN03503OBLegion Slim 7iIntel i9-13900HGeForce RTX 4070321TB$ 2,06955%29,68751.7267
433LPLEN03312T490Intel i5-8265UIntel UHD 16256GB$ 39911%6,0236.4267
369LPLGE00027OBgramIntel i5-1240PIntel Iris Xe 8512GB$ 1,10930%17,32010.6266
241LPLEN03403OBT480sIntel i7-8550UIntel UHD 62024256GB$ 39410%5,9296.4266
313LPLEN00182OBThinkPad T480sIntel Core i7-8550UNone16256 GB$ 39410%5,9296.4266
490LPLEN03099ThinkPad E15 Gen 4AMD Ryzen 7 5825U Octa-core (8 Core) 2 GHzAMD Radeon 16512GB$ 1,19932%18,45813.2265
391LPACE00945OBAspireIntel i5-10210UNone8256GB$ 41511%6,2286.4265
217LPGIG00156OBAERO 16 OLEDIntel i7-13700HGeForce RTX 4070161TB$ 1,97952%27,89051.7264
459LPMSI00514OBSummit E13 Flip EvoIntel Core i7-1280PIntel Iris Xe161TB$ 1,31835%20,45012.1264
32LPASU00752Vivobook 17Intel i7-1165G7Intel Iris Xe 8512GB$ 69918%10,34712.1264
257LPLEN02154OB20WM0085USIntel i5-1135G7None8256GB$ 66417%9,89110.6264
570LPHUA00035OBMatebook 14Intel Core i5-1135G7Intel Iris Xe 16512GB$ 66517%9,89110.6263
33LPLEN03567ThinkPad X1 Gen 3Intel i7-8550UNone16256GB$ 39910%5,9296.4263
26LPMSI00553Vector GP68HXIntel i9-12900HXGeForce RTX 4080321TB$ 2,49966%34,93764.9262
443LPMSI00537Pulse 17Intel i7-13700HGeForce RTX 4070161TB$ 1,99952%27,89051.7262
168LPGIG00148NoneIntel i7-13700HGeForce RTX 4070161TB$ 1,99952%27,89051.7262
297LPMSI00588Prestige 16EVOIntel i7-13700HNone321TB$ 1,79947%27,89012.1261
90LPLEN03055ThinkBook 15 G4Intel Core i5-1235UNone16256GB$ 89923%13,54610.6261
5LPHEW01946ProBook 450 G9Intel i5-1235UNone16256GB$ 89923%13,54610.6261
426LPGIG00150AORUS 15XIntel i7-13700HXGeForce RTX 4070161TB$ 2,39962%34,11051.7260
518LPLGE00025gramIntel i5-1240PNone8512GB$ 1,13630%17,32010.6260
101LPLEN03602NoneIntel Core i5-1335UNone16256GB$ 1,11929%16,92910.6258
423LPLEN03338ThinkPad T14s Gen 2AMD Ryzen 5 PRO 5650U Hexa-core (6 Core) 2.30 GHzNonenan256 GB$ 99926%14,92211.6258
394LPGIG00159AORUS Gaming NotebookIntel i5-12500HGeForce RTX 406016512GB$ 1,59941%21,52146.3258
279LPLEN03521NoneAMD Ryzen 5 7530UNone16256GB$ 1,09928%16,50711.6258
580LPMSI00381OBPrestige 14Intel Core i7-1185G7NVIDIA GeForce MX450161TB$ 73619%10,55312.6256
376LPACE00963AN515-58-7578Intel i7-12650HGeForce RTX 4050161TB$ 1,70044%23,28141.9256
475LPLEN03049OBLegion 5AMD Ryzen 7 6800HGeForce RTX 3070 Ti16512GB$ 1,78046%23,65452.2256
199LPLEN03706V15 G4AMD Ryzen 5 5500UIntegrated graphics16512GB$ 89923%13,14411.6255
483LPLGE00026OBGramIntel i7-1260PIntel Iris Xe 16512GB$ 1,16330%17,23112.1255
569LPLGE00019OBgramIntel i5-1155G7Intel Iris Xe 8512GB$ 71218%10,27810.6254
517LPLGE00027gramIntel i5-1240PIntel Iris Xe 8512GB$ 1,16830%17,32010.6253
338LPLEN03301OBIdeaPad Flex 5Intel i7-1255UNone16512GB$ 94924%13,77212.1253
269LPHEW01822OBProBook 450 G9Intel i7-1255UNone16512GB$ 94924%13,77212.1253
425LPGIG00153G5 MFIntel i5-12450HGeForce RTX 40508512GB$ 1,34934%17,45641.9253
474LPMSI00516Modern 14 Business NotebookIntel Core i5-1235UIntel Iris Xe8512GB$ 92923%13,54610.6252
140LPASU00726GV302XU-DS91T-CAAMD Ryzen 9 7940HSRTX 4050161TB$ 2,19955%30,59441.9252
548LPHUA00037OBMateBook 14sIntel Core i7-11370HIntel Iris Xe 16512GB$ 82421%11,76012.1251
144LPGIG00141YE5-74US544SHIntel i7-12700HGeForce RTX 3080 Ti321TB$ 1,99950%26,42453.7251
416LPACE00945Aspire A515-54-54B9Intel i5-10210UNone8256GB$ 43711%6,2286.4251
164LPLEN0215420WM0085USIntel i5-1135G7None8256GB$ 69917%9,89110.6250
521LPSAS00117Galaxy BookIntel i5-1135G7Intel Iris Xe 8256GB$ 69917%9,89110.6250
545LPLEN02719OBT470Intel Core i5-6300UIntel HD 6208256 GB$ 2637%3,2409.6250
121LPHUA00035Matebook 14Intel Core i5-1135G7Intel Iris Xe 16512GB$ 70017%9,89110.6250
380LPMSI00550Raider GE78HXIntel i9-13980HXGeForce RTX 4070322TB$ 3,39985%47,99451.7250
417LPMSI00538OBKatana 17 B12VGK-217CAIntel i7-12650HGeForce RTX 4070161TB$ 1,79945%23,28151.7249
534LPASU00610TUF517ZC-DS51-CAIntel i5-12450HGeForce RTX 305016512GB$ 1,28832%17,45627.5249
516LPASU00603OBVivobook 15Intel Core i7-1165G7Intel Iris Xe 12512GB$ 74218%10,34712.1249
162LPASU00718G634JZ-XS96Intel i9-13980HXRTX 4080321TB$ 3,49987%47,99464.9248
51LPMSI00555Stealth 15Intel i9-13900HGeForce RTX 4060321TB$ 2,19955%29,68746.3248
73LPASU00729Zephyrus DuoAMD Ryzen 9 7945HXRTX 4080321TB$ 3,99999%55,50364.9247
540LPHUA00039OBMateBook 14si7-11370HIntel Iris Xe 16512GB$ 83921%11,76012.1247
389LPASU00724OBGU604VI-DS92-CAIntel i9-13900HGeForce RTX 4070321TB$ 2,24955%29,68751.7246
467LPACE00880OBAspire A515-54Intel i7-10510UNone8512GB$ 47512%6,6486.4246
537LPHEW01738OBProbook 640Intel Core i5-6300UIntel HD 52016512GB$ 2436%3,2405.1245
49LPLEN03578Yoga L390Intel i5-8365UNone16256GB$ 44911%6,2456.4245
184LPASU00727GV601VU-DS91T-CAIntel Core i9-13900HRTX 4050161TB$ 2,19954%29,68741.9245
191LPLEN03577OBThinkPad T480Intel i5-8365UNone16512GB$ 44911%6,2456.4245
236LPLEN03559OBNoneIntel i5-8365UIntel UHD 62016512GB$ 44911%6,2456.4245
154LPLEN03202X380 YogaIntel i5-8350UIntegrated GPU16512GB$ 44911%6,2266.4244
404LPMSI00481OBRaider GE76Intel i9-12900HKRTX3080TI321TB$ 2,17353%28,08553.7244
494LPGIG00136AORUS 5 KE4Intel Core i7-12700HGeForce RTX 3060161TB$ 1,99949%26,42442.0243
316LPHEW01834OBEliteBook 640 G9Intel i5-1245UNone16512GB$ 96123%13,48110.6243
275LPLEN0354421JR001RUSRyzen 5 7530UNone16256 GB$ 1,17428%16,50711.6242
197LPLEN03708V15 G4Intel i5-1335UNone161TB$ 1,19929%16,92910.6241
235LPGIG00164AORUS 17XIntel i9-13980HXGeForce RTX 4080161TB$ 3,59987%47,99464.9241
245LPLEN03502OBIdeaPad Slim 3AMD Ryzen 5 7520UNone16512GB$ 66416%9,4754.6241
424LPGIG00146OB17HIntel i7-13700HRTX 4080161TB$ 2,24954%27,89064.9241
10LPLEN0350382Y3007HCCIntel i9-13900HNVIDIA GeForce RTX 4070321TB$ 2,29955%29,68751.7240
127LPHEW01822ProBook 450 G9Intel i7-1255UNone16512GB$ 99924%13,77212.1240
438LPLEN03301IdeaPad Flex 5Intel i7-1255UNone16512GB$ 99924%13,77212.1240
242LPLEN03568V14Intel i7-1255UNone16512GB$ 99924%13,77212.1240
81LPASU00723GA402NJ-DS71-CAAMD Ryzen 7 7735HSRTX 305016512GB$ 1,79943%24,26427.5240
139LPLEN00182ThinkPad T480sIntel Core i7-8550UNone16256GB$ 43810%5,9296.4240
142LPLEN03403T480sIntel i7-8550UIntel UHD 62024256GB$ 43810%5,9296.4240
489LPLGE00021OBgramIntel i5-1155G7Intel Iris Xe 8512GB$ 76018%10,27810.6239
182LPGIG00156AERO 16 OLEDIntel i7-13700HGeForce RTX 4070161TB$ 2,19952%27,89051.7238
576LPASU00540VivoBook Pro 16XAMD Ryzen 7 5800HNVIDIA GeForce RTX 305016512GB$ 1,59938%21,13027.5238
375LPACE00965NitroAMD Ryzen 7 7735HSGeForce RTX 4050161TB$ 1,89945%24,26441.9238
246LPLEN03552OBX1 Yoga G4Intel i5-8265UNone16512GB$ 44911%6,0236.4237
546LPASU00603Vivobook 15Intel Core i7-1165G7Intel Iris Xe 12512GB$ 78118%10,34712.1236
497LPASU00559OBZenbook NotebookIntel Core i5-1135G7Intel Iris Xe 8256GB$ 74217%9,89110.6236
207LPMSI00597Prestige 13 EVOIntel i7-1360PNone16512GB$ 1,39933%19,30912.1236
503LPGIG00134A7 K1AMD Ryzen 7 5800HGeForce RTX 306016512GB$ 1,69940%21,13042.0236
343LPMSI00579Stealth 14StudioIntel i7-13620HGeForce RTX 4060161TB$ 2,09949%26,48946.3235
572LPHUA00039MateBook 14sIntel i7-11370HIntel Iris Xe 16512GB$ 88321%11,76012.1235
428LPLEN03299OBThinkPad T14 Gen 2Intel Core i5-1135G7GeForce MX450 2GB8256GB$ 76018%9,89112.6234
93LPMSI00548Vector GP78 HXIntel i9-13950HXGeForce RTX 4080321TB$ 3,49982%44,93164.9234
535LPACE00880Aspire A515-54Intel i7-10510UNone8512GB$ 50012%6,6486.4233
296LPMSI00589Creator Z17HXStudioIntel i9-13950HXGeForce RTX 4060321TB$ 3,39979%44,93146.3233
138LPACE00966Nitro 17AMD Ryzen 7 7735HSGeForce RTX 4070321TB$ 1,99946%24,26451.7232
218LPLEN03487OBThinkPad E16Intel i7-1355UNone16512GB$ 1,13926%15,29412.1232
212LPASU00560OBExpertBook B1Intel i5-1135G7None8256GB$ 75917%9,89110.6231
515LPHEW01834EliteBook 640 G9Intel i5-1245UNone16512GB$ 1,01223%13,48110.6230
566LPHUA00038OBMatebook 14i5-1135G7Intel Iris Xe 16512GB$ 76017%9,89110.6230
592LPLEN0213120Y70037USAMD Ryzen 5 5500UNone8256GB$ 99923%13,14411.6229
7LPLEN03502IdeaPad Slim 3AMD Ryzen 5 7520UNone16512GB$ 69916%9,4754.6229
419LPGIG00144OBAZF-B5US665SPIntel Core i9-13900HXRTX 4090322TB$ 3,64583%44,97772.6228
318LPHEW02077OMENAMD Ryzen 9 7940HSGeForce RTX 4070322TB$ 2,49957%30,59451.7227
508LPASU00621OBGA503RS-XS92-CAAMD Ryzen 9 6900HSGeForce RTX 3080321TB$ 2,01645%23,90147.4225
442LPMSI00538Katana 17 B12VGK-217CAIntel i7-12650HGeForce RTX 4070161TB$ 1,99945%23,28151.7224
234LPLEN03564OBThinkPad X1Intel i7-8650UNone16256GB$ 49411%6,2886.4224
563LPASU00559Zenbook NotebookIntel Core i5-1135G7Intel Iris Xe 8256GB$ 78117%9,89110.6224
345LPLEN03462ThinkBook 14s YogaIntel Core i5-1335UNone16256GB$ 1,29929%16,92910.6223
92LPLEN03474ThinkPad E16Intel i5-1335UNone16256GB$ 1,29929%16,92910.6223
288LPHEW01833OBEliteBook 650 G9Intel i5-1245UNone16256GB$ 1,04923%13,48110.6222
441LPLEN03299ThinkPad T14 Gen 2Intel Core i5-1135G7GeForce MX450 2GB8256GB$ 80018%9,89112.6222
156LPASU00766Zenbook Pro 14Intel i9-13900HGeForce RTX 4070321TB$ 2,49955%29,68751.7221
55LPASU00724ROG ZephyrusIntel i9-13900HGeForce RTX 4070321TB$ 2,49955%29,68751.7221
148LPGIG00155AERO 16 OLEDIntel i9-13900HGeForce RTX 4070321TB$ 2,49955%29,68751.7221
17LPLEN0348721JN0073USIntel i7-1355UNone16512GB$ 1,19926%15,29412.1221
290LPMSI00590Modern 14Intel i7-1355UNone161TB$ 1,19926%15,29412.1221
83LPLEN03577ThinkPad T480Intel i5-8365UNone16512GB$ 49911%6,2456.4221
116LPLEN03559ThinkPad T590Intel i5-8365UIntel UHD 62016512GB$ 49911%6,2456.4221
584LPMSI00293OBGF75 10UEK-003CAIntel Core i7-10750HRTX306016512GB$ 1,14625%12,01242.0220
78LPLGE00032Gram EVOIntel i7-1360PIntel Iris Xe16512GB$ 1,49933%19,30912.1220
153LPASU00722G834JY-XS97Intel i9-13980HXRTX 4090322TB$ 3,99988%47,99472.6220
36LPASU00560ExpertBook B1Intel i5-1135G7None8256GB$ 79917%9,89110.6219
573LPHUA00038Matebook 14i5-1135G7Intel Iris Xe 16512GB$ 80017%9,89110.6219
390LPLGE00024OBGramIntel i7-1260PIntel Iris Xe 16512GB$ 1,35630%17,23112.1218
74LPLEN03010ThinkBook 14 G4Intel i7-1255UNone16512GB$ 1,09924%13,77212.1218
265LPLGE00033OBGram EVOIntel i7-1360PIntel Iris Xe16512GB$ 1,51933%19,30912.1217
351LPLGE00030OBGramIntel i7-1360PIntel Iris Xe16512GB$ 1,51933%19,30912.1217
312LPLGE00031OBGram EVOIntel i7-1360PIntel Iris Xe16512GB$ 1,52033%19,30912.1217
286LPASU00770OBGA402XZ-CS94AMD Ryzen 9 7940HSGeForce RTX 4080161TB$ 2,69959%30,59464.9217
370LPMSI00567Thin GF63Intel Core i5-12450HGeForce RTX 406016512GB$ 1,59935%17,45646.3217
70LPGIG00146NoneIntel i7-13700HRTX 4080161TB$ 2,49954%27,89064.9217
444LPASU00731ROG FlowIntel i9-13900HRTX 4050161TB$ 2,49954%29,68741.9216
284LPASU00765OBZenbook S 13 OLED EVOIntel i7-1355UNone161TB$ 1,23426%15,29412.1214
564LPASU00558Zenbook Pro 15AMD Ryzen 9 5900HXNVIDIA GeForce RTX 3050Ti16512GB$ 1,89941%22,67828.2214
122LPLEN03552X1 Yoga G4Intel i5-8265UNone16512GB$ 49911%6,0236.4213
209LPLEN03573OBThinkPad T490Intel i7-8550UIntel UHD 62016256GB$ 49410%5,9296.4212
108LPHEW01833EliteBook 650 G9Intel i5-1245UNone16256GB$ 1,10423%13,48110.6211
315LPMSI00583NoneIntel i7-13700HXGeForce RTX 4050321TB$ 2,89961%34,11041.9211
96LPHEW02036NoneIntel i9-13900HXGeForce RTX 4090322TB$ 3,99983%44,97772.6207
331LPLEN03471ThinkPad E14Intel i5-1335UNone16512GB$ 1,39929%16,92910.6207
85LPLEN03497ThinkPad X1 CarbonIntel i5-1335UNone16256GB$ 1,39929%16,92910.6207
480LPGIG00138AERO 16Intel Core i9-12900HGeForce RTX 3080 Ti322TB$ 2,59954%28,52453.7206
87LPLGE00033Gram EVOIntel i7-1360PIntel Iris Xe16512GB$ 1,59933%19,30912.1206
105LPLGE00030GramIntel i7-1360PIntel Iris Xe16512GB$ 1,59933%19,30912.1206
104LPLGE00031Gram EVOIntel i7-1360PIntel Iris Xe16512GB$ 1,60033%19,30912.1206
348LPMSI00576CREATOR Z16Intel i7-13700HXGeForce RTX 4060321TB$ 2,99962%34,11046.3206
281LPMSI00577OBPrestige 13 EvoIntel i7-1360PNone321TB$ 1,60533%19,30912.1206
256LPHEW02083OBEliteBook 640 G9Intel i5-1245UNone16512GB$ 1,13623%13,48110.6205
346LPHEW02045OBConsumer Laptop 17.3"Intel i5-1135G7Intel Iris Xe16512GB$ 85417%9,89110.6205
583LPLGE00015OBGram 2-in-1Intel i7-1165G7Intel Iris Xe 16512GB$ 90218%10,34712.1204
478LPMSI00513Katana GF76Intel Core i7-12700HGeForce RTX3070TI161TB$ 2,44950%26,42452.2204
130LPASU00765Zenbook S 13 OLED EVOIntel i7-1355UNone161TB$ 1,29926%15,29412.1204
305LPMSI00587CreatorPro M16Intel i7-13700HNVIDIA RTX A1000321TB$ 2,39949%27,89025.5203
307LPMSI00586CreatorPro Z16HXStudioIntel i9-13950HXNVIDIA RTX A2000321TB$ 3,79977%44,93129.7203
513LPASU00621GA503RS-XS92-CAAMD Ryzen 9 6900HSGeForce RTX 3080321TB$ 2,24045%23,90147.4202
129LPLEN03564ThinkPad X1Intel i7-8650UNone16256GB$ 54911%6,2886.4202
485LPASU00609OBTUF Gaming NotebookIntel Core i5-10300HGeForce GTX 165081TB$ 82417%8,47420.8201
458LPMSI00524GP66 LeopardIntel Core i7-11800HNVIDIA RTX307016512GB$ 1,99940%20,75348.0201
398LPASU00734OBZenbook 14XIntel i7-1260PGeForce MX55016512GB$ 1,51931%17,23119.2201
510LPMSI00497Pulse GL66Intel i7-11800HRTX307016512GB$ 2,00040%20,75348.0201
556LPHEW01739ProBook 820 G3Intel Core i7 6500UIntel HD 52016256GB$ 2996%3,2755.1201
278LPLEN03522ThinkBook 15 G4AMD Ryzen 5 5625UNone16256GB$ 1,29926%15,07811.6201
97LPLEN03712Yoga L390Intel i5-8365UNone16256GB$ 54911%6,2456.4201
445LPASU00728Zephyrus DuoAMD Ryzen 9 7945HXRTX 4090322TB$ 4,999100%55,50372.6200
603LPACE00491Aspire 5Intel i7-10510UIntel UHD 620 graphics8512GB$ 58612%6,6486.4199
219LPGIG00137OBAERO 16Intel Core i9-12900HNVIDIA RTX 3080 Ti642TB$ 2,69954%28,52453.7199
155LPMSI00577Prestige 13 EvoIntel i7-1360PNone321TB$ 1,68933%19,30912.1195
60LPASU00770GA402XZ-CS94AMD Ryzen 9 7940HSGeForce RTX 4080161TB$ 2,99959%30,59464.9195
77LPHEW02083EliteBook 640 G9Intel i5-1245UNone16512GB$ 1,19623%13,48110.6195
368LPHEW02045Consumer LaptopIntel i5-1135G7Intel Iris Xe16512GB$ 89917%9,89110.6195
254LPLEN03042OBThinkBook 15 G4Intel Core i7-1255UNone16512GB$ 1,23424%13,77212.1194
308LPMSI00585CreatorPro Z17HX StudioIntel i9-13950HXNVIDIA RTX A3000321TB$ 3,99977%44,93132.1193
321LPSAS00158Galaxy Book3 360 EVOIntel i5-1335UNone8256GB$ 1,49929%16,92910.6193
446LPMSI00534Raider GE78 HXIntel i9-13980HXGeForce RTX 4080642TB$ 4,49987%47,99464.9193
194LPLGE00028OBGram EVOIntel i7-1260PIntel Iris Xe 16512GB$ 1,53930%17,23112.1192
91LPLEN0347614s Yoga G3Intel Core i7-1355UNone16512GB$ 1,38026%15,29412.1192
169LPASU00734Zenbook 14XIntel i7-1260PGeForce MX55016512GB$ 1,59931%17,23119.2191
44LPLEN03573ThinkPad T490Intel i7-8550UIntel UHD 62016256GB$ 54910%5,9296.4191
378LPMSI00552Raider GE78HXIntel i7-13700HXGeForce RTX 4070321TB$ 3,29962%34,11051.7189
196LPLEN03709V15 G4Intel i7-1355UNone161TB$ 1,39926%15,29412.1189
381LPMSI00549Vector GP78HXIntel i7-13700HXGeForce RTX 4080321TB$ 3,39964%34,11064.9189
552LPDYA00003C50-JIntel Core i5-1135G7Integrated GPU8256GB$ 92917%9,89110.6188
252LPGIG00163AORUS 17XIntel i9-13980HXGeForce RTX 4090322TB$ 4,69988%47,99472.6187
373LPLEN03427IdeaPad 1 15AMN7AMD Athlon Gold 7220UAMD Radeon 610M 4128GB$ 4508%4,7484.6185
261LPDYA00028TecraIntel i5-1240PNone16256GB$ 1,59930%17,32010.6185
106LPLEN03221ThinkPad L13 YogaIntel Core i7-1255UNone16512GB$ 1,29924%13,77212.1185
186LPLEN03042ThinkBook 15 G4Intel Core i7-1255UNone16512GB$ 1,29924%13,77212.1185
232LPLEN02397OBNoneIntel i5-1135G7Intel Iris Xe 8256GB$ 95017%9,89110.6184
109LPLGE00028Gram EVOIntel i7-1260PIntel Iris Xe 16512GB$ 1,62030%17,23112.1183
180LPASU00767Zenbook Pro 14 Duo OLEDIntel i9-13900HGeForce RTX 4060321TB$ 2,99955%29,68746.3182
377LPMSI00554Vector GP77Intel i7-13700HGeForce RTX 4070161TB$ 2,89952%27,89051.7181
422LPLEN03339ThinkPad T14s Gen 2AMD Ryzen 5 PRO 5650UNone8256GB$ 1,43026%14,92211.6180
163LPGIG00137AERO 16Intel Core i9-12900HRTX 3080 Ti642TB$ 2,99954%28,52453.7179
587LPMSI00379Modern 14Intel Core i7-1195G7Intel Iris Xe8512GB$ 1,09920%11,03412.1178
208LPHEW01997OBENVY X360Intel i7-1250UNone161TB$ 1,23422%12,42112.1177
183LPLEN03512ThinkBook 14s Yoga G3Intel Core i7-1355UNone16512GB$ 1,49926%15,29412.1177
447LPMSI00533Raider GE78 HXIntel i9-13980HXGeForce RTX 4090322TB$ 4,99988%47,99472.6176
397LPLGE00034GramIntel i7-1360PGeForce RTX 3050161TB$ 2,00035%19,30927.5175
481LPCNO00054ThinkPad E15 Gen 2Intel Core i5-1135G7Intel Iris Xe 8256GB$ 99917%9,89110.6175
413LPACE00948A317-53-591MIntel i5-1135G7Integrated GPU8512GB$ 99917%9,89110.6175
95LPLEN03710NoneIntel i5-10310UNone16512GB$ 64911%6,4366.4174
80LPLEN03572Legion Pro 7Intel i9-13900HXGeForce RTX 4090322TB$ 4,79983%44,97772.6173
431LPACE00942A315-56-54YTIntel Core i5-1035G1Integrated Graphic8256GB$ 74913%7,4605.1171
330LPSAS00150Galaxy Book3 EVOIntel i7-13700HGeForce RTX 405016512GB$ 2,99951%27,89041.9170
98LPLEN03711X1 CarbonIntel i7-8665UNone16256GB$ 64911%6,2566.4170
550LPDYA00005C50-JIntel Core i7-1165G7Integrated GPU8256GB$ 1,08918%10,34712.1169
259LPDYA00033TecraIntel i7-1260PNone16256GB$ 1,74930%17,23112.1169
260LPDYA00029TecraIntel i7-1260PNone16256GB$ 1,75030%17,23112.1169
567LPMSI00415Stealth 15MIntel Core i7-1260PRTX3060161TB$ 1,99934%17,23142.0169
58LPHEW01997ENVY X360Intel i7-1250UNone161TB$ 1,29922%12,42112.1168
501LPASU00649P1512CEAIntel Core i5-1135G7Intel UHD 8512GB$ 1,04917%9,89110.6167
502LPASU00647P1512CEAIntel Core i5-1135G7Intel UHD 8512GB$ 1,04917%9,89110.6167
551LPDYA00004C50-JIntel Core i5-1135G7Integrated GPU8512GB$ 1,04917%9,89110.6167
99LPACE00999PTX17-71-99W5Intel i9-13900HXGeForce RTX 4090642TB$ 4,99983%44,97772.6166
274LPLEN03546E14Intel i7-1355UNone16512GB$ 1,59926%15,29412.1166
488LPASU00547OBVivobook 13Intel Pentium Silver N6000Intel UHD 4128GB$ 3325%3,0893.4165
514LPHEW01837OMEN 16AMD Ryzen 5 5600HRadeon 161TB$ 1,79929%17,09311.6163
379LPMSI00551Stealth 17StudioIntel i7-13700HGeForce RTX 4070321TB$ 3,29952%27,89051.7159
75LPMSI00591Stealth 16 AMGIntel i9-13900HGeForce RTX 4070322TB$ 3,49955%29,68751.7158
574LPASU00547Vivobook 13 Slate NotebookIntel Pentium Silver N6000Intel UHD 4128GB$ 3505%3,0893.4157
329LPSAS00152Galaxy Book3 EVOIntel i7-13700HGeForce RTX 4050161TB$ 3,26951%27,89041.9156
200LPRAZ00059Blade 14AMD Ryzen 9 7940HSGeForce RTX 4070161TB$ 3,64957%30,59451.7155
448LPMSI00532TITAN GT77Intel i9-13980HXGeForce RTX 4080642TB$ 5,59987%47,99464.9155
549LPDYA00006C50-JIntel Core i7-1165G7Integrated8512GB$ 1,19918%10,34712.1154
177LPASU00743Zenbook S 13 FlipIntel i7-1260PNone161TB$ 1,99930%17,23112.1148
280LPHEW02090ProBook 440Intel i7-1355UNone16512GB$ 1,79926%15,29412.1147
558LPASU00565ExpertBook B5Intel Core i5-1135G7Intel Iris Xe G716256GB$ 1,19917%9,89110.6146
396LPLGE00035GramIntel i7-1360PIntel Iris Xe16512GB$ 2,30033%19,30912.1143
387LPASU00768Zenbook Pro 16X OLEDIntel i9-13905HGeForce RTX 4080321TB$ 4,19960%31,60364.9143
214LPLEN03517OBThinkPad X1 Carbon EVOIntel i7-1365UNone32512GB$ 1,89927%15,45112.1141
593LPLEN02112ThinkBook 14s Yoga ITLIntel i5-1135G7Intel Iris Xe 8256GB$ 1,24917%9,89110.6140
202LPMSI00531OBTITAN GT77Intel i9-13980HXGeForce RTX 40901284TB$ 6,29988%47,99472.6139
327LPSAS00157Galaxy Book3 360 EVOIntel i7-1355UNone16512GB$ 1,89926%15,29412.1139
595LPLEN02056IdeaPad Slim 7iIntel i5-1135G7Intel Iris Xe 8512GB$ 1,26017%9,89110.6139
94LPASU00736GU604VY-XS97Intel i9-13900HRTX 4090322TB$ 4,19958%29,68772.6138
388LPMSI00544Titan Gaming NotebookIntel i9-13980HXGeForce RTX 4090642TB$ 6,44988%47,99472.6136
170LPASU00592Vivobook 15AMD Ryzen 3 3250UAMD Radeon 8128GB$ 4997%3,8553.7135
244LPLEN01849OBThinkPad X1 Nano EVOIntel Core i7-1160G7None16512GB$ 1,23417%9,17312.1134
72LPLEN03517ThinkPad X1 Carbon EVOIntel i7-1365UNone32512GB$ 1,99927%15,45112.1134
82LPMSI00535Stealth 17Intel i9-13900HGeForce RTX 4090642TB$ 4,39958%29,68772.6132
328LPSAS00156Galaxy Book3 Pro 360 EVOIntel i7-1360PNone161TB$ 2,49933%19,30912.1132
499LPASU00651P1512CEAIntel Core i7-1165G7Intel Iris Xe 161TB$ 1,39918%10,34712.1132
559LPASU00564ExpertBook B1Intel Core i7-1165G7Intel Iris Xe G712512GB$ 1,39918%10,34712.1132
561LPASU00562ExpertBook B1Intel Core i7-1165G7Intel Iris Xe G712512GB$ 1,39918%10,34712.1132
500LPASU00650NoneIntel Core i7-1165G7Intel Iris Xe 161TB$ 1,39918%10,34712.1132
472LPASU00665Zenbook ProIntel Core i9-12900HGeForce RTX 3060321TB$ 3,99952%28,52442.0130
277LPLEN03526NoneIntel i5-1335UNone16512GB$ 2,24929%16,92910.6129
185LPMSI00531TITAN GT77Intel i9-13980HXGeForce RTX 40901284TB$ 6,99988%47,99472.6125
479LPRAZ00055Blade 15Intel Core i7-12800HGeForce RTX 3070 Ti161TB$ 3,99948%24,97152.2119
598LPLEN01757ThinkBook 15 G2 ITLIntel Core i7-1165G7 Quad-core (4 Core) 2.80 GHzIntel UHD 16512 GB$ 1,54918%10,34712.1119
455LPMSI00528CreatorProIntel i7-12700HRTX A3000321TB$ 3,99947%26,42432.1118
427LPLEN02684OB20UB0067USIntel Core i5-10210UNone16256 GB$ 93211%6,2286.4118
340LPLEN03465ThinkPad X1 Yoga EVOIntel i5-1335UNone16256GB$ 2,53429%16,92910.6114
568LPLEN02684ThinkPad X1 Yoga Gen 5Intel Core i5-10210UNone16256GB$ 98111%6,2286.4112
437LPLEN03307ThinkPad T14 Gen 2Intel Core i5-1135G7MX450 2GB16256GB$ 1,59918%9,89112.6111
536LPASU00591OBL510MA-DS09-CAIntel Celeron N4020Intel UHD 600464GB$ 2463%1,5561.5111
471LPLEN03138Business NotebookIntel i5-1145G7Intel Iris Xe16512GB$ 1,60018%9,97010.6110
528LPSAS00113Galaxy Book ProIntel i5-1135G7Intel Iris Xe 8512GB$ 1,60017%9,89110.6109
527LPSAS00114Galaxy Book ProIntel i5-1135G7Iris Xe 8256GB$ 1,60017%9,89110.6109
553LPGIG00125AERO 16 YE4Intel Core i9-12900HNVIDIA GeForce RTX 3080 Ti322TB$ 4,99954%28,52453.7107
529LPSAS00112Galaxy Book ProIntel i7-1165G7Iris Xe 8512GB$ 1,73018%10,34712.1107
525LPSAS00116Galaxy Book ProIntel i7-1165G7Intel Iris Xe 8256GB$ 1,73018%10,34712.1107
523LPRAZ00054Razer Blade 14AMD Ryzen 9 6900HXGeForce RTX 3080Ti161TB$ 4,49948%24,88753.7106
174LPASU00591Vivobook GoIntel Celeron N4020Intel UHD 600464GB$ 2593%1,5561.5105
554LPLEN0274120W400K3USIntel i5-1145G7Intel Iris Xe16512GB$ 1,72118%9,97010.6102
597LPLEN0185820TA0025USIntel Core i7 i7-1165G7None8512 GB$ 1,80618%10,34712.1102
526LPSAS00115Galaxy Book ProIntel i5-1135G7Intel Iris Xe 8512GB$ 1,73017%9,89110.6101
436LPLEN03308ThinkPad T14 Gen 2Intel Core i5-1135G7MX450 2GB16256GB + 512GB$ 1,79918%9,89112.699
530LPSAS00111Galaxy Book ProIntel i7-1165G7Iris Xe 8512GB$ 1,87018%10,34712.199
221LPASU00762OBVivobook SlateIntel Pentium Silver Processor N6000Intel UHD 8128GB$ 5695%3,0893.496
511LPASU00623NoneAMD Ryzen 9 6900HXNVIDIA GeForce RTX 3080 Ti641TB$ 4,99948%24,88753.796
456LPMSI00527CreatorProIntel i7-12700HNVIDIA RTX A5500321TB$ 5,29949%26,42447.793
325LPLEN03478ThinkPad X1 Yoga Gen 8Intel i7-1355UNone16512 GB$ 2,88426%15,29412.192
86LPASU00762Vivobook SlateIntel Pentium Silver Processor N6000Intel UHD 8128GB$ 5995%3,0893.491
594LPLEN02071ThinkPad X13 Yoga Gen 2Intel Core i5 (11th Gen) i5-1135G7 Quad-coreIntel Iris Xe 8256 GB$ 2,01917%9,89110.687
505LPASU00590OBVivobook 14 FlipIntel Celeron N4500Intel UHD 4128GB$ 4744%2,0033.478
301LPLEN03495ThinkPad X13 YogaIntel i5-10310UNone16256GB$ 1,49911%6,4366.476
62LPASU00590Vivobook 14 Flip NotebookIntel Celeron N4500Intel UHD 4128GB$ 4994%2,0033.474
230LPASU00810Chromebook Flip C434Intel m3-8100YNone464GB Flash Memory$ 6995%2,8773.073
605LPASU00227Chromebook Flip C434Intel m3-8100YNone464GB Flash Memory$ 6995%2,8773.073
596LPLEN0187020UN000AUSIntel Core i7-1160G7 EVO Quad-coreIntel Iris Xe 16256 GB$ 2,40017%9,17312.169
590LPLEN02299ThinkPad X13 Yoga Gen 2Intel Core i7 (11th Gen) i7-1165G7 Quad-coreIntel Iris Xe 16256GB$ 2,89218%10,34712.164
- - - - \ No newline at end of file diff --git a/PCData/data/notebookcheck/all-cpu.csv b/PCData/data/notebookcheck/all-cpu.csv deleted file mode 100644 index 8f6df8e..0000000 --- a/PCData/data/notebookcheck/all-cpu.csv +++ /dev/null @@ -1,917 +0,0 @@ -Model,Codename,Series,L2 Cache + L3 Cache,FSB / QPI,TDP Watt,MHz - Turbo,Cores / Threads,Process (nm),Architecture,64 Bit,Days old,Graphics Card,Perf. Rating,3DMark06 CPU,Cinebench R10 32Bit Single,Cinebench R10 32Bit Multi,Cinebench R11.5 CPU Single 64Bit,Cinebench R11.5 64Bit,Cinebench R15 CPU Single 64Bit,Cinebench R15 CPU Multi 64Bit,Cinebench R20 Single,Cinebench R20,Cinebench R23 Single Core,Cinebench R23 Multi Core,SuperPI 1M*,SuperPI 32M*,wPrime 32,wPrime 1024,WinRAR 4.0,x264 Pass 1,x264 Pass 2,x265,TrueCrypt AES,TrueCrypt Twofish,TrueCrypt Serpent,Blender(-),Blender v3.3 Classroom CPU(-),7-Zip Single,7-Zip,Geekbench 2,Geekbench 3 32 Bit Single-Core Score,Geekbench 3 32 Bit Multi-Core Score,Geekbench 4.4 64 Bit Single-Core Score,Geekbench 4.4 64 Bit Multi-Core Score,Geekbench 5.0 5.0 Single-Core,Geekbench 5.0 5.0 Multi-Core,Geekbench 5.5 Single-Core,Geekbench 5.5 Multi-Core,Geekbench 6.2 Single-Core,Geekbench 6.2 Multi-Core,PassMark PerformanceTest Mobile V1 CPU Tests,Sunspider 1.0 Total Score(-),Octane V2 Total Score,Jetstream 2,Speedometer,WebXPRT 3,WebXPRT 4 Overall -AMD Ryzen Threadripper PRO 7995WX,Storm Peak,Threadripper,96MB + 384MB,,350,2500 ‑ 5100,96/192,5,x86,,22,,~70.2,21375,7951,72072,3.4,76.86,286,15842,695,41011,1815,107681,6.98,349.43,7.93,17.19,63037,354.5,267.5,56.9,38.4,5.3,3.3,29,38,7108,174189,,,,4762,19324,1017,3879,1918,55811,2702,25365,,,,,,349,263 -AMD Ryzen Threadripper PRO 3995WX,Matisse,Threadripper,32MB + 256MB,,280,2700 ‑ 4200,64/128,7,x86,,1244,,~52.4,16656,5596,52743,2.12,54.3,195,9706,488,23571,1249,61102,9.81,730,6.11,25.41,6689,264,192.5,46.6,26,4.8,2.9,47.8,,5021,140172,,,,5567,80545,1266,31711,1720,14881,,,,,,,,229, -Intel Core i9-14900K,Raptor Lake,Raptor Lake-R,32MB + 36MB,,125,3200 ‑ 6000,24/32,10,x86,,24,UHD Graphics 770,~68.6,20802,12643,94801,4.02,72.24,332,6282,900,15466,2351,41193,5.48,280.25,2.07,74.47,16108,345.5,181.2,42,26.7,5.8,2.8,82.5,139.5,7772,149570,,,,9869.5,88609,2271.5,24957,2306.5,25285,3254.5,21537.5,,,,,,386,332 -AMD Ryzen 9 7950X,Raphael (Zen 4),"Raphael (Zen 4, Ryzen 7000)",16MB + 64MB,,170,4500 ‑ 5700,16/32,0,x86,,410,Radeon Graphics (Ryzen 7000),~65.9,21065,8508,72480,3.7,68.61,316,6095,778,14538,2001,37353,6.35,312.55,1.67,30.81,15779,383,274,43.55,32.5,4.5,2.8,86,134,8167,157469,,,,8864,85341,2131,23887,2227,23903,2975,19813,,,,,,377,303 -Intel Core i9-13900K,Raptor Lake,Raptor Lake-S,32MB + 36MB,,125,3000 ‑ 5800,24/32,10,x86,,386,UHD Graphics 770,~65.9,20191.5,12017.5,87738,3.87,67.5,324,5959,849.5,14620.5,2238.5,38271.5,5.7,293.25,2.05,84.2,14271,419.25,264.75,40.7,22.9,5.4,2.9,84,139,7272,146984,,,,9598,85336,2197,23664,2286,24033,,,,,,,,368,316 -AMD Ryzen 9 7950X3D,Raphael (Zen4),"Raphael (Zen 4, Ryzen 7000)",16MB + 128MB,64K (per core),120,4200 ‑ 5700,16/32,5,x86,,310,Radeon Graphics (Ryzen 7000),~67.5,20279,16551,138015,3.86,64.59,326,5974,795,14188,2053,36291,6.11,305.11,2.01,33.88,15779,392.5,265.5,42.4,26.9,4.2,2.8,86,133,8321,159341,,,,9240,87922,2183,23720,2311,24343,,,,,,,,383,313 -Intel Core i7-14700K,Raptor Lake,Raptor Lake-R,28MB + 33MB,,125,2500 ‑ 5600,20/28,10,x86,,54,UHD Graphics 770,~64.6,20665,12027,91081,3.7,61.44,314,5459,832,13672,2153,35892,5.98,305.94,2.15,109.8,12800,419,261,36.8,25.6,4.6,2.6,91,155,7351,135648,,,,9304,79501,2045,22756,2121,23159,2902,19790,,,,,,339,314 -AMD Ryzen 9 7900X,Raphael (Zen4),"Raphael (Zen 4, Ryzen 7000)",12MB + 64MB,,170,4700 ‑ 5600,12/24,5,x86,,440,Radeon Graphics (Ryzen 7000),~58.7,21284,8623,68579.5,3.83,54.66,323,4820.5,782.5,11471.5,2016.5,29300,6.14,313.44,1.8,40.31,17225,376,241,36.85,14.8,2.8,1.5,106,166,8269,127195,,,,9275,77033,2196,20658,2294,20667.5,,,,,,,,383,304.5 -Intel Core i7-13700K,Raptor Lake,Raptor Lake-S,24MB + 30MB,,125,3400 ‑ 5400,16/24,10,x86,,439,UHD Graphics 770,~60,18153,11278,85748,3.66,52.98,303,4507.5,811.5,11713.5,2116,30745,6.19,317.81,2.31,170.22,12835,406,232,33.85,15.8,4,2.2,108,176.5,7061.5,111390,,,,8955,69210,2064,19217,2110,20190.5,2962,19249,,,,,,348,301 -AMD Ryzen 9 7945HX3D,Dragon Range-HX (Zen 4),"Dragon Range (Zen 4, Ryzen 7045)",16MB + 128MB,,55,2300 ‑ 5400,16/32,5,x86,,135,Radeon 610M,~64.2,,8478,70414,3.7,61.9,311,5600,755,13033,1935,32782,6.4,337.8,5.9,249.9,51122,,,36.4,23.4,3.8,2.5,95,150,7573,136201,,,,,,,,2133,19875,2916,16957,,,97066,332.3,367.9,480,328 -AMD Ryzen 9 7945HX,Dragon Range-HX (Zen 4),"Dragon Range (Zen 4, Ryzen 7045)",16MB + 64MB,,55,2500 ‑ 5400,16/32,0,x86,,339,Radeon 610M,~60.8,,8481,71582,3.65,64.29,307,5541,747,13308,1936,34202,6.4,337,4.9,158.7,,,,36.15,25.3,4,2.7,93,145.5,7379,140471,,,,,,1984,19315,2103,19583,2876,16316,,,95872.5,331.6,325,351,289 -AMD Ryzen Threadripper PRO 3975WX,Matisse,Threadripper,16MB + 128MB,,280,3500 ‑ 4200,32/64,7,x86,,1244,,~50.5,16923,5884,53924,2.19,52.2,201,7053,500,16464,1286,42744,9.55,714,3.63,24.28,6530,268,193,43,27,4.7,2.6,69.4,,5140,141386,,,,5764,81029,1306,29094,1285,28798,,,,,,,,198, -Intel Core i9-13980HX,Raptor Lake-HX,Raptor Lake-HX,32MB + 36MB,,55,1600 ‑ 5600,24/32,10,x86,,340,UHD Graphics 770,~60.7,19734,11940,85088,3.73,55.79,304.5,4717,807,11510,2110,30273,7.42,345.8,3.02,183.5,11438,374,198.05,31.6,18.4,4.9,2.5,106,190,6972,119244,,,,,,1987,22107,2099,20329,2881.5,17564,,,102620,328.04,399,337,306 -Intel Core i9-13950HX,Raptor Lake-HX,Raptor Lake-HX,32MB + 36MB,,55,1600 ‑ 5500,24/32,10,x86,,340,UHD Graphics 770,~62.8,19311,11424,80693,3.57,59.98,297,4529,801,10919,2096,28681,6.2,322.8,,,,,,31,,,,111,196,6754,116665,,,,,,2006,18486.5,2043,20036,2919.5,16927.5,,,103911,328.16,407,318.5,291 -Intel Core i9-13900HX,Raptor Lake-HX,Raptor Lake-HX,32MB + 36MB,,55,1600 ‑ 5400,24/32,10,x86,,340,UHD Graphics Xe 32EUs (Tiger Lake-H),~59.7,18036.5,11699.5,79299.5,3.66,52.32,295,4487,785.5,10548,2055,27844,6.21,315.13,2.6,215.69,12916,387.7,217.7,29.4,17,4.25,2.25,114,202,6892.5,114430,,,,8843,71143,1982,19027,2036,19982,2720,16522.5,,,104390,305.03,356.5,322,291 -AMD Ryzen 9 7900,Raphael (Zen4),"Raphael (Zen 4, Ryzen 7000)",12MB + 64MB,,65,3700 ‑ 5400,12/24,5,x86,,330,Radeon Graphics (Ryzen 7000),~55.7,19451,8339,60934,3.68,45.31,315,4020,762,9703,1966,24776,6.73,329.05,2.98,46.75,10154,355.5,207,31.2,21.5,3.1,2,125,199,7936,112881,,,,8861,65241,2096,17581,2203,17880,,,,,,,,366,302 -Intel Core i9-12900K,Alder Lake,Alder Lake-S,14MB + 30MB,,125,3200 ‑ 5200,16/24,10,x86,,765,UHD Graphics 770,~53.1,18752.5,9859,71819,3.5,45.62,289,4057,771.5,9935,2004.5,26125,7.05,347,3.66,192.8,11834,366.75,201,29.5,19.25,3.6,1.95,124.7,,6575.5,97315.5,,,,8629,63910.5,1947.5,17828,2005.5,17776,,,,,96769,206.7,,325, -Intel Core i5-14600K,Raptor Lake,Raptor Lake-R,20MB + 24MB,,125,3500 ‑ 5300,14/20,10,x86,,54,UHD Graphics 770,~56.6,18096,11396,75358,3.58,40.96,297,3640,790,9371,2064,24491,6.23,316.69,2.39,158.77,11491,411,209,28.6,19.5,3.4,1.8,134,223,6910,93235,,,,8904,64035,2004,17374,2017,17516,2879,17409,,,,,,354,301 -AMD Ryzen 9 7845HX,Dragon Range-HX (Zen 4),"Dragon Range (Zen 4, Ryzen 7045)",12MB + 64MB,,55,3000 ‑ 5200,12/24,0,x86,,344,Radeon 610M,~65.9,,,,,,295,4320,719,10492,1852,26876,,,,,,,,29.7,,,,117,185,7018,106033,,,,,,,,2008,15068,2729,12585,,,,308.27,,357,282 -AMD Ryzen 7 7700X,Raphael (Zen4),"Raphael (Zen 4, Ryzen 7000)",8MB + 32MB,,170,4500 ‑ 5400,8/16,5,x86,,440,Radeon Graphics (Ryzen 7000),~52.1,18115,8633,56024,3.71,36.06,315,3113.5,772.5,7462.5,1987,19088,6.35,322.8,2.15,61.15,14879,373.5,181.2,25.45,17.5,2.3,1.4,163,261,8074,85706.5,,,,8991,56909,2123,14215,2218,14131,,,,,,,,355,301 -AMD Ryzen 7 7700,Raphael (Zen4),"Raphael (Zen 4, Ryzen 7000)",8MB + 32MB,,65,3800 ‑ 5300,8/16,5,x86,,339,Radeon Graphics (Ryzen 7000),~51.1,18277,8345,53881,3.64,34.29,308,3047,750,7259,1930,18760,6.55,335.26,2.72,62.63,14860,368,174.95,25,15.9,2.3,1.5,166,266,7880,85260,,,,8753,55542,2078,13869,2161,13929,,,,,,,,352,295 -AMD Ryzen 9 5950X,Vermeer (Zen 3),Vermeer (Ryzen 5000),8MB + 64MB,,105,3400 ‑ 4900,16/32,7,x86,,1158,,~49.7,17656.5,6689.5,56640.5,3.08,47.83,266.5,4324,629,10061,1614,26017,7.24,361.5,4.23,58.45,12735.5,330,212,30.85,26,3.5,2.35,117.65,,6851.5,122978,,,,7118.5,60408.5,1654,15983,1651.5,16248,,,,,,,,289.5, -Intel Core i5-13600K,Raptor Lake,Raptor Lake-S,20MB + 24MB,,125,3500 ‑ 5100,14/20,10,x86,,416,UHD Graphics 770,~53.3,17627,10754.5,68879.5,3.47,42.29,287.5,3642,770.5,9241,2000.5,24221,6.53,331.36,2.52,174.89,10967,387.5,198.8,27.55,19.1,3.15,1.7,135,224,6377.5,89587,,,,8624.5,61014,1947.5,16566,1973,16670.5,,,,,,,,331,288 -Intel Core i7-13850HX,Raptor Lake-HX,Raptor Lake-HX,24MB + 30MB,,55,1500 ‑ 5300,20/28,10,x86,,345,UHD Graphics 770,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Ryzen 7 7800X3D,Raphael (Zen4),"Raphael (Zen 4, Ryzen 7000)",1KB + 96MB,,162,4200 ‑ 5000,8/16,5,x86,,253,Radeon Graphics (Ryzen 7000),~50,16892,8026,51950,3.43,33.48,281.5,2878.5,686,6804.5,1766.5,17387,7.09,337.57,2.44,62.73,16585,344,169.25,23.25,15.3,2.1,1.3,178,282.5,7823.5,80312.5,,,,9097,54840,1938,13888,1920,12715,2634,14288,,,,,,353,282 -Intel Core i9-12900,Alder Lake,Alder Lake-S,14MB + 20MB,,65,2400 ‑ 5100,16/24,10,x86,,710,UHD Graphics 770,~45.9,17464,8949,68729,3.16,38.96,262,3299,703,7179,1825,18628,,,2.67,211.8,10739,310,147.5,14.4,17.2,3.4,1.9,262.7,,5979,50152,,,,6991,36310,1638,8845,1656,8924,,,,,,,,269, -Intel Core i7-13700,Raptor Lake-S,Raptor Lake-S,24MB + 30MB,,65,2100 ‑ 5200,16/24,10,x86,,345,UHD Graphics 770,~57.2,17194,10840,82724,3.5,50.37,285,3692,739.5,9194,2008.5,25369,6.39,329.23,2.5,161.46,12289,393,224,27.25,22,3.8,2.1,144.5,250.5,6642.5,91604,,,,8714,67866,1925,18964,1983.5,17563.5,2761,15882,,,,341.33,,338,289.5 -Intel Core i9-12950HX,Alder Lake-HX,Alder Lake-S,14MB + 30MB,,55,1700 ‑ 5000,16/24,10,x86,,584,UHD Graphics 770,~58.4,,,,,,274,3107,727,7744,1885,20263,,,,,,,,22.5,,,,175,302,6197,77003,,,,,,1855,13908,1886,15229,,,,,94008,291.99,356,311,274 -Intel Core i9-12900HX,Alder Lake-HX,Alder Lake-S,14MB + 30MB,,55,1700 ‑ 5000,16/24,10,x86,,584,UHD Graphics 770,~53.8,17668,9509,64621,3.35,41.54,278,3566,739,8842.5,1912.5,23150,7.25,379.61,7.83,245.74,9993,313.7,185.5,26,17.4,3.2,1.7,148.6,267,6336,86541,,,,8182,58845.5,1848,16487.5,1906.5,16311.5,,,,77.4,95387,292.72,327,317.5,275 -Apple M3 Max 16-Core,,Apple M3,,,78,2748 ‑ 4056,16/16,3,ARM,,51,M3 Max 40-Core GPU,~70.8,,,,,,271,3264,494.5,6123.5,1959,24022,,,,,,,,,,,,216,195,,,,,,,,,,2324.5,22937.5,3126.5,21253.5,,,96362.5,310.1,561,421, -AMD Ryzen 9 3950X,Matisse (Zen 2),Matisse (Ryzen 3000 Desktop),8MB + 64MB,,105,3500 ‑ 4700,16/32,7,x86,,1487,,~41.1,,6102,53396,2.37,43.68,209,4002,520,9075,,,9.19,512,4.11,44.86,7409,265,168,15.8,10.8,3.6,2.3,125.8,,5340,99467,,,,5749,48962,1315,12976,1306,12363,,,,,,,,239, -Intel Core i7-13700HX,Raptor Lake-HX,Raptor Lake-HX,24MB + 30MB,,55,1500 ‑ 5000,16/24,10,x86,,345,UHD Graphics 770,~59.4,17038,,,,,272,3348.5,723,8062,1875,21516,,,,,,,,22.4,,,,157.5,267,6166,78076,,,,8059,57031,1788.5,15008.5,1845,14942,2593,14402,,,92283,295.42,335,309.5,270.5 -Intel Core i7-12700K,Alder Lake,Alder Lake-S,12MB + 25MB,,125,2700 ‑ 5000,12/20,10,x86,,770,UHD Graphics 770,~46.7,16827,9305,63484,3.29,38.38,272,3325,735.5,7800.5,1850.5,19784,7.35,387,2.66,171.2,10389,349.5,179,20.5,15.7,2.8,1.6,173.1,,6269.5,73438.5,,,,8133,55786,1840.5,13879,1911.5,14016,,,,,,241.28,,303.5, -Intel Core i9-13900HK,Raptor Lake-H,Raptor Lake-H,11.5MB + 24MB,,45,1900 ‑ 5400,14/20,10,x86,,345,Iris Xe G7 96EUs,~54.6,,,,,,279,2950,749,7542,1960,19704,,,,,,,,21.9,,,,,287,5864,77190,,,,,,1865,14628,1942,14985,,,,,,314.97,,297,279 -Intel Core Ultra 9 185H,Meteor Lake-H,Intel Meteor Lake-H,+ 24MB,,45,3800 ‑ 5100,16/22,7,x86,,6,Arc 8-Cores,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Core i9-13905H,Raptor Lake-H,Raptor Lake-H,11.5MB + 24MB,,45,1900 ‑ 5400,14/20,10,x86,,345,Iris Xe G7 96EUs,~55.5,,,,,,246,2857,639,7152,2020,20034,,,,,,,,21.2,,,,173,302,5520,69892,,,,,,1898,14690,1685,13707,2404,14212,,,,310.21,,301.5,265.5 -Intel Core i9-13900H,Raptor Lake-H,Raptor Lake-H,11.5MB + 24MB,,45,1900 ‑ 5400,14/20,10,x86,,345,Iris Xe G7 96EUs,~59.1,15361.5,,,,,280,2739,763,6958,1973.5,17856.5,,,,,,,,19.25,,,,193,329,6260.5,70425,,,,8409,50450,1802.5,13197.5,1967,13216,2645,12611,,,100022,310.6,348,319,285 -Apple M3 Max 14-Core,,Apple M3,,,78,2748 ‑ 4056,14/14,3,ARM,,51,M3 Max 30-Core GPU,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Core Ultra 7 165H,Meteor Lake-H,Intel Meteor Lake-H,+ 24MB,,28,3800 ‑ 5000,16/22,7,x86,,6,Arc 8-Cores,~57.1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1853,11733,2513,13288,,,,,,, -Intel Core i7-13800H,Raptor Lake-H,Raptor Lake-H,11.5MB + 24MB,,45,1800 ‑ 5200,14/20,10,x86,,345,Iris Xe G7 96EUs,~61.5,,,,,,287,2765,776,6714,2017,17591,,,,,,,,20,,,,191,337,6310,70500,,,,,,,,1972,12880,2766,12876,,,,,,314,283 -AMD Ryzen 9 5900X,Vermeer (Zen3),Vermeer (Ryzen 5000),6MB + 64MB,,105,3700 ‑ 4800,12/24,7,x86,,1163,,~47.5,16438,6828,52076,3.14,41.78,250,2695,598,6233,1527,16262,7.19,360.5,,,13361,335,191,24.9,21.2,2.9,1.8,154.2,,6582,90443,,,,7034,52798.5,1588,12813,1604,11765,,,,,,218.1,,279, -Intel Core i9-10980XE,Cascade Lake,Core i9 (Desktop),18MB + 24.8MB,,165,3000 ‑ 4600,18/36,14,x86,,1535,,~46.7,14129,7847,59479,2.36,38.39,208,3744,489.5,8532.5,,,7.68,410,2.81,47.4,7172,215,157.5,27,18.2,3.2,1.9,130,,5370.5,93076.5,38219,4578,56351,5794.5,54222.5,1239.5,15743.5,1260,16480,,,,97.5,39564,,77.3,239, -Intel Core i9-9980XE,Sky Lake-X,Core i9 (Desktop),18MB + 24.8MB,,165,3000 ‑ 4400,18/36,14,x86,,1811,,~40.2,13495,7323,58001,2.22,38.57,197.5,3735.5,461.5,8857,,,8.23,433,2.74,46.52,6879,206.5,156,26.05,18.1,3.2,1.9,136.5,,5110,93017.5,,,,5492.5,55149.5,1217.5,16331,1200,15780,,,,,,,,, -Intel Core i7-12850HX,Alder Lake-HX,Alder Lake-S,14MB + 25MB,,55,1500 ‑ 4800,16/24,10,x86,,584,UHD Graphics 770,~51.6,,,,,,260.5,2679,697.5,6490.5,1720.5,16301.5,,,,,,,,17.25,,,,193,317,5762,61678.5,,,,,,1718,11363,1782,12302,,,,,,261.94,,284.5,232 -Intel Core i7-12800HX,Alder Lake-HX,Alder Lake-S,14MB + 25MB,,55,1500 ‑ 4800,16/24,10,x86,,584,UHD Graphics 770,~51.4,,,,,,260,3383,676,8564,1812,22456,,,,,,,,24.9,,,,153.1,,5624,76947,,,,,,1726,14093,1759,14213,,,,,,277.91,,309, -Intel Core Ultra 7 155H,Meteor Lake-H,Intel Meteor Lake-H,+ 24MB,,28,3800 ‑ 4800,16/22,7,x86,,6,Arc 8-Cores,~46.6,,9919,56242,3.07,29.98,257,2362,673.5,5455,1779,15013,7.05,400.29,,,7084,282.57,128.04,16.5,10.2,1.7,0.94,219.5,385.5,5223.5,62093.5,,,,6838,43897,1684,11684,1776.5,12014.5,2425,12504,,,,,,293,263 -Intel Core i9-12900HK,Alder Lake-H,Alder Lake-P,11.5MB + 24MB,,45,1800 ‑ 5000,14/20,10,x86,,710,Iris Xe G7 96EUs,~46.9,16756,8561,53020,2.99,28.22,257,2845,664,7104.5,1789,18621.5,7.87,409.92,3.38,201.06,8480,288.2,136.65,20.55,15.2,2.45,1.4,178.4,,5622.5,72874,,,,7970,50701,1853.5,13647.5,1870,13717,,,,107.05,94352,267.75,274,299,249 -Intel Core i9-12900H,Alder Lake-H,Alder Lake-P,11.5MB + 24MB,,45,1800 ‑ 5000,14/20,10,x86,,710,Iris Xe G7 96EUs,~44.1,12799,8235,47831,2.96,25.96,265,2586,715,6060,1863,15987,7.78,409.19,4.1,196.5,7897,254.75,111.4,18.7,9.7,1.7,1,201,375.5,5881,64918,,,,7199,35978.5,1673,10985,1830.5,12321.5,2265,10442,,,86645,263,241,297.5,264 -Intel Core i7-13705H,Raptor Lake-H,Raptor Lake-H,11.5MB + 24MB,,45,1800 ‑ 5000,14/20,10,x86,,345,Iris Xe G7 96EUs,~51.7,,10476,61674,3.21,31.6,273.5,2868.5,727.5,7198.5,1874,18765,6.9,680.2,26.3,1258.7,,,,20.1,12.7,2.7,1.5,181,322,5999.5,75165,,,,,,,,1841,14322.5,2588,14502,,,91471,287.85,314.5,303.5,267.5 -Intel Core i7-13700H,Raptor Lake-H,Raptor Lake-H,11.5MB + 24MB,,45,1800 ‑ 5000,14/20,10,x86,,345,Iris Xe G7 96EUs,~49.8,15415,10487,65623,3.28,33.82,268,2515,717,6051,1854,15609,6.8,371.9,2.94,208.8,7559,340.5,167.5,16.9,16.1,2.9,1.5,217,386,6014,61921,,,,8083,50819,1815,13200,1829,12567,2610,12989,,,92979,292.9,332,299,267.5 -Intel Core i5-13400F,Raptor Lake-S,Raptor Lake-S,9.5MB + 20MB,,65,2500 ‑ 4600,10/16,10,x86,,345,,~43.5,13989,8689,51113,3.06,27.46,252,2364,672,6091,1744,15911,8.03,420.48,3.27,367.88,8602,314.5,136.85,19.2,12.2,2,1.1,206,336,5743,60048,,,,7684,43856,1721,12009,1792,12095,,,,,,,,294,254 -Intel Core i5-13400,Raptor Lake-S,Raptor Lake-S,9.5MB + 20MB,,65,2500 ‑ 4600,10/16,10,x86,,345,UHD Graphics 730,~43.7,13632,8721,51095,3.1,27.36,257,2358,688,6135,1786,15953,8.03,427.16,3.47,452.31,7979,311,135.8,19.1,11.8,2,1.2,206,336,5829,59510,,,,7683,42509,1706,11801,1795,12107,,,,,,,,306,251 -Intel Core i7-12700F,Alder Lake,Alder Lake-S,12MB + 25MB,,65,3300 ‑ 4900,12/20,10,x86,,710,,~43.9,15823,9146,56067,3.28,33.5,271,2610,726,5786,1898,15291,7.39,386.35,2.95,128.31,8695,296.5,118.55,17.7,3.3,2.8,1.5,212,,6145,61218,,,,6698,39852,1557,10249,1590,10126,,,,,94804,295.07,,281,271 -Intel Core i7-12700,Alder Lake,Alder Lake-S,12MB + 25MB,,65,3300 ‑ 4900,12/20,10,x86,,710,UHD Graphics 770,~49,15390,9171,60892,3.28,36.92,272,3151,731,8338,1894,21751,7.53,400.41,2.9,272.82,9328,347,172.35,25.5,14.5,2.7,1.5,151,242,6292,78331,,,,8059,52676,1845,14883,1924,14961,,,,,,,,314,268 -Intel Core i5-12600K,Alder Lake,Alder Lake-S,9.5MB + 20MB,,125,2800 ‑ 4900,10/16,10,x86,,770,UHD Graphics 770,~44,15722,9381,55462,3.31,30.01,275,2555,734,6692,1907,17491,7.41,363.2,4.73,202.7,6239,333.5,148,30.1,12.8,2.2,1.3,189.5,,5944,64260,,,,8223,46557,1821,12746,1904,12797,,,,,,,,293, -AMD Ryzen 5 7600X,Raphael (Zen4),"Raphael (Zen 4, Ryzen 7000)",6MB + 32MB,,105,4700 ‑ 5300,6/12,5,x86,,445,Radeon Graphics (Ryzen 7000),~49,17290.5,8480,49430,3.71,28.32,314,2517,761,5966,1965,15236,7.42,367.07,2.76,78.81,16178,367,147.8,21,13.2,1.8,1.1,205,328,8058,69291,,,,9021,47694,2126,11982,2217,12003,,,,,,,,370.5,298 -AMD Ryzen 5 7600,Raphael (Zen4),"Raphael (Zen 4, Ryzen 7000)",6MB + 32MB,,65,3800 ‑ 5100,6/12,5,x86,,335,Radeon Graphics (Ryzen 7000),~45.1,15993,8122,46166,3.51,26.4,298,2339,724,5487,1852,12735,6.82,351.04,3.06,83.81,14038,347,137.8,19.5,12.5,1.6,1.1,219,352,7566,64613,,,,8453,44221,2005,10745,2088,11095,,,,,,,,345, -Intel Core Ultra 5 135H,Meteor Lake-H,Intel Meteor Lake-H,+ 18MB,,28,3600 ‑ 4600,14/18,7,x86,,6,Arc 7-Cores,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Ryzen 9 8945HS,Hawk Point-HS (Zen 4),"Hawk Point (Zen 4/4c, Ryzen 8040)",8MB + 16MB,,45,4000 ‑ 5200,8/16,4,x86,,9,Radeon 780M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Ryzen 9 7940HS,Phoenix-HS (Zen 4),"Phoenix (Zen 4, Ryzen 7040)",8MB + 16MB,,35,4000 ‑ 5200,8/16,4,x86,,344,Radeon 780M,~48.4,15715.5,7963,49845,3.46,30.88,285,2664.85,702.5,6659,1792,17124,7.06,532.8,2.7,66.8,7439,304.5,150.8,20.8,14.8,2.1,1.4,188,303,6652,70050,,,,7657,46087.5,1898,11382,1981,11564,2591,12011,,,89067,298.74,302,315,262 -AMD Ryzen 9 PRO 7940HS,Phoenix-HS (Zen 4),"Phoenix (Zen 4, Ryzen 7040)",8MB + 16MB,,35,4000 ‑ 5200,8/16,4,x86,,185,Radeon 780M,~56.6,,,,,,263.5,2539,653,6195.5,1681,15928.5,,,,,,,,18.7,,,,203,325,6029.5,64558,,,,,,,,1857,10967.5,2472,11561.5,,,77466,262.2,263,297,242 -AMD Ryzen 7 7745HX,Dragon Range (Zen 4),"Dragon Range (Zen 4, Ryzen 7045)",8MB + 32MB,,55,3600 ‑ 5100,8/16,0,x86,,344,Radeon 610M,~58,,,,,,294,2978,717,7072,1846,18060,,,,,,,,23.2,,,,174,277,7244,75557,,,,,,1971,12179,2040,12378,,,,,,326.92,,345,283 -AMD Ryzen 7 8845HS,Hawk Point-HS (Zen 4),"Hawk Point (Zen 4/4c, Ryzen 8040)",8MB + 16MB,,45,3800 ‑ 5100,8/16,4,x86,,9,Radeon 780M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Core Ultra 5 125H,Meteor Lake-H,Intel Meteor Lake-H,+ 18MB,,28,3600 ‑ 4500,14/18,7,x86,,6,Arc 7-Cores,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Core i7-13650HX,Raptor Lake-HX,Raptor Lake-HX,+ 24MB,,55,1900 ‑ 4900,14/20,10,x86,,345,UHD Graphics Xe 16EUs (Tiger Lake-H),~54,16051,10616,68755,3.31,37.44,274,3141.5,719.5,8010,1868.5,20999,6.7,370.4,,,8422,345.8,175.1,23.15,16.7,2.9,1.6,161.5,280.5,5981.5,78884.5,,,,7895,52742,,,1845,14196,,,,,,,,312,277 -AMD Ryzen 7 8840HS,Hawk Point-HS (Zen 4),"Hawk Point (Zen 4/4c, Ryzen 8040)",8MB + 16MB,,28,3300 ‑ 5100,8/16,4,x86,,9,Radeon 780M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Ryzen 7 7840HS,Phoenix-HS (Zen 4),"Phoenix (Zen 4, Ryzen 7040)",8MB + 16MB,,35,3800 ‑ 5100,8/16,4,x86,,344,Radeon 780M,~48.5,15667,7709,50264,3.33,30.25,279,2608,690,6509,1779,16706,8.77,724.41,2.63,72.82,7699,298,149.3,20.4,14.9,2.1,1.3,192,310,6640,70243,,,,8148,48814,1910.5,11662,1960,11803,2671.5,13100,,,91466.5,303.71,298.5,322,263 -AMD Ryzen 7 7840S,Phoenix-HS (Zen 4),"Phoenix (Zen 4, Ryzen 7040)",8MB + 16MB,,35,3800 ‑ 5100,8/16,4,x86,,344,Radeon 780M,~47.2,14547,7579,45931,3.33,28.61,274,2222.84,685,5912,1761,15102,7.4,653.4,10.2,341.9,20369,,,18.6,12.9,1.9,1.2,213,347,6328,64696,,,,,,,,1939,11288,2605,12598,,,91068,316.3,280.6,296,247.5 -AMD Ryzen 7 PRO 7840HS,Phoenix-HS (Zen 4),"Phoenix (Zen 4, Ryzen 7040)",8MB + 16MB,,35,3800 ‑ 5100,8/16,4,x86,,185,Radeon 780M,~58.3,,,,,,276,2519,693,6235,1774,15863,,,,,,,,19.9,,,,201,325,6493,70387,,,,,,,,1953,12039,2528.5,12858,,,,,,311,222 -AMD Ryzen 9 6980HX,Rembrandt-H (Zen 3+),Rembrandt (Zen 3+),4MB + 16MB,,45,3300 ‑ 5000,8/16,6,x86,,710,Radeon 680M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Core i7-12800H,Alder Lake-H,Alder Lake-P,11.5MB + 24MB,,45,1800 ‑ 4800,14/20,10,x86,,710,Iris Xe G7 96EUs,~57.6,,,,,,265,2222,706,5731,1828,15283,,,,,,,,16.8,,,,222,337,5820,62100,,,,,,,,1771,12434,,,,,91965,254.5,311,294.5,265 -Apple M3 Pro 12-Core,,Apple M3,,,27,2748 ‑ 4056,12/12,3,ARM,,51,M3 Pro 18-Core GPU,~71.3,,,,,,,2163,,,1977,15106,,,,,,,,,,,,327,314,,,,,,,,,,2327,15298,3138,15480,,,96501,297.2,555,427, -Apple M3 Pro 11-Core,,Apple M3,,,27,2748 ‑ 4056,11/11,3,ARM,,51,M3 Pro 14-Core GPU,~66.6,,,,,,281,1913,502,3529,1942,13315,,,,,,,,,,,,365,355,,,,,,,,,,2331,13312,3113,14412,,,98732,307.5,549,431, -Intel Core i7-12650HX,Alder Lake-HX,Alder Lake-S,11.5MB + 24MB,,55,1500 ‑ 4700,14/20,10,x86,,584,UHD Graphics 770,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Core i5-13600HX,Raptor Lake-HX,Raptor Lake-HX,+ 24MB,,55,1900 ‑ 4800,14/20,10,x86,,345,UHD Graphics 770,~65,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1912.5,15135,2920,15910,,,,,,, -Intel Core i5-13500HX,Raptor Lake-HX,Raptor Lake-HX,+ 24MB,,55,1800 ‑ 4700,14/20,10,x86,,345,UHD Graphics Xe 16EUs (Tiger Lake-H),~49.3,14596,8980,58608,3.14,33.7,252,2863,679,7021,1730.5,18334,7.7,408,10.7,400.2,,,,20.3,14.6,2.8,1.5,193,336,5728,71243,,,,,,,,1730,13581,2478,13404,,,90065,308.43,356.7,293,243 -AMD Ryzen 9 3900X,Matisse (Zen 2),Matisse (Ryzen 3000 Desktop),6MB + 64MB,,105,3800 ‑ 4600,12/24,7,x86,,1622,,~37.7,14889,6018.5,45539,2.36,33.88,207,3049,514,6910,1370,19000,9.14,511,2.69,64.85,7534,267.5,147,20.75,10.75,2.9,1.7,162.3,,5316,80935,,,,5680,43350,1247,11135,1250,10498,,,,,,,,225, -Qualcomm Snapdragon X Elite,Oryon,,,,45,3800 ‑ 4300,12/12,4,ARM,,50,SD X Elite Adreno GPU,~72.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2871.5,14647.5,,,,,,, -Apple M2 Max,,Apple M2,36MB + 48MB,,79,2424 ‑ 3696,12/12,5,ARM,,332,M2 Max 38-Core GPU,~60.7,,,,,,236,2084,455.5,4064.5,1643.5,14752.5,,,,,,,,,,,,333,326,,,,,,,,,,1967,15373,2692,14863,,,77676,246.45,423,404.5,259 -Apple M2 Pro,,Apple M2,36MB + 24MB,,,2424 ‑ 3504,12/12,5,ARM,,332,M2 Pro 19-Core GPU,~57.3,,,,,,230,2069,446.5,4031,1647.5,14794.5,,,,,,,,,,,,,331,,,,,,,,,,1957,15010,2663,14568,,,76205,239,403,386,253 -Intel Core i7-13620H,Raptor Lake-H,Raptor Lake-H,9.5MB + 24MB,,45,1800 ‑ 4900,10/16,10,x86,,345,UHD Graphics 64EUs,~46.4,13632,10181,54809,3.27,27.06,263,2349,711,5828,1860,15339,6.74,379.96,3.14,1021,8682,345.36,138.15,16.6,13.8,2.3,1.3,223,391,5890,59430,,,,7977,42882,1767,11205,1831,11430,2596.5,12817,,,,,,305.5,267 -Intel Core i7-12700H,Alder Lake-H,Alder Lake-S,11.5MB + 24MB,,45,1700 ‑ 4700,14/20,10,x86,,710,Iris Xe G7 96EUs,~48,14044,8875.5,54647,3.06,27.6,256,2605,688,6087,1780.5,16338,7.92,428.65,3.3,236.13,8231,297.5,145.75,16.7,14.8,2.5,1.4,214,391.5,5761.5,61958.5,,,,7421,46409,1695,11805,1755,12125,2486,13118,,93.6,88214.5,261.2,278,297.5,258 -AMD Ryzen 7 5800X3D,Vermeer (Zen3),Vermeer (Ryzen 5000),4MB + 96MB,,105,3400 ‑ 4500,8/16,7,x86,,591,,~38.5,14479,6008,42010,2.77,27.19,241,2413,566,5479,1452,14317,8.11,385.46,3.65,92.57,14431,292,138.25,19.1,13.8,1.9,1.2,212.6,,6799,69518,,,,7187,43687,1526,10836,1622,10856,,,,,,,,, -AMD Ryzen 7 5800X,Vermeer (Zen 3),Vermeer (Ryzen 5000),4MB + 32MB,,105,3800 ‑ 4700,8/16,7,x86,,1163,,~44.2,15873,6835,45548,3.09,29.31,265.5,2608.5,624.5,6074.5,1574.5,15476,7.3,365.8,3.04,86.1,15604,339,152,20.3,15,2,1.3,196.9,336,6906.5,72113.5,,,,7333,44131,1673,11246,1683,10723.5,,,,,,,,301.5,245 -Intel Core i9-11900K,Rocket Lake,Rocket Lake,4MB + 16MB,,125,3500 ‑ 5300,8/16,14,x86,,959,UHD Graphics Xe 750 32EUs,~44,,10545,62024,3.1,26.76,255,2379,633,5306,1636,14747,6.27,331.4,3.98,77.9,9030,309.5,137,18.2,13,1.9,1.2,211.85,428,6347,59658.5,,,,7976,42329,1863,11008,1787.5,10483,,,,,,,,283.5,247 -Intel Core i7-1370P,Raptor Lake-P,Raptor Lake-P,11.5MB + 24MB,,28,1400 ‑ 5200,14/20,10,x86,,345,Iris Xe G7 96EUs,~54.1,,,,,,271,2272,719.5,5113.5,1872.5,12968.5,,,,,,,,12.08,,,,317.5,609,6413.5,51639,,,,,,1939,11474,1887,10353,2644,12891,,,,308.91,,296,285 -AMD Ryzen 9 PRO 6950H,Rembrandt-H (Zen 3+),Rembrandt (Zen 3+),4MB + 16MB,,45,3300 ‑ 4900,8/16,6,x86,,604,Radeon 680M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Ryzen 9 6900HX,Rembrandt-H (Zen 3+),Rembrandt (Zen 3+),4MB + 16MB,,45,3300 ‑ 4900,8/16,6,x86,,710,Radeon 680M,~40,13274,6545.5,39524,2.92,23.88,249,2231,610,5306,1558,13497,7.86,661.86,3.77,104.79,6875,255.5,114.45,16.95,11.9,1.7,1.1,231,407,5817,61333,,,,6698,39852,1557,10144,1589,9647,,,,,,243.02,,286,227 -Intel Core i9-10900K,Comet Lake,Comet Lake,2.5MB + 20MB,,125,3700 ‑ 5300,10/20,14,x86,,1304,UHD Graphics 630,~39.2,,8127,59368,2.56,29.03,217,2533,524,6181,1374,15821,7.2,403.4,3.58,66.3,9739,289.5,149,19.8,14.6,2.6,1.5,179,,5811,69987,,,,6126,41647,1385,11060.5,1428,11393,,,,,,,,255, -Intel Core i5-13450HX,Raptor Lake-HX,Raptor Lake-HX,+ 20MB,,55,1800 ‑ 4600,10/16,10,x86,,345,UHD Graphics Xe 16EUs (Tiger Lake-H),,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Core i7-12650H,Alder Lake-H,Alder Lake-P,9.5MB + 24MB,,45,1700 ‑ 4700,10/16,10,x86,,710,UHD Graphics 64EUs,~45.2,13453,8898,44608,3.14,22.08,253,1893,680,4772,1770,12326,7.83,414.82,6.99,410.29,8199,282.3,111.1,14.5,10.1,1.8,1.1,267,449,5674,49673,,,,7600,41235,1732,10303,1772,10126,2429,10580,,86,87864,265.07,278.5,299,251 -Intel Core i9-11900KB,Tiger Lake-H,Tiger Lake,10MB + 24MB,,65,3300 ‑ 5300,8/16,10,x86,,914,UHD Graphics Xe 32EUs (Tiger Lake-H),~37.4,14961,9538,50665,2.84,22.07,247,2027,629,4644,1621,11726,6.66,343.2,3.42,102.2,9584,272.5,106,14.4,11.6,1.7,1.1,262.7,,5979,50152,,,,6991,36310,1638,8845,1656,8924,,,,,,,,269, -AMD Ryzen 9 3900,Matisse (Zen 2),Matisse (Ryzen 3000 Desktop),6MB + 64MB,,65,3100 ‑ 4300,12/24,7,x86,,1528,,~38.2,13817,5700,44191,2.22,30.96,197,2804,490,6321,,,9.6,547,,,7145,255.5,131.9,18.9,10.4,2.4,1.6,179,,5134,75612,,,,5449,40720,1258,10695,1246,10190,,,,,,,,227, -Intel Core i9-10850K,Comet Lake-S,Comet Lake,2.5MB + 20MB,,125,3600 ‑ 5200,10/20,14,x86,,1205,UHD Graphics 630,~38.7,,6829,58453,2.45,28.14,215,2457,511,5961,1314,15538,7.59,419.8,2.67,68.1,9424,285.5,146.5,20.3,14.5,2.5,1.5,181.2,,5914,70932,,,,6425,44146,1412,11426,1401,11436,,,,,,,,253, -AMD Ryzen 7 5700X,Vermeer (Zen 3),Vermeer (Ryzen 5000),4MB + 32MB,,65,3400 ‑ 4600,8/16,7,x86,,620,,~42.1,14862,6527,42876,2.94,26.45,253,2329,595,5405,1499,13184,9.47,460.69,3.39,89.63,12478,305,134.7,17.1,13.4,1.9,1.2,221,374,6522,65777,,,,6928,37730,1587,9214,1647,9353,2186,9331,,,,,,310,236 -Intel Core i7-11700K,Rocket Lake,Rocket Lake,4MB + 16MB,,125,3600 ‑ 5000,8/16,14,x86,,959,UHD Graphics Xe 750 32EUs,~44.3,16388,9621,58342,2.87,25.55,240,2299,588,5361,1558,14281,20.2,685,4.8,,,292.5,128,16.3,12.7,1.9,1.2,221,,6157,57129,,,,,,,,1765.5,10786.5,,,,124.2,71212,196.9,199.1,254, -AMD Ryzen 7 5700G,Cezanne (Zen 3),"Cezanne (Zen 3, Ryzen 5000)",4MB + 16MB,,65,3800 ‑ 4600,8/16,7,x86,,976,Vega 8,~39.2,14324,6196,38826.5,2.86,23.58,242.5,2107,584,5015.5,1494,12830.5,7.8,415.27,4.33,94.57,7680.5,273.75,123.4,15.8,10.5,1.6,1.05,232.85,,5813.5,59702,,,,6630,34402.5,1521.5,8684.5,1579,8681,,,,55.3,74010,225,217.2,289.5, -AMD Ryzen 7 PRO 5750G,Cezanne PRO (Zen 3),"Cezanne (Zen 3, Ryzen 5000)",4MB + 16MB,,65,3800 ‑ 4600,8/16,7,x86,,927,Vega 8,~35.5,,6432,37998,2.87,22.22,241,1956,585,4782,1500,12157,7.7,406.94,3.69,96.77,7011,249.5,113.15,14.4,11.1,1.6,1,245,,5682,57184,,,,6440,33145,1493,8361,1561,8396,,,,,,,,276, -Apple M1 Max,,Apple M-Series,28MB + 48MB,,,2060 ‑ 3220,10/10,5,ARM,,788,M1 Max 32-Core GPU,~48.2,,,,,,200,1691,395,2750,1533,12386,,,,,,,,,,,,189,,,,,,,,,,,1782,12697,,,,,68029,214.5,282,360, -Apple M2 Pro 10-Core,,Apple M2,36MB + 24MB,,,2424 ‑ 3696,10/10,5,ARM,,332,M2 Pro 16-Core GPU,~57.2,,,,,,231,1664,449,3235,1643,11811,,,,,,,,,,,,415,435,,,,,,,,,,1936.5,12131.5,,,,,75471,234.8,395,391,250 -Apple M1 Pro,,Apple M-Series,28MB + 24MB,,,2064 ‑ 3220,10/10,5,ARM,,788,M1 Pro 16-Core GPU,~52.8,,,,,,209,1690,393,2721,1534,12370,,,,,,,,,,,,183.3,,,,,,,,,,,1768,12499,2409,12440,,75.6,66203,213.5,276,342, -AMD Ryzen 9 6980HS,Rembrandt-HS (Zen 3+),Rembrandt (Zen 3+),4MB + 16MB,,35,3300 ‑ 5000,8/16,6,x86,,710,Radeon 680M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Ryzen 9 6900HS,Rembrandt-H (Zen 3+),Rembrandt (Zen 3+),4MB + 16MB,,35,3300 ‑ 4900,8/16,6,x86,,710,Radeon 680M,~41.8,14208,6404.5,39960,2.95,24.75,245,2161,612,5152,1554,13445,8.99,758.26,5.49,116.82,6488,265.5,123.6,16.2,11.1,1.65,1.08,227,382,5805,62006,,,,6476,39091,1502,9261,1537,9224,,,,106.6,73797,229.25,227.7,281,197.4 -AMD Ryzen 9 PRO 6950HS,Rembrandt-HS (Zen 3+),Rembrandt (Zen 3+),4MB + 16MB,,35,3300 ‑ 4900,8/16,6,x86,,604,Radeon 680M,~34.7,,6266,36583,2.82,22.13,239,1913,591,4577,1514,11515,7.2,366,8.4,252,5970,222,103,12.8,11.7,1.6,1.02,264,,5516,49474,,,,6351,31423,1522,8033,1549,7664,,,,,,,,274, -Intel Core i9-10910,Comet Lake-S,Comet Lake,2.5MB + 20MB,,125,3600 ‑ 5000,10/20,14,x86,,1304,UHD Graphics 630,~39.5,,8131,57842,2.44,25.57,215,2302,501,5196,,,7.6,432.5,,,8613,,,16.8,,,,208,,5690,60747,,,,,,,,1381,10244,,,,,55976,203.1,161,236, -AMD Ryzen 7 6800H,Rembrandt-H (Zen 3+),Rembrandt (Zen 3+),4MB + 16MB,,45,3200 ‑ 4700,8/16,6,x86,,710,Radeon 680M,~42.2,13958,6424.5,39436.5,2.87,24.35,243,2151,598.5,5076.5,1526.5,12832,9.13,729,11.37,414.92,14392,266.3,129.5,16.15,9.6,1.6,1.04,236,390,5768,58798,,,,6477,36919,1510,9345,1551.5,9388.5,,,,105.9,75542,242.34,234.5,281,226.5 -AMD Ryzen 7 PRO 6850H,Rembrandt-H (Zen 3+),Rembrandt (Zen 3+),4MB + 16MB,,45,3200 ‑ 4700,8/16,6,x86,,604,Radeon 680M,~35.6,11620,5791,34412,2.6,21.32,205.1,2085.5,576,4887,1480,12393,0.94,800.35,3.72,103.58,5263,222.48,104.13,14.3,9.1,1.01,1,241.5,469.5,5417,54444.5,,,,,,,,1477.5,8472,,,,,,,,232,179.55 -Intel Core i9-11980HK,Tiger Lake-HK,Tiger Lake,10MB + 24MB,,55,3300 ‑ 5000,8/16,10,x86,,948,UHD Graphics Xe 32EUs (Tiger Lake-H),~40.7,,9626,52116,2.76,21.06,230,2152,594,4568.5,1559,10923,6.82,350,7.47,243.3,,,,15.8,,,,256,,5668,53426,,,,,,,,1627,9813,2250,9970,,,72523,198.75,211.1,279, -AMD Ryzen 9 5980HX,Cezanne-HX (Zen 3),"Cezanne (Zen 3, Ryzen 5000)",4MB + 16MB,,54,3300 ‑ 4800,8/16,7,x86,,1067,Vega 8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Core i9-11900H,Tiger Lake-H,Tiger Lake,10MB + 24MB,,45,2500 ‑ 4900,8/16,10,x86,,948,UHD Graphics Xe 32EUs (Tiger Lake-H),~51.9,,,,,,241,2148,608,4878,1580.5,12143.5,,,,,,,,15,,,,243,479,5795,53205,,,,,,,,1632,9628,2355,9401,,,,,,273,227 -Intel Core i5-12600HX,Alder Lake-HX,Alder Lake-S,10MB + 18MB,,55,1800 ‑ 4600,12/16,10,x86,,584,UHD Graphics 770,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Ryzen 9 5900HX,Cezanne-H (Zen 3),"Cezanne (Zen 3, Ryzen 5000)",4MB + 16MB,,45,3300 ‑ 4600,8/16,7,x86,,1072,Vega 8,~40.9,14253.5,6409,40114,2.84,24.71,240,2106,578.5,4978,1488,12845,7.89,415.58,3.46,98.18,7061,275.25,120.23,15.55,11.1,1.75,1.15,243,434,5750,58664,,,,6350.5,33335.5,1485,8400,1538.5,8462,,,,117.65,71000,191.8,206.1,279,218.5 -Intel Core i7-11700,Rocket Lake,Rocket Lake,4MB + 16MB,,65,2500 ‑ 4900,8/16,14,x86,,759,UHD Graphics 750,~36.4,14738,9493,51493,2.77,19.84,233,1767,579,3986,1529,10287,6.87,387.73,4.19,115.52,5962,267.2,93.1,12.6,12,1.8,1.1,295,,5810,44752,,,,7173,37795,1677,9706,1681,9760,,,,,,,,256, -Intel Core i5-12600H,Alder Lake-H,Alder Lake-P,10MB + 18MB,,45,2000 ‑ 4500,12/16,10,x86,,710,Iris Xe G7 80EUs,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Ryzen Threadripper 1950X,ZEN,Threadripper,8MB + 32MB,,180,3400 ‑ 4200,16/32,14,x86,,2318,UHD Graphics 750,~31.6,,4754,41814,1.73,23.13,159,2997,410,6700,,,10.66,633,3.34,55.1,4150,189.6,134.3,16.9,19,2.9,1.8,163,,,,,,,4304,28877,1029,,1029,11237,,,,,,,,, -Intel Core i5-13600H,Raptor Lake-H,Raptor Lake-H,10MB + 18MB,,45,2100 ‑ 4800,12/16,10,x86,,345,Iris Xe G7 80EUs,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Core i5-13505H,Raptor Lake-H,Raptor Lake-H,10MB + 18MB,,45,1900 ‑ 4700,12/16,10,x86,,345,Iris Xe G7 80EUs,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Core i5-13500H,Raptor Lake-H,Raptor Lake-H,10MB + 18MB,,45,1900 ‑ 4700,12/16,10,x86,,345,Iris Xe G7 80EUs,~44.2,14693.5,9664,53786,3.1,28.34,252,2317.5,684.5,5395,1779,14085.5,7.1,340.36,3.27,225.42,7325,336,132.2,15.8,13.3,2.2,1.2,238,420,5653,52630,,,,7706.5,42655.5,1708.5,11350.5,1743,11099,2446,11828,,,,,,273,238 -Intel Core i5-12500H,Alder Lake-H,Alder Lake-P,10MB + 18MB,,45,1800 ‑ 4500,12/16,10,x86,,710,Iris Xe G7 80EUs,~49.7,13126,,,,,242.5,2112,652.5,5090.5,1685.5,13461,,,,,,,,15.3,,,,238,426,5377,51984.5,,,,,,1636,10203,1636.5,10272,2279.5,9891.5,,,83229,254.5,296,272,240 -AMD Ryzen 9 5980HS,Cezanne-HS (Zen 3),"Cezanne (Zen 3, Ryzen 5000)",4MB + 16MB,,35,3000 ‑ 4800,8/16,7,x86,,1072,Vega 8,~40,,,,,,243,2083,602.5,4651,1529,12629,,,3.47,109.7,,,,15.2,,,,245.6,,5623,57319,,,,6295,33630,1508,8649,1537,8620,,,,,66881,179.5,,279, -Intel Core i7-1360P,Raptor Lake-P,Raptor Lake-P,10MB + 18MB,,28,1600 ‑ 5000,12/16,10,x86,,345,Iris Xe G7 96EUs,~44.5,12800.5,10473,51246,3.26,24.69,258,1860,687,4132.5,1809,10688.5,6.78,383.28,3.89,304.68,5759,296.5,110.68,11.3,12.4,2.05,1.2,324,585,5742.5,43043.5,,,,7635,37274,1773,10000.5,1824,9967,2546,10956.5,,,83850,254.1,307.5,303,263 -Intel Core i7-1280P,Alder Lake-P,Alder Lake-P,11.5MB + 24MB,,28,1300 ‑ 4800,14/20,10,x86,,710,Iris Xe G7 96EUs,~43.5,6579,8881,46007,3.07,25.17,238,2112,629,4677.5,1651,11666,7,366,34,1168,7082,,,12.9,11.8,2.1,1.2,285,537,5540,49572,,,,7522,40196,1694,10537,1746,11191,,,,95.5,84578.5,244.65,251,286,248.5 -Intel Core i9-11950H,Tiger Lake-H,Tiger Lake,10MB + 24MB,,45,2600 ‑ 5000,8/16,10,x86,,948,UHD Graphics Xe 32EUs (Tiger Lake-H),~47.2,,,,,,242.5,1954,619.5,4664.5,1591,12206.5,,,,,,,,14.2,,,,254,,5773,50060,,,,,,,,1631,7969,,,,,74632.5,208.3,211.5,272.5, -Intel Xeon W-11955M,Tiger Lake-H,Tiger Lake,10MB + 24MB,,45,2600 ‑ 5000,8/16,10,x86,,948,UHD Graphics Xe 32EUs (Tiger Lake-H),~35.8,,,,,,230,1846,568,4250,1480,10862,6.9,360,,,8815,,,13.4,8.6,1.7,1.1,276,,5222,47264,,,,6286,33776,1484,8230,1586.5,9057.5,,,,,60397,,147,271, -AMD Ryzen 7 7735HS,Rembrandt-HS Refresh,Rembrandt (Zen 3+),4MB + 16MB,,35,3200 ‑ 4750,8/16,6,x86,,344,Radeon 680M,~42.1,13410,6508,42409,2.95,26.48,248,2274,603,5341,1546,13750,7.79,663.99,3.43,92.76,6807,270.2,131.43,17,13,1.85,1.2,229,376,5786,60612,,,,6720,40164,1516,9315,1555,9436,2115,10348,,,76231,246.2,272,290,223.5 -AMD Ryzen 7 7735H,Rembrandt-H Refresh,Rembrandt (Zen 3+),4MB + 16MB,,35,3200 ‑ 4750,8/16,6,,,344,Radeon 680M,~38.5,12923.5,6438,35222,2.91,21.14,246,1825,601,4354,1536,10920,7.59,680.96,3.81,109.78,5997,251.5,103.65,14.1,10.6,1.6,1.1,283,488,5621,52518,,,,6434.5,34180.5,1525,8372,1564,8582,2015.5,9182.5,,,,,,293,222 -AMD Ryzen 7 PRO 6850HS,Rembrandt-HS (Zen 3+),Rembrandt (Zen 3+),4MB + 16MB,,35,3200 ‑ 4700,8/16,6,x86,,604,Radeon 680M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Ryzen 7 6800HS,Rembrandt-HS (Zen 3+),Rembrandt (Zen 3+),4MB + 16MB,,35,3200 ‑ 4700,8/16,6,x86,,710,Radeon 680M,~39.3,13890,6258,41339,2.79,26.19,234,1987,570,4634,1455,11992,8.4,710.8,,,6716,254.7,113.7,15.1,11.4,1.7,1.1,258,,5495,56170,,,,6168,36693,,,1492,9298,,,,,,,,280, -AMD Ryzen 9 5900HS,Cezanne-HS (Zen 3),"Cezanne (Zen 3, Ryzen 5000)",4MB + 16MB,,35,3000 ‑ 4600,8/16,7,x86,,1072,Vega 8,~42.9,,6380,41235,2.83,24.94,236.5,2041,571.5,4895.5,1475.5,12745.5,,,,,,,,14.55,,,,241,,5653,57286,,,,6361,31805,1502,7784,1497,7867,,,,,65400,196.25,183,275.5, -AMD Ryzen 7 3800XT,Matisse (Zen 2),Matisse (Ryzen 3000 Desktop),4MB + 32MB,,105,3900 ‑ 4700,8/16,7,x86,,1256,UHD Graphics 750,~35,,6035,40528,2.36,24.18,219,2230,544,5120,,,9.07,508,3.74,81.4,7467,271,119,16.1,11.4,2,1.2,222.7,,5516,59247,,,,5830,35526,1360,9163,1353,8948,,,,,,,,249, -AMD Ryzen 7 3700X,Matisse (Zen 2),Matisse (Ryzen 3000 Desktop),4MB + 32MB,,65,3600 ‑ 4400,8/16,7,x86,,1622,UHD Graphics 750,~34.5,13814.5,5839,40439,2.3,23.19,204,2092,506,4782,,,9.45,531,3.71,86.7,7503,269.5,115,15.4,11.4,2,1.1,181.4,,5333,57307,,,,5799,34757,,,1304,8960,,,,,,,,, -Intel Core i9-9900KS,Coffee Lake-R,Coffee Lake,2MB + 16MB,,127,4000 ‑ 5000,8/16,14,x86,,1507,UHD Graphics 630,~36.9,14883.5,8183,51778.5,2.45,23.15,216,2058,511.5,4819.5,,,7.42,414.15,3.6,87.9,8353,278.85,122.5,16.26,12.15,2.1,1.2,224.55,,5734,55735,,,,6308,35586,,,1372,9100,,,,,44538,,,, -Intel Core i7-10700K,Comet Lake,Comet Lake,2MB + 16MB,,125,3800 ‑ 5100,8/16,14,x86,,1324,UHD Graphics 630,~35.1,,7910,50670,2.38,22.19,208,2027,496,4882,,,7.58,391.3,3.18,85.7,8469,269,121,16.3,11.2,2,0.97,217.4,,5647,54050,,,,6247,34735,1368,8903,1373.5,8925,,,,,,,,245, -AMD Ryzen 5 7645HX,Dragon Range (Zen4),"Dragon Range (Zen 4, Ryzen 7045)",6MB + 32MB,,55,4000 ‑ 5000,6/12,5,x86,,344,Radeon 610M,~48.8,,7717,44716,,25.68,289,2276,699,5467,1809,13985,8,410.82,,,13352,328.4,135.9,18.6,12.6,1.7,1,224,360,7124,60373,,,,7927,41241,1924,10185,1971,10145,2717,11717,,,87916,,,331,273 -AMD Ryzen 5 8645HS,Hawk Point-HS (Zen 4),"Hawk Point (Zen 4/4c, Ryzen 8040)",6MB + 16MB,,45,4300 ‑ 5000,6/12,4,x86,,9,Radeon 760M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Ryzen 5 8640HS,Hawk Point-HS (Zen 4),"Hawk Point (Zen 4/4c, Ryzen 8040)",6MB + 16MB,,28,3500 ‑ 4900,6/12,4,x86,,9,Radeon 760M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Core Ultra 7 165U,Meteor Lake-P,Intel Meteor Lake-U,+ 12MB,,15,3800 ‑ 4900,12/14,7,x86,,6,Graphics 4-Core,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Ryzen Z1 Extreme,Phoenix (Zen 4),"Phoenix (Zen 4, Ryzen 7040)",8MB + 16MB,,30,3300 ‑ 5100,8/16,4,x86,,265,Radeon 780M,~58.6,,,,,,274,2223.5,682,5467,1756,13982,,,,,,,,17.35,,,,213,406,6316,59811.5,,,,,,,,1898,9803,2534,10931,,,86617,276.7,293,366,277 -AMD Ryzen 5 7640HS,Phoenix-HS (Zen 4),"Phoenix (Zen 4, Ryzen 7040)",6MB + 16MB,,45,4300 ‑ 5000,6/12,4,x86,,344,Radeon 760M,~56.6,,,,,,271,2079,667,5044,1715,13029,,,,,,,,16.7,,,,245,393,6465,54954,,,,,,,,1941,9355,2620,10936,,,,,,316,257 -AMD Ryzen 5 PRO 7640HS,Phoenix (Zen4),"Phoenix (Zen 4, Ryzen 7040)",6MB + 16MB,,54,4300 ‑ 5000,6/12,4,x86,,344,Radeon 760M,~42.7,12948,6888,39399,2.97,21.61,249,1863,612,4530,1581,11507,7.9,740.7,,,6717,264,109.5,14.7,10.4,1.5,0.92,270,444,5892,51096,,,,7042,34588,,,1748,8863,2352,10200,,,,,,262, -AMD Ryzen 7 PRO 7840U,Phoenix (Zen 4),"Phoenix (Zen 4, Ryzen 7040)",8MB + 16MB,,28,3300 ‑ 5100,8/16,4,x86,,226,Radeon 780M,~52.8,,,,,,273,2014,684,4970,1747,12929,,,,,,,,15.9,,,,248,410,5988,57056,,,,,,,,1881,9663,1896,7596,,,,,,317, -AMD Ryzen 7 8840U,Hawk Point-U (Zen 4),"Hawk Point (Zen 4/4c, Ryzen 8040)",8MB + 16MB,,28,3300 ‑ 5100,8/16,4,x86,,19,Radeon 780M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Ryzen 7 7840U,Phoenix-U (Zen 4),"Phoenix (Zen 4, Ryzen 7040)",8MB + 16MB,,28,3300 ‑ 5100,8/16,4,x86,,226,Radeon 780M,~43.3,13021,7342,36812,2.97,20.46,264,1947,661.5,4731,1683,11930.5,7.24,626.26,,,5629,242.64,105.52,15.1,6.1,1.5,0.95,264,427.5,6002.5,53861,,,,6140,30359,1564,8055,1749,9382,2399,10763,,,82676,288.9,268,278.5,233 -Intel Core Ultra 7 155U,Meteor Lake-P,Intel Meteor Lake-U,+ 12MB,,15,3800 ‑ 4800,12/14,7,x86,,6,Graphics 4-Core,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Core i7-11850H,Tiger Lake-H,Tiger Lake,10MB + 24MB,,45,2500 ‑ 4800,8/16,10,x86,,948,UHD Graphics Xe 32EUs (Tiger Lake-H),~45.5,,,,,,232.5,1767.5,595,4244.5,1532.5,10857,,,,,,,,13.5,,,,285,,5744.5,47721,,,,,,,,1672.5,9250,,,,,,198.5,,274.5, -Intel Core Ultra 7 164U,Meteor Lake-U,Intel Meteor Lake-U,+ 12MB,,9,3800 ‑ 4800,12/14,7,x86,,6,Graphics 4-Core,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Core i9-9900K,Coffee Lake-R,Coffee Lake,2MB + 16MB,,95,3600 ‑ 5000,8/16,14,x86,,1894,UHD Graphics 630,~37,14281.5,7933,48778.5,2.38,21.39,212,1979,502,4871,1280,12397,7.66,432.15,3.58,91.3,7633,260.5,114.25,15.8,11.1,1.9,1.15,223.8,,5410.5,48207,,,,6049,32981,,,1300,8845,,,,71,40081,,,, -AMD Ryzen 5 5600X,Vermeer (Zen 3),Vermeer (Ryzen 5000),3MB + 32MB,,65,3700 ‑ 4600,6/12,7,x86,,1163,UHD Graphics 750,~37.3,14576,6462,39331,2.95,21.75,254,1968,601,4567,1541,11838,8.08,400.9,3.89,113.9,13282,320,117,15.7,10.7,1.5,0.94,260.2,,6594,56607,,,,6953,35617,1587,8926,1657,8980,,,,,,,,286, -Intel Core i5-11600K,Rocket Lake,Rocket Lake,3MB + 12MB,,125,3900 ‑ 4900,6/12,14,x86,,990,UHD Graphics Xe 750 32EUs,~36.5,14519,9745,49408,2.87,19.32,238,1744,585.5,4301.5,1529.5,11217.5,6.76,353.7,4.92,107.6,7850,289,100.75,14.35,9.7,1.5,0.9,267.25,,6061.5,44971,,,,7438,33266,1731,8542,1723,8429.5,,,,,,,,271.5, -Intel Core i7-1365U,Raptor Lake-U,Raptor Lake-U,9.5MB + 12MB,,15,1300 ‑ 5200,10/12,10,x86,,710,Iris Xe G7 96EUs,~52.7,,,,,,265.5,1466.5,726.5,3495.5,1887,8946,,,,,,,,9.8,,,,383,726.5,5850.5,39727,,,,,,1812.5,8500,1878.5,8605.5,2583,9605,,,93596,282.37,350,300,262.5 -Intel Core i7-11800H,Tiger Lake-H,Tiger Lake,10MB + 24MB,,45,2300 ‑ 4600,8/16,10,x86,,948,UHD Graphics Xe 32EUs (Tiger Lake-H),~40.3,13362,9075,44099,2.6,18.53,227,1936,580,4689,1508,12197,7.27,369.78,3.97,120.84,7944,247.5,93.75,13.9,9.9,1.5,1,261,559,5509,49080,,,,6667,34107,1550,7866,1572,8905,2192.5,9253.5,,134.8,68002,190.9,194,262,212 -Intel Core i7-1355U,Raptor Lake-U,Raptor Lake-U,9.5MB + 12MB,,15,1200 ‑ 5000,10/12,10,x86,,710,Iris Xe G7 96EUs,~41.1,10128,10028,33627,3.07,16.45,255.5,1393,697.5,3257.5,1825,8286,6.7,382.8,21,885,12688,,,9.29,8.3,1.7,0.94,424.5,770.5,5569.5,35321.5,,,,,,1786,8018,1783,8058,2505,8908,,,90249,278.41,338,284.5,253.5 -AMD Ryzen 7 7735U,Rembrandt-U Refresh,Rembrandt (Zen 3+),4MB + 16MB,,28,2700 ‑ 4750,8/16,6,x86,,344,Radeon 680M,~35.5,10406.5,6207,32220,2.8,19.45,234,1698,524,3895,1490,10085,7.71,697.06,5.18,194.41,4904,228.5,90.55,12.5,10.2,1.5,1,308,540,5579,48972,,,,6267,32079,1497,8115,1522,8203,,,,,,,,240,189.4 -AMD Ryzen 7 PRO 6860Z,Rembrandt U (Zen 3+),Rembrandt (Zen 3+),4MB + 16MB,,28,2700 ‑ 4750,8/16,6,x86,,604,Radeon 680M,~39.8,,6238,36959,2.87,23.11,233,1992,588,4555,1468,11822,7.6,693.5,7.9,252.1,,,,14.7,7.7,1.3,1.1,274,483,5289,52568,,,,,,,,1452,8734,,,,,73281,235.4,256,270,214 -Apple M1 Pro 8-Core,,Apple M-Series,28MB + 16MB,,,2060 ‑ 3220,8/8,5,ARM,,788,M1 Pro 14-Core GPU,~50.8,,,,,,210,1320,,,1531,9581,,,,,,,,,,,,,,,,,,,,,,,1769,9942,,,,76.7,65528,207.9,262,343, -AMD Ryzen 7 5800H,Cezanne-H (Zen 3),"Cezanne (Zen 3, Ryzen 5000)",4MB + 16MB,,45,3200 ‑ 4400,8/16,7,x86,,1072,Vega 8,~39.3,12790,6017,36734.5,2.72,22.47,229,2005,554,4662,1416,12091.5,8.31,419.5,6.12,188.36,6851,244,104.65,14.75,10,1.65,1.05,255.5,499.5,5499.5,54052,,,,6132.5,31636.5,1418.5,7988,1462,7641,1991,9411,,134.1,67411,189,187,269,190.5 -AMD Ryzen 7 7736U,Rembrandt R,Rembrandt (Zen 3+),4MB + 16MB,,28,2700 ‑ 4700,8/16,6,x86,,344,Radeon 680M,~50.8,,,,,,246,2019,,,1548,12768,,,,,,,,15.7,,,,246,453,5466,56824,,,,,,,,1511,9218,,,,,,179.93,,254,193.4 -Intel Core Ultra 5 135U,Meteor Lake-P,Intel Meteor Lake-U,+ 12MB,,15,3600 ‑ 4400,12/14,7,x86,,6,Graphics 4-Core,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Ryzen 7 PRO 6850U,Rembrandt-U PRO (Zen 3+),Rembrandt (Zen 3+),4MB + 16MB,,28,2700 ‑ 4700,8/16,6,x86,,604,Radeon 680M,~36.6,11429,6260,33284,2.84,20.26,237.5,1726,590,4044.5,1497,10039.5,7.7,682.3,8,257.2,,,,13,6.5,1.4,0.96,300,519.5,5339.5,48175.5,,,,,,1502,7891,1496.5,7924,,,,,71849.5,220.3,239,243,191.9 -AMD Ryzen 5 PRO 6650H,Rembrandt-H PRO (Zen 3+),Rembrandt (Zen 3+),3MB + 16MB,,45,3300 ‑ 4500,6/12,6,x86,,604,Radeon 660M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Ryzen 5 6600H,Rembrandt-H (Zen 3+),Rembrandt (Zen 3+),3MB + 16MB,,45,3300 ‑ 4500,6/12,6,x86,,710,Radeon 660M,~43.9,,,,,,233.5,1683,569.5,4053,1458,10471.5,,,,,,,,12.85,,,,298.5,520,5509.5,43861,,,,,,1417,6219,1460,7066,,,,,,224.13,,246.5,209 -AMD Ryzen 5 PRO 6650HS,Rembrandt-HS (Zen 3+),Rembrandt (Zen 3+),3MB + 16MB,,35,3300 ‑ 4500,6/12,6,x86,,604,Radeon 660M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Ryzen Z1,Phoenix (Zen4),"Phoenix (Zen 4, Ryzen 7040)",6MB + 16MB,,30,3200 ‑ 4900,6/12,4,x86,,265,Radeon 740M,~45.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1827,7674,,,,,,,,, -AMD Ryzen 5 PRO 7640U,Phoenix (Zen4),"Phoenix (Zen 4, Ryzen 7040)",6MB + 16MB,,15,3500 ‑ 4900,6/12,4,x86,,206,Radeon 760M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Core Ultra 5 125U,Meteor Lake-P,Intel Meteor Lake-U,+ 12MB,,15,3600 ‑ 4300,12/14,7,x86,,6,Graphics 4-Core,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Ryzen 5 7640U,Phoenix-U (Zen 4),"Phoenix (Zen 4, Ryzen 7040)",6MB + 16MB,,28,3500 ‑ 4900,6/12,4,x86,,206,Radeon 760M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Core Ultra 5 134U,Meteor Lake-U,Intel Meteor Lake-U,+ 12MB,,9,3600 ‑ 4400,12/14,7,x86,,6,Graphics 4-Core,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Ryzen 5 PRO 7540U,Phoenix (Zen4),"Phoenix (Zen 4, Ryzen 7040)",6MB + 16MB,,15,3200 ‑ 4900,6/12,4,x86,,206,Radeon 740M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Ryzen 5 8640U,Hawk Point-U (Zen 4),"Hawk Point (Zen 4/4c, Ryzen 8040)",6MB + 16MB,,28,3500 ‑ 4900,6/12,4,x86,,17,Radeon 760M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Ryzen 5 7545U,Phoenix (Zen4),"Phoenix (Zen 4, Ryzen 7040)",6MB + 16MB,,28,3200 ‑ 4900,6/12,4,x86,,206,Radeon 740M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Ryzen 5 7540U,Phoenix (Zen4),"Phoenix (Zen 4, Ryzen 7040)",6MB + 16MB,,28,3200 ‑ 4900,6/12,4,x86,,206,Radeon 740M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Ryzen 5 8540U,Hawk Point-U (Zen 4 + Zen 4c),"Hawk Point (Zen 4/4c, Ryzen 8040)",6MB + 16MB,,28,3200 ‑ 4900,6/12,4,x86,,17,Radeon 740M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Ryzen 5 7535HS,Rembrandt R,Rembrandt (Zen 3+),3MB + 16MB,,35,3300 ‑ 4550,6/12,6,x86,,344,Radeon 660M,~38.1,12242,6257,37321,2.79,20.14,241,1757,581,4224,1488,10900,8.49,700.99,8.4,256.14,6586,258.1,103.8,14.2,10.2,1.3,0.9,286,481,5670,48646,,,,6170.5,31413.5,1472,7949,1502,7852,2056,8960,,,69893,214.9,250,235,189.4 -AMD Ryzen 5 6600HS,Rembrandt-HS (Zen 3+),Rembrandt (Zen 3+),3MB + 16MB,,35,3300 ‑ 4500,6/12,6,x86,,710,Radeon 660M,~38.3,,6157,34414,2.74,19,235,1656,577,3935,1465,9131,8,710.7,,,5207,236.5,93.4,12,7.7,1.3,0.84,328,,5318,44476,,,,6029,28928,,,1493,7195,,,,106.9,,,,234, -Intel Core i7-10700,Comet Lake,Comet Lake,2MB + 16MB,,65,2900 ‑ 4800,8/16,14,x86,,1291,UHD Graphics 630,~31.9,,7611,41156,2.26,16.7,196,1455,,,1234,8532,8.08,439.6,3.26,119.5,6555,236,84.8,11.6,10.3,1.8,1.1,315.4,,5293,43007,,,,5726,32174,1304,8196,1299,8173,,,,,,,,244, -AMD Ryzen 9 4900H,Renoir-H (Zen 2),Renoir (Ryzen 4000 APU),4MB + 8MB,,45,3300 ‑ 4400,8/16,7,x86,,1378,Vega 8,~31.6,,5946,40253,2.24,23.03,193,1926.5,493.5,4409,1294,11604,9.46,729,3.19,82.9,4297,215,111,12.9,7.4,2,1.2,247.3,,4727,48976,,,,5287,28402,1237,7624,1231.5,8012,,,,,,,,227, -Intel Core i9-10980HK,Comet Lake-H,Comet Lake,2MB + 16MB,,45,2400 ‑ 5300,8/16,14,x86,,1352,UHD Graphics 630,~34.8,13765,,,,,206,1737,489,3883,1287,10590.5,7.8,449,,,6869,238.5,98.2,13,10.1,1.8,1.1,279,,5437,47455,,,,5971,30973,1349,8010,1347.5,8155.5,,,,,57793,,,243, -AMD Ryzen 7 5800HS,Cezanne-HS (Zen 3),"Cezanne (Zen 3, Ryzen 5000)",4MB + 16MB,,35,2800 ‑ 4400,8/16,7,x86,,1072,Vega 8,~35.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1380,7454,,,,,,,,, -AMD Ryzen 9 4900HS,Renoir (Zen 2),Renoir (Ryzen 4000 APU),4MB + 8MB,,35,3000 ‑ 4300,8/16,7,x86,,1378,Vega 8,~32,12448,5866,37938,2.23,18.21,193,1863,495,4288,,,9.5,547,3.28,88.2,4548,223,106,12.19,11.2,1.9,1.2,297,,4634,48577,,,,5372,30230,,,1218,7675,,,,,38616,,,, -Intel Core i7-11600H,Tiger Lake H45,Tiger Lake,7.5MB + 18MB,,45,2900 ‑ 4600,6/12,10,x86,,948,UHD Graphics Xe 32EUs (Tiger Lake-H),~26.8,,,,,,,,,4073,,,,,,,,,,,,,,,,,,,,,,,,,1401,6375,,,,,,,,, -Intel Xeon W-10885M,Comet Lake-H,Comet Lake,2MB + 16MB,,45,2400 ‑ 5300,8/16,14,x86,,1311,UHD Graphics P630,~32.7,13490,7865,44583,2.35,18.25,210,1640,495.5,3882.5,1300,6893,7.74,429.3,3.6,105.8,7180,236.9,100.1,13.1,10.3,1.8,1,286,,5507,45696,,,,5892,32814,1323,8295,1340,8378,,,,,,,,229, -Intel Core i9-10885H,Comet Lake-H,Comet Lake,2MB + 16MB,,45,2400 ‑ 5300,8/16,14,x86,,1352,UHD Graphics 630,~31.1,12101,,,,,211,1517,489,3639,1289.5,9438,7.33,433.9,3.86,131.2,6420,217.8,80.5,11.3,9.9,1.8,1,302,,5589,41823,,,,5675.5,29009,1280.5,7172,1317,6914,,,,,58398,167.6,146,234, -AMD Ryzen 7 6800U,Rembrandt-U (Zen 3+),Rembrandt (Zen 3+),4MB + 16MB,,28,2700 ‑ 4700,8/16,6,x86,,710,Radeon 680M,~37.9,9964.5,6450,35314,2.88,21.13,242,1776,585.5,4083.5,1506,10546,7.94,692.03,4.54,113.45,4639,219.5,101.05,13.1,10.7,1.5,1,304,504,5452.5,50614,,,,6261,30925,1462.5,7767,1514,7678,2028,8771,,,69752,236.3,176,270,213 -AMD Ryzen 7 PRO 5875U,Cezanne U (Zen 3),"Cezanne (Zen 3, Ryzen 5000)",4MB + 16MB,,25,2000 ‑ 4500,8/16,7,x86,,1072,Vega 8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Ryzen 5 5600G,Cezanne,"Cezanne (Zen 3, Ryzen 5000)",3MB + 16MB,,65,3900 ‑ 4400,6/12,7,x86,,976,Vega 7,~32.8,12904,6052,35552,2.68,19.92,228,1724,552,4072,1409,10551,8.08,416.8,4.53,125.3,7652,261.5,102.5,13.9,9.7,1.3,0.88,299.1,,5549,48700,,,,6450,31424,1441,7991,1506,8003,,,,,,,,, -Intel Core i7-1265U,Alder Lake-U,Alder Lake-M,9.5MB + 12MB,,15,1300 ‑ 4800,10/12,10,x86,,710,Iris Xe G7 96EUs,~38.8,9433.5,8549,38152,2.99,16.48,240,1344.5,642,3214.5,1679.5,8225,7.98,429.84,5.24,217.43,5960,265.5,80.95,9.24,9.7,1.6,0.9,423.5,834,5285.5,34399,,,,7515,33057,1678,8305.5,1739.5,8127,,,,,73251,231.57,281,279.5,242.5 -Intel Core i7-1270P,Alder Lake-P,Alder Lake-P,10MB + 18MB,,28,1600 ‑ 4800,12/16,10,x86,,710,Iris Xe G7 96EUs,~37.6,,7886,36271,2.74,19.94,229.5,1739,611,3536,1620,9718,7.64,436.4,9.8,344.6,16497,,,10.43,5.8,1.1,0.84,373.5,714,5279,38274,,,,,,1683,8537,1644,8660,,,,,78273,227.45,232,285,251 -Intel Core i7-1260P,Alder Lake-P,Alder Lake-P,10MB + 18MB,,28,1500 ‑ 4700,12/16,10,x86,,710,Iris Xe G7 96EUs,~43.3,12963.5,8793,44516,3.1,22,243,1626,670,3761.5,1737.5,9711,7.8,424.8,4.49,237.12,7200,245,94.13,11.5,11.6,1.9,1.1,328,623,5373,41260.5,,,,7531,38187,1668,9907,1719,9298,2424,9532,,102.55,83695,240.3,263.5,283,247 -AMD Ryzen 7 7730U,Barcelo-U Refresh,"Cezanne (Zen 3, Ryzen 5000)",4MB + 16MB,,15,2000 ‑ 4500,8/16,7,x86,,710,Vega 8,~37.7,,6243,32670,2.76,19.06,231,1830,566.5,4070.5,1454.5,10801.5,7.95,438.1,4.37,121.16,5881,236.2,90.9,12.7,10.1,1.4,0.99,296,499.5,5356,49424.5,,,,6092,29078,1429,7765,1479.5,7573,1960,7013,,,71624,226.99,255,263,210.5 -AMD Ryzen 7 PRO 7730U,Barcelo-U Refresh,"Cezanne (Zen 3, Ryzen 5000)",4MB + 16MB,,15,2000 ‑ 4500,8/16,7,x86,,710,Vega 8,~35.4,8758,6108,33735,2.68,17.55,229,1756,562,3967,1441,10095,8.46,456.71,10.43,369.11,5274,221,95,12.05,4.2,0.67,0.46,301.5,528,5269,45924,,,,,,,,1437.5,6559.5,1894.5,6336,,,71022,242,252,254, -AMD Ryzen 7 5825U,Barcelo-U (Zen 3),"Cezanne (Zen 3, Ryzen 5000)",4MB + 16MB,,15,2000 ‑ 4500,8/16,7,x86,,710,Vega 8,~36.5,11292,6304,32641,2.75,18.56,231.5,1778,556,4003.5,1447,10273.5,7.2,366,9.2,340.8,5835,249.6,100.3,12.65,8.7,1.5,1.1,302.5,542.5,5436.5,47588.5,,,,,,1455,7235,1468,6782,,,,,70779,227.87,232,266.5,213 -AMD Ryzen 7 5825C,Barcelo (Zen 3),"Cezanne (Zen 3, Ryzen 5000)",4MB + 16MB,,25,2000 ‑ 4500,8/16,7,x86,,589,Vega 8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Ryzen 5 5600H,Cezanne-H (Zen 3),"Cezanne (Zen 3, Ryzen 5000)",3MB + 16MB,,45,3300 ‑ 4200,6/12,7,x86,,1072,Vega 7,~35.6,12008,5832,35017.5,2.62,19.2,223,1573,534,3721,1369,9631.5,7.94,406.61,6.58,201.1,7497,251.21,95.18,12.4,7.35,1.2,0.83,319,582,5369,44613,,,,5813,27790,1373,6483,1428,6567,1610,7910,,,67221,204.2,190.3,267,202 -AMD Ryzen 7 5800U,Cezanne-U (Zen 3),"Cezanne (Zen 3, Ryzen 5000)",4MB + 16MB,,25,1900 ‑ 4400,8/16,7,x86,,1072,Vega 8,~34.2,,6039,26711,2.7,14.78,229,1613,555,3303,1427,8154,9.83,514,4.11,136.5,,230.5,80.8,10.3,,,,351.85,,5362.5,42603.5,,,,5878,28418,1411,7053,1428.5,6722.5,,,,,64961,178.6,184.25,249, -AMD Ryzen 7 PRO 5850U,Cezanne-U PRO (Zen 3),"Cezanne (Zen 3, Ryzen 5000)",4MB + 16MB,,15,1900 ‑ 4400,8/16,7,x86,,1072,Vega 8,~30.5,11656,5817,27430,2.67,16.63,227,1467,548,3417,1405,8716,10,529,8.12,258.7,6290,217.6,83.4,11.3,4.2,1,0.75,345,,5231,44266,,,,5810,25894.5,1220,5477,1436,6889,,,,,,,,260, -AMD Ryzen 7 4800H,Renoir-H (Zen 2),Renoir (Ryzen 4000 APU),4MB + 8MB,,45,2900 ‑ 4200,8/16,7,x86,,1438,Vega 7,~30.6,12683,5684,37276,2.18,21.1,188,1854,485,4339.5,1253.5,11135.5,9.81,564,3.38,90.9,4601,215.6,102.7,12.8,10.3,1.9,1.1,262,,4686,50075,,,,4949.5,26453,1184,7108,1191,7955,,,,,43309,136.8,129,218.5, -Intel Core i7-10875H,Comet Lake-H,Comet Lake,2MB + 16MB,,45,2300 ‑ 5100,8/16,14,x86,,1352,UHD Graphics 630,~34.3,12944.5,7803,44805,2.4,18.69,202,1594.5,483.5,3391.5,1241.5,8889.5,7.7,431.7,,,7473,242.4,103,12.1,10.3,1.8,1.1,322.5,,5319,44947,,,,5803,31346,1264,7370,1300,7799,,,,,,147.1,,239, -Intel Core i9-9980HK,Coffee Lake-H,Coffee Lake,2MB + 16MB,,45,2400 ‑ 5000,8/16,14,x86,,1690,UHD Graphics 630,~34.3,13208,7969.5,44455,2.28,17.2,201,1624,478.5,3475,,,7.75,432.25,4.36,115.3,7351,238.1,93.8,11.4,10.2,1.7,1,348.4,,5389.5,41688,,4871,31724,5969,29385,1282,7403.5,1346,7568,,,,,42219.5,158.3,107.3,233, -Intel Core i7-10870H,Comet Lake-H,Comet Lake,2MB + 16MB,,45,2200 ‑ 5000,8/16,14,x86,,1191,UHD Graphics 630,~37.2,,,,,,200,1659,473.5,3632,1226,9892.5,,,,,,,,12.45,,,,292,,5295.5,44975.5,,,,5652,30578,1276,7700,1282.5,7735.5,,,,,54493.5,156.8,132,225, -Intel Core i7-9700K,Coffee Lake-R,Coffee Lake,2MB + 12MB,,95,3600 ‑ 4900,8/8,14,x86,,1894,UHD Graphics 630,~34.3,12928,7653,42777.5,2.37,15.83,205.5,1449,475,3250,,,7.74,421.1,4.49,120.5,7396,270,94.8,13,8.1,1.3,0.77,307,,,,,4825,27774,5984,29225.5,,,1300,7440,,,,,41962,,,, -Intel Core i5-13420H,Raptor Lake-H,Raptor Lake-H,8MB + 12MB,,45,1500 ‑ 4600,8/12,10,x86,,345,UHD Graphics Xe G4 48EUs,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Core i5-12450HX,Alder Lake-HX,Alder Lake-S,8MB + 12MB,,55,1800 ‑ 4400,8/12,10,x86,,584,UHD Graphics Xe 16EUs (Tiger Lake-H),,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Core i5-12450H,Alder Lake-H,Alder Lake-P,8MB + 12MB,,45,1500 ‑ 4400,8/12,10,x86,,710,UHD Graphics Xe G4 48EUs,~37.9,11439,8178,35790,2.88,16.05,238,1266,643,3253.5,1665,8320,8.41,451.44,7.23,436.01,6015,272.5,75.95,9.94,8,1.3,0.79,403,701,5278,33549,,,,7153,28151,1575,7120.5,1639,7200,2262,8123,,,,291.61,,285,238.5 -Intel Core i5-12400F,Alder Lake-S,Alder Lake-S,7.5MB + 17.9MB,,65,2500 ‑ 4400,6/12,10,x86,,710,UHD Graphics 750,~38.9,11892,8389,40690,2.95,20.39,244,1759,653,4740,1680,12380,8.3,438.44,4.08,112.85,7816,252.5,101.35,15.2,9.3,1.4,0.88,269,430,5476,45043,,,,7548,35098,1673,9368,1742,9517,,,,,,,,272,235 -Intel Core i5-11400F,Rocket Lake,Rocket Lake,3MB + 12MB,,65,2600 ‑ 4400,6/12,14,x86,,940,UHD Graphics 750,~32.5,13359,6210,44220,2.23,17.65,210,1574,502,3945,1339,10235,7.76,703,4.09,117.2,7147,258,91.5,13.5,8.7,1.4,0.84,290.2,,5466,41522,,,,6836,30191,1543,7679,1575,7681,,,,,,,,255, -Intel Core i5-1350P,Raptor Lake-P,Raptor Lake-P,10MB + 18MB,,28,1400 ‑ 4700,12/16,10,x86,,710,Iris Xe G7 80EUs,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Apple M3,,Apple M3,4MB,,,2748 ‑ 4056,8/8,3,ARM,,51,M3 10-Core GPU,~64.5,,,,,,271,1499,504,2818,1904,10454,,,,,,,,,,,,474,761,,,,,,,,,,2342,10774,3087.5,11914.5,,,96933,304.5,559,423, -Intel Core i5-10600K,Comet Lake,Comet Lake,1.5MB + 12MB,,125,4100 ‑ 4800,6/12,14,x86,,1304,UHD Graphics 630,~31.1,,7343,40074,2.19,15.76,205,1452,464,3443,1385,10475,7.8,438.7,4.65,113.2,6536,251.5,88.2,12.2,8,1.4,0.82,302.4,,5289,40379,,,,5821,28391,1281,7237,1286,7248,,,,,,,,239, -AMD Ryzen 7 4800HS,Renoir-HS (Zen 2),Renoir (Ryzen 4000 APU),4MB + 8MB,,35,2900 ‑ 4200,8/16,7,x86,,1438,Vega 7,~30.4,12785,5705,36313,2.19,19.94,186.5,1700.5,482,3869,,,9.72,561,4.11,91.1,4642,216.5,99,12,10.3,1.8,1.1,284,,4655,48392,,,,5134,29223.5,1196,7878,1190.5,7611,,,,,,,,214, -Intel Core i9-9880H,Coffee Lake-H,Coffee Lake,2MB + 16MB,,45,2300 ‑ 4800,8/16,14,x86,,1690,UHD Graphics 630,~29.4,12225.5,6967,42456,2.11,18.94,190,1508,465,3235,1174,8747,8.52,476.5,5.39,118.7,6683,217,102.4,11.1,7.5,1,0.68,334.5,,4924,42138,,,,5457,29077,1186,7100,1176,7231,,,,,40443,151.8,134.1,184, -Intel Core i7-8086K,Coffee Lake-S,Coffee Lake,1.5MB + 12MB,,95,3700 ‑ 5000,6/12,14,x86,,2023,UHD Graphics 630,~29.8,11218,7216,35896,2.28,15.04,206,1349,495,3111,1260,8686,8.5,466.95,4.13,119.8,6751.5,230.55,85.45,11.3,7.85,1.4,0.79,316,,5416.5,36059.5,,,,5792,24527,1276,5644,1240,5485,,,,,,,,217, -Intel Core i7-8700K,Coffee Lake-S,Coffee Lake,1.5MB + 12MB,,95,3700 ‑ 4700,6/12,14,x86,,2535,UHD Graphics 630,~32.3,11701,7328,39096,2.2,15,192,1362,430,3165,,,8.02,442.8,4.16,118.9,7120,232,87.2,10.8,8,1.4,0.79,332.75,,,,,,,5783,25045,,,1210,6310,,,,55.75,47063.5,,,, -Intel Xeon W-11855M,Tiger Lake-H,Tiger Lake,7.5MB + 18MB,,45,3200 ‑ 4900,6/12,10,x86,,948,UHD Graphics Xe 32EUs (Tiger Lake-H),~39.6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1573,7191,,,,,,,,, -Intel Core i5-11500H,Tiger Lake H45,Tiger Lake,7.5MB + 12MB,,45,2900 ‑ 4600,6/12,10,x86,,948,UHD Graphics Xe 32EUs (Tiger Lake-H),~38.1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1507,6987,,,,,,,,, -AMD Ryzen 7 2700X,Zen+,Ryzen 7,4MB + 16MB,,105,3700 ‑ 4300,8/16,12,x86,,2073,UHD Graphics 750,~29.2,10643,5256,34763,1.95,18.68,175.7,1762,430,3944,,,10.8,578,3.48,96.6,4779,226.7,104.5,,10.6,1.6,1,266.8,,4647,45814,,,,5049.5,27789.5,1126,7878,1177,7021.5,,,,,,,,, -Intel Core i5-10400F,Comet Lake,Comet Lake,1.5MB + 12MB,,65,2900 ‑ 4300,6/12,14,x86,,1304,UHD Graphics 750,~30.4,,6719,36564,2.03,14.39,180,1332,438,3201,,,8.74,470.4,6.25,134.7,,228.5,81.2,11.2,,,,332.4,,5064,36731,,,,5587,25403,1217,6349,1220,6365,,,,,,,,215, -Intel Core i5-11400H,Tiger Lake-H,Tiger Lake,7.5MB + 12MB,,45,2700 ‑ 4500,6/12,10,x86,,948,UHD Graphics Xe 16EUs (Tiger Lake-H),~36.5,12043,8712,39095.5,2.5,14.64,218,1277,561,3283,1460.5,8451,7.52,487.52,6.8,231.84,5571,182.25,69.93,9.63,8.15,1.25,0.8,396,662,5116,33444,,,,6110,24947,1461,5961,1500,6006,2090,6317,,156.15,63574.5,190.55,197,250,204 -AMD Ryzen 7 4980U,Renoir-U (Zen 2),Renoir (Ryzen 4000 APU),4MB + 8MB,,15,2000 ‑ 4400,8/16,7,x86,,976,Vega 8,~33.1,,5715,35106,2.15,18.87,182,1658,492,3453,1260,9164,9.6,758,,,,,,9.82,,,,342,,4320,42368,,,,,,,,1133,7156,,,,,,,,210, -AMD Ryzen 7 5700U,Lucienne-U (Zen 2),"Lucienne (Zen 2, Ryzen 5000)",4MB + 8MB,,25,1800 ‑ 4300,8/16,7,x86,,1072,Vega 8,~33.8,11662,5780,31131,2.18,16.77,188,1483.5,490,3370,1258,8779,24.58,1081,3.49,110.9,3763,191.5,72.4,10.1,9.2,1.6,1,331.5,572.5,4568,41598,,,,5085,26487,1199,6904,1186,6264,,,,158.1,56365.5,152.9,181.1,215.5,169.35 -Intel Xeon E-2176G,Coffee Lake-ER,Coffee Lake,1.5MB + 12MB,,80,3700 ‑ 4700,6/12,14,x86,,1931,UHD Graphics P630,~29.9,11719,7369,39053,2.2,14.58,200,1324,,,,,8.31,467.9,4.52,132.1,6277,233.2,83.3,9.92,8,1.3,0.79,352,,5157,37522,,,,5297,21008,,,1225,6271,,,,,36458,,,, -Intel Core i7-9700,Coffee Lake-R,Coffee Lake,2MB + 12MB,,65,3000 ‑ 4700,8/8,14,x86,,1697,UHD Graphics 630,~30.1,,7473,37381,2.25,14.44,199,1254,474,2892,,,8.31,460.7,4.79,155.8,6945,247.5,77.6,10.5,7.6,1.3,0.78,388.7,,5186,33539,,,,5777,27040,1300,7060,1312,7060,,,,,,,,232, -Intel Core i9-8950HK,Coffee Lake-H,Coffee Lake,1.5MB + 12MB,,45,2900 ‑ 4800,6/12,14,x86,,2113,UHD Graphics 630,~33.8,11055,7149,36591,2.24,13.22,195,1223.5,442.5,2651.5,,,8.41,466.45,8.08,245.4,6420.5,224.9,77.9,8.84,7.2,1.2,0.74,410.8,,5080,,,4567,23881,5665.5,24399.5,,,1097,5205,,,,173.85,40726,,115,, -Intel Xeon E-2186M,Coffee Lake-H,Coffee Lake,1.5MB + 12MB,,45,2900 ‑ 4800,6/12,14,x86,,2115,UHD Graphics 630,~23,,,,,,,1098,,,,,,,,,,,,,,,,,,,,,,,,,,,1248,5239,,,,,,,,, -Intel Xeon E-2276M,Coffee Lake-H,Coffee Lake,1.5MB + 12MB,,45,2800 ‑ 4700,6/12,14,x86,,1689,UHD Graphics P630,~40.1,,,,,,195,1242.5,484,2782.5,,,,,,,,,,9.68,,,,384,,5214,33994,,,,5218,24150,,,1303,6595,,,,,56114,164.1,,220, -Intel Xeon W-2145,Skylake-W,Xeon,8MB + 11MB,,140,3700 ‑ 4500,8/16,14,x86,,2299,UHD Graphics 750,~45.1,,,,,,177,1682,,,,,,,,,,,,,,,,,,,,,,,4996,34132,,,1192,9146,,,,90.9,46837,,,, -Intel Core i7-10850H,Comet Lake-H,Comet Lake,1.5MB + 12MB,,45,2700 ‑ 5100,6/12,14,x86,,1352,UHD Graphics 630,~30,9471,7653,34586,2.25,12.22,203,1232,494,2636,,,7.7,431.6,,,5519,,,8.37,7.8,1.3,0.81,425,,5241,30988,,,,,,,,1305,5753,,,,,,,,, -Intel Xeon W-10855M,Comet Lake-H,Comet Lake,1.5MB + 12MB,,45,2800 ‑ 5100,6/12,14,x86,,1311,UHD Graphics P630,~32.9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1296,6231,,,,,,,,, -Intel Core i7-10750H,Comet Lake-H,Comet Lake,1.5MB + 12MB,,45,2600 ‑ 5000,6/12,14,x86,,1352,UHD Graphics 630,~29.7,11307,7376.5,37154,2.2,13.92,197,1303.5,472,2941,1217,7463.5,8.3,466.6,5.56,142.7,6287,221.2,78.3,9.89,7.6,1.3,0.77,371,,5120,35346,,,,5600.5,24897,1253,6338.5,1270,6308,,,,,53724.5,152.65,136.9,225, -AMD Ryzen 7 4800U,Renoir-U (Zen 2),Renoir (Ryzen 4000 APU),4MB + 8MB,,15,1800 ‑ 4200,8/16,7,x86,,1438,Vega 8,~28.9,10227,5690,33649,2.15,17.84,183,1411,480,3230.5,1235,8376,9.73,585,3.63,99.5,3881,196.1,88.5,10.4,10.2,1.5,1.1,340,,4436,40117,,,,4963,27286.5,1162,7298,1156.5,6136.5,,,,,36619,133.45,,208, -Intel Core i7-8700,Coffee Lake-S,Coffee Lake,1.5MB + 12MB,,65,3200 ‑ 4600,6/12,14,x86,,2535,UHD Graphics 630,~33.8,11193,7171,35384,2.17,12.97,192,1199,,,,,8.36,472.2,6.77,198.4,6332,234.6,75.2,9.53,7.7,1.3,0.8,388.2,,,,,4486,23061.5,5565,23220,,,1170,6250,,,,64.5,,,,, -Intel Core i5-10500H,Comet Lake-H,Comet Lake,+ 12MB,,45,2500 ‑ 4500,6/12,14,x86,,1352,UHD Graphics 630,~27.9,11157,7109,37125,2.1,13.84,186.25,1249,448,2919,1159.5,7103.5,8.59,485.6,9.13,281,6194,227.5,77.8,9.52,4.1,0.94,0.58,385.5,,4885.5,33445,,,,5501,25696,1200,6233,1205.5,6332,,,,,,,,223.5, -Intel Core i5-9600K,Coffee Lake-R,Coffee Lake,1.5MB + 9MB,,95,3700 ‑ 4600,6/6,14,x86,,1894,UHD Graphics 630,~27,10974,7205,33950,2.24,10.98,193,1094,,,,,7.74,421.1,6.03,176.2,5903,250,68.8,8.02,5.6,0.63,0.43,444.4,,,,,,,5916,23810,,,1217,5855,,,,,,,,, -AMD Ryzen 5 5600HS,Cezanne-HS (Zen 3),"Cezanne (Zen 3, Ryzen 5000)",3MB + 16MB,,35,3000 ‑ 4200,6/12,7,x86,,1072,Vega 7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Ryzen 5 4600H,Renoir-H (Zen 2),Renoir (Ryzen 4000 APU),3MB + 8MB,,45,3000 ‑ 4000,6/12,7,x86,,1438,Vega 6,~32.7,,5365,32756,2.04,16.25,176,1425,449.5,3229.5,1142.5,8072,10.5,607,,,4380,197,82.9,9.8,5,1.4,0.81,352,631,4397,37642.5,,,,4964,25247,,,1117,6080,1525,6631,,,47137.5,134.35,127.75,207, -Intel Core i7-9850H,Coffee Lake-H,Coffee Lake,1.5MB + 12MB,,45,2600 ‑ 4600,6/12,14,x86,,1690,UHD Graphics 630,~26.8,10056,7169,31938,2.13,12.47,193,1230,439.5,2114,,,8.15,467.6,8.3,278,5621,201.3,68.3,9,7.4,1.2,0.76,415,,5086,31087,,,,5594,23715,1169,5619.5,1150,5270,,,,,39091,,71.6,, -Intel Core i7-9750H,Coffee Lake-H,Coffee Lake,+ 12MB,,45,2600 ‑ 4500,6/12,14,x86,,1690,UHD Graphics 630,~31.3,10791.5,6970,34445,2.12,13.11,185.5,1188,442,2599,,,8.35,467.3,4.93,154.4,6395.5,214.8,70.25,8.83,7.35,1.25,0.73,435.2,,4865,33303,,4252.5,22711.5,5266,22951,1171,5635,1204,5813,,,,84.05,36178,,59.8,208.5, -Intel Core i9-9900T,Coffee Lake-R,Coffee Lake,2MB + 16MB,,35,2100 ‑ 4400,8/16,14,x86,,1894,UHD Graphics 630,~26.2,10259,6758,31357,2.09,12.38,185,1112,440,2626,,,8.77,481,5.88,162.1,6109,173.4,70.3,5.5,4.6,0.83,0.54,422,,4894,35084,,,,5381,23223,1193,5875,1206,5888,,,,,,,,197, -AMD Ryzen 7 2700,Zen+,Ryzen 7,4MB + 16MB,,65,3200 ‑ 4100,8/16,12,x86,,2073,UHD Graphics 750,~26.2,9475,4505,31385,1.78,16.71,161,1551,,,,,11.08,597,5.14,130.5,4440,195.7,89.7,9.51,9,1.4,0.9,308.3,,,,,,,4681,22776,,,1000,6560,,,,,,,,, -AMD Ryzen 7 1800X,Zen,Ryzen 7,4MB + 16MB,,95,3600 ‑ 4000,8/16,14,x86,,2479,UHD Graphics 750,~30.8,9585,5062,32833,1.79,18,160.8,1618,398.5,3610.5,939,8891,12.7,613,4.6,103.5,3967,179,84,9.76,9.7,1.5,0.95,294.75,,4062,40776,20615,4014,30389,4488.5,26147,1006.5,7036,1023,6545,,,,107.7,31263,,53.1,186.5, -AMD Ryzen 7 1700X,Zen,Ryzen 7,4MB + 16MB,,95,3400 ‑ 3800,8/16,14,x86,,2479,UHD Graphics 750,~26.8,9076,4662,31950,1.73,16.95,154,1537,335,3280,,,10.83,576,4.89,109.4,3728,180,90.05,8.88,8.95,1.4,0.9,327.1,,3746,39624,19631,,,4277,24555,,,932,6275,,,,,,,,, -Intel Core i5-11260H,Tiger Lake-H,Tiger Lake,7.5MB + 12MB,,45,2600 ‑ 4400,6/12,10,x86,,948,UHD Graphics Xe 16EUs (Tiger Lake-H),~22.3,,,,,,,,,3831,,8990,,,,,,,,,,,,,,,,,,,,,,,1428,6358,,,,,,,,, -Apple M2,,Apple M2,20MB + 8MB,,20,2424 ‑ 3480,8/8,5,ARM,,553,M2 10-Core GPU,~55,,,,,,223,1215,381,2324,1585,8667,,,,,,,,,,,,597,619.5,,,,,,,,,,1917,8961,2621.5,10063.5,,,74614,226.8,392,377,226.5 -AMD Ryzen 5 4600HS,Renoir-HS (Zen 2),Renoir (Ryzen 4000 APU),3MB + 8MB,,35,3000 ‑ 4000,6/12,7,x86,,1438,Vega 6,~31.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4630,20170,,,1100,6345,,,,,,,,, -Intel Xeon E-2176M,Coffee Lake-H,Coffee Lake,1.5MB + 12MB,,45,2700 ‑ 4400,6/12,14,x86,,2115,UHD Graphics 630,~29.2,9757,6973,32132,2.04,12.29,187,1095,,,,,8.6,477,5.34,163.3,4624.5,203.55,63.05,8.72,6.85,1.1,0.68,509.9,,,,,,,4660,20689.5,,,,,,,,76.2,36101.5,,,, -Intel Core i7-11390H,Tiger Lake-H35,Tiger Lake,5MB + 12MB,,35,3400 ‑ 5000,4/8,10,x86,,835,Iris Xe G7 96EUs,~35.9,10150.5,9604,29456,2.78,10.68,232,953,614,2284,1602,5917,6.77,349.8,6.52,196.91,6374.5,232.3,58.55,7.61,6.05,0.91,0.56,513,1101,5682,25876,,,,7125.5,22986,1655,5025,1615.5,5235.5,2194,5630,,117.6,,,,266.5,204 -Intel Core i7-11375H,Tiger Lake-H35,Tiger Lake,5MB + 12MB,,35,3300 ‑ 5000,4/8,10,x86,,1068,Iris Xe G7 96EUs,~39.4,,,,,,230,929,606,2569,1578,6663,,,,,,,,8.54,,,,473,,5565,28441,,,,6891,22937,1631,5975,1648,6098,,,,,,,,249, -AMD Ryzen 7 PRO 4750U,Renoir-U PRO (Zen 2),Renoir (Ryzen 4000 APU),4MB + 8MB,,15,1700 ‑ 4100,8/16,7,x86,,1317,Vega 7,~28.6,11008,8378.5,29573.5,2.12,15.78,181,1410,469,3203,1215,8359,10.04,673,3.95,108.9,4227,201.9,79.9,9.54,7.05,1.25,0.86,352,,4438,39649,,,,4995,25564,1167,6811,1149,6153,,,,,49781,139.8,133.5,205, -Apple M1,,Apple M-Series,16MB + 8MB,,,2064 ‑ 3220,8/8,5,ARM,,1130,M1 8-Core GPU,~49.9,,,,,,208,1072,402.5,2093.5,1514.5,7800.5,,,,,,,,,,,,561,964,5441,34614,,,,,,,,1730,7578,2363,8622,,76.4,62589.5,178.55,214,280.5,189 -Intel Core i7-1195G7,Tiger Lake-UP3,Tiger Lake,5MB + 12MB,,28,2900 ‑ 5000,4/8,10,x86,,929,Iris Xe G7 96EUs,~35.1,9989,,,2.7,10.59,222,940,559,1932,1455,5337,6.75,354.2,8.17,281.4,6334,,,6.64,6.4,0.99,0.63,597.5,1105,5386,24669,,,,6894,20629.5,1605.5,5066,1536,4734,2064,7644,,118.3,69945,194.5,213,261, -Intel Core i7-11370H,Tiger Lake-H35,Tiger Lake,5MB + 12MB,,35,3300 ‑ 4800,4/8,10,x86,,1068,Iris Xe G7 96EUs,~41.3,10019,,,,,229,960,589,2199,1507,5712.5,,,,,,,,7.7,,,,491,783,5307,26791,,,,,,1380,4911,1556.5,5388,,,,,68903,193.5,199,263,205 -Intel Core i5-1250P,Alder Lake-P,Alder Lake-P,10MB + 12MB,,28,1200 ‑ 4400,12/16,10,x86,,710,Iris Xe G7 80EUs,~31.7,11842,7918,38277,2.74,9.71,201,1528,536,2334,1521,7282,8.43,461.49,9.58,339.99,5561,201.07,79.64,6.77,9.5,1.9,1,511,,3532,24625,,,,7072,35532,1583,8778,1622,7672,,,,,,,,254, -Intel Core i5-1340P,Raptor Lake-P,Raptor Lake-P,9MB + 12MB,,28,1400 ‑ 4600,12/16,10,x86,,710,Iris Xe G7 80EUs,~39.9,11552,,,1.86,19.9,240.5,1756,655,4114,1710,10920.5,13.15,731.21,,,3503,228.93,95.23,12.4,9.3,1.6,0.88,299.5,570,5317,44767,,,,4246,29296,967,7117,1721.5,10020.5,,,,,85504,258.95,298,241.5,215.25 -Intel Core i5-1240P,Alder Lake-P,Alder Lake-P,10MB + 12MB,,28,1200 ‑ 4400,12/16,10,x86,,710,Iris Xe G7 80EUs,~40,,8205,42275,2.85,22.09,225,1592,597.5,3173.5,1600,8337,8.3,438.9,10.1,329.9,17276,,,9.3,6.6,1.5,0.81,413.5,839.5,4738,33826,,,,7106,34828,1543,8275.5,1588,7848,,,,106,77844.5,236.09,245,261,228 -Intel Core i5-1345U,Raptor Lake-U,Raptor Lake-U,9.5MB + 12MB,,15,1200 ‑ 4700,10/12,10,x86,,710,Iris Xe G7 80EUs,~46.7,,,,,,240,1311,660,2951,1724,7724,,,,,,,,8.78,,,,415,813,5296,34915,,,,7318,30701.5,1656,7692,1653,7738,,,,,,256.37,,277.5,242.5 -Intel Core i7-1255U,Alder Lake-U,Alder Lake-M,9.5MB + 12MB,,15,1200 ‑ 4700,10/12,10,x86,,710,Iris Xe G7 96EUs,~49.5,,,,,,238.5,1400,638,3131,1656,8332,,,,,,,,9.72,,,,383,723,5256,36825,,,,,,1610.5,7294.5,1650.5,7989.5,,,,97.3,82948,242.27,264,275,232 -AMD Ryzen 5 PRO 6650U,Rembrandt-U PRO (Zen 3+),Rembrandt (Zen 3+),3MB + 16MB,,28,2900 ‑ 4500,6/12,6,x86,,604,Radeon 660M,~34.8,11322,6062,32262,2.79,16.19,232.5,1459.5,570,3427.5,1463,8854,7.94,712.15,7.74,243.3,5343,224.34,86.33,9.84,5.5,0.96,0.61,397,712.5,5228.5,37856.5,,,,5910,28857,1417,7218,1452.5,6488.5,,,,,72306,230.7,226,233.5,185.35 -AMD Ryzen 5 7535U,Rembrandt R,Rembrandt (Zen 3+),3MB + 16MB,,28,2900 ‑ 4550,6/12,6,x86,,344,Radeon 660M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Ryzen 5 6600U,Rembrandt-U (Zen 3+),Rembrandt (Zen 3+),3MB + 16MB,,28,2900 ‑ 4500,6/12,6,x86,,710,Radeon 660M,~35.8,9908,6242,32097,2.73,17.15,233,1493,570,3623,1456.5,9159.5,8.12,692.42,4.69,146.55,6937,212,71.45,11.7,9.3,1.3,0.86,415,488.5,5486,44320,,,,6382.5,33338,1481,8602.5,1483,7529,1977,8310,,,,,,274,217 -Intel Core i3-1220P,Alder Lake-P,Alder Lake-P,9.5MB + 12MB,,28,1100 ‑ 4400,10/12,10,x86,,710,UHD Graphics 64EUs,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Core i5-1245U,Alder Lake-U,Alder Lake-M,9.5MB + 12MB,,15,1200 ‑ 4400,10/12,10,x86,,710,Iris Xe G7 80EUs,~37.2,12162,8303,37663,2.92,16.2,242,1311,649,3153,1690,8199,8.39,442.77,5.44,229.1,6154,263,78.35,9.47,9.2,1.5,0.87,388,712,5097,35918,,,,7065,33040,1585,8911,1675,9065,,,,,,,,271,240 -Intel Core i5-1335U,Raptor Lake-U,Raptor Lake-U,9.5MB + 12MB,,15,900 ‑ 4600,10/12,10,x86,,710,Iris Xe G7 80EUs,~41.4,12286,9351,40266,2.97,18.94,236,1472,643,3319,1684,7783,7.37,423.06,8.03,507.82,5178,256.95,81.84,9.2,9.5,1.7,0.87,414,804,5149,34186,,,,7007,30532,1641.5,8225,1672,7865,2312,8649,,64.5,83996,259.02,306,260,232 -Intel Core i5-1334U,Raptor Lake-U,Raptor Lake-U,9.5MB + 12MB,,15,900 ‑ 4600,10/12,10,x86,,710,Iris Xe G7 80EUs,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Core i7-1185G7,Tiger Lake-UP3,Tiger Lake,5MB + 12MB,,28,3000 ‑ 4800,4/8,10,x86,,1199,Iris Xe G7 96EUs,~32,9108,8872,27024.5,2.54,9.33,217,866,558.5,2090,1455.5,5383.5,7.12,380.38,5.78,240.41,6045,198.8,46.6,6.64,5.8,0.81,0.5,578.5,1102.5,5153,23471,,,,6437,22175,1531.5,5578.5,1529,5550,,,,,61608,172.8,166.5,253,189.9 -Intel Core i7-8850H,Coffee Lake-H,Coffee Lake,1.5MB + 9MB,,45,2600 ‑ 4300,6/12,14,x86,,2113,UHD Graphics 630,~30.4,10516,6766,34216.5,2.04,13.85,181.5,1090,441,2522,1096,5742,8.7,483,,,5922,216.1,71.35,7.61,7.4,1.2,0.73,490.1,,4689,30851,,,,5261,22631.5,1006,4860,1121,4908,,,,76.1,35232,,108.1,194, -Intel Core i5-8600K,Coffee Lake-S,Coffee Lake,1.5MB + 9MB,,95,3600 ‑ 4300,6/6,14,x86,,2535,UHD Graphics 630,~28.1,9078,6875,32863,2.07,10.76,181,989.5,,,,,8.76,496.45,5.69,188.8,4583,232.65,63.35,,5.4,0.89,0.53,,,,,,4217,18970,,,,,,,,,,68.1,,,,, -Intel Core i5-8500,Coffee Lake-S,Coffee Lake,1.5MB + 9MB,,65,3000 ‑ 4100,6/6,14,x86,,2083,UHD Graphics 630,~25.9,9903,8606,40829,1.96,10.21,172,950,,,,,9.22,541,26.52,848,4219,206.5,,7.86,5,0.87,0.52,494.8,,4513,23200,,,,,,,,,,,,,,,,,, -Intel Core i7-8750H,Coffee Lake-H,Coffee Lake,1.5MB + 9MB,,45,2200 ‑ 4100,6/12,14,x86,,2113,UHD Graphics 630,~31,10294.5,6471,33595,1.98,12.33,173,1116,412.5,2336.5,,,9.33,524,5.48,156.8,5310,200.3,67.2,7.8,7,1.2,0.72,469.25,,4629,31144,,4008,21920,5040,21648,,,1050,4820,,,,83,34163,,64.5,213, -AMD Ryzen 7 4700U,Renoir-U (Zen 2),Renoir (Ryzen 4000 APU),4MB + 8MB,,15,2000 ‑ 4100,8/8,7,x86,,1438,Vega 7,~31.7,8629,5524,24770.5,2.1,12.56,180,1094.5,466,2647,1220.5,7378,10.01,599,7.89,265.7,3963,191.3,57.4,8.43,5.25,1.01,0.64,477.5,858,4361.5,30954,16771,4351,20656,4841,21001,1128,5018,1131,5656,,,,90.4,43380.5,147,134.3,203, -AMD Ryzen 5 7530U,Barcelo-U Refresh,"Cezanne (Zen 3, Ryzen 5000)",3MB + 16MB,,15,2000 ‑ 4500,6/12,7,x86,,344,Vega 7,~44.2,,,,,,230.5,1457.5,565,3288,1443,8418.5,,,,,,,,10.7,,,,362,674,5339,37983,,,,,,1376.5,6396.5,1479,6390,1941,6500,,,72262,229.15,252,264,209 -AMD Ryzen 5 PRO 7530U,Barcelo-U Refresh,"Cezanne (Zen 3, Ryzen 5000)",3MB + 16MB,,15,2000 ‑ 4500,6/12,7,x86,,344,Vega 7,~40.1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1904,5548,,,,,,, -Intel Core i7-1165G7,Tiger Lake-UP3,Tiger Lake,5MB + 12MB,,28,2800 ‑ 4700,4/8,10,x86,,1200,Iris Xe G7 96EUs,~33.6,7454,8645,22636,2.49,7.94,218,850,564,1996.5,1457.5,5216,7.21,395.21,8.36,288.14,5717,197.95,46.3,6.45,5.7,0.82,0.46,587,1150,5217,23460,,,,6560.5,21250.5,1533,5200,1532.5,5174.5,,,,135.1,64672,173.7,178.45,253,199.4 -Apple A17 Pro,Coll APL1V02,Apple A-Series,,,,2110 ‑ 3780,6/6,3,ARM,,99,A17 Pro GPU,~55.6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2138,5305,2915,7222,13067,,87691,302.57,420.5,302.5, -Intel Core i5-1155G7,Tiger Lake-UP3,Tiger Lake,5MB + 8MB,,28,2500 ‑ 4500,4/8,10,x86,,929,Iris Xe G7 80EUs,~43.3,,,,,,211,890,550,2173,1419,5612,,,,,,,,7.49,,,,540,1011,4941,24992,,,,6305.5,22182,,,1473,5761,,,,,,205.85,233,244,190.05 -Intel Core i7-10810U,Comet Lake-U,Comet Lake,1MB + 12MB,,15,1100 ‑ 4900,6/12,14,x86,,1311,UHD Graphics 620,~26.9,6842.5,6926.5,19286.5,1.95,6.98,182,754,424,1713,1118.5,4310.5,7.98,510.87,5.9,236.33,4837,147.65,39.43,5.2,5.7,0.98,0.6,694,1346,4498,21925,,,,5203,22485,1233,5168,1226,3934,1563,4090,,,,,,206,161.3 -Intel Core i7-10710U,Comet Lake-U,Comet Lake,1MB + 12MB,,15,1100 ‑ 4700,6/12,14,x86,,1566,UHD Graphics 620,~26.1,10451,6972,31643.5,2.18,11.81,176,1059,460,2303,863,4079,8.19,507,5.24,174.25,4656.5,204,60.5,5.81,6.4,1.2,0.71,618,,4642,24493,,,,4615,17420,1043,4258,1227,5207,,,,,37343.5,150.3,,219, -AMD Ryzen 7 1700,Zen,Ryzen 7,4MB + 16MB,,65,3000 ‑ 3700,8/16,14,x86,,2479,UHD Graphics 750,~27.8,8335,4419,29330,1.66,15.7,147,1414,,,,,11.75,635.5,6,120,3447,153.85,74.4,,7.2,1.3,0.83,,,,,18461,3343,23920,3884,18457,,,,,,,,84.6,32176,,,, -AMD Ryzen 5 2600X,Zen+,Ryzen 5,4MB + 16MB,,95,3600 ‑ 4200,6/12,12,x86,,2073,UHD Graphics 750,~26.1,,4958,29954,1.81,14.56,163,1341,421,2688,,,11.35,616,4.62,133.8,4599,207.4,80.5,8.3,8,1.2,0.78,351.95,,4293,33222,,,,4641.5,22301,1067,5939,1144.5,6094,,,,,,,,186, -Intel Core i5-8400,Coffee Lake-S,Coffee Lake,1.5MB + 9MB,,65,2800 ‑ 4000,6/6,14,x86,,2535,UHD Graphics 630,~25.1,9474,6363.5,30789.5,1.9,10.99,169.5,941,,,,,9.5,526,6.2,191.8,5173,223.8,61.4,,5,0.83,0.5,488,,,,,,,5104,20500,,,,,,,,,,,,, -Intel Core i5-1235U,Alder Lake-U,Alder Lake-M,9.5MB + 12MB,,15,900 ‑ 4400,10/12,10,x86,,710,Iris Xe G7 80EUs,~47.7,,,,,,214,1086,620,2797,1610,5902,,,,,,,,9.18,,,,448,859,5083,31892,,,,,,1592,7643,1572,6220,2208,7046,,99.6,80117,232.37,265,261,231 -AMD Ryzen 5 5625U,Barcelo-U (Zen 3),"Cezanne (Zen 3, Ryzen 5000)",3MB + 16MB,,15,2300 ‑ 4300,6/12,7,x86,,710,Vega 7,~35.9,11440,5806,29724,2.64,15.89,223,1447,544,3224,1379,8290,9.84,519.24,6.46,206.52,6340.5,229.1,82.1,10.3,6.15,1,0.65,365,653,5246,37708,,,,5812,24531,1384,6032,1417,5947,,,,105.8,69094.5,220.57,215.55,260,203 -AMD Ryzen 5 5625C,Barcelo (Zen 3),"Cezanne (Zen 3, Ryzen 5000)",3MB + 16MB,,25,2300 ‑ 4300,6/12,7,x86,,589,Vega 7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Ryzen 5 5600U,Cezanne-U (Zen 3),"Cezanne (Zen 3, Ryzen 5000)",3MB + 16MB,,25,2300 ‑ 4200,6/12,7,x86,,1072,Vega 7,~33.3,11308,2866.25,28347,2.63,14.78,223,1321,534,3067,1371,7792.5,8.66,454.57,5.38,156.33,6858,235,78.48,9.84,7.7,1.1,0.78,412.5,798,5204.5,37815.5,,,,5854,24495,1371,6117,1391,5773,,,,,65343,197.3,185.9,255.5,200 -AMD Ryzen 5 PRO 5675U,Barcelo-U PRO (Zen 3),"Cezanne (Zen 3, Ryzen 5000)",3MB + 16MB,,15,2300 ‑ 4300,6/12,7,x86,,1072,Vega 7,~44.1,,,,,,215.5,1326,537,2991.5,1387.5,7866.5,,,,,,,,9.45,,,,390.5,716,5093.5,35208.5,,,,5814,23357,1341,5207,1363.5,5227,,,,109.2,66431.5,210.98,212.5,241,192.55 -AMD Ryzen 5 PRO 5650U,Cezanne-U PRO (Zen 3),"Cezanne (Zen 3, Ryzen 5000)",3MB + 16MB,,15,2300 ‑ 4200,6/12,7,x86,,1072,Vega 7,~28.6,11124,2.24,12.47,2.6,14.19,218,1207,531,2488,1363,6429,8.61,475.8,8.21,270.4,5905,216.1,70.6,8.39,7.9,1.1,0.76,443.1,,5031,35235,,,,5726,24383,1341,5874,1353,5736,,,,,65444,,,246, -AMD Ryzen 5 5560U,Cezanne-U (Zen 3),"Cezanne (Zen 3, Ryzen 5000)",3MB + 16MB,,25,2300 ‑ 4000,6/12,7,x86,,1072,Vega 6,~43.5,,,,,,202,1280,498,3019,1260,7667,,,,,,,,10,,,,392,677,4740,38281,,,,,,,,1318,5955,1765,6723,,,,239.48,,250,192.4 -Intel Core i7-1260U,Alder Lake-U,Alder Lake-M,9.5MB + 12MB,,9,800 ‑ 4700,10/12,10,x86,,710,Iris Xe G7 96EUs,~42.3,,,,,,222,1117,588,2838,1538,7444,,,,,,,,8.54,,,,431,801,4746,32008,,,,,,1555,7077,1560,7072,,,,,,224.23,,236,213 -Intel Core i7-1250U,Alder Lake-U,Alder Lake-M,9.5MB + 12MB,,9,800 ‑ 4700,10/12,10,x86,,710,Iris Xe G7 96EUs,~45.1,,,,,,226,1222,611.5,2874,1567.5,7402,,,,,,,,8.55,,,,454.5,840,4780,31380,,,,,,1547,7072,1627,7019.5,,,,,81256,226.25,255,268.5,230 -AMD Ryzen 5 4680U,Renoir-U (Zen 2),Renoir (Ryzen 4000 APU),3MB + 8MB,,15,2200 ‑ 4000,6/12,7,x86,,976,Vega 7,~27.2,,5301,31826,2,15.63,170,1291,451,2478,1163,7073,10.5,581,8.2,248.6,3576,,,7.66,8.3,1.4,1.2,458,,4077,32745,,,,,,,,1078,5785,,,,,47184,133.8,123.5,198, -AMD Ryzen 5 2600,Pinnacle Riege (Zen+),Ryzen 5,3MB + 16MB,,65,3400 ‑ 3900,6/12,12,,,2072,UHD Graphics 750,~25.2,9290,4726,28173,1.76,13.71,157.3,1248,380,2793,,,11.17,615,5.5,140.9,4517,205.3,75,7.81,7.5,1,0.73,374.95,,4020,30898,,,,5109,23018,1020,5885,1118.5,6069.5,,,,,,,,179, -Intel Core i5-11400T,Rocket Lake,Rocket Lake,3MB + 12MB,,35,1300 ‑ 3700,6/12,14,x86,,1004,UHD Graphics 730,~22.2,7263,6122,20362,1.79,7.3,153,642,378,1500,972,3891,10.09,543.45,7.8,261.3,4409,154.5,40,5.24,4.2,0.65,0.41,704,,4157,19699,,,,4855,17082,1130,3495,1146,3510,,,,,,,,208, -AMD Ryzen 5 5500U,Lucienne-U (Zen 2),"Lucienne (Zen 2, Ryzen 5000)",3MB + 8MB,,25,2100 ‑ 4000,6/12,7,x86,,1072,Vega 7,~28.1,9184.5,5313,27437,1.99,11.41,177,1247,457,2698,1172,7186,10.46,574,6.22,181.3,3945,162.3,45.31,8.48,4.3,0.82,0.54,416.5,748.5,4324,33768,,,,4798,21901,1119.5,5515,1108,5438.5,,,,,50330,149.45,153.9,206,156.3 -AMD Ryzen 5 4600U,Renoir-U (Zen 2),Renoir (Ryzen 4000 APU),3MB + 8MB,,15,2100 ‑ 4000,6/12,7,x86,,1438,Vega 6,~36.1,,,,,,175.5,1089,447,2544,,,,,,,,,,8.8,,,,402,,4247,34854,,,,,,,,1105,5591,,,,,,,,199, -AMD Ryzen 5 PRO 4650U,Renoir-U PRO (Zen 2),Renoir (Ryzen 4000 APU),3MB + 8MB,,15,2100 ‑ 4000,6/12,7,x86,,1317,Vega 6,~30.1,10182,5289,27559,2.02,12.94,175,1161,453.5,2599,,,7.2,366,,,3795,,,7.9,5.4,1.2,0.81,428.5,,4223,31980,,4010,22199,4475,19220,,,1071,4648.5,,,,,44814.5,124.3,124.9,186, -Intel Core i5-11320H,Tiger Lake-H35,Tiger Lake,5MB + 8MB,,35,3200 ‑ 4500,4/8,10,x86,,835,Iris Xe G7 96EUs,~32.9,10886,8767,32576,2.51,10.78,214,905.5,560.5,2267.5,1460.5,5852,7.51,389.7,5.9,191.4,5481,,,7.57,6.1,0.92,0.53,528.5,995,5025,24760,,,,6238,22045,1493.5,5259,1505,5308,,,,,67714,204.59,,260.5,206 -Qualcomm Snapdragon 8 Gen 3,Cortex-X4 / A720 / A720 / A520 (Kryo),Snapdragon,+ 8MB,,,2300 ‑ 3300,8/8,4,ARM v9,,57,Adreno 750,~46.7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1687,6439,2303.5,7188,,,54365,202,226,254,181 -Intel Core i5-11300H,Tiger Lake-H35,Tiger Lake,5MB + 8MB,,35,3100 ‑ 4400,4/8,10,x86,,1068,Iris Xe G7 80EUs,~34.2,10250,8663,30491,2.48,10.97,187,961,529,2247.5,1378,5702,7.98,404.7,,,4926,215.6,58.9,7.32,5.3,0.78,0.45,530,,4930.5,24688.5,,,,6019,18976,,,1415,4749,,,,163.2,62911,183.8,188,238, -Intel Core i5-1240U,Alder Lake-U,Alder Lake-M,9.5MB + 12MB,,9,800 ‑ 4400,10/12,10,x86,,710,Iris Xe G7 80EUs,~43.2,,,,,,226,1242,596,2990,1559,7902,,,,,,,,9.13,,,,407,744,4446,31097,,,,,,1547,7029,1596,7066,,,,,,235.82,,266,221 -Intel Core i5-1230U,Alder Lake-U,Alder Lake-M,9.5MB + 12MB,,9,700 ‑ 4400,10/12,10,x86,,710,Iris Xe G7 80EUs,~31.7,6641,7290,17243,,,186.8,514,469,1653,1310,4402,7,365,14,576,4985,152.65,41.8,5.96,,,,754,1458.5,3969,20092,,5120,21447,,,1471.5,5505.5,1529,6755,,,,,,193.59,,233.5,204.2 -Intel Core i3-1315U,Raptor Lake-U,Raptor Lake-U,5MB + 10MB,,15,900 ‑ 4500,6/8,10,x86,,346,UHD Graphics 64EUs,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Core i3-1215U,Alder Lake-U,Alder Lake-M,5MB + 10MB,,15,900 ‑ 4400,6/8,10,x86,,710,UHD Graphics 64EUs,~36.3,,7879,19430,2.79,10.99,217.5,809,581.5,1966,1511.5,5181.5,7.27,372.38,3.41,98.31,7944,199.3,50.05,5.32,11.6,1.7,1.1,664.5,1249.5,5031.5,22883,,,,6801,23138,1501,6005,1539,5258.5,2082,5213,,,78716,254.6,281,312,237.5 -Intel Core i5-10400H,Comet Lake-H,Comet Lake,1MB + 8MB,,45,2600 ‑ 4600,4/8,14,x86,,1352,UHD Graphics 630,~25.6,9578,7403,25731,2.18,9.62,192,796,471,1924,,,8.14,484.5,24.93,801,4115,191.4,49.05,6.14,5.3,0.95,0.55,565,,4766,23136,,,,,,,,1245,4332,,,,,,,,, -Intel Core i3-10320,Comet Lake-S,Comet Lake,1MB + 7.9MB,,65,3800 ‑ 4600,4/8,14,x86,,1304,UHD Graphics 630,~32,9911,7164,28383,2.1,10.5,188,949,458,2320,1185,5986,9.73,516,,,,218,58.8,8.16,5.3,0.91,0.53,469,,4899,25864,,,,,,,,1217,4846,,,,160,,149.4,168,224, -Intel Core i5-1145G7,Tiger Lake-UP3,Tiger Lake,5MB + 8MB,,28,2600 ‑ 4400,4/8,10,x86,,1200,Iris Xe G7 80EUs,~29.7,8922.5,8274.5,25545,2.31,9.27,202.5,791.5,531,1841.5,1374.5,4880,7.51,389.85,8.35,281.14,4706.5,192,46.3,6.03,5.6,0.76,0.45,641,1116,4802,21844,,,,6226,20787,1423,5351,1428.5,5261,,,,,,,,238.5,177.4 -Intel Core i5-1135G7,Tiger Lake-UP3,Tiger Lake,5MB + 8MB,,28,2400 ‑ 4200,4/8,10,x86,,1200,Iris Xe G7 80EUs,~31.7,8274,8116,25271,2.33,9.29,198,822,515,1859,1345,4894,8.08,412.7,6.66,259.07,5283,182.53,41.4,5.97,5.2,0.76,0.45,649.5,1254,4723.5,21892.5,,,,5911,18889,1379,4761.5,1384,4688,,,,143.3,58147,168.8,182.3,226.5,180.4 -AMD Ryzen 3 7440U,Phoenix-U (Zen 4 + Zen 4c),"Phoenix (Zen 4, Ryzen 7040)",4MB + 8MB,,28,3000 ‑ 4700,4/8,4,x86,,206,Radeon 740M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Core i5-10300H,Comet Lake-H,Comet Lake,1MB + 8MB,,45,2500 ‑ 4500,4/8,14,x86,,1352,UHD Graphics 630,~25.8,9744,7130,27692,2.16,10.06,186,892,455.5,2113.5,1121,4863.5,8.72,516,7.12,215.2,4825,190.2,53.3,7.27,3.1,0.69,0.39,514,,4903,24259,,,,5199,17278,1172.5,4365,1205,4399,,,,,48896,140.6,131.8,210.5, -AMD Ryzen 3 8440U,Hawk Point-U (Zen 4 + Zen 4c),"Hawk Point (Zen 4/4c, Ryzen 8040)",4MB + 8MB,,28,3000 ‑ 4700,4/8,4,x86,,17,Radeon 740M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Ryzen 5 4500U,Renoir-U (Zen 2),Renoir (Ryzen 4000 APU),3MB + 8MB,,15,2300 ‑ 4000,6/6,7,x86,,1438,Vega 6,~28.8,8933.5,5337,24155.5,2.03,10.91,174,892,447.5,2219,1152,5920,10.25,622,8.3,171.9,3493,210,59.3,6.93,4.9,0.89,0.53,584,,4288,24101,14964,3960,18690,4624,18561,1074,4282,1097,4632,,,,99,48506,139.5,94.1,197, -Intel Core i7-8809G,Kaby Lake-G,Core i7,1MB + 8MB,,100,3100 ‑ 4200,4/8,14,x86,,2165,Vega M GH,~27.6,8837,6668,25809,1.99,9.41,179,865,404,2005,,,9.78,484.9,6.57,190.85,5984,200.3,53.4,7.1,4.8,0.82,0.48,537,,4101,19347,,,,5268,17183,,,,,,,,78.6,34543,,,, -Intel Core i5-8500T,Coffee Lake-S,Coffee Lake,1.5MB + 9MB,,35,2100 ‑ 3500,6/6,14,x86,,2023,UHD Graphics 630,~21.7,8062,5493,25971,1.65,8.6,145,843,,,,,10.71,567,8.03,235.1,4331,196,51.8,6.3,3.4,0.63,0.36,561,,,,,,,4626,18335,,,,,,,,,,,,, -Intel Core i5-9400H,Coffee Lake-H,Coffee Lake,1MB + 8MB,,45,2500 ‑ 4300,4/8,14,x86,,1690,UHD Graphics 630,~8.7,,,,,9.44,,823,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Ryzen 5 1600,Zen,Ryzen 5,3MB + 16MB,,65,3200 ‑ 3600,6/12,14,x86,,2439,UHD Graphics 750,~27.1,8244,4538,25970,1.65,12.57,147,1129,349,2578,915,6468,11.98,650,6.85,149,3430,177,68.7,7.21,6.4,1,0.66,404.1,,3834,30143.5,16217,3189,19391,3841,18788,914.5,5402.5,950,5424.5,,,,89,30668,,,180, -AMD Ryzen 3 3300X,Matisse (Zen 2),Matisse (Ryzen 3000 Desktop),2MB + 16MB,,65,3800 ‑ 4300,4/8,7,x86,,1317,UHD Graphics 750,~27.8,,5856,25416,2.28,11.82,195,1071,500,2430,,,9.51,531,6.04,164.5,7177,233.5,61.8,8.28,5.9,0.97,0.57,449.4,,5329,30353,,,,5753,20529,1299,5406,1296,5311,,,,,,,,233, -Intel Core i5-10200H,Comet Lake-H,Comet Lake,1MB + 8MB,,45,2400 ‑ 4100,4/8,14,x86,,1200,UHD Graphics 610,~32.7,,,,,,171.6,842,419,2082,1089,5372,,,,,,,,6.48,,,,515,,4497,21148,,,,,,,,1094,3845,,,,,,,,187.3, -Intel Core i5-1038NG7,Ice Lake-U,Ice Lake,2MB + 6MB,,28,2000 ‑ 3800,4/8,10,x86,,1320,Iris Plus Graphics G7 (Ice Lake 64 EU),~26.9,7844,6743,23609,2.03,7.47,169,768,438,1998,,,9.45,756,11.2,355,,,,5.99,,,,4.2,,4161,19485,,,,,,,,1265,4564,,,,,45151,142.9,115,180, -Intel Core i7-8709G,Kaby Lake-G,Core i7,1MB + 8MB,,100,3100 ‑ 4100,4/8,14,x86,,2165,Vega M GH,~28.5,,,,,,158,791,,,,,,,,,,,,,,,,,,,,,,,4436,14863,,,,,,,,,,,,, -Intel Core i7-8706G,Kaby Lake-G,Core i7,1MB + 8MB,,65,3100 ‑ 4100,4/8,14,x86,,2168,Vega M GL / 870,~23,,6549,24130,1.99,8.44,172,781,,,,,9.48,505,6.64,199.6,5047,182.6,50,6.35,2.4,0.7,0.42,624,,,,,,,5011,16256,,,,,,,,,28486,,,, -Intel Core i7-8705G,Kaby Lake-G,Core i7,1MB + 8MB,,65,3100 ‑ 4100,4/8,14,x86,,2168,Vega M GL / 870,~23.2,,6436,23794,1.93,7.62,174,746,414,1883,,,9.25,504,6.67,197.6,4969,181.2,50.1,,4.6,0.77,0.45,,,,,,,,5009,16066,1066,4029,1059,4047,,,,82.9,32262,,,, -Intel Core i7-1068G7,Ice Lake U,Ice Lake,2MB + 8MB,,28,2300 ‑ 4100,4/8,10,x86,,1597,Iris Plus Graphics G7 (Ice Lake 64 EU),~28.7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1173,4449,,,,,,,,, -Intel Core i5-9300HF,Coffee Lake-H,Coffee Lake,1MB + 8MB,,45,2400 ‑ 4100,4/8,14,x86,,1690,UHD Graphics 750,~28.7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4447,14512,,,1090,4370,,,,,,,,, -Intel Core i5-9300H,Coffee Lake-H,Coffee Lake,1MB + 8MB,,45,2400 ‑ 4100,4/8,14,x86,,1690,UHD Graphics 630,~29.3,8107,6572,24623,,,172,790,419,1737,,,9.1,496,,,5663,193.7,49.4,6,4.7,0.84,0.5,602,,4609,22133,,3854.5,15527.5,4901,16541,1123,4146,,,,,,86.6,33646,,63.6,222, -Intel Core i5-8400H,Coffee Lake-H,Coffee Lake,1MB + 8MB,,45,2500 ‑ 4200,4/8,14,x86,,2113,UHD Graphics 630,~27.4,,6659,21711,,,170.4,761.5,393,1793,1128,4657,8.97,498.29,7.2,230.75,5391,185.2,45.25,6.49,4.6,0.78,0.47,596,1151,4553,22023,,,,,,1118,4211,1127,4352,1493,4963,,,49389,168,195,209,155.3 -Intel Core i7-8559U,Coffee Lake-U,Coffee Lake,1MB + 8MB,,28,2700 ‑ 4500,4/8,14,x86,,2082,Iris Plus Graphics 655,~24.4,8313,7249,23215,2.17,7.32,188,798,466,1691,,,8.33,464.1,6.54,234.6,6656,191.4,45.59,5.71,5,0.81,0.47,666,,5498.5,26301.5,13909,,,5383.5,18095,1150,4440,723,3660,,,,,,,,, -Intel Core i5-8300H,Coffee Lake-H,Coffee Lake,1MB + 8MB,,45,2300 ‑ 4000,4/8,14,x86,,2113,UHD Graphics 630,~26.3,,6463.5,22266.5,1.9,7.84,170,812,,,,,9.36,548.5,7.66,265.3,,169,40.15,,3.9,0.6,0.39,,,,,,3740,15050,4770,14790,,,990,3270,,,,88.5,33251,,,, -AMD Ryzen 5 1500X,Zen,Ryzen 5,2MB + 16MB,,65,3500 ‑ 3700,4/8,14,x86,,2439,UHD Graphics 750,~24.5,7403,4573,20186,1.73,8.95,154,805,360,1783,947,4597,10.95,640,6.9,210.6,3910,177,49.5,5.11,4.9,0.74,0.47,586,,3865,21842,13198,,,4282,15134,915,4035,918.5,4603.5,,,,74.8,36017,,,177.5, -Intel Core i7-1180G7,Tiger Lake-UP4,Tiger Lake,5MB + 12MB,,15,2200 ‑ 4600,4/8,10,x86,,1199,Iris Xe G7 96EUs,~34.2,,,,,,188,549,492,1301,1280,3434,,,,,,,,4.7,,,,844,,5108,19703,,,,6260,19898,1530,5254,1525,5304,,,,,,157.1,,242, -Intel Core i5-9400F,Coffee Lake-R,Coffee Lake,1.5MB + 9MB,,65,2900 ‑ 4100,6/6,14,x86,,1803,UHD Graphics 750,~26.2,,6490,31523,1.95,11.27,173,984,416,2378,,,9.3,499.8,6.76,198.7,5794,234,64,9.07,5.2,0.86,0.51,468.5,,4678,25639,,,,5347,21830,1132,5698,1139,5715,,,,,,,,211, -AMD Ryzen 3 3100,Matisse (Zen 2),Matisse (Ryzen 3000 Desktop),2MB + 16MB,,65,3600 ‑ 3900,4/8,7,x86,,1317,UHD Graphics 750,~25.2,,5181,23406,1.99,10.93,178,991,446,2282,,,10.64,594,6.58,177.6,4848,202.5,58.6,7.58,5.4,0.91,0.52,486.4,,4602,27541,,,,5162,18756,1138,5023,1135,5005,,,,,,,,209, -AMD Ryzen 3 PRO 4450U,Renoir PRO (Zen 2),Renoir (Ryzen 4000 APU),2MB + 4MB,,15,2500 ‑ 3700,4/8,7,x86,,1317,Vega 5,~25.1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1033,3657,,,,,,,,, -Intel Core i3-10100,Comet Lake-S,Comet Lake,1MB + 6MB,,65,3600 ‑ 4300,4/8,14,x86,,1324,UHD Graphics 750,~25.8,,6863,26903,2.05,9.93,181,895,436,2181,,,8.93,481.8,6.34,194.1,6124,212.5,55.8,7.74,5,0.86,0.5,493.65,,4853,24355.5,,,,5563,18692,1183.5,4748,1187.5,4758,,,,,,,,207.5, -Intel Core i3-10100F,Comet Lake,Comet Lake,1MB + 6MB,,65,3600 ‑ 4300,4/8,14,x86,,1159,UHD Graphics 750,~25.9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1072,3650,,,,,,,,, -Intel Core i3-9100F,Coffee Lake-R,Coffee Lake,1MB + 6MB,,65,3600 ‑ 4200,4/4,14,x86,,1697,UHD Graphics 750,~23.5,,6509,18118,1.95,5.38,171,634,414,1175,,,9.31,495.5,11.81,345.9,4052,218,44.35,6.12,3,0.5,0.32,687,,4682,17150,,,,5301,15937,1146,4060,1152,4074,,,,,,,,204, -AMD Ryzen 5 2400G,Zen,Raven Ridge (Ryzen 2000 APU),2MB + 4MB,,65,3600 ‑ 3900,4/8,14,x86,,2165,Vega 11,~21.7,6672,4805,21024,1.77,9.46,155.65,846.5,382.5,1849.5,,,11.27,624,6.9,198,3846,171.6,47.95,5.09,5.2,0.81,0.5,550.5,,3909,19885,,,,4268,13653,990,3825,1001,3885,,,,,,,,170, -Intel Core i5-8305G,Kaby Lake-G,Core i5,1MB + 6MB,,65,2800 ‑ 3800,4/8,14,x86,,2168,Vega M GL / 870,~21.4,7755,5844,21845,1.79,7.47,157,710,,,,,10.81,565,7.13,215.8,4459,166.2,45.87,,4.1,0.71,0.41,,,,,,,,,,,,,,,,,89.5,30273,,,, -Intel Core i7-8557U,Coffee Lake-U,Coffee Lake,1MB + 8MB,,28,1700 ‑ 4500,4/8,14,x86,,1613,Iris Plus Graphics 645,~26.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1079,4119,,,,,,,,, -Intel Core i5-8269U,Coffee Lake-U,Coffee Lake,1MB + 6MB,,28,2600 ‑ 4200,4/8,14,x86,,2082,Iris Plus Graphics 655,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Core i5-8279U,Coffee Lake-U,Coffee Lake,1MB + 6MB,,28,2400 ‑ 4100,4/8,14,x86,,1717,Iris Plus Graphics 655,~25.9,8830,6551,24096,1.93,8.29,167.5,750,421,1717,,,9.2,512,8.55,266.1,5862,190,45.7,6,,,,627,,4276,22683,,,,4850,17643,,,,,,,,,44259,137.5,110,, -Intel Core i7-1160G7,Tiger Lake-UP4,Tiger Lake,5MB + 12MB,,15,2100 ‑ 4400,4/8,10,x86,,1199,Iris Xe G7 96EUs,~27.6,,8212,26247,2.39,9.64,200.5,816,514.5,1699,1266,3896,8.08,422.6,10.13,327.8,4779,,,4.05,4.9,0.73,0.41,910.5,,4596,17006,,,,,,,,1437,4917,,,,,55945,155,151.1,231.5, -Intel Core i7-1065G7,Ice Lake-U,Ice Lake,2MB + 8MB,,15,1300 ‑ 3900,4/8,10,x86,,1661,Iris Plus Graphics G7 (Ice Lake 64 EU),~28.3,9208.5,7270.5,22401.5,2.11,7.22,178.1,662.5,449,1543,1131,3437,11.68,481,7.7,255.6,4956,184.9,45.05,4.48,5,0.76,0.46,836,,4393,17254.5,,3863,14396,5637.5,18459.5,1310,4648,1316,4406.5,,,,88.9,36670,148.2,132.8,201.5, -Apple A16 Bionic,Crete,Apple A-Series,20MB + 24MB,,,2020 ‑ 3460,6/6,4,ARM,,464,A16 GPU 5-Core,~55,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1883,5433,2597.5,6680.5,10812,56.2,73142.5,269.34,373,287.5,201.5 -Apple A15 Bionic,,Apple A-Series,16MB + 32MB,,,2020 ‑ 3230,6/6,5,ARM,,822,A15 GPU 5-Core,~47.6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1734,4788,2332,5661,10410.5,77,64026.5,181.7,242.5,250,188 -Qualcomm Snapdragon 8 Gen 2 for Galaxy,Cortex-X3 / A715 / A710 / A510 (Kryo),Snapdragon,+ 8MB,,,2000 ‑ 3360,8/8,4,ARM v9,,399,Adreno 740,~44.1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8380,21209,,,1556,4989,2059.5,5443.5,,,60115,169.81,170.5,231,165 -AMD Ryzen 7 3780U,Picasso-U (Zen+),Picasso (Ryzen 3000 APU),2MB + 4MB,,15,2300 ‑ 4000,4/8,12,x86,,1804,Vega 11,~18.8,,,,,,166,788,290,1580,,,,,,,,,,,,,,,,,,,,,,,890,3380,940,3050,,,,,,,,, -Qualcomm Snapdragon 8 Gen 2,Cortex-X3 / A715 / A710 / A510 (Kryo),Snapdragon,+ 8MB,,,2000 ‑ 3200,8/8,4,ARM v9,,399,Adreno 740,~39.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8169,21216,,,1493,5005,2006,5198,,,43632,140.57,112,211,139 -AMD Ryzen 5 1400,Zen,Ryzen 5,2MB + 8MB,,65,3200 ‑ 3400,4/8,14,x86,,2439,UHD Graphics 750,~19.1,6436.5,4204.5,17556.5,1.53,7.78,133.75,688,329,1537,832,3985,13.88,732.5,7.8,237.15,2758,146.9,43,4.41,4.1,0.62,0.41,682,,3370,19219,10513,,,3715,12846,817,3410,831,3037.5,,,,,,,,, -Intel Core i5-8259U,Coffee Lake-U,Coffee Lake,1MB + 6MB,,28,2300 ‑ 3800,4/8,14,x86,,2082,Iris Plus Graphics 655,~23.8,7916,5706,21869,1.67,7.07,148.65,615,381,1471,976.5,3728,11.12,589.33,7.48,248.62,5348,165.13,39.5,5.36,4.1,0.75,0.45,729.5,1331,3975.5,19104.5,,,,4211,13961,948,3567,951,3607,,,,,,121,,176,140.3 -Intel Core i5-8257U,Coffee Lake-U,Coffee Lake,1MB + 6MB,,15,1400 ‑ 3900,4/8,14,x86,,1619,Iris Plus Graphics 645,~28.3,,,,,,157.65,633.5,393,1519.5,1003,4033,,,,,,,,5.28,,,,714,,4083,19620,,,,4608,16580,989,4181,948,3858,,,,,39387.5,129.8,107.5,210, -Intel Core i7-10610U,Comet Lake-U,Comet Lake,1MB + 8MB,,15,1800 ‑ 4900,4/8,14,x86,,1311,UHD Graphics 620,~25.6,8163,7163,17253,2.08,7.46,178,604.5,446,1477,1207,4048.5,7.78,467.3,6.67,295.5,4786,183.1,43.9,4.57,5,0.86,0.52,791,,4666.5,18717.5,,,,,,,,1243.5,4123.5,,,,,51613,149.2,,211, -Intel Core i7-10510U,Comet Lake-U,Comet Lake,1MB + 8MB,,15,1800 ‑ 4900,4/8,14,x86,,1566,UHD Graphics 620,~31.5,6125,7268,25882,1.95,6.69,182,678,441,1422,1152,3734,,,,,,,,4.6,,,,797,,4678,17318,,4427,16790,5368,17109,1214,3669.5,1212,3663,,,,,38295,138.5,70.9,210, -AMD Ryzen 3 1300X,Zen,Ryzen 3,2MB + 8MB,,65,3500 ‑ 3700,4/4,14,x86,,2331,UHD Graphics 750,~23.8,6310,4676,16094,1.72,6.37,152,558,345,1336,947,3486,10.97,619,10.8,334.8,2677,181.6,38.4,4.13,3,0.46,0.29,870,,3772,13712,,,,4327,12230,,,920,5210,,,,81,35289,,,171, -Intel Core i5-1035G7,Ice Lake-U,Ice Lake,2MB + 6MB,,15,1200 ‑ 3700,4/8,10,x86,,1661,Iris Plus Graphics G7 (Ice Lake 64 EU),~23.1,8736,6449.5,19601,1.91,6.41,170,712,427,1233,,,9.17,456.5,7.75,265,4513,167.5,38.1,4.67,4.7,0.75,0.43,794,,4205,18342,,,,5439,17322,1135,3488,1163,2713,,,,,33114,,,186, -Intel Core i5-1035G4,Ice Lake-U,Ice Lake,2MB + 6MB,,15,1100 ‑ 3700,4/8,10,x86,,1661,Iris Plus Graphics G4 (Ice Lake 48 EU),~23.3,7425.5,6829,22252,2.04,7.35,169,602.5,426,1304.5,1119,3800,9.19,458.3,7.4,307.8,4526,154.1,35.8,3.97,4.7,0.76,0.43,958,,4086.5,13057,,,,5376,17202,1197,4206,1235,3986,,,,,35435,,,176, -AMD Ryzen 7 3750H,Picasso (Zen+),Picasso (Ryzen 3000 APU),2MB + 4MB,,35,2300 ‑ 4000,4/8,12,x86,,1804,Vega 10,~22.5,7431,4770,20687,1.64,9.21,144,734,364.5,1713,971,3897,10.95,650,7.44,197.1,2866,139.4,48.58,4.35,5,0.69,0.47,633,,3659,18689,,3768,14748.5,4166,13403.5,884,3571.5,874,3537,,,,,30626,112.7,,153, -Qualcomm Snapdragon 8cx Gen 3,Cortex-X1 / A78,Snapdragon,6MB + 8MB,,7,2400 ‑ 2995,8/8,5,ARM,,743,Adreno 690,~22.6,3876,2481,13940,1.38,9.23,119.05,748.5,205,1248,598,3567,17.47,847.99,8.67,305.27,4046,146.9,33.2,2.52,,,,1080,1625.5,3915,23989,,,,3460,15240,665,3796.5,1588,5989.5,,,,,49893,166.42,150,90.45,67.2 -AMD Ryzen 7 3700U,Picasso-U (Zen+),Picasso (Ryzen 3000 APU),2MB + 4MB,,15,2300 ‑ 4000,4/8,12,x86,,1804,Vega 10,~23,4595,4410.5,15461,1.59,7.6,139,672,343,1499,,,12.58,748,13.48,450.4,2392,104.8,27.1,3.3,3.8,0.63,0.39,703,,3492.5,15386.5,10025,3003,10238,3843.5,10542,,,,,,,,147.3,27490,,35.3,154, -AMD Ryzen 7 PRO 3700U,Zen+,Picasso (Ryzen 3000 APU),2MB + 4MB,,15,2300 ‑ 4000,4/8,12,x86,,1712,Vega 10,~24.4,,,,,,149,658,,,,,,,,,,,,3.6,,,,785,,3680,16735,,,,3928,11249,839,3091,808,3018,,,,,27979,,39,, -AMD Ryzen 3 7335U,Rembrandt R,Rembrandt (Zen 3+),2MB + 8MB,,28,3000 ‑ 4300,4/8,6,x86,,344,Radeon 660M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Core i5-10310U,Comet Lake-U,Comet Lake,1MB + 6MB,,15,1700 ‑ 4400,4/8,14,x86,,1311,UHD Graphics 620,~32.7,,,,,,170,546,438,1327,1051,3094,,,,,,,,4.09,,,,864,,4274,16475,,,,4814.5,12621,1040,2931,1122,3717.5,,,,202.3,46029,124.85,,195, -Intel Core i5-1035G1,Ice Lake-U,Ice Lake,2MB + 6MB,,15,1000 ‑ 3600,4/8,10,x86,,1661,UHD Graphics G1 (Ice Lake 32 EU),~22.9,,6869.5,21298.5,1.97,5.81,167.5,606,428,1311,1016,4027,25.5,789,10.8,454.1,3800,,,4.2,4.2,0.65,0.39,863,,4159,15156,,,,5183,15042.5,1136,3505,1219,3858,,,,,35437.5,132.4,58.1,178, -Intel Core i7-8665U,Whiskey Lake-U,Core i7,1MB + 8MB,,15,1900 ‑ 4800,4/8,14,x86,,1704,UHD Graphics 620,~25,6365,6872,18426.5,1.67,4.88,180,670,427,1346,988,2729,8,521,9.98,429.3,3418,139,32,4.5,2.6,0.45,0.27,754.5,,4705.5,18298,,3887,14277,5342.5,16347,1196,3453,1039,2671,,,,235,34548,,63.1,, -Intel Core i7-8650U,Kaby Lake Refresh,Kaby Lake Refresh,1MB + 8MB,,15,1900 ‑ 4200,4/8,14,x86,,2307,UHD Graphics 620,~23.2,6936,6629,18635,1.92,6.82,169,605,,,,,8.84,508,9.94,302.8,4319,169.6,39.75,,4.3,0.72,0.44,,,,,,,,,,,,,,,,,74.4,33906,,,227, -Intel Core i5-10210U,Comet Lake-U,Comet Lake,1MB + 6MB,,15,1600 ‑ 4200,4/8,14,x86,,1566,UHD Graphics 620,~25.2,6363,6412,16072,1.89,7.5,166,616,415,1242,1062,3794,8.96,516.5,6.78,217.8,4213,169.5,43.85,4.31,4.65,0.8,0.49,829,,4261,16742,,3457,12114,4696.5,14139,1067.5,3467.5,1079,3689,,,4130,245.45,34153,127.45,116.5,191, -Intel Core i7-8565U,Whiskey Lake-U,Core i7,1MB + 8MB,,15,1800 ‑ 4600,4/8,14,x86,,1942,UHD Graphics 620,~26.1,6158,6644,16760,1.93,6.8,173,608.5,411.5,1181.5,,,8.36,508,9.55,360.2,4291.5,140.9,33.71,4.71,4,0.72,0.44,806.5,,4737,18860,10600,3851,12302.5,5142.5,13888,1197,3176,1135.5,3073.5,,,,152.7,34884.5,,59.7,202, -Intel Core i7-1060NG7,Ice Lake Y,Ice Lake,2MB + 8MB,,10,1200 ‑ 3800,4/8,10,x86,,1365,Iris Plus Graphics G7 (Ice Lake 64 EU),~27,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1153,2940,,,,,,,,, -Intel Core i7-1060G7,Ice Lake Y,Ice Lake,2MB + 8MB,,9,1000 ‑ 3800,4/8,10,x86,,1597,Iris Plus Graphics G7 (Ice Lake 64 EU),~26.7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1167,2322,,,,,,,,, -Intel Core i5-1034G1,Ice Lake U,Ice Lake,2MB + 6MB,,15,800 ‑ 3600,4/8,10,x86,,1661,UHD Graphics G1 (Ice Lake 32 EU),~35.2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5090,16969,,,,,,,,,,,,, -Intel Core i5-8365U,Whiskey Lake-U,Core i5,1MB + 6MB,,15,1600 ‑ 4100,4/8,14,x86,,1704,UHD Graphics 620,~22.5,6330,6557,16518,1.91,5.74,166,579,421,1408,,,9.15,546,7.72,296.7,3173,153,35.9,4.49,4.6,0.8,0.46,825,,4346,17293,,,,4822.5,15472,,,,,,,,,32878,,,, -AMD Ryzen 3 7330U,Barcelo (Zen 3),"Cezanne (Zen 3, Ryzen 5000)",2MB + 8MB,,15,2300 ‑ 4300,4/8,7,x86,,344,Vega 6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Ryzen 5 7520U,Mendocino-U (Zen 2),"Mendocino (Zen 2, Ryzen 7020)",2MB + 4MB,,15,2800 ‑ 4300,4/8,6,x86,,451,Radeon 610M,~36.6,,,,,,168.8,834,350.5,1632.5,1171,5149,,,,,,,,6.3,,,,588,1044,4167,24219,,,,,,,,1066,3821,,,,,,,,191.3,155.3 -AMD Ryzen 5 7520C,Mendocino (Zen 2),"Mendocino (Zen 2, Ryzen 7020)",2MB + 4MB,,15,2800 ‑ 4300,4/8,6,x86,,206,Radeon 610M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Ryzen 3 7320U,Mendocino-U (Zen 2),"Mendocino (Zen 2, Ryzen 7020)",2MB + 4MB,,15,2400 ‑ 4100,4/8,6,x86,,451,Radeon 610M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Ryzen 3 7320C,Mendocino (Zen 2),"Mendocino (Zen 2, Ryzen 7020)",2MB + 4MB,,15,2400 ‑ 4100,4/8,6,x86,,451,Radeon 610M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Ryzen 3 5425U,Barcelo-U (Zen 3),"Cezanne (Zen 3, Ryzen 5000)",2MB + 8MB,,15,2700 ‑ 4100,4/8,7,x86,,710,Vega 6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Ryzen 3 5425C,Barcelo (Zen 3),"Cezanne (Zen 3, Ryzen 5000)",2MB + 8MB,,25,2700 ‑ 4100,4/8,7,x86,,589,Vega 6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Ryzen 3 5400U,Cezanne-U (Zen 3),"Cezanne (Zen 3, Ryzen 5000)",2MB + 8MB,,25,2600 ‑ 4000,4/8,7,x86,,1072,Vega 6,~27.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1170,3095,,,,,,,,, -AMD Ryzen 3 PRO 5475U,Barcelo-U PRO (Zen 3),"Cezanne (Zen 3, Ryzen 5000)",2MB + 8MB,,15,2700 ‑ 4100,4/8,7,x86,,633,Vega 6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Ryzen 3 PRO 5450U,Cezanne-U PRO (Zen 3),"Cezanne (Zen 3, Ryzen 5000)",2MB + 8MB,,15,2600 ‑ 4000,4/8,7,x86,,1072,Vega 6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Core i5-8265U,Whiskey Lake-U,Core i5,1MB + 6MB,,15,1600 ‑ 3900,4/8,14,x86,,1942,UHD Graphics 620,~27,6316,6082,19418,1.78,5.74,159,601.5,397,1285.5,1008,3500,9.78,552,11.02,402.35,3988,156,39.1,4.2,4.4,0.79,0.46,861,1565,4084,16245,11639,3678.5,14002,4514,13295,1017,3365,1041.5,3624.5,,,,95.6,32120,119.7,54.45,187,145.3 -Intel Core i5-1140G7,Tiger Lake-UP4,Tiger Lake,5MB + 8MB,,15,1800 ‑ 4200,4/8,10,x86,,1199,Iris Xe G7 80EUs,~26.9,7524,7771,19199,2.25,7.06,179,630,438,1126,1246,2611,8.32,434.9,10.99,410.7,4632,145.9,32.13,3.82,3.1,0.55,0.31,993,,4201,15167,,,,5937,15462,1355,3904,1353,3921,,,,160.1,57983,169,130.9,216, -AMD Ryzen 7 2800H,Raven Ridge (Zen),Raven Ridge (Ryzen 2000 APU),2MB + 4MB,,45,3300 ‑ 3800,4/8,14,x86,,1915,Vega 11,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Ryzen 5 3550H,Picasso-U (Zen+),Picasso (Ryzen 3000 APU),2MB + 4MB,,35,2100 ‑ 3700,4/8,12,x86,,1804,Vega 8,~25.3,7174,4592,19520.5,1.65,8.55,144,742,359,1621,886,3929.5,11.91,695,7.67,209.2,2929,146.8,44.3,4.04,4.7,0.67,0.47,659,1297,3547.5,17978,,3353,14437,3807,11926,902,3250,899,3281,,,,117.8,28811.5,122.1,42.8,162,124.3 -AMD Ryzen 7 2700U,Zen,Raven Ridge (Ryzen 2000 APU),2MB + 4MB,,15,2200 ‑ 3800,4/8,14,x86,,2165,Vega 10,~24.7,6072,4515,13729,1.65,7.53,143.5,644,356,1422,886,3603,11.8,698,8.55,269.1,,128,36.4,3.96,,,,713,,3592,17317,,3248.5,11433.5,3495,8582,,,813,2969,,,,217.4,26482,,36.9,142, -AMD Ryzen 7 PRO 2700U,Zen,Raven Ridge (Ryzen 2000 APU),2MB + 4MB,,15,2200 ‑ 3800,4/8,14,x86,,2165,Vega 10,~21.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,882,3183,,,,,,,,, -AMD Ryzen 3 5300U,Lucienne-U (Zen 2),"Lucienne (Zen 2, Ryzen 5000)",2MB + 4MB,,25,2600 ‑ 3800,4/8,7,x86,,1072,Vega 6,~29.5,7931,5118,22139,1.89,9.29,170,906,436,2067,1115,5341,7,366,,,2551,,,6.54,5.1,0.93,0.55,544,1069,3960,21971,,4096,16771,4560,16261,1062.5,4106.5,1070,4008,,,,,52372,156.69,176,187.4,147.3 -AMD Ryzen 3 2200G,Zen,Raven Ridge (Ryzen 2000 APU),2MB + 4MB,,65,3500 ‑ 3700,4/4,14,x86,,2168,Vega 8,~22.8,6636,4625,16684,1.68,6.66,145.55,577,363,1446,,,11.7,651,10.8,333,3229,184,39.7,4.29,3.1,0.48,0.3,826,,3948,14790,,,,4249,11896.5,959,3431,1086.5,4881.5,,,,92.7,34670,,,, -AMD Ryzen 5 3500U,Picasso-U (Zen+),Picasso (Ryzen 3000 APU),2MB + 4MB,,15,2100 ‑ 3700,4/8,12,x86,,1804,Vega 8,~23.2,5950.5,4557.5,17230.5,1.65,7.62,143,650,364,1477,,,12,697,12.88,368.2,2455,134.8,39.2,4.02,4.4,0.67,0.44,694,,3538,17024.5,11917,3442.5,13040,3893,11783,896,3118.5,898.5,3155.5,,,,128.8,27809,89.4,40.4,148, -AMD Ryzen 5 PRO 3500U,Zen+,Picasso (Ryzen 3000 APU),2MB + 4MB,,15,2100 ‑ 3700,4/8,12,x86,,1712,Vega 8,~25.9,,,,,,142,624,361.5,1338.5,,,,,,,,,,3.48,,,,795.5,,3474,16220.5,,,,3820,10419,,,863,2824,,,,,27437,89.7,41.3,142, -Intel Core i5-1130G7,Tiger Lake-UP4,Tiger Lake,5MB + 8MB,,15,1800 ‑ 4000,4/8,10,x86,,1199,Iris Xe G7 80EUs,~25.2,5569,7813,25385,2.18,7.64,179,616.5,448,1060.5,1151.5,2738.5,8.58,464.2,10.56,474.9,4785,145.5,30.2,3.04,2.6,0.64,0.33,1189.5,,4175,14726,,,,5724,18742,1307,4791,1321.5,4802,,,,,57829,174,179,219.5, -AMD Ryzen 5 3450U,Picasso-U (Zen+),Picasso (Ryzen 3000 APU),2MB + 4MB,,15,2100 ‑ 3500,4/8,12,x86,,1323,Vega 8,~23.6,,,,,,137.5,566.5,321.5,1168,875,2926.5,,,,,,,,3.03,,,,946,,3359,15878,,,,3486,10200,853,2630,839,2972,,,,,,115.4,,145.5, -AMD Ryzen 3 4300U,Renoir-U (Zen 2),Renoir (Ryzen 4000 APU),2MB + 4MB,,15,2700 ‑ 3700,4/4,7,x86,,1438,Vega 5,~30.4,6068,,,,,163.9,562.5,422,1571,1074,3571,,,,,2397,172.3,35,4.87,3.2,0.59,0.34,887.5,1413.5,4063.5,15824,11281,4042,13134,4517,13503,1036,3358,1046.5,3438.5,,,,102.5,33152,,51.2,194,152.3 -AMD Ryzen 5 3580U,Picasso-U (Zen+),Picasso (Ryzen 3000 APU),2MB + 4MB,,15,2100 ‑ 3700,4/8,12,x86,,1804,Vega 9,~19.5,5545,4525,18307,1.65,7.82,139,693,352,1549,,,12.04,694,7.17,274.7,2924,135.3,40.1,4.09,3.5,0.61,0.4,710,,3572,15209,,,,,,,,900,2990,,,,,28517,,,, -Intel Core i3-1125G4,Tiger Lake-UP3,Tiger Lake,5MB + 8MB,,28,2000 ‑ 3700,4/8,10,x86,,1200,UHD Graphics Xe G4 48EUs,~28.6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1198,3738,,,,,,,,, -Intel Core i3-1305U,Raptor Lake-U,Raptor Lake-U,3.5MB + 10MB,,15,1200 ‑ 4500,5/6,10,x86,,710,UHD Graphics 64EUs,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Processor U300,Raptor Lake-U,Raptor Lake-U,3.5MB + 8MB,,15,900 ‑ 4400,5/6,10,x86,,346,UHD Graphics Xe G4 48EUs,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Pentium 8505,Alder Lake-U,Alder Lake-M,3.5MB + 8MB,,15,900 ‑ 4400,5/6,10,x86,,710,UHD Graphics Xe G4 48EUs,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Core i3-1210U,Alder Lake-U,Alder Lake-M,5MB + 10MB,,9,700 ‑ 4400,6/8,10,x86,,710,UHD Graphics 64EUs,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Pentium 8500,Alder Lake-U,Alder Lake-M,3.5MB + 8MB,,9,700 ‑ 4400,5/6,10,x86,,710,UHD Graphics Xe G4 48EUs,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Core i7-8550U,Kaby Lake Refresh,Kaby Lake Refresh,1MB + 8MB,,15,1800 ‑ 4000,4/8,14,x86,,2307,UHD Graphics 620,~25.6,5845,6423,17321.5,1.89,6.11,163,553,388.5,1128,1021,2914,9.28,536,9.9,366.7,4374,147.9,33.15,3.88,4.3,0.73,0.43,913,,4337,15613,,3770,12327.5,4900,15117,1081,3141,,,,,,71.3,33496,121.8,,182, -Qualcomm Snapdragon 8cx Gen 2 5G,Cortex-A76 / A55 (Kryo 495),Snapdragon,+ 2MB,,7,3150,8/8,7,ARM,,1198,Adreno 680,~19.9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2355,7502,,,797,3115.5,,,,,32979,85.4,68.8,132, -MediaTek Dimensity 9200+,Cortex-X3 / A715 / A510,,,,,2000 ‑ 3350,8/8,4,ARM,,393,Immortalis-G715 MP11,~35.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7167,19785,,,1541,4936.5,1805.5,4658.5,,,36482,136.74,176,143,95 -MediaTek Dimensity 9200,Cortex-X3 / A715 / A510,,,,,1800 ‑ 3050,8/8,4,ARM,,393,Immortalis-G715 MP11,~22.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6247,13625,1668,4233,1384,4232,,,,,21648,67.65,60.2,82,66 -AMD Ryzen 5 2600H,Zen,Raven Ridge (Ryzen 2000 APU),2MB + 4MB,,45,3200 ‑ 3600,4/8,14,x86,,1870,Vega 8,~13.1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,819,2741,812,3226,,,,,,,,, -Intel Core i5-8260U,Coffee Lake,Coffee Lake,1MB + 6MB,,15,1600 ‑ 3900,4/8,14,x86,,1577,UHD Graphics 620,~27.3,,,,,,156.9,627,400,1494,629,3028,,,,,,,,1.8,,,,726,1402,4056,18874,,,,,,552,1464,639,1817,,,,,,148.27,,, -Intel Core i5-1030NG7,Ice Lake Y,Ice Lake,2MB + 6MB,,10,1100 ‑ 3500,4/8,10,x86,,1365,Iris Plus Graphics G7 (Ice Lake 64 EU),~21.1,3828,4250,9432,1.21,3.37,140,448,352.5,875.5,,,11.4,653,15.2,687,3878,77.4,16.9,2.95,3.1,0.48,0.3,1310,,3472,10924,,,,4996,12112,1020,2572,1088.5,2710,,,,132,42305,122.5,97.9,158.5, -Intel Core i3-N305,Alder Lake-N,Alder Lake-N,4MB + 6MB,,15,1800 ‑ 3800,8/8,10,x86,,354,UHD Graphics Xe 32EUs (Tiger Lake-H),,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Core i5-1030G7,Ice Lake-Y,Ice Lake,2MB + 6MB,,9,800 ‑ 3500,4/8,10,x86,,1597,Iris Plus Graphics G7 (Ice Lake 64 EU),,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Core i5-1030G4,Ice Lake-Y,Ice Lake,2MB + 6MB,,9,700 ‑ 3500,4/8,10,x86,,1597,Iris Plus Graphics G4 (Ice Lake 48 EU),,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Core i3-1115G4,Tiger Lake-UP3,Tiger Lake,2.5MB + 6MB,,28,3000 ‑ 4100,2/4,10,x86,,1200,UHD Graphics Xe G4 48EUs,~28.7,6331,8018,16265,,,190,480.5,504.5,1114,1312,3125,8.24,434.8,11.76,412.8,,141.6,26.2,3.74,2.8,0.41,0.23,1021.5,2408,4599.5,12919.5,,,,5601,9945,1328,2399,1311.5,2605,,,,145.8,58151,164.05,179.5,204.5,152.3 -Intel Core i3-1120G4,Tiger Lake-UP4,Tiger Lake,5MB + 8MB,,15,1500 ‑ 3500,4/8,10,x86,,1199,UHD Graphics Xe G4 48EUs,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Core i3-1005G1,Ice Lake-U,Ice Lake,1MB + 4MB,,15,1200 ‑ 3400,2/4,10,x86,,1661,UHD Graphics G1 (Ice Lake 32 EU),~23.3,5501,6573,14323,1.88,4.58,157,405,403,859,1055.5,2221,10.02,487.1,13.92,439.8,2624,135.2,25.22,3.12,2.4,0.38,0.22,1264,,4004,10896,,,,4817.5,9211,1129.5,2231.5,1159.5,2425.5,,,,191.4,46698,131.95,127.2,179.5, -Intel Core i3-10110U,Comet Lake-U,Comet Lake,1MB + 4MB,,15,2100 ‑ 4100,2/4,14,x86,,1566,UHD Graphics 620,~22.7,,6349,11204.5,1.87,3.59,162,321,401,753,1032.5,2142,9.43,538.5,15.77,533,2156,110.05,20.63,2.92,2.05,0.37,0.22,1279.5,,4153.5,10291.5,7706,3470,7335,4455,8289,1002,2034,987,2025.5,,,,95.3,29833,,47,164, -Intel Core i3-8109U,Coffee Lake-U,Coffee Lake,512KB + 4MB,,28,3000 ‑ 3600,2/4,14,x86,,2082,Iris Plus Graphics 655,~25.9,,,,,,138.65,352.5,351,772,906,2004,,,,,,,,2.85,,,,1328,,3752,9489,,,,4540,8974,,,888,1880,,,,,,90.07,,131.3, -Intel Core i5-8350U,Kaby Lake Refresh,Kaby Lake Refresh,1MB + 6MB,,15,1700 ‑ 3600,4/8,14,x86,,2307,UHD Graphics 620,~25.9,5925,5460.5,17931,1.69,5.95,150.5,569,,,,,10.94,637,9.7,330.45,2961,152.85,37.28,,4.05,0.69,0.41,705,,,,,3439,12270,4225,13605,,,,,,,,156.45,31171,94.7,98.65,183.5, -AMD Ryzen 3 1200,Summit Ridge (Zen),Ryzen 3,2MB + 8MB,,65,3100 ‑ 3400,4/4,14,x86,,2331,UHD Graphics 750,~19.6,5419,4178,13961,1.53,5.5,135,480,337,1192,834,3013,12.39,,12.5,390.1,2481,160,33.34,3.47,2.6,0.4,0.25,1002,,3391,11980,,,,3955,10851,,,834,2882,,,,,,,,151, -Intel Core i5-8250U,Kaby Lake Refresh,Kaby Lake Refresh,1MB + 6MB,,15,1600 ‑ 3400,4/8,14,x86,,2307,UHD Graphics 620,~23.1,6348,5533,17987,1.64,5.94,143,562,353,1171,873.5,3108,11.06,613,8.06,306.2,3991,137.5,31.96,4.34,3.5,0.68,0.41,899.5,,3706,15365.5,,3242,12742,4095,12751,927,3298,925,3427,,,,91,29871,,48.7,167.5, -AMD Ryzen 5 2500U,Zen,Raven Ridge (Ryzen 2000 APU),2MB + 4MB,,15,2000 ‑ 3600,4/8,14,x86,,2165,Vega 8,~23.1,4828,4410.5,15683.5,1.59,6.64,137,609,354.5,1298.5,,,12.29,697,10.23,313.5,2425.5,121,34.7,3.67,3.3,0.56,0.37,770.5,,3441,16251,10616,3383,11301,3703,9952,,,831,2515,,,,116.95,26534.5,,38.55,160, -Intel Core i3-N300,Alder Lake-N,Alder Lake-N,+ 6MB,,7,‑ 3800,8/8,10,x86,,351,UHD Graphics Xe 750 32EUs,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Ryzen 5 PRO 2500U,Zen,Raven Ridge (Ryzen 2000 APU),2MB + 4MB,,15,2000 ‑ 3600,4/8,14,x86,,2165,Vega 8,~23.2,5635,4349,14336,1.55,6.08,134,553,,,,,12.7,728.5,12.36,386.55,2699.5,97.7,33.91,3,3.4,0.6,0.39,1007,,4102,2794,11156,3326,12421.5,3492,9343,,,887,3135,,,,138.1,24308,,,, -AMD Ryzen Embedded V1605B,Zen,Raven Ridge (Ryzen 2000 APU),2MB + 4MB,,15,2000 ‑ 3600,4/8,14,x86,,2123,Vega 8,~23.8,,,,,,128,654,334,1235,841,3160,,,,,,,,3.64,,,,791,,3374,16708,,,,3800,12100,846,3264,819,3184,,,,,,92.6,,149, -Intel Core i3-8100H,Coffee Lake-H,Coffee Lake,1MB + 8MB,,45,3000,4/4,14,x86,,1991,UHD Graphics 630,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -MediaTek Dimensity 9000+,Cortex-X2 / A710 / A510,,+ 14MB,,,1800 ‑ 3200,8/8,4,ARM,,462,Mali-G710 MP10,~28.1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3705.5,8482,,,1391.5,4606.5,,,8591,,51846,134,116,152,128 -MediaTek Dimensity 9000,Cortex-X2 / A710 / A510,,+ 14MB,,,1800 ‑ 3050,8/8,4,ARM,,1059,Mali-G710 MP10,~31,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5713,15310,,,1248,4051,1608,4482,9111,,50429,148.12,119,121,153 -Apple A12Z Bionic,"Vortex, Tempest",Apple A-Series,8MB,,,‑ 2490,8/8,7,ARM,,1367,A12Z Bionic GPU,~39.3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1122,4709.5,,,,125,42425,126.1,144.5,141, -Apple A12X Bionic,"Vortex, Tempest",Apple A-Series,8MB,,,‑ 2490,8/8,7,ARM,,1872,A12X Bionic GPU,~38.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4993,17866,1114,4661,1120,4620,1313,4660,758432,114,45079.5,,131.9,177, -Apple A14 Bionic,Firestorm / Icestorm,Apple A-Series,12MB + 16MB,,,1800 ‑ 3100,6/6,5,ARM,,1186,A14 Bionic GPU,~42.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1588.5,4093.5,,,44785,85.85,58528,159.95,194.5,193.5,147 -Qualcomm Snapdragon 8+ Gen 1,Cortex-X2 / A710 / A510 (Kryo) Waipio,Snapdragon,+ 6MB,,,1800 ‑ 3200,8/8,4,ARM v9,,574,Adreno 730,~38.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7202.5,17569.5,,,1321,4162,1741,4584,,190.4,39564,111.45,103,156.5,101 -Google Tensor G3,Zuma - Cortex X3 / A715 / A510,,+ 4MB,,,1700 ‑ 2910,9/9,4,ARM,,77,Mali-G715 MP7,~37.6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6074,14268,,,1267,3509.5,1711,4381.5,,197,48641,104.71,147,122,98.5 -Qualcomm Snapdragon 8 Gen 1,Cortex-X2 / A710 / A510 (Kryo) Waipio,Snapdragon,+ 6MB,,,1800 ‑ 2995,8/8,4,ARM v9,,750,Adreno 730,~36.1,,,,,,,,,,,,,,,,,,,,,,,,,,,8654,,,6668,15021,,,1236,3581,1610,3860,,302.5,45945,108.4,109.5,151,92.5 -Microsoft SQ1,Cortex-A76 / A55 (Kryo 495),Snapdragon,+ 2MB,,,3000,8/8,7,ARM,,1535,Adreno 685,~10.2,,537,4276,,,,,,,,,21.2,1095,14.2,429.3,,,,,,,,,,,,,,,830,2597,728,2785,739,2875,,,,,31099,76.7,61.8,116, -Qualcomm Snapdragon 7+ Gen 2,Cortex-X2 / A710 / A510,Snapdragon,,,,1800 ‑ 2910,8/8,4,ARM,,281,Adreno 725,~32.1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6584,16748,,,1224.5,3959,1687,4378,,,37823,126.39,108,134,107 -Intel Core i3-1110G4,Tiger Lake-UP4,Tiger Lake,2.5MB + 6MB,,15,2500 ‑ 3900,2/4,10,x86,,1199,UHD Graphics Xe G4 48EUs,~19.6,5008,6972,13139,2.02,4.31,160.4,382,422,732,877,1868,9.39,474.59,12.44,519.97,2728,115.6,21.4,2.47,2.4,0.36,0.21,1560,,3935,8714,,,,5397,10233,1212,2478,772,1894,,,,,,,,188.4, -Qualcomm Snapdragon 8cx,Cortex-A76 / A55 (Kryo 495),Snapdragon,+ 2MB,,7,2840,8/8,7,ARM,,1835,Adreno 680,~12.6,,591,4187,,,,,,,,,10.9,564,14.6,442.1,,,,,,,,,,,,,,,3313,11047,,,700,2760,,,,,29364,73.5,59.3,116, -Qualcomm Snapdragon 888 Plus 5G,Cortex-X1 / A78 / A55 (Kryo 680),Snapdragon,+ 3MB,,5,1800 ‑ 3000,8/8,5,ARM,,900,Adreno 660,~28.1,,,,,,,,,,,,,,,,,,,,,,,,,,,10821,,,4973,13552.5,1164,3699,1157,3628.5,,,4771,342.5,37604,96.2,80.6,147,104 -Qualcomm Snapdragon 888 5G,Cortex-X1 / A78 / A55 (Kryo 680),Snapdragon,+ 3MB,,5,1800 ‑ 2840,8/8,5,ARM,,1108,Adreno 660,~28.4,,,,,,,,,,,,,,,,,,,,,,,,,,,11578,,,5087,14326,,,1129,3598,1480,3595,,,35487.5,106.1,85.75,148, -Qualcomm Snapdragon 888 4G,Cortex-X1 / A78 / A55 (Kryo 680),Snapdragon,+ 3MB,,5,1800 ‑ 2840,8/8,5,ARM,,1108,Adreno 660,~27.1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5083,13553,,,1107,3334,,,,,22851,,,108, -Samsung Exynos 2200,Exynos X2 / Cortex-A710 / A510,Exynos,,,,1820 ‑ 2800,8/8,4,ARM,,696,Xclipse 920,~37,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5788,15310,,,1145,3560,,,,281.5,38992,96.8,108,149, -Apple A13 Bionic,Lightning and Thunder,Apple A-Series,12MB,,,‑ 2660,6/6,7,ARM,,1552,A13 Bionic GPU,~34.2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1343,3463,1332,3378.5,,,683897,,48991,132.9,157,183, -Intel Processor N200,Alder Lake-N,Alder Lake-N,+ 6MB,,6,1000 ‑ 3700,4/4,10,x86,,351,UHD Graphics Xe 750 32EUs,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Core i3-8145U,Whiskey Lake-U,Core i3,1MB + 4MB,,15,2100 ‑ 3900,2/4,14,x86,,1942,UHD Graphics 620,~18.9,5158,5939,12432,1.77,4.01,148.5,351.5,296,657,,,10.52,638,13.1,463.9,1889,117.6,22.6,2.64,2.2,0.39,0.23,,,,,7459,3360,7420,4118,7859,995,2096,,,,,,104.85,28828.5,,,, -AMD Ryzen 3 3350U,Zen+,Picasso (Ryzen 3000 APU),2MB + 4MB,,15,2100 ‑ 3500,4/4,12,x86,,1804,Vega 6,~20.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,864,2455,,,,,,,,, -AMD Ryzen 3 3300U,Zen+,Picasso (Ryzen 3000 APU),2MB + 4MB,,15,2100 ‑ 3500,4/4,12,x86,,1804,Vega 6,~21.4,4332,4280,12357,,,134,471,337,921,,,12.82,709,11.94,404.6,2398,132.1,26.2,2.81,2.7,0.43,0.28,1212,,3340,12118,9508,3469,10170,3861,10787,843,2722,824,2578,,,,136.9,27764,,39.8,153.5, -AMD Ryzen 3 PRO 3300U,Zen+,Picasso (Ryzen 3000 APU),2MB + 4MB,,15,2100 ‑ 3500,4/4,12,x86,,1712,Vega 6,~20.9,,,,1.43,5.52,126,481,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Ryzen 3 2300U,Zen,Raven Ridge (Ryzen 2000 APU),2MB + 4MB,,15,2000 ‑ 3400,4/4,14,x86,,2168,Vega 6,~14.9,,,,0.79,4.46,79,422.5,,,,,,,,,,,,,,,,,,,,,,,,,,,783,2360,,,,,,,,, -AMD Ryzen 3 PRO 2300U,Zen,Raven Ridge (Ryzen 2000 APU),2MB + 4MB,,15,2000 ‑ 3400,4/4,14,x86,,2168,Vega 6,~19.6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3387,8655,,,727,2156,,,,,,,,, -Intel Processor N97,Alder Lake-N,Alder Lake-N,+ 6MB,,12,‑ 3600,4/4,10,x86,,351,UHD Graphics 24EUs (Alder Lake-N),,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Processor N95,Alder Lake-N,Alder Lake-N,+ 6MB,,15,‑ 3400,4/4,10,x86,,351,UHD Graphics Xe 16EUs (Tiger Lake-H),~21.9,5952,4783,13854,1.83,5.55,151,445,350,1030,914,2769,19.42,824.72,17.04,537.32,2319.5,162.15,32.4,3.18,2.7,0.5,0.24,1113,2186.5,3803,12177,,,,4450,10228,993,2531,999,2566,1227,2961,,,,,,178.3,126.75 -Intel Processor N100,Alder Lake-N,Alder Lake-N,+ 6MB,,6,1000 ‑ 3400,4/4,10,x86,,351,UHD Graphics 24EUs (Alder Lake-N),~22.9,6438,5024,15271.5,1.85,5.59,153.9,477,357,1138,931,2983,19.31,818.56,15.85,489.22,2401.5,172.78,34.28,3.47,2.9,0.54,0.26,1038,2028,3908,13255,,,,4492.5,11101,1000.5,2807.5,1006,2865.5,1232,3236,,,,161.56,,181.4,136.2 -Intel Core i3-8130U,Kaby Lake Refresh,Kaby Lake Refresh,1MB + 4MB,,15,2200 ‑ 3400,2/4,14,x86,,2129,UHD Graphics 620,~20,4720,5447.5,12157,1.63,3.77,139,338,348,774,,,11.09,661,14.3,485.5,2168,116.6,22.2,,2,0.36,0.21,,,,,7131,3288,7168.5,4000.5,7890.5,,,,,,,,187,27142.5,,43.6,153, -Intel Core i3-1000NG4,Ice Lake Y,Ice Lake,1MB + 4MB,,9,1100 ‑ 3200,2/4,10,x86,,1365,Iris Plus Graphics G4 (Ice Lake 48 EU),~20,3151,5771,9257,1.49,2.72,141,333,348,587,,,10.64,550,16.2,691,2468,,,2.23,,,,1814,,3438,7921,,,,4748,9090,1074,2035,1096,2028,,,,,39043,118.2,98.8,162, -Intel Core i3-1000G4,Ice Lake-Y,Ice Lake,1MB + 4MB,,9,1100 ‑ 3200,2/4,10,x86,,1597,Iris Plus Graphics G4 (Ice Lake 48 EU),,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Core i3-1000G1,Ice Lake-Y,Ice Lake,1MB + 4MB,,9,1100 ‑ 3200,2/4,10,x86,,1597,UHD Graphics G1 (Ice Lake 32 EU),,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Core i3-8121U,Cannon-Lake,Core i3,512KB + 4MB,,15,2200 ‑ 3100,2/4,10,x86,,2039,UHD Graphics 750,~20.5,4314,,,,,133,317.6,,,,,,,,,,,,,,,,,,,,,,,4195,7985,,,,,,,,,,,,, -HiSilicon Kirin 9000,Cortex-A77/-A55,,,,,2050 ‑ 3130,8/8,5,ARM,,1149,Mali-G78 MP24,~21.7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,26597,79.6,84.6,147, -HiSilicon Kirin 9000E,Cortex-A77/-A55,,,,,2050 ‑ 3130,8/8,5,ARM,,1149,UHD Graphics 750,~17.7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,24616,72.8,72.1,97, -Intel Core i7-10510Y,Comet Lake-Y,Comet Lake,512KB + 8MB,,7,1200 ‑ 4500,4/8,14,x86,,1566,UHD Graphics 617,~19.3,,,,,,,,250,845,,,,,,,,,,,,,,,,,,,,,,,,,1005,2728,,,,,,,,, -Intel Core i5-10310Y,Amber Lake-Y,Amber Lake,512KB + 6MB,,7,1100 ‑ 4100,4/8,14,x86,,1566,UHD Graphics 615,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Core i5-10210Y,Amber Lake-Y,Amber Lake,512KB + 6MB,,7,1000 ‑ 4000,4/8,14,x86,,1566,UHD Graphics 615,~18,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,738,2735,,,,,,,,, -Intel Core i5-L16G7,Lakefield,Lakefield,,,7,1400 ‑ 3000,5/5,10,x86,,1296,UHD Graphics G7 (Lakefield GT2 64 EU),~18.4,,4079,9003,1.42,3.18,89.5,255,282.5,647.5,710,1810,11.7,622,28.6,879,,,,1.46,,,,2026.5,,3211,7586.5,,,,,,,,826.5,1633.5,,,,,32455,85.8,76.1,124.5, -AMD Athlon Gold 7220U,Mendocino (Zen 2),"Mendocino (Zen 2, Ryzen 7020)",1MB + 4MB,,15,2400 ‑ 3700,2/4,6,x86,,451,Radeon 610M,~21.6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,932,2159,,,,,,,,, -AMD Athlon Gold 7220C,Mendocino (Zen 2),"Mendocino (Zen 2, Ryzen 7020)",1MB + 4MB,,15,2400 ‑ 3700,2/4,6,x86,,206,Radeon 610M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Samsung Exynos 2100 5G,Exynos X1 / Cortex-A78 / A55,Exynos,,,,2200 ‑ 2900,8/8,5,ARM,,1066,UHD Graphics 750,~32.7,,,,,,,,,,,,,,,,,,,,,,,,,,,13062,,,4970,14476,,,1100,3364,,,,313.2,27275,66.3,84.1,114, -Qualcomm Snapdragon 870 5G,Cortex-A77 / A55 (Kryo 585),Snapdragon,1.8MB + 7MB,,5,2420 ‑ 3200,8/8,7,ARM,,1472,Adreno 650,~28.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4411,11658,,,992.5,3188,1299,3357,5196,312.9,33694,92.45,70.42,127,83 -Qualcomm Snapdragon 865+ (Plus),Cortex-A77 / A55 (Kryo 585),Snapdragon,1.8MB + 4MB,,5,2420 ‑ 3100,8/8,7,ARM,,1472,Adreno 650,~23,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4493,13066,,,980,3250.5,,,,,26700.5,72.15,71.1,119.5, -Qualcomm Snapdragon 865,Cortex-A77 / A55 (Kryo 585),Snapdragon,1.8MB + 4MB,,5,2420 ‑ 2840,8/8,7,ARM,,1472,Adreno 650,~26,,,,,,,,,,,,,,,,,,,,,,,,,,,10921,,,4278,13356,932,3450,910,3309,,,,312.5,23734,66.45,67.7,104, -MediaTek Dimensity 1300,Cortex-A78 / A55,,,,,2000 ‑ 3000,8/8,6,ARM,,646,Mali-G77 MP9,~14.5,,,,,,,,,,,,,,,,,,,,,,,,,,,9050,,,,,,,415,2700,,,7485,,33879,66.96,59.7,65, -MediaTek Dimensity 8100,Cortex-A78 / A55,,,,,2000 ‑ 2850,8/8,6,ARM,,654,Mali-G610 MP6,~20.2,,,,,,,,,,,,,,,,,,,,,,,,,,,11358,,,4422.5,15985.5,925,3743,907,3720,,,8158,,33238,81.17,72.4,106,86.5 -MediaTek Dimensity 8050,Cortex-A78 / A55,,,,,2000 ‑ 3000,8/8,6,ARM,,215,Mali-G77 MP9,~20.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4348,11466,,,867.5,2852,1036,3173,6101,,31904,88,76.2,89,76 -MediaTek Dimensity 1200,Cortex-A78 / A55,,,,,2000 ‑ 3000,8/8,6,ARM,,1059,Mali-G77 MP9,~16.8,,,,,,,,,,,,,,,,,,,,,,,,,,,11256,,,4294,13528,850,3023,833,2689.5,,,5166,,28059.5,51.45,52.15,69.5, -MediaTek Kompanio 1300T,Cortex-A78 / A55,,,,,2000 ‑ 2600,8/8,6,ARM,,646,Mali-G77 MP9,~17.2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,773,2669,,,,,28601,64.89,48.9,75,63 -Intel Core i7-8500Y,Amber Lake-Y,Amber Lake,512KB + 4MB,,5,1500 ‑ 4200,2/4,14,x86,,1933,UHD Graphics 615,~17.6,3056,5027,8706,1.45,2.49,130.5,246.5,312,587.5,,,9.34,657,15.51,673,2483,83.3,14.07,2.12,2.2,0.36,0.22,1965.5,,4367.5,10709,,3245,5614,4397.5,7224,858,1504,,,,,,,24631.5,,,, -Intel Core i3-10110Y,Amber Lake-Y,Amber Lake,512KB + 4MB,,7,1000 ‑ 4000,2/4,14,x86,,1566,UHD Graphics 615,~22.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,996,1633,,,,,,,,, -Intel Core i5-8210Y,Amber Lake-Y,Amber Lake,512KB + 4MB,,7,1600 ‑ 3600,2/4,14,x86,,1872,UHD Graphics 617,~21.5,3544,,,,,129.5,269.5,312,601,,,,,,,,,,2.26,,,,1680,,3405,7936,,,,4162,7474,660,1433,,,,,,,33003,96.3,82.6,, -Intel Core i5-8200Y,Amber Lake-Y,Amber Lake,512KB + 4MB,,5,1300 ‑ 3900,2/4,14,x86,,1933,UHD Graphics 615,~24.2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4600,7913,,,900,1934,,,,,,,,, -Intel Core i3-10100Y,Amber Lake-Y,Amber Lake,512KB + 4MB,,5,1300 ‑ 3900,2/4,14,x86,,1933,UHD Graphics 615,~18.5,,5292,9659,1.39,2.53,122,220,303,536,788,1375,10.7,667,15.98,632,1683,,,2.01,1.8,0.34,0.2,1825,,3535,8262,,,,4359,7643,,,986,1889,,,,,34086,98.9,97.9,148, -AMD Athlon Silver 7120U,Mendocino (Zen 2),"Mendocino (Zen 2, Ryzen 7020)",1MB + 2MB,,15,2400 ‑ 3500,2/2,6,x86,,451,Radeon 610M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Athlon Silver 7120C,Mendocino (Zen 2),"Mendocino (Zen 2, Ryzen 7020)",1MB + 2MB,,15,2400 ‑ 3500,2/2,6,x86,,451,Radeon 610M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Core i3-L13G4,Lakefield,Lakefield,1.5MB + 4MB,,10,800 ‑ 2800,5/5,10,x86,,1283,UHD Graphics G4 (Lakefield GT1 48 EU),~18.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,816,1349,,,,,,,,, -AMD Ryzen 3 3250U,Zen,Picasso (Ryzen 3000 APU),1MB + 4MB,,15,2600 ‑ 3500,2/4,14,x86,,1439,Vega 3,~20.6,3966,4088,10251,1.46,3.95,121.6,353,300,783,776,2010,12.72,668,14.5,457.3,1710,101,21.1,2.16,1.9,0.32,0.23,1399,2541,3291,9063,,,,3829,7396,868,1838,824,1662,,,,313.8,35541,100.6,97.2,140.15,105.2 -AMD Ryzen Embedded R1606G,Zen,Raven Ridge (Ryzen 2000 APU),1MB + 4MB,,15,2600 ‑ 3500,2/4,14,x86,,1735,Vega 3,~25.8,,,,,,139,317,350,710,888,1842,,,,,,,,2,,,,1456,,3528,8969,,,,,,,,877,1903,,,,,,,,148, -AMD Ryzen 3 3200U,Picasso-U (Zen),Picasso (Ryzen 3000 APU),1MB + 4MB,,15,2600 ‑ 3500,2/4,14,x86,,1804,Vega 3,~19.4,3755,4258,9284,,,129,334,301,690,765,1786,12.52,730,14.03,483.5,1613,97.8,19.5,1.96,2.2,0.36,0.23,1485,,3372,9081.5,7816,3282,6922,3562,7143,826.5,1649,796.5,1651.5,,,,130.3,23991,,36.1,139, -AMD Ryzen 3 2200U,Zen,Raven Ridge (Ryzen 2000 APU),1MB + 4MB,,15,2500 ‑ 3400,2/4,14,x86,,2168,Vega 3,~17.3,3386.5,3977.5,7775.5,1.15,2.99,117,312,,,,,12.98,756.5,14.27,459.3,1545,92,17.8,,2.1,0.32,0.21,,,,,7422,2925,6826.5,3583,6937,,,667,1267,,,,115.9,22930,,,, -AMD Ryzen 3 PRO 2200U,Zen,Raven Ridge (Ryzen 2000 APU),1MB + 4MB,,15,2500 ‑ 3400,2/4,14,x86,,2168,Vega 3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Ryzen 3 5125C,Barcelo (Zen 3),"Cezanne (Zen 3, Ryzen 5000)",1MB + 8MB,,15,3000,2/4,7,x86,,589,Vega 3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Athlon Gold 3150U,Dali (Zen),Picasso (Ryzen 3000 APU),1MB + 4MB,,15,2400 ‑ 3300,2/4,14,x86,,1438,Vega 3,~16.1,4189,3639,7566,1.36,3.99,117,352,303,795,,,13.86,727,40.13,1280,1631,106.6,22.47,2.03,2.2,0.35,0.22,1348,,3065,8752,,,,,,,,751,1847,,,,,,,,, -AMD Ryzen Embedded R1505G,Zen,Raven Ridge (Ryzen 2000 APU),2MB + 4MB,,10,2400 ‑ 3300,2/4,14,x86,,1703,Vega 3,~18.2,,,,,,97.3,264,243,596,,,,,,,,,,0.65,,,,1725,,2505,6931,,,,2667,5478,616,1370,612,1353,,,,,,,,106, -Intel Pentium Gold 6405U,Comet Lake-U,Comet Lake,1MB + 2MB,,15,2400,2/4,14,x86,,1506,UHD Graphics 610,~13.7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,595,1320,,,,,,,,, -Intel Celeron 7305,Alder Lake-U,Alder Lake-M,3.5MB + 8MB,,15,900 ‑ 1100,5/5,10,x86,,715,UHD Graphics Xe G4 48EUs,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Celeron 6305,Tiger Lake-U,Tiger Lake,2.5MB + 4MB,,15,1800,2/2,10,x86,,1200,UHD Graphics Xe G4 48EUs,~15.2,,3465,6611,0.99,1.93,83.95,161.05,217,416,566.5,1071.5,18.83,904.72,39.12,1231.05,1210,61.9,11.25,1.7,0.92,0.13,0.07,2834,,2237.5,4262.5,,,,2824.5,4949.5,628.5,1183.5,638,1198,,,,326.7,21416,72.43,72.43,100.7, -Intel Celeron 7300,Alder Lake-U,Alder Lake-M,3.5MB + 8MB,,9,700 ‑ 1000,5/5,10,x86,,715,UHD Graphics Xe G4 48EUs,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Athlon PRO 300U,Zen+,Raven Ridge (Ryzen 2000 APU),1MB + 4MB,,15,2400 ‑ 3300,2/4,12,x86,,1711,Vega 3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Athlon 300U,Zen,Raven Ridge (Ryzen 2000 APU),1MB + 4MB,,15,2400 ‑ 3300,2/4,12,x86,,1804,Vega 3,~16.6,,3968,8724,,,119,308,308,637,,,14.09,807,15.44,510,1623,88.6,18.5,1.77,1.9,0.29,0.21,,,,,6868,2919,6134,3287,6053,765,1552,867,1840,,,,133.6,22253,,33.51,143, -AMD Athlon Silver 3050U,Dali (Zen),Picasso (Ryzen 3000 APU),1MB + 4MB,,15,2300 ‑ 3200,2/2,14,x86,,1438,Vega 2,~17,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,743,1429,,,,,,,,, -Intel Celeron 6205,Tiger Lake U,Tiger Lake,2.5MB + 4MB,,15,,2/2,10,x86,,1200,UHD Graphics Xe G4 48EUs,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Apple A12 Bionic,,Apple A-Series,8MB,,,‑ 2490,6/6,7,ARM,,1920,A12 Bionic GPU,~28,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4774,11480,1118,2910,1117.5,2814.5,,,486197,,42333.5,109.75,123.5,159.5, -Qualcomm Snapdragon 7 Gen 1,Cortex-A710 / A510,Snapdragon,,,,1800 ‑ 2400,8/8,4,ARM,,574,Adreno 644,~17.9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3646,11669,802,2970,786,2912.5,1057.5,3017,6056,,30021,86.23,67.2,110,79 -Qualcomm Snapdragon 780G 5G,Kryo 670 (Cortex-A78/A55),Snapdragon,,,,1900 ‑ 2400,8/8,5,ARM,,995,Adreno 642,~21.2,,,,,,,,,,,,,,,,,,,,,,,,,,,9815,,,3674,11965,,,809,2998,,,,,26943,75.8,70.8,106, -Google Tensor G2,Cortex X1 / A76 / A55,,+ 4MB,,,1800 ‑ 2850,8/8,5,ARM,,435,Mali-G710 MP7,~29.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4782,12839.5,1069,3276.5,1049,3217,1450,3600,,300.65,44948,104.66,125,98,98 -Google Tensor,Exynos X1 / Cortex-A76 / A55,,+ 4MB,,,1800 ‑ 2800,8/8,5,ARM,,774,Mali-G78 MP20,~25.7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4815,11589,,,1041,2940,,,,,43376,90.1,104,105,72 -HiSilicon Kirin 990 5G,Cortex-A76/-A55,,,,,‑ 2860,8/8,7,ARM,,1561,Mali-G76 MP16,~24.8,,,,,,,,,,,,,,,,,,,,,,,,,,,11668.5,,,3925,12549,769,3083,772.5,3076.5,,,,345.4,22343,62.7,67.45,98, -MediaTek Dimensity 8200-Ultra,Cortex-A78 / A55,,+ 4MB,,,2000 ‑ 3100,8/8,4,ARM,,206,Mali-G610 MP6,~24.9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4858,16050,998,3889,1018,3833,1252,4034,,,42222,96.18,112,123,107 -HiSilicon Kirin 990,Cortex-A76/-A55,,,,,‑ 2860,8/8,7,ARM,,1561,Mali-G76 MP16,~19.6,,,,,,,,,,,,,,,,,,,,,,,,,,,11581,,,3881.5,12082.5,783,3059,770,2977.5,,,261357,,21726.5,60.5,69,108, -Samsung Exynos 990,Exynos M5 / Cortex A-76 / Cortex-A55,Exynos,,,,2000 ‑ 2730,8/8,7,ARM,,1757,UHD Graphics 750,~29,,,,,,,,,,,,,,,,,,,,,,,,,,,10510,,,4878,12559,,,940,2787,,,,478.8,19122,53.9,63.25,97, -MediaTek Dimensity 8020,Cortex-A78 / A55,,,,,2000 ‑ 2600,8/8,6,ARM,,654,Mali-G77 MP9,~19.3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3906,12596,836,3280,835,3310,1120,3617,,,28282,67.26,69.9,87,78 -MediaTek Dimensity 1100,Cortex-A78 / A55,,,,,2000 ‑ 2600,8/8,6,ARM,,1059,Mali-G77 MP9,~16.1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,655,2500,,,,,,,,, -Qualcomm Snapdragon 860,Cortex-A76 / A55 (Kryo 485),Snapdragon,1.8MB + 5MB,,5,‑ 2960,8/8,7,ARM,,1625,Adreno 640,~17.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3398,10570,,,756,2712.5,1037,3038,3913,,26179,67.5,60.15,93, -Qualcomm Snapdragon 7c Gen 2,Cortex-A76 / A55 (Kryo 468),Snapdragon,,,7,2550,8/8,8,ARM,,943,Adreno 618,~12.3,755,511,3053,0.32,1.88,,,116.8,347,307,992,22.82,1132,,,1226,,,0.61,,,,3620,,2046,7703,,,,1580,3667,,,1046.5,3483.5,,,,,20737,62.9,,95, -Qualcomm Snapdragon 855+ / 855 Plus,Cortex-A76 / A55 (Kryo 485),Snapdragon,1.8MB + 5MB,,5,‑ 2960,8/8,7,ARM,,1625,Adreno 640,~18.7,,,,,,,,,,,,,,,,,,,,,,,,,,,9887,,,3654,10546.5,787.5,2846.5,751,2658.5,,,249792,,24571,65.3,64.45,98, -Qualcomm Snapdragon 7c,Cortex-A76 / A55 (Kryo 468),Snapdragon,,,7,2400,8/8,8,ARM,,943,Adreno 618,~13.9,,1381,3518,0.75,2.4,,,114,323,321,830,29.56,1436,36.68,906,1000,47.9,8.4,0.63,,,,3895,,2059,7459,,,,1579,3470,305,845,620,1725,,,,384.75,22523,62.1,44.57,83.5, -Qualcomm Snapdragon 855,Cortex-A76 / A55 (Kryo 485),Snapdragon,1.8MB + 5MB,,5,2840,8/8,7,ARM,,1836,Adreno 640,~25.2,,,,,,,,,,,,,,,,,,,,,,,,,,,8574.5,2891,9555,3491,10987.5,742,2589.5,744,2666,1008,2757,246456,384.2,24044,59.15,64.2,106.5, -Apple A11 Bionic,Monsoon / Mistral,Apple A-Series,8MB,,,‑ 2390,6/6,10,ARM,,2285,A11 Bionic GPU,~30.3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4263,10380,935,2510,927,2339,,,453409,149,35209,96.7,91.5,130, -Qualcomm QCM6490,Kryo 670 (Cortex-A78/A55),Snapdragon,,,,1960 ‑ 2710,8/8,6,ARM,,855,Adreno 643,~25.6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3822,11172,,,870,2944,1129,2999,,,38966,115.42,93.9,151,116 -Qualcomm Snapdragon 778G+ 5G,Kryo 670 (Cortex-A78/A55),Snapdragon,,,,1900 ‑ 2500,8/8,6,ARM,,562,Adreno 642L,~20.3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3760,11342,,,824,2929,,,6514,,32109,90.28,63.69,116,93 -Qualcomm Snapdragon 778G 5G,Kryo 670 (Cortex-A78/A55),Snapdragon,,,,1800 ‑ 2400,8/8,6,ARM,,940,Adreno 642L,~17.9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3500,11003,,,787,2889,,,4438.5,,25445,74.4,55,105.5,73.5 -Qualcomm Snapdragon 778G 4G,Kryo 670 (Cortex-A78/A55),Snapdragon,,,,1800 ‑ 2400,8/8,6,ARM,,940,Adreno 642L,~18.7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3557.5,11874,,,788,3019.5,1008,2418,6336,,25361,74.88,56.6,109,79 -Samsung Exynos 1380,ARM Cortex-A55 / A78,Exynos,,,,2000 ‑ 2400,8/8,5,ARM,,281,Mali-G68 MP5,~33,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3555.5,11160,,,778,2728,1017,2878.5,591842,187,34739,102.6,75.3,124.5,107 -MediaTek Dimensity 1000+,Cortex-A77 / A55,,,,,2000 ‑ 2600,8/8,7,ARM,,1306,Mali-G77 MP9,~19,,,,,,,,,,,,,,,,,,,,,,,,,,,10598,,,3688,11987,,,796,2762,,,,,21933,48.35,50.9,73, -Apple A10X Fusion,Cyclone 4?,Apple A-Series,,,,2390,6/3,10,ARM,,2382,A10X Fusion GPU,~21.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3928.5,9325.5,,,850,2324,,,82837.5,,30760.5,,,, -MediaTek Dimensity 7050,Cortex-A78 / A55,,,,,2000 ‑ 2600,8/8,6,ARM,,228,Mali-G68 MP4,~16.9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3737,9132.5,762,1960,833,2318,957,2407,5412,,31801,82.97,77.75,90,72 -MediaTek Dimensity 1080,Cortex-A78 / A55,,,,,2000 ‑ 2600,8/8,6,ARM,,856,Mali-G68 MP4,~16.6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3754.5,8894,786,2342,765,2041,954,2229,5411,,31662,71.87,62.9,102,74 -MediaTek Dimensity 7030,Cortex-A78 / A55,,,,,2000 ‑ 2500,8/8,6,ARM,,113,Mali-G610 MP3,~20.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3505,8625,,,789,2197,893,2214,5405,,34140,102.38,91.6,121,106 -MediaTek Dimensity 920,Cortex-A78 / A55,,,,,2000 ‑ 2500,8/8,6,ARM,,856,Mali-G68 MP4,~14.2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3440,8397,,,775.5,2097.5,,,5110,,18244,48.56,46.05,58,46 -MediaTek Dimensity 930,Cortex-A78 / A55,,,,,2000 ‑ 2200,8/8,6,ARM,,571,IMG BXM-8-256,~14.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3272,8224,705,1919,669.5,1848,,,4563,,23554,70.9,51.27,101.5,77.5 -MediaTek Dimensity 7020,Cortex-A78 / A55,,,,,2000 ‑ 2500,8/8,6,ARM,,113,IMG BXM-8-256,~17.9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3264,8148,703,1908,697,1903,916,2315,,,28919,85.94,76.5,120,97 -MediaTek MT8188J,Cortex-A78 / A55,,,,,2000 ‑ 2200,8/8,12,ARM,,289,Mali-G57 MP2,~17,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3315,7741,711,2065,702,2070,949,2363,,,24222,74.31,65.6,122,75 -MediaTek Dimensity 900,Cortex-A78 / A55,,,,,2000 ‑ 2400,8/8,6,ARM,,1306,Mali-G68 MP4,~18.3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3502.5,9026,,,734,2161,,,219220,,25580,53.76,49.6,68.5,54 -MediaTek Dimensity 820,Cortex-A76 / A55,,,,,2000 ‑ 2600,8/8,7,ARM,,1306,Mali-G57 MP5,~16,,,,,,,,,,,,,,,,,,,,,,,,,,,7836,,,3022,10658,,,652,2678,,,,,18974,44.97,47.6,65, -Intel Core m3-7Y32,Kaby Lake,Kaby Lake,512KB + 4MB,,4.5,1000 ‑ 3000,2/4,14,x86,,2429,HD Graphics 615,~18.4,,,,,,120,265,,,637,1293,,,,,,,,,,,,,,,,,,,3774,6736,,,773,1576,,,,,,,,, -Intel Core m3-8100Y,Amber Lake-Y,Amber Lake,512KB + 4MB,,5,1100 ‑ 3400,2/4,14,x86,,1933,UHD Graphics 615,~18.1,,3850,6055,,,96.6,179.5,243,413,,,11.43,818,18.57,906,1646,58.3,11.2,1.69,1.7,0.29,0.17,2206,,2982.5,6245.5,6113,2702,5446,4159,6934,765,1279,845.5,1396.5,,,,211,20267,,56.75,135.5, -Intel Pentium Gold 6500Y,Amber Lake-Y,Amber Lake,512KB + 4MB,,5,1100 ‑ 3400,2/4,14,x86,,1019,UHD Graphics 615,~21.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3647,5963,,,,,,,,,,,,, -Intel Processor N50,Alder Lake-N,Alder Lake-N,+ 6MB,,6,1000 ‑ 3400,2/2,10,x86,,351,UHD Graphics Xe 16EUs (Tiger Lake-H),~21.1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,891,1339,1185,2024,,,,,,, -Intel Pentium Gold 5405U,Whiskey Lake-U,Pentium,512KB + 2MB,,15,2300,2/4,14,x86,,1787,UHD Graphics 610,~15.1,3224,3560.5,7885.5,1.06,2.62,92.55,233,206,524,539,1390,16.96,878.75,22.53,711.01,1904,82.15,15.6,1.37,1.35,0.24,0.14,2179.5,,2528,6501.5,5080,,,2810,5418.5,588,1323.5,585,1324,,,,175,16762,,18.15,102.6, -Intel Pentium Gold 4415U,Kaby Lake,Kaby Lake,512KB + 2MB,,15,2300,2/4,14,x86,,2480,HD Graphics 610,~18.2,3249,3587,8169,1.01,2.71,94,239.5,181.3,356,529,1366,16.66,846,20.86,659,2003,85.7,16,1.56,1.4,0.25,0.14,2188,3786,2575,6602,5719,2510,5270,2943,5630,,,599,1374,,,,119.1,21322,,,110.2,82.2 -AMD A10-9620P,Bristol Ridge,Bristol Ridge,2MB,,15,2500 ‑ 3400,4/4,28,x86,,2539,Radeon R5 (Bristol Ridge),~8.3,,2277,7420,0.81,2.66,72,230,,,,,18.24,977,14.41,470.9,1329,76.6,16.3,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Celeron 3965U,Kaby Lake,Kaby Lake,512KB + 2MB,,15,2200,2/2,14,x86,,2480,HD Graphics 610,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Pentium Gold 4417U,Kaby Lake Refresh,Kaby Lake Refresh,1MB + 2MB,,15,2300,2/4,14,x86,,1764,HD Graphics 610,~14.8,3204,3570,8012,1.08,2.57,89,228,203,472,,,17.25,922,21.15,665,1792,81.1,15.54,,1.4,0.24,0.14,,,,,5280,2254,4882,2695,5248,,,,,,,,165.1,16702,,26,102, -Intel Celeron 5205U,Comet Lake-U,Comet Lake,,,15,1900,2/2,14,x86,,1506,UHD Graphics 610,~10.9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,480,912,,,,,,,,, -Intel Pentium Silver N6005,Jasper Lake,Jasper Lake,1.5MB + 4MB,,10,2000 ‑ 3300,4/4,10,x86,,1068,UHD Graphics (Jasper Lake 32 EU),~17.9,5451,3970,12496,1.48,4.85,121,319,262,720,694,1833,17.57,880.65,16.55,554.13,1674.5,118.75,25.18,1.83,2.75,0.4,0.22,1805,2464,3465,9964,,,,2764,5399,680,1537,695,1673,,,,,,,,146,104.2 -Intel Pentium Silver N6000,Jasper Lake,Jasper Lake,1.5MB + 4MB,,6,1100 ‑ 3300,4/4,10,x86,,1068,UHD Graphics (Jasper Lake 32 EU),~19.6,3985,4131.5,9642.5,1.41,3.59,113.65,291,255,650.5,672.5,1699,17.53,895,16.92,727,1330,93.4,18.4,1.61,2.8,0.41,0.22,1935,3786,3305,9212,,,,3188,8341,724.5,1911.5,727,1915,,,,293.2,34145.5,107.6,82.45,146,104.2 -Intel Celeron N5095,Jasper Lake,Jasper Lake,1.5MB + 4MB,,15,2000 ‑ 2900,4/4,10,x86,,1068,UHD Graphics (Jasper Lake 16 EU),~17.1,5272,3544.5,12283,1.27,4.71,106,364,234,827,611,2164,20.51,1038.95,19.49,611.35,1705.5,116.5,25,2.01,2.5,0.37,0.2,1547,2936,3100,11013,,,,2900,7842,646.5,2030.5,650.5,2028,,,,,,89.8,,125.3,95.2 -Intel Celeron N5105,Jasper Lake,Jasper Lake,1.5MB + 4MB,,10,2000 ‑ 2900,4/4,10,x86,,1068,UHD Graphics (Jasper Lake 24 EU),~22.7,,,,,,108.1,368,235,826,618,2175,,,,,,,,2.01,,,,1573,2940,3108,11153,,,,,,649,2069,653,2080,,,,,,102.15,,134.2,96.2 -Intel Celeron N5100,Jasper Lake,Jasper Lake,1.5MB + 4MB,,6,1100 ‑ 2800,4/4,10,x86,,1068,UHD Graphics (Jasper Lake 24 EU),~14.9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,631,1788,,,,,,,,, -Intel Pentium Silver J5040,Gemini Lake Refresh,Gemini Lake,4MB,,10,2000 ‑ 3200,4/4,14,x86,,1502,UHD Graphics 605,~13.4,4296,2688,8279,1.09,3.49,91,279,202,630,519,1634,21.32,1083.02,15.29,515.52,1391,89.1,19.2,1.66,2,0.29,0.2,2060,,2833,8946,,,,2333,6359,535,1664,538,1672,,,,,,,,108.2,80.2 -AMD Athlon Silver 3050e,Dali (Zen),Raven Ridge (Ryzen 2000 APU),1MB + 4MB,,6,1400 ‑ 2800,2/4,14,x86,,1292,Vega 3,~15.8,,3339,6780,1.18,2.51,102,226.5,224.5,419.5,576,1174.5,41.6,1302,18.99,595,1403,70.1,13.8,1.27,1.3,0.24,0.16,2298.5,,2524.5,6641.5,,,,2948,5000,662,1224,594.5,1172,,,,454.6,22479,,55.6,98.6, -AMD 3020e,Dali (Zen),Raven Ridge (Ryzen 2000 APU),1MB + 4MB,,6,1200 ‑ 2600,2/2,14,x86,,1228,Vega 3,~12.9,,,,,,92,196,236,369,603,943,16.95,879,29,903,1232,65.3,12.8,1.15,1.1,0.16,0.11,2964,,2597,4963,,,,2809,4803,646,1195,638,1188,,,,,20692,,59.5,105, -Intel Pentium Silver N5030,Gemini Lake Refresh,Gemini Lake,4MB,,6,1100 ‑ 3100,4/4,14,x86,,1502,UHD Graphics 605,~15.2,3895,2498,7724,1.02,3.09,80.9,225.95,182.5,425.5,430,911,24.86,1247,14.65,526,1163,84,17.58,0.71,,,,3449.5,,2645,7238,,,,2176,5662,356,1177,512,1221,,,,355.8,21899,65.1,59.3,95.4, -Intel Celeron J4125,Gemini Lake Refresh,Gemini Lake,4MB,,10,2000 ‑ 2700,4/4,14,x86,,1502,UHD Graphics 600,~11.4,3740,2112,7128,0.85,3.06,75.3,243,170,430,438,1186,24.65,1845,17.37,603,1048,61.35,13.05,1.46,1.8,0.26,0.18,2391,7856,2369,7494,,,,1924,5468,453,1482,455,1394,,,,,,64.65,,88.7,68.2 -Intel Celeron J4105,Gemini Lake,Gemini Lake,4MB,,10,1500 ‑ 2500,4/4,14,x86,,2195,UHD Graphics 600,~11.8,,,,,,73,270,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Pentium Silver N5000,Gemini Lake,Gemini Lake,4MB,,6,1100 ‑ 2700,4/4,14,x86,,2195,UHD Graphics 605,~14.6,3320,2295,6688,0.94,2.8,78,236.5,170,484,438,1232,24.17,1319,16.83,645,1245,76.3,15.4,1.31,1.9,0.27,0.19,2707,,2431,7320,4819,1777.5,5547.5,2027,5790,,,421,1582,,,,194.6,13121,33.94,20.1,89.1, -Intel Celeron J4005,Gemini Lake,Gemini Lake,4MB,,10,2000 ‑ 2700,2/2,14,x86,,2195,UHD Graphics 600,~10.5,,2085,3500,0.85,1.39,77,144,,,,,16.34,1245,33.07,1042,798,49.92,9.96,0.88,0.96,0.13,0.09,4124,,,,,,,1997,3491,,,,,,,,,,,,, -Intel Celeron N6211,Elkhart Lake,Elkhart Lake,1.5MB,,6.5,1200 ‑ 3000,2/2,10,x86,,516,UHD Graphics (Jasper Lake 16 EU),~11.7,,2696,4693,0.97,1.65,76,128,174,285,439,735,21.98,1070.14,49.66,1561.18,731,45.25,10,0.88,0.98,0.14,0.07,3767,,2593,3974,,,,2585,3606,559,857,556,844,,,,,,,,89.2,63.2 -Intel Celeron 4205U,Whiskey Lake-U,Celeron,512KB + 2MB,,15,1800,2/2,14,x86,,1787,HD Graphics 610,~0.9,,,,,,,136,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Celeron 3867U,Kaby Lake,Kaby Lake,512KB + 2MB,,15,1800,2/2,14,x86,,1750,HD Graphics 610,~8.1,,,,,,,134,,159,,,,,,,,,,,,,,,,,,,,,2285,3830,,,434,873,,,,,,,,, -Intel Celeron 3865U,Kaby Lake,Kaby Lake,512KB + 2MB,,15,1800,2/2,14,x86,,2480,HD Graphics 610,~13.6,,2853,5425,0.86,1.66,72,142,,,,,21.38,1120,39.36,1213,1108,54.4,10.8,,0.81,0.13,0.08,,,,,3627,1843,3224,2240,3719,,,,,,,,176.6,13961,,,, -Samsung Exynos 9825,Exynos M3 / Cortex-A55,Exynos,,,,1900 ‑ 2730,8/8,7,ARM,,1757,Mali-G76 MP12,~18.2,,,,,,,,,,,,,,,,,,,,,,,,,,,8839,,,4550,10425.5,813.5,2184,834,2331,,,215665,,19021.5,45.33,59.7,107.5, -Samsung Exynos 9820,Exynos M3 / Cortex-A55,Exynos,,,,1900 ‑ 2700,8/8,8,ARM,,1757,Mali-G76 MP12,~17.4,,,,,,,,,,,,,,,,,,,,,,,,,,,8492.5,,,4505.5,10374,836,2306,825,2259,,,,,20469.5,44.24,56,115, -HiSilicon Kirin 820,Cortex-A76/-A55,,,,,1840 ‑ 2360,8/8,7,ARM,,1354,Mali-G57 MP6,~19.4,,,,,,,,,,,,,,,,,,,,,,,,,,,9969,,,3113,9860,,,642,2434,,,238069,,19727,54.8,49.5,115, -MediaTek Dimensity 810,Cortex-A76 / A55,,,,,2000 ‑ 2400,8/8,6,ARM,,856,Mali-G57 MP2,~19.3,,,,,,,,,,,,,,,,,,,,,,,,,,,7956,,,2846,7135,605,1788,598,1791.5,,,,619,16718.5,43.83,39.8,62, -MediaTek Dimensity 800,Cortex-A76 / A55,,,,,2000,8/8,7,ARM,,1306,Mali-G57 MP4,~11.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2524,8649,,,523,2143,,,23814,,14751,36.83,37.9,56, -HiSilicon Kirin 820e,Cortex-A76/-A55,,,,,1840 ‑ 2220,8/8,7,ARM,,1354,Mali-G57 MP6,~13.7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2820,7841,,,566,1853,,,3553,,18755,56.22,34.1,86,64 -HiSilicon Kirin 810,Cortex-A76/-A55,,,,,1880 ‑ 2270,8/8,7,ARM,,1658,Mali-G52 MP6,~16.2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2836,7891,,,598,1919.5,,,217082,,16604,47.86,48.3,83, -HiSilicon Kirin 980,Cortex-A76/-A55,,,,,‑ 2600,8/8,7,ARM,,2297,Mali-G76 MP10,~17.4,,,,,,,,,,,,,,,,,,,,,,,,,,,9587.5,,,3314,9854,695.5,2500,707,2558,,,246733,,21603.5,50.18,59.05,99, -Qualcomm Snapdragon 695 5G,Kryo 660 Gold (2x Cortex-A78) / Silver (6x Cortex-A55),Snapdragon,,,,1700 ‑ 2200,8/8,6,ARM,,780,Adreno 619,~15.7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3084,7355,,,672.5,1922,903.5,2075,4737,,22285,64.22,45.45,94,65 -Samsung Exynos 1280,,Exynos,,,,2000 ‑ 2400,8/8,5,ARM,,635,Mali-G68 MP4,~15.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3376,7738.5,,,737,1878,,,4737,,24340,64.76,49.62,75.5, -Samsung Exynos 9810,Exynos M3 / Cortex-A55,Exynos,,,,‑ 2900,8/8,10,ARM,,2172,Mali-G72 MP18,~13.4,,,,,,,,,,,,,,,,,,,,,,,,,,,6098.5,,,3698,8874,679,2033,,,,,154312,,14711.5,32.26,39,68, -Qualcomm Snapdragon 850,Cortex-A75 / A55 (Kryo 385),Snapdragon,1.5MB + 2MB,,,2750 ‑ 2960,8/8,10,ARM,,2132,Adreno 630,~9.6,,1166,2284,,,,,,,,,34,1678,37,1456,4745,28,4.9,,,,,,,,,,,,2269,7118,,,488,1923,,,,,13947,58.8,,, -Qualcomm Snapdragon 845,Cortex-A75 / A55 (Kryo 385),Snapdragon,+ 2MB,,,2800,8/8,10,ARM,,2132,Adreno 630,~21.2,,,,,,,,,,,,,,,,,,,,,,,,,,,10839.5,,,2429,8849,501,1986,466,2012,,,244932,451,16369.5,46.61,51.05,97, -Qualcomm Snapdragon 765G,Kryo 475 Gold / Silver,Snapdragon,,,,1800 ‑ 2400,8/8,7,ARM,,1470,Adreno 620,~16.7,,,,,,,,,,,,,,,,,,,,,,,,,,,7961,,,2863,7665,,,606,1810,,,208510,,18551,50.5,49.8,76, -Qualcomm Snapdragon 765,Kryo 475 Gold / Silver,Snapdragon,,,,1800 ‑ 2300,8/8,7,ARM,,1470,Adreno 620,~12.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2785,7832,,,592.5,1911.5,,,17028,,17001,48.46,36,75, -Qualcomm Snapdragon 4 Gen 1,2x Cortex-A78 / 6x Cortex-A55,Snapdragon,,,,1804 ‑ 2016,8/8,6,ARM,,435,Adreno 619,~15.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,642,1954,,,,,19867,58.04,48.5,91,68 -Qualcomm Snapdragon 750G 5G,Kryo 570 (Cortex-A77/A55),Snapdragon,,,,1800 ‑ 2200,8/8,8,ARM,,1179,Adreno 619,~14.7,,,,,,,,,,,,,,,,,,,,,,,,,,,7402,,,3054,7945,,,643,1878,,,8058,,17823,54.7,44.27,79,63 -AMD 3015e,Pollock (Zen),Raven Ridge (Ryzen 2000 APU),1MB + 4MB,,6,1200 ‑ 2300,2/4,14,x86,,1228,Vega 3,~10.6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,464,860,,,,,,,,, -AMD 3015Ce,Pollock (Zen),Raven Ridge (Ryzen 2000 APU),1MB + 4MB,,6,1200 ‑ 2300,2/4,14,x86,,1228,Vega 3,~28,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,564,1135,,,,344.3,23395,75.3,67.7,118, -Intel Celeron N4120,Gemini Lake Refresh,Gemini Lake,4MB,,6,1100 ‑ 2600,4/4,14,x86,,1502,UHD Graphics 600,~14.4,3403,2159,6432,0.88,2.68,73.2,224,165,490,416.5,1230,25.57,,17.56,661,,,,1.31,1.8,0.25,0.18,2570.5,,2279,7184,,,,1876,5668,435.5,1503,439,1509,,,,520,17701,54.4,46,86.2, -Qualcomm Snapdragon 690 5G,Kryo 560 Gold (Cortex-A77) / Silver (Cortex-A55),Snapdragon,,,,1700 ‑ 2000,8/8,8,ARM,,1276,Adreno 619L,~25.2,,,,,,,,,,,,,,,,,,,,,,,,,,,7298,,,2739.5,6837,,,600,1794.5,,,515836,481.5,10630.5,30.89,27.25,51.5, -MediaTek Dimensity 800U,Cortex-A76 / A55,,,,,2000 ‑ 2400,8/8,7,ARM,,1306,Mali-G57 MP3,~11.1,,,,,,,,,,,,,,,,,,,,,,,,,,,8035,,,,,,,599,1779.5,,,12938.5,,16629,33.82,32.05,47, -MediaTek Dimensity 6020,Cortex-A76 / A55,,,,,2000 ‑ 2200,8/8,7,ARM,,289,Mali-G57 MP2,~12,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,539,1813,709,1781,4668,,16765,56.65,45.2,66,52 -UNISOC T820,Cortex-A76 / A55,,,,,2100 ‑ 2700,8/8,6,ARM,,470,Mali-G57 MP4,~17.3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2857,8410,,,639,2283,,,,,,,,, -UNISOC Tangula T770,Cortex-A76 / A55,,,,,2000 ‑ 2500,8/8,6,ARM,,1444,Mali-G57 MP4,~16.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2763,8087,,,622,2226,,,,,,,,, -UNISOC Tangula T760,Cortex-A76 / A55,,+ 3MB,,,2000 ‑ 2000,8/8,6,ARM,,1452,Mali-G57 MP4,~13.3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,541,2155,,,,,,,,, -Qualcomm Snapdragon 732G,Kryo 470 Gold / Silver,Snapdragon,,,,2300,8/8,8,ARM,,1209,Adreno 618,~22.4,,,,,,,,,,,,,,,,,,,,,,,,,,,6709,,,2616,7036.5,,,565,1787,,,,430,17398,52.6,43.2,72, -Qualcomm Snapdragon 730G,Kryo 470 Gold / Silver,Snapdragon,,,,2200,8/8,8,ARM,,1719,Adreno 618,~12.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2556,6987,543,1726,547,1744.5,,,199813,,16602.5,46.87,43.3,69, -Mediatek Helio G99,Cortex-A76 / A55,Mediatek,,,,2000 ‑ 2200,8/8,6,ARM,,486,Mali-G57 MP2,~13,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2672,7896,555,1921,543.5,1803.5,721,1957.5,,,18447.5,55.89,34.55,86,56.5 -MediaTek Dimensity 700,Cortex-A76 / A55,,,,,2000 ‑ 2200,8/8,7,ARM,,1014,Mali-G57 MP2,~18.6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2531,6853,,,547,1700,711,1919,3167,592,16871,44.7,37,56,54 -Qualcomm Snapdragon 730,Kryo 470 Gold / Silver,Snapdragon,,,,2200,8/8,7,ARM,,1719,Adreno 618,~15,,,,,,,,,,,,,,,,,,,,,,,,,,,7184,,,2481.5,6848.5,,,545,1713.5,,,199625,,16378.5,43.58,40.1,73, -Qualcomm Snapdragon 720G,Cortex-A76 / A55,Snapdragon,,,,2300,8/8,8,ARM,,1719,Adreno 618,~12.3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2620,6263,,,567,1694,,,18494,,17265,48.22,41,69, -Mediatek Helio G96,Cortex-A76 / A55,Mediatek,,,,2000 ‑ 2050,8/8,12,ARM,,920,Mali-G57 MP2,~11.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2522,7630,531,1873,528,1755,680,1688,4433.5,,18633.5,52.37,43.55,66,50 -Mediatek Helio G95,Cortex-A76 / A55,Mediatek,,,,2000 ‑ 2050,8/8,12,ARM,,1605,Mali-G76 MP4,~10.9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2476,6436,,,510.5,1680,,,12299,,15551.5,36.93,33.65,53,40 -Mediatek Helio G90T,Cortex-A76 / A55,Mediatek,,,,2050,8/8,12,ARM,,1605,Mali-G76 MP4,~11.2,,,,,,,,,,,,,,,,,,,,,,,,,,,6843,,,2424.5,6836.5,391,1612,503,1593,,,107245,,15619,35.74,33.95,54, -UNISOC T765,Cortex-A76 / A55,,,,,2100 ‑ 2300,8/8,6,ARM,,4,Mali-G57 MP2,~15.3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,750,1935,,,,,,, -Qualcomm Snapdragon 480 Plus 5G,Cortex-A76 / 55,Snapdragon,,,,1800 ‑ 2200,8/8,8,ARM,,1080,Adreno 619,~14.2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2531,6819,,,554,1643,746,1917,4242,,20689,65.69,47.6,85.5,70 -Qualcomm Snapdragon 480 5G,Cortex-A76 / 55,Snapdragon,,,,1800 ‑ 2000,8/8,8,ARM,,1080,Adreno 619,~14.2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2478,6917,,,510,1663,,,187431,,16018,46.44,38.4,70, -MediaTek Dimensity 720,Cortex-A76 / A55,,,,,2000,8/8,7,ARM,,1245,Mali-G57 MP3,~13.6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2329.5,6174,,,499.5,1603.5,660,1856,176204,,16261.5,37.29,37.7,51,62 -Mediatek Helio P90,Cortex-A75 / A55,Mediatek,,,,2200,8/8,12,ARM,,1468,PowerVR GM9446,~14.2,,,,,,,,,,,,,,,,,,,,,,,,,,,7696,,,1994,6162,,,408,1524,,,195354,,14607,43.53,41.5,91, -HiSilicon Kirin 970,Cortex-A73/-A53,,,,,2400,8/8,10,ARM,,2300,Mali-G72 MP12,~11.3,,,,,,,,,,,,,,,,,,,,,,,,,,,6877.5,,,1901,6714.5,386,1711.5,,,,,202050,,11085,25.88,27.9,69, -HiSilicon Kirin 960,Cortex-A73/-A53,,,,,2400,8/8,16,ARM,,2603,Mali-G71 MP8,~13.3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1869,6445,,,,,,,264076,,10236,23.46,20.85,70, -HiSilicon Kirin 960s,Cortex-A73/-A53,,,,,2100,8/8,16,ARM,,2603,Mali-G71 MP8,~11.6,,,,,,,,,,,,,,,,,,,,,,,,,,,6502,,,1634,5809,,,,,,,,,6802,,,, -AMD A9-9420e,Stoney Ridge,Bristol Ridge,1MB,,,‑ 2500,2/2,28,x86,,2028,Radeon R5 (Stoney Ridge),~0.6,,,,,,,97,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Pentium Gold 4425Y,Kaby Lake,Kaby Lake,512KB + 2MB,,6,1700,2/4,14,x86,,2434,UHD Graphics 615,~13.3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2160,4330,,,,,,,,,,,,, -Intel Pentium Gold 4415Y,Kaby Lake,Kaby Lake,512KB + 2MB,,6,1600,2/4,14,x86,,2434,HD Graphics 615,~6.7,,2521,5586,0.75,1.8,65,164,,,,,16.34,1240,31.07,982,1455,58.3,11,1.09,0.1,,,,,,,,,,,,,,,,,,,,11875,,,, -Apple A9X,Cyclone 3,,,,,2260,2/2,14,ARM,,3024,A9X / PowerVR GT7xxx,~30.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3097,5284,,,,,,,59226,181,19736.5,,,101, -Qualcomm Snapdragon 678,Kryo 460 Gold (Cortex-A76) / Silver (Cortex-A55),Snapdragon,,,,1700 ‑ 2200,8/8,11,ARM,,1100,Adreno 612,~14.7,,,,,,,,,,,,,,,,,,,,,,,,,,,7022,2219,5674,2483,6570,,,531,1541,,,2743,,15828,47.39,41.17,71, -Qualcomm Snapdragon 675,Kryo 460 Gold (Cortex-A76) / Silver (Cortex-A55),Snapdragon,,,,1600 ‑ 2000,8/8,11,ARM,,1914,Adreno 612,~12.4,,,,,,,,,,,,,,,,,,,,,,,,,,,6668,,,2323,6222,504,1610,486,924,,,190355,,15702.5,44.17,41.4,76, -Samsung Exynos 8895 Octa,Mongoose / Cortex-A53,Exynos,,,,2300,8/8,10,ARM,,2457,Mali-G71 MP20,~17.6,,,,,,,,,,,,,,,,,,,,,,,,,,,6325,,,2015,6711,,,,,,,238041,,13265,,,, -Qualcomm Snapdragon 685 4G,Kryo 265 Gold (Cortex-A73) / Silver (Cortex-A53),Snapdragon,,,,1900 ‑ 2800,8/8,6,ARM,,1100,Adreno 610,~11.9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2055,7087,,,442,1787,,,4077,,15695,58.95,50.9,74,58 -Qualcomm Snapdragon 680 4G,Kryo 265 Gold (Cortex-A73) / Silver (Cortex-A53),Snapdragon,,,,1800 ‑ 2400,8/8,6,ARM,,1100,Adreno 610,~10.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1818.5,5636,,,377.5,1604,425.5,1157.5,,,12386,42.03,39.64,63.5,45.5 -Qualcomm Snapdragon 835 (8998),Kryo 280,Snapdragon,,,,2450,8/8,10,ARM,,2464,Adreno 540,~15.3,,664,3198,0.27,1.59,,,,,,,,,,,,,,,,,,,,,,7226,1155,4100,1920,6517,388,1714,386,1669,,,266992,298.5,11484,36.4,41.7,77, -UNISOC T750,Cortex-A76 / A55,,+ 3MB,,,1800 ‑ 2000,8/8,6,ARM,,249,Mali-G57 MP2,~11.2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,470,1432,,,,,,,,, -UNISOC Tangula T740,Cortex-A75 / A55 Tangula,,+ 2MB,,,1800 ‑ 1800,8/8,12,ARM,,1449,PowerVR GM9446,~9.3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,367,1727,,,,,,,,, -Qualcomm Snapdragon 712,Kryo 360,Snapdragon,,,,2300,8/8,10,ARM,,1777,Adreno 616,~11.2,,,,,,,,,,,,,,,,,,,,,,,,,,,6973,,,1875,5975,317,1491,,,,,185962,,11945,37.21,37.5,59.5, -Apple A10 Fusion,APL1021 Hurricane / Zephyr,Apple A-Series,,,,2340,4/2,16,ARM,,2659,A10 Fusion GPU,~14.6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3499,5922,771,1429,777,1421,,,49329,,26053,65.2,65.95,95, -Samsung Exynos 8890 Octa,Mongoose / Cortex-A53,Exynos,,,,2600,8/8,14,ARM,,2850,Mali-T880 MP12,~32,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1810,5354,,,,,,,207417,321,12915.5,,,, -Samsung Exynos 9611,Exynos 7 Series,Exynos,,,,1700 ‑ 2300,8/8,10,ARM,,1486,Mali-G72 MP3,~8.2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,347,1299,347.5,1323.5,,,150124,,9810,27.68,29.2,55, -Samsung Exynos 9610,Exynos 7 Series,Exynos,,,,1700 ‑ 2300,8/8,10,ARM,,1714,Mali-G72 MP3,~12.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1721,5605,,,,,,,172805,,10322,,33.07,62, -HiSilicon Kirin 955,Cortex-A72/-A53,,,,,2500,8/8,16,ARM,,2814,Mali-T880 MP4,~14.6,,,,,,,,,,,,,,,,,,,,,,,,,,,8222,,,1744,5260,,,,,,,253465,,11920.5,32.26,36,, -Intel Celeron J4115,Gemini Lake,Gemini Lake,4MB,,10,1800 ‑ 2500,4/4,14,x86,,1507,UHD Graphics 600,~11.8,3683,2087,7426,0.83,3.2,70.6,244,156.5,546.5,,,27.38,1472,19.09,564,1203,76.3,17.5,1.42,1.7,0.25,0.17,2515,,2199.5,7613.5,,,,,,,,399,1420.5,,,,,,,,81.65, -Intel Celeron N4100,Gemini Lake,Gemini Lake,4MB,,6,1100 ‑ 2400,4/4,14,x86,,2200,UHD Graphics 600,~13.4,2805,2013,5904,0.83,2.18,68.6,198,152,391,386.5,960.5,28.5,1474,19.41,790,1139,58.2,11.8,1.18,1.7,0.23,0.16,3176,,2158,6608,,1629,5041.5,1795,5259,408,1232,405,1271,,,,233,11328,,,75.2, -Intel Pentium Gold 4410Y,Kaby Lake,Kaby Lake,512KB + 2MB,,6,1500,2/4,14,x86,,2434,HD Graphics 615,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Celeron 3965Y,Kaby Lake,Kaby Lake,512KB + 2MB,,6,1500,2/2,14,x86,,2434,HD Graphics 615,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -HiSilicon Kirin 950,Cortex-A72/-A53,,,,,2300,8/8,16,ARM,,2946,Mali-T880 MP4,~32.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1683,5283,,,,,,,270825,460.6,11329,,,, -Samsung Exynos 9609,Exynos 7 Series,Exynos,,,,1600 ‑ 2200,8/8,10,ARM,,1714,Mali-G72 MP3,~12.8,,,,,,,,,,,,,,,,,,,,,,,,,,,6123,1478,5223,1603,5324,,,,,,,131830,,9808,31.18,29.9,63, -AMD A6-9220C,Stoney Ridge,Bristol Ridge,1MB,,6,1800 ‑ 2700,2/2,28,x86,,1784,Radeon R5 (Stoney Ridge),,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Celeron N4505,Jasper Lake,Jasper Lake,1.5MB + 4MB,,10,2000 ‑ 2900,2/2,10,x86,,1073,UHD Graphics (Jasper Lake 16 EU),~16.7,3214,3621.5,6860.5,1.28,2.49,106,197.5,230,441.5,603.5,1148.5,20.92,1003.47,35.84,1131.72,1061.5,72.3,13.65,1.19,1.3,0.19,0.1,2899,5741.5,3046.5,6003.5,,,,2945.5,5082,648,1214.5,653.5,1232,,,,353.4,24502,89.8,71.7,114.15,80.25 -Intel Celeron J4025,Gemini Lake Refresh,Gemini Lake,4MB,,10,2000 ‑ 2900,2/2,14,x86,,1507,UHD Graphics 600,~11,2575,2337,4556,0.96,1.81,77,148,178,293,461,857,23.08,1175.7,31.07,983.3,783,53.1,10.6,0.98,1,0.15,0.1,3792,7396,2636,4955,,,,2170,3847,497,919,500,927,,,,,,,,89.2,67.1 -Intel Celeron N4500,Jasper Lake,Jasper Lake,1.5MB + 4MB,,6,1100 ‑ 2800,2/2,10,x86,,1073,UHD Graphics (Jasper Lake 16 EU),~15.6,2053,,,1.04,2.1,82,171,188,332,452,709,22.82,1132,50.2,1270,1076,60.6,12.02,0.74,1.1,0.18,0.1,4249,,2853,5394,,,,,,,,594,1018,457,662,,197.1,24838,82.5,71.5,94.75,91.2 -Intel Celeron N4020,Gemini Lake Refresh,Gemini Lake,4MB,,6,1100 ‑ 2800,2/2,14,x86,,1507,UHD Graphics 600,~10.9,2495,2184,4427,0.94,1.71,73.75,127.1,162.4,279,308,616,24.17,1220,29.66,932,766,50.1,9.97,0.83,0.95,0.13,0.09,4064,,2456,4498,,,,2004,3433,,,462,836,,,,,,49.9,,80.2,55.25 -MediaTek Kompanio 520,2x Cortex-A76 / 6x A55,MediaTek Kompanio 500,,,,2000,8/8,7,ARM,,408,Mali-G52 MP2,~27,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,510,1532,,,,172.6,23443,75.55,40.9,121,80.5 -Mediatek Helio P70,Cortex-A73 / A53,Mediatek,,,,2100,8/8,12,ARM,,1707,Mali-G72 MP3,~9.1,,,,,,,,,,,,,,,,,,,,,,,,,,,6339,,,1479,5124,298,1399,295,1443,,,171015,,9097,23.72,32.04,47.5, -Mediatek Helio P65,Cortex-A75 / A55,Mediatek,,,,2000,8/8,12,ARM,,1633,Mali-G52 MP2,~7.9,,,,,,,,,,,,,,,,,,,,,,,,,,,6229,,,1711,5097,357,1211,354,1239.5,,,6412,,10460.5,33.29,27.9,51.5, -MediaTek Helio X27 MT6797X,,Mediatek Helio 20,,,,2600,10/10,,ARM,,1997,Mali-T880 MP4,~12.2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1690,4781.5,,,,,,,159874,,6031.5,,,, -Qualcomm Snapdragon 710,Kryo 360,Snapdragon,,,,2200,8/8,10,ARM,,1853,Adreno 616,~12.7,,,,,,,,,,,,,,,,,,,,,,,,,,,6539,1863,5589,1821,5850.5,394,1515,393,1478,,,180127,,12364.5,36.48,36.7,69.5, -Qualcomm Snapdragon 670,Kryo 360 Gold / Silver,Snapdragon,,,,2016,8/8,10,ARM,,1960,Adreno 616,~10,,,,,,,,,,,,,,,,,,,,,,,,,,,6467,,,1624,5172,344,1322,349,1343,,,171622,,10950,33.13,32.5,62, -Qualcomm Snapdragon 665,Kryo 260,Snapdragon,,,,2200,8/8,11,ARM,,1716,Adreno 610,~9.3,,,,,,,,,,,,,,,,,,,,,,,,,,,6117,,,1495,5366,314,1379,310.5,1371.5,,,172978,,9260,30.59,29.12,51, -Qualcomm Snapdragon 662,Kryo 260,Snapdragon,,,,1800 ‑ 2000,8/8,11,ARM,,1716,Adreno 610,~7.7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1472,4938,,,314,1381,,,16222,,9385,31.63,28.5,52, -Qualcomm Snapdragon 660,Kryo 260,Snapdragon,,,,2200,8/8,14,ARM,,2416,Adreno 512,~16.3,,,,,,,,,,,,,,,,,,,,,,,,,,,6141,,,1617,5850,321.5,1305,330.5,1440.5,,,186416,630,10070,30.82,32.3,59, -Qualcomm Snapdragon 821 MSM8996 Pro,Kryo,Snapdragon,1.5MB,,,2400,4/4,14,ARM,,2636,Adreno 530,~11.7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1834.5,4356,,,,,,,215105,,9493,26.42,22.4,, -Samsung Exynos 7885,Cortex-A73/-A53,Exynos,,,,2200,8/8,14,ARM,,2179,Mali-G71 MP2,~10.8,,,,,,,,,,,,,,,,,,,,,,,,,,,5054,,,1525.5,4430,,,,,,,,,9257.5,,,57, -UNISOC T619,Cortex-A75 / A55,,+ 1MB,,,1800 ‑ 2200,8/8,12,ARM,,1484,Mali-G57 MP1,~9.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,403,1489,,,,,,,,, -UNISOC T618,Cortex-A75 / A55,,+ 1MB,,,2000 ‑ 2000,8/8,12,ARM,,1484,Mali-G52 MP2,~11.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1911,5744,,,382,1325.5,,,,,12356.5,42.61,33.33,74.5,58 -UNISOC T616,Cortex-A75 / A55,,+ 1MB,,,1800 ‑ 2000,8/8,12,ARM,,1484,Mali-G57 MP1,~10.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1734,5377.5,,,355,1428,428,1548,3122.5,,14081,50.52,38.3,80,57 -UNISOC T612,Cortex-A75 / A55,,+ 1MB,,,1800 ‑ 2000,8/8,12,ARM,,598,Mali-G52 MP1,~9.1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,346,1323,,,2969,,12581,45.17,31.65,73,46 -UNISOC T610,Cortex-A75 / A55,,+ 1MB,,,1800 ‑ 2000,8/8,12,ARM,,1484,Mali-G52 MP2,~8.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,348.5,1298.5,,,1942,,11952,44.18,33.43,,53 -UNISOC T606,Cortex-A75 / A55,,+ 1MB,,,1600,8/8,12,ARM,,1484,Mali-G57 MP1,~8.2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,310,1185.5,375,1442.5,1218,,10858,48.46,35.13,,51.5 -UNISOC Tangula T700,Cortex-A75 / A55,,,,,1800 ‑ 1800,8/8,12,ARM,,999,Mali-G52 MP2,~7.6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,351.5,1342,,,2078,,10382,35.89,29.9,65, -Mediatek Helio G88,Cortex-A75 / A55,Mediatek,,,,1800 ‑ 2000,8/8,12,ARM,,1360,Mali-G52 MP2,~7.6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1785.5,5838.5,363,1257,375,1284,436,1262.5,3345,,9404,28.58,24.4,48,34.5 -Mediatek Helio G85,Cortex-A75 / A55,Mediatek,,,,1800 ‑ 2000,8/8,12,ARM,,1360,Mali-G52 MP2,~9.7,,,,,,,,,,,,,,,,,,,,,,,,,,,5907,,,1662,5301,,,353,1305,,,,,12107,30.77,27.85,45, -Mediatek Helio G80,Cortex-A75 / A55,Mediatek,,,,2000,8/8,12,ARM,,1707,Mali-G52 MP2,~9.4,,,,,,,,,,,,,,,,,,,,,,,,,,,5821,,,1702.5,5424.5,,,363.5,1337.5,413,1384,7818,,11782,33.32,28.65,49,44.5 -Mediatek Helio G70,Cortex-A75 / A55,Mediatek,,,,2000,8/8,12,ARM,,1707,Mali-G52 MP2,~9.4,,,,,,,,,,,,,,,,,,,,,,,,,,,6725,,,1832,5734,,,387.5,1307.5,,,13756,,10648,29.08,31.2,44, -HiSilicon Kirin 710,Cortex-A73/-A53,,,,,2200,8/8,12,ARM,,1918,Mali-G51 MP4,~9.8,,,,,,,,,,,,,,,,,,,,,,,,,,,5856.5,,,1550,5430,327,1339,330.5,1338,,,184162,,9695,31.56,31.55,62, -HiSilicon Kirin 710A,Cortex-A73/-A53,,,,,2000,8/8,14,ARM,,1317,Mali-G51 MP4,~9.2,,,,,,,,,,,,,,,,,,,,,,,,,,,6201,,,1440,5231.5,,,297,1312,,,,,9453.5,30.19,26.37,55, -Mediatek Helio P60T,Cortex-A73 / A53,Mediatek,,,,2000,8/8,12,ARM,,2179,Mali-G72 MP3,~17.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,258.5,1091.5,,,6791,716,10523.5,37.36,30.44,69.5,48 -Mediatek Helio P60,Cortex-A73 / A53,Mediatek,,,,2000,8/8,12,ARM,,2179,Mali-G72 MP3,~10.2,,,,,,,,,,,,,,,,,,,,,,,,,,,6391,,,1479.5,5648.5,,,293,1422,,,142690,,8778,26.19,33,51, -Mediatek MT8788,Cortex-A73 / A53,Mediatek,,,,2000,8/8,12,ARM,,1724,Mali-G72 MP3,~7.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,971,4983,,,291,1383,329,1284,,,10152.5,36.44,25.3,, -Mediatek MT8183,Cortex-A73/-A53,Mediatek MT8,,,,2000,8/8,12,ARM,,1478,Mali-G72 MP3,~10,,,,,,,,,,,,,,,,,,,,,,,,,,,6072,,,1430.5,5376.5,,,300,1293,323,1214,175006,,9822,25.62,26.7,55.5, -Samsung Exynos 7420 Octa,Cortex-A57/-A53,Exynos,,,,2100,8/8,14,ARM,,3216,Mali-T760 MP8,~28.9,,,,,,,,,,,,,,,,,,,,,,,,,,,6201,1237.5,4958,,,,,,,,,169794,546,8518,,,, -Mediatek Helio X25 MTK6797T,Cortex-A72 / A53,Mediatek Helio 20,,,,2500,10/10,20,ARM,,2850,Mali-T880 MP4,~9.6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1791,4554,,,,,,,,,6089,,,, -Qualcomm Snapdragon 820 MSM8996,Kryo,Snapdragon,1.5MB,,,2200,4/4,14,ARM,,2926,Adreno 530,~10.1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1662,4021,,,,,,,170521,,8987,24.59,21,, -Nvidia Tegra X1,Erista (Cortex-A57 + A53),Tegra,2.5MB,,,2000,8/8,20,ARM,,3271,Tegra X1 Maxwell GPU,~27.3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1510,4264,,,,,,,129085,715,8031.5,,,, -Apple A9,Cyclone 3,,,,,1800,2/2,14,ARM,,3024,A9 / PowerVR GT7600,~24.9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2556,4459,,,531,970,,,48849,223,16375,,,, -AMD A4-9120,Stoney Ridge,Bristol Ridge,1MB,,10-15,2200 ‑ 2500,2/2,28,x86,,2393,Radeon R2 (Stoney Ridge),,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD A4-9120C,Stoney Ridge,Bristol Ridge,1MB,,6,1600 ‑ 2400,2/2,28,x86,,1809,Radeon R4 (Stoney Ridge),,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Qualcomm Snapdragon 810 MSM8994,Cortex-A57/-A53,Snapdragon,,,,2000,8/8,20,ARM,,3544,Adreno 430,~17.7,,,,,,,,,,,,,,,,,,,,,,,,,,,3012.5,1093.5,3218,1350,3440,,,,,,,117831,579,7924.5,18.08,22.4,, -Samsung Exynos 850,Cortex-A55,,,,,‑ 2000,8/8,8,ARM,,1314,Mali-G52 MP1,~5.3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,987,4986,,,178,1042,,,10533,,5454.5,20.2,15.7,36.5,25 -Qualcomm Snapdragon 652 MSM8976,Cortex-A72/-A53,Snapdragon,,,,1800,8/8,28,ARM,,3227,Adreno 510,~14.1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1454,4612,,,,,,,215365,,9071.5,,,, -Qualcomm Snapdragon 808 MSM8992,Cortex-A53/A57,Snapdragon,,,,2000,6/6,20,ARM,,3544,Adreno 418,~20.3,,,,,,,,,,,,,,,,,,,,,,,,,,,3773,1022,2952,1124,2798,,,,,,,97824,651,7948.5,,,, -Qualcomm Snapdragon 650 MSM8956,Cortex-A72/-A53,Snapdragon,,,,1800,6/6,28,ARM,,3227,Adreno 510,~8.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1458,2869,,,,,,,,,8368.5,,,, -Apple A8X,Cyclone 2,,2MB + 4MB,,,1500,3/3,20,ARM,,3352,UHD Graphics 750,~20.9,,,,,,,,,,,,,,,,,,,,,,,,,,,,1812,4477,1821,4357,381,1060,,,,,73235,291.1,10512,,,, -Nvidia Tegra K1 (Denver),Denver,Tegra,2MB,,,2300,2/2,28,ARM,,3353,GeForce ULP K1 (Tegra K1 Kepler GPU),~21.8,,,,,,,,,,,,,,,,,,,,,,,,,,,4055,1811,3029,1729,2776,,,,,,,35765,919,8210,,,, -Mediatek Helio X20 MT6797,Cortex-A72 / A53,Mediatek Helio 20,,,,2300,10/10,20,ARM,,2850,Mali-T880 MP4,~9.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1599,4468,,,,,,,,,7999.5,,,, -Mediatek MT8176,Cortex-A72/-A53,Mediatek,,,,2100,6/6,28,ARM,,2689,PowerVR GX6250,~9.3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1582.5,3232.5,,,,,,,,,8897,,,, -Mediatek Helio P25,Cortex-A53,Mediatek Helio 20,,,,2600,8/8,16,ARM,,2872,Mali-T880 MP2,~6.5,,,,,,,,,,,,,,,,,,,,,,,,,,,4348,,,836.5,3860.5,177,891,177,891,,,135249,,4582.5,,,, -Mediatek MT8173,Cortex-A72/-A53,Mediatek,,,,2400,4/4,28,ARM,,3216,PowerVR GX6250,~7.9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1204,3305,,,,,,,,,8570,,,, -MediaTek MT8169A,Cortex-A55,Mediatek MT8,,,,2000,6/6,12,ARM,,350,Mali-G52 MP2,~5.7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5843,23.54,15.76,38.5,25 -Mediatek Helio G37,Cortex-A53,Mediatek Helio G,,,,1800 ‑ 2300,8/8,12,ARM,,1268,PowerVR GE8320,~5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,800,3716,,,161,706,193,845,,,6000,21.16,15.01,37, -Mediatek Helio G35,Cortex-A53,Mediatek Helio G,,,,2300,8/8,12,ARM,,1268,PowerVR GE8320,~4.3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,783,3585,,,170,881,,,1727,,5369.5,17.96,13.3,34, -Mediatek Helio G36,Cortex-A53,Mediatek Helio G,,,,2200,8/8,12,ARM,,325,PowerVR GE8320,~4.6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,139,512,,,1003,,5207,23.11,16.9,43,27 -Mediatek MT8173C,Cortex-A72/-A53,Mediatek,,,,2100,4/4,28,ARM,,3216,PowerVR GX6250,~51.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,590,10319,,,, -Mediatek MT6595 Turbo,Cortex-A7/-A17,Mediatek,2MB,,,2500,8/8,28,ARM,,3599,PowerVR G6200,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Mediatek MT8768,Cortex-A53,Mediatek MT8,,,,1500 ‑ 2000,8/8,,ARM,,1416,PowerVR GE8320,~4.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,789,3745,,,152,780,,,,,4142.5,15.5,13.34,31, -Samsung Exynos 5433 Octa,Cortex-A57/-A53,Exynos,,,,1900,8/8,20,ARM,,3395,Mali-T760 MP6,~28.3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1359,3969,,,,,,,,1023.5,6991,,,, -Apple A8,Cyclone 2,,1MB + 4MB,,,1400,2/2,20,ARM,,3389,PowerVR GX6450,~19.9,,,,,,,,,,,,,,,,,,,,,,,,,,,,1614.5,2881.5,1591,2759,,,328,627,,,44118,347.2,7377,,,, -Mediatek Helio G25,Cortex-A53,Mediatek Helio G,,,,2000,8/8,12,ARM,,1268,PowerVR GE8320,~4.5,,,,,,,,,,,,,,,,,,,,,,,,,,,3256,,,711,3574,,,141,650,,,,,3974,14.37,12.65,24, -Mediatek Helio A25,Cortex-A53,Mediatek Helio 20,,,,1800,8/8,12,ARM,,1416,PowerVR GE8320,~4.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,138.5,860,,,99375,,3779.5,13.05,13.6,23, -Nvidia Tegra K1,"Logan (Cortex-A15 ""r3"" + Kepler-GPU)",Tegra,2MB,,,2300,4/4,28,ARM,,3635,GeForce ULP K1 (Tegra K1 Kepler GPU),~19.7,,,,,,,,,,,,,,,,,,,,,,,,,,,4743,1090.5,3278.5,1085,2949,,,,,,,22985,525,6810,,,, -Qualcomm Snapdragon 805 APQ8084,Krait 450,Snapdragon,2MB,,,2700,4/4,28,ARM,,3682,Adreno 420,~18.8,,,,,,,,,,,,,,,,,,,,,,,,,,,4469,1073,3141,1008,2576,,,,,,,18314,784,5379,,,, -Qualcomm Snapdragon 636,Kryo 260,Snapdragon,,,,1800,8/8,14,ARM,,2255,Adreno 509,~8,,,,,,,,,,,,,,,,,,,,,,,,,,,5063,,,1337,4941,278,1256,,,,,157981,9121,8559,26.2,26.45,54, -Samsung Exynos 7904,Cortex-A73/-A53,Exynos,,,,1800,8/8,14,ARM,,1794,Mali-G71 MP2,~7.4,,,,,,,,,,,,,,,,,,,,,,,,,,,4275,,,1320,4096,273,1010,239,596,,,133094,,8372,22.61,22.29,52, -Qualcomm Snapdragon 632,Kryo 250,Snapdragon,,,,1800,8/8,14,ARM,,2003,Adreno 506,~7.7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1247,4515,,,271,1233,,,,,8268.5,26.9,27.44,58, -Qualcomm Snapdragon 460,Cortex-A73 / 53,Snapdragon,,,,1800,8/8,14,ARM,,2366,Adreno 610,~14.4,,,,,,,,,,,,,,,,,,,,,,,,,,,5371,,,1290.5,4970,,,254,1155,,,13985,1219,7240.5,25.98,22.55,42.5, -Intel Atom Z3735E,Bay Trail-T,Atom,2MB,,<4,1330 ‑ 1830,4/4,22,x86,,3512,HD Graphics (Bay Trail),,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Atom Z3735F,Bay Trail-T,Atom,2MB,,<4,1330 ‑ 1830,4/4,22,x86,,3512,HD Graphics (Bay Trail),~9.7,1164,945,2885.5,0.31,0.87,,,,,,,27.45,1566,35.66,1100,1635,35.9,6.83,,0.62,0.14,0.09,,,,,2238.5,786,2191.5,,,,,,,,,,511,3524,,,, -Intel Atom Z3735G,Bay Trail-T,Atom,2MB,,<4,1330 ‑ 1830,4/4,22,x86,,3512,HD Graphics (Bay Trail),~13.4,1526,946,2891,,,,,,,,,156.3,6113,37.53,1171,1397,31.8,6.55,,0.62,0.14,0.09,,,,,,724,2110,,,,,,,,,,512,3381,,,, -AMD A6-9220e,Stoney Ridge,Bristol Ridge,1MB,,6,1600 ‑ 2400,2/2,28,x86,,2393,Radeon R4 (Stoney Ridge),~9.6,,1056,1741,,,31,86,73,110,,,66.4,2732,35.2,1517,519,14.7,2.65,,0.34,0.07,,,,,,3192,1247,1929,1260,1571,260,293,,,,,,357.7,9070,,12.6,64, -Qualcomm Snapdragon 630,Cortex-A53,Snapdragon,,,,2200,8/8,14,ARM,,2417,Adreno 508,~6.7,,,,,,,,,,,,,,,,,,,,,,,,,,,4256,,,865,4172,,,,,,,,,5011,16.25,,38, -Qualcomm Snapdragon 626,Cortex-A53,Snapdragon,,,,2200,8/8,14,ARM,,2869,Adreno 506,~5.3,,,,,,,,,,,,,,,,,,,,,,,,,,,4557,,,928.5,4496.5,187,1098,,,,,,,4705.5,17.94,19.78,, -Qualcomm Snapdragon 801 MSM8974AC,Krait 400,Snapdragon,2MB,,,2450,4/4,28,ARM,,3836,Adreno 330,~18,,,,,,,,,,,,,,,,,,,,,,,,,,,3594,965.5,2709,1024,2658,,,,,,,18438,826,4549.5,,,, -Samsung Exynos 5430 Octa,Cortex-A7/-A15,Exynos,512KB,,,1800,8/8,20,ARM,,3415,Mali-T628 MP6,~22.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,951,3209,782,2457,,,,,,,,445.7,5640,,,, -UNISOC SC9863A,Cortex-A55,,+ 512KB,,,1200 ‑ 1600,8/8,28,ARM,,1849,GE8322 / IMG8322,~4.9,,,,,,,,,,,,,,,,,,,,,,,,,,,3189,,,827,3526,155,808.5,138,629,,,92404,,4018,14.69,13.26,30.5, -Mediatek Helio P23 MT6763T,Cortex-A53,Mediatek Helio 20,,,,2300 ‑ 2500,8/8,16,ARM,,2305,Mali-G71 MP2,~6.7,,,,,,,,,,,,,,,,,,,,,,,,,,,2632,,,829,3678,,,,,,,103595,,3913.5,15.99,,, -Mediatek Helio P23 MT6763V,Cortex-A53,Mediatek Helio 20,,,,2000,8/8,16,ARM,,2305,Mali-G71 MP2,~5.2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,804,3691,154.5,854.5,150,875,,,100256,,4274,,,29, -Mediatek MT6595,Cortex-A7/-A17,Mediatek,2MB,,,2200,8/8,28,ARM,,3599,PowerVR G6200,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Qualcomm Snapdragon 801 APQ8074AB,Krait 400,Snapdragon,2MB,,,2360,4/4,28,ARM,,3671,Adreno 330,~24.9,,,,,,,,,,,,,,,,,,,,,,,,,,,3982,915,2327,,,,,,,,,,1047,4127,,,, -Qualcomm Snapdragon 801 MSM8974AB,Krait 400,Snapdragon,2MB,,,2360,4/4,28,ARM,,3836,Adreno 330,~21.5,,,,,,,,,,,,,,,,,,,,,,,,,,,3717,919,2619,,,,,,,,,17428,772.5,3131,,,, -Nvidia Tegra 4,Wayne (Cortex A15),Tegra,,,,1800,4/4,28,ARM,,3998,GeForce Tegra 4,~15.6,,,,,,,,,,,,,,,,,,,,,,,,,,,3887,922,2513,909,2382,,,,,,,16687,599.5,4901,,18.8,40, -Mediatek MT6595M,Cortex-A7/-A17,Mediatek,2MB,,,2000,8/8,28,ARM,,3599,PowerVR G6200,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Qualcomm Snapdragon 801 MSM8974AA,Krait 400,Snapdragon,2MB,,,2260,4/4,28,ARM,,3428,Adreno 330,~27.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,913,2570,,,,,,,,,,1509,4529.5,,,, -Qualcomm Snapdragon 625,Cortex-A53,Snapdragon,,,,2000,8/8,14,ARM,,2869,Adreno 506,~7.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,925,4792,872.5,4319.5,171,1023,,,,,156240,,4502,15.99,17.17,36.5, -UNISOC Tiger T310,,,,,,1800 ‑ 2000,4/4,12,ARM,,1694,PowerVR GE8300,~8.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1687,2969,,,376,756,,,1653,,11986,39.15,28.2,63,45 -Qualcomm Snapdragon 439,Cortex-A53,Snapdragon,,,,2000,8/8,12,ARM,,2002,Adreno 505,~5.5,,,,,,,,,,,,,,,,,,,,,,,,,,,3684,,,877.5,3154,177,812,176,823,,,105520,,4755.5,16.3,18.23,35.5, -JLQ JR510,Cortex-A53,,,,,1500 ‑ 2000,8/8,11,ARM,,2002,Mali-G52 MP1,~5.1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,934,2671,,,164,818,,,1033,,5975,,14.9,46,25 -HiSilicon Kirin 925,Cortex-A15 / Cortex-A7,,,,,1800,8/8,28,ARM,,3394,Mali-T628 MP6,~21.9,,,,,,,,,,,,,,,,,,,,,,,,,,,,896.5,3214,767,1899,,,,,,,,704.5,6461,,,, -Qualcomm Snapdragon 800 MSM8974,Krait 400,Snapdragon,2MB,,,2300,4/4,28,ARM,,3836,Adreno 330,~17.8,,,,,,,,,,,,,,,,,,,,,,,,,,,3845,908,2641,991,2330,,,,,,,15263.5,739,4089.5,,,, -Mediatek Helio P20 (LP4) MT6757,Cortex-A53,Mediatek Helio 20,,,,2300,8/8,16,ARM,,2857,Mali-T880 MP2,~8.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,845,3580,,,,,,,130988,,4376.5,,,, -Samsung Exynos 5420 Octa,Cortex-A7/-A15,Exynos,512KB,,,1800,8/8,28,ARM,,3738,UHD Graphics 750,~17.2,,,,,,,,,,,,,,,,,,,,,,,,,,,3589,927.5,2751,818,2145,,,,,,,18111,1067,4297,,,, -HiSilicon Kirin 920,Cortex-A15 / Cortex-A7,,,,,1700,8/8,28,ARM,,3394,Mali-T628 MP4,~18.9,,,,,,,,,,,,,,,,,,,,,,,,,,,,858,3102,738,1752,,,,,,,18892,725,6363,,,, -Samsung Exynos 7880,A53,Exynos,,,,1900,8/8,14,ARM,,2544,Mali-T830 MP3,~5.7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,773,4104,,,,,,,,,5256,,,, -HiSilicon Kirin 935,Cortex-A53,,,,,2200,8/8,28,ARM,,3213,Mali-T628 MP4,~26.1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,800,2912,,,,,,,,992,4376,,,, -HiSilicon Kirin 659,Cortex-A53,,,,,2360,8/8,16,ARM,,2469,Mali-T830 MP2,~16.3,,,,,,,,,,,,,,,,,,,,,,,,,,,3897,,,926.5,3680.5,,,,,,,127602,1173,4980,16.77,16.42,40, -Samsung Exynos 7884B,Cortex-A73/-A53,Exynos,,,,1560,8/8,14,ARM,,2179,Mali-G71 MP2,~7.4,,,,,,,,,,,,,,,,,,,,,,,,,,,3886,,,1212,3714,,,,,,,,,7065,22.46,21.63,48, -HiSilicon Kirin 658,Cortex-A53,,,,,2350,8/8,16,ARM,,2469,Mali-T830 MP2,~5.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,913,3460,,,,,,,,,4589,,,, -Mediatek Helio X10 MT6795,Cortex-A53,Mediatek,,,,2200,8/8,28,ARM,,3445,PowerVR G6200,~5.1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,789,2041,,,,,,,,,,,,, -Samsung Exynos 7870 Octa,A53,Exynos,,,,1600,8/8,14,ARM,,2862,Mali-T830 MP2,~4.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,732,3710,,,,,,,,,3880,12.04,13,31.5, -HiSilicon Kirin 655,Cortex-A53,,,,,2100,8/8,16,ARM,,2636,Mali-T830 MP2,~12.7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,162396,,4414.5,,,, -HiSilicon Kirin 650,Cortex-A53,,,,,2000,8/8,16,ARM,,2819,Mali-T830 MP2,~11.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,142543,,4472,,,, -HiSilicon Kirin 930,Cortex-A53,,,,,2000,8/8,28,ARM,,3213,Mali-T628 MP4,~25.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,760.5,3211.5,,,,,,,,,125047,1092.5,4084,,,, -Mediatek Helio P35 MT6765,Cortex-A53,Mediatek,,,,1800 ‑ 2300,8/8,16,ARM,,1845,PowerVR GE8320,~4.8,,,,,,,,,,,,,,,,,,,,,,,,,,,4143,,,855,3973,173,1002,168.5,934.5,,,,,4643,15.83,14.59,31.5, -Mediatek Helio P22T MT8768T,Cortex-A53,Mediatek,,,,2300,8/8,16,ARM,,2059,PowerVR GE8320,~4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,842,3870,173,920,166,936,,,5163,,5080,18.53,13.9,35, -Mediatek Helio P22 MT6762,Cortex-A53,Mediatek Helio 20,,,,2000,8/8,16,ARM,,2148,PowerVR GE8320,~4.3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,773.5,3505.5,,,137,805,,,,,4257,13.68,14.7,29, -Mediatek Helio P10 MT6755,Cortex-A53,Mediatek,,,,2000,8/8,28,ARM,,3445,Mali-T860 MP2,~18.6,,,,,,,,,,,,,,,,,,,,,,,,,,,3064,,,720.5,2926.5,,,,,,,102616,1107,3964.5,,,31, -Apple A7,Cyclone,,1MB + 4MB,,,1300,2/2,28,ARM,,3753,UHD Graphics 750,~21.3,,,,,,,,,,,,,,,,,,,,,,,,,,,,1383,2495.5,,,,,276,502,,,35725.5,399.3,5180,,,, -MediaTek MT8168,Cortex-A53,Mediatek MT8,,,,2000,4/4,12,ARM,,1315,Mali-G52 MP1,~5.1,,,,,,,,,,,,,,,,,,,,,,,,,,,2538,,,835,2469.5,,,144,500,,,70655,,4168.5,,12.2,30, -Qualcomm Snapdragon 450,Cortex-A53,Snapdragon,,,,1800,8/8,14,ARM,,2366,Adreno 506,~5.7,,,,,,,,,,,,,,,,,,,,,,,,,,,3783.5,,,758,3907,,,131,498,,,101906,,3997,15.76,12.45,31.5, -Samsung Exynos 5410 Octa,Cortex-A7/-A15,Exynos,512KB,,,1600,8/8,28,ARM,,3933,UHD Graphics 750,~4.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,683,1696,,,,,,,,,,,,, -Intel Atom x3-C3440,SoFIA LTE,Atom,1MB,,,1200 ‑ 1400,4/4,28,,,3215,UHD Graphics 750,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Samsung Exynos 5260 Hexa,Cortex-A15,Exynos,,,,1700,6/6,28,ARM,,3581,UHD Graphics 750,~20.6,,,,,,,,,,,,,,,,,,,,,,,,,,,2957,884,2156,,,,,,,,,15547,999,4316,,,, -Qualcomm Snapdragon 429,Cortex-A53,Snapdragon,,,,2000,4/4,12,ARM,,1999,Adreno 504,~4.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,860,2485,168,552,168,566,,,70208,,4344.5,15.33,14.54,34, -Mediatek Helio A22 MT6762M,Cortex-A53,Mediatek Helio 20,,,,2000,4/4,16,ARM,,2148,PowerVR GE8320,~4.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,825,2471,161,538,,,,,66909,,4355,,15.49,32, -Mediatek Helio A22 MT6761,Cortex-A53,Mediatek Helio 20,,,,2000,4/4,16,ARM,,2148,PowerVR GE8300,~5,,,,,,,,,,,,,,,,,,,,,,,,,,,2414,,,835.5,2395,,,140,488,189,491,67423,,4538.5,15.4,14.71,34,24 -Mediatek MT8766B,Cortex-A53,Mediatek MT8,,,,2000,4/4,12,ARM,,1267,PowerVR GE8300,~12,,,,,,,,,,,,,,,,,,,,,,,,,,,2227,,,783,2217,,,133,455,,,,1609,3920,15.01,12.6,27, -Mediatek Helio A20 MT6761D,Cortex-A53,Mediatek Helio 20,,,,1800,4/4,12,ARM,,1267,PowerVR GE8300,~4.2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,143.5,477,,,61213,,3938,14.28,12.8,26.5, -Mediatek MT8135,Cortex-A7/-A15,Mediatek,,,,1700,4/4,28,ARM,,3796,PowerVR G6200,~20.2,,,,,,,,,,,,,,,,,,,,,,,,,,,2797.5,765.5,1492.5,,,,,,,,,11615.5,992,5864.5,,,, -Rockchip RK3566,ARM Cortex-A55,,,,,‑ 2000,4/4,22,ARM,,1449,Mali-G52 MP2,~4.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,745,1418,,,143,312,203,493,,,5022,19.86,15.75,36,21 -Samsung Exynos 5250 Dual,Cortex A15,Exynos,1MB,,,1700,2/2,32,ARM,,4055,UHD Graphics 750,~34.5,,,,,,,,,,,,,,,,,,,,,,,,,,,2591,,,,,,,,,,,,720.5,4943,,,, -Mediatek MT8752,Cortex-A53,Mediatek,,,,1700,8/8,28,ARM,,3336,Mali-T760 MP2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Mediatek MT6752,Cortex-A53,Mediatek,,,,1700,8/8,28,ARM,,3445,Mali-T760 MP2,~23.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,740.5,3766.5,,,,,,,,,30455,1049,4139,,,, -Samsung Exynos 7580 Octa,Cortex-A53,Exynos,,,,1600,8/8,28,ARM,,3063,Mali-T720 MP2,~28.9,,,,,,,,,,,,,,,,,,,,,,,,,,,,721,3607,,,,,,,,,,735,3627,,,, -Qualcomm Snapdragon 617 MSM8952,Cortex-A53,Snapdragon,,,,1500,8/8,28,ARM,,3018,Adreno 405,~44.9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1228,3527,,,, -Qualcomm Snapdragon 616 MSM8939v2,Cortex-A53,Snapdragon,,,,1700,8/8,28,ARM,,3586,Adreno 405,~33.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,96167,1299,3155,,,, -Qualcomm Snapdragon 615 MSM8939,Cortex-A53,Snapdragon,,,,1700,8/8,28,ARM,,3586,Adreno 405,~19.2,,,,,,,,,,,,,,,,,,,,,,,,,,,2579,638,2370,,,,,,,,,12996.5,1213,3411,,,, -HiSilicon Kirin 620,Cortex-A53,,,,,1200,8/8,28,ARM,,3306,Mali-450 MP4,~41.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1679.5,2170,,,, -Rockchip RK3288,,,,,,1800,4/4,28,ARM,,3428,Mali-T760 MP4,~29.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,778.5,2182.5,,,,,,,,,,745.5,7107,,,, -Mediatek MT6753,Cortex-A53,Mediatek,,,,1500,8/8,28,ARM,,3216,Mali-T720 MP4,~18.2,,,,,,,,,,,,,,,,,,,,,,,,,,,,612.5,2483,653,2505,,,,,,,120120,1562,2855,,,, -Mediatek MT6750S,Cortex-A53,Mediatek,,,,1500,8/8,28,ARM,,2179,Mali-T860 MP2,~4.3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,646,2466.5,,,,,,,,,3448,,,22, -Mediatek MT6750N,Cortex-A53,Mediatek,,,,1500,8/8,28,ARM,,2179,Mali-T860 MP2,~4.2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,665,2645,,,,,,,,,3274,,,, -Mediatek MT6750,Cortex-A53,Mediatek,,,,1500,8/8,28,ARM,,2697,Mali-T860 MP2,~13.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,612,2617,,,,,,,75778,2042,3200,11.3,12.5,19, -Mediatek MT6750T,Cortex-A53,Mediatek,,,,1500,8/8,28,ARM,,2697,Mali-T860 MP2,~4.2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,658.5,2680,,,,,,,,,3192.5,,,, -Qualcomm Snapdragon W5+ Gen 1,ARM Cortex-A53,,,,,1700,4/4,4,,,157,UHD Graphics 750,~30.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1251.7,3710,,11,, -Qualcomm Snapdragon W5 Gen 1,ARM Cortex-A53,,,,,1700,4/4,4,,,157,UHD Graphics 750,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Qualcomm Snapdragon 610 MSM8936,Cortex-A53,Snapdragon,,,,1700,4/4,28,ARM,,3586,Adreno 405,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -MediaTek MT8163 V/A 1.5 GHz,Cortex-A53,,,,,1500,4/4,28,ARM,,3063,Mali-T720 MP2,~2.6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,636,1781,134,375,,,,,,,3261,,,, -Mediatek MT6592,Cortex-A7,Mediatek,1MB,,,1700,8/8,28,ARM,,3682,Mali-450 MP4,~18.7,,,,,,,,,,,,,,,,,,,,,,,,,,,2561,445,2390,,,,,,,,,25313.5,1182,2563.5,,,, -Qualcomm Snapdragon 600 APQ8064T,Krait-300,Snapdragon,2MB,,,1700,4/4,28,ARM,,3998,Adreno 320,~19.1,,,,,,,,,,,,,,,,,,,,,,,,,,,2721,637,1900,,,,,,,,,11659,1089,1988,,,, -Samsung Exynos 7578,Cortex-A53,Exynos,,,,1500,4/4,,ARM,,2850,Mali-T720 MP2,~26.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,703,2201,,,,,,,,,,1413,3566,,,, -HiSilicon Kirin 910T,Cortex-A9,,,,,1800,4/4,28,ARM,,3520,UHD Graphics 750,~21.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,599,1796,,,,,,,,,12178,1043,2775,,,, -MediaTek MT8163 V/B 1.3 GHz,Cortex-A53,,,,,1300,4/4,28,ARM,,3063,Mali-T720 MP2,~3.6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,640,1767,,,,,,,,,2853.5,,11.11,23, -MediaTek MT8161,Cortex-A53,,,,,1300,4/4,28,ARM,,3275,Mali-T720 MP2,~29.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,43768,1713,2510,,,, -Intel Atom x3-C3230RK,SoFIA 3G-R,Atom,,,,1100,4/4,28,,,3215,Mali-450 MP4,~4,,,,,,,,,,,,,,,,,,,,,,,,,,,,334,860,,,,,,,,,,,,,,, -Qualcomm Snapdragon 435,Cortex-A53,Snapdragon,,,,1400,8/8,28,ARM,,2869,Adreno 505,~17.9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,666,2582,,,,,,,81667,1979,3209,,,27, -Qualcomm Snapdragon 430 (MSM8937),Cortex-A53,Snapdragon,,,,1400,8/8,28,ARM,,2869,Adreno 505,~4.2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,658.5,2552.5,,,,,,,,,3293.5,10.99,,29, -Qualcomm Snapdragon 415 MSM8929,Cortex-A53,Snapdragon,,,,1400,8/8,28,ARM,,3227,Adreno 405,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Qualcomm Snapdragon S4 Pro APQ8064A,ARMv7,Snapdragon,2MB,,,1500,4/4,28,ARM,,4314,Adreno 320,~17.7,,,,,,,,,,,,,,,,,,,,,,,,,,,2026,498,1473,,,,,,,,,10517.5,1337,2223,,,, -Mediatek MT8732,Cortex-A53,Mediatek,,,,1500,4/4,28,ARM,,3336,Mali-T760 MP2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Mediatek MT8165,Cortex-A53,Mediatek,,,,1500,4/4,28,ARM,,3336,Mali-T760 MP2,~22.7,,,,,,,,,,,,,,,,,,,,,,,,,,,,686,2031,,,,,,,,,59688,1358,4116,,,, -Mediatek MT6739,Cortex-A53,Mediatek,,,,1500,4/4,28,ARM,,2274,PowerVR GE8100,~3.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,653,1779,,,,,,,,,3126,10.64,,25, -Mediatek MT6739WW,Cortex-A53,Mediatek,,,,1500,4/4,28,ARM,,2274,PowerVR GE8100,~4.2,,,,,,,,,,,,,,,,,,,,,,,,,,,1788,,,589,1718,,,,,,,49040,,3213,,10.24,27, -Mediatek MT6732,Cortex-A53,Mediatek,,,,1500,4/4,28,ARM,,3397,Mali-T760 MP2,~27.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,711,2078,,,,,,,,,,979,3489,,,, -Mediatek MT6735,Cortex-A53,Mediatek,,,,1500,4/4,28,ARM,,3353,Mali-T720,~15.3,,,,,,,,,,,,,,,,,,,,,,,,,,,,505.5,1443.5,519,1430,,,,,,,34641,1750,2657,,,, -Qualcomm Snapdragon 425 (MSM8917),Cortex-A53,Snapdragon,,,,1400,4/4,28,ARM,,2862,Adreno 308,~3.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,660.5,1849,,,,,,,,,3052,9.13,10.8,26, -Mediatek MT8735,Cortex-A53,Mediatek,,,,1300,4/4,28,ARM,,3353,Mali-T720,~3.6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,617.5,1765,,,,,,,,,2718,,,, -Mediatek MT6737T,Cortex-A53,Mediatek,,,,1500,4/4,28,ARM,,2767,Mali-T720 MP2,~16.2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,672,1876.5,,,,,,,2040,1861,3266,,,27, -Mediatek MT6737,Cortex-A53,Mediatek,,,,1250,4/4,28,ARM,,2767,Mali-T720 MP2,~12.8,,,,,,,,,,,,,,,,,,,,,,,,,,,1573,,,537,1504,,,58,291,,,45882,1825,2392,,,, -Rockchip RK3188,Cortex-A9,,,,,1800,4/4,28,ARM,,4005,Mali-400 MP4,~17.7,,,,,,,,,,,,,,,,,,,,,,,,,,,1182,504,1421,,,,,,,,,10965,1240,3093.5,,,, -Samsung Exynos 7570 Quad,Cortex-A53,Exynos,,,,1400,4/4,14,ARM,,2393,Mali-T720 MP2,~3.7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,631.5,1856.5,,,,,,,,,3027,,,, -Qualcomm Snapdragon 410 MSM8916,Cortex-A53,Snapdragon,,,,1400,4/4,28,ARM,,3663,Adreno 306,~13.6,,,,,,,,,,,,,,,,,,,,,,,,,,,,476,1426,516,1322,,,,,,,9857,1380,2737.5,,9.03,, -Qualcomm Snapdragon 410 APQ8016,Cortex-A53,Snapdragon,,,,1200,4/4,28,ARM,,3663,Adreno 306,~24.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,482,1443,,,,,,,,,,1415,2968.5,,,, -Apple S9 SiP,Thunder,,,,,1800,2/2,4,ARM,,99,UHD Graphics 750,~48.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,902.3,,,38.9,, -Samsung Exynos W930,ARM Cortex-A55,,,,,1400,2/2,5,,,146,Mali-G68 MP2,~29.3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1464.05,2581,,8.55,, -HiSilicon Kirin 910,Cortex-A9,,,,,1600,4/4,28,ARM,,3520,UHD Graphics 750,~17.6,,,,,,,,,,,,,,,,,,,,,,,,,,,1938,509,1547.5,,,,,,,,,11258,1360.5,1535,,,, -Intel Atom Z2760,Cloverview,Atom,1MB,,1.7 / 3,1800,2/4,32,x86,,4101,SGX545,~11,945,601.5,1696.5,0.18,0.53,,,,,,,84.6,4233,58.1,1892,713,17.75,3.28,,0.06,0.07,0.06,,,,,1397.5,,,,,,,,,,,,812.5,,,,, -Qualcomm Snapdragon 400 MSM8928,ARMv7,Snapdragon,,,,1600,4/4,28,ARM,,3824,Adreno 305,~19.6,,,,,,,,,,,,,,,,,,,,,,,,,,,,398.5,1338,,,,,,,,,7929,1404.5,2335,,,, -Qualcomm Snapdragon 215,Cortex-A53,Snapdragon 200,,,,1300,4/4,28,ARM,,1625,Adreno 308,~3.2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,606,1556,,,,,,,,,1986,,,, -Qualcomm Snapdragon 400 APQ8028,ARMv7,Snapdragon,,,,1600,4/4,28,ARM,,3824,Adreno 305,~18,,,,,,,,,,,,,,,,,,,,,,,,,,,1596,435,1489,,,,,,,,,9698,958,1759,,,, -Mediatek MT6735P,Cortex-A53,Mediatek,,,,1000,4/4,28,ARM,,3353,Mali-T720,~1.9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14483,,2089.5,,,, -Mediatek MT6735M,Cortex-A53,Mediatek,,,,1000,4/4,28,ARM,,3185,Mali-T720,~1.9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14977,,1929,,,, -Marvell Armada PXA1908,Cortex-A53,,,,,1200,4/4,28,ARM,,3336,GC7000UL,~4.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,575,1717,,,,,,,,,10868,,2059,,,, -Apple S8,Thunder,,,,,1800,2/2,7,ARM,,1562,UHD Graphics 750,~28.1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1867.3,838,,22.6,, -Apple S7,Thunder,,,,,1800,2/2,,,,1562,UHD Graphics 750,~28.3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1785,810,,21.74,, -Apple S6,Thunder,,,,,1800,2/2,,,,1562,UHD Graphics 750,~80.2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1807,,,,, -Qualcomm Snapdragon Wear 4100+,ARM Cortex-A53,,,,,‑ 1700,5/5,12,ARM,,1268,Adreno 504,~28.6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1702,2752,,11.6,, -Qualcomm Snapdragon Wear 4100,ARM Cortex-A53,,,,,‑ 1700,4/4,12,ARM,,1268,Adreno 504,~31.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1019,3444,,14.13,, -Apple A6x,,,,,,1400,2,32,ARM,,4075,UHD Graphics 750,~7.5,,,,,,,,,,,,,,,,,,,,,,,,,,,1768,781,1424,,,,,,,,,,,,,,, -Intel Atom Z2580,Cloverview,Atom,1MB,,3,1300 ‑ 2000,2/4,32,x86,,4359,SGX544MP2,~18.6,,,,,,,,,,,,,,,,,,,,,,,,,,,1479,552,1302.5,,,,,,,,,11276,847,2822,,,, -Qualcomm Snapdragon S4 Pro MSM8960DT,Krait 300,Snapdragon,1MB,,,1700,2/2,28,ARM,,3824,Adreno 320,~22.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,682,1263,,,,,,,,,6979,622,3187,,,, -Qualcomm Snapdragon S4 Pro MSM8960T,ARMv7,Snapdragon,1MB,,,1700,2/2,28,ARM,,4280,Adreno 320,~17.6,,,,,,,,,,,,,,,,,,,,,,,,,,,1848,583.5,1098,,,,,,,,,7065,1421.5,2018,,,, -Qualcomm Snapdragon 400 8930AB,ARMv7,Snapdragon,1MB,,,1700,2/2,28,ARM,,4005,Adreno 305,~31.2,,,,,,,,,,,,,,,,,,,,,,,,,,,1907,,,,,,,,,,,7051,1117.5,,,,, -Qualcomm Snapdragon S4 Plus APQ8060A,ARMv7,Snapdragon,1MB,,,1500,2/2,28,ARM,,4314,Adreno 225,~3.9,,,,,,,,,,,,,,,,,,,,,,,,,,,1473,,,,,,,,,,,,,,,,, -Qualcomm Snapdragon S4 Plus MSM8960,ARMv7,Snapdragon,1MB,,,1500,2/2,28,ARM,,4314,Adreno 225,~31.2,,,,,,,,,,,,,,,,,,,,,,,,,,,1626.5,,,,,,,,,,,5589,1045.5,,,,, -Qualcomm Snapdragon S4 Plus MSM8260A,ARMv7,Snapdragon,1MB,,,1700,2/2,28,ARM,,4314,Adreno 225,~4,,,,,,,,,,,,,,,,,,,,,,,,,,,1525,,,,,,,,,,,,,,,,, -Intel Atom Z2560,Cloverview,Atom,1MB,,3,933 ‑ 1600,2/4,32,x86,,4359,SGX544MP2,~17.6,,,,,,,,,,,,,,,,,,,,,,,,,,,1221,451,1056,,,,,,,,,9263,1100.5,3081,,,, -AMD Z-60,Hondo,Z-Series,1MB,,4.5,1000,2/2,40,x86,,4057,Radeon HD 6250,~8.8,,669,1249,0.2,0.37,,,,,,,75,1566,114,3574,348,11.24,1.95,,,,,,,,,1075,,,,,,,,,,,,,,,,, -AMD Z-01,Desna,Z-Series,1MB,,5.9,1000,2/2,40,x86,,4585,UHD Graphics 750,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Apple A6,,,,,,1000,2,32,ARM,,4116,UHD Graphics 750,~23.1,,,,,,,,,,,,,,,,,,,,,,,,,,,1648,705.5,1273,,,,,,,,,24996,722,,,,, -Intel Atom x3-C3130,SoFIA 3G,Atom,512KB,,,1000,2/2,28,x86,,3215,Mali-400 MP2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Samsung Exynos 4412 Quad,Cortex A9,Exynos,,,,1400,4/4,32,ARM,,4219,UHD Graphics 750,~31.4,,,,,,,,,,,,,,,,,,,,,,,,,,,1886.5,,,,,,,,,,,10466,1109,,,,, -NVIDIA Tegra 3,Kal-El,Tegra,,,,1200 ‑ 1300,4/4,40,ARM,,4424,GeForce ULP (Tegra 3),~16.9,,,,,,,,,,,,,,,,,,,,,,,,,,,1455.5,354.5,1084,,,,,,,,,8638,1257,1741,,,, -Apple S5,,,,,,,2/2,,,,1562,UHD Graphics 750,~77.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2022,,,,, -Mediatek MT8127,Cortex-A7,Mediatek,512KB,,,1500,4/4,28,ARM,,3489,Mali-450 MP4,~16.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,383.5,1274,448,1216,,,,,,,,1713.5,2358,,,, -Mediatek MT6589T,Cortex-A7,Mediatek,2MB,,,1500,4/4,28,ARM,,3824,SGX544,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Mediatek MT8389,Cortex-A7,Mediatek,1MB,,,1200,4/4,28,ARM,,3857,SGX544,~16.3,,,,,,,,,,,,,,,,,,,,,,,,,,,1301,325,1069,,,,,,,,,8323,1464,1355,,,, -Mediatek MT8125,Cortex-A7,Mediatek,1MB,,,1200,4/4,28,ARM,,3857,SGX544,~16.7,,,,,,,,,,,,,,,,,,,,,,,,,,,1315.5,325.5,1110,,,,,,,,,8406,1341.5,1915,,,, -Spreadtrum SC9830A,Cortex-A7,Spreadtrum,,,,1500,4/4,28,ARM,,2910,Mali-400 MP2,~4.3,,,,,,,,,,,,,,,,,,,,,,,,,,,,405,1280,,,,,,,,,,,2842,,,, -Samsung Exynos 3470 Quad,Cortex-A7,Exynos,,,,1400,4/4,28,ARM,,3459,Mali-400 MP4,~17.2,,,,,,,,,,,,,,,,,,,,,,,,,,,1207,369,1113,,,,,,,,,8008,1119,2019,,,, -Samsung Exynos 3475 Quad,Cortex-A7,Exynos,,,,1300,4/4,28,ARM,,3094,UHD Graphics 750,~3.7,,,,,,,,,,,,,,,,,,,,,,,,,,,,350,1171,,,,,,,,,,,2323,,,, -Mediatek MT8321,Cortex-A7,Mediatek,1MB,,,1300,4/4,28,ARM,,2728,Mali-400 MP2,~2.2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,430,1116.5,,,,,,,,,1715,,5.68,13, -Mediatek MT8121,Cortex-A7,Mediatek,1MB,,,1300,4/4,28,ARM,,3824,SGX544,~16.6,,,,,,,,,,,,,,,,,,,,,,,,,,,1298,351,1140.5,,,,,,,,,9761,1453,2085,,,, -Mediatek MT6582,Cortex-A7,Mediatek,512KB,,,1300,4/4,28,ARM,,3732,Mali-400 MP2,~16.4,,,,,,,,,,,,,,,,,,,,,,,,,,,1416,353,1169.5,,,,,,,,,9807,1578.5,2105,,,, -Mediatek MT6582M,Cortex-A7,Mediatek,512KB,,,1300,4/4,28,ARM,,3640,Mali-400 MP2,~16.7,,,,,,,,,,,,,,,,,,,,,,,,,,,1424,350,1179,,,,,,,,,9264,1441.5,2172,,,, -Mediatek MT6580M,Cortex-A7,Mediatek,512KB,,,1300,4/4,28,ARM,,2910,Mali-400 MP2,~2.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,356,1170.5,426,1161.5,,,63,248,,,,,2138.5,,,, -Spreadtrum SC7731,Cortex-A7,Spreadtrum,,,,1300,4/4,28,ARM,,3275,Mali-400 MP2,~3.6,,,,,,,,,,,,,,,,,,,,,,,,,,,,351,1075,,,,,,,,,,,2300,,,, -Qualcomm Snapdragon 212 APQ8009,Cortex-A7,Snapdragon 200,,,,1300,4/4,28,ARM,,3094,Adreno 304,~3.2,,,,,,,,,,,,,,,,,,,,,,,,,,,,331,1075,423,1118,,,,,,,,,2152,,,, -Qualcomm Snapdragon 400 MSM8926,ARMv7,Snapdragon,,,,1200,4/4,28,ARM,,3852,Adreno 305,~16.2,,,,,,,,,,,,,,,,,,,,,,,,,,,1378,340,1123,,,,,,,,,7511.5,1607.5,1838,,,, -Qualcomm Snapdragon 400 MSM8226,ARMv7,Snapdragon,,,,1200,4/4,28,ARM,,4032,Adreno 305,~16.8,,,,,,,,,,,,,,,,,,,,,,,,,,,1279,341,1147,,,,,,,,,7300.5,1243,1449,,,, -Qualcomm Snapdragon 400 APQ8026,ARMv7,Snapdragon,,,,1200,4/4,28,ARM,,3824,Adreno 305,~17,,,,,,,,,,,,,,,,,,,,,,,,,,,1279,327,1075,,,,,,,,,6717,1137,1810,,,, -Mediatek MT6589,Cortex-A7,Mediatek,,,,1200,4/4,28,ARM,,4025,SGX544,~16.4,,,,,,,,,,,,,,,,,,,,,,,,,,,1347,327,1097,,,,,,,,,8336,1451,1449,,,, -Qualcomm Snapdragon 200 MSM8212,Cortex-A7,Snapdragon 200,,,,1200,4/4,28,ARM,,3824,Adreno 302,~23.7,,,,,,,,,,,,,,,,,,,,,,,,,,,,329,1113,,,,,,,,,,1331,1233,,,, -Qualcomm Snapdragon 210 MSM8909,Cortex-A7,Snapdragon 200,,,,1100,4/4,28,ARM,,3094,Adreno 304,~15.1,,,,,,,,,,,,,,,,,,,,,,,,,,,,302,1019,430.5,1117,,,,,,,,2255,1949,,,, -Marvell PXA1088,Cortex-A7,,,,,1200,4/4,40,ARM,,3956,UHD Graphics 750,~15.8,,,,,,,,,,,,,,,,,,,,,,,,,,,1277,312,990,,,,,,,,,5776.5,1651,1091,,,, -Qualcomm Snapdragon Wear 3100,ARM Cortex-A7,,,,,‑ 1200,4/4,28,ARM,,1927,Adreno 304,~34.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2997,1730,,,, -Qualcomm Snapdragon Wear 2500,ARM Cortex-A7,,,,,‑ 1200,4/4,28,ARM,,1927,UHD Graphics 750,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Qualcomm Snapdragon Wear 2100,ARM Cortex-A7,,,,,‑ 1200,4/4,28,ARM,,1927,UHD Graphics 750,~30.1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3744,1374,,,, -Qualcomm Snapdragon S4 Plus MSM8930,ARMv7,Snapdragon,1MB,,,1200,2/2,28,ARM,,4097,Adreno 305,~20.1,,,,,,,,,,,,,,,,,,,,,,,,,,,1276.5,432,788,,,,,,,,,3464,1189,,,,, -Qualcomm Snapdragon S4 Plus MSM8230,ARMv7,Snapdragon,1MB,,,1200,2/2,28,ARM,,4097,Adreno 305,~18.6,,,,,,,,,,,,,,,,,,,,,,,,,,,1082,454,457,,,,,,,,,4294,1811.5,,,,, -Qualcomm 205,Cortex-A7,Snapdragon,,,,1100,2/2,28,ARM,,2466,Adreno 304,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Atom Z2480,Penwell,Atom,512KB,,,2000,1/2,32,x86,,4359,SGX540,~2.6,,,,,,,,,,,,,,,,,,,,,,,,,,,995,,,,,,,,,,,,,,,,, -Intel Atom Z2460,Penwell,Atom,512KB,,4?,1300 ‑ 1600,1/2,32,x86,,4359,SGX540,~2.2,,,,,,,,,,,,,,,,,,,,,,,,,,,853,,,,,,,,,,,,,,,,, -Qualcomm Snapdragon S4 Plus MSM8227,ARMv7,Snapdragon,1MB,,,1000,2/2,28,ARM,,4314,Adreno 305,~18.5,,,,,,,,,,,,,,,,,,,,,,,,,,,963,349,619,,,,,,,,,3632,1669.5,,,,, -Samsung Exynos 4212 1.5 GHz,Cortex A9,Exynos,1MB,,,1500,2/2,32,ARM,,4466,UHD Graphics 750,~30.5,,,,,,,,,,,,,,,,,,,,,,,,,,,1240.5,,,,,,,,,,,4814.5,1128,,,,, -Texas Instruments OMAP 4470,Cortex A9,,,,,1500,2/2,45,ARM,,4493,UHD Graphics 750,~3.6,,,,,,,,,,,,,,,,,,,,,,,,,,,1381,,,,,,,,,,,,,,,,, -HiSilicon k3v2 Hi3620,,,,,,1200,4/4,40,ARM,,4315,UHD Graphics 750,~19.2,,,,,,,,,,,,,,,,,,,,,,,,,,,1557,327,1094,,,,,,,,,8678,1610,,,,, -Rockchip RK3066 1.5 GHz,,,512KB,,,1500,2/2,40,ARM,,4280,Mali-400 MP4,~27.3,,,,,,,,,,,,,,,,,,,,,,,,,,,1007.5,,,,,,,,,,,5852,1959,,,,, -Qualcomm Snapdragon S4 Play MSM8625Q,Cortex-A5,Snapdragon,,,,1200,4/4,45,ARM,,4102,Adreno 203,~36.9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2697,2430,,,,, -Qualcomm Snapdragon 200 8225Q,Cortex-A5,Snapdragon 200,,,,1400,4/4,45,ARM,,4102,Adreno 203,~27.6,,,,,,,,,,,,,,,,,,,,,,,,,,,1010,,,,,,,,,,,6062,1876,,,,, -Qualcomm Snapdragon S4 Play MSM8225Q,Cortex-A5,Snapdragon,,,,1200,4/4,45,ARM,,4102,Adreno 203,~37.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6341,2379,,,,, -MediaTek MT8312,,Mediatek,,,,1300,2/2,28,ARM,,3640,Mali-400 MP,~16.1,,,,,,,,,,,,,,,,,,,,,,,,,,,809,343,646,,,,,,,,,4457,1390,1477,,,, -Renesas MP5232,Cortex-A9,,,,,1500,2/2,,ARM,,4334,UHD Graphics 750,~18.7,,,,,,,,,,,,,,,,,,,,,,,,,,,,373,654,,,,,,,,,4557,1525,1547,,,, -Broadcom BCM21664T,Cortex-A9,,,,,1200,2/2,,ARM,,4036,UHD Graphics 750,~19.2,,,,,,,,,,,,,,,,,,,,,,,,,,,,353,658,,,,,,,,,4230,1316,2121,,,, -Marvell PXA986,Cortex-A9,,,,,1200,2/2,45,ARM,,4145,UHD Graphics 750,~15.9,,,,,,,,,,,,,,,,,,,,,,,,,,,1034.5,379.5,646.5,,,,,,,,,3976,1624,1448,,,, -Amlogic AML8726-MX,,,512KB,,,1500,2/2,45,ARM,,4080,UHD Graphics 750,~2.7,,,,,,,,,,,,,,,,,,,,,,,,,,,1020.5,,,,,,,,,,,,,,,,, -Qualcomm Snapdragon S3 MSM8660,ARMv7,Snapdragon,1MB,,,1700,2/2,45,ARM,,4314,Adreno 220,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Qualcomm Snapdragon S3 MSM8260,ARMv7,Snapdragon,1MB,,,1500,2/2,45,ARM,,4314,Adreno 220,~2.6,,,,,,,,,,,,,,,,,,,,,,,,,,,994,,,,,,,,,,,,,,,,, -Samsung Exynos 4210 1.4 GHz,Cortex A9,Exynos,1MB,,,1400,2/2,45,ARM,,4695,UHD Graphics 750,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Texas Instruments OMAP 4460,Cortex A9,,,,0.6,1200,2/2,45,ARM,,4493,UHD Graphics 750,~20.4,,,,,,,,,,,,,,,,,,,,,,,,,,,1243.5,427,796,,,,,,,,,5787,1096,,,,, -Rockchip RK3168,,,,,,1200,2/2,28,ARM,,4005,SGX540,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Samsung Exynos 4210 1.2 GHz,Cortex A9,Exynos,1MB,,,1200,2/2,45,ARM,,4695,UHD Graphics 750,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -MediaTek MT8377,Cortex-A9,Mediatek,1MB,,,1200,2/2,40,ARM,,4005,SGX531,~2.6,,,,,,,,,,,,,,,,,,,,,,,,,,,993,,,,,,,,,,,,,,,,, -Broadcom BCM28155,Cortex A9,,,,,1200,2/2,40,ARM,,4371,UHD Graphics 750,~1.8,,,,,,,,,,,,,,,,,,,,,,,,,,,679,,,,,,,,,,,,,,,,, -Texas Instruments OMAP 4430,Cortex A9,,,,0.6,1000,2/2,45,ARM,,4677,UHD Graphics 750,~1.1,,,,,,,,,,,,,,,,,,,,,,,,,,,424,,,,,,,,,,,,,,,,, -MediaTek MT6572,Cortex-A7,Mediatek,1MB,,,1200,2/2,28,ARM,,3880,Mali-400 MP,~15.3,,,,,,,,,,,,,,,,,,,,,,,,,,,614,314,575,,,,,,,,,3679.5,1723,1587.5,,,, -Spreadtrum SC8830,Cortex-A7,Spreadtrum,512KB,,,1200,4/4,28,ARM,,3275,Mali-400 MP2,~22.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,329,829,,,,,,,,,,1863.5,2408,,,, -Apple A5x,Cortex A9,,,,,1000,2,32,ARM,,4306,UHD Graphics 750,~19,,,,,,,,,,,,,,,,,,,,,,,,,,,759,262,496,,,,,,,,,11087,1307,,,,, -Qualcomm Snapdragon S4 Play MSM8225,Cortex-A5,Snapdragon,,,,1500,2/2,45,ARM,,4371,Adreno 203,~26,,,,,,,,,,,,,,,,,,,,,,,,,,,545.5,,,,,,,,,,,3040,2178,,,,, -Intel Atom Z2420,Saltwell,Atom,512KB,,,1200,1/2,32,x86,,3999,SGX540,~1.5,,,,,,,,,,,,,,,,,,,,,,,,,,,559.5,,,,,,,,,,,,,,,,, -Apple A5,Cortex A9,,,,,1000,2,40,ARM,,4676,UHD Graphics 750,~2,,,,,,,,,,,,,,,,,,,,,,,,,,,750,,,,,,,,,,,,,,,,, -Nvidia Tegra 2 (250),T20 Harmony,Tegra,1MB,,1,1000,2/2,40,ARM,,5101,GeForce ULP (Tegra 2),~2.3,,,,,,,,,,,,,,,,,,,,,,,,,,,894,,,,,,,,,,,,,,,,, -Qualcomm Snapdragon 200 8210,Cortex-A7,Snapdragon 200,,,,1200,2/2,28,ARM,,3824,Adreno 302,~19.2,,,,,,,,,,,,,,,,,,,,,,,,,,,,324.5,604,,,,,,,,,3466,1246,1746,,,, -MediaTek MT8317T,Cortex-A9,Mediatek,,,,1200,2/2,,ARM,,4005,SGX531,~29.4,,,,,,,,,,,,,,,,,,,,,,,,,,,869,,,,,,,,,,,4319,1347,,,,, -MediaTek MT6577,Cortex-A9,Mediatek,,,,1000,2/2,,ARM,,4193,SGX531,~15.9,,,,,,,,,,,,,,,,,,,,,,,,,,,868.5,314,575,,,,,,,,,3671,1497,1993,,,, -Samsung Exynos W920,ARM Cortex-A55,,,,,1180,2/2,5,ARM,,827,Mali-G68 MP2,~24.2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2804,2023,,7.66,, -Samsung Exynos 9110,ARM Cortex-A53,,,,,1150,2/2,10,ARM,,1491,Mali-T720,~35.7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2782,2076,,,, -ST-Ericsson NovaThor U8500,ARMv7,,,,,1000,2/2,45,ARM,,4585,UHD Graphics 750,~2,,,,,,,,,,,,,,,,,,,,,,,,,,,758,,,,,,,,,,,,,,,,, -ST-Ericsson NovaThor U8420,ARMv7,,,,,1000,2/2,45,ARM,,4585,UHD Graphics 750,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -MediaTek MT6575,Cortex-A9,Mediatek,,,,1000,1/1,40,ARM,,4323,SGX531,~1.5,,,,,,,,,,,,,,,,,,,,,,,,,,,582,,,,,,,,,,,,,,,,, -NXP i.MX 6SLL,Cortex-A9,,256KB,,,1000,1/1,40,ARM,,4736,UHD Graphics 750,~25.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6771,,,,, -Qualcomm Snapdragon S2 MSM8255,Scorpion,Snapdragon,,,,1500,1/1,45,ARM,,4981,Adreno 205,~1.7,,,,,,,,,,,,,,,,,,,,,,,,,,,660,,,,,,,,,,,,,,,,, -Rockchip RK2918 1.2 GHz,,,,,,1200,1/1,55,ARM,,4736,GC800,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AllWinner A10,Cortex A8,,,,,1200,1/1,55,ARM,,5101,UHD Graphics 750,~0.9,,,,,,,,,,,,,,,,,,,,,,,,,,,339,,,,,,,,,,,,,,,,, -ARM Cortex A8 1.2 GHz,,,,,,1200,1/1,,ARM,,6197,UHD Graphics 750,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Apple A4,S5L8930,,,,,1000,1/1,40,ARM,,4950,UHD Graphics 750,~1.2,,,,,,,,,,,,,,,,,,,,,,,,,,,470,,,,,,,,,,,,,,,,, -AllWinner A13,Cortex A8,,,,,1000,1/1,55,ARM,,5101,UHD Graphics 750,~0.8,,,,,,,,,,,,,,,,,,,,,,,,,,,316,,,,,,,,,,,,,,,,, -WonderMedia PRIZM WM8950,Cortex-A9,,,,,1000,1/1,,ARM,,4367,Mali-400 MP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Samsung Hummingbird S5PC110 / Exynos 3110,Cortex A8,,,,,1000,1/1,45,ARM,,5291,UHD Graphics 750,~1.9,,,,,,,,,,,,,,,,,,,,,,,,,,,290,239,228,,,,,,,,,,,,,,, -Qualcomm Snapdragon S1 MSM7227A,Cortex A5,Snapdragon,256KB,,,1000,1/1,45,ARM,,4463,Adreno 200,~21.1,,,,,,,,,,,,,,,,,,,,,,,,,,,442,,,,,,,,,,,1262,3459,,,,, -Qualcomm Snapdragon S1 MSM7225A,Cortex A5,Snapdragon,256KB,,,1000,1/1,45,ARM,,4371,Adreno 200,~1,,,,,,,,,,,,,,,,,,,,,,,,,,,373,,,,,,,,,,,,,,,,, -Texas Instruments OMAP 3630 1GHz,ARM Cortex A8,,,,,1000,1/1,45,ARM,,5101,UHD Graphics 750,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Texas Instruments OMAP 3622,Cortex A8,,,,,1000,1/1,45,ARM,,5101,UHD Graphics 750,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Rockchip RK2918,Cortex-A8,,,,,1000,1/1,55,ARM,,4736,GC800,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Telechips TCC8803 1GHz,,,,,,1000,1/1,65,ARM,,4736,UHD Graphics 750,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZiiLABS ZMS-08,Cortex A8,,,,,1000,1/1,,ARM,,5154,UHD Graphics 750,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ARM Cortex A8 1GHz,ARM,,,,,1000,1/1,,ARM,,5832,UHD Graphics 750,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Actions ACT-ATM7029,Cortex-A5,,,,,1000,4/4,,ARM,,4036,UHD Graphics 750,~1.2,,,,,,,,,,,,,,,,,,,,,,,,,,,474,,,,,,,,,,,,,,,,, -Qualcomm Snapdragon S1 QSD8250,ARMv7,Snapdragon,,,,1000,1/1,65,ARM,,5588,Adreno 200,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Loongson 2F 900MHz,,,512KB,,4,900,1/1,,MIPS,,5832,UHD Graphics 750,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Qualcomm Snapdragon S1 MSM7227,ARM1136EJ-S,Snapdragon,,,,600,1/1,65,ARM,,5435,Adreno 200,~0.2,,,,,,,,,,,,,,,,,,,,,,,,,,,120,,,,,,,,,,,462,,,,,, -CSR8670,,,,,,80,2,,,,3275,UHD Graphics 750,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Huawei Kirin A1,ARM Cortex-M7,,,,,200,1/1,,ARM,,1553,UHD Graphics 750,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ARM Cortex-M4,,,,,,,,,,,19711,UHD Graphics 750,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Dialog DA14697,"Cortex M33F, Cortex M0+",,,,,96,,,ARM,,1640,UHD Graphics 750,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -HiSilicon Hi6262,,,,,,,,,,,19711,UHD Graphics 750,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ST STM32L4R9,ARM Cortex-M4,,,,,80,1/1,90,ARM,,2971,UHD Graphics 750,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Cypress PSoC6 MCU,Cortex-M4 / M0+,,,,,150,2/2,,ARM,,1224,UHD Graphics 750,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ST32,Cortex-M3,,,,,,,,ARM,,5729,UHD Graphics 750,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Ambiq Apollo 3.5,Cortex-M4F,,,,,,1/1,40,ARM,,1814,UHD Graphics 750,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Ambiq Apollo 3,Cortex-M4F,,,,,96,1/1,40,ARM,,2026,UHD Graphics 750,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NXP MK26FN2M0CAC18R,ARM Cortex-M0,,,,,180,1/1,,,,19711,UHD Graphics 750,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -DK3.5+ST,,,,,,,2,,,,1181,UHD Graphics 750,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Pentium Gold 7505,Tiger Lake-U,Tiger Lake,2.5MB + 4MB,,15,2000 ‑ 3500,2/4,10,x86,,1159,UHD Graphics Xe G4 48EUs,~25.6,4890,6773,14093,1.93,4.48,165,400,429,1017,1112.5,2600,9.79,522.83,14.48,454.1,2522,131.1,24.9,3.43,2.4,0.34,0.2,1150,2129.5,4062,10755.5,,,,4998.5,9426,1157.5,2305,1129,2326,,,,152.9,49676,143.03,151,184.4,142.8 -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, diff --git a/PCData/data/notebookcheck/all-cpu.html b/PCData/data/notebookcheck/all-cpu.html deleted file mode 100644 index c5dabe5..0000000 --- a/PCData/data/notebookcheck/all-cpu.html +++ /dev/null @@ -1,2755 +0,0 @@ - - - - - - - - - - - - - - - -Mobile Processors - Benchmark List - NotebookCheck.net Tech - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- -Notebookcheck Logo - - - -
- -
-
-
-
-
-
-
-
-

Comparison of Mobile Processors (CPU Benchmarks)

This table is sorted by the approximate speed of the (laptop) CPU. It contains average benchmark values of some internal and external reviews. Furthermore, the list can be sorted and filtered by the user.

-

More detailed informations on the different processor series can be found in our comparison of mobile processors.

-

Note, that there are also some desktop processors in the list (because some laptops are equiped with desktop CPUs and for comparison).

-
Restrictions

(Manufacturer, Model, Series, Codename), Connect search words with   .

   min. TDP W    max. TDP W    Cores Threads    Architecture

all, none

all, none

Permalink:

-

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
AMD Ryzen Threadripper PRO 7995WXStorm PeakThreadripper96MB + 384MB3502500 ‑ 510096/1925x86yes22
~70.282%
21375
7951
72072
3.4
76.86
286
15842
695
41011
1815
107681
6.98
349.43
7.93
17.19
63037
354.5
267.5
56.9
38.4
5.3
3.3
29
38
7108
174189
4762
19324
1017
3879
1918
55811
2702
25365
349
263
AMD Ryzen Threadripper PRO 3995WXMatisseThreadripper32MB + 256MB2802700 ‑ 420064/1287x86yes1244
~52.473%
16656
5596
52743
2.12
54.3
195
9706
488
23571
1249
61102
9.81
730
6.11
25.41
6689
264
192.5
46.6
26
4.8
2.9
47.8
5021
140172
5567
80545
1266
31711
1720
14881
229
Intel Core i9-14900KRaptor LakeRaptor Lake-R32MB + 36MB1253200 ‑ 600024/3210x86yes24UHD Graphics 770
~68.682%
20802n2
12643
94801
4.02
72.24
332
6282
900
15466
2351
41193
5.48
280.25
2.07
74.47
16108
345.5n2
181.2n2
42n2
26.7
5.8
2.8
82.5n2
139.5n2
7772
149570
9869.5n2
88609n2
2271.5n2
24957n2
2306.5n2
25285n2
3254.5n2
21537.5n2
386n2
332
AMD Ryzen 9 7950XRaphael (Zen 4)Raphael (Zen 4, Ryzen 7000)16MB + 64MB1704500 ‑ 570016/320x86yes410Radeon Graphics (Ryzen 7000)
~65.982%
21065n47
8508n3
72480n3
3.7n3
68.61n3
316n5
6095n5
778n5
14538n5
2001n5
37353n5
6.35n3
312.55n3
1.67n3
30.81n3
15779n3
383n3
274n3
43.55n10
32.5n3
4.5n3
2.8n3
86n21
134n21
8167n11
157469n11
8864n28
85341n28
2131n29
23887n29
2227n31
23903n31
2975n19
19813n19
377n7
303n7
Intel Core i9-13900KRaptor LakeRaptor Lake-S32MB + 36MB1253000 ‑ 580024/3210x86yes386UHD Graphics 770
~65.977%
20191.5n4
12017.5n4
87738n4
3.87n4
67.5n4
324n5
5959n5
849.5n4
14620.5n4
2238.5n4
38271.5n4
5.7n4
293.25n4
2.05n4
84.2n4
14271n4
419.25n4
264.75n4
40.7n5
22.9n4
5.4n4
2.9n4
84n5
139n9
7272n5
146984n5
9598n5
85336n5
2197n5
23664n5
2286n5
24033n5
368n5
316n5
AMD Ryzen 9 7950X3DRaphael (Zen4)Raphael (Zen 4, Ryzen 7000)16MB + 128MB64K (per core)1204200 ‑ 570016/325x86yes310Radeon Graphics (Ryzen 7000)
~67.577%
20279
16551
138015
3.86
64.59
326
5974
795
14188
2053
36291
6.11
305.11
2.01
33.88
15779
392.5
265.5
42.4
26.9
4.2
2.8
86
133
8321
159341
9240
87922
2183
23720
2311
24343
383
313
Intel Core i7-14700KRaptor LakeRaptor Lake-R28MB + 33MB1252500 ‑ 560020/2810x86yes54UHD Graphics 770
~64.682%
20665
12027
91081
3.7
61.44
314
5459
832
13672
2153
35892
5.98
305.94
2.15
109.8
12800
419
261
36.8
25.6
4.6
2.6
91
155
7351
135648
9304
79501
2045
22756
2121
23159
2902
19790
339
314
AMD Ryzen 9 7900XRaphael (Zen4)Raphael (Zen 4, Ryzen 7000)12MB + 64MB1704700 ‑ 560012/245x86440Radeon Graphics (Ryzen 7000)
~58.777%
21284n19
8623n6
68579.5n6
3.83n6
54.66n6
323n6
4820.5n6
782.5n6
11471.5n6
2016.5n6
29300n6
6.14
313.44
1.8n6
40.31n6
17225
376
241
36.85n6
14.8
2.8
1.5
106n6
166n5
8269n6
127195n6
9275n6
77033n6
2196n6
20658n6
2294n6
20667.5n6
383n6
304.5n4
Intel Core i7-13700KRaptor LakeRaptor Lake-S24MB + 30MB1253400 ‑ 540016/2410x86yes439UHD Graphics 770
~6082%
18153
11278
85748
3.66
52.98
303n2
4507.5n2
811.5n2
11713.5n2
2116n2
30745n2
6.19
317.81
2.31
170.22
12835
406
232
33.85n2
15.8
4
2.2
108n2
176.5n2
7061.5n2
111390n2
8955
69210
2064
19217
2110n2
20190.5n2
2962
19249
348n2
301
AMD Ryzen 9 7945HX3DDragon Range-HX (Zen 4)Dragon Range (Zen 4, Ryzen 7045)16MB + 128MB552300 ‑ 540016/325x86yes135Radeon 610M
~64.273%
8478
70414
3.7
61.9
311
5600
755
13033
1935
32782
6.4
337.8
5.9
249.9
51122
36.4
23.4
3.8
2.5
95
150
7573
136201
2133
19875
2916
16957
97066
332.3
367.9
480
328
AMD Ryzen 9 7945HXDragon Range-HX (Zen 4)Dragon Range (Zen 4, Ryzen 7045)16MB + 64MB552500 ‑ 540016/320x86yes339Radeon 610M
~60.875%
8481
71582
3.65
64.29
307n5
5541n5
747n5
13308n5
1936n5
34202n5
6.4
337
4.9
158.7
36.15n4
25.3
4
2.7
93n5
145.5n4
7379n5
140471n5
1984
19315
2103n5
19583n5
2876
16316
95872.5n2
331.6n4
325
351n4
289n4
AMD Ryzen Threadripper PRO 3975WXMatisseThreadripper16MB + 128MB2803500 ‑ 420032/647x86yes1244
~50.573%
16923
5884
53924
2.19
52.2
201
7053
500
16464
1286
42744
9.55
714
3.63
24.28
6530
268
193
43
27
4.7
2.6
69.4
5140
141386
5764
81029
1306
29094
1285
28798
198
Intel Core i9-13980HXRaptor Lake-HXRaptor Lake-HX32MB + 36MB551600 ‑ 560024/3210x86yes340UHD Graphics 770
~60.784%
19734
11940
85088
3.73
55.79
304.5n10
4717n10
807n9
11510n9
2110n9
30273n10
7.42
345.8
3.02
183.5
11438
374
198.05
31.6n9
18.4
4.9
2.5
106n9
190n9
6972n9
119244n9
1987
22107
2099n9
20329n9
2881.5n2
17564n2
102620n2
328.04n4
399
337n9
306n7
Intel Core i9-13950HXRaptor Lake-HXRaptor Lake-HX32MB + 36MB551600 ‑ 550024/3210x86yes340UHD Graphics 770
~62.866%
19311
11424
80693
3.57
59.98
297n7
4529n7
801n7
10919n7
2096n7
28681n7
6.2
322.8
31n7
111n7
196n7
6754n7
116665n7
2006n4
18486.5n4
2043n7
20036n7
2919.5n2
16927.5n2
103911
328.16n4
407
318.5n8
291n9
Intel Core i9-13900HXRaptor Lake-HXRaptor Lake-HX32MB + 36MB551600 ‑ 540024/3210x86yes340UHD Graphics Xe 32EUs (Tiger Lake-H)
~59.789%
18036.5n6
11699.5n2
79299.5n2
3.66n2
52.32n2
295n21
4487n21
785.5n20
10548n20
2055n19
27844n22
6.21n2
315.13n2
2.6
215.69
12916n2
387.7
217.7
29.4n21
17n2
4.25n2
2.25n2
114n21
202n21
6892.5n20
114430n20
8843n5
71143n5
1982n5
19027n5
2036n21
19982n21
2720n2
16522.5n2
104390n6
305.03n9
356.5n4
322n18
291n15
AMD Ryzen 9 7900Raphael (Zen4)Raphael (Zen 4, Ryzen 7000)12MB + 64MB653700 ‑ 540012/245x86330Radeon Graphics (Ryzen 7000)
~55.777%
19451
8339
60934
3.68
45.31
315
4020
762
9703
1966
24776
6.73
329.05
2.98
46.75
10154
355.5
207
31.2
21.5
3.1
2
125
199
7936
112881
8861
65241
2096
17581
2203
17880
366
302
Intel Core i9-12900KAlder LakeAlder Lake-S14MB + 30MB1253200 ‑ 520016/2410x86yes765UHD Graphics 770
~53.177%
18752.5n2
9859n2
71819n2
3.5n2
45.62n2
289n3
4057n3
771.5n2
9935n2
2004.5n2
26125n2
7.05n2
347n2
3.66n2
192.8n2
11834n2
366.75n2
201n2
29.5n2
19.25n2
3.6n2
1.95n2
124.7n2
6575.5n2
97315.5n2
8629n2
63910.5n2
1947.5n2
17828n2
2005.5n2
17776n2
96769
206.7
325n2
Intel Core i5-14600KRaptor LakeRaptor Lake-R20MB + 24MB1253500 ‑ 530014/2010x86yes54UHD Graphics 770
~56.682%
18096
11396
75358
3.58
40.96
297
3640
790
9371
2064
24491
6.23
316.69
2.39
158.77
11491
411
209
28.6
19.5
3.4
1.8
134
223
6910
93235
8904
64035
2004
17374
2017
17516
2879
17409
354
301
AMD Ryzen 9 7845HXDragon Range-HX (Zen 4)Dragon Range (Zen 4, Ryzen 7045)12MB + 64MB553000 ‑ 520012/240x86yes344Radeon 610M
~65.941%
295
4320
719
10492
1852
26876
29.7
117
185
7018
106033
2008
15068
2729
12585
308.27
357
282
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
AMD Ryzen 7 7700XRaphael (Zen4)Raphael (Zen 4, Ryzen 7000)8MB + 32MB1704500 ‑ 54008/165x86440Radeon Graphics (Ryzen 7000)
~52.177%
18115
8633
56024
3.71
36.06
315n2
3113.5n2
772.5n2
7462.5n2
1987n2
19088n2
6.35
322.8
2.15
61.15
14879
373.5
181.2
25.45n2
17.5
2.3
1.4
163n2
261n2
8074n2
85706.5n2
8991
56909
2123
14215
2218n2
14131n2
355
301
AMD Ryzen 7 7700Raphael (Zen4)Raphael (Zen 4, Ryzen 7000)8MB + 32MB653800 ‑ 53008/165x86339Radeon Graphics (Ryzen 7000)
~51.177%
18277
8345
53881
3.64
34.29
308
3047
750
7259
1930
18760
6.55
335.26
2.72
62.63
14860
368
174.95
25
15.9
2.3
1.5
166
266
7880
85260
8753
55542
2078
13869
2161
13929
352
295
AMD Ryzen 9 5950XVermeer (Zen 3)Vermeer (Ryzen 5000)8MB + 64MB1053400 ‑ 490016/327x86yes1158
~49.773%
17656.5n2
6689.5n2
56640.5n2
3.08n2
47.83n2
266.5n2
4324n2
629n2
10061n2
1614n2
26017n2
7.24n2
361.5n2
4.23n2
58.45n2
12735.5n2
330n2
212n2
30.85n2
26n2
3.5n2
2.35n2
117.65n2
6851.5n2
122978n2
7118.5n2
60408.5n2
1654n2
15983n2
1651.5n2
16248n2
289.5n2
Intel Core i5-13600KRaptor LakeRaptor Lake-S20MB + 24MB1253500 ‑ 510014/2010x86yes416UHD Graphics 770
~53.377%
17627
10754.5n2
68879.5n2
3.47n2
42.29n2
287.5n2
3642n2
770.5n2
9241n2
2000.5n2
24221n2
6.53n2
331.36n2
2.52n2
174.89n2
10967n2
387.5n2
198.8n2
27.55n2
19.1n2
3.15n2
1.7n2
135n2
224n3
6377.5n2
89587n2
8624.5n2
61014n2
1947.5n2
16566n2
1973n2
16670.5n2
331n2
288n2
Intel Core i7-13850HXRaptor Lake-HXRaptor Lake-HX24MB + 30MB551500 ‑ 530020/2810x86yes345UHD Graphics 770
AMD Ryzen 7 7800X3DRaphael (Zen4)Raphael (Zen 4, Ryzen 7000)1KB + 96MB1624200 ‑ 50008/165x86yes253Radeon Graphics (Ryzen 7000)
~5082%
16892
8026
51950
3.43
33.48
281.5n2
2878.5n2
686n2
6804.5n2
1766.5n2
17387n2
7.09
337.57
2.44
62.73
16585
344
169.25
23.25n2
15.3
2.1
1.3
178n2
282.5n2
7823.5n2
80312.5n2
9097
54840
1938
13888
1920n3
12715n3
2634
14288
353
282
Intel Core i9-12900Alder LakeAlder Lake-S14MB + 20MB652400 ‑ 510016/2410x86yes710UHD Graphics 770
~45.968%
17464
8949
68729
3.16
38.96
262
3299
703
7179
1825
18628
2.67
211.8
10739
310
147.5
14.4
17.2
3.4
1.9
262.7
5979
50152
6991
36310
1638
8845
1656
8924
269
Intel Core i7-13700Raptor Lake-SRaptor Lake-S24MB + 30MB652100 ‑ 520016/2410x86yes345UHD Graphics 770
~57.284%
17194
10840
82724
3.5
50.37
285n2
3692n2
739.5n2
9194n2
2008.5n2
25369n2
6.39
329.23
2.5
161.46
12289
393
224
27.25n2
22
3.8
2.1
144.5n2
250.5n2
6642.5n2
91604n2
8714
67866
1925
18964
1983.5n2
17563.5n2
2761
15882
341.33
338n2
289.5n2
Intel Core i9-12950HXAlder Lake-HXAlder Lake-S14MB + 30MB551700 ‑ 500016/2410x86yes584UHD Graphics 770
~58.445%
274n7
3107n7
727n7
7744n7
1885n7
20263n7
22.5n7
175n7
302n5
6197n7
77003n7
1855n3
13908n3
1886n7
15229n7
94008
291.99n4
356
311n5
274n5
Intel Core i9-12900HXAlder Lake-HXAlder Lake-S14MB + 30MB551700 ‑ 500016/2410x86yes584UHD Graphics 770
~53.886%
17668n2
9509
64621
3.35
41.54
278n8
3566n8
739n8
8842.5n8
1912.5n8
23150n8
7.25
379.61
7.83
245.74
9993
313.7
185.5
26n7
17.4
3.2
1.7
148.6n8
267n8
6336n7
86541n7
8182n2
58845.5n2
1848n2
16487.5n2
1906.5n8
16311.5n8
77.4
95387n3
292.72n3
327n2
317.5n6
275n5
Apple M3 Max 16-CoreApple M3782748 ‑ 405616/163ARMyes51M3 Max 40-Core GPU
~70.836%
271n2
3264n3
494.5n2
6123.5n2
1959n2
24022n2
216n2
195n2
2324.5n2
22937.5n2
3126.5n2
21253.5n2
96362.5n2
310.1n2
561n2
421n2
AMD Ryzen 9 3950XMatisse (Zen 2)Matisse (Ryzen 3000 Desktop)8MB + 64MB1053500 ‑ 470016/327x86yes1487
~41.166%
6102
53396
2.37
43.68
209
4002
520
9075
9.19
512
4.11
44.86
7409
265
168
15.8
10.8
3.6
2.3
125.8
5340
99467
5749
48962
1315
12976
1306
12363
239
Intel Core i7-13700HXRaptor Lake-HXRaptor Lake-HX24MB + 30MB551500 ‑ 500016/2410x86yes345UHD Graphics 770
~59.457%
17038n3
272n9
3348.5n10
723n9
8062n9
1875n9
21516n9
22.4n9
157.5n8
267n9
6166n9
78076n9
8059
57031
1788.5n4
15008.5n4
1845n9
14942n9
2593n3
14402n3
92283n4
295.42n7
335n4
309.5n8
270.5n8
Intel Core i7-12700KAlder LakeAlder Lake-S12MB + 25MB1252700 ‑ 500012/2010x86yes770UHD Graphics 770
~46.775%
16827
9305
63484
3.29
38.38
272
3325
735.5n2
7800.5n2
1850.5n2
19784n2
7.35
387
2.66
171.2
10389
349.5
179
20.5n2
15.7
2.8
1.6
173.1n2
6269.5n2
73438.5n2
8133
55786
1840.5n2
13879n2
1911.5n2
14016n2
241.28
303.5n2
Intel Core i9-13900HKRaptor Lake-HRaptor Lake-H11.5MB + 24MB451900 ‑ 540014/2010x86yes345Iris Xe G7 96EUs
~54.639%
279
2950
749
7542
1960
19704
21.9
287
5864
77190
1865
14628
1942
14985
314.97
297
279
Intel Core Ultra 9 185HMeteor Lake-HIntel Meteor Lake-H + 24MB453800 ‑ 510016/227x86yes6Arc 8-Cores
Intel Core i9-13905HRaptor Lake-HRaptor Lake-H11.5MB + 24MB451900 ‑ 540014/2010x86yes345Iris Xe G7 96EUs
~55.545%
246n3
2857n3
639n3
7152n3
2020n3
20034n3
21.2n3
173n3
302n3
5520n3
69892n3
1898
14690
1685n3
13707n3
2404
14212
310.21
301.5n2
265.5n2
Intel Core i9-13900HRaptor Lake-HRaptor Lake-H11.5MB + 24MB451900 ‑ 540014/2010x86yes345Iris Xe G7 96EUs
~59.157%
15361.5n2
280n21
2739n21
763n20
6958n20
1973.5n20
17856.5n22
19.25n20
193n19
329n19
6260.5n20
70425n20
8409n5
50450n5
1802.5n4
13197.5n4
1967n20
13216n20
2645n7
12611n7
100022n5
310.6n8
348n3
319n15
285n16
Apple M3 Max 14-CoreApple M3782748 ‑ 405614/143ARMyes51M3 Max 30-Core GPU
Intel Core Ultra 7 165HMeteor Lake-HIntel Meteor Lake-H + 24MB283800 ‑ 500016/227x86yes6Arc 8-Cores
~57.19%
1853
11733
2513
13288
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
Intel Core i7-13800HRaptor Lake-HRaptor Lake-H11.5MB + 24MB451800 ‑ 520014/2010x86yes345Iris Xe G7 96EUs
~61.539%
287
2765
776
6714
2017
17591
20
191
337
6310
70500
1972
12880
2766
12876
314
283
AMD Ryzen 9 5900XVermeer (Zen3)Vermeer (Ryzen 5000)6MB + 64MB1053700 ‑ 480012/247x86yes1163
~47.570%
16438n17
6828
52076
3.14
41.78
250n5
2695n5
598n5
6233n5
1527n5
16262n5
7.19
360.5
13361
335
191
24.9n22
21.2
2.9
1.8
154.2n23
6582n23
90443n23
7034n20
52798.5n20
1588n19
12813n19
1604n25
11765n25
218.1
279n19
Intel Core i9-10980XECascade LakeCore i9 (Desktop)18MB + 24.8MB1653000 ‑ 460018/3614x86yes1535
~46.782%
14129
7847
59479
2.36
38.39
208n3
3744n3
489.5n2
8532.5n2
7.68
410
2.81
47.4
7172
215
157.5
27n2
18.2
3.2
1.9
130n2
5370.5n2
93076.5n2
38219
4578
56351
5794.5n2
54222.5n2
1239.5n2
15743.5n2
1260
16480
97.5
39564
77.3
239
Intel Core i9-9980XESky Lake-XCore i9 (Desktop)18MB + 24.8MB1653000 ‑ 440018/3614x86yes1811
~40.266%
13495
7323
58001
2.22
38.57
197.5n2
3735.5n2
461.5n2
8857n2
8.23
433
2.74
46.52
6879
206.5
156
26.05n2
18.1
3.2
1.9
136.5n2
5110n2
93017.5n2
5492.5n2
55149.5n2
1217.5n2
16331n2
1200
15780
Intel Core i7-12850HXAlder Lake-HXAlder Lake-S14MB + 25MB551500 ‑ 480016/2410x86yes584UHD Graphics 770
~51.641%
260.5n2
2679n2
697.5n2
6490.5n2
1720.5n2
16301.5n2
17.25n2
193n2
317n3
5762n2
61678.5n2
1718
11363
1782n2
12302n2
261.94
284.5n2
232n2
Intel Core i7-12800HXAlder Lake-HXAlder Lake-S14MB + 25MB551500 ‑ 480016/2410x86yes584UHD Graphics 770
~51.436%
260
3383
676
8564
1812
22456
24.9
153.1
5624
76947
1726
14093
1759
14213
277.91
309
Intel Core Ultra 7 155HMeteor Lake-HIntel Meteor Lake-H + 24MB283800 ‑ 480016/227x86yes6Arc 8-Cores
~46.675%
9919
56242
3.07
29.98
257n3
2362n3
673.5n2
5455n2
1779n3
15013n3
7.05
400.29
7084
282.57
128.04
16.5n2
10.2
1.7
0.94
219.5n2
385.5n2
5223.5n2
62093.5n2
6838
43897
1684
11684
1776.5n4
12014.5n4
2425n4
12504n4
293n2
263
Intel Core i9-12900HKAlder Lake-HAlder Lake-P11.5MB + 24MB451800 ‑ 500014/2010x86yes710Iris Xe G7 96EUs
~46.984%
16756n3
8561n2
53020n2
2.99n2
28.22n2
257n8
2845n8
664n8
7104.5n8
1789n8
18621.5n8
7.87n2
409.92n2
3.38
201.06
8480n2
288.2n2
136.65n2
20.55n8
15.2n2
2.45n2
1.4n2
178.4n8
5622.5n8
72874n8
7970n2
50701n2
1853.5n2
13647.5n2
1870n7
13717n7
107.05n2
94352
267.75n2
274
299n5
249
Intel Core i9-12900HAlder Lake-HAlder Lake-P11.5MB + 24MB451800 ‑ 500014/2010x86yes710Iris Xe G7 96EUs
~44.189%
12799n5
8235n5
47831n5
2.96n5
25.96n5
265n26
2586n25
715n25
6060n25
1863n25
15987n25
7.78n5
409.19n5
4.1n4
196.5n4
7897n5
254.75n4
111.4n4
18.7n25
9.7n5
1.7n5
1n5
201n25
375.5n14
5881n25
64918n25
7199n4
35978.5n4
1673n7
10985n7
1830.5n26
12321.5n26
2265n3
10442n3
86645n4
263n7
241n2
297.5n22
264n12
Intel Core i7-13705HRaptor Lake-HRaptor Lake-H11.5MB + 24MB451800 ‑ 500014/2010x86yes345Iris Xe G7 96EUs
~51.770%
10476
61674
3.21
31.6
273.5n2
2868.5n2
727.5n2
7198.5n2
1874n2
18765n2
6.9
680.2
26.3
1258.7
20.1n2
12.7
2.7
1.5
181n2
322n2
5999.5n2
75165n2
1841n2
14322.5n2
2588n3
14502n3
91471n2
287.85n2
314.5n2
303.5n2
267.5n2
Intel Core i7-13700HRaptor Lake-HRaptor Lake-H11.5MB + 24MB451800 ‑ 500014/2010x86yes345Iris Xe G7 96EUs
~49.889%
15415n4
10487
65623
3.28
33.82
268n25
2515n25
717n25
6051n25
1854n25
15609n25
6.8
371.9
2.94
208.8
7559
340.5
167.5
16.9n25
16.1
2.9
1.5
217n25
386n25
6014n25
61921n25
8083
50819
1815n3
13200n3
1829n25
12567n25
2610n9
12989n9
92979n11
292.9n15
332n10
299n20
267.5n20
Intel Core i5-13400FRaptor Lake-SRaptor Lake-S9.5MB + 20MB652500 ‑ 460010/1610x86yes345
~43.577%
13989
8689
51113
3.06
27.46
252
2364
672
6091
1744
15911
8.03
420.48
3.27
367.88
8602
314.5
136.85
19.2
12.2
2
1.1
206
336
5743
60048
7684
43856
1721
12009
1792
12095
294
254
Intel Core i5-13400Raptor Lake-SRaptor Lake-S9.5MB + 20MB652500 ‑ 460010/1610x86yes345UHD Graphics 730
~43.777%
13632
8721
51095
3.1
27.36
257
2358
688
6135
1786
15953
8.03
427.16
3.47
452.31
7979
311
135.8
19.1
11.8
2
1.2
206
336
5829
59510
7683
42509
1706
11801
1795
12107
306
251
Intel Core i7-12700FAlder LakeAlder Lake-S12MB + 25MB653300 ‑ 490012/2010x86yes710
~43.980%
15823
9146
56067
3.28
33.5
271
2610
726
5786
1898
15291
7.39
386.35
2.95
128.31
8695
296.5
118.55
17.7
3.3
2.8
1.5
212
6145
61218
6698
39852
1557
10249
1590
10126
94804
295.07
281
271
Intel Core i7-12700Alder LakeAlder Lake-S12MB + 25MB653300 ‑ 490012/2010x86yes710UHD Graphics 770
~4977%
15390
9171
60892
3.28
36.92
272
3151
731
8338
1894
21751
7.53
400.41
2.9
272.82
9328
347
172.35
25.5
14.5
2.7
1.5
151
242
6292
78331
8059
52676
1845
14883
1924
14961
314
268
Intel Core i5-12600KAlder LakeAlder Lake-S9.5MB + 20MB1252800 ‑ 490010/1610x86yes770UHD Graphics 770
~4473%
15722
9381
55462
3.31
30.01
275
2555
734
6692
1907
17491
7.41
363.2
4.73
202.7
6239
333.5
148
30.1
12.8
2.2
1.3
189.5
5944
64260
8223
46557
1821
12746
1904
12797
293
AMD Ryzen 5 7600XRaphael (Zen4)Raphael (Zen 4, Ryzen 7000)6MB + 32MB1054700 ‑ 53006/125x86445Radeon Graphics (Ryzen 7000)
~4977%
17290.5n2
8480n9
49430n9
3.71n9
28.32n9
314n9
2517n9
761n9
5966n9
1965n9
15236n9
7.42
367.07
2.76n9
78.81n9
16178
367
147.8
21n9
13.2
1.8
1.1
205n9
328n8
8058n9
69291n9
9021n9
47694n9
2126n9
11982n9
2217n9
12003n9
370.5n8
298n8
AMD Ryzen 5 7600Raphael (Zen4)Raphael (Zen 4, Ryzen 7000)6MB + 32MB653800 ‑ 51006/125x86335Radeon Graphics (Ryzen 7000)
~45.175%
15993
8122
46166
3.51
26.4
298
2339
724
5487
1852
12735
6.82
351.04
3.06
83.81
14038
347
137.8
19.5
12.5
1.6
1.1
219
352
7566
64613
8453
44221
2005
10745
2088
11095
345n2
Intel Core Ultra 5 135HMeteor Lake-HIntel Meteor Lake-H + 18MB283600 ‑ 460014/187x86yes6Arc 7-Cores
AMD Ryzen 9 8945HSHawk Point-HS (Zen 4)Hawk Point (Zen 4/4c, Ryzen 8040)8MB + 16MB454000 ‑ 52008/164x86yes9Radeon 780M
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
AMD Ryzen 9 7940HSPhoenix-HS (Zen 4)Phoenix (Zen 4, Ryzen 7040)8MB + 16MB354000 ‑ 52008/164x86yes344Radeon 780M
~48.489%
15715.5n4
7963
49845
3.46
30.88
285n6
2664.85n6
702.5n6
6659n6
1792n6
17124n6
7.06
532.8
2.7
66.8
7439
304.5
150.8
20.8n5
14.8
2.1
1.4
188n5
303n6
6652n6
70050n6
7657n2
46087.5n2
1898n3
11382n3
1981n7
11564n7
2591n3
12011n3
89067
298.74n2
302
315n5
262n6
AMD Ryzen 9 PRO 7940HSPhoenix-HS (Zen 4)Phoenix (Zen 4, Ryzen 7040)8MB + 16MB354000 ‑ 52008/164x86yes185Radeon 780M
~56.645%
263.5n2
2539n2
653n2
6195.5n2
1681n2
15928.5n2
18.7n2
203n2
325n2
6029.5n2
64558n2
1857n2
10967.5n2
2472n2
11561.5n2
77466
262.2
263
297n2
242n2
AMD Ryzen 7 7745HXDragon Range (Zen 4)Dragon Range (Zen 4, Ryzen 7045)8MB + 32MB553600 ‑ 51008/160x86yes344Radeon 610M
~5841%
294
2978
717
7072
1846
18060
23.2
174
277
7244
75557
1971
12179
2040
12378
326.92
345
283
AMD Ryzen 7 8845HSHawk Point-HS (Zen 4)Hawk Point (Zen 4/4c, Ryzen 8040)8MB + 16MB453800 ‑ 51008/164x86yes9Radeon 780M
Intel Core Ultra 5 125HMeteor Lake-HIntel Meteor Lake-H + 18MB283600 ‑ 450014/187x86yes6Arc 7-Cores
Intel Core i7-13650HXRaptor Lake-HXRaptor Lake-HX + 24MB551900 ‑ 490014/2010x86yes345UHD Graphics Xe 16EUs (Tiger Lake-H)
~5468%
16051
10616
68755
3.31
37.44
274n2
3141.5n2
719.5n2
8010n2
1868.5n2
20999n2
6.7
370.4
8422
345.8
175.1
23.15n2
16.7
2.9
1.6
161.5n2
280.5n2
5981.5n2
78884.5n2
7895
52742
1845n2
14196n2
312n3
277n3
AMD Ryzen 7 8840HSHawk Point-HS (Zen 4)Hawk Point (Zen 4/4c, Ryzen 8040)8MB + 16MB283300 ‑ 51008/164x86yes9Radeon 780M
AMD Ryzen 7 7840HSPhoenix-HS (Zen 4)Phoenix (Zen 4, Ryzen 7040)8MB + 16MB353800 ‑ 51008/164x86yes344Radeon 780M
~48.589%
15667n5
7709
50264
3.33
30.25
279n11
2608n11
690n11
6509n11
1779n11
16706n11
8.77
724.41
2.63
72.82
7699
298
149.3
20.4n13
14.9
2.1
1.3
192n13
310n13
6640n13
70243n13
8148n3
48814n3
1910.5n6
11662n6
1960n13
11803n13
2671.5n10
13100n10
91466.5n2
303.71n7
298.5n2
322n13
263n10
AMD Ryzen 7 7840SPhoenix-HS (Zen 4)Phoenix (Zen 4, Ryzen 7040)8MB + 16MB353800 ‑ 51008/164x86yes344Radeon 780M
~47.275%
14547
7579
45931
3.33
28.61
274
2222.84n3
685
5912
1761
15102
7.4
653.4
10.2
341.9
20369
18.6
12.9
1.9
1.2
213
347
6328
64696
1939
11288
2605
12598
91068
316.3
280.6
296
247.5n2
AMD Ryzen 7 PRO 7840HSPhoenix-HS (Zen 4)Phoenix (Zen 4, Ryzen 7040)8MB + 16MB353800 ‑ 51008/164x86yes185Radeon 780M
~58.339%
276
2519
693
6235
1774
15863
19.9
201
325
6493
70387
1953
12039
2528.5n2
12858n2
311
222
AMD Ryzen 9 6980HXRembrandt-H (Zen 3+)Rembrandt (Zen 3+)4MB + 16MB453300 ‑ 50008/166x86yes710Radeon 680M
Intel Core i7-12800HAlder Lake-HAlder Lake-P11.5MB + 24MB451800 ‑ 480014/2010x86yes710Iris Xe G7 96EUs
~57.641%
265n5
2222n5
706n5
5731n5
1828n5
15283n5
16.8n5
222n5
337
5820n5
62100n5
1771n5
12434n5
91965
254.5n3
311
294.5n4
265
Apple M3 Pro 12-CoreApple M3272748 ‑ 405612/123ARMyes51M3 Pro 18-Core GPU
~71.330%
2163
1977
15106
327
314
2327
15298
3138
15480
96501
297.2
555
427
Apple M3 Pro 11-CoreApple M3272748 ‑ 405611/113ARMyes51M3 Pro 14-Core GPU
~66.636%
281
1913
502
3529
1942
13315
365
355
2331
13312
3113
14412
98732
307.5
549
431
Intel Core i7-12650HXAlder Lake-HXAlder Lake-S11.5MB + 24MB551500 ‑ 470014/2010x86yes584UHD Graphics 770
Intel Core i5-13600HXRaptor Lake-HXRaptor Lake-HX + 24MB551900 ‑ 480014/2010x86yes345UHD Graphics 770
~659%
1912.5n2
15135n2
2920
15910
Intel Core i5-13500HXRaptor Lake-HXRaptor Lake-HX + 24MB551800 ‑ 470014/2010x86yes345UHD Graphics Xe 16EUs (Tiger Lake-H)
~49.373%
14596n2
8980
58608
3.14
33.7
252n3
2863n3
679n3
7021n3
1730.5n2
18334n3
7.7
408
10.7
400.2
20.3n3
14.6
2.8
1.5
193n3
336n3
5728n3
71243n3
1730n3
13581n3
2478
13404
90065
308.43
356.7
293n3
243n3
AMD Ryzen 9 3900XMatisse (Zen 2)Matisse (Ryzen 3000 Desktop)6MB + 64MB1053800 ‑ 460012/247x86yes1622
~37.773%
14889n9
6018.5n2
45539n2
2.36n2
33.88n2
207n3
3049n3
514n3
6910n3
1370
19000
9.14
511
2.69n2
64.85n2
7534n2
267.5
147
20.75n2
10.75n2
2.9n2
1.7n2
162.3n3
5316n3
80935n3
5680n3
43350n3
1247n3
11135n3
1250n4
10498n4
225
Qualcomm Snapdragon X EliteOryon453800 ‑ 430012/124ARMyes50SD X Elite Adreno GPU
~72.85%
2871.5n2
14647.5n2
Apple M2 MaxApple M236MB + 48MB792424 ‑ 369612/125ARMyes332M2 Max 38-Core GPU
~60.739%
236n2
2084n2
455.5n2
4064.5n2
1643.5n2
14752.5n2
333
326n2
1967n3
15373n3
2692
14863
77676n2
246.45n2
423n2
404.5n2
259n2
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
Apple M2 ProApple M236MB + 24MB2424 ‑ 350412/125ARMyes332M2 Pro 19-Core GPU
~57.336%
230
2069
446.5n2
4031n2
1647.5n2
14794.5n2
331
1957n3
15010n3
2663
14568
76205
239
403
386
253
Intel Core i7-13620HRaptor Lake-HRaptor Lake-H9.5MB + 24MB451800 ‑ 490010/1610x86yes345UHD Graphics 64EUs
~46.482%
13632
10181
54809
3.27
27.06
263n3
2349n3
711n3
5828n3
1860n3
15339n3
6.74
379.96
3.14
1021
8682
345.36
138.15
16.6n3
13.8
2.3
1.3
223n3
391n3
5890n3
59430n3
7977
42882
1767
11205
1831n3
11430n3
2596.5n2
12817n2
305.5n4
267n2
Intel Core i7-12700HAlder Lake-HAlder Lake-S11.5MB + 24MB451700 ‑ 470014/2010x86yes710Iris Xe G7 96EUs
~4891%
14044n7
8875.5n2
54647n2
3.06n2
27.6n2
256n62
2605n67
688n61
6087n61
1780.5n60
16338n61
7.92
428.65
3.3
236.13
8231
297.5
145.75
16.7n61
14.8
2.5
1.4
214n60
391.5n34
5761.5n60
61958.5n60
7421n4
46409n4
1695n19
11805n19
1755n61
12125n61
2486
13118
93.6n2
88214.5n16
261.2n30
278n16
297.5n52
258n29
AMD Ryzen 7 5800X3DVermeer (Zen3)Vermeer (Ryzen 5000)4MB + 96MB1053400 ‑ 45008/167x86yes591
~38.570%
14479
6008
42010
2.77
27.19
241
2413
566
5479
1452
14317
8.11
385.46
3.65
92.57
14431
292
138.25
19.1
13.8
1.9
1.2
212.6
6799
69518
7187
43687
1526
10836
1622
10856
AMD Ryzen 7 5800XVermeer (Zen 3)Vermeer (Ryzen 5000)4MB + 32MB1053800 ‑ 47008/167x86yes1163
~44.277%
15873
6835
45548
3.09
29.31
265.5n2
2608.5n2
624.5n2
6074.5n2
1574.5n2
15476n2
7.3
365.8
3.04
86.1
15604
339
152
20.3n2
15
2
1.3
196.9n2
336n2
6906.5n2
72113.5n2
7333
44131
1673
11246
1683n2
10723.5n2
301.5n2
245
Intel Core i9-11900KRocket LakeRocket Lake4MB + 16MB1253500 ‑ 53008/1614x86yes959UHD Graphics Xe 750 32EUs
~4475%
10545
62024
3.1
26.76
255n4
2379n4
633n4
5306n5
1636n5
14747n5
6.27
331.4
3.98
77.9
9030
309.5
137
18.2n4
13
1.9
1.2
211.85n4
428
6347n4
59658.5n4
7976
42329
1863
11008
1787.5n6
10483n6
283.5n4
247n2
Intel Core i7-1370PRaptor Lake-PRaptor Lake-P11.5MB + 24MB281400 ‑ 520014/2010x86yes345Iris Xe G7 96EUs
~54.145%
271n2
2272n2
719.5n2
5113.5n2
1872.5n2
12968.5n2
12.08n2
317.5n2
609n2
6413.5n2
51639n2
1939
11474
1887n3
10353n3
2644
12891
308.91
296n3
285
AMD Ryzen 9 PRO 6950HRembrandt-H (Zen 3+)Rembrandt (Zen 3+)4MB + 16MB453300 ‑ 49008/166x86yes604Radeon 680M
AMD Ryzen 9 6900HXRembrandt-H (Zen 3+)Rembrandt (Zen 3+)4MB + 16MB453300 ‑ 49008/166x86yes710Radeon 680M
~4080%
13274n11
6545.5n8
39524n8
2.92n8
23.88n8
249n19
2231n19
610n19
5306n19
1558n19
13497n19
7.86n5
661.86n5
3.77n7
104.79n7
6875n7
255.5n7
114.45n7
16.95n20
11.9n7
1.7n7
1.1n7
231n21
407n14
5817n20
61333n20
6698n11
39852n11
1557n15
10144n15
1589n21
9647n21
243.02n5
286n17
227n15
Intel Core i9-10900KComet LakeComet Lake2.5MB + 20MB1253700 ‑ 530010/2014x86yes1304UHD Graphics 630
~39.270%
8127
59368
2.56
29.03
217n3
2533n3
524n3
6181n3
1374
15821
7.2
403.4
3.58
66.3
9739
289.5
149
19.8n3
14.6
2.6
1.5
179n3
5811n3
69987n3
6126n2
41647n2
1385n2
11060.5n2
1428n3
11393n3
255n3
Intel Core i5-13450HXRaptor Lake-HXRaptor Lake-HX + 20MB551800 ‑ 460010/1610x86yes345UHD Graphics Xe 16EUs (Tiger Lake-H)
Intel Core i7-12650HAlder Lake-HAlder Lake-P9.5MB + 24MB451700 ‑ 470010/1610x86yes710UHD Graphics 64EUs
~45.291%
13453n5
8898n3
44608n3
3.14n3
22.08n3
253n11
1893n11
680n11
4772n11
1770n11
12326n11
7.83n3
414.82n3
6.99n3
410.29n3
8199n3
282.3n3
111.1n3
14.5n13
10.1n3
1.8n3
1.1n3
267n12
449n10
5674n11
49673n11
7600n5
41235n5
1732n6
10303n6
1772n13
10126n13
2429n4
10580n4
86
87864n2
265.07n3
278.5n2
299n7
251n7
Intel Core i9-11900KBTiger Lake-HTiger Lake10MB + 24MB653300 ‑ 53008/1610x86914UHD Graphics Xe 32EUs (Tiger Lake-H)
~37.473%
14961
9538
50665
2.84
22.07
247
2027
629
4644
1621
11726
6.66
343.2
3.42
102.2
9584
272.5
106
14.4
11.6
1.7
1.1
262.7
5979
50152
6991
36310
1638
8845
1656
8924
269
AMD Ryzen 9 3900Matisse (Zen 2)Matisse (Ryzen 3000 Desktop)6MB + 64MB653100 ‑ 430012/247x86yes1528
~38.264%
13817
5700
44191
2.22
30.96
197
2804
490
6321
9.6
547
7145
255.5
131.9
18.9
10.4
2.4
1.6
179
5134
75612
5449
40720
1258
10695
1246
10190
227
Intel Core i9-10850KComet Lake-SComet Lake2.5MB + 20MB1253600 ‑ 520010/2014x86yes1205UHD Graphics 630
~38.770%
6829
58453
2.45
28.14
215
2457
511
5961
1314
15538
7.59
419.8
2.67
68.1
9424
285.5
146.5
20.3
14.5
2.5
1.5
181.2
5914
70932
6425
44146
1412
11426
1401
11436
253
AMD Ryzen 7 5700XVermeer (Zen 3)Vermeer (Ryzen 5000)4MB + 32MB653400 ‑ 46008/167x86yes620
~42.182%
14862
6527
42876
2.94
26.45
253
2329
595
5405
1499
13184
9.47
460.69
3.39
89.63
12478
305
134.7
17.1
13.4
1.9
1.2
221
374
6522
65777
6928
37730
1587
9214
1647
9353
2186
9331
310
236
Intel Core i7-11700KRocket LakeRocket Lake4MB + 16MB1253600 ‑ 50008/1614x86yes959UHD Graphics Xe 750 32EUs
~44.368%
16388
9621
58342
2.87
25.55
240n2
2299n2
588n2
5361n2
1558
14281
20.2
685
4.8
292.5
128
16.3
12.7
1.9
1.2
221
6157
57129
1765.5n2
10786.5n2
124.2
71212
196.9
199.1
254
AMD Ryzen 7 5700GCezanne (Zen 3)Cezanne (Zen 3, Ryzen 5000)4MB + 16MB653800 ‑ 46008/167x86yes976Vega 8
~39.282%
14324n3
6196n2
38826.5n2
2.86n2
23.58n2
242.5n2
2107n2
584n2
5015.5n2
1494n2
12830.5n2
7.8n2
415.27n2
4.33n2
94.57n2
7680.5n2
273.75n2
123.4n2
15.8n2
10.5n2
1.6n2
1.05n2
232.85n2
5813.5n2
59702n2
6630n2
34402.5n2
1521.5n2
8684.5n2
1579n2
8681n2
55.3n2
74010
225
217.2
289.5n2
AMD Ryzen 7 PRO 5750GCezanne PRO (Zen 3)Cezanne (Zen 3, Ryzen 5000)4MB + 16MB653800 ‑ 46008/167x86yes927Vega 8
~35.570%
6432
37998
2.87
22.22
241
1956
585
4782
1500
12157
7.7
406.94
3.69
96.77
7011
249.5
113.15
14.4
11.1
1.6
1
245
5682
57184
6440
33145
1493
8361
1561
8396
276
Apple M1 MaxApple M-Series28MB + 48MB2060 ‑ 322010/105ARMyes788M1 Max 32-Core GPU
~48.230%
200n3
1691n3
395n3
2750n3
1533n3
12386n3
189n3
1782n3
12697n3
68029n3
214.5n3
282n3
360n3
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
Apple M2 Pro 10-CoreApple M236MB + 24MB2424 ‑ 369610/105ARMyes332M2 Pro 16-Core GPU
~57.234%
231
1664
449
3235
1643
11811
415
435
1936.5n2
12131.5n2
75471
234.8
395
391
250
Apple M1 ProApple M-Series28MB + 24MB2064 ‑ 322010/105ARMyes788M1 Pro 16-Core GPU
~52.836%
209
1690
393
2721
1534
12370
183.3
1768
12499
2409
12440
75.6
66203
213.5
276
342
AMD Ryzen 9 6980HSRembrandt-HS (Zen 3+)Rembrandt (Zen 3+)4MB + 16MB353300 ‑ 50008/166x86yes710Radeon 680M
AMD Ryzen 9 6900HSRembrandt-H (Zen 3+)Rembrandt (Zen 3+)4MB + 16MB353300 ‑ 49008/166x86yes710Radeon 680M
~41.886%
14208n3
6404.5n2
39960n2
2.95n2
24.75n2
245n5
2161n5
612n5
5152n5
1554n5
13445n5
8.99n2
758.26n2
5.49
116.82
6488n2
265.5n2
123.6n2
16.2n5
11.1n2
1.65n2
1.08n2
227n5
382n3
5805n5
62006n5
6476n3
39091n3
1502n3
9261n3
1537n5
9224n5
106.6n2
73797
229.25n2
227.7
281n5
197.4n3
AMD Ryzen 9 PRO 6950HSRembrandt-HS (Zen 3+)Rembrandt (Zen 3+)4MB + 16MB353300 ‑ 49008/166x86yes604Radeon 680M
~34.770%
6266
36583
2.82
22.13
239
1913
591
4577
1514
11515
7.2
366
8.4
252
5970
222
103
12.8
11.7
1.6
1.02
264
5516
49474
6351
31423
1522
8033
1549
7664
274
Intel Core i9-10910Comet Lake-SComet Lake2.5MB + 20MB1253600 ‑ 500010/2014x86yes1304UHD Graphics 630
~39.548%
8131
57842
2.44
25.57
215
2302
501
5196
7.6
432.5
8613
16.8
208
5690
60747
1381
10244
55976
203.1
161
236
AMD Ryzen 7 6800HRembrandt-H (Zen 3+)Rembrandt (Zen 3+)4MB + 16MB453200 ‑ 47008/166x86yes710Radeon 680M
~42.286%
13958
6424.5n2
39436.5n2
2.87n2
24.35n2
243n9
2151n9
598.5n8
5076.5n8
1526.5n8
12832n10
9.13
729
11.37n2
414.92n2
14392n2
266.3
129.5
16.15n8
9.6n2
1.6n2
1.04n2
236n7
390n7
5768n7
58798n7
6477n3
36919n3
1510n5
9345n5
1551.5n8
9388.5n8
105.9
75542n3
242.34n6
234.5n2
281n7
226.5n6
AMD Ryzen 7 PRO 6850HRembrandt-H (Zen 3+)Rembrandt (Zen 3+)4MB + 16MB453200 ‑ 47008/166x86yes604Radeon 680M
~35.668%
11620
5791
34412
2.6
21.32
205.1n2
2085.5n2
576n3
4887n3
1480n2
12393n2
0.94
800.35
3.72
103.58
5263
222.48
104.13
14.3n2
9.1
1.01
1
241.5n2
469.5n2
5417n2
54444.5n2
1477.5n2
8472n2
232n2
179.55n2
Intel Core i9-11980HKTiger Lake-HKTiger Lake10MB + 24MB553300 ‑ 50008/1610x86yes948UHD Graphics Xe 32EUs (Tiger Lake-H)
~40.759%
9626
52116
2.76
21.06
230n6
2152n7
594n7
4568.5n8
1559n2
10923n2
6.82
350
7.47
243.3
15.8n5
256n4
5668n5
53426n5
1627n5
9813n5
2250
9970
72523
198.75n2
211.1n2
279n5
AMD Ryzen 9 5980HXCezanne-HX (Zen 3)Cezanne (Zen 3, Ryzen 5000)4MB + 16MB543300 ‑ 48008/167x86yes1067Vega 8
Intel Core i9-11900HTiger Lake-HTiger Lake10MB + 24MB452500 ‑ 49008/1610x86yes948UHD Graphics Xe 32EUs (Tiger Lake-H)
~51.939%
241n5
2148n5
608n5
4878n5
1580.5n4
12143.5n4
15n5
243n5
479
5795n5
53205n5
1632n5
9628n5
2355
9401
273n5
227
Intel Core i5-12600HXAlder Lake-HXAlder Lake-S10MB + 18MB551800 ‑ 460012/1610x86yes584UHD Graphics 770
AMD Ryzen 9 5900HXCezanne-H (Zen 3)Cezanne (Zen 3, Ryzen 5000)4MB + 16MB453300 ‑ 46008/167x86yes1072Vega 8
~40.986%
14253.5n8
6409n5
40114n5
2.84n5
24.71n5
240n25
2106n28
578.5n28
4978n29
1488n28
12845n29
7.89n4
415.58n4
3.46n4
98.18n4
7061n4
275.25n4
120.23n4
15.55n28
11.1n4
1.75n4
1.15n4
243n28
434n2
5750n28
58664n28
6350.5n8
33335.5n8
1485n9
8400n9
1538.5n26
8462n26
117.65n2
71000n3
191.8n7
206.1
279n27
218.5n2
Intel Core i7-11700Rocket LakeRocket Lake4MB + 16MB652500 ‑ 49008/1614x86yes759UHD Graphics 750
~36.473%
14738
9493
51493
2.77
19.84
233
1767
579
3986
1529
10287
6.87
387.73
4.19
115.52
5962
267.2
93.1
12.6
12
1.8
1.1
295
5810
44752
7173
37795
1677
9706
1681
9760
256
Intel Core i5-12600HAlder Lake-HAlder Lake-P10MB + 18MB452000 ‑ 450012/1610x86yes710Iris Xe G7 80EUs
AMD Ryzen Threadripper 1950XZENThreadripper8MB + 32MB1803400 ‑ 420016/3214x86yes2318UHD Graphics 750
~31.657%
4754
41814
1.73
23.13
159
2997
410
6700
10.66
633
3.34
55.1
4150
189.6
134.3
16.9
19
2.9
1.8
163
4304
28877
1029
1029
11237
Intel Core i5-13600HRaptor Lake-HRaptor Lake-H10MB + 18MB452100 ‑ 480012/1610x86yes345Iris Xe G7 80EUs
Intel Core i5-13505HRaptor Lake-HRaptor Lake-H10MB + 18MB451900 ‑ 470012/1610x86yes345Iris Xe G7 80EUs
Intel Core i5-13500HRaptor Lake-HRaptor Lake-H10MB + 18MB451900 ‑ 470012/1610x86yes345Iris Xe G7 80EUs
~44.282%
14693.5n2
9664
53786
3.1
28.34
252n4
2317.5n4
684.5n4
5395n4
1779n4
14085.5n4
7.1
340.36
3.27
225.42
7325
336
132.2
15.8n5
13.3
2.2
1.2
238n5
420n5
5653n5
52630n5
7706.5n2
42655.5n2
1708.5n2
11350.5n2
1743n5
11099n5
2446n3
11828n3
273n6
238n6
Intel Core i5-12500HAlder Lake-HAlder Lake-P10MB + 18MB451800 ‑ 450012/1610x86yes710Iris Xe G7 80EUs
~49.752%
13126n2
242.5n8
2112n9
652.5n8
5090.5n8
1685.5n8
13461n8
15.3n8
238n8
426n8
5377n8
51984.5n8
1636
10203
1636.5n8
10272n8
2279.5n2
9891.5n2
83229n3
254.5n3
296n2
272n7
240n7
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
AMD Ryzen 9 5980HSCezanne-HS (Zen 3)Cezanne (Zen 3, Ryzen 5000)4MB + 16MB353000 ‑ 48008/167x86yes1072Vega 8
~4048%
243
2083
602.5n2
4651n2
1529
12629
3.47
109.7
15.2
245.6
5623
57319
6295
33630
1508
8649
1537
8620
66881
179.5
279
Intel Core i7-1360PRaptor Lake-PRaptor Lake-P10MB + 18MB281600 ‑ 500012/1610x86yes345Iris Xe G7 96EUs
~44.589%
12800.5n10
10473n5
51246n5
3.26n5
24.69n5
258n14
1860n14
687n14
4132.5n14
1809n14
10688.5n14
6.78n5
383.28n5
3.89n5
304.68n5
5759n3
296.5n4
110.68n4
11.3n14
12.4n4
2.05n4
1.2n4
324n15
585n15
5742.5n14
43043.5n14
7635n5
37274n5
1773n6
10000.5n6
1824n15
9967n15
2546n8
10956.5n8
83850n5
254.1n8
307.5n4
303n12
263n11
Intel Core i7-1280PAlder Lake-PAlder Lake-P11.5MB + 24MB281300 ‑ 480014/2010x86yes710Iris Xe G7 96EUs
~43.582%
6579
8881
46007
3.07
25.17
238n7
2112n7
629n8
4677.5n8
1651n7
11666n8
7
366
34
1168
7082
12.9n5
11.8
2.1
1.2
285n7
537n7
5540n7
49572n7
7522
40196
1694n3
10537n3
1746n7
11191n7
95.5
84578.5n2
244.65n4
251
286n7
248.5n6
Intel Core i9-11950HTiger Lake-HTiger Lake10MB + 24MB452600 ‑ 50008/1610x86yes948UHD Graphics Xe 32EUs (Tiger Lake-H)
~47.236%
242.5n4
1954n5
619.5n4
4664.5n4
1591n4
12206.5n4
14.2n4
254n3
5773n3
50060n3
1631n3
7969n3
74632.5n2
208.3n4
211.5n2
272.5n4
Intel Xeon W-11955MTiger Lake-HTiger Lake10MB + 24MB452600 ‑ 50008/1610x86yes948UHD Graphics Xe 32EUs (Tiger Lake-H)
~35.857%
230
1846
568
4250
1480
10862
6.9
360
8815
13.4
8.6
1.7
1.1
276
5222
47264
6286
33776
1484
8230
1586.5n2
9057.5n2
60397
147
271
AMD Ryzen 7 7735HSRembrandt-HS RefreshRembrandt (Zen 3+)4MB + 16MB353200 ‑ 47508/166x86yes344Radeon 680M
~42.189%
13410n3
6508n2
42409n2
2.95n2
26.48n2
248n10
2274n11
603n9
5341n9
1546n9
13750n9
7.79n2
663.99n2
3.43
92.76
6807n2
270.2n2
131.43n2
17n9
13n2
1.85n2
1.2n2
229n9
376n10
5786n9
60612n9
6720
40164
1516n3
9315n3
1555n9
9436n9
2115n3
10348n3
76231n3
246.2n6
272n3
290n11
223.5n10
AMD Ryzen 7 7735HRembrandt-H RefreshRembrandt (Zen 3+)4MB + 16MB353200 ‑ 47508/166yes344Radeon 680M
~38.582%
12923.5n2
6438
35222
2.91
21.14
246
1825
601
4354
1536
10920
7.59
680.96
3.81
109.78
5997
251.5
103.65
14.1
10.6
1.6
1.1
283n2
488n2
5621
52518
6434.5n2
34180.5n2
1525n2
8372n2
1564n2
8582n2
2015.5n2
9182.5n2
293
222
AMD Ryzen 7 PRO 6850HSRembrandt-HS (Zen 3+)Rembrandt (Zen 3+)4MB + 16MB353200 ‑ 47008/166x86yes604Radeon 680M
AMD Ryzen 7 6800HSRembrandt-HS (Zen 3+)Rembrandt (Zen 3+)4MB + 16MB353200 ‑ 47008/166x86yes710Radeon 680M
~39.364%
13890
6258
41339
2.79
26.19
234
1987
570
4634
1455
11992
8.4
710.8
6716
254.7
113.7
15.1
11.4
1.7
1.1
258
5495
56170
6168
36693
1492
9298
280
AMD Ryzen 9 5900HSCezanne-HS (Zen 3)Cezanne (Zen 3, Ryzen 5000)4MB + 16MB353000 ‑ 46008/167x86yes1072Vega 8
~42.955%
6380
41235
2.83
24.94
236.5n4
2041n5
571.5n4
4895.5n4
1475.5n4
12745.5n4
14.55n4
241n4
5653n4
57286n4
6361n2
31805n2
1502
7784
1497n3
7867n3
65400
196.25n2
183
275.5n4
AMD Ryzen 7 3800XTMatisse (Zen 2)Matisse (Ryzen 3000 Desktop)4MB + 32MB1053900 ‑ 47008/167x86yes1256UHD Graphics 750
~3566%
6035
40528
2.36
24.18
219
2230
544
5120
9.07
508
3.74
81.4
7467
271
119
16.1
11.4
2
1.2
222.7
5516
59247
5830
35526
1360
9163
1353
8948
249
AMD Ryzen 7 3700XMatisse (Zen 2)Matisse (Ryzen 3000 Desktop)4MB + 32MB653600 ‑ 44008/167x86yes1622UHD Graphics 750
~34.561%
13814.5n2
5839
40439
2.3
23.19
204
2092
506
4782
9.45
531
3.71
86.7
7503
269.5
115
15.4
11.4
2
1.1
181.4
5333
57307
5799
34757
1304
8960
Intel Core i9-9900KSCoffee Lake-RCoffee Lake2MB + 16MB1274000 ‑ 50008/1614x86yes1507UHD Graphics 630
~36.964%
14883.5n2
8183n2
51778.5n2
2.45n2
23.15n2
216n2
2058n2
511.5n2
4819.5n2
7.42n2
414.15n2
3.6n2
87.9n2
8353n2
278.85n2
122.5n2
16.26n2
12.15n2
2.1n2
1.2n2
224.55n2
5734n2
55735n2
6308
35586
1372
9100
44538
Intel Core i7-10700KComet LakeComet Lake2MB + 16MB1253800 ‑ 51008/1614x86yes1324UHD Graphics 630
~35.166%
7910
50670
2.38
22.19
208
2027
496
4882
7.58
391.3
3.18
85.7
8469
269
121
16.3
11.2
2
0.97
217.4
5647
54050
6247
34735
1368n2
8903n2
1373.5n2
8925n2
245
AMD Ryzen 5 7645HXDragon Range (Zen4)Dragon Range (Zen 4, Ryzen 7045)6MB + 32MB554000 ‑ 50006/125x86yes344Radeon 610M
~48.875%
7717
44716
25.68
289
2276
699
5467
1809
13985
8
410.82
13352
328.4
135.9
18.6
12.6
1.7
1
224
360
7124
60373
7927
41241
1924
10185
1971
10145
2717
11717
87916
331
273
AMD Ryzen 5 8645HSHawk Point-HS (Zen 4)Hawk Point (Zen 4/4c, Ryzen 8040)6MB + 16MB454300 ‑ 50006/124x86yes9Radeon 760M
AMD Ryzen 5 8640HSHawk Point-HS (Zen 4)Hawk Point (Zen 4/4c, Ryzen 8040)6MB + 16MB283500 ‑ 49006/124x86yes9Radeon 760M
Intel Core Ultra 7 165UMeteor Lake-PIntel Meteor Lake-U + 12MB153800 ‑ 490012/147x86yes6Graphics 4-Core
AMD Ryzen Z1 ExtremePhoenix (Zen 4)Phoenix (Zen 4, Ryzen 7040)8MB + 16MB303300 ‑ 51008/164x86yes265Radeon 780M
~58.645%
274n2
2223.5n2
682n2
5467n2
1756n2
13982n2
17.35n2
213
406n2
6316
59811.5n2
1898n3
9803n3
2534n2
10931n2
86617
276.7
293
366n2
277
AMD Ryzen 5 7640HSPhoenix-HS (Zen 4)Phoenix (Zen 4, Ryzen 7040)6MB + 16MB454300 ‑ 50006/124x86yes344Radeon 760M
~56.639%
271
2079
667
5044
1715
13029
16.7
245
393
6465
54954
1941
9355
2620
10936
316
257
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
AMD Ryzen 5 PRO 7640HSPhoenix (Zen4)Phoenix (Zen 4, Ryzen 7040)6MB + 16MB544300 ‑ 50006/124x86yes344Radeon 760M
~42.770%
12948
6888
39399
2.97
21.61
249
1863
612
4530
1581
11507
7.9
740.7
6717
264
109.5
14.7
10.4
1.5
0.92
270
444
5892
51096
7042
34588
1748
8863
2352
10200
262n2
AMD Ryzen 7 PRO 7840UPhoenix (Zen 4)Phoenix (Zen 4, Ryzen 7040)8MB + 16MB283300 ‑ 51008/164x86yes226Radeon 780M
~52.836%
273
2014
684
4970
1747
12929
15.9
248
410
5988
57056
1881
9663
1896
7596
317
AMD Ryzen 7 8840UHawk Point-U (Zen 4)Hawk Point (Zen 4/4c, Ryzen 8040)8MB + 16MB283300 ‑ 51008/164x86yes19Radeon 780M
AMD Ryzen 7 7840UPhoenix-U (Zen 4)Phoenix (Zen 4, Ryzen 7040)8MB + 16MB283300 ‑ 51008/164x86yes226Radeon 780M
~43.384%
13021
7342
36812
2.97
20.46
264n8
1947n10
661.5n8
4731n8
1683n8
11930.5n8
7.24
626.26
5629
242.64
105.52
15.1n8
6.1
1.5
0.95
264n8
427.5n8
6002.5n8
53861n8
6140
30359
1564
8055
1749n8
9382n8
2399n7
10763n7
82676n2
288.9n5
268n2
278.5n8
233n6
Intel Core Ultra 7 155UMeteor Lake-PIntel Meteor Lake-U + 12MB153800 ‑ 480012/147x86yes6Graphics 4-Core
Intel Core i7-11850HTiger Lake-HTiger Lake10MB + 24MB452500 ‑ 48008/1610x86yes948UHD Graphics Xe 32EUs (Tiger Lake-H)
~45.532%
232.5n2
1767.5n2
595n2
4244.5n2
1532.5n2
10857n2
13.5n2
285n2
5744.5n2
47721n2
1672.5n2
9250n2
198.5
274.5n2
Intel Core Ultra 7 164UMeteor Lake-UIntel Meteor Lake-U + 12MB93800 ‑ 480012/147x86yes6Graphics 4-Core
Intel Core i9-9900KCoffee Lake-RCoffee Lake2MB + 16MB953600 ‑ 50008/1614x86yes1894UHD Graphics 630
~3770%
14281.5n6
7933n4
48778.5n4
2.38n5
21.39n5
212n9
1979n9
502n2
4871n2
1280
12397
7.66n4
432.15n4
3.58n3
91.3n3
7633n4
260.5n4
114.25n4
15.8n3
11.1n4
1.9n4
1.15n4
223.8n3
5410.5n2
48207n2
6049n4
32981n4
1300
8845
71
40081n2
AMD Ryzen 5 5600XVermeer (Zen 3)Vermeer (Ryzen 5000)3MB + 32MB653700 ‑ 46006/127x86yes1163UHD Graphics 750
~37.373%
14576n2
6462
39331
2.95
21.75
254
1968
601
4567
1541
11838
8.08
400.9
3.89
113.9
13282
320
117
15.7
10.7
1.5
0.94
260.2
6594
56607
6953
35617
1587
8926
1657
8980
286
Intel Core i5-11600KRocket LakeRocket Lake3MB + 12MB1253900 ‑ 49006/1214x86yes990UHD Graphics Xe 750 32EUs
~36.573%
14519
9745
49408
2.87
19.32
238n2
1744n2
585.5n2
4301.5n2
1529.5n2
11217.5n2
6.76
353.7
4.92
107.6
7850
289n2
100.75n2
14.35n2
9.7
1.5
0.9
267.25n2
6061.5n2
44971n2
7438
33266
1731
8542
1723n2
8429.5n2
271.5n2
Intel Core i7-1365URaptor Lake-URaptor Lake-U9.5MB + 12MB151300 ‑ 520010/1210x86yes710Iris Xe G7 96EUs
~52.750%
265.5n4
1466.5n4
726.5n4
3495.5n4
1887n4
8946n4
9.8n4
383n3
726.5n4
5850.5n4
39727n4
1812.5n2
8500n2
1878.5n4
8605.5n4
2583
9605
93596
282.37n4
350
300n4
262.5n4
Intel Core i7-11800HTiger Lake-HTiger Lake10MB + 24MB452300 ‑ 46008/1610x86yes948UHD Graphics Xe 32EUs (Tiger Lake-H)
~40.391%
13362n5
9075n3
44099n3
2.6n4
18.53n4
227n45
1936n49
580n46
4689n49
1508n44
12197n47
7.27n3
369.78n3
3.97n3
120.84n3
7944n3
247.5n3
93.75n3
13.9n45
9.9n3
1.5n3
1n3
261n45
559n5
5509n45
49080n45
6667n7
34107n7
1550n8
7866n8
1572n39
8905n39
2192.5n2
9253.5n2
134.8
68002n9
190.9n16
194n5
262n39
212n3
Intel Core i7-1355URaptor Lake-URaptor Lake-U9.5MB + 12MB151200 ‑ 500010/1210x86yes710Iris Xe G7 96EUs
~41.180%
10128n3
10028
33627
3.07
16.45
255.5n16
1393n16
697.5n16
3257.5n16
1825n16
8286n16
6.7
382.8
21
885
12688
9.29n16
8.3
1.7
0.94
424.5n16
770.5n16
5569.5n16
35321.5n16
1786
8018
1783n16
8058n16
2505n11
8908n11
90249n5
278.41n11
338n4
284.5n16
253.5n14
AMD Ryzen 7 7735URembrandt-U RefreshRembrandt (Zen 3+)4MB + 16MB282700 ‑ 47508/166x86yes344Radeon 680M
~35.577%
10406.5n2
6207
32220
2.8
19.45
234
1698
524
3895
1490
10085
7.71
697.06
5.18
194.41
4904
228.5
90.55
12.5
10.2
1.5
1
308
540
5579
48972
6267
32079
1497
8115
1522
8203
240
189.4
AMD Ryzen 7 PRO 6860ZRembrandt U (Zen 3+)Rembrandt (Zen 3+)4MB + 16MB282700 ‑ 47508/166x86yes604Radeon 680M
~39.866%
6238
36959
2.87
23.11
233
1992
588
4555
1468
11822
7.6
693.5
7.9
252.1
14.7
7.7
1.3
1.1
274
483
5289
52568
1452
8734
73281
235.4
256
270
214
Apple M1 Pro 8-CoreApple M-Series28MB + 16MB2060 ‑ 32208/85ARMyes788M1 Pro 14-Core GPU
~50.825%
210
1320
1531
9581
1769
9942
76.7
65528
207.9
262
343
AMD Ryzen 7 5800HCezanne-H (Zen 3)Cezanne (Zen 3, Ryzen 5000)4MB + 16MB453200 ‑ 44008/167x86yes1072Vega 8
~39.391%
12790n2
6017n2
36734.5n2
2.72n2
22.47n2
229n28
2005n27
554n29
4662n30
1416n28
12091.5n28
8.31n2
419.5n2
6.12n2
188.36n2
6851n2
244
104.65
14.75n28
10n2
1.65n2
1.05n2
255.5n28
499.5n2
5499.5n28
54052n27
6132.5n2
31636.5n2
1418.5n2
7988n2
1462n27
7641n27
1991
9411
134.1
67411n5
189n5
187n3
269n24
190.5
AMD Ryzen 7 7736URembrandt RRembrandt (Zen 3+)4MB + 16MB282700 ‑ 47008/166x86yes344Radeon 680M
~50.832%
246
2019
1548
12768
15.7
246
453
5466
56824
1511
9218
179.93
254
193.4
Intel Core Ultra 5 135UMeteor Lake-PIntel Meteor Lake-U + 12MB153600 ‑ 440012/147x86yes6Graphics 4-Core
AMD Ryzen 7 PRO 6850URembrandt-U PRO (Zen 3+)Rembrandt (Zen 3+)4MB + 16MB282700 ‑ 47008/166x86yes604Radeon 680M
~36.673%
11429
6260
33284
2.84
20.26
237.5n6
1726n6
590n6
4044.5n6
1497n6
10039.5n6
7.7
682.3
8
257.2
13n6
6.5
1.4
0.96
300n6
519.5n6
5339.5n6
48175.5n6
1502
7891
1496.5n6
7924n6
71849.5n2
220.3n2
239n2
243n6
191.9n6
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
AMD Ryzen 5 PRO 6650HRembrandt-H PRO (Zen 3+)Rembrandt (Zen 3+)3MB + 16MB453300 ‑ 45006/126x86yes604Radeon 660M
AMD Ryzen 5 6600HRembrandt-H (Zen 3+)Rembrandt (Zen 3+)3MB + 16MB453300 ‑ 45006/126x86yes710Radeon 660M
~43.941%
233.5n2
1683n2
569.5n2
4053n2
1458n2
10471.5n2
12.85n2
298.5n2
520n2
5509.5n2
43861n2
1417
6219
1460n2
7066n2
224.13
246.5n2
209
AMD Ryzen 5 PRO 6650HSRembrandt-HS (Zen 3+)Rembrandt (Zen 3+)3MB + 16MB353300 ‑ 45006/126x86yes604Radeon 660M
AMD Ryzen Z1Phoenix (Zen4)Phoenix (Zen 4, Ryzen 7040)6MB + 16MB303200 ‑ 49006/124x86yes265Radeon 740M
~45.45%
1827
7674
AMD Ryzen 5 PRO 7640UPhoenix (Zen4)Phoenix (Zen 4, Ryzen 7040)6MB + 16MB153500 ‑ 49006/124x86yes206Radeon 760M
Intel Core Ultra 5 125UMeteor Lake-PIntel Meteor Lake-U + 12MB153600 ‑ 430012/147x86yes6Graphics 4-Core
AMD Ryzen 5 7640UPhoenix-U (Zen 4)Phoenix (Zen 4, Ryzen 7040)6MB + 16MB283500 ‑ 49006/124x86yes206Radeon 760M
Intel Core Ultra 5 134UMeteor Lake-UIntel Meteor Lake-U + 12MB93600 ‑ 440012/147x86yes6Graphics 4-Core
AMD Ryzen 5 PRO 7540UPhoenix (Zen4)Phoenix (Zen 4, Ryzen 7040)6MB + 16MB153200 ‑ 49006/124x86yes206Radeon 740M
AMD Ryzen 5 8640UHawk Point-U (Zen 4)Hawk Point (Zen 4/4c, Ryzen 8040)6MB + 16MB283500 ‑ 49006/124x86yes17Radeon 760M
AMD Ryzen 5 7545UPhoenix (Zen4)Phoenix (Zen 4, Ryzen 7040)6MB + 16MB283200 ‑ 49006/124x86yes206Radeon 740M
AMD Ryzen 5 7540UPhoenix (Zen4)Phoenix (Zen 4, Ryzen 7040)6MB + 16MB283200 ‑ 49006/124x86yes206Radeon 740M
AMD Ryzen 5 8540UHawk Point-U (Zen 4 + Zen 4c)Hawk Point (Zen 4/4c, Ryzen 8040)6MB + 16MB283200 ‑ 49006/124x86yes17Radeon 740M
AMD Ryzen 5 7535HSRembrandt RRembrandt (Zen 3+)3MB + 16MB353300 ‑ 45506/126x86yes344Radeon 660M
~38.189%
12242
6257
37321
2.79
20.14
241
1757
581
4224
1488
10900
8.49
700.99
8.4
256.14
6586
258.1
103.8
14.2
10.2
1.3
0.9
286
481
5670
48646
6170.5n2
31413.5n2
1472
7949
1502
7852
2056
8960
69893
214.9
250
235
189.4
AMD Ryzen 5 6600HSRembrandt-HS (Zen 3+)Rembrandt (Zen 3+)3MB + 16MB353300 ‑ 45006/126x86yes710Radeon 660M
~38.364%
6157
34414
2.74
19
235
1656
577
3935
1465
9131
8
710.7
5207
236.5
93.4
12
7.7
1.3
0.84
328
5318
44476
6029
28928
1493
7195
106.9
234
Intel Core i7-10700Comet LakeComet Lake2MB + 16MB652900 ‑ 48008/1614x86yes1291UHD Graphics 630
~31.966%
7611
41156
2.26
16.7
196
1455
1234
8532
8.08
439.6
3.26
119.5
6555
236
84.8
11.6
10.3
1.8
1.1
315.4
5293
43007
5726
32174
1304
8196
1299
8173
244
AMD Ryzen 9 4900HRenoir-H (Zen 2)Renoir (Ryzen 4000 APU)4MB + 8MB453300 ‑ 44008/167x86yes1378Vega 8
~31.670%
5946
40253
2.24
23.03
193n2
1926.5n2
493.5n2
4409n2
1294n2
11604n2
9.46
729
3.19
82.9
4297
215
111
12.9
7.4
2
1.2
247.3
4727
48976
5287
28402
1237
7624
1231.5n2
8012n2
227
Intel Core i9-10980HKComet Lake-HComet Lake2MB + 16MB452400 ‑ 53008/1614x86yes1352UHD Graphics 630
~34.861%
13765n2
206n15
1737n15
489n13
3883n13
1287n4
10590.5n4
7.8
449
6869
238.5
98.2
13n13
10.1
1.8
1.1
279n13
5437n13
47455n13
5971n3
30973n3
1349n3
8010n3
1347.5n12
8155.5n12
57793
243n12
AMD Ryzen 7 5800HSCezanne-HS (Zen 3)Cezanne (Zen 3, Ryzen 5000)4MB + 16MB352800 ‑ 44008/167x86yes1072Vega 8
~35.85%
1380
7454
AMD Ryzen 9 4900HSRenoir (Zen 2)Renoir (Ryzen 4000 APU)4MB + 8MB353000 ‑ 43008/167x86yes1378Vega 8
~3264%
12448
5866
37938
2.23
18.21
193
1863
495
4288
9.5
547
3.28
88.2
4548
223
106
12.19
11.2
1.9
1.2
297
4634
48577
5372
30230
1218
7675
38616
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
Intel Core i7-11600HTiger Lake H45Tiger Lake7.5MB + 18MB452900 ‑ 46006/1210x86yes948UHD Graphics Xe 32EUs (Tiger Lake-H)
~26.87%
4073
1401
6375
Intel Xeon W-10885MComet Lake-HComet Lake2MB + 16MB452400 ‑ 53008/1614x86yes1311UHD Graphics P630
~32.773%
13490
7865
44583
2.35
18.25
210n4
1640n4
495.5n4
3882.5n4
1300
6893
7.74
429.3
3.6
105.8
7180
236.9
100.1
13.1n3
10.3
1.8
1
286n3
5507n3
45696n3
5892n3
32814n3
1323n3
8295n3
1340n3
8378n3
229n3
Intel Core i9-10885HComet Lake-HComet Lake2MB + 16MB452400 ‑ 53008/1614x86yes1352UHD Graphics 630
~31.170%
12101
211n3
1517n3
489n3
3639n3
1289.5n2
9438n2
7.33
433.9
3.86
131.2
6420
217.8
80.5
11.3n3
9.9
1.8
1
302n3
5589n3
41823n3
5675.5n2
29009n2
1280.5n2
7172n2
1317n3
6914n3
58398
167.6
146
234n3
AMD Ryzen 7 6800URembrandt-U (Zen 3+)Rembrandt (Zen 3+)4MB + 16MB282700 ‑ 47008/166x86yes710Radeon 680M
~37.989%
9964.5n2
6450
35314
2.88
21.13
242n6
1776n7
585.5n8
4083.5n8
1506n7
10546n7
7.94
692.03
4.54
113.45
4639
219.5
101.05
13.1n6
10.7
1.5
1
304n7
504n5
5452.5n6
50614n6
6261n3
30925n3
1462.5n4
7767n4
1514n9
7678n9
2028
8771
69752n3
236.3n5
176n3
270n6
213n5
AMD Ryzen 7 PRO 5875UCezanne U (Zen 3)Cezanne (Zen 3, Ryzen 5000)4MB + 16MB252000 ‑ 45008/167x86yes1072Vega 8
AMD Ryzen 5 5600GCezanneCezanne (Zen 3, Ryzen 5000)3MB + 16MB653900 ‑ 44006/127x86yes976Vega 7
~32.870%
12904
6052
35552
2.68
19.92
228
1724
552
4072
1409
10551
8.08
416.8
4.53
125.3
7652
261.5
102.5
13.9
9.7
1.3
0.88
299.1
5549
48700
6450
31424
1441
7991
1506
8003
Intel Core i7-1265UAlder Lake-UAlder Lake-M9.5MB + 12MB151300 ‑ 480010/1210x86yes710Iris Xe G7 96EUs
~38.884%
9433.5n2
8549
38152
2.99
16.48
240n10
1344.5n10
642n10
3214.5n10
1679.5n10
8225n10
7.98
429.84
5.24
217.43
5960
265.5
80.95
9.24n10
9.7
1.6
0.9
423.5n10
834n10
5285.5n10
34399n10
7515
33057
1678n6
8305.5n6
1739.5n10
8127n10
73251n3
231.57n7
281n3
279.5n10
242.5n10
Intel Core i7-1270PAlder Lake-PAlder Lake-P10MB + 18MB281600 ‑ 480012/1610x86yes710Iris Xe G7 96EUs
~37.673%
7886
36271
2.74
19.94
229.5n2
1739n2
611n2
3536n2
1620n2
9718n2
7.64
436.4
9.8
344.6
16497
10.43n2
5.8
1.1
0.84
373.5n2
714
5279n2
38274n2
1683
8537
1644n2
8660n2
78273
227.45n2
232
285n2
251
Intel Core i7-1260PAlder Lake-PAlder Lake-P10MB + 18MB281500 ‑ 470012/1610x86yes710Iris Xe G7 96EUs
~43.391%
12963.5n6
8793n3
44516n3
3.1n3
22n3
243n25
1626n27
670n24
3761.5n24
1737.5n24
9711n26
7.8n3
424.8n3
4.49n3
237.12n3
7200n3
245n2
94.13n2
11.5n25
11.6n3
1.9n3
1.1n3
328n25
623n16
5373n24
41260.5n24
7531n3
38187n3
1668n10
9907n10
1719n24
9298n24
2424
9532
102.55n2
83695n9
240.3n15
263.5n8
283n24
247n15
AMD Ryzen 7 7730UBarcelo-U RefreshCezanne (Zen 3, Ryzen 5000)4MB + 16MB152000 ‑ 45008/167x86yes710Vega 8
~37.786%
6243
32670
2.76
19.06
231n6
1830n6
566.5n6
4070.5n6
1454.5n6
10801.5n6
7.95
438.1
4.37
121.16
5881
236.2
90.9
12.7n6
10.1
1.4
0.99
296n5
499.5n6
5356n6
49424.5n6
6092
29078
1429n2
7765n2
1479.5n6
7573n6
1960n3
7013n3
71624n5
226.99n6
255n3
263n6
210.5n6
AMD Ryzen 7 PRO 7730UBarcelo-U RefreshCezanne (Zen 3, Ryzen 5000)4MB + 16MB152000 ‑ 45008/167x86yes710Vega 8
~35.477%
8758
6108
33735
2.68
17.55
229
1756
562
3967
1441
10095
8.46
456.71
10.43
369.11
5274
221
95
12.05n2
4.2
0.67
0.46
301.5n2
528n2
5269n2
45924n2
1437.5n2
6559.5n2
1894.5n2
6336n2
71022
242
252
254
AMD Ryzen 7 5825UBarcelo-U (Zen 3)Cezanne (Zen 3, Ryzen 5000)4MB + 16MB152000 ‑ 45008/167x86yes710Vega 8
~36.580%
11292
6304
32641
2.75
18.56
231.5n4
1778n4
556n4
4003.5n4
1447n4
10273.5n4
7.2
366
9.2
340.8
5835
249.6
100.3
12.65n4
8.7
1.5
1.1
302.5n4
542.5n4
5436.5n4
47588.5n4
1455
7235
1468n3
6782n3
70779
227.87n2
232
266.5n4
213n4
AMD Ryzen 7 5825CBarcelo (Zen 3)Cezanne (Zen 3, Ryzen 5000)4MB + 16MB252000 ‑ 45008/167x86yes589Vega 8
AMD Ryzen 5 5600HCezanne-H (Zen 3)Cezanne (Zen 3, Ryzen 5000)3MB + 16MB453300 ‑ 42006/127x86yes1072Vega 7
~35.689%
12008n3
5832n4
35017.5n4
2.62n4
19.2n4
223n13
1573n15
534n14
3721n15
1369n12
9631.5n12
7.94n2
406.61n2
6.58n2
201.1n2
7497
251.21
95.18
12.4n13
7.35n2
1.2n2
0.83n2
319n13
582n3
5369n13
44613n13
5813n3
27790n3
1373n6
6483n6
1428n13
6567n13
1610
7910
67221n3
204.2n5
190.3n2
267n14
202n3
AMD Ryzen 7 5800UCezanne-U (Zen 3)Cezanne (Zen 3, Ryzen 5000)4MB + 16MB251900 ‑ 44008/167x86yes1072Vega 8
~34.268%
6039
26711
2.7
14.78
229n4
1613n5
555n5
3303n5
1427n5
8154n5
9.83
514
4.11
136.5
230.5
80.8
10.3n4
351.85n4
5362.5n4
42603.5n4
5878
28418
1411
7053
1428.5n4
6722.5n4
64961n3
178.6n4
184.25n2
249n3
AMD Ryzen 7 PRO 5850UCezanne-U PRO (Zen 3)Cezanne (Zen 3, Ryzen 5000)4MB + 16MB151900 ‑ 44008/167x86yes1072Vega 8
~30.573%
11656n2
5817
27430
2.67
16.63
227n3
1467n3
548n3
3417n3
1405n3
8716n3
10
529
8.12
258.7
6290
217.6
83.4
11.3n3
4.2
1
0.75
345n3
5231n3
44266n3
5810n2
25894.5n2
1220n2
5477n2
1436n3
6889n3
260n4
AMD Ryzen 7 4800HRenoir-H (Zen 2)Renoir (Ryzen 4000 APU)4MB + 8MB452900 ‑ 42008/167x86yes1438Vega 7
~30.680%
12683n2
5684n2
37276n2
2.18n3
21.1n3
188n15
1854n21
485n17
4339.5n18
1253.5n4
11135.5n4
9.81
564
3.38
90.9
4601
215.6n2
102.7n2
12.8n16
10.3
1.9
1.1
262n15
4686n15
50075n15
4949.5n2
26453n2
1184n2
7108n2
1191n17
7955n17
43309n2
136.8
129
218.5n12
Intel Core i7-10875HComet Lake-HComet Lake2MB + 16MB452300 ‑ 51008/1614x86yes1352UHD Graphics 630
~34.370%
12944.5n2
7803
44805
2.4
18.69
202n37
1594.5n38
483.5n32
3391.5n32
1241.5n6
8889.5n6
7.7
431.7
7473
242.4
103
12.1n27
10.3
1.8
1.1
322.5n30
5319n31
44947n31
5803n5
31346n5
1264n5
7370n5
1300n29
7799n29
147.1
239n26
Intel Core i9-9980HKCoffee Lake-HCoffee Lake2MB + 16MB452400 ‑ 50008/1614x86yes1690UHD Graphics 630
~34.380%
13208n3
7969.5n4
44455n4
2.28n3
17.2n3
201n13
1624n14
478.5n10
3475n10
7.75n2
432.25n2
4.36n2
115.3n2
7351n2
238.1n2
93.8n2
11.4n3
10.2n2
1.7n2
1n2
348.4n3
5389.5n4
41688n4
4871
31724
5969n3
29385n3
1282n4
7403.5n4
1346n2
7568n3
42219.5n8
158.3
107.3n2
233
Intel Core i7-10870HComet Lake-HComet Lake2MB + 16MB452200 ‑ 50008/1614x86yes1191UHD Graphics 630
~37.245%
200n11
1659n14
473.5n12
3632n12
1226n12
9892.5n12
12.45n12
292n12
5295.5n12
44975.5n12
5652n3
30578n3
1276n3
7700n3
1282.5n12
7735.5n12
54493.5n2
156.8n3
132
225n11
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
Intel Core i7-9700KCoffee Lake-RCoffee Lake2MB + 12MB953600 ‑ 49008/814x86yes1894UHD Graphics 630
~34.364%
12928n5
7653n2
42777.5n2
2.37
15.83
205.5n2
1449n2
475
3250
7.74
421.1
4.49
120.5
7396
270
94.8
13
8.1
1.3
0.77
307
4825
27774
5984n2
29225.5n2
1300
7440
41962
Intel Core i5-13420HRaptor Lake-HRaptor Lake-H8MB + 12MB451500 ‑ 46008/1210x86yes345UHD Graphics Xe G4 48EUs
Intel Core i5-12450HXAlder Lake-HXAlder Lake-S8MB + 12MB551800 ‑ 44008/1210x86yes584UHD Graphics Xe 16EUs (Tiger Lake-H)
Intel Core i5-12450HAlder Lake-HAlder Lake-P8MB + 12MB451500 ‑ 44008/1210x86yes710UHD Graphics Xe G4 48EUs
~37.984%
11439n4
8178n3
35790n3
2.88n3
16.05n3
238n4
1266n4
643n4
3253.5n4
1665n4
8320n4
8.41n3
451.44n3
7.23n3
436.01n3
6015n3
272.5n3
75.95n3
9.94n4
8n3
1.3n3
0.79n3
403n5
701n5
5278n5
33549n5
7153n5
28151n5
1575n4
7120.5n4
1639n5
7200n5
2262n5
8123n5
291.61
285n4
238.5n2
Intel Core i5-12400FAlder Lake-SAlder Lake-S7.5MB + 17.9MB652500 ‑ 44006/1210x86yes710UHD Graphics 750
~38.977%
11892
8389
40690
2.95
20.39
244
1759
653
4740
1680
12380
8.3
438.44
4.08
112.85
7816
252.5
101.35
15.2
9.3
1.4
0.88
269
430
5476
45043
7548
35098
1673
9368
1742
9517
272
235
Intel Core i5-11400FRocket LakeRocket Lake3MB + 12MB652600 ‑ 44006/1214x86yes940UHD Graphics 750
~32.573%
13359
6210
44220
2.23
17.65
210
1574
502
3945
1339
10235
7.76
703
4.09
117.2
7147
258
91.5
13.5
8.7
1.4
0.84
290.2
5466
41522
6836
30191
1543
7679
1575
7681
255
Intel Core i5-1350PRaptor Lake-PRaptor Lake-P10MB + 18MB281400 ‑ 470012/1610x86yes710Iris Xe G7 80EUs
Apple M3Apple M34MB2748 ‑ 40568/83ARMyes51M3 10-Core GPU
~64.536%
271
1499
504
2818
1904
10454
474
761
2342
10774
3087.5n2
11914.5n2
96933
304.5
559
423
Intel Core i5-10600KComet LakeComet Lake1.5MB + 12MB1254100 ‑ 48006/1214x86yes1304UHD Graphics 630
~31.170%
7343
40074
2.19
15.76
205
1452
464
3443
1385
10475
7.8
438.7
4.65
113.2
6536
251.5
88.2
12.2
8
1.4
0.82
302.4
5289
40379
5821
28391
1281
7237
1286
7248
239
AMD Ryzen 7 4800HSRenoir-HS (Zen 2)Renoir (Ryzen 4000 APU)4MB + 8MB352900 ‑ 42008/167x86yes1438Vega 7
~30.468%
12785
5705
36313
2.19
19.94
186.5n2
1700.5n2
482
3869
9.72
561
4.11
91.1
4642
216.5
99
12
10.3
1.8
1.1
284
4655
48392
5134n2
29223.5n2
1196
7878
1190.5n2
7611n2
214
Intel Core i9-9880HCoffee Lake-HCoffee Lake2MB + 16MB452300 ‑ 48008/1614x86yes1690UHD Graphics 630
~29.480%
12225.5n2
6967
42456
2.11
18.94
190n11
1508n11
465n7
3235n7
1174n2
8747n3
8.52
476.5
5.39
118.7
6683
217
102.4
11.1n3
7.5
1
0.68
334.5n4
4924n3
42138n3
5457n3
29077n3
1186n3
7100n3
1176n2
7231n2
40443n5
151.8n2
134.1n2
184
Intel Core i7-8086KCoffee Lake-SCoffee Lake1.5MB + 12MB953700 ‑ 50006/1214x86yes2023UHD Graphics 630
~29.873%
11218n2
7216n2
35896n2
2.28n2
15.04n2
206n3
1349n3
495n2
3111n2
1260
8686
8.5n2
466.95n2
4.13n2
119.8n2
6751.5n2
230.55n2
85.45n2
11.3n2
7.85n2
1.4n2
0.79n2
316n3
5416.5n2
36059.5n2
5792n3
24527n3
1276n2
5644n2
1240
5485
217n2
Intel Core i7-8700KCoffee Lake-SCoffee Lake1.5MB + 12MB953700 ‑ 47006/1214x86yes2535UHD Graphics 630
~32.361%
11701n3
7328n4
39096n4
2.2n4
15n4
192n5
1362n5
430
3165
8.02n5
442.8n5
4.16n5
118.9n5
7120n3
232n3
87.2n3
10.8
8n5
1.4n5
0.79n5
332.75n2
5783n3
25045n3
1210
6310
55.75n2
47063.5n2
Intel Xeon W-11855MTiger Lake-HTiger Lake7.5MB + 18MB453200 ‑ 49006/1210x86yes948UHD Graphics Xe 32EUs (Tiger Lake-H)
~39.65%
1573
7191
Intel Core i5-11500HTiger Lake H45Tiger Lake7.5MB + 12MB452900 ‑ 46006/1210x86yes948UHD Graphics Xe 32EUs (Tiger Lake-H)
~38.15%
1507
6987
AMD Ryzen 7 2700XZen+Ryzen 74MB + 16MB1053700 ‑ 43008/1612x86yes2073UHD Graphics 750
~29.264%
10643n15
5256
34763
1.95
18.68
175.7n3
1762n3
430
3944
10.8
578
3.48
96.6
4779
226.7
104.5
10.6
1.6
1
266.8n2
4647
45814
5049.5n2
27789.5n2
1126
7878
1177n2
7021.5n2
Intel Core i5-10400FComet LakeComet Lake1.5MB + 12MB652900 ‑ 43006/1214x86yes1304UHD Graphics 750
~30.457%
6719
36564
2.03
14.39
180
1332
438
3201
8.74
470.4
6.25
134.7
228.5
81.2
11.2
332.4
5064
36731
5587
25403
1217
6349
1220n2
6365n2
215
Intel Core i5-11400HTiger Lake-HTiger Lake7.5MB + 12MB452700 ‑ 45006/1210x86yes948UHD Graphics Xe 16EUs (Tiger Lake-H)
~36.591%
12043n3
8712n2
39095.5n2
2.5n2
14.64n2
218n6
1277n7
561n6
3283n7
1460.5n6
8451n7
7.52n2
487.52n2
6.8n2
231.84n2
5571n2
182.25n2
69.93n2
9.63n6
8.15n2
1.25n2
0.8n2
396n6
662
5116n6
33444n6
6110
24947
1461
5961
1500n7
6006n7
2090
6317
156.15n2
63574.5n2
190.55n2
197n2
250n6
204
AMD Ryzen 7 4980URenoir-U (Zen 2)Renoir (Ryzen 4000 APU)4MB + 8MB152000 ‑ 44008/167x86yes976Vega 8
~33.143%
5715
35106
2.15
18.87
182
1658
492
3453
1260
9164
9.6
758
9.82
342
4320
42368
1133
7156
210
AMD Ryzen 7 5700ULucienne-U (Zen 2)Lucienne (Zen 2, Ryzen 5000)4MB + 8MB251800 ‑ 43008/167x86yes1072Vega 8
~33.886%
11662
5780
31131
2.18
16.77
188n15
1483.5n16
490n17
3370n17
1258n16
8779n16
24.58
1081
3.49
110.9
3763
191.5
72.4
10.1n16
9.2
1.6
1
331.5n16
572.5n2
4568n16
41598n16
5085n3
26487n3
1199n3
6904n3
1186n15
6264n15
158.1
56365.5n2
152.9n7
181.1n2
215.5n12
169.35n2
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
Intel Xeon E-2176GCoffee Lake-ERCoffee Lake1.5MB + 12MB803700 ‑ 47006/1214x86yes1931UHD Graphics P630
~29.959%
11719
7369
39053
2.2
14.58
200
1324
8.31
467.9
4.52
132.1
6277
233.2
83.3
9.92
8
1.3
0.79
352
5157
37522
5297
21008
1225
6271
36458
Intel Core i7-9700Coffee Lake-RCoffee Lake2MB + 12MB653000 ‑ 47008/814x86yes1697UHD Graphics 630
~30.166%
7473
37381
2.25
14.44
199
1254
474
2892
8.31
460.7
4.79
155.8
6945
247.5
77.6
10.5
7.6
1.3
0.78
388.7
5186
33539
5777
27040
1300
7060
1312
7060
232
Intel Core i9-8950HKCoffee Lake-HCoffee Lake1.5MB + 12MB452900 ‑ 48006/1214x86yes2113UHD Graphics 630
~33.870%
11055n7
7149n5
36591n5
2.24n7
13.22n7
195n14
1223.5n14
442.5n2
2651.5n2
8.41n2
466.45n2
8.08
245.4
6420.5n2
224.9n2
77.9n2
8.84
7.2n2
1.2n2
0.74n2
410.8
5080
4567n3
23881n3
5665.5n4
24399.5n4
1097
5205
173.85n2
40726n6
115
Intel Xeon E-2186MCoffee Lake-HCoffee Lake1.5MB + 12MB452900 ‑ 48006/1214x86yes2115UHD Graphics 630
~237%
1098
1248
5239
Intel Xeon E-2276MCoffee Lake-HCoffee Lake1.5MB + 12MB452800 ‑ 47006/1214x86yes1689UHD Graphics P630
~40.134%
195n2
1242.5n2
484
2782.5n2
9.68
384
5214
33994
5218
24150
1303
6595
56114
164.1
220
Intel Xeon W-2145Skylake-WXeon8MB + 11MB1403700 ‑ 45008/1614x86yes2299UHD Graphics 750
~45.118%
177
1682n2
4996
34132
1192
9146
90.9
46837
Intel Core i7-10850HComet Lake-HComet Lake1.5MB + 12MB452700 ‑ 51006/1214x86yes1352UHD Graphics 630
~3048%
9471
7653
34586
2.25
12.22
203
1232
494
2636
7.7
431.6
5519
8.37
7.8
1.3
0.81
425
5241
30988
1305
5753
Intel Xeon W-10855MComet Lake-HComet Lake1.5MB + 12MB452800 ‑ 51006/1214x86yes1311UHD Graphics P630
~32.95%
1296
6231
Intel Core i7-10750HComet Lake-HComet Lake1.5MB + 12MB452600 ‑ 50006/1214x86yes1352UHD Graphics 630
~29.780%
11307n3
7376.5n2
37154n2
2.2n2
13.92n2
197n45
1303.5n50
472n43
2941n43
1217n16
7463.5n16
8.3
466.6
5.56
142.7
6287n2
221.2n2
78.3n2
9.89n43
7.6n2
1.3n2
0.77n2
371n43
5120n43
35346n43
5600.5n8
24897n8
1253n8
6338.5n8
1270n43
6308n43
53724.5n6
152.65n8
136.9n3
225n39
AMD Ryzen 7 4800URenoir-U (Zen 2)Renoir (Ryzen 4000 APU)4MB + 8MB151800 ‑ 42008/167x86yes1438Vega 8
~28.977%
10227
5690
33649
2.15
17.84
183n3
1411n3
480n4
3230.5n4
1235n3
8376n3
9.73
585
3.63
99.5
3881
196.1
88.5
10.4n3
10.2
1.5
1.1
340n3
4436n3
40117n3
4963n2
27286.5n2
1162
7298
1156.5n4
6136.5n4
36619
133.45n2
208n3
Intel Core i7-8700Coffee Lake-SCoffee Lake1.5MB + 12MB653200 ‑ 46006/1214x86yes2535UHD Graphics 630
~33.859%
11193n3
7171n3
35384n3
2.17n2
12.97n2
192n3
1199n3
8.36n3
472.2n3
6.77n2
198.4n2
6332n3
234.6n3
75.2n3
9.53
7.7n3
1.3n3
0.8n3
388.2
4486n2
23061.5n2
5565
23220
1170
6250
64.5
Intel Core i5-10500HComet Lake-HComet Lake + 12MB452500 ‑ 45006/1214x86yes1352UHD Graphics 630
~27.973%
11157
7109
37125
2.1
13.84
186.25n2
1249n2
448n2
2919n2
1159.5n2
7103.5n2
8.59
485.6
9.13
281
6194
227.5
77.8
9.52n2
4.1
0.94
0.58
385.5n2
4885.5n2
33445n2
5501
25696
1200
6233
1205.5n4
6332n4
223.5n2
Intel Core i5-9600KCoffee Lake-RCoffee Lake1.5MB + 9MB953700 ‑ 46006/614x86yes1894UHD Graphics 630
~2752%
10974
7205
33950
2.24
10.98
193
1094
7.74
421.1
6.03
176.2
5903
250
68.8
8.02
5.6
0.63
0.43
444.4
5916
23810
1217
5855
AMD Ryzen 5 5600HSCezanne-HS (Zen 3)Cezanne (Zen 3, Ryzen 5000)3MB + 16MB353000 ‑ 42006/127x86yes1072Vega 7
AMD Ryzen 5 4600HRenoir-H (Zen 2)Renoir (Ryzen 4000 APU)3MB + 8MB453000 ‑ 40006/127x86yes1438Vega 6
~32.775%
5365
32756
2.04
16.25
176n9
1425n10
449.5n8
3229.5n8
1142.5n4
8072n4
10.5
607
4380
197
82.9
9.8n5
5
1.4
0.81
352n6
631
4397n6
37642.5n6
4964
25247
1117n7
6080n7
1525
6631
47137.5n2
134.35n2
127.75n2
207n4
Intel Core i7-9850HCoffee Lake-HCoffee Lake1.5MB + 12MB452600 ‑ 46006/1214x86yes1690UHD Graphics 630
~26.870%
10056n2
7169
31938
2.13
12.47
193n3
1230n3
439.5n2
2114n2
8.15
467.6
8.3
278
5621
201.3
68.3
9n3
7.4
1.2
0.76
415n3
5086n3
31087n3
5594n3
23715n3
1169n2
5619.5n2
1150
5270
39091n3
71.6
Intel Core i7-9750HCoffee Lake-HCoffee Lake + 12MB452600 ‑ 45006/1214x86yes1690UHD Graphics 630
~31.380%
10791.5n10
6970n13
34445n13
2.12n10
13.11n10
185.5n82
1188n85
442n55
2599n55
8.35n4
467.3n4
4.93
154.4
6395.5n2
214.8n2
70.25n2
8.83n21
7.35n2
1.25n2
0.73n2
435.2n21
4865n21
33303n21
4252.5n8
22711.5n8
5266n27
22951n27
1171n15
5635n15
1204n13
5813n13
84.05n4
36178n47
59.8n3
208.5n10
Intel Core i9-9900TCoffee Lake-RCoffee Lake2MB + 16MB352100 ‑ 44008/1614x86yes1894UHD Graphics 630
~26.268%
10259
6758
31357
2.09
12.38
185
1112
440
2626
8.77
481
5.88
162.1
6109
173.4
70.3
5.5
4.6
0.83
0.54
422
4894
35084
5381
23223
1193
5875
1206
5888
197
AMD Ryzen 7 2700Zen+Ryzen 74MB + 16MB653200 ‑ 41008/1612x86yes2073UHD Graphics 750
~26.252%
9475
4505
31385
1.78
16.71
161
1551
11.08
597
5.14
130.5
4440
195.7
89.7
9.51
9
1.4
0.9
308.3
4681
22776
1000
6560
AMD Ryzen 7 1800XZenRyzen 74MB + 16MB953600 ‑ 40008/1614x86yes2479UHD Graphics 750
~30.886%
9585n3
5062
32833
1.79
18
160.8n4
1618n4
398.5n2
3610.5n2
939
8891
12.7
613
4.6n2
103.5n2
3967n2
179n2
84n2
9.76n2
9.7n2
1.5n2
0.95
294.75n2
4062n2
40776n2
20615
4014
30389
4488.5n2
26147n2
1006.5n2
7036n2
1023n3
6545n3
107.7
31263
53.1
186.5n2
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
AMD Ryzen 7 1700XZenRyzen 74MB + 16MB953400 ‑ 38008/1614x86yes2479UHD Graphics 750
~26.864%
9076n2
4662
31950
1.73n2
16.95n2
154n3
1537n3
335
3280
10.83
576
4.89n2
109.4n2
3728n2
180n2
90.05n2
8.88
8.95n2
1.4n2
0.9n2
327.1
3746
39624
19631n2
4277
24555
932
6275
Intel Core i5-11260HTiger Lake-HTiger Lake7.5MB + 12MB452600 ‑ 44006/1210x86yes948UHD Graphics Xe 16EUs (Tiger Lake-H)
~22.39%
3831
8990
1428
6358
Apple M2Apple M220MB + 8MB202424 ‑ 34808/85ARMyes553M2 10-Core GPU
~5539%
223n5
1215n5
381n5
2324n5
1585n5
8667n5
597n5
619.5n4
1917n7
8961n7
2621.5n2
10063.5n2
74614n7
226.8n7
392n7
377n7
226.5n6
AMD Ryzen 5 4600HSRenoir-HS (Zen 2)Renoir (Ryzen 4000 APU)3MB + 8MB353000 ‑ 40006/127x86yes1438Vega 6
~31.89%
4630
20170
1100
6345
Intel Xeon E-2176MCoffee Lake-HCoffee Lake1.5MB + 12MB452700 ‑ 44006/1214x86yes2115UHD Graphics 630
~29.252%
9757n3
6973n3
32132n3
2.04n3
12.29n3
187n3
1095n3
8.6n2
477n2
5.34n2
163.3n2
4624.5n2
203.55n2
63.05n2
8.72
6.85n2
1.1n2
0.68n2
509.9n2
4660n2
20689.5n2
76.2
36101.5n2
Intel Core i7-11390HTiger Lake-H35Tiger Lake5MB + 12MB353400 ‑ 50004/810x86yes835Iris Xe G7 96EUs
~35.984%
10150.5n2
9604
29456
2.78
10.68
232n3
953n3
614n3
2284n3
1602n3
5917n3
6.77n2
349.8n2
6.52
196.91
6374.5n2
232.3n2
58.55n2
7.61n3
6.05n2
0.91n2
0.56n2
513n3
1101n2
5682n3
25876n3
7125.5n2
22986n2
1655
5025
1615.5n4
5235.5n4
2194n2
5630n2
117.6
266.5n2
204
Intel Core i7-11375HTiger Lake-H35Tiger Lake5MB + 12MB353300 ‑ 50004/810x86yes1068Iris Xe G7 96EUs
~39.439%
230
929
606
2569
1578
6663
8.54
473
5565
28441
6891
22937
1631
5975
1648
6098
249
AMD Ryzen 7 PRO 4750URenoir-U PRO (Zen 2)Renoir (Ryzen 4000 APU)4MB + 8MB151700 ‑ 41008/167x86yes1317Vega 7
~28.680%
11008
8378.5n2
29573.5n2
2.12n2
15.78n2
181n5
1410n5
469n5
3203n5
1215n3
8359n3
10.04n2
673n2
3.95
108.9
4227n2
201.9
79.9
9.54n5
7.05n2
1.25n2
0.86n2
352n5
4438n5
39649n5
4995
25564
1167
6811
1149n5
6153n5
49781n4
139.8n4
133.5n2
205n5
Apple M1Apple M-Series16MB + 8MB2064 ‑ 32208/85ARMyes1130M1 8-Core GPU
~49.945%
208n3
1072n4
402.5n4
2093.5n4
1514.5n6
7800.5n6
561n2
964
5441
34614
1730n9
7578n9
2363
8622
76.4n3
62589.5n8
178.55n8
214n8
280.5n8
189
Intel Core i7-1195G7Tiger Lake-UP3Tiger Lake5MB + 12MB282900 ‑ 50004/810x86yes929Iris Xe G7 96EUs
~35.180%
9989
2.7
10.59
222n8
940n9
559n9
1932n9
1455n9
5337n9
6.75
354.2
8.17
281.4
6334
6.64n9
6.4
0.99
0.63
597.5n10
1105n2
5386n9
24669n9
6894n2
20629.5n2
1605.5n2
5066n2
1536n7
4734n7
2064n2
7644n2
118.3
69945
194.5n3
213
261n9
Intel Core i7-11370HTiger Lake-H35Tiger Lake5MB + 12MB353300 ‑ 48004/810x86yes1068Iris Xe G7 96EUs
~41.348%
10019
229n15
960n17
589n11
2199n11
1507n11
5712.5n12
7.7n11
491n11
783
5307n11
26791n11
1380
4911
1556.5n10
5388n10
68903n3
193.5n3
199n3
263n11
205
Intel Core i5-1250PAlder Lake-PAlder Lake-P10MB + 12MB281200 ‑ 440012/1610x86yes710Iris Xe G7 80EUs
~31.773%
11842
7918
38277
2.74
9.71
201
1528
536
2334
1521
7282
8.43
461.49
9.58
339.99
5561
201.07
79.64
6.77
9.5
1.9
1
511
3532
24625
7072
35532
1583
8778
1622
7672
254
Intel Core i5-1340PRaptor Lake-PRaptor Lake-P9MB + 12MB281400 ‑ 460012/1610x86yes710Iris Xe G7 80EUs
~39.975%
11552
1.86
19.9
240.5n2
1756n2
655n2
4114n3
1710n2
10920.5n2
13.15
731.21
3503
228.93
95.23
12.4n2
9.3
1.6
0.88
299.5n2
570n2
5317n2
44767n3
4246n4
29296n4
967n2
7117n2
1721.5n2
10020.5n2
85504
258.95
298
241.5n2
215.25n2
Intel Core i5-1240PAlder Lake-PAlder Lake-P10MB + 12MB281200 ‑ 440012/1610x86yes710Iris Xe G7 80EUs
~4080%
8205
42275
2.85
22.09
225n16
1592n17
597.5n14
3173.5n14
1600n15
8337n17
8.3
438.9
10.1
329.9
17276
9.3n14
6.6
1.5
0.81
413.5n14
839.5n10
4738n14
33826n14
7106n3
34828n3
1543n2
8275.5n2
1588n13
7848n13
106n2
77844.5n6
236.09n5
245n4
261n13
228n8
Intel Core i5-1345URaptor Lake-URaptor Lake-U9.5MB + 12MB151200 ‑ 470010/1210x86yes710Iris Xe G7 80EUs
~46.745%
240n3
1311n3
660n3
2951n3
1724n3
7724n3
8.78n3
415n3
813n3
5296n3
34915n3
7318n2
30701.5n2
1656n3
7692n3
1653n3
7738n3
256.37n2
277.5n2
242.5n2
Intel Core i7-1255UAlder Lake-UAlder Lake-M9.5MB + 12MB151200 ‑ 470010/1210x86yes710Iris Xe G7 96EUs
~49.548%
238.5n10
1400n9
638n9
3131n9
1656n9
8332n9
9.72n9
383n9
723n8
5256n9
36825n9
1610.5n4
7294.5n4
1650.5n10
7989.5n10
97.3
82948n5
242.27n7
264n5
275n10
232n9
AMD Ryzen 5 PRO 6650URembrandt-U PRO (Zen 3+)Rembrandt (Zen 3+)3MB + 16MB282900 ‑ 45006/126x86yes604Radeon 660M
~34.884%
11322
6062
32262
2.79
16.19
232.5n4
1459.5n4
570n4
3427.5n4
1463n4
8854n4
7.94
712.15
7.74
243.3
5343
224.34
86.33
9.84n4
5.5
0.96
0.61
397n5
712.5n4
5228.5n4
37856.5n4
5910
28857
1417
7218
1452.5n4
6488.5n4
72306
230.7
226
233.5n4
185.35n4
AMD Ryzen 5 7535URembrandt RRembrandt (Zen 3+)3MB + 16MB282900 ‑ 45506/126x86yes344Radeon 660M
AMD Ryzen 5 6600URembrandt-U (Zen 3+)Rembrandt (Zen 3+)3MB + 16MB282900 ‑ 45006/126x86yes710Radeon 660M
~35.882%
9908n2
6242
32097
2.73
17.15
233n2
1493n2
570n2
3623n2
1456.5n2
9159.5n2
8.12
692.42
4.69
146.55
6937
212
71.45
11.7
9.3
1.3
0.86
415
488.5n2
5486
44320
6382.5n2
33338n2
1481n2
8602.5n2
1483n3
7529n3
1977
8310
274
217
Intel Core i3-1220PAlder Lake-PAlder Lake-P9.5MB + 12MB281100 ‑ 440010/1210x86yes710UHD Graphics 64EUs
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
Intel Core i5-1245UAlder Lake-UAlder Lake-M9.5MB + 12MB151200 ‑ 440010/1210x86yes710Iris Xe G7 80EUs
~37.277%
12162
8303
37663
2.92
16.2
242
1311
649
3153
1690
8199
8.39
442.77
5.44
229.1
6154
263
78.35
9.47
9.2
1.5
0.87
388
712
5097
35918
7065
33040
1585
8911
1675
9065
271
240
Intel Core i5-1335URaptor Lake-URaptor Lake-U9.5MB + 12MB15900 ‑ 460010/1210x86yes710Iris Xe G7 80EUs
~41.491%
12286
9351
40266
2.97
18.94
236n9
1472n9
643n9
3319n9
1684n9
7783n9
7.37
423.06
8.03
507.82
5178
256.95
81.84
9.2n9
9.5
1.7
0.87
414n9
804n9
5149n9
34186n9
7007
30532
1641.5n2
8225n2
1672n9
7865n9
2312n5
8649n6
64.5
83996n3
259.02n6
306n3
260n8
232n6
Intel Core i5-1334URaptor Lake-URaptor Lake-U9.5MB + 12MB15900 ‑ 460010/1210x86yes710Iris Xe G7 80EUs
Intel Core i7-1185G7Tiger Lake-UP3Tiger Lake5MB + 12MB283000 ‑ 48004/810x86yes1199Iris Xe G7 96EUs
~3284%
9108
8872n2
27024.5n2
2.54n2
9.33n2
217n27
866n32
558.5n28
2090n28
1455.5n24
5383.5n24
7.12
380.38
5.78n4
240.41
6045
198.8
46.6
6.64n27
5.8
0.81
0.5
578.5n28
1102.5n2
5153n27
23471n27
6437n7
22175n7
1531.5n8
5578.5n8
1529n21
5550n21
61608n4
172.8n15
166.5n4
253n27
189.9n2
Intel Core i7-8850HCoffee Lake-HCoffee Lake1.5MB + 9MB452600 ‑ 43006/1214x86yes2113UHD Graphics 630
~30.475%
10516n3
6766n4
34216.5n4
2.04n4
13.85n5
181.5n10
1090n15
441n3
2522n3
1096
5742
8.7
483
5922
216.1n2
71.35n2
7.61n3
7.4
1.2
0.73
490.1n3
4689n3
30851n3
5261n4
22631.5n4
1006
4860
1121
4908
76.1
35232n6
108.1n2
194
Intel Core i5-8600KCoffee Lake-SCoffee Lake1.5MB + 9MB953600 ‑ 43006/614x86yes2535UHD Graphics 630
~28.145%
9078
6875
32863
2.07
10.76
181n2
989.5n2
8.76n2
496.45n2
5.69
188.8
4583
232.65n2
63.35n2
5.4
0.89
0.53
4217
18970
68.1
Intel Core i5-8500Coffee Lake-SCoffee Lake1.5MB + 9MB653000 ‑ 41006/614x86yes2083UHD Graphics 630
~25.945%
9903
8606
40829
1.96
10.21
172
950
9.22
541
26.52
848
4219
206.5
7.86
5
0.87
0.52
494.8
4513
23200
Intel Core i7-8750HCoffee Lake-HCoffee Lake1.5MB + 9MB452200 ‑ 41006/1214x86yes2113UHD Graphics 630
~3175%
10294.5n22
6471n25
33595n25
1.98n40
12.33n41
173n86
1116n93
412.5n6
2336.5n6
9.33n8
524n7
5.48n6
156.8n6
5310
200.3n2
67.2n2
7.8n5
7
1.2
0.72
469.25n6
4629n5
31144n5
4008n13
21920n13
5040n17
21648n17
1050
4820
83n6
34163n47
64.5
213
AMD Ryzen 7 4700URenoir-U (Zen 2)Renoir (Ryzen 4000 APU)4MB + 8MB152000 ‑ 41008/87x86yes1438Vega 7
~31.791%
8629n2
5524n2
24770.5n2
2.1
12.56
180n11
1094.5n12
466n9
2647n9
1220.5n2
7378n3
10.01
599
7.89
265.7
3963n2
191.3
57.4
8.43n8
5.25n2
1.01n2
0.64n2
477.5n8
858
4361.5n8
30954n8
16771
4351
20656
4841n3
21001n3
1128n3
5018n3
1131n8
5656n8
90.4
43380.5n4
147n2
134.3n3
203n8
AMD Ryzen 5 7530UBarcelo-U RefreshCezanne (Zen 3, Ryzen 5000)3MB + 16MB152000 ‑ 45006/127x86yes344Vega 7
~44.250%
230.5n8
1457.5n8
565n8
3288n8
1443n8
8418.5n8
10.7n7
362n7
674n7
5339n7
37983n7
1376.5n2
6396.5n2
1479n7
6390n7
1941n2
6500n2
72262
229.15n3
252
264n6
209n6
AMD Ryzen 5 PRO 7530UBarcelo-U RefreshCezanne (Zen 3, Ryzen 5000)3MB + 16MB152000 ‑ 45006/127x86yes344Vega 7
~40.15%
1904
5548
Intel Core i7-1165G7Tiger Lake-UP3Tiger Lake5MB + 12MB282800 ‑ 47004/810x86yes1200Iris Xe G7 96EUs
~33.686%
7454n5
8645n4
22636n4
2.49n5
7.94n5
218n77
850n85
564n80
1996.5n80
1457.5n58
5216n63
7.21n4
395.21n4
8.36n2
288.14n2
5717n3
197.95n2
46.3n2
6.45n79
5.7n3
0.82n3
0.46n3
587n79
1150
5217n79
23460n79
6560.5n24
21250.5n24
1533n24
5200n24
1532.5n76
5174.5n76
135.1n2
64672n20
173.7n29
178.45n8
253n72
199.4
Apple A17 ProColl APL1V02Apple A-Series2110 ‑ 37806/63ARMyes99A17 Pro GPU
~55.620%
2138
5305
2915n2
7222n2
13067
87691n2
302.57n2
420.5n2
302.5n2
Intel Core i5-1155G7Tiger Lake-UP3Tiger Lake5MB + 8MB282500 ‑ 45004/810x86yes929Iris Xe G7 80EUs
~43.343%
211n3
890n3
550n3
2173n3
1419n3
5612n3
7.49n3
540n3
1011n2
4941n3
24992n3
6305.5n2
22182n2
1473n3
5761n3
205.85n2
233
244n3
190.05n2
Intel Core i7-10810UComet Lake-UComet Lake1MB + 12MB151100 ‑ 49006/1214x86yes1311UHD Graphics 620
~26.982%
6842.5n2
6926.5n2
19286.5n2
1.95
6.98
182n5
754n4
424n5
1713n5
1118.5n2
4310.5n2
7.98n2
510.87n2
5.9n2
236.33n2
4837n2
147.65n2
39.43n2
5.2n5
5.7n2
0.98n2
0.6n2
694n5
1346
4498n5
21925n5
5203n3
22485n3
1233n3
5168n3
1226n5
3934n5
1563
4090
206n5
161.3
Intel Core i7-10710UComet Lake-UComet Lake1MB + 12MB151100 ‑ 47006/1214x86yes1566UHD Graphics 620
~26.177%
10451
6972n2
31643.5n2
2.18n3
11.81n3
176n8
1059n8
460n4
2303n5
863
4079
8.19n3
507n3
5.24n2
174.25n2
4656.5n2
204n3
60.5n3
5.81n4
6.4n3
1.2n3
0.71n3
618n4
4642n4
24493n4
4615n2
17420n2
1043n2
4258n2
1227n2
5207n2
37343.5n2
150.3
219
AMD Ryzen 7 1700ZenRyzen 74MB + 16MB653000 ‑ 37008/1614x86yes2479UHD Graphics 750
~27.855%
8335n2
4419n3
29330n3
1.66n3
15.7n3
147n3
1414n4
11.75n2
635.5n2
6
120
3447n2
153.85n2
74.4n2
7.2n2
1.3n2
0.83n2
18461
3343
23920
3884
18457
84.6
32176
AMD Ryzen 5 2600XZen+Ryzen 54MB + 16MB953600 ‑ 42006/1212x86yes2073UHD Graphics 750
~26.166%
4958
29954
1.81
14.56
163
1341
421
2688
11.35
616
4.62
133.8
4599
207.4
80.5
8.3
8
1.2
0.78
351.95n2
4293
33222
4641.5n2
22301n2
1067
5939
1144.5n2
6094n2
186
Intel Core i5-8400Coffee Lake-SCoffee Lake1.5MB + 9MB652800 ‑ 40006/614x86yes2535UHD Graphics 630
~25.145%
9474
6363.5n2
30789.5n2
1.9
10.99
169.5n2
941n3
9.5
526
6.2
191.8
5173
223.8
61.4
5
0.83
0.5
488
5104
20500
Intel Core i5-1235UAlder Lake-UAlder Lake-M9.5MB + 12MB15900 ‑ 440010/1210x86yes710Iris Xe G7 80EUs
~47.752%
214n7
1086n7
620n7
2797n7
1610n7
5902n7
9.18n7
448n7
859n6
5083n7
31892n7
1592n5
7643n5
1572n9
6220n9
2208
7046
99.6
80117n4
232.37n6
265n4
261n10
231n9
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
AMD Ryzen 5 5625UBarcelo-U (Zen 3)Cezanne (Zen 3, Ryzen 5000)3MB + 16MB152300 ‑ 43006/127x86yes710Vega 7
~35.986%
11440n3
5806
29724
2.64
15.89
223n7
1447n7
544n7
3224n7
1379n7
8290n7
9.84n2
519.24n2
6.46n2
206.52n2
6340.5n2
229.1
82.1
10.3n7
6.15n2
1n2
0.65n2
365n7
653n5
5246n7
37708n7
5812
24531
1384
6032
1417n7
5947n7
105.8
69094.5n2
220.57n2
215.55n2
260n5
203n6
AMD Ryzen 5 5625CBarcelo (Zen 3)Cezanne (Zen 3, Ryzen 5000)3MB + 16MB252300 ‑ 43006/127x86yes589Vega 7
AMD Ryzen 5 5600UCezanne-U (Zen 3)Cezanne (Zen 3, Ryzen 5000)3MB + 16MB252300 ‑ 42006/127x86yes1072Vega 7
~33.384%
11308n3
2866.25n2
28347n2
2.63n3
14.78n3
223n6
1321n6
534n7
3067n7
1371n5
7792.5n6
8.66n3
454.57n3
5.38n3
156.33n3
6858n3
235n2
78.48n2
9.84n6
7.7n3
1.1n3
0.78n3
412.5n6
798n2
5204.5n6
37815.5n6
5854n3
24495n3
1371n3
6117n3
1391n5
5773n5
65343n3
197.3n3
185.9
255.5n6
200n3
AMD Ryzen 5 PRO 5675UBarcelo-U PRO (Zen 3)Cezanne (Zen 3, Ryzen 5000)3MB + 16MB152300 ‑ 43006/127x86yes1072Vega 7
~44.152%
215.5n2
1326n2
537n2
2991.5n2
1387.5n2
7866.5n2
9.45n2
390.5n2
716n2
5093.5n2
35208.5n2
5814n3
23357n3
1341n2
5207n2
1363.5n2
5227n2
109.2
66431.5n2
210.98n2
212.5n2
241n2
192.55n2
AMD Ryzen 5 PRO 5650UCezanne-U PRO (Zen 3)Cezanne (Zen 3, Ryzen 5000)3MB + 16MB152300 ‑ 42006/127x86yes1072Vega 7
~28.675%
11124
2.24
12.47
2.6
14.19
218n3
1207n3
531n3
2488n3
1363n3
6429n3
8.61
475.8
8.21
270.4
5905
216.1
70.6
8.39n3
7.9
1.1
0.76
443.1n3
5031n3
35235n3
5726
24383
1341
5874
1353n3
5736n3
65444
246n6
AMD Ryzen 5 5560UCezanne-U (Zen 3)Cezanne (Zen 3, Ryzen 5000)3MB + 16MB252300 ‑ 40006/127x86yes1072Vega 6
~43.541%
202
1280
498
3019
1260
7667
10
392
677
4740
38281
1318
5955
1765
6723
239.48
250
192.4
Intel Core i7-1260UAlder Lake-UAlder Lake-M9.5MB + 12MB9800 ‑ 470010/1210x86yes710Iris Xe G7 96EUs
~42.341%
222
1117
588
2838
1538
7444
8.54
431
801
4746
32008
1555
7077
1560
7072
224.23
236
213
Intel Core i7-1250UAlder Lake-UAlder Lake-M9.5MB + 12MB9800 ‑ 470010/1210x86yes710Iris Xe G7 96EUs
~45.145%
226n2
1222n3
611.5n2
2874n2
1567.5n2
7402n2
8.55n2
454.5n2
840n2
4780n2
31380n2
1547
7072
1627n2
7019.5n2
81256
226.25n2
255
268.5n2
230n2
AMD Ryzen 5 4680URenoir-U (Zen 2)Renoir (Ryzen 4000 APU)3MB + 8MB152200 ‑ 40006/127x86yes976Vega 7
~27.264%
5301
31826
2
15.63
170
1291
451
2478
1163
7073
10.5
581
8.2
248.6
3576
7.66
8.3
1.4
1.2
458
4077
32745
1078
5785
47184
133.8
123.5
198
AMD Ryzen 5 2600Pinnacle Riege (Zen+)Ryzen 53MB + 16MB653400 ‑ 39006/1212yes2072UHD Graphics 750
~25.268%
9290
4726
28173
1.76
13.71
157.3n3
1248n3
380
2793
11.17
615
5.5
140.9
4517
205.3
75
7.81n2
7.5
1
0.73
374.95n2
4020
30898
5109n2
23018n2
1020
5885
1118.5n2
6069.5n2
179
Intel Core i5-11400TRocket LakeRocket Lake3MB + 12MB351300 ‑ 37006/1214x86yes1004UHD Graphics 730
~22.273%
7263
6122
20362
1.79
7.3
153
642
378
1500
972
3891
10.09
543.45
7.8
261.3
4409
154.5
40
5.24
4.2
0.65
0.41
704
4157
19699
4855
17082
1130
3495
1146
3510
208
AMD Ryzen 5 5500ULucienne-U (Zen 2)Lucienne (Zen 2, Ryzen 5000)3MB + 8MB252100 ‑ 40006/127x86yes1072Vega 7
~28.184%
9184.5n2
5313
27437
1.99
11.41
177n16
1247n18
457n18
2698n19
1172n17
7186n18
10.46
574
6.22
181.3
3945
162.3
45.31
8.48n18
4.3
0.82
0.54
416.5n18
748.5n4
4324n18
33768n17
4798n5
21901n5
1119.5n8
5515n8
1108n18
5438.5n18
50330n5
149.45n4
153.9n3
206n11
156.3
AMD Ryzen 5 4600URenoir-U (Zen 2)Renoir (Ryzen 4000 APU)3MB + 8MB152100 ‑ 40006/127x86yes1438Vega 6
~36.125%
175.5n2
1089n2
447n3
2544n3
8.8
402
4247
34854
1105
5591
199
AMD Ryzen 5 PRO 4650URenoir-U PRO (Zen 2)Renoir (Ryzen 4000 APU)3MB + 8MB152100 ‑ 40006/127x86yes1317Vega 6
~30.166%
10182
5289
27559
2.02
12.94
175n4
1161n4
453.5n4
2599n4
7.2
366
3795
7.9n4
5.4
1.2
0.81
428.5n4
4223n4
31980n4
4010
22199
4475
19220
1071n4
4648.5n4
44814.5n2
124.3n2
124.9
186n3
Intel Core i5-11320HTiger Lake-H35Tiger Lake5MB + 8MB353200 ‑ 45004/810x86yes835Iris Xe G7 96EUs
~32.977%
10886
8767
32576
2.51
10.78
214n4
905.5n4
560.5n4
2267.5n4
1460.5n4
5852n4
7.51
389.7
5.9
191.4
5481
7.57n4
6.1
0.92
0.53
528.5n4
995n3
5025n4
24760n4
6238
22045
1493.5n4
5259n4
1505n4
5308n4
67714
204.59n3
260.5n4
206n3
Qualcomm Snapdragon 8 Gen 3Cortex-X4 / A720 / A720 / A520 (Kryo)Snapdragon + 8MB2300 ‑ 33008/84ARM v9yes57Adreno 750
~46.720%
1687
6439
2303.5n2
7188n2
54365
202n2
226n2
254n2
181
Intel Core i5-11300HTiger Lake-H35Tiger Lake5MB + 8MB353100 ‑ 44004/810x86yes1068Iris Xe G7 80EUs
~34.273%
10250
8663
30491
2.48
10.97
187n8
961n11
529n11
2247.5n10
1378n11
5702n10
7.98
404.7
4926
215.6
58.9
7.32n10
5.3
0.78
0.45
530n10
4930.5n10
24688.5n10
6019
18976
1415n10
4749n10
163.2
62911n3
183.8n3
188n2
238n11
Intel Core i5-1240UAlder Lake-UAlder Lake-M9.5MB + 12MB9800 ‑ 440010/1210x86yes710Iris Xe G7 80EUs
~43.241%
226
1242
596
2990
1559
7902
9.13
407
744
4446
31097
1547
7029
1596
7066
235.82
266
221
Intel Core i5-1230UAlder Lake-UAlder Lake-M9.5MB + 12MB9700 ‑ 440010/1210x86yes710Iris Xe G7 80EUs
~31.768%
6641
7290
17243
186.8n3
514n3
469n3
1653n3
1310n3
4402n3
7
365
14
576
4985
152.65
41.8
5.96n2
754n2
1458.5n2
3969n3
20092n3
5120
21447
1471.5n2
5505.5n2
1529n3
6755n3
193.59n2
233.5n2
204.2n2
Intel Core i3-1315URaptor Lake-URaptor Lake-U5MB + 10MB15900 ‑ 45006/810x86yes346UHD Graphics 64EUs
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
Intel Core i3-1215UAlder Lake-UAlder Lake-M5MB + 10MB15900 ‑ 44006/810x86yes710UHD Graphics 64EUs
~36.386%
7879
19430
2.79
10.99
217.5n2
809n2
581.5n2
1966n2
1511.5n2
5181.5n2
7.27
372.38
3.41
98.31
7944
199.3
50.05
5.32n2
11.6
1.7
1.1
664.5n2
1249.5n2
5031.5n2
22883n2
6801
23138
1501
6005
1539n2
5258.5n2
2082
5213
78716
254.6
281
312n2
237.5n2
Intel Core i5-10400HComet Lake-HComet Lake1MB + 8MB452600 ‑ 46004/814x86yes1352UHD Graphics 630
~25.657%
9578
7403
25731
2.18
9.62
192
796
471
1924
8.14
484.5
24.93
801
4115
191.4
49.05
6.14
5.3
0.95
0.55
565
4766
23136
1245
4332
Intel Core i3-10320Comet Lake-SComet Lake1MB + 7.9MB653800 ‑ 46004/814x86yes1304UHD Graphics 630
~3264%
9911
7164
28383
2.1
10.5
188
949
458
2320
1185
5986
9.73
516
218
58.8
8.16
5.3
0.91
0.53
469
4899
25864
1217
4846
160
149.4
168
224
Intel Core i5-1145G7Tiger Lake-UP3Tiger Lake5MB + 8MB282600 ‑ 44004/810x86yes1200Iris Xe G7 80EUs
~29.777%
8922.5n2
8274.5n2
25545n2
2.31n2
9.27n2
202.5n2
791.5n2
531n2
1841.5n2
1374.5n2
4880n2
7.51n2
389.85n2
8.35n2
281.14n2
4706.5n2
192
46.3
6.03n2
5.6n2
0.76n2
0.45n2
641n2
1116
4802n2
21844n2
6226
20787
1423
5351
1428.5n2
5261n2
238.5n2
177.4
Intel Core i5-1135G7Tiger Lake-UP3Tiger Lake5MB + 8MB282400 ‑ 42004/810x86yes1200Iris Xe G7 80EUs
~31.786%
8274n2
8116n3
25271n3
2.33n3
9.29n3
198n61
822n65
515n62
1859n62
1345n53
4894n55
8.08n3
412.7n3
6.66n2
259.07n2
5283n3
182.53n2
41.4n2
5.97n57
5.2n3
0.76n3
0.45n3
649.5n60
1254n5
4723.5n62
21892.5n62
5911n13
18889n13
1379n14
4761.5n14
1384n58
4688n58
143.3n3
58147n21
168.8n22
182.3n13
226.5n52
180.4n6
AMD Ryzen 3 7440UPhoenix-U (Zen 4 + Zen 4c)Phoenix (Zen 4, Ryzen 7040)4MB + 8MB283000 ‑ 47004/84x86yes206Radeon 740M
Intel Core i5-10300HComet Lake-HComet Lake1MB + 8MB452500 ‑ 45004/814x86yes1352UHD Graphics 630
~25.880%
9744n2
7130n3
27692n3
2.16n3
10.06n3
186n17
892n17
455.5n14
2113.5n14
1121n2
4863.5n2
8.72
516
7.12
215.2
4825
190.2
53.3
7.27n13
3.1
0.69
0.39
514n13
4903n13
24259n13
5199n4
17278n4
1172.5n4
4365n4
1205n15
4399n15
48896n5
140.6
131.8
210.5n12
AMD Ryzen 3 8440UHawk Point-U (Zen 4 + Zen 4c)Hawk Point (Zen 4/4c, Ryzen 8040)4MB + 8MB283000 ‑ 47004/84x86yes17Radeon 740M
AMD Ryzen 5 4500URenoir-U (Zen 2)Renoir (Ryzen 4000 APU)3MB + 8MB152300 ‑ 40006/67x86yes1438Vega 6
~28.889%
8933.5n2
5337n2
24155.5n2
2.03n2
10.91n2
174n13
892n18
447.5n12
2219n13
1152
5920
10.25n2
622n2
8.3n3
171.9n2
3493n2
210
59.3
6.93n10
4.9n2
0.89n2
0.53n2
584n11
4288n11
24101n11
14964
3960
18690
4624n2
18561n2
1074
4282
1097n10
4632n10
99
48506n3
139.5n3
94.1n2
197n8
Intel Core i7-8809GKaby Lake-GCore i71MB + 8MB1003100 ‑ 42004/814x86yes2165Vega M GH
~27.661%
8837
6668
25809
1.99
9.41
179n2
865n2
404
2005
9.78
484.9
6.57n2
190.85n2
5984
200.3
53.4
7.1
4.8
0.82
0.48
537
4101
19347
5268
17183
78.6
34543
Intel Core i5-8500TCoffee Lake-SCoffee Lake1.5MB + 9MB352100 ‑ 35006/614x86yes2023UHD Graphics 630
~21.748%
8062
5493
25971
1.65
8.6
145
843
10.71
567
8.03
235.1
4331
196
51.8
6.3
3.4
0.63
0.36
561
4626
18335
Intel Core i5-9400HCoffee Lake-HCoffee Lake1MB + 8MB452500 ‑ 43004/814x86yes1690UHD Graphics 630
~8.75%
9.44
823
AMD Ryzen 5 1600ZenRyzen 53MB + 16MB653200 ‑ 36006/1214x86yes2439UHD Graphics 750
~27.184%
8244n2
4538n3
25970n3
1.65n3
12.57n3
147n5
1129n5
349n2
2578n2
915
6468
11.98n3
650n3
6.85n3
149n3
3430n4
177n3
68.7n3
7.21n2
6.4n4
1n4
0.66n4
404.1n2
3834n2
30143.5n2
16217n2
3189
19391
3841n3
18788n3
914.5n2
5402.5n2
950n2
5424.5n2
89
30668
180
AMD Ryzen 3 3300XMatisse (Zen 2)Matisse (Ryzen 3000 Desktop)2MB + 16MB653800 ‑ 43004/87x86yes1317UHD Graphics 750
~27.866%
5856
25416
2.28
11.82
195
1071
500
2430
9.51
531
6.04
164.5
7177
233.5
61.8
8.28
5.9
0.97
0.57
449.4
5329
30353
5753
20529
1299
5406
1296
5311
233
Intel Core i5-10200HComet Lake-HComet Lake1MB + 8MB452400 ‑ 41004/814x86yes1200UHD Graphics 610
~32.730%
171.6
842
419
2082
1089
5372
6.48
515
4497
21148
1094n2
3845n2
187.3
Intel Core i5-1038NG7Ice Lake-UIce Lake2MB + 6MB282000 ‑ 38004/810x86yes1320Iris Plus Graphics G7 (Ice Lake 64 EU)
~26.952%
7844
6743
23609
2.03
7.47
169
768
438
1998
9.45
756
11.2
355
5.99
4.2
4161
19485
1265
4564
45151
142.9
115
180
Intel Core i7-8709GKaby Lake-GCore i71MB + 8MB1003100 ‑ 41004/814x86yes2165Vega M GH
~28.59%
158
791
4436
14863
Intel Core i7-8706GKaby Lake-GCore i71MB + 8MB653100 ‑ 41004/814x86yes2168Vega M GL / 870
~2348%
6549
24130
1.99
8.44
172
781
9.48
505
6.64
199.6
5047
182.6
50
6.35
2.4
0.7
0.42
624
5011
16256
28486
Intel Core i7-8705GKaby Lake-GCore i71MB + 8MB653100 ‑ 41004/814x86yes2168Vega M GL / 870
~23.259%
6436
23794
1.93n2
7.62n2
174n3
746n3
414n2
1883n2
9.25
504
6.67
197.6
4969
181.2
50.1
4.6
0.77
0.45
5009
16066
1066
4029
1059
4047
82.9
32262n3
Intel Core i7-1068G7Ice Lake UIce Lake2MB + 8MB282300 ‑ 41004/810x86yes1597Iris Plus Graphics G7 (Ice Lake 64 EU)
~28.75%
1173
4449
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
Intel Core i5-9300HFCoffee Lake-HCoffee Lake1MB + 8MB452400 ‑ 41004/814x86yes1690UHD Graphics 750
~28.79%
4447
14512
1090
4370
Intel Core i5-9300HCoffee Lake-HCoffee Lake1MB + 8MB452400 ‑ 41004/814x86yes1690UHD Graphics 630
~29.366%
8107n3
6572n5
24623n5
172n11
790n11
419n9
1737n9
9.1
496
5663
193.7
49.4
6n3
4.7
0.84
0.5
602n3
4609n3
22133n3
3854.5n4
15527.5n4
4901n7
16541n7
1123n3
4146n3
86.6
33646n7
63.6
222
Intel Core i5-8400HCoffee Lake-HCoffee Lake1MB + 8MB452500 ‑ 42004/814x86yes2113UHD Graphics 630
~27.477%
6659
21711
170.4n2
761.5n2
393
1793
1128
4657
8.97
498.29
7.2
230.75
5391
185.2
45.25
6.49
4.6
0.78
0.47
596
1151
4553
22023
1118
4211
1127
4352
1493
4963
49389
168
195
209
155.3
Intel Core i7-8559UCoffee Lake-UCoffee Lake1MB + 8MB282700 ‑ 45004/814x86yes2082Iris Plus Graphics 655
~24.468%
8313
7249
23215
2.17
7.32
188
798
466
1691
8.33
464.1
6.54
234.6
6656
191.4
45.59
5.71n2
5
0.81
0.47
666n2
5498.5n2
26301.5n2
13909
5383.5n2
18095n2
1150
4440
723
3660
Intel Core i5-8300HCoffee Lake-HCoffee Lake1MB + 8MB452300 ‑ 40004/814x86yes2113UHD Graphics 630
~26.352%
6463.5n4
22266.5n4
1.9n7
7.84n7
170n17
812n17
9.36n4
548.5n4
7.66n4
265.3n4
169n3
40.15n3
3.9
0.6
0.39
3740
15050
4770
14790
990
3270
88.5
33251n10
AMD Ryzen 5 1500XZenRyzen 52MB + 16MB653500 ‑ 37004/814x86yes2439UHD Graphics 750
~24.580%
7403
4573
20186
1.73
8.95
154n3
805n3
360n2
1783n2
947n2
4597n2
10.95
640
6.9
210.6
3910
177
49.5
5.11n2
4.9
0.74
0.47
586n2
3865n3
21842n3
13198
4282n2
15134n2
915
4035
918.5n2
4603.5n2
74.8
36017
177.5n2
Intel Core i7-1180G7Tiger Lake-UP4Tiger Lake5MB + 12MB152200 ‑ 46004/810x86yes1199Iris Xe G7 96EUs
~34.241%
188
549
492
1301
1280
3434
4.7
844
5108
19703
6260
19898
1530
5254
1525
5304
157.1
242
Intel Core i5-9400FCoffee Lake-RCoffee Lake1.5MB + 9MB652900 ‑ 41006/614x86yes1803UHD Graphics 750
~26.266%
6490
31523
1.95
11.27
173
984
416
2378
9.3
499.8
6.76
198.7
5794
234
64
9.07
5.2
0.86
0.51
468.5
4678
25639
5347
21830
1132
5698
1139
5715
211
AMD Ryzen 3 3100Matisse (Zen 2)Matisse (Ryzen 3000 Desktop)2MB + 16MB653600 ‑ 39004/87x86yes1317UHD Graphics 750
~25.266%
5181
23406
1.99
10.93
178
991
446
2282
10.64
594
6.58
177.6
4848
202.5
58.6
7.58
5.4
0.91
0.52
486.4
4602
27541
5162
18756
1138
5023
1135
5005
209
AMD Ryzen 3 PRO 4450URenoir PRO (Zen 2)Renoir (Ryzen 4000 APU)2MB + 4MB152500 ‑ 37004/87x86yes1317Vega 5
~25.15%
1033
3657
Intel Core i3-10100Comet Lake-SComet Lake1MB + 6MB653600 ‑ 43004/814x86yes1324UHD Graphics 750
~25.866%
6863
26903
2.05
9.93
181
895
436
2181
8.93
481.8
6.34
194.1
6124
212.5
55.8
7.74n2
5
0.86
0.5
493.65n2
4853n2
24355.5n2
5563n2
18692n2
1183.5n2
4748n2
1187.5n2
4758n2
207.5n2
Intel Core i3-10100FComet LakeComet Lake1MB + 6MB653600 ‑ 43004/814x86yes1159UHD Graphics 750
~25.95%
1072
3650
Intel Core i3-9100FCoffee Lake-RCoffee Lake1MB + 6MB653600 ‑ 42004/414x86yes1697UHD Graphics 750
~23.566%
6509
18118
1.95
5.38
171
634
414
1175
9.31
495.5
11.81
345.9
4052
218
44.35
6.12
3
0.5
0.32
687
4682
17150
5301
15937
1146
4060
1152
4074
204
AMD Ryzen 5 2400GZenRaven Ridge (Ryzen 2000 APU)2MB + 4MB653600 ‑ 39004/814x86yes2165Vega 11
~21.768%
6672
4805
21024
1.77
9.46
155.65n4
846.5n4
382.5n2
1849.5n2
11.27
624
6.9
198
3846
171.6
47.95
5.09n3
5.2
0.81
0.5
550.5n2
3909n3
19885n3
4268n3
13653n3
990n3
3825n3
1001n5
3885n5
170n3
Intel Core i5-8305GKaby Lake-GCore i51MB + 6MB652800 ‑ 38004/814x86yes2168Vega M GL / 870
~21.443%
7755
5844
21845
1.79
7.47
157
710
10.81
565
7.13
215.8
4459
166.2
45.87
4.1
0.71
0.41
89.5
30273
Intel Core i7-8557UCoffee Lake-UCoffee Lake1MB + 8MB281700 ‑ 45004/814x86yes1613Iris Plus Graphics 645
~26.55%
1079
4119
Intel Core i5-8269UCoffee Lake-UCoffee Lake1MB + 6MB282600 ‑ 42004/814x86yes2082Iris Plus Graphics 655
Intel Core i5-8279UCoffee Lake-UCoffee Lake1MB + 6MB282400 ‑ 41004/814x86yes1717Iris Plus Graphics 655
~25.957%
8830
6551
24096
1.93
8.29
167.5n2
750n2
421
1717
9.2
512
8.55
266.1
5862
190
45.7
6
627
4276
22683
4850
17643
44259
137.5
110
Intel Core i7-1160G7Tiger Lake-UP4Tiger Lake5MB + 12MB152100 ‑ 44004/810x86yes1199Iris Xe G7 96EUs
~27.664%
8212
26247
2.39
9.64
200.5n4
816n4
514.5n4
1699n4
1266n3
3896n4
8.08
422.6
10.13
327.8
4779
4.05n4
4.9
0.73
0.41
910.5n4
4596n3
17006n4
1437n4
4917n4
55945n3
155n3
151.1n2
231.5n4
Intel Core i7-1065G7Ice Lake-UIce Lake2MB + 8MB151300 ‑ 39004/810x86yes1661Iris Plus Graphics G7 (Ice Lake 64 EU)
~28.386%
9208.5n2
7270.5n4
22401.5n4
2.11n4
7.22n4
178.1n35
662.5n36
449n31
1543n31
1131n2
3437n3
11.68n2
481n2
7.7n3
255.6n3
4956n3
184.9n2
45.05n2
4.48n22
5n3
0.76n3
0.46n3
836n23
4393n24
17254.5n24
3863
14396
5637.5n6
18459.5n6
1310n6
4648n6
1316n18
4406.5n18
88.9
36670n17
148.2n3
132.8n2
201.5n18
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
Apple A16 BionicCreteApple A-Series20MB + 24MB2020 ‑ 34606/64ARMyes464A16 GPU 5-Core
~5525%
1883n4
5433n4
2597.5n4
6680.5n4
10812
56.2n2
73142.5n4
269.34n4
373n4
287.5n4
201.5n2
Apple A15 BionicApple A-Series16MB + 32MB2020 ‑ 32306/65ARMyes822A15 GPU 5-Core
~47.625%
1734n9
4788n9
2332
5661
10410.5n2
77
64026.5n8
181.7n8
242.5n8
250n8
188n3
Qualcomm Snapdragon 8 Gen 2 for GalaxyCortex-X3 / A715 / A710 / A510 (Kryo)Snapdragon + 8MB2000 ‑ 33608/84ARM v9yes399Adreno 740
~44.125%
8380n3
21209n3
1556n7
4989n7
2059.5n6
5443.5n6
60115n8
169.81n8
170.5n6
231n3
165n8
AMD Ryzen 7 3780UPicasso-U (Zen+)Picasso (Ryzen 3000 APU)2MB + 4MB152300 ‑ 40004/812x86yes1804Vega 11
~18.818%
166
788
290
1580
890
3380
940
3050
Qualcomm Snapdragon 8 Gen 2Cortex-X3 / A715 / A710 / A510 (Kryo)Snapdragon + 8MB2000 ‑ 32008/84ARM v9yes399Adreno 740
~39.525%
8169n5
21216n5
1493n15
5005n15
2006n7
5198n7
43632n17
140.57n16
112n14
211n9
139n15
AMD Ryzen 5 1400ZenRyzen 52MB + 8MB653200 ‑ 34004/814x86yes2439UHD Graphics 750
~19.173%
6436.5n2
4204.5n2
17556.5n2
1.53n2
7.78n2
133.75n2
688n3
329
1537
832
3985
13.88n2
732.5n2
7.8n2
237.15n2
2758n2
146.9n2
43n2
4.41
4.1n2
0.62n2
0.41n2
682
3370
19219
10513
3715
12846
817
3410
831n2
3037.5n2
Intel Core i5-8259UCoffee Lake-UCoffee Lake1MB + 6MB282300 ‑ 38004/814x86yes2082Iris Plus Graphics 655
~23.880%
7916
5706
21869
1.67
7.07
148.65n6
615n7
381n5
1471n5
976.5n4
3728n5
11.12
589.33
7.48
248.62
5348
165.13n2
39.5n2
5.36n6
4.1
0.75
0.45
729.5n6
1331
3975.5n6
19104.5n6
4211n3
13961n3
948n3
3567n3
951n3
3607n3
121n3
176n5
140.3
Intel Core i5-8257UCoffee Lake-UCoffee Lake1MB + 6MB151400 ‑ 39004/814x86yes1619Iris Plus Graphics 645
~28.345%
157.65n2
633.5n2
393n2
1519.5n2
1003
4033
5.28
714
4083
19620
4608
16580
989
4181
948
3858
39387.5n2
129.8n2
107.5n2
210
Intel Core i7-10610UComet Lake-UComet Lake1MB + 8MB151800 ‑ 49004/814x86yes1311UHD Graphics 620
~25.668%
8163
7163
17253
2.08
7.46
178n6
604.5n6
446n6
1477n6
1207n2
4048.5n2
7.78
467.3
6.67
295.5
4786
183.1
43.9
4.57n6
5
0.86
0.52
791n6
4666.5n6
18717.5n6
1243.5n6
4123.5n6
51613
149.2
211n6
Intel Core i7-10510UComet Lake-UComet Lake1MB + 8MB151800 ‑ 49004/814x86yes1566UHD Graphics 620
~31.561%
6125n3
7268n3
25882n3
1.95
6.69
182n42
678n45
441n37
1422n38
1152n3
3734n3
4.6n31
797n31
4678n31
17318n31
4427n2
16790n2
5368n14
17109n14
1214n12
3669.5n12
1212n31
3663n31
38295n17
138.5n5
70.9n3
210n26
AMD Ryzen 3 1300XZenRyzen 32MB + 8MB653500 ‑ 37004/414x86yes2331UHD Graphics 750
~23.873%
6310
4676
16094
1.72
6.37
152
558
345
1336
947
3486
10.97
619
10.8
334.8
2677
181.6
38.4
4.13
3
0.46
0.29
870
3772
13712
4327
12230
920
5210
81
35289
171
Intel Core i5-1035G7Ice Lake-UIce Lake2MB + 6MB151200 ‑ 37004/810x86yes1661Iris Plus Graphics G7 (Ice Lake 64 EU)
~23.170%
8736
6449.5n2
19601n2
1.91n2
6.41n2
170n3
712n3
427n3
1233n3
9.17
456.5
7.75
265
4513
167.5
38.1
4.67n2
4.7
0.75
0.43
794n3
4205n3
18342n3
5439n3
17322n3
1135n2
3488n2
1163
2713
33114n2
186
Intel Core i5-1035G4Ice Lake-UIce Lake2MB + 6MB151100 ‑ 37004/810x86yes1661Iris Plus Graphics G4 (Ice Lake 48 EU)
~23.375%
7425.5n2
6829
22252
2.04
7.35
169n5
602.5n6
426n6
1304.5n6
1119
3800
9.19
458.3
7.4
307.8
4526
154.1
35.8
3.97n6
4.7
0.76
0.43
958n6
4086.5n6
13057n6
5376
17202
1197
4206
1235n5
3986n5
35435
176n5
AMD Ryzen 7 3750HPicasso (Zen+)Picasso (Ryzen 3000 APU)2MB + 4MB352300 ‑ 40004/812x86yes1804Vega 10
~22.582%
7431n4
4770n3
20687n3
1.64
9.21
144n7
734n7
364.5n4
1713n4
971
3897
10.95
650
7.44
197.1
2866
139.4
48.58
4.35n3
5
0.69
0.47
633n3
3659n3
18689n3
3768n2
14748.5n2
4166n4
13403.5n4
884n4
3571.5n4
874
3537
30626n4
112.7
153
Qualcomm Snapdragon 8cx Gen 3Cortex-X1 / A78Snapdragon6MB + 8MB72400 ‑ 29958/85ARMyes743Adreno 690
~22.677%
3876
2481
13940
1.38
9.23
119.05n2
748.5n2
205n3
1248n3
598n3
3567n3
17.47
847.99
8.67
305.27
4046
146.9
33.2
2.52n3
1080n3
1625.5n2
3915n3
23989n3
3460
15240
665n2
3796.5n2
1588n2
5989.5n2
49893
166.42n3
150
90.45n2
67.2n3
AMD Ryzen 7 3700UPicasso-U (Zen+)Picasso (Ryzen 3000 APU)2MB + 4MB152300 ‑ 40004/812x86yes1804Vega 10
~2373%
4595
4410.5n2
15461n2
1.59n4
7.6n4
139n7
672n7
343n5
1499n5
12.58
748
13.48
450.4
2392
104.8
27.1
3.3n4
3.8
0.63
0.39
703n3
3492.5n4
15386.5n4
10025
3003
10238
3843.5n4
10542n4
147.3
27490n5
35.3
154n2
AMD Ryzen 7 PRO 3700UZen+Picasso (Ryzen 3000 APU)2MB + 4MB152300 ‑ 40004/812x86yes1712Vega 10
~24.432%
149
658
3.6
785
3680
16735
3928
11249
839
3091
808
3018
27979
39
AMD Ryzen 3 7335URembrandt RRembrandt (Zen 3+)2MB + 8MB283000 ‑ 43004/86x86yes344Radeon 660M
Intel Core i5-10310UComet Lake-UComet Lake1MB + 6MB151700 ‑ 44004/814x86yes1311UHD Graphics 620
~32.745%
170n5
546n5
438n5
1327n5
1051
3094
4.09n5
864n5
4274n5
16475n5
4814.5n2
12621n2
1040
2931
1122n6
3717.5n6
202.3
46029n3
124.85n4
195n7
Intel Core i5-1035G1Ice Lake-UIce Lake2MB + 6MB151000 ‑ 36004/810x86yes1661UHD Graphics G1 (Ice Lake 32 EU)
~22.973%
6869.5n2
21298.5n2
1.97
5.81
167.5n8
606n11
428n7
1311n7
1016
4027
25.5
789
10.8
454.1
3800
4.2n8
4.2
0.65
0.39
863n9
4159n8
15156n8
5183n4
15042.5n4
1136n3
3505n3
1219n7
3858n7
35437.5n2
132.4
58.1
178n5
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
Intel Core i7-8665UWhiskey Lake-UCore i71MB + 8MB151900 ‑ 48004/814x86yes1704UHD Graphics 620
~2582%
6365n2
6872n2
18426.5n2
1.67
4.88
180n7
670n7
427n5
1346n5
988
2729
8
521
9.98
429.3
3418
139
32
4.5n5
2.6
0.45
0.27
754.5n4
4705.5n4
18298n5
3887
14277
5342.5n4
16347n4
1196
3453
1039
2671
235
34548n4
63.1
Intel Core i7-8650UKaby Lake RefreshKaby Lake Refresh1MB + 8MB151900 ‑ 42004/814x86yes2307UHD Graphics 620
~23.245%
6936n5
6629n4
18635n4
1.92n9
6.82n9
169n17
605n19
8.84n6
508n6
9.94n3
302.8n3
4319n4
169.6n4
39.75n4
4.3n4
0.72n4
0.44n4
74.4n6
33906n9
227
Intel Core i5-10210UComet Lake-UComet Lake1MB + 6MB151600 ‑ 42004/814x86yes1566UHD Graphics 620
~25.289%
6363n3
6412n3
16072n3
1.89n4
7.5n4
166n35
616n35
415n30
1242n30
1062n3
3794n3
8.96n2
516.5n2
6.78
217.8
4213
169.5n3
43.85n3
4.31n24
4.65n2
0.8n2
0.49n2
829n24
4261n24
16742n24
3457n2
12114n2
4696.5n10
14139n10
1067.5n10
3467.5n10
1079n27
3689n27
4130
245.45n2
34153n17
127.45n4
116.5n4
191n21
Intel Core i7-8565UWhiskey Lake-UCore i71MB + 8MB151800 ‑ 46004/814x86yes1942UHD Graphics 620
~26.182%
6158n15
6644n16
16760n16
1.93n11
6.8n11
173n51
608.5n52
411.5n20
1181.5n20
8.36n7
508n7
9.55n7
360.2n7
4291.5n8
140.9n7
33.71n7
4.71n22
4n8
0.72n8
0.44n8
806.5n22
4737n23
18860n23
10600n2
3851n12
12302.5n12
5142.5n30
13888n30
1197n5
3176n5
1135.5n2
3073.5n2
152.7n4
34884.5n42
59.7n5
202n5
Intel Core i7-1060NG7Ice Lake YIce Lake2MB + 8MB101200 ‑ 38004/810x86yes1365Iris Plus Graphics G7 (Ice Lake 64 EU)
~275%
1153
2940
Intel Core i7-1060G7Ice Lake YIce Lake2MB + 8MB91000 ‑ 38004/810x86yes1597Iris Plus Graphics G7 (Ice Lake 64 EU)
~26.75%
1167
2322
Intel Core i5-1034G1Ice Lake UIce Lake2MB + 6MB15800 ‑ 36004/810x86yes1661UHD Graphics G1 (Ice Lake 32 EU)
~35.25%
5090n2
16969n2
Intel Core i5-8365UWhiskey Lake-UCore i51MB + 6MB151600 ‑ 41004/814x86yes1704UHD Graphics 620
~22.559%
6330
6557
16518
1.91
5.74
166n4
579n4
421n3
1408n3
9.15
546
7.72
296.7
3173
153
35.9
4.49n3
4.6
0.8
0.46
825n3
4346n3
17293n3
4822.5n2
15472n2
32878n3
AMD Ryzen 3 7330UBarcelo (Zen 3)Cezanne (Zen 3, Ryzen 5000)2MB + 8MB152300 ‑ 43004/87x86yes344Vega 6
AMD Ryzen 5 7520UMendocino-U (Zen 2)Mendocino (Zen 2, Ryzen 7020)2MB + 4MB152800 ‑ 43004/86x86yes451Radeon 610M
~36.634%
168.8
834
350.5n2
1632.5n2
1171
5149
6.3
588
1044
4167
24219
1066
3821
191.3
155.3
AMD Ryzen 5 7520CMendocino (Zen 2)Mendocino (Zen 2, Ryzen 7020)2MB + 4MB152800 ‑ 43004/86x86yes206Radeon 610M
AMD Ryzen 3 7320UMendocino-U (Zen 2)Mendocino (Zen 2, Ryzen 7020)2MB + 4MB152400 ‑ 41004/86x86yes451Radeon 610M
AMD Ryzen 3 7320CMendocino (Zen 2)Mendocino (Zen 2, Ryzen 7020)2MB + 4MB152400 ‑ 41004/86x86yes451Radeon 610M
AMD Ryzen 3 5425UBarcelo-U (Zen 3)Cezanne (Zen 3, Ryzen 5000)2MB + 8MB152700 ‑ 41004/87x86yes710Vega 6
AMD Ryzen 3 5425CBarcelo (Zen 3)Cezanne (Zen 3, Ryzen 5000)2MB + 8MB252700 ‑ 41004/87x86yes589Vega 6
AMD Ryzen 3 5400UCezanne-U (Zen 3)Cezanne (Zen 3, Ryzen 5000)2MB + 8MB252600 ‑ 40004/87x86yes1072Vega 6
~27.55%
1170
3095
AMD Ryzen 3 PRO 5475UBarcelo-U PRO (Zen 3)Cezanne (Zen 3, Ryzen 5000)2MB + 8MB152700 ‑ 41004/87x86yes633Vega 6
AMD Ryzen 3 PRO 5450UCezanne-U PRO (Zen 3)Cezanne (Zen 3, Ryzen 5000)2MB + 8MB152600 ‑ 40004/87x86yes1072Vega 6
Intel Core i5-8265UWhiskey Lake-UCore i51MB + 6MB151600 ‑ 39004/814x86yes1942UHD Graphics 620
~2793%
6316n5
6082n9
19418n9
1.78n6
5.74n6
159n35
601.5n38
397n16
1285.5n16
1008
3500
9.78n3
552n3
11.02n2
402.35n2
3988n3
156n3
39.1n3
4.2n15
4.4n3
0.79n3
0.46n3
861n15
1565
4084n15
16245n15
11639n2
3678.5n6
14002n6
4514n19
13295n19
1017n6
3365n6
1041.5n4
3624.5n4
95.6n4
32120n23
119.7
54.45n4
187n2
145.3
Intel Core i5-1140G7Tiger Lake-UP4Tiger Lake5MB + 8MB151800 ‑ 42004/810x86yes1199Iris Xe G7 80EUs
~26.982%
7524
7771
19199
2.25
7.06
179
630
438
1126
1246
2611
8.32
434.9
10.99
410.7
4632
145.9
32.13
3.82
3.1
0.55
0.31
993
4201
15167
5937
15462
1355
3904
1353
3921
160.1
57983
169
130.9
216
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
AMD Ryzen 7 2800HRaven Ridge (Zen)Raven Ridge (Ryzen 2000 APU)2MB + 4MB453300 ‑ 38004/814x86yes1915Vega 11
AMD Ryzen 5 3550HPicasso-U (Zen+)Picasso (Ryzen 3000 APU)2MB + 4MB352100 ‑ 37004/812x86yes1804Vega 8
~25.391%
7174n3
4592n4
19520.5n4
1.65
8.55
144n11
742n11
359n8
1621n8
886n2
3929.5n2
11.91
695
7.67
209.2
2929
146.8
44.3
4.04n5
4.7
0.67
0.47
659n6
1297
3547.5n6
17978n6
3353n3
14437n3
3807n7
11926n7
902n5
3250n5
899n5
3281n5
117.8
28811.5n4
122.1
42.8n2
162n5
124.3
AMD Ryzen 7 2700UZenRaven Ridge (Ryzen 2000 APU)2MB + 4MB152200 ‑ 38004/814x86yes2165Vega 10
~24.770%
6072n3
4515n3
13729n3
1.65n2
7.53n3
143.5n12
644n12
356n3
1422n3
886
3603
11.8
698
8.55n2
269.1n2
128
36.4
3.96
713
3592
17317
3248.5n2
11433.5n2
3495n3
8582n3
813
2969
217.4
26482n6
36.9
142
AMD Ryzen 7 PRO 2700UZenRaven Ridge (Ryzen 2000 APU)2MB + 4MB152200 ‑ 38004/814x86yes2165Vega 10
~21.55%
882
3183
AMD Ryzen 3 5300ULucienne-U (Zen 2)Lucienne (Zen 2, Ryzen 5000)2MB + 4MB252600 ‑ 38004/87x86yes1072Vega 6
~29.580%
7931
5118
22139
1.89
9.29
170n3
906n3
436n4
2067n4
1115n3
5341n3
7
366
2551
6.54n3
5.1
0.93
0.55
544n3
1069n2
3960n3
21971n3
4096
16771
4560
16261
1062.5n2
4106.5n2
1070n3
4008n3
52372
156.69n2
176
187.4n3
147.3n2
AMD Ryzen 3 2200GZenRaven Ridge (Ryzen 2000 APU)2MB + 4MB653500 ‑ 37004/414x86yes2168Vega 8
~22.870%
6636
4625
16684
1.68
6.66
145.55n4
577n4
363
1446
11.7
651
10.8
333
3229
184
39.7
4.29
3.1
0.48
0.3
826n2
3948
14790
4249n2
11896.5n2
959
3431
1086.5n2
4881.5n2
92.7
34670
AMD Ryzen 5 3500UPicasso-U (Zen+)Picasso (Ryzen 3000 APU)2MB + 4MB152100 ‑ 37004/812x86yes1804Vega 8
~23.284%
5950.5n2
4557.5n4
17230.5n4
1.65
7.62
143n18
650n19
364n15
1477n15
12
697
12.88
368.2
2455
134.8
39.2
4.02n10
4.4
0.67
0.44
694n10
3538n10
17024.5n10
11917
3442.5n4
13040n4
3893n11
11783n11
896n8
3118.5n8
898.5n8
3155.5n8
128.8
27809n11
89.4
40.4n3
148n7
AMD Ryzen 5 PRO 3500UZen+Picasso (Ryzen 3000 APU)2MB + 4MB152100 ‑ 37004/812x86yes1712Vega 8
~25.936%
142n2
624n2
361.5n2
1338.5n2
3.48n2
795.5n2
3474n2
16220.5n2
3820
10419
863
2824
27437n2
89.7
41.3
142
Intel Core i5-1130G7Tiger Lake-UP4Tiger Lake5MB + 8MB151800 ‑ 40004/810x86yes1199Iris Xe G7 80EUs
~25.280%
5569
7813
25385
2.18
7.64
179n3
616.5n4
448n2
1060.5n2
1151.5n2
2738.5n2
8.58
464.2
10.56
474.9
4785
145.5
30.2
3.04
2.6
0.64
0.33
1189.5n2
4175n2
14726n2
5724
18742
1307
4791
1321.5n2
4802n2
57829
174
179
219.5n2
AMD Ryzen 5 3450UPicasso-U (Zen+)Picasso (Ryzen 3000 APU)2MB + 4MB152100 ‑ 35004/812x86yes1323Vega 8
~23.641%
137.5n2
566.5n2
321.5n2
1168n2
875n2
2926.5n2
3.03n3
946n3
3359n3
15878n3
3486
10200
853
2630
839n5
2972n5
115.4
145.5n2
AMD Ryzen 3 4300URenoir-U (Zen 2)Renoir (Ryzen 4000 APU)2MB + 4MB152700 ‑ 37004/47x86yes1438Vega 5
~30.473%
6068
163.9n2
562.5n2
422n3
1571n3
1074
3571
2397
172.3
35
4.87n2
3.2
0.59
0.34
887.5n2
1413.5n2
4063.5n2
15824n2
11281
4042
13134
4517
13503
1036
3358
1046.5n2
3438.5n2
102.5
33152
51.2
194n2
152.3
AMD Ryzen 5 3580UPicasso-U (Zen+)Picasso (Ryzen 3000 APU)2MB + 4MB152100 ‑ 37004/812x86yes1804Vega 9
~19.559%
5545
4525
18307
1.65
7.82
139
693
352
1549
12.04
694
7.17
274.7
2924
135.3
40.1
4.09
3.5
0.61
0.4
710
3572
15209
900
2990
28517
Intel Core i3-1125G4Tiger Lake-UP3Tiger Lake5MB + 8MB282000 ‑ 37004/810x86yes1200UHD Graphics Xe G4 48EUs
~28.65%
1198
3738
Intel Core i3-1305URaptor Lake-URaptor Lake-U3.5MB + 10MB151200 ‑ 45005/610x86yes710UHD Graphics 64EUs
Intel Processor U300Raptor Lake-URaptor Lake-U3.5MB + 8MB15900 ‑ 44005/610x86yes346UHD Graphics Xe G4 48EUs
Intel Pentium 8505Alder Lake-UAlder Lake-M3.5MB + 8MB15900 ‑ 44005/610x86yes710UHD Graphics Xe G4 48EUs
Intel Core i3-1210UAlder Lake-UAlder Lake-M5MB + 10MB9700 ‑ 44006/810x86yes710UHD Graphics 64EUs
Intel Pentium 8500Alder Lake-UAlder Lake-M3.5MB + 8MB9700 ‑ 44005/610x86yes710UHD Graphics Xe G4 48EUs
Intel Core i7-8550UKaby Lake RefreshKaby Lake Refresh1MB + 8MB151800 ‑ 40004/814x86yes2307UHD Graphics 620
~25.680%
5845n15
6423n30
17321.5n30
1.89n31
6.11n31
163n75
553n77
388.5n2
1128n2
1021
2914
9.28n11
536n11
9.9n10
366.7n10
4374n7
147.9n6
33.15n6
3.88n3
4.3n6
0.73n6
0.43n6
913n3
4337
15613
3770n12
12327.5n12
4900n11
15117n11
1081
3141
71.3n11
33496n39
121.8
182
Qualcomm Snapdragon 8cx Gen 2 5GCortex-A76 / A55 (Kryo 495)Snapdragon + 2MB731508/87ARMyes1198Adreno 680
~19.918%
2355
7502
797n2
3115.5n2
32979
85.4
68.8
132
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
MediaTek Dimensity 9200+Cortex-X3 / A715 / A5102000 ‑ 33508/84ARMyes393Immortalis-G715 MP11
~35.825%
7167
19785
1541n2
4936.5n2
1805.5n2
4658.5n2
36482
136.74
176
143
95
MediaTek Dimensity 9200Cortex-X3 / A715 / A5101800 ‑ 30508/84ARMyes393Immortalis-G715 MP11
~22.425%
6247
13625
1668
4233
1384
4232
21648
67.65
60.2
82
66
AMD Ryzen 5 2600HZenRaven Ridge (Ryzen 2000 APU)2MB + 4MB453200 ‑ 36004/814x86yes1870Vega 8
~13.19%
819
2741
812
3226
Intel Core i5-8260UCoffee LakeCoffee Lake1MB + 6MB151600 ‑ 39004/814x86yes1577UHD Graphics 620
~27.336%
156.9
627
400
1494
629
3028
1.8
726
1402
4056
18874
552
1464
639
1817
148.27
Intel Core i5-1030NG7Ice Lake YIce Lake2MB + 6MB101100 ‑ 35004/810x86yes1365Iris Plus Graphics G7 (Ice Lake 64 EU)
~21.177%
3828
4250
9432
1.21
3.37
140
448
352.5n2
875.5n2
11.4
653
15.2
687
3878
77.4
16.9
2.95
3.1
0.48
0.3
1310
3472
10924
4996
12112
1020
2572
1088.5n2
2710n2
132
42305
122.5
97.9
158.5n2
Intel Core i3-N305Alder Lake-NAlder Lake-N4MB + 6MB151800 ‑ 38008/810x86yes354UHD Graphics Xe 32EUs (Tiger Lake-H)
Intel Core i5-1030G7Ice Lake-YIce Lake2MB + 6MB9800 ‑ 35004/810x86yes1597Iris Plus Graphics G7 (Ice Lake 64 EU)
Intel Core i5-1030G4Ice Lake-YIce Lake2MB + 6MB9700 ‑ 35004/810x86yes1597Iris Plus Graphics G4 (Ice Lake 48 EU)
Intel Core i3-1115G4Tiger Lake-UP3Tiger Lake2.5MB + 6MB283000 ‑ 41002/410x86yes1200UHD Graphics Xe G4 48EUs
~28.780%
6331
8018
16265
190n6
480.5n6
504.5n6
1114n6
1312n5
3125n6
8.24
434.8
11.76
412.8
141.6
26.2
3.74n6
2.8
0.41
0.23
1021.5n6
2408
4599.5n6
12919.5n6
5601
9945
1328
2399
1311.5n8
2605n8
145.8
58151n3
164.05n2
179.5n2
204.5n6
152.3
Intel Core i3-1120G4Tiger Lake-UP4Tiger Lake5MB + 8MB151500 ‑ 35004/810x86yes1199UHD Graphics Xe G4 48EUs
Intel Core i3-1005G1Ice Lake-UIce Lake1MB + 4MB151200 ‑ 34002/410x86yes1661UHD Graphics G1 (Ice Lake 32 EU)
~23.382%
5501
6573
14323
1.88
4.58
157n6
405n6
403n7
859n7
1055.5n4
2221n4
10.02
487.1
13.92
439.8
2624
135.2
25.22
3.12n7
2.4
0.38
0.22
1264n7
4004n7
10896n7
4817.5n2
9211n2
1129.5n2
2231.5n2
1159.5n6
2425.5n6
191.4
46698n3
131.95n2
127.2n2
179.5n6
Intel Core i3-10110UComet Lake-UComet Lake1MB + 4MB152100 ‑ 41002/414x86yes1566UHD Graphics 620
~22.784%
6349n2
11204.5n2
1.87
3.59
162n5
321n5
401n3
753n3
1032.5n2
2142n2
9.43n2
538.5n2
15.77n2
533n2
2156n2
110.05n2
20.63n2
2.92n2
2.05n2
0.37n2
0.22n2
1279.5n2
4153.5n2
10291.5n2
7706
3470
7335
4455
8289
1002
2034
987n2
2025.5n2
95.3
29833
47
164n2
Intel Core i3-8109UCoffee Lake-UCoffee Lake512KB + 4MB283000 ‑ 36002/414x86yes2082Iris Plus Graphics 655
~25.936%
138.65n2
352.5n2
351
772
906
2004
2.85
1328
3752
9489
4540
8974
888
1880
90.07
131.3
Intel Core i5-8350UKaby Lake RefreshKaby Lake Refresh1MB + 6MB151700 ‑ 36004/814x86yes2307UHD Graphics 620
~25.961%
5925n3
5460.5n2
17931n2
1.69n3
5.95n3
150.5n8
569n8
10.94n2
637n2
9.7n2
330.45n2
2961n2
152.85n2
37.28n2
4.05n2
0.69n2
0.41n2
705
3439
12270
4225n3
13605n3
156.45n4
31171n5
94.7n2
98.65n2
183.5n2
AMD Ryzen 3 1200Summit Ridge (Zen)Ryzen 32MB + 8MB653100 ‑ 34004/414x86yes2331UHD Graphics 750
~19.666%
5419
4178
13961
1.53
5.5
135
480
337
1192
834
3013
12.39
12.5
390.1
2481
160
33.34
3.47n2
2.6
0.4
0.25
1002
3391
11980
3955
10851
834
2882
151
Intel Core i5-8250UKaby Lake RefreshKaby Lake Refresh1MB + 6MB151600 ‑ 34004/814x86yes2307UHD Graphics 620
~23.184%
6348n14
5533n42
17987n42
1.64n35
5.94n35
143n97
562n101
353n5
1171n5
873.5n2
3108n2
11.06n11
613n11
8.06n13
306.2n13
3991n2
137.5n4
31.96n4
4.34n8
3.5n5
0.68n5
0.41n5
899.5n8
3706n6
15365.5n6
3242n18
12742n18
4095n25
12751n25
927n2
3298n2
925n5
3427n5
91n15
29871n54
48.7
167.5n4
AMD Ryzen 5 2500UZenRaven Ridge (Ryzen 2000 APU)2MB + 4MB152000 ‑ 36004/814x86yes2165Vega 8
~23.177%
4828n3
4410.5n6
15683.5n6
1.59n4
6.64n4
137n15
609n16
354.5n4
1298.5n4
12.29n3
697n3
10.23n2
313.5n2
2425.5n2
121n2
34.7n2
3.67n2
3.3n3
0.56n3
0.37n3
770.5n2
3441n3
16251n3
10616
3383n5
11301n5
3703n8
9952n8
831
2515
116.95n4
26534.5n10
38.55n2
160
Intel Core i3-N300Alder Lake-NAlder Lake-N + 6MB7 ‑ 38008/810x86yes351UHD Graphics Xe 750 32EUs
AMD Ryzen 5 PRO 2500UZenRaven Ridge (Ryzen 2000 APU)2MB + 4MB152000 ‑ 36004/814x86yes2165Vega 8
~23.268%
5635n3
4349n3
14336n3
1.55n3
6.08n3
134n3
553n3
12.7n2
728.5n2
12.36n2
386.55n2
2699.5n2
97.7n2
33.91n2
3
3.4n2
0.6n2
0.39n2
1007n2
4102
2794
11156n2
3326n2
12421.5n2
3492n3
9343n3
887
3135
138.1
24308n2
AMD Ryzen Embedded V1605BZenRaven Ridge (Ryzen 2000 APU)2MB + 4MB152000 ‑ 36004/814x86yes2123Vega 8
~23.841%
128
654
334
1235
841
3160
3.64
791
3374
16708
3800
12100
846
3264
819
3184
92.6
149
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
Intel Core i3-8100HCoffee Lake-HCoffee Lake1MB + 8MB4530004/414x86yes1991UHD Graphics 630
MediaTek Dimensity 9000+Cortex-X2 / A710 / A510 + 14MB1800 ‑ 32008/84ARMyes462Mali-G710 MP10
~28.123%
3705.5n2
8482n2
1391.5n2
4606.5n2
8591
51846
134
116
152
128
MediaTek Dimensity 9000Cortex-X2 / A710 / A510 + 14MB1800 ‑ 30508/84ARMyes1059Mali-G710 MP10
~3127%
5713
15310
1248n5
4051n5
1608n3
4482n3
9111
50429n3
148.12n3
119n3
121
153n3
Apple A12Z BionicVortex, TempestApple A-Series8MB ‑ 24908/87ARMyes1367A12Z Bionic GPU
~39.316%
1122n2
4709.5n2
125
42425n3
126.1n3
144.5n2
141n3
Apple A12X BionicVortex, TempestApple A-Series8MB ‑ 24908/87ARMyes1872A12X Bionic GPU
~38.830%
4993n2
17866n2
1114
4661
1120
4620
1313
4660
758432n2
114
45079.5n2
131.9
177n2
Apple A14 BionicFirestorm / IcestormApple A-Series12MB + 16MB1800 ‑ 31006/65ARMyes1186A14 Bionic GPU
~42.820%
1588.5n6
4093.5n6
44785
85.85n2
58528n6
159.95n6
194.5n6
193.5n6
147
Qualcomm Snapdragon 8+ Gen 1Cortex-X2 / A710 / A510 (Kryo) WaipioSnapdragon + 6MB1800 ‑ 32008/84ARM v9yes574Adreno 730
~38.827%
7202.5n10
17569.5n10
1321n23
4162n23
1741n5
4584n5
190.4
39564n22
111.45n21
103n16
156.5n14
101n19
Google Tensor G3Zuma - Cortex X3 / A715 / A510 + 4MB1700 ‑ 29109/94ARMyes77Mali-G715 MP7
~37.627%
6074n2
14268n2
1267n2
3509.5n2
1711n2
4381.5n2
197
48641n2
104.71n2
147n2
122n2
98.5n2
Qualcomm Snapdragon 8 Gen 1Cortex-X2 / A710 / A510 (Kryo) WaipioSnapdragon + 6MB1800 ‑ 29958/84ARM v9yes750Adreno 730
~36.130%
8654
6668n6
15021n6
1236n21
3581n21
1610
3860
302.5
45945n17
108.4n16
109.5n16
151n15
92.5n4
Microsoft SQ1Cortex-A76 / A55 (Kryo 495)Snapdragon + 2MB30008/87ARMyes1535Adreno 685
~10.236%
537
4276
21.2
1095
14.2
429.3
830
2597
728
2785
739
2875
31099
76.7
61.8
116
Qualcomm Snapdragon 7+ Gen 2Cortex-X2 / A710 / A510Snapdragon1800 ‑ 29108/84ARMyes281Adreno 725
~32.125%
6584
16748
1224.5n2
3959n2
1687
4378
37823
126.39
108
134
107
Intel Core i3-1110G4Tiger Lake-UP4Tiger Lake2.5MB + 6MB152500 ‑ 39002/410x86yes1199UHD Graphics Xe G4 48EUs
~19.673%
5008
6972
13139
2.02
4.31
160.4
382
422
732
877
1868
9.39
474.59
12.44
519.97
2728
115.6
21.4
2.47
2.4
0.36
0.21
1560
3935
8714
5397
10233
1212
2478
772
1894
188.4
Qualcomm Snapdragon 8cxCortex-A76 / A55 (Kryo 495)Snapdragon + 2MB728408/87ARMyes1835Adreno 680
~12.632%
591
4187
10.9
564
14.6
442.1
3313
11047
700
2760
29364
73.5
59.3
116
Qualcomm Snapdragon 888 Plus 5GCortex-X1 / A78 / A55 (Kryo 680)Snapdragon + 3MB51800 ‑ 30008/85ARMyes900Adreno 660
~28.132%
10821
4973n2
13552.5n2
1164
3699
1157n6
3628.5n6
4771
342.5
37604n4
96.2n4
80.6n3
147n3
104
Qualcomm Snapdragon 888 5GCortex-X1 / A78 / A55 (Kryo 680)Snapdragon + 3MB51800 ‑ 28408/85ARMyes1108Adreno 660
~28.425%
11578
5087n5
14326n5
1129n27
3598n27
1480
3595
35487.5n20
106.1n13
85.75n12
148n18
Qualcomm Snapdragon 888 4GCortex-X1 / A78 / A55 (Kryo 680)Snapdragon + 3MB51800 ‑ 28408/85ARMyes1108Adreno 660
~27.114%
5083
13553
1107n3
3334n3
22851n3
108n2
Samsung Exynos 2200Exynos X2 / Cortex-A710 / A510Exynos1820 ‑ 28008/84ARMyes696Xclipse 920
~3720%
5788
15310
1145n3
3560n3
281.5
38992n3
96.8n3
108n3
149n3
Apple A13 BionicLightning and ThunderApple A-Series12MB ‑ 26606/67ARMyes1552A13 Bionic GPU
~34.220%
1343n3
3463n3
1332n4
3378.5n4
683897n3
48991n5
132.9n5
157n5
183n5
Intel Processor N200Alder Lake-NAlder Lake-N + 6MB61000 ‑ 37004/410x86yes351UHD Graphics Xe 750 32EUs
Intel Core i3-8145UWhiskey Lake-UCore i31MB + 4MB152100 ‑ 39002/414x86yes1942UHD Graphics 620
~18.966%
5158
5939n2
12432n2
1.77
4.01
148.5n4
351.5n4
296
657
10.52
638
13.1
463.9
1889
117.6
22.6
2.64
2.2
0.39
0.23
7459
3360n3
7420n3
4118n3
7859n3
995
2096
104.85n2
28828.5n2
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
AMD Ryzen 3 3350UZen+Picasso (Ryzen 3000 APU)2MB + 4MB152100 ‑ 35004/412x86yes1804Vega 6
~20.45%
864
2455
AMD Ryzen 3 3300UZen+Picasso (Ryzen 3000 APU)2MB + 4MB152100 ‑ 35004/412x86yes1804Vega 6
~21.477%
4332
4280
12357
134
471
337
921
12.82
709
11.94
404.6
2398
132.1
26.2
2.81
2.7
0.43
0.28
1212
3340
12118
9508
3469
10170
3861
10787
843
2722
824
2578
136.9
27764
39.8
153.5n2
AMD Ryzen 3 PRO 3300UZen+Picasso (Ryzen 3000 APU)2MB + 4MB152100 ‑ 35004/412x86yes1712Vega 6
~20.99%
1.43
5.52
126
481
AMD Ryzen 3 2300UZenRaven Ridge (Ryzen 2000 APU)2MB + 4MB152000 ‑ 34004/414x86yes2168Vega 6
~14.914%
0.79
4.46
79
422.5
783
2360
AMD Ryzen 3 PRO 2300UZenRaven Ridge (Ryzen 2000 APU)2MB + 4MB152000 ‑ 34004/414x86yes2168Vega 6
~19.69%
3387
8655
727
2156
Intel Processor N97Alder Lake-NAlder Lake-N + 6MB12 ‑ 36004/410x86yes351UHD Graphics 24EUs (Alder Lake-N)
Intel Processor N95Alder Lake-NAlder Lake-N + 6MB15 ‑ 34004/410x86yes351UHD Graphics Xe 16EUs (Tiger Lake-H)
~21.982%
5952n5
4783n5
13854n5
1.83n5
5.55n5
151n5
445n5
350n5
1030n5
914n5
2769n5
19.42n5
824.72n5
17.04n4
537.32n4
2319.5n4
162.15n4
32.4n4
3.18n5
2.7n5
0.5n5
0.24n5
1113n5
2186.5n4
3803n5
12177n5
4450n5
10228n5
993n5
2531n5
999n5
2566n5
1227n3
2961n3
178.3n5
126.75n4
Intel Processor N100Alder Lake-NAlder Lake-N + 6MB61000 ‑ 34004/410x86yes351UHD Graphics 24EUs (Alder Lake-N)
~22.984%
6438n2
5024n2
15271.5n2
1.85n2
5.59n2
153.9n3
477n3
357n3
1138n3
931n3
2983n3
19.31n2
818.56n2
15.85n2
489.22n2
2401.5n2
172.78n2
34.28n2
3.47n3
2.9n2
0.54n2
0.26n2
1038n3
2028n3
3908n3
13255n3
4492.5n2
11101n2
1000.5n2
2807.5n2
1006n4
2865.5n4
1232n3
3236n3
161.56
181.4n3
136.2
Intel Core i3-8130UKaby Lake RefreshKaby Lake Refresh1MB + 4MB152200 ‑ 34002/414x86yes2129UHD Graphics 620
~2064%
4720
5447.5n2
12157n2
1.63
3.77
139n3
338n3
348
774
11.09
661
14.3
485.5
2168
116.6
22.2
2
0.36
0.21
7131
3288n2
7168.5n2
4000.5n2
7890.5n2
187n2
27142.5n4
43.6
153
Intel Core i3-1000NG4Ice Lake YIce Lake1MB + 4MB91100 ‑ 32002/410x86yes1365Iris Plus Graphics G4 (Ice Lake 48 EU)
~2064%
3151
5771
9257
1.49
2.72
141
333
348
587
10.64
550
16.2
691
2468
2.23
1814
3438
7921
4748
9090
1074
2035
1096
2028
39043
118.2
98.8
162
Intel Core i3-1000G4Ice Lake-YIce Lake1MB + 4MB91100 ‑ 32002/410x86yes1597Iris Plus Graphics G4 (Ice Lake 48 EU)
Intel Core i3-1000G1Ice Lake-YIce Lake1MB + 4MB91100 ‑ 32002/410x86yes1597UHD Graphics G1 (Ice Lake 32 EU)
Intel Core i3-8121UCannon-LakeCore i3512KB + 4MB152200 ‑ 31002/410x86yes2039UHD Graphics 750
~20.511%
4314
133
317.6
4195
7985
HiSilicon Kirin 9000Cortex-A77/-A552050 ‑ 31308/85ARMyes1149Mali-G78 MP24
~21.79%
26597
79.6
84.6
147
HiSilicon Kirin 9000ECortex-A77/-A552050 ‑ 31308/85ARMyes1149UHD Graphics 750
~17.79%
24616
72.8
72.1
97
Intel Core i7-10510YComet Lake-YComet Lake512KB + 8MB71200 ‑ 45004/814x86yes1566UHD Graphics 617
~19.39%
250
845
1005
2728
Intel Core i5-10310YAmber Lake-YAmber Lake512KB + 6MB71100 ‑ 41004/814x86yes1566UHD Graphics 615
Intel Core i5-10210YAmber Lake-YAmber Lake512KB + 6MB71000 ‑ 40004/814x86yes1566UHD Graphics 615
~185%
738
2735
Intel Core i5-L16G7LakefieldLakefield71400 ‑ 30005/510x86yes1296UHD Graphics G7 (Lakefield GT2 64 EU)
~18.455%
4079
9003
1.42
3.18
89.5n2
255n2
282.5n2
647.5n2
710
1810
11.7
622
28.6
879
1.46n2
2026.5n2
3211n2
7586.5n2
826.5n2
1633.5n2
32455n2
85.8n2
76.1n2
124.5n2
AMD Athlon Gold 7220UMendocino (Zen 2)Mendocino (Zen 2, Ryzen 7020)1MB + 4MB152400 ‑ 37002/46x86yes451Radeon 610M
~21.65%
932
2159
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
AMD Athlon Gold 7220CMendocino (Zen 2)Mendocino (Zen 2, Ryzen 7020)1MB + 4MB152400 ‑ 37002/46x86yes206Radeon 610M
Samsung Exynos 2100 5GExynos X1 / Cortex-A78 / A55Exynos2200 ‑ 29008/85ARMyes1066UHD Graphics 750
~32.723%
13062
4970
14476
1100n3
3364n3
313.2
27275n3
66.3n3
84.1n3
114n3
Qualcomm Snapdragon 870 5GCortex-A77 / A55 (Kryo 585)Snapdragon1.8MB + 7MB52420 ‑ 32008/87ARMyes1472Adreno 650
~28.430%
4411n3
11658n3
992.5n16
3188n16
1299
3357
5196
312.9
33694n13
92.45n12
70.42n12
127n13
83n4
Qualcomm Snapdragon 865+ (Plus)Cortex-A77 / A55 (Kryo 585)Snapdragon1.8MB + 4MB52420 ‑ 31008/87ARMyes1472Adreno 650
~2318%
4493
13066
980n6
3250.5n6
26700.5n4
72.15n4
71.1n4
119.5n4
Qualcomm Snapdragon 865Cortex-A77 / A55 (Kryo 585)Snapdragon1.8MB + 4MB52420 ‑ 28408/87ARMyes1472Adreno 650
~2627%
10921n3
4278n5
13356n5
932
3450
910n23
3309n23
312.5
23734n23
66.45n20
67.7n19
104n23
MediaTek Dimensity 1300Cortex-A78 / A552000 ‑ 30008/86ARMyes646Mali-G77 MP9
~14.518%
9050
415
2700
7485
33879
66.96
59.7
65
MediaTek Dimensity 8100Cortex-A78 / A552000 ‑ 28508/86ARMyes654Mali-G610 MP6
~20.230%
11358
4422.5n2
15985.5n2
925
3743
907n3
3720n3
8158n2
33238n3
81.17n3
72.4n3
106n3
86.5n2
MediaTek Dimensity 8050Cortex-A78 / A552000 ‑ 30008/86ARMyes215Mali-G77 MP9
~20.527%
4348
11466
867.5n2
2852n2
1036n2
3173n2
6101n2
31904n2
88n2
76.2n2
89
76n2
MediaTek Dimensity 1200Cortex-A78 / A552000 ‑ 30008/86ARMyes1059Mali-G77 MP9
~16.827%
11256
4294
13528
850
3023
833n2
2689.5n2
5166
28059.5n2
51.45n2
52.15n2
69.5n2
MediaTek Kompanio 1300TCortex-A78 / A552000 ‑ 26008/86ARMyes646Mali-G77 MP9
~17.216%
773
2669
28601
64.89
48.9
75
63
Intel Core i7-8500YAmber Lake-YAmber Lake512KB + 4MB51500 ‑ 42002/414x86yes1933UHD Graphics 615
~17.668%
3056n2
5027n2
8706n2
1.45n2
2.49n2
130.5n4
246.5n4
312n2
587.5n2
9.34
657
15.51
673
2483
83.3
14.07
2.12
2.2
0.36
0.22
1965.5n2
4367.5n2
10709n2
3245
5614
4397.5n2
7224n2
858
1504
24631.5n4
Intel Core i3-10110YAmber Lake-YAmber Lake512KB + 4MB71000 ‑ 40002/414x86yes1566UHD Graphics 615
~22.55%
996
1633
Intel Core i5-8210YAmber Lake-YAmber Lake512KB + 4MB71600 ‑ 36002/414x86yes1872UHD Graphics 617
~21.536%
3544
129.5n2
269.5n2
312
601
2.26
1680
3405
7936
4162
7474
660
1433
33003n2
96.3
82.6
Intel Core i5-8200YAmber Lake-YAmber Lake512KB + 4MB51300 ‑ 39002/414x86yes1933UHD Graphics 615
~24.29%
4600
7913
900
1934
Intel Core i3-10100YAmber Lake-YAmber Lake512KB + 4MB51300 ‑ 39002/414x86yes1933UHD Graphics 615
~18.568%
5292
9659
1.39
2.53
122
220
303
536
788
1375
10.7
667
15.98
632
1683
2.01
1.8
0.34
0.2
1825
3535
8262
4359
7643
986
1889
34086
98.9
97.9
148
AMD Athlon Silver 7120UMendocino (Zen 2)Mendocino (Zen 2, Ryzen 7020)1MB + 2MB152400 ‑ 35002/26x86yes451Radeon 610M
AMD Athlon Silver 7120CMendocino (Zen 2)Mendocino (Zen 2, Ryzen 7020)1MB + 2MB152400 ‑ 35002/26x86yes451Radeon 610M
Intel Core i3-L13G4LakefieldLakefield1.5MB + 4MB10800 ‑ 28005/510x86yes1283UHD Graphics G4 (Lakefield GT1 48 EU)
~18.45%
816
1349
AMD Ryzen 3 3250UZenPicasso (Ryzen 3000 APU)1MB + 4MB152600 ‑ 35002/414x86yes1439Vega 3
~20.686%
3966
4088
10251
1.46
3.95
121.6n3
353n3
300n3
783n3
776n3
2010n3
12.72
668
14.5
457.3
1710
101
21.1
2.16n3
1.9
0.32
0.23
1399n3
2541n2
3291n3
9063n3
3829
7396
868
1838
824n4
1662n4
313.8
35541
100.6
97.2
140.15n2
105.2
AMD Ryzen Embedded R1606GZenRaven Ridge (Ryzen 2000 APU)1MB + 4MB152600 ‑ 35002/414x86yes1735Vega 3
~25.830%
139
317
350
710
888
1842
2
1456
3528
8969
877
1903
148
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
AMD Ryzen 3 3200UPicasso-U (Zen)Picasso (Ryzen 3000 APU)1MB + 4MB152600 ‑ 35002/414x86yes1804Vega 3
~19.482%
3755
4258
9284
129n3
334n3
301n5
690n5
765n3
1786n3
12.52
730
14.03
483.5
1613
97.8
19.5
1.96n4
2.2
0.36
0.23
1485n3
3372n4
9081.5n4
7816
3282
6922
3562n2
7143n2
826.5n2
1649n2
796.5n4
1651.5n4
130.3
23991
36.1
139n4
AMD Ryzen 3 2200UZenRaven Ridge (Ryzen 2000 APU)1MB + 4MB152500 ‑ 34002/414x86yes2168Vega 3
~17.359%
3386.5n2
3977.5n2
7775.5n2
1.15n2
2.99n2
117n4
312n4
12.98n2
756.5n2
14.27
459.3
1545n2
92
17.8
2.1n2
0.32n2
0.21n2
7422
2925n2
6826.5n2
3583
6937
667
1267
115.9
22930n2
AMD Ryzen 3 PRO 2200UZenRaven Ridge (Ryzen 2000 APU)1MB + 4MB152500 ‑ 34002/414x86yes2168Vega 3
AMD Ryzen 3 5125CBarcelo (Zen 3)Cezanne (Zen 3, Ryzen 5000)1MB + 8MB1530002/47x86yes589Vega 3
AMD Athlon Gold 3150UDali (Zen)Picasso (Ryzen 3000 APU)1MB + 4MB152400 ‑ 33002/414x86yes1438Vega 3
~16.157%
4189
3639
7566
1.36
3.99
117
352
303
795
13.86
727
40.13
1280
1631
106.6
22.47
2.03
2.2
0.35
0.22
1348
3065
8752
751
1847
AMD Ryzen Embedded R1505GZenRaven Ridge (Ryzen 2000 APU)2MB + 4MB102400 ‑ 33002/414x86yes1703Vega 3
~18.234%
97.3
264
243
596
0.65
1725
2505
6931
2667
5478
616
1370
612
1353
106n2
Intel Pentium Gold 6405UComet Lake-UComet Lake1MB + 2MB1524002/414x86yes1506UHD Graphics 610
~13.75%
595
1320
Intel Celeron 7305Alder Lake-UAlder Lake-M3.5MB + 8MB15900 ‑ 11005/510x86yes715UHD Graphics Xe G4 48EUs
Intel Celeron 6305Tiger Lake-UTiger Lake2.5MB + 4MB1518002/210x86yes1200UHD Graphics Xe G4 48EUs
~15.280%
3465
6611
0.99
1.93
83.95n2
161.05n2
217n2
416n2
566.5n2
1071.5n2
18.83
904.72
39.12
1231.05
1210
61.9
11.25
1.7n2
0.92
0.13
0.07
2834n2
2237.5n2
4262.5n2
2824.5n2
4949.5n2
628.5n2
1183.5n2
638n2
1198n2
326.7
21416
72.43
72.43
100.7n2
Intel Celeron 7300Alder Lake-UAlder Lake-M3.5MB + 8MB9700 ‑ 10005/510x86yes715UHD Graphics Xe G4 48EUs
AMD Athlon PRO 300UZen+Raven Ridge (Ryzen 2000 APU)1MB + 4MB152400 ‑ 33002/412x86yes1711Vega 3
AMD Athlon 300UZenRaven Ridge (Ryzen 2000 APU)1MB + 4MB152400 ‑ 33002/412x86yes1804Vega 3
~16.668%
3968
8724
119
308
308
637
14.09
807
15.44
510
1623
88.6
18.5
1.77
1.9
0.29
0.21
6868
2919
6134
3287
6053
765
1552
867
1840
133.6
22253
33.51
143
AMD Athlon Silver 3050UDali (Zen)Picasso (Ryzen 3000 APU)1MB + 4MB152300 ‑ 32002/214x86yes1438Vega 2
~175%
743
1429
Intel Celeron 6205Tiger Lake UTiger Lake2.5MB + 4MB152/210x86yes1200UHD Graphics Xe G4 48EUs
Apple A12 BionicApple A-Series8MB ‑ 24906/67ARMyes1920A12 Bionic GPU
~2825%
4774n5
11480n5
1118
2910
1117.5n2
2814.5n2
486197n3
42333.5n6
109.75n4
123.5n4
159.5n6
Qualcomm Snapdragon 7 Gen 1Cortex-A710 / A510Snapdragon1800 ‑ 24008/84ARMyes574Adreno 644
~17.932%
3646n3
11669n3
802
2970
786n4
2912.5n4
1057.5n4
3017n4
6056
30021n5
86.23n5
67.2n5
110n2
79n5
Qualcomm Snapdragon 780G 5GKryo 670 (Cortex-A78/A55)Snapdragon1900 ‑ 24008/85ARMyes995Adreno 642
~21.220%
9815
3674
11965
809
2998
26943
75.8
70.8
106
Google Tensor G2Cortex X1 / A76 / A55 + 4MB1800 ‑ 28508/85ARMyes435Mali-G710 MP7
~29.832%
4782n4
12839.5n4
1069n2
3276.5n2
1049n4
3217n4
1450n4
3600n4
300.65n2
44948n5
104.66n5
125n5
98n3
98n5
Google TensorExynos X1 / Cortex-A76 / A55 + 4MB1800 ‑ 28008/85ARMyes774Mali-G78 MP20
~25.720%
4815
11589
1041n3
2940n3
43376n3
90.1n3
104n3
105n3
72
HiSilicon Kirin 990 5GCortex-A76/-A55 ‑ 28608/87ARMyes1561Mali-G76 MP16
~24.827%
11668.5n2
3925n2
12549n2
769
3083
772.5n4
3076.5n4
345.4
22343n4
62.7n4
67.45n4
98n3
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
MediaTek Dimensity 8200-UltraCortex-A78 / A55 + 4MB2000 ‑ 31008/84ARMyes206Mali-G610 MP6
~24.930%
4858
16050
998
3889
1018
3833
1252
4034
42222
96.18
112
123
107
HiSilicon Kirin 990Cortex-A76/-A55 ‑ 28608/87ARMyes1561Mali-G76 MP16
~19.627%
11581
3881.5n2
12082.5n2
783
3059
770n2
2977.5n2
261357
21726.5n2
60.5n2
69n2
108n2
Samsung Exynos 990Exynos M5 / Cortex A-76 / Cortex-A55Exynos2000 ‑ 27308/87ARMyes1757UHD Graphics 750
~2923%
10510
4878n2
12559n2
940n5
2787n5
478.8
19122n5
53.9n5
63.25n4
97n5
MediaTek Dimensity 8020Cortex-A78 / A552000 ‑ 26008/86ARMyes654Mali-G77 MP9
~19.330%
3906
12596
836
3280
835
3310
1120
3617
28282
67.26
69.9
87
78
MediaTek Dimensity 1100Cortex-A78 / A552000 ‑ 26008/86ARMyes1059Mali-G77 MP9
~16.15%
655
2500
Qualcomm Snapdragon 860Cortex-A76 / A55 (Kryo 485)Snapdragon1.8MB + 5MB5 ‑ 29608/87ARMyes1625Adreno 640
~17.825%
3398
10570
756n2
2712.5n2
1037
3038
3913
26179n2
67.5n2
60.15n2
93n2
Qualcomm Snapdragon 7c Gen 2Cortex-A76 / A55 (Kryo 468)Snapdragon725508/88ARMyes943Adreno 618
~12.352%
755
511
3053
0.32
1.88
116.8
347
307
992
22.82
1132
1226
0.61
3620
2046
7703
1580
3667
1046.5n2
3483.5n2
20737
62.9
95
Qualcomm Snapdragon 855+ / 855 PlusCortex-A76 / A55 (Kryo 485)Snapdragon1.8MB + 5MB5 ‑ 29608/87ARMyes1625Adreno 640
~18.727%
9887
3654n2
10546.5n2
787.5n4
2846.5n4
751n2
2658.5n2
249792n2
24571n5
65.3n5
64.45n4
98n5
Qualcomm Snapdragon 7cCortex-A76 / A55 (Kryo 468)Snapdragon724008/88ARMyes943Adreno 618
~13.968%
1381
3518
0.75
2.4
114
323
321
830
29.56
1436
36.68
906
1000
47.9
8.4
0.63
3895
2059
7459
1579
3470
305
845
620n3
1725n3
384.75n2
22523n3
62.1n3
44.57n2
83.5n2
Qualcomm Snapdragon 855Cortex-A76 / A55 (Kryo 485)Snapdragon1.8MB + 5MB528408/87ARMyes1836Adreno 640
~25.239%
8574.5n2
2891
9555
3491n14
10987.5n14
742n8
2589.5n8
744n7
2666n7
1008
2757
246456n3
384.2
24044n21
59.15n16
64.2n15
106.5n20
Apple A11 BionicMonsoon / MistralApple A-Series8MB ‑ 23906/610ARMyes2285A11 Bionic GPU
~30.327%
4263n3
10380n3
935
2510
927
2339
453409n3
149
35209n3
96.7
91.5
130
Qualcomm QCM6490Kryo 670 (Cortex-A78/A55)Snapdragon1960 ‑ 27108/86ARMyes855Adreno 643
~25.625%
3822
11172
870
2944
1129
2999
38966
115.42
93.9
151
116
Qualcomm Snapdragon 778G+ 5GKryo 670 (Cortex-A78/A55)Snapdragon1900 ‑ 25008/86ARMyes562Adreno 642L
~20.323%
3760n2
11342n2
824n3
2929n3
6514n2
32109n3
90.28n3
63.69n3
116n3
93n3
Qualcomm Snapdragon 778G 5GKryo 670 (Cortex-A78/A55)Snapdragon1800 ‑ 24008/86ARMyes940Adreno 642L
~17.923%
3500n3
11003n3
787n11
2889n11
4438.5n2
25445n11
74.4n11
55n9
105.5n10
73.5n4
Qualcomm Snapdragon 778G 4GKryo 670 (Cortex-A78/A55)Snapdragon1800 ‑ 24008/86ARMyes940Adreno 642L
~18.727%
3557.5n2
11874n2
788n2
3019.5n2
1008
2418
6336
25361n2
74.88
56.6
109
79
Samsung Exynos 1380ARM Cortex-A55 / A78Exynos2000 ‑ 24008/85ARMyes281Mali-G68 MP5
~3330%
3555.5n2
11160n2
778n3
2728n3
1017n2
2878.5n2
591842
187
34739n3
102.6n3
75.3n2
124.5n2
107n3
MediaTek Dimensity 1000+Cortex-A77 / A552000 ‑ 26008/87ARMyes1306Mali-G77 MP9
~1920%
10598
3688
11987
796
2762
21933
48.35
50.9
73
Apple A10X FusionCyclone 4?Apple A-Series23906/310ARMyes2382A10X Fusion GPU
~21.514%
3928.5n2
9325.5n2
850
2324
82837.5n2
30760.5n2
MediaTek Dimensity 7050Cortex-A78 / A552000 ‑ 26008/86ARMyes228Mali-G68 MP4
~16.932%
3737n2
9132.5n2
762
1960
833n3
2318n3
957n3
2407n3
5412
31801n3
82.97n2
77.75n2
90n2
72n2
MediaTek Dimensity 1080Cortex-A78 / A552000 ‑ 26008/86ARMyes856Mali-G68 MP4
~16.632%
3754.5n2
8894n2
786
2342
765n3
2041n3
954
2229
5411
31662n3
71.87n3
62.9n3
102n3
74n3
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
MediaTek Dimensity 7030Cortex-A78 / A552000 ‑ 25008/86ARMyes113Mali-G610 MP3
~20.427%
3505
8625
789
2197
893
2214
5405
34140
102.38
91.6
121
106
MediaTek Dimensity 920Cortex-A78 / A552000 ‑ 25008/86ARMyes856Mali-G68 MP4
~14.223%
3440
8397
775.5n2
2097.5n2
5110
18244
48.56n2
46.05n2
58
46
MediaTek Dimensity 930Cortex-A78 / A552000 ‑ 22008/86ARMyes571IMG BXM-8-256
~14.427%
3272
8224
705
1919
669.5n2
1848n2
4563
23554n2
70.9n2
51.27n2
101.5n2
77.5n2
MediaTek Dimensity 7020Cortex-A78 / A552000 ‑ 25008/86ARMyes113IMG BXM-8-256
~17.930%
3264
8148
703
1908
697
1903
916
2315
28919
85.94
76.5
120
97
MediaTek MT8188JCortex-A78 / A552000 ‑ 22008/812ARMyes289Mali-G57 MP2
~1730%
3315
7741
711
2065
702
2070
949
2363
24222
74.31
65.6
122
75
MediaTek Dimensity 900Cortex-A78 / A552000 ‑ 24008/86ARMyes1306Mali-G68 MP4
~18.323%
3502.5n2
9026n2
734n5
2161n5
219220
25580n5
53.76n4
49.6n3
68.5n4
54
MediaTek Dimensity 820Cortex-A76 / A552000 ‑ 26008/87ARMyes1306Mali-G57 MP5
~1620%
7836n2
3022
10658
652
2678
18974
44.97
47.6
65
Intel Core m3-7Y32Kaby LakeKaby Lake512KB + 4MB4.51000 ‑ 30002/414x86yes2429HD Graphics 615
~18.418%
120
265
637
1293
3774
6736
773
1576
Intel Core m3-8100YAmber Lake-YAmber Lake512KB + 4MB51100 ‑ 34002/414x86yes1933UHD Graphics 615
~18.175%
3850
6055
96.6n4
179.5n4
243n3
413n3
11.43
818
18.57
906
1646
58.3
11.2
1.69n2
1.7
0.29
0.17
2206n2
2982.5n2
6245.5n2
6113
2702
5446
4159
6934
765
1279
845.5n2
1396.5n2
211n2
20267n3
56.75n2
135.5n4
Intel Pentium Gold 6500YAmber Lake-YAmber Lake512KB + 4MB51100 ‑ 34002/414x86yes1019UHD Graphics 615
~21.85%
3647
5963
Intel Processor N50Alder Lake-NAlder Lake-N + 6MB61000 ‑ 34002/210x86yes351UHD Graphics Xe 16EUs (Tiger Lake-H)
~21.19%
891
1339
1185
2024
Intel Pentium Gold 5405UWhiskey Lake-UPentium512KB + 2MB1523002/414x86yes1787UHD Graphics 610
~15.182%
3224n2
3560.5n2
7885.5n2
1.06n2
2.62n2
92.55n2
233n2
206n2
524n2
539
1390
16.96n2
878.75n2
22.53n2
711.01n2
1904n2
82.15n2
15.6n2
1.37n2
1.35n2
0.24n2
0.14n2
2179.5n2
2528n2
6501.5n2
5080
2810n2
5418.5n2
588n2
1323.5n2
585n2
1324n2
175
16762
18.15
102.6n2
Intel Pentium Gold 4415UKaby LakeKaby Lake512KB + 2MB1523002/414x86yes2480HD Graphics 610
~18.284%
3249
3587
8169
1.01
2.71
94n2
239.5n2
181.3
356
529
1366
16.66
846
20.86
659
2003
85.7
16
1.56
1.4
0.25
0.14
2188
3786
2575
6602
5719
2510
5270
2943
5630
599
1374
119.1
21322
110.2
82.2
AMD A10-9620PBristol RidgeBristol Ridge2MB152500 ‑ 34004/428x86yes2539Radeon R5 (Bristol Ridge)
~8.330%
2277
7420
0.81
2.66
72
230
18.24
977
14.41
470.9
1329n2
76.6
16.3
Intel Celeron 3965UKaby LakeKaby Lake512KB + 2MB1522002/214x86yes2480HD Graphics 610
Intel Pentium Gold 4417UKaby Lake RefreshKaby Lake Refresh1MB + 2MB1523002/414x86yes1764HD Graphics 610
~14.864%
3204
3570
8012
1.08
2.57
89
228
203
472
17.25
922
21.15
665
1792
81.1
15.54
1.4
0.24
0.14
5280
2254
4882
2695
5248
165.1
16702
26
102
Intel Celeron 5205UComet Lake-UComet Lake1519002/214x86yes1506UHD Graphics 610
~10.95%
480
912
Intel Pentium Silver N6005Jasper LakeJasper Lake1.5MB + 4MB102000 ‑ 33004/410x86yes1068UHD Graphics (Jasper Lake 32 EU)
~17.977%
5451n2
3970n2
12496n2
1.48n2
4.85n2
121n3
319n3
262n3
720n3
694n3
1833n3
17.57n2
880.65n2
16.55n2
554.13n2
1674.5n2
118.75n2
25.18n2
1.83n3
2.75n2
0.4n2
0.22n2
1805n3
2464
3465n3
9964n3
2764n3
5399n3
680n3
1537n3
695n3
1673n3
146n3
104.2
Intel Pentium Silver N6000Jasper LakeJasper Lake1.5MB + 4MB61100 ‑ 33004/410x86yes1068UHD Graphics (Jasper Lake 32 EU)
~19.686%
3985
4131.5n2
9642.5n2
1.41n2
3.59n2
113.65n4
291n4
255n4
650.5n4
672.5n4
1699n4
17.53
895
16.92
727
1330
93.4
18.4
1.61n5
2.8
0.41
0.22
1935n5
3786
3305n5
9212n5
3188
8341
724.5n2
1911.5n2
727n5
1915n5
293.2
34145.5n4
107.6n3
82.45n2
146n3
104.2
Intel Celeron N5095Jasper LakeJasper Lake1.5MB + 4MB152000 ‑ 29004/410x86yes1068UHD Graphics (Jasper Lake 16 EU)
~17.180%
5272n2
3544.5n2
12283n2
1.27n2
4.71n2
106n5
364n6
234n5
827n5
611n5
2164n5
20.51
1038.95
19.49n2
611.35n2
1705.5n2
116.5n2
25n2
2.01n5
2.5n2
0.37n2
0.2n2
1547n5
2936
3100n5
11013n5
2900n3
7842n3
646.5n4
2030.5n4
650.5n4
2028n4
89.8
125.3n6
95.2n2
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
Intel Celeron N5105Jasper LakeJasper Lake1.5MB + 4MB102000 ‑ 29004/410x86yes1068UHD Graphics (Jasper Lake 24 EU)
~22.741%
108.1
368
235
826
618
2175
2.01
1573
2940
3108
11153
649
2069
653
2080
102.15
134.2
96.2
Intel Celeron N5100Jasper LakeJasper Lake1.5MB + 4MB61100 ‑ 28004/410x86yes1068UHD Graphics (Jasper Lake 24 EU)
~14.95%
631
1788
Intel Pentium Silver J5040Gemini Lake RefreshGemini Lake4MB102000 ‑ 32004/414x86yes1502UHD Graphics 605
~13.475%
4296
2688
8279
1.09
3.49
91
279
202
630
519
1634
21.32
1083.02
15.29
515.52
1391
89.1
19.2
1.66
2
0.29
0.2
2060
2833
8946
2333
6359
535
1664
538
1672
108.2
80.2
AMD Athlon Silver 3050eDali (Zen)Raven Ridge (Ryzen 2000 APU)1MB + 4MB61400 ‑ 28002/414x86yes1292Vega 3
~15.877%
3339
6780
1.18
2.51
102
226.5n2
224.5n2
419.5n2
576n2
1174.5n2
41.6
1302
18.99
595
1403
70.1
13.8
1.27n2
1.3
0.24
0.16
2298.5n2
2524.5n2
6641.5n2
2948
5000
662
1224
594.5n2
1172n2
454.6
22479
55.6
98.6n2
AMD 3020eDali (Zen)Raven Ridge (Ryzen 2000 APU)1MB + 4MB61200 ‑ 26002/214x86yes1228Vega 3
~12.966%
92
196
236
369
603
943
16.95
879
29
903
1232
65.3
12.8
1.15
1.1
0.16
0.11
2964
2597
4963
2809
4803
646
1195
638
1188
20692
59.5
105
Intel Pentium Silver N5030Gemini Lake RefreshGemini Lake4MB61100 ‑ 31004/414x86yes1502UHD Graphics 605
~15.275%
3895
2498
7724
1.02
3.09
80.9n2
225.95n2
182.5n2
425.5n2
430
911
24.86
1247
14.65
526
1163
84
17.58
0.71
3449.5n2
2645n2
7238n2
2176
5662
356
1177
512n3
1221n3
355.8
21899n2
65.1n2
59.3n2
95.4n3
Intel Celeron J4125Gemini Lake RefreshGemini Lake4MB102000 ‑ 27004/414x86yes1502UHD Graphics 600
~11.480%
3740n3
2112n3
7128n3
0.85n3
3.06n3
75.3n5
243n5
170n5
430n5
438n3
1186n3
24.65n3
1845n3
17.37n3
603n3
1048n3
61.35n3
13.05n3
1.46n5
1.8n3
0.26n3
0.18n3
2391n5
7856
2369n5
7494n5
1924n3
5468n3
453n3
1482n3
455n5
1394n5
64.65n2
88.7n4
68.2
Intel Celeron J4105Gemini LakeGemini Lake4MB101500 ‑ 25004/414x86yes2195UHD Graphics 600
~11.85%
73
270
Intel Pentium Silver N5000Gemini LakeGemini Lake4MB61100 ‑ 27004/414x86yes2195UHD Graphics 605
~14.684%
3320n2
2295n6
6688n6
0.94
2.8
78n12
236.5n12
170n3
484n3
438
1232
24.17
1319
16.83
645
1245
76.3
15.4
1.31
1.9
0.27
0.19
2707
2431
7320
4819
1777.5n6
5547.5n6
2027n7
5790n7
421
1582
194.6
13121n4
33.94
20.1
89.1n2
Intel Celeron J4005Gemini LakeGemini Lake4MB102000 ‑ 27002/214x86yes2195UHD Graphics 600
~10.545%
2085
3500
0.85
1.39
77
144
16.34
1245
33.07
1042
798
49.92
9.96
0.88
0.96
0.13
0.09
4124
1997
3491
Intel Celeron N6211Elkhart LakeElkhart Lake1.5MB6.51200 ‑ 30002/210x86yes516UHD Graphics (Jasper Lake 16 EU)
~11.773%
2696
4693
0.97
1.65
76
128
174
285
439
735
21.98
1070.14
49.66
1561.18
731
45.25
10
0.88
0.98
0.14
0.07
3767
2593
3974
2585
3606
559
857
556
844
89.2
63.2
Intel Celeron 4205UWhiskey Lake-UCeleron512KB + 2MB1518002/214x86yes1787HD Graphics 610
~0.92%
136
Intel Celeron 3867UKaby LakeKaby Lake512KB + 2MB1518002/214x86yes1750HD Graphics 610
~8.114%
134
159
2285
3830
434
873
Intel Celeron 3865UKaby LakeKaby Lake512KB + 2MB1518002/214x86yes2480HD Graphics 610
~13.652%
2853
5425
0.86
1.66
72
142
21.38
1120
39.36
1213
1108
54.4
10.8
0.81
0.13
0.08
3627
1843
3224
2240
3719
176.6
13961
Samsung Exynos 9825Exynos M3 / Cortex-A55Exynos1900 ‑ 27308/87ARMyes1757Mali-G76 MP12
~18.227%
8839
4550n2
10425.5n2
813.5n2
2184n2
834
2331
215665
19021.5n2
45.33n2
59.7
107.5n2
Samsung Exynos 9820Exynos M3 / Cortex-A55Exynos1900 ‑ 27008/88ARMyes1757Mali-G76 MP12
~17.425%
8492.5n2
4505.5n4
10374n4
836
2306
825
2259
20469.5n4
44.24n2
56n3
115n2
HiSilicon Kirin 820Cortex-A76/-A551840 ‑ 23608/87ARMyes1354Mali-G57 MP6
~19.423%
9969
3113
9860
642
2434
238069
19727
54.8
49.5
115
MediaTek Dimensity 810Cortex-A76 / A552000 ‑ 24008/86ARMyes856Mali-G57 MP2
~19.327%
7956
2846
7135
605
1788
598n2
1791.5n2
619
16718.5n2
43.83
39.8
62
MediaTek Dimensity 800Cortex-A76 / A5520008/87ARMyes1306Mali-G57 MP4
~11.520%
2524
8649
523
2143
23814
14751
36.83
37.9
56
HiSilicon Kirin 820eCortex-A76/-A551840 ‑ 22208/87ARMyes1354Mali-G57 MP6
~13.723%
2820
7841
566
1853
3553
18755
56.22
34.1
86
64
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
HiSilicon Kirin 810Cortex-A76/-A551880 ‑ 22708/87ARMyes1658Mali-G52 MP6
~16.220%
2836
7891
598n2
1919.5n2
217082
16604n3
47.86n3
48.3n3
83n3
HiSilicon Kirin 980Cortex-A76/-A55 ‑ 26008/87ARMyes2297Mali-G76 MP10
~17.427%
9587.5n2
3314n9
9854n9
695.5n4
2500n4
707n2
2558n2
246733n2
21603.5n10
50.18n6
59.05n6
99n10
Qualcomm Snapdragon 695 5GKryo 660 Gold (2x Cortex-A78) / Silver (6x Cortex-A55)Snapdragon1700 ‑ 22008/86ARMyes780Adreno 619
~15.727%
3084n5
7355n5
672.5n22
1922n22
903.5n6
2075n6
4737
22285n19
64.22n17
45.45n14
94n11
65n16
Samsung Exynos 1280Exynos2000 ‑ 24008/85ARMyes635Mali-G68 MP4
~15.420%
3376n2
7738.5n2
737n3
1878n3
4737
24340n2
64.76n2
49.62n2
75.5n2
Samsung Exynos 9810Exynos M3 / Cortex-A55Exynos ‑ 29008/810ARMyes2172Mali-G72 MP18
~13.423%
6098.5n2
3698n3
8874n3
679
2033
154312n2
14711.5n4
32.26
39
68n4
Qualcomm Snapdragon 850Cortex-A75 / A55 (Kryo 385)Snapdragon1.5MB + 2MB2750 ‑ 29608/810ARMyes2132Adreno 630
~9.634%
1166
2284
34
1678
37
1456
4745
28
4.9
2269
7118
488
1923
13947
58.8
Qualcomm Snapdragon 845Cortex-A75 / A55 (Kryo 385)Snapdragon + 2MB28008/810ARMyes2132Adreno 630
~21.230%
10839.5n2
2429n27
8849n27
501
1986
466
2012
244932n2
451
16369.5n28
46.61n4
51.05n4
97n17
Qualcomm Snapdragon 765GKryo 475 Gold / SilverSnapdragon1800 ‑ 24008/87ARMyes1470Adreno 620
~16.723%
7961
2863n3
7665n3
606n17
1810n17
208510
18551n14
50.5n12
49.8n9
76n13
Qualcomm Snapdragon 765Kryo 475 Gold / SilverSnapdragon1800 ‑ 23008/87ARMyes1470Adreno 620
~12.820%
2785
7832
592.5n2
1911.5n2
17028
17001n2
48.46n2
36n2
75n2
Qualcomm Snapdragon 4 Gen 12x Cortex-A78 / 6x Cortex-A55Snapdragon1804 ‑ 20168/86ARMyes435Adreno 619
~15.516%
642
1954
19867
58.04
48.5
91
68
Qualcomm Snapdragon 750G 5GKryo 570 (Cortex-A77/A55)Snapdragon1800 ‑ 22008/88ARMyes1179Adreno 619
~14.725%
7402
3054
7945
643n9
1878n9
8058
17823n7
54.7n7
44.27n6
79n6
63
AMD 3015ePollock (Zen)Raven Ridge (Ryzen 2000 APU)1MB + 4MB61200 ‑ 23002/414x86yes1228Vega 3
~10.65%
464
860
AMD 3015CePollock (Zen)Raven Ridge (Ryzen 2000 APU)1MB + 4MB61200 ‑ 23002/414x86yes1228Vega 3
~2816%
564
1135
344.3
23395
75.3
67.7
118
Intel Celeron N4120Gemini Lake RefreshGemini Lake4MB61100 ‑ 26004/414x86yes1502UHD Graphics 600
~14.473%
3403
2159
6432
0.88
2.68
73.2n3
224n3
165n3
490n3
416.5n2
1230n3
25.57
17.56
661
1.31n3
1.8
0.25
0.18
2570.5n2
2279n3
7184n3
1876n3
5668n3
435.5n2
1503n2
439n3
1509n3
520
17701n2
54.4n2
46n2
86.2n4
Qualcomm Snapdragon 690 5GKryo 560 Gold (Cortex-A77) / Silver (Cortex-A55)Snapdragon1700 ‑ 20008/88ARMyes1276Adreno 619L
~25.225%
7298
2739.5n2
6837n2
600n2
1794.5n2
515836
481.5
10630.5n2
30.89n2
27.25n2
51.5n2
MediaTek Dimensity 800UCortex-A76 / A552000 ‑ 24008/87ARMyes1306Mali-G57 MP3
~11.118%
8035
599n4
1779.5n4
12938.5n2
16629n3
33.82n2
32.05n2
47n3
MediaTek Dimensity 6020Cortex-A76 / A552000 ‑ 22008/87ARMyes289Mali-G57 MP2
~1223%
539
1813
709
1781
4668
16765
56.65
45.2
66
52
UNISOC T820Cortex-A76 / A552100 ‑ 27008/86ARMyes470Mali-G57 MP4
~17.39%
2857
8410
639
2283
UNISOC Tangula T770Cortex-A76 / A552000 ‑ 25008/86ARMyes1444Mali-G57 MP4
~16.89%
2763
8087
622
2226
UNISOC Tangula T760Cortex-A76 / A55 + 3MB2000 ‑ 20008/86ARMyes1452Mali-G57 MP4
~13.35%
541
2155
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
Qualcomm Snapdragon 732GKryo 470 Gold / SilverSnapdragon23008/88ARMyes1209Adreno 618
~22.423%
6709
2616n2
7036.5n2
565n3
1787n3
430
17398n3
52.6n3
43.2n3
72n3
Qualcomm Snapdragon 730GKryo 470 Gold / SilverSnapdragon22008/88ARMyes1719Adreno 618
~12.825%
2556
6987
543n2
1726n2
547n6
1744.5n6
199813
16602.5n6
46.87n6
43.3n6
69n6
Mediatek Helio G99Cortex-A76 / A55Mediatek2000 ‑ 22008/86ARMyes486Mali-G57 MP2
~1330%
2672n3
7896n3
555
1921
543.5n8
1803.5n8
721n2
1957.5n2
18447.5n8
55.89n4
34.55n4
86n4
56.5n4
MediaTek Dimensity 700Cortex-A76 / A552000 ‑ 22008/87ARMyes1014Mali-G57 MP2
~18.630%
2531
6853
547n9
1700n9
711
1919
3167
592
16871n9
44.7n8
37n6
56n4
54n4
Qualcomm Snapdragon 730Kryo 470 Gold / SilverSnapdragon22008/87ARMyes1719Adreno 618
~1523%
7184
2481.5n2
6848.5n2
545n2
1713.5n2
199625
16378.5n4
43.58n4
40.1n4
73n4
Qualcomm Snapdragon 720GCortex-A76 / A55Snapdragon23008/88ARMyes1719Adreno 618
~12.320%
2620
6263
567n7
1694n7
18494
17265n5
48.22n4
41n4
69n5
Mediatek Helio G96Cortex-A76 / A55Mediatek2000 ‑ 20508/812ARMyes920Mali-G57 MP2
~11.432%
2522n2
7630n2
531
1873
528n3
1755n3
680
1688
4433.5n2
18633.5n2
52.37n2
43.55n2
66n2
50n2
Mediatek Helio G95Cortex-A76 / A55Mediatek2000 ‑ 20508/812ARMyes1605Mali-G76 MP4
~10.923%
2476
6436
510.5n6
1680n6
12299
15551.5n4
36.93n5
33.65n4
53n5
40
Mediatek Helio G90TCortex-A76 / A55Mediatek20508/812ARMyes1605Mali-G76 MP4
~11.227%
6843n2
2424.5n4
6836.5n4
391
1612
503n3
1593n3
107245n2
15619n4
35.74n4
33.95n4
54n4
UNISOC T765Cortex-A76 / A552100 ‑ 23008/86ARMyes4Mali-G57 MP2
~15.35%
750
1935
Qualcomm Snapdragon 480 Plus 5GCortex-A76 / 55Snapdragon1800 ‑ 22008/88ARMyes1080Adreno 619
~14.227%
2531
6819
554n3
1643n3
746
1917
4242n2
20689n3
65.69n3
47.6n3
85.5n2
70n2
Qualcomm Snapdragon 480 5GCortex-A76 / 55Snapdragon1800 ‑ 20008/88ARMyes1080Adreno 619
~14.220%
2478
6917
510n9
1663n9
187431
16018n6
46.44n5
38.4n5
70n5
MediaTek Dimensity 720Cortex-A76 / A5520008/87ARMyes1245Mali-G57 MP3
~13.627%
2329.5n2
6174n2
499.5n4
1603.5n4
660
1856
176204
16261.5n4
37.29n4
37.7n3
51n3
62
Mediatek Helio P90Cortex-A75 / A55Mediatek22008/812ARMyes1468PowerVR GM9446
~14.223%
7696
1994
6162
408n3
1524n3
195354
14607
43.53
41.5
91
HiSilicon Kirin 970Cortex-A73/-A5324008/810ARMyes2300Mali-G72 MP12
~11.323%
6877.5n2
1901n8
6714.5n8
386n2
1711.5n2
202050
11085n8
25.88n3
27.9n3
69n3
HiSilicon Kirin 960Cortex-A73/-A5324008/816ARMyes2603Mali-G71 MP8
~13.316%
1869n7
6445n7
264076n2
10236n7
23.46n2
20.85n2
70n2
HiSilicon Kirin 960sCortex-A73/-A5321008/816ARMyes2603Mali-G71 MP8
~11.69%
6502
1634
5809
6802
AMD A9-9420eStoney RidgeBristol Ridge1MB ‑ 25002/228x86yes2028Radeon R5 (Stoney Ridge)
~0.62%
97
Intel Pentium Gold 4425YKaby LakeKaby Lake512KB + 2MB617002/414x86yes2434UHD Graphics 615
~13.35%
2160
4330
Intel Pentium Gold 4415YKaby LakeKaby Lake512KB + 2MB616002/414x86yes2434HD Graphics 615
~6.741%
2521
5586
0.75
1.8
65
164
16.34
1240
31.07
982
1455
58.3
11
1.09
0.1
11875
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
Apple A9XCyclone 322602/214ARMyes3024A9X / PowerVR GT7xxx
~30.414%
3097
5284
59226n2
181
19736.5n2
101
Qualcomm Snapdragon 678Kryo 460 Gold (Cortex-A76) / Silver (Cortex-A55)Snapdragon1700 ‑ 22008/811ARMyes1100Adreno 612
~14.727%
7022
2219
5674
2483
6570
531
1541
2743
15828
47.39
41.17
71
Qualcomm Snapdragon 675Kryo 460 Gold (Cortex-A76) / Silver (Cortex-A55)Snapdragon1600 ‑ 20008/811ARMyes1914Adreno 612
~12.427%
6668
2323n2
6222n2
504n3
1610n3
486
924
190355
15702.5n2
44.17n2
41.4
76n2
Samsung Exynos 8895 OctaMongoose / Cortex-A53Exynos23008/810ARMyes2457Mali-G71 MP20
~17.611%
6325
2015n3
6711n3
238041
13265n3
Qualcomm Snapdragon 685 4GKryo 265 Gold (Cortex-A73) / Silver (Cortex-A53)Snapdragon1900 ‑ 28008/86ARMyes1100Adreno 610
~11.923%
2055
7087
442
1787
4077
15695
58.95
50.9
74
58
Qualcomm Snapdragon 680 4GKryo 265 Gold (Cortex-A73) / Silver (Cortex-A53)Snapdragon1800 ‑ 24008/86ARMyes1100Adreno 610
~10.525%
1818.5n4
5636n4
377.5n12
1604n12
425.5n2
1157.5n2
12386n9
42.03n7
39.64n7
63.5n6
45.5n4
Qualcomm Snapdragon 835 (8998)Kryo 280Snapdragon24508/810ARMyes2464Adreno 540
~15.343%
664
3198
0.27
1.59
7226n2
1155n2
4100n2
1920n18
6517n18
388
1714
386
1669
266992
298.5n2
11484n20
36.4n2
41.7n2
77n2
UNISOC T750Cortex-A76 / A55 + 3MB1800 ‑ 20008/86ARMyes249Mali-G57 MP2
~11.25%
470
1432
UNISOC Tangula T740Cortex-A75 / A55 Tangula + 2MB1800 ‑ 18008/812ARMyes1449PowerVR GM9446
~9.35%
367
1727
Qualcomm Snapdragon 712Kryo 360Snapdragon23008/810ARMyes1777Adreno 616
~11.223%
6973
1875
5975
317
1491
185962
11945n2
37.21
37.5
59.5n2
Apple A10 FusionAPL1021 Hurricane / ZephyrApple A-Series23404/216ARMyes2659A10 Fusion GPU
~14.625%
3499n3
5922n3
771n2
1429n2
777n3
1421n3
49329n2
26053n5
65.2n2
65.95n2
95n2
Samsung Exynos 8890 OctaMongoose / Cortex-A53Exynos26008/814ARMyes2850Mali-T880 MP12
~3211%
1810
5354
207417n3
321
12915.5n4
Samsung Exynos 9611Exynos 7 SeriesExynos1700 ‑ 23008/810ARMyes1486Mali-G72 MP3
~8.220%
347n3
1299n3
347.5n4
1323.5n4
150124
9810n7
27.68n7
29.2n7
55n7
Samsung Exynos 9610Exynos 7 SeriesExynos1700 ‑ 23008/810ARMyes1714Mali-G72 MP3
~12.414%
1721
5605
172805
10322
33.07
62
HiSilicon Kirin 955Cortex-A72/-A5325008/816ARMyes2814Mali-T880 MP4
~14.616%
8222
1744
5260
253465
11920.5n2
32.26
36
Intel Celeron J4115Gemini LakeGemini Lake4MB101800 ‑ 25004/414x86yes1507UHD Graphics 600
~11.859%
3683
2087
7426
0.83
3.2
70.6n2
244n2
156.5n2
546.5n2
27.38
1472
19.09
564
1203
76.3
17.5
1.42n2
1.7
0.25
0.17
2515n2
2199.5n2
7613.5n2
399n2
1420.5n2
81.65n2
Intel Celeron N4100Gemini LakeGemini Lake4MB61100 ‑ 24004/414x86yes2200UHD Graphics 600
~13.482%
2805n4
2013n5
5904n5
0.83n3
2.18n3
68.6n12
198n12
152n7
391n7
386.5n2
960.5n2
28.5n3
1474n3
19.41n3
790n3
1139n3
58.2n3
11.8n3
1.18n6
1.7n3
0.23n3
0.16n3
3176n7
2158n7
6608n7
1629n2
5041.5n2
1795n7
5259n7
408n4
1232n4
405n7
1271n7
233
11328n5
75.2n5
Intel Pentium Gold 4410YKaby LakeKaby Lake512KB + 2MB615002/414x86yes2434HD Graphics 615
Intel Celeron 3965YKaby LakeKaby Lake512KB + 2MB615002/214x86yes2434HD Graphics 615
HiSilicon Kirin 950Cortex-A72/-A5323008/816ARMyes2946Mali-T880 MP4
~32.811%
1683
5283
270825
460.6
11329n3
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
Samsung Exynos 9609Exynos 7 SeriesExynos1600 ‑ 22008/810ARMyes1714Mali-G72 MP3
~12.823%
6123
1478
5223
1603n2
5324n2
131830
9808n2
31.18n2
29.9
63n2
AMD A6-9220CStoney RidgeBristol Ridge1MB61800 ‑ 27002/228x86yes1784Radeon R5 (Stoney Ridge)
Intel Celeron N4505Jasper LakeJasper Lake1.5MB + 4MB102000 ‑ 29002/210x86yes1073UHD Graphics (Jasper Lake 16 EU)
~16.786%
3214n2
3621.5n2
6860.5n2
1.28n2
2.49n2
106n2
197.5n2
230n2
441.5n2
603.5n2
1148.5n2
20.92n2
1003.47n2
35.84n2
1131.72n2
1061.5n2
72.3n2
13.65n2
1.19n2
1.3n2
0.19n2
0.1n2
2899n2
5741.5n2
3046.5n2
6003.5n2
2945.5n2
5082n2
648n2
1214.5n2
653.5n2
1232n2
353.4
24502
89.8n2
71.7
114.15n2
80.25n2
Intel Celeron J4025Gemini Lake RefreshGemini Lake4MB102000 ‑ 29002/214x86yes1507UHD Graphics 600
~1177%
2575
2337
4556
0.96
1.81
77
148
178
293
461
857
23.08
1175.7
31.07
983.3
783
53.1
10.6
0.98
1
0.15
0.1
3792
7396
2636
4955
2170
3847
497
919
500
927
89.2
67.1
Intel Celeron N4500Jasper LakeJasper Lake1.5MB + 4MB61100 ‑ 28002/210x86yes1073UHD Graphics (Jasper Lake 16 EU)
~15.675%
2053
1.04
2.1
82
171
188
332
452
709
22.82
1132
50.2
1270
1076
60.6
12.02
0.74
1.1
0.18
0.1
4249
2853
5394
594n3
1018n3
457
662
197.1
24838
82.5
71.5
94.75n2
91.2
Intel Celeron N4020Gemini Lake RefreshGemini Lake4MB61100 ‑ 28002/214x86yes1507UHD Graphics 600
~10.973%
2495
2184
4427
0.94
1.71
73.75n2
127.1n2
162.4n2
279n2
308
616
24.17
1220
29.66
932
766
50.1
9.97
0.83n2
0.95
0.13
0.09
4064
2456
4498
2004n2
3433n2
462n3
836n3
49.9
80.2n2
55.25n2
MediaTek Kompanio 5202x Cortex-A76 / 6x A55MediaTek Kompanio 50020008/87ARMyes408Mali-G52 MP2
~2718%
510
1532
172.6
23443
75.55
40.9n2
121
80.5n2
Mediatek Helio P70Cortex-A73 / A53Mediatek21008/812ARMyes1707Mali-G72 MP3
~9.127%
6339
1479n4
5124n4
298n3
1399n3
295n7
1443n7
171015
9097n8
23.72n4
32.04
47.5n8
Mediatek Helio P65Cortex-A75 / A55Mediatek20008/812ARMyes1633Mali-G52 MP2
~7.927%
6229
1711
5097
357
1211
354n2
1239.5n2
6412
10460.5n2
33.29n2
27.9n2
51.5n2
MediaTek Helio X27 MT6797XMediatek Helio 20260010/10ARMyes1997Mali-T880 MP4
~12.29%
1690n4
4781.5n4
159874
6031.5n4
Qualcomm Snapdragon 710Kryo 360Snapdragon22008/810ARMyes1853Adreno 616
~12.732%
6539n2
1863
5589
1821n4
5850.5n4
394
1515
393n2
1478n2
180127n3
12364.5n6
36.48n3
36.7n3
69.5n6
Qualcomm Snapdragon 670Kryo 360 Gold / SilverSnapdragon20168/810ARMyes1960Adreno 616
~1027%
6467n2
1624n3
5172n3
344
1322
349n3
1343n3
171622n2
10950n4
33.13n4
32.5n3
62n3
Qualcomm Snapdragon 665Kryo 260Snapdragon22008/811ARMyes1716Adreno 610
~9.327%
6117
1495n3
5366n3
314n3
1379n3
310.5n8
1371.5n8
172978
9260n9
30.59n6
29.12n6
51n9
Qualcomm Snapdragon 662Kryo 260Snapdragon1800 ‑ 20008/811ARMyes1716Adreno 610
~7.720%
1472
4938
314n11
1381n11
16222
9385n12
31.63n10
28.5n9
52n11
Qualcomm Snapdragon 660Kryo 260Snapdragon22008/814ARMyes2416Adreno 512
~16.330%
6141n2
1617n11
5850n11
321.5n2
1305n2
330.5n4
1440.5n4
186416n3
630
10070n14
30.82n3
32.3
59n9
Qualcomm Snapdragon 821 MSM8996 ProKryoSnapdragon1.5MB24004/414ARMyes2636Adreno 530
~11.714%
1834.5n4
4356n4
215105
9493n10
26.42
22.4
Samsung Exynos 7885Cortex-A73/-A53Exynos22008/814ARMyes2179Mali-G71 MP2
~10.811%
5054
1525.5n2
4430n2
9257.5n2
57
UNISOC T619Cortex-A75 / A55 + 1MB1800 ‑ 22008/812ARMyes1484Mali-G57 MP1
~9.85%
403
1489
UNISOC T618Cortex-A75 / A55 + 1MB2000 ‑ 20008/812ARMyes1484Mali-G52 MP2
~11.520%
1911
5744
382n6
1325.5n6
12356.5n6
42.61n4
33.33n4
74.5n6
58
UNISOC T616Cortex-A75 / A55 + 1MB1800 ‑ 20008/812ARMyes1484Mali-G57 MP1
~10.427%
1734n2
5377.5n2
355n6
1428n6
428n3
1548n3
3122.5n2
14081n4
50.52n4
38.3n4
80n3
57n3
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
UNISOC T612Cortex-A75 / A55 + 1MB1800 ‑ 20008/812ARMyes598Mali-G52 MP1
~9.118%
346n5
1323n5
2969
12581
45.17n2
31.65n2
73
46
UNISOC T610Cortex-A75 / A55 + 1MB1800 ‑ 20008/812ARMyes1484Mali-G52 MP2
~8.416%
348.5n4
1298.5n4
1942
11952
44.18n2
33.43n2
53
UNISOC T606Cortex-A75 / A55 + 1MB16008/812ARMyes1484Mali-G57 MP1
~8.220%
310n10
1185.5n10
375n2
1442.5n2
1218
10858n5
48.46n3
35.13n2
51.5n2
UNISOC Tangula T700Cortex-A75 / A551800 ‑ 18008/812ARMyes999Mali-G52 MP2
~7.616%
351.5n2
1342n2
2078
10382
35.89
29.9
65
Mediatek Helio G88Cortex-A75 / A55Mediatek1800 ‑ 20008/812ARMyes1360Mali-G52 MP2
~7.632%
1785.5n2
5838.5n2
363
1257
375n5
1284n5
436n4
1262.5n4
3345
9404n5
28.58n3
24.4n3
48n3
34.5n2
Mediatek Helio G85Cortex-A75 / A55Mediatek1800 ‑ 20008/812ARMyes1360Mali-G52 MP2
~9.720%
5907
1662
5301
353n11
1305n11
12107n9
30.77n5
27.85n4
45n5
Mediatek Helio G80Cortex-A75 / A55Mediatek20008/812ARMyes1707Mali-G52 MP2
~9.430%
5821
1702.5n2
5424.5n2
363.5n12
1337.5n12
413
1384
7818n2
11782n9
33.32n8
28.65n8
49n7
44.5n2
Mediatek Helio G70Cortex-A75 / A55Mediatek20008/812ARMyes1707Mali-G52 MP2
~9.423%
6725
1832
5734
387.5n2
1307.5n2
13756
10648
29.08
31.2
44
HiSilicon Kirin 710Cortex-A73/-A5322008/812ARMyes1918Mali-G51 MP4
~9.827%
5856.5n2
1550n11
5430n11
327n2
1339n2
330.5n2
1338n2
184162n2
9695n13
31.56n8
31.55n6
62n11
HiSilicon Kirin 710ACortex-A73/-A5320008/814ARMyes1317Mali-G51 MP4
~9.220%
6201
1440n2
5231.5n2
297n3
1312n3
9453.5n2
30.19n2
26.37n2
55n2
Mediatek Helio P60TCortex-A73 / A53Mediatek20008/812ARMyes2179Mali-G72 MP3
~17.520%
258.5n2
1091.5n2
6791
716
10523.5n2
37.36n2
30.44n2
69.5n2
48
Mediatek Helio P60Cortex-A73 / A53Mediatek20008/812ARMyes2179Mali-G72 MP3
~10.223%
6391n2
1479.5n2
5648.5n2
293n3
1422n3
142690n2
8778n7
26.19
33
51n4
Mediatek MT8788Cortex-A73 / A53Mediatek20008/812ARMyes1724Mali-G72 MP3
~7.420%
971
4983
291n2
1383n2
329
1284
10152.5n2
36.44
25.3
Mediatek MT8183Cortex-A73/-A53Mediatek MT820008/812ARMyes1478Mali-G72 MP3
~1027%
6072
1430.5n2
5376.5n2
300n5
1293n5
323
1214
175006
9822n5
25.62n3
26.7n4
55.5n4
Samsung Exynos 7420 OctaCortex-A57/-A53Exynos21008/814ARMyes3216Mali-T760 MP8
~28.914%
6201
1237.5n2
4958n2
169794n4
546n5
8518n5
Mediatek Helio X25 MTK6797TCortex-A72 / A53Mediatek Helio 20250010/1020ARMyes2850Mali-T880 MP4
~9.67%
1791
4554
6089
Qualcomm Snapdragon 820 MSM8996KryoSnapdragon1.5MB22004/414ARMyes2926Adreno 530
~10.114%
1662n5
4021n5
170521n3
8987n10
24.59
21
Nvidia Tegra X1Erista (Cortex-A57 + A53)Tegra2.5MB20008/820ARMyes3271Tegra X1 Maxwell GPU
~27.311%
1510
4264
129085
715n2
8031.5n2
Apple A9Cyclone 318002/214ARMyes3024A9 / PowerVR GT7600
~24.916%
2556
4459
531n2
970n2
48849n4
223n2
16375n4
AMD A4-9120Stoney RidgeBristol Ridge1MB10-152200 ‑ 25002/228x86yes2393Radeon R2 (Stoney Ridge)
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
AMD A4-9120CStoney RidgeBristol Ridge1MB61600 ‑ 24002/228x86yes1809Radeon R4 (Stoney Ridge)
Qualcomm Snapdragon 810 MSM8994Cortex-A57/-A53Snapdragon20008/820ARMyes3544Adreno 430
~17.723%
3012.5n2
1093.5n6
3218n6
1350
3440
117831n6
579n11
7924.5n14
18.08
22.4
Samsung Exynos 850Cortex-A55 ‑ 20008/88ARMyes1314Mali-G52 MP1
~5.323%
987
4986
178n7
1042n7
10533
5454.5n6
20.2n6
15.7n6
36.5n6
25
Qualcomm Snapdragon 652 MSM8976Cortex-A72/-A53Snapdragon18008/828ARMyes3227Adreno 510
~14.19%
1454
4612
215365
9071.5n4
Qualcomm Snapdragon 808 MSM8992Cortex-A53/A57Snapdragon20006/620ARMyes3544Adreno 418
~20.318%
3773
1022
2952
1124
2798
97824n2
651n6
7948.5n8
Qualcomm Snapdragon 650 MSM8956Cortex-A72/-A53Snapdragon18006/628ARMyes3227Adreno 510
~8.57%
1458
2869
8368.5n4
Apple A8XCyclone 22MB + 4MB15003/320ARMyes3352UHD Graphics 750
~20.920%
1812
4477
1821
4357
381
1060
73235
291.1
10512
Nvidia Tegra K1 (Denver)DenverTegra2MB23002/228ARMyes3353GeForce ULP K1 (Tegra K1 Kepler GPU)
~21.818%
4055
1811n2
3029n2
1729
2776
35765
919
8210
Mediatek Helio X20 MT6797Cortex-A72 / A53Mediatek Helio 20230010/1020ARMyes2850Mali-T880 MP4
~9.57%
1599
4468
7999.5n4
Mediatek MT8176Cortex-A72/-A53Mediatek21006/628ARMyes2689PowerVR GX6250
~9.37%
1582.5n2
3232.5n2
8897n3
Mediatek Helio P25Cortex-A53Mediatek Helio 2026008/816ARMyes2872Mali-T880 MP2
~6.520%
4348
836.5n4
3860.5n4
177
891
177
891
135249
4582.5n4
Mediatek MT8173Cortex-A72/-A53Mediatek24004/428ARMyes3216PowerVR GX6250
~7.97%
1204
3305
8570
MediaTek MT8169ACortex-A55Mediatek MT820006/612ARMyes350Mali-G52 MP2
~5.711%
5843n2
23.54n2
15.76n2
38.5n2
25n2
Mediatek Helio G37Cortex-A53Mediatek Helio G1800 ‑ 23008/812ARMyes1268PowerVR GE8320
~523%
800
3716
161n4
706n4
193
845
6000n2
21.16
15.01
37
Mediatek Helio G35Cortex-A53Mediatek Helio G23008/812ARMyes1268PowerVR GE8320
~4.320%
783
3585
170n5
881n5
1727
5369.5n2
17.96
13.3
34
Mediatek Helio G36Cortex-A53Mediatek Helio G22008/812ARMyes325PowerVR GE8320
~4.618%
139
512
1003
5207
23.11
16.9
43
27
Mediatek MT8173CCortex-A72/-A53Mediatek21004/428ARMyes3216PowerVR GX6250
~51.55%
590n3
10319n3
Mediatek MT6595 TurboCortex-A7/-A17Mediatek2MB25008/828ARM3599PowerVR G6200
Mediatek MT8768Cortex-A53Mediatek MT81500 ‑ 20008/8ARMyes1416PowerVR GE8320
~4.518%
789
3745
152n3
780n3
4142.5n2
15.5n2
13.34
31n3
Samsung Exynos 5433 OctaCortex-A57/-A53Exynos19008/820ARMyes3395Mali-T760 MP6
~28.39%
1359
3969
1023.5n2
6991n2
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
Apple A8Cyclone 21MB + 4MB14002/220ARMyes3389PowerVR GX6450
~19.920%
1614.5n4
2881.5n4
1591
2759
328
627
44118n2
347.2n4
7377n4
Mediatek Helio G25Cortex-A53Mediatek Helio G20008/812ARMyes1268PowerVR GE8320
~4.520%
3256
711
3574
141n6
650n6
3974n2
14.37n2
12.65n2
24
Mediatek Helio A25Cortex-A53Mediatek Helio 2018008/812ARMyes1416PowerVR GE8320
~4.816%
138.5n4
860n4
99375
3779.5n2
13.05n2
13.6
23n2
Nvidia Tegra K1Logan (Cortex-A15 "r3" + Kepler-GPU)Tegra2MB23004/428ARM3635GeForce ULP K1 (Tegra K1 Kepler GPU)
~19.718%
4743
1090.5n2
3278.5n2
1085
2949
22985
525n3
6810n2
Qualcomm Snapdragon 805 APQ8084Krait 450Snapdragon2MB27004/428ARM3682Adreno 420
~18.818%
4469
1073n5
3141n5
1008
2576
18314n3
784n5
5379n5
Qualcomm Snapdragon 636Kryo 260Snapdragon18008/814ARMyes2255Adreno 509
~825%
5063
1337n11
4941n11
278
1256
157981n2
9121
8559n12
26.2n2
26.45n2
54n9
Samsung Exynos 7904Cortex-A73/-A53Exynos18008/814ARMyes1794Mali-G71 MP2
~7.427%
4275
1320n3
4096n3
273
1010
239
596
133094n2
8372n4
22.61n4
22.29n4
52n4
Qualcomm Snapdragon 632Kryo 250Snapdragon18008/814ARMyes2003Adreno 506
~7.718%
1247n5
4515n5
271
1233
8268.5n6
26.9
27.44
58n3
Qualcomm Snapdragon 460Cortex-A73 / 53Snapdragon18008/814ARMyes2366Adreno 610
~14.425%
5371
1290.5n2
4970n2
254n5
1155n5
13985
1219
7240.5n4
25.98n3
22.55n4
42.5n4
Intel Atom Z3735EBay Trail-TAtom2MB<41330 ‑ 18304/422x86yes3512HD Graphics (Bay Trail)
Intel Atom Z3735FBay Trail-TAtom2MB<41330 ‑ 18304/422x86yes3512HD Graphics (Bay Trail)
~9.745%
1164n2
945n16
2885.5n16
0.31n3
0.87n3
27.45n3
1566n3
35.66n3
1100n3
1635n2
35.9n3
6.83n3
0.62n3
0.14n3
0.09n3
2238.5n2
786n8
2191.5n8
511n16
3524n13
Intel Atom Z3735GBay Trail-TAtom2MB<41330 ‑ 18304/422x86yes3512HD Graphics (Bay Trail)
~13.439%
1526
946n7
2891n7
156.3
6113
37.53
1171
1397n2
31.8
6.55
0.62
0.14
0.09
724n4
2110n4
512n11
3381n7
AMD A6-9220eStoney RidgeBristol Ridge1MB61600 ‑ 24002/228x86yes2393Radeon R4 (Stoney Ridge)
~9.661%
1056
1741
31
86
73
110
66.4
2732
35.2
1517
519
14.7
2.65
0.34
0.07
3192
1247
1929
1260
1571
260
293
357.7
9070
12.6
64
Qualcomm Snapdragon 630Cortex-A53Snapdragon22008/814ARMyes2417Adreno 508
~6.714%
4256
865n13
4172n13
5011n13
16.25
38n5
Qualcomm Snapdragon 626Cortex-A53Snapdragon22008/814ARMyes2869Adreno 506
~5.318%
4557
928.5n4
4496.5n4
187
1098
4705.5n4
17.94
19.78
Qualcomm Snapdragon 801 MSM8974ACKrait 400Snapdragon2MB24504/428ARM3836Adreno 330
~1818%
3594n5
965.5n8
2709n8
1024n2
2658n2
18438n5
826n9
4549.5n8
Samsung Exynos 5430 OctaCortex-A7/-A15Exynos512KB18008/820ARM3415Mali-T628 MP6
~22.514%
951
3209
782
2457
445.7
5640
UNISOC SC9863ACortex-A55 + 512KB1200 ‑ 16008/828ARMyes1849GE8322 / IMG8322
~4.927%
3189
827
3526
155n2
808.5n2
138n6
629n6
92404
4018n3
14.69
13.26
30.5n2
Mediatek Helio P23 MT6763TCortex-A53Mediatek Helio 202300 ‑ 25008/816ARMyes2305Mali-G71 MP2
~6.714%
2632n2
829n5
3678n5
103595
3913.5n8
15.99
Mediatek Helio P23 MT6763VCortex-A53Mediatek Helio 2020008/816ARMyes2305Mali-G71 MP2
~5.220%
804n5
3691n5
154.5n2
854.5n2
150n3
875n3
100256
4274n5
29
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
Mediatek MT6595Cortex-A7/-A17Mediatek2MB22008/828ARM3599PowerVR G6200
Qualcomm Snapdragon 801 APQ8074ABKrait 400Snapdragon2MB23604/428ARM3671Adreno 330
~24.911%
3982
915
2327
1047
4127
Qualcomm Snapdragon 801 MSM8974ABKrait 400Snapdragon2MB23604/428ARM3836Adreno 330
~21.514%
3717
919n5
2619n5
17428n2
772.5n6
3131n7
Nvidia Tegra 4Wayne (Cortex A15)Tegra18004/428ARM3998GeForce Tegra 4
~15.623%
3887n6
922n3
2513n3
909
2382
16687n7
599.5n8
4901n7
18.8
40
Mediatek MT6595MCortex-A7/-A17Mediatek2MB20008/828ARM3599PowerVR G6200
Qualcomm Snapdragon 801 MSM8974AAKrait 400Snapdragon2MB22604/428ARM3428Adreno 330
~27.59%
913
2570
1509
4529.5n2
Qualcomm Snapdragon 625Cortex-A53Snapdragon20008/814ARMyes2869Adreno 506
~7.525%
925
4792
872.5n12
4319.5n12
171
1023
156240
4502n17
15.99n3
17.17n3
36.5n2
UNISOC Tiger T3101800 ‑ 20004/412ARMyes1694PowerVR GE8300
~8.823%
1687
2969
376
756
1653
11986
39.15
28.2
63
45
Qualcomm Snapdragon 439Cortex-A53Snapdragon20008/812ARMyes2002Adreno 505
~5.527%
3684
877.5n4
3154n4
177n3
812n3
176
823
105520
4755.5n6
16.3n5
18.23n5
35.5n6
JLQ JR510Cortex-A531500 ‑ 20008/811ARMyes2002Mali-G52 MP1
~5.120%
934
2671
164
818
1033
5975
14.9
46
25
HiSilicon Kirin 925Cortex-A15 / Cortex-A718008/828ARM3394Mali-T628 MP6
~21.914%
896.5n2
3214n2
767
1899
704.5n2
6461n2
Qualcomm Snapdragon 800 MSM8974Krait 400Snapdragon2MB23004/428ARM3836Adreno 330
~17.818%
3845n13
908n17
2641n17
991
2330
15263.5n14
739n19
4089.5n12
Mediatek Helio P20 (LP4) MT6757Cortex-A53Mediatek Helio 2023008/816ARMyes2857Mali-T880 MP2
~8.49%
845n4
3580n4
130988
4376.5n4
Samsung Exynos 5420 OctaCortex-A7/-A15Exynos512KB18008/828ARM3738UHD Graphics 750
~17.218%
3589n3
927.5n4
2751n4
818
2145
18111n4
1067n3
4297n4
HiSilicon Kirin 920Cortex-A15 / Cortex-A717008/828ARM3394Mali-T628 MP4
~18.916%
858
3102
738
1752
18892
725
6363
Samsung Exynos 7880A53Exynos19008/814ARMyes2544Mali-T830 MP3
~5.77%
773
4104
5256
HiSilicon Kirin 935Cortex-A5322008/828ARMyes3213Mali-T628 MP4
~26.19%
800
2912
992n2
4376n2
HiSilicon Kirin 659Cortex-A5323608/816ARMyes2469Mali-T830 MP2
~16.320%
3897
926.5n8
3680.5n8
127602n2
1173
4980n8
16.77
16.42
40n3
Samsung Exynos 7884BCortex-A73/-A53Exynos15608/814ARMyes2179Mali-G71 MP2
~7.416%
3886
1212n3
3714n3
7065n3
22.46n3
21.63n3
48n3
HiSilicon Kirin 658Cortex-A5323508/816ARMyes2469Mali-T830 MP2
~5.87%
913
3460
4589
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
Mediatek Helio X10 MT6795Cortex-A53Mediatek22008/828ARMyes3445PowerVR G6200
~5.15%
789
2041
Samsung Exynos 7870 OctaA53Exynos16008/814ARMyes2862Mali-T830 MP2
~4.414%
732n5
3710n5
3880n8
12.04n3
13n3
31.5n2
HiSilicon Kirin 655Cortex-A5321008/816ARMyes2636Mali-T830 MP2
~12.75%
162396
4414.5n2
HiSilicon Kirin 650Cortex-A5320008/816ARMyes2819Mali-T830 MP2
~11.45%
142543
4472n2
HiSilicon Kirin 930Cortex-A5320008/828ARMyes3213Mali-T628 MP4
~25.811%
760.5n2
3211.5n2
125047
1092.5n2
4084n3
Mediatek Helio P35 MT6765Cortex-A53Mediatek1800 ‑ 23008/816ARMyes1845PowerVR GE8320
~4.825%
4143
855n3
3973n3
173n3
1002n3
168.5n6
934.5n6
4643n5
15.83n4
14.59n4
31.5n4
Mediatek Helio P22T MT8768TCortex-A53Mediatek23008/816ARMyes2059PowerVR GE8320
~425%
842
3870
173
920
166n2
936n2
5163
5080n2
18.53
13.9
35
Mediatek Helio P22 MT6762Cortex-A53Mediatek Helio 2020008/816ARMyes2148PowerVR GE8320
~4.318%
773.5n10
3505.5n10
137n9
805n9
4257n9
13.68n3
14.7
29n7
Mediatek Helio P10 MT6755Cortex-A53Mediatek20008/828ARMyes3445Mali-T860 MP2
~18.616%
3064
720.5n2
2926.5n2
102616n2
1107
3964.5n12
31
Apple A7Cyclone1MB + 4MB13002/228ARMyes3753UHD Graphics 750
~21.316%
1383n4
2495.5n4
276
502
35725.5n4
399.3n4
5180n3
MediaTek MT8168Cortex-A53Mediatek MT820004/412ARMyes1315Mali-G52 MP1
~5.120%
2538
835n2
2469.5n2
144n3
500n3
70655
4168.5n2
12.2
30n2
Qualcomm Snapdragon 450Cortex-A53Snapdragon18008/814ARMyes2366Adreno 506
~5.723%
3783.5n2
758n13
3907n13
131n3
498n3
101906
3997n14
15.76n4
12.45n4
31.5n8
Samsung Exynos 5410 OctaCortex-A7/-A15Exynos512KB16008/828ARM3933UHD Graphics 750
~4.45%
683
1696
Intel Atom x3-C3440SoFIA LTEAtom1MB1200 ‑ 14004/428yes3215UHD Graphics 750
Samsung Exynos 5260 HexaCortex-A15Exynos17006/628ARM3581UHD Graphics 750
~20.614%
2957
884
2156
15547
999
4316
Qualcomm Snapdragon 429Cortex-A53Snapdragon20004/412ARMyes1999Adreno 504
~4.425%
860
2485
168
552
168
566
70208
4344.5n2
15.33n2
14.54n2
34n2
Mediatek Helio A22 MT6762MCortex-A53Mediatek Helio 2020004/416ARMyes2148PowerVR GE8320
~4.518%
825
2471
161
538
66909
4355n2
15.49
32n2
Mediatek Helio A22 MT6761Cortex-A53Mediatek Helio 2020004/416ARMyes2148PowerVR GE8300
~530%
2414n2
835.5n2
2395n2
140n3
488n3
189
491
67423n3
4538.5n8
15.4n6
14.71n5
34n6
24
Mediatek MT8766BCortex-A53Mediatek MT820004/412ARMyes1267PowerVR GE8300
~1223%
2227
783
2217
133
455
1609
3920
15.01
12.6
27
Mediatek Helio A20 MT6761DCortex-A53Mediatek Helio 2018004/412ARMyes1267PowerVR GE8300
~4.216%
143.5n2
477n2
61213
3938n2
14.28
12.8
26.5n2
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
Mediatek MT8135Cortex-A7/-A15Mediatek17004/428ARM3796PowerVR G6200
~20.214%
2797.5n2
765.5n4
1492.5n4
11615.5n2
992n4
5864.5n2
Rockchip RK3566ARM Cortex-A55 ‑ 20004/422ARMyes1449Mali-G52 MP2
~4.525%
745
1418
143
312
203
493
5022
19.86
15.75
36
21
Samsung Exynos 5250 DualCortex A15Exynos1MB17002/232ARM4055UHD Graphics 750
~34.57%
2591
720.5n2
4943
Mediatek MT8752Cortex-A53Mediatek17008/828ARMyes3336Mali-T760 MP2
Mediatek MT6752Cortex-A53Mediatek17008/828ARMyes3445Mali-T760 MP2
~23.511%
740.5n2
3766.5n2
30455
1049n3
4139n3
Samsung Exynos 7580 OctaCortex-A53Exynos16008/828ARMyes3063Mali-T720 MP2
~28.99%
721n3
3607n3
735
3627n3
Qualcomm Snapdragon 617 MSM8952Cortex-A53Snapdragon15008/828ARMyes3018Adreno 405
~44.95%
1228
3527n5
Qualcomm Snapdragon 616 MSM8939v2Cortex-A53Snapdragon17008/828ARMyes3586Adreno 405
~33.87%
96167
1299n3
3155n5
Qualcomm Snapdragon 615 MSM8939Cortex-A53Snapdragon17008/828ARMyes3586Adreno 405
~19.214%
2579
638n5
2370n5
12996.5n2
1213n9
3411n10
HiSilicon Kirin 620Cortex-A5312008/828ARMyes3306Mali-450 MP4
~41.85%
1679.5n2
2170n2
Rockchip RK328818004/428ARM3428Mali-T760 MP4
~29.49%
778.5n2
2182.5n2
745.5n2
7107n3
Mediatek MT6753Cortex-A53Mediatek15008/828ARMyes3216Mali-T720 MP4
~18.216%
612.5n2
2483n2
653
2505
120120
1562n2
2855n13
Mediatek MT6750SCortex-A53Mediatek15008/828ARMyes2179Mali-T860 MP2
~4.39%
646n2
2466.5n2
3448n2
22n2
Mediatek MT6750NCortex-A53Mediatek15008/828ARMyes2179Mali-T860 MP2
~4.27%
665
2645
3274
Mediatek MT6750Cortex-A53Mediatek15008/828ARMyes2697Mali-T860 MP2
~13.518%
612n18
2617n18
75778n2
2042
3200n19
11.3
12.5
19
Mediatek MT6750TCortex-A53Mediatek15008/828ARMyes2697Mali-T860 MP2
~4.27%
658.5n2
2680n2
3192.5n2
Qualcomm Snapdragon W5+ Gen 1ARM Cortex-A5317004/44157UHD Graphics 750
~30.57%
1251.7
3710
11
Qualcomm Snapdragon W5 Gen 1ARM Cortex-A5317004/44157UHD Graphics 750
Qualcomm Snapdragon 610 MSM8936Cortex-A53Snapdragon17004/428ARMyes3586Adreno 405
MediaTek MT8163 V/A 1.5 GHzCortex-A5315004/428ARM3063Mali-T720 MP2
~2.611%
636n2
1781n2
134
375
3261n2
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
Mediatek MT6592Cortex-A7Mediatek1MB17008/828ARM3682Mali-450 MP4
~18.714%
2561
445n8
2390n8
25313.5n6
1182n8
2563.5n8
Qualcomm Snapdragon 600 APQ8064TKrait-300Snapdragon2MB17004/428ARM3998Adreno 320
~19.114%
2721n4
637n3
1900n3
11659n5
1089n5
1988
Samsung Exynos 7578Cortex-A53Exynos15004/4ARMyes2850Mali-T720 MP2
~26.49%
703
2201
1413
3566
HiSilicon Kirin 910TCortex-A918004/428ARM3520UHD Graphics 750
~21.511%
599
1796
12178
1043
2775
MediaTek MT8163 V/B 1.3 GHzCortex-A5313004/428ARM3063Mali-T720 MP2
~3.611%
640n4
1767n4
2853.5n6
11.11n2
23n3
MediaTek MT8161Cortex-A5313004/428ARM3275Mali-T720 MP2
~29.87%
43768
1713
2510
Intel Atom x3-C3230RKSoFIA 3G-RAtom11004/428yes3215Mali-450 MP4
~45%
334
860
Qualcomm Snapdragon 435Cortex-A53Snapdragon14008/828ARMyes2869Adreno 505
~17.914%
666n10
2582n10
81667
1979
3209n11
27
Qualcomm Snapdragon 430 (MSM8937)Cortex-A53Snapdragon14008/828ARMyes2869Adreno 505
~4.211%
658.5n16
2552.5n16
3293.5n18
10.99
29n3
Qualcomm Snapdragon 415 MSM8929Cortex-A53Snapdragon14008/828ARMyes3227Adreno 405
Qualcomm Snapdragon S4 Pro APQ8064AARMv7Snapdragon2MB15004/428ARM4314Adreno 320
~17.714%
2026n10
498n2
1473n2
10517.5n4
1337n5
2223
Mediatek MT8732Cortex-A53Mediatek15004/428ARMyes3336Mali-T760 MP2
Mediatek MT8165Cortex-A53Mediatek15004/428ARMyes3336Mali-T760 MP2
~22.711%
686
2031
59688
1358
4116
Mediatek MT6739Cortex-A53Mediatek15004/428ARMyes2274PowerVR GE8100
~3.811%
653n14
1779n14
3126n15
10.64n2
25n2
Mediatek MT6739WWCortex-A53Mediatek15004/428ARMyes2274PowerVR GE8100
~4.216%
1788
589
1718
49040
3213
10.24
27
Mediatek MT6732Cortex-A53Mediatek15004/428ARMyes3397Mali-T760 MP2
~27.59%
711n2
2078n2
979
3489n2
Mediatek MT6735Cortex-A53Mediatek15004/428ARMyes3353Mali-T720
~15.316%
505.5n6
1443.5n6
519n2
1430n2
34641n5
1750n9
2657n25
Qualcomm Snapdragon 425 (MSM8917)Cortex-A53Snapdragon14004/428ARMyes2862Adreno 308
~3.514%
660.5n18
1849n18
3052n17
9.13
10.8n2
26n5
Mediatek MT8735Cortex-A53Mediatek13004/428ARMyes3353Mali-T720
~3.67%
617.5n2
1765n2
2718n3
Mediatek MT6737TCortex-A53Mediatek15004/428ARMyes2767Mali-T720 MP2
~16.214%
672n6
1876.5n6
2040
1861
3266n9
27
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
Mediatek MT6737Cortex-A53Mediatek12504/428ARMyes2767Mali-T720 MP2
~12.818%
1573
537n11
1504n11
58
291
45882n4
1825n2
2392n17
Rockchip RK3188Cortex-A918004/428ARM4005Mali-400 MP4
~17.714%
1182n3
504n3
1421n3
10965n4
1240n4
3093.5n2
Samsung Exynos 7570 QuadCortex-A53Exynos14004/414ARMyes2393Mali-T720 MP2
~3.77%
631.5n2
1856.5n2
3027n2
Qualcomm Snapdragon 410 MSM8916Cortex-A53Snapdragon14004/428ARMyes3663Adreno 306
~13.618%
476n15
1426n15
516n2
1322n2
9857n3
1380n18
2737.5n28
9.03
Qualcomm Snapdragon 410 APQ8016Cortex-A53Snapdragon12004/428ARMyes3663Adreno 306
~24.89%
482n3
1443n3
1415n3
2968.5n4
Apple S9 SiPThunder18002/24ARMyes99UHD Graphics 750
~48.55%
902.3
38.9
Samsung Exynos W930ARM Cortex-A5514002/25yes146Mali-G68 MP2
~29.37%
1464.05n2
2581n2
8.55n2
HiSilicon Kirin 910Cortex-A916004/428ARM3520UHD Graphics 750
~17.614%
1938
509n2
1547.5n2
11258
1360.5n2
1535n2
Intel Atom Z2760CloverviewAtom1MB1.7 / 318002/432x864101SGX545
~1139%
945n9
601.5n12
1696.5n12
0.18
0.53n2
84.6n9
4233n7
58.1n7
1892n6
713n3
17.75n2
3.28n2
0.06n4
0.07n4
0.06n4
1397.5n12
812.5n2
Qualcomm Snapdragon 400 MSM8928ARMv7Snapdragon16004/428ARM3824Adreno 305
~19.611%
398.5n4
1338n4
7929n2
1404.5n4
2335n4
Qualcomm Snapdragon 215Cortex-A53Snapdragon 20013004/428ARMyes1625Adreno 308
~3.27%
606
1556
1986
Qualcomm Snapdragon 400 APQ8028ARMv7Snapdragon16004/428ARM3824Adreno 305
~1814%
1596
435
1489
9698
958
1759
Mediatek MT6735PCortex-A53Mediatek10004/428ARMyes3353Mali-T720
~1.95%
14483
2089.5n2
Mediatek MT6735MCortex-A53Mediatek10004/428ARMyes3185Mali-T720
~1.95%
14977
1929
Marvell Armada PXA1908Cortex-A5312004/428ARMyes3336GC7000UL
~4.49%
575
1717
10868
2059
Apple S8Thunder18002/27ARMyes1562UHD Graphics 750
~28.17%
1867.3
838
22.6
Apple S7Thunder18002/2yes1562UHD Graphics 750
~28.37%
1785
810
21.74
Apple S6Thunder18002/2yes1562UHD Graphics 750
~80.22%
1807
Qualcomm Snapdragon Wear 4100+ARM Cortex-A53 ‑ 17005/512ARM1268Adreno 504
~28.67%
1702
2752
11.6
Qualcomm Snapdragon Wear 4100ARM Cortex-A53 ‑ 17004/412ARM1268Adreno 504
~31.57%
1019n4
3444n4
14.13
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
Apple A6x1400232ARM4075UHD Graphics 750
~7.57%
1768
781
1424
Intel Atom Z2580CloverviewAtom1MB31300 ‑ 20002/432x864359SGX544MP2
~18.614%
1479
552n2
1302.5n2
11276
847n2
2822
Qualcomm Snapdragon S4 Pro MSM8960DTKrait 300Snapdragon1MB17002/228ARM3824Adreno 320
~22.511%
682
1263
6979
622
3187
Qualcomm Snapdragon S4 Pro MSM8960TARMv7Snapdragon1MB17002/228ARM4280Adreno 320
~17.614%
1848n2
583.5n2
1098n2
7065
1421.5n2
2018n2
Qualcomm Snapdragon 400 8930ABARMv7Snapdragon1MB17002/228ARM4005Adreno 305
~31.27%
1907n3
7051n3
1117.5n4
Qualcomm Snapdragon S4 Plus APQ8060AARMv7Snapdragon1MB15002/228ARM4314Adreno 225
~3.92%
1473
Qualcomm Snapdragon S4 Plus MSM8960ARMv7Snapdragon1MB15002/228ARM4314Adreno 225
~31.27%
1626.5n4
5589
1045.5n6
Qualcomm Snapdragon S4 Plus MSM8260AARMv7Snapdragon1MB17002/228ARM4314Adreno 225
~42%
1525n3
Intel Atom Z2560CloverviewAtom1MB3933 ‑ 16002/432x864359SGX544MP2
~17.614%
1221n2
451n3
1056n3
9263n4
1100.5n4
3081
AMD Z-60HondoZ-Series1MB4.510002/240x86yes4057Radeon HD 6250
~8.827%
669
1249
0.2
0.37
75
1566
114
3574
348
11.24
1.95
1075
AMD Z-01DesnaZ-Series1MB5.910002/240x86yes4585UHD Graphics 750
Apple A61000232ARM4116UHD Graphics 750
~23.111%
1648
705.5n2
1273
24996
722n2
Intel Atom x3-C3130SoFIA 3GAtom512KB10002/228x86yes3215Mali-400 MP2
Samsung Exynos 4412 QuadCortex A9Exynos14004/432ARM4219UHD Graphics 750
~31.47%
1886.5n8
10466
1109
NVIDIA Tegra 3Kal-ElTegra1200 ‑ 13004/440ARM4424GeForce ULP (Tegra 3)
~16.914%
1455.5n20
354.5n2
1084n2
8638n3
1257n3
1741
Apple S52/2yes1562UHD Graphics 750
~77.82%
2022n2
Mediatek MT8127Cortex-A7Mediatek512KB15004/428ARM3489Mali-450 MP4
~16.514%
383.5n2
1274n2
448
1216
1713.5n2
2358n3
Mediatek MT6589TCortex-A7Mediatek2MB15004/428ARM3824SGX544
Mediatek MT8389Cortex-A7Mediatek1MB12004/428ARM3857SGX544
~16.314%
1301n3
325n2
1069n2
8323n3
1464n3
1355
Mediatek MT8125Cortex-A7Mediatek1MB12004/428ARM3857SGX544
~16.714%
1315.5n4
325.5n4
1110n4
8406n4
1341.5n4
1915
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
Spreadtrum SC9830ACortex-A7Spreadtrum15004/428ARM2910Mali-400 MP2
~4.37%
405
1280
2842
Samsung Exynos 3470 QuadCortex-A7Exynos14004/428ARM3459Mali-400 MP4
~17.214%
1207
369
1113
8008
1119
2019
Samsung Exynos 3475 QuadCortex-A7Exynos13004/428ARM3094UHD Graphics 750
~3.77%
350
1171
2323
Mediatek MT8321Cortex-A7Mediatek1MB13004/428ARM2728Mali-400 MP2
~2.211%
430n2
1116.5n2
1715n2
5.68
13
Mediatek MT8121Cortex-A7Mediatek1MB13004/428ARM3824SGX544
~16.614%
1298
351n2
1140.5n2
9761n2
1453n2
2085
Mediatek MT6582Cortex-A7Mediatek512KB13004/428ARM3732Mali-400 MP2
~16.414%
1416n2
353n14
1169.5n14
9807n7
1578.5n14
2105n14
Mediatek MT6582MCortex-A7Mediatek512KB13004/428ARM3640Mali-400 MP2
~16.714%
1424
350n3
1179n3
9264n3
1441.5n2
2172n3
Mediatek MT6580MCortex-A7Mediatek512KB13004/428ARM2910Mali-400 MP2
~2.816%
356n4
1170.5n4
426n6
1161.5n6
63
248
2138.5n10
Spreadtrum SC7731Cortex-A7Spreadtrum13004/428ARM3275Mali-400 MP2
~3.67%
351
1075
2300
Qualcomm Snapdragon 212 APQ8009Cortex-A7Snapdragon 20013004/428ARM3094Adreno 304
~3.211%
331
1075
423
1118
2152n3
Qualcomm Snapdragon 400 MSM8926ARMv7Snapdragon12004/428ARM3852Adreno 305
~16.214%
1378n2
340n6
1123n6
7511.5n4
1607.5n8
1838n6
Qualcomm Snapdragon 400 MSM8226ARMv7Snapdragon12004/428ARM4032Adreno 305
~16.814%
1279n4
341n9
1147n9
7300.5n8
1243n13
1449n12
Qualcomm Snapdragon 400 APQ8026ARMv7Snapdragon12004/428ARM3824Adreno 305
~1714%
1279
327
1075
6717
1137
1810
Mediatek MT6589Cortex-A7Mediatek12004/428ARM4025SGX544
~16.414%
1347n7
327n6
1097n6
8336n8
1451n9
1449n3
Qualcomm Snapdragon 200 MSM8212Cortex-A7Snapdragon 20012004/428ARM3824Adreno 302
~23.79%
329
1113
1331n4
1233n3
Qualcomm Snapdragon 210 MSM8909Cortex-A7Snapdragon 20011004/428ARM3094Adreno 304
~15.114%
302n3
1019n3
430.5n2
1117n2
2255n2
1949n7
Marvell PXA1088Cortex-A712004/440ARM3956UHD Graphics 750
~15.814%
1277
312n2
990n2
5776.5n2
1651n2
1091n2
Qualcomm Snapdragon Wear 3100ARM Cortex-A7 ‑ 12004/428ARM1927Adreno 304
~34.45%
2997n3
1730n3
Qualcomm Snapdragon Wear 2500ARM Cortex-A7 ‑ 12004/428ARM1927UHD Graphics 750
Qualcomm Snapdragon Wear 2100ARM Cortex-A7 ‑ 12004/428ARM1927UHD Graphics 750
~30.15%
3744
1374
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
Qualcomm Snapdragon S4 Plus MSM8930ARMv7Snapdragon1MB12002/228ARM4097Adreno 305
~20.111%
1276.5n2
432
788
3464
1189n2
Qualcomm Snapdragon S4 Plus MSM8230ARMv7Snapdragon1MB12002/228ARM4097Adreno 305
~18.611%
1082
454
457
4294n2
1811.5n2
Qualcomm 205Cortex-A7Snapdragon11002/228ARM2466Adreno 304
Intel Atom Z2480PenwellAtom512KB20001/232x864359SGX540
~2.62%
995
Intel Atom Z2460PenwellAtom512KB4?1300 ‑ 16001/232x864359SGX540
~2.22%
853
Qualcomm Snapdragon S4 Plus MSM8227ARMv7Snapdragon1MB10002/228ARM4314Adreno 305
~18.511%
963
349
619
3632
1669.5n2
Samsung Exynos 4212 1.5 GHzCortex A9Exynos1MB15002/232ARM4466UHD Graphics 750
~30.57%
1240.5n2
4814.5n2
1128n2
Texas Instruments OMAP 4470Cortex A915002/245ARM4493UHD Graphics 750
~3.62%
1381n2
HiSilicon k3v2 Hi362012004/440ARM4315UHD Graphics 750
~19.211%
1557n7
327
1094
8678n5
1610n5
Rockchip RK3066 1.5 GHz512KB15002/240ARM4280Mali-400 MP4
~27.37%
1007.5n16
5852
1959
Qualcomm Snapdragon S4 Play MSM8625QCortex-A5Snapdragon12004/445ARM4102Adreno 203
~36.95%
2697
2430
Qualcomm Snapdragon 200 8225QCortex-A5Snapdragon 20014004/445ARM4102Adreno 203
~27.67%
1010
6062
1876
Qualcomm Snapdragon S4 Play MSM8225QCortex-A5Snapdragon12004/445ARM4102Adreno 203
~37.45%
6341
2379
MediaTek MT8312Mediatek13002/228ARM3640Mali-400 MP
~16.114%
809
343
646
4457
1390
1477
Renesas MP5232Cortex-A915002/2ARM4334UHD Graphics 750
~18.711%
373
654
4557
1525
1547
Broadcom BCM21664TCortex-A912002/2ARM4036UHD Graphics 750
~19.211%
353
658
4230
1316
2121
Marvell PXA986Cortex-A912002/245ARM4145UHD Graphics 750
~15.914%
1034.5n2
379.5n2
646.5n2
3976n3
1624n3
1448
Amlogic AML8726-MX512KB15002/245ARM4080UHD Graphics 750
~2.72%
1020.5n2
Qualcomm Snapdragon S3 MSM8660ARMv7Snapdragon1MB17002/245ARM4314Adreno 220
Qualcomm Snapdragon S3 MSM8260ARMv7Snapdragon1MB15002/245ARM4314Adreno 220
~2.62%
994
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
Samsung Exynos 4210 1.4 GHzCortex A9Exynos1MB14002/245ARM4695UHD Graphics 750
Texas Instruments OMAP 4460Cortex A90.612002/245ARM4493UHD Graphics 750
~20.411%
1243.5n2
427
796
5787
1096
Rockchip RK316812002/228ARM4005SGX540
Samsung Exynos 4210 1.2 GHzCortex A9Exynos1MB12002/245ARM4695UHD Graphics 750
MediaTek MT8377Cortex-A9Mediatek1MB12002/240ARM4005SGX531
~2.62%
993
Broadcom BCM28155Cortex A912002/240ARM4371UHD Graphics 750
~1.82%
679n2
Texas Instruments OMAP 4430Cortex A90.610002/245ARM4677UHD Graphics 750
~1.12%
424
MediaTek MT6572Cortex-A7Mediatek1MB12002/228ARM3880Mali-400 MP
~15.314%
614
314n5
575n5
3679.5n2
1723n4
1587.5n2
Spreadtrum SC8830Cortex-A7Spreadtrum512KB12004/428ARM3275Mali-400 MP2
~22.49%
329n2
829n2
1863.5n2
2408
Apple A5xCortex A91000232ARM4306UHD Graphics 750
~1911%
759
262
496
11087
1307
Qualcomm Snapdragon S4 Play MSM8225Cortex-A5Snapdragon15002/245ARM4371Adreno 203
~267%
545.5n4
3040
2178
Intel Atom Z2420SaltwellAtom512KB12001/232x86yes3999SGX540
~1.52%
559.5n2
Apple A5Cortex A91000240ARM4676UHD Graphics 750
~22%
750n3
Nvidia Tegra 2 (250)T20 HarmonyTegra1MB110002/240ARM5101GeForce ULP (Tegra 2)
~2.32%
894n3
Qualcomm Snapdragon 200 8210Cortex-A7Snapdragon 20012002/228ARM3824Adreno 302
~19.211%
324.5n6
604n6
3466n5
1246n4
1746n3
MediaTek MT8317TCortex-A9Mediatek12002/2ARM4005SGX531
~29.47%
869n2
4319
1347
MediaTek MT6577Cortex-A9Mediatek10002/2ARM4193SGX531
~15.914%
868.5n8
314
575
3671n3
1497n3
1993
Samsung Exynos W920ARM Cortex-A5511802/25ARMyes827Mali-G68 MP2
~24.27%
2804n3
2023n3
7.66
Samsung Exynos 9110ARM Cortex-A5311502/210ARMyes1491Mali-T720
~35.75%
2782n2
2076n2
ST-Ericsson NovaThor U8500ARMv710002/245ARM4585UHD Graphics 750
~22%
758n3
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
ST-Ericsson NovaThor U8420ARMv710002/245ARM4585UHD Graphics 750
MediaTek MT6575Cortex-A9Mediatek10001/140ARM4323SGX531
~1.52%
582
NXP i.MX 6SLLCortex-A9256KB10001/140ARM4736UHD Graphics 750
~25.82%
6771
Qualcomm Snapdragon S2 MSM8255ScorpionSnapdragon15001/145ARM4981Adreno 205
~1.72%
660
Rockchip RK2918 1.2 GHz12001/155ARM4736GC800
AllWinner A10Cortex A812001/155ARM5101UHD Graphics 750
~0.92%
339
ARM Cortex A8 1.2 GHz12001/1ARM6197UHD Graphics 750
Apple A4S5L893010001/140ARM4950UHD Graphics 750
~1.22%
470
AllWinner A13Cortex A810001/155ARM5101UHD Graphics 750
~0.82%
316
WonderMedia PRIZM WM8950Cortex-A910001/1ARM4367Mali-400 MP
Samsung Hummingbird S5PC110 / Exynos 3110Cortex A810001/145ARM5291UHD Graphics 750
~1.97%
290
239
228
Qualcomm Snapdragon S1 MSM7227ACortex A5Snapdragon256KB10001/145ARM4463Adreno 200
~21.17%
442n5
1262
3459
Qualcomm Snapdragon S1 MSM7225ACortex A5Snapdragon256KB10001/145ARM4371Adreno 200
~12%
373
Texas Instruments OMAP 3630 1GHzARM Cortex A810001/145ARM5101UHD Graphics 750
Texas Instruments OMAP 3622Cortex A810001/145ARM5101UHD Graphics 750
Rockchip RK2918Cortex-A810001/155ARM4736GC800
Telechips TCC8803 1GHz10001/165ARM4736UHD Graphics 750
ZiiLABS ZMS-08Cortex A810001/1ARM5154UHD Graphics 750
ARM Cortex A8 1GHzARM10001/1ARM5832UHD Graphics 750
Actions ACT-ATM7029Cortex-A510004/4ARM4036UHD Graphics 750
~1.22%
474
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
Qualcomm Snapdragon S1 QSD8250ARMv7Snapdragon10001/165ARM5588Adreno 200
Loongson 2F 900MHz512KB49001/1MIPSyes5832UHD Graphics 750
Qualcomm Snapdragon S1 MSM7227ARM1136EJ-SSnapdragon6001/165ARM5435Adreno 200
~0.25%
120
462
CSR86708023275UHD Graphics 750
Huawei Kirin A1ARM Cortex-M72001/1ARM1553UHD Graphics 750
ARM Cortex-M419711UHD Graphics 750
Dialog DA14697Cortex M33F, Cortex M0+96ARM1640UHD Graphics 750
HiSilicon Hi626219711UHD Graphics 750
ST STM32L4R9ARM Cortex-M4801/190ARM2971UHD Graphics 750
Cypress PSoC6 MCUCortex-M4 / M0+1502/2ARM1224UHD Graphics 750
ST32Cortex-M3ARM5729UHD Graphics 750
Ambiq Apollo 3.5Cortex-M4F1/140ARM1814UHD Graphics 750
Ambiq Apollo 3Cortex-M4F961/140ARM2026UHD Graphics 750
NXP MK26FN2M0CAC18RARM Cortex-M01801/119711UHD Graphics 750
DK3.5+ST21181UHD Graphics 750
Intel Pentium Gold 7505Tiger Lake-UTiger Lake2.5MB + 4MB152000 ‑ 35002/410x86yes1159UHD Graphics Xe G4 48EUs
~25.686%
4890
6773
14093
1.93
4.48
165n2
400n2
429n2
1017n2
1112.5n2
2600n2
9.79
522.83
14.48
454.1
2522
131.1
24.9
3.43n2
2.4
0.34
0.2
1150n2
2129.5n2
4062n2
10755.5n2
4998.5n2
9426n2
1157.5n2
2305n2
1129n3
2326n3
152.9
49676
143.03
151
184.4n2
142.8n2
Archived (old): AMD Ryzen Threadripper 2970WX (ZEN), AMD Ryzen Threadripper 2950X (ZEN+), AMD Ryzen Threadripper 2920X (ZEN+), Intel Core i9-7900X (Skylake-X), Intel Core i9-10880H (Comet Lake-H), Intel Core i7-6950X (Broadwell-E), Intel Xeon E5-2680 v4 (Broadwell-EP), Intel Xeon E5-2697 v2 (Ivy Bridge-EP), Intel Core i7-7740X (Kaby Lake-X), Intel Core i7-7700K (Kaby Lake), Intel Core i7-5960X (Haswell-E), Intel Core i7-4960X (Ivy Bridge-E), Intel Core i7-7700 (Kaby Lake), Intel Core i7-6700K (Skylake), Intel Xeon E5-2680 (Sandy Bridge-EP), Intel Core i7-3960X (Sandy Bridge-E), Intel Core i7-4790K (Haswell), Intel Xeon E3-1280 v5 (Skylake), Intel Core i7-6700 (Skylake), Intel Xeon E3-1535M v6 (Kaby Lake), Intel Core i7-7920HQ (Kaby Lake), Intel Core i7-4790 (Haswell), Intel Core i7-7700T (Kaby Lake), Intel Core i5-7600K (Kaby Lake), Intel Core i7-5775C (Broadwell), Intel Core i7-4770K (Haswell), Intel Core i7-4790S (Haswell), Intel Xeon E3-1505M v6 (Kaby Lake), Intel Xeon E3-1575M v5 (Skylake), Intel Core i7-4940MX (Haswell), Intel Core i7-7820HQ (Kaby Lake), Intel Core i7-7820HK (Kaby Lake), Intel Core i7-6920HQ (Skylake), Intel Core i7-990X EE (Gulftown), Intel Core i7-980X EE (Gulftown), Intel Xeon E3-1545M v5 (Skylake), Intel Core i7-5950HQ (Broadwell), Intel Core i7-4930MX (Haswell), Intel Xeon E3-1535M v5 (Skylake), Intel Core i7-6970HQ (Skylake), Intel Core i7-7700HQ (Kaby Lake), Intel Core i5-7500 (Kaby Lake), Intel Xeon E3-1515M v5 (Skylake), Intel Xeon E3-1505M v5 (Skylake), Intel Core i7-6870HQ (Skylake), Intel Core i7-4980HQ (Haswell), Intel Core i7-4910MQ (Haswell), Intel Xeon E3-1231 v3 (Haswell), Intel Xeon E3-1230 v3 (Haswell), Intel Core i7-5850HQ (Broadwell), Intel Core i5-6600K (Skylake), Intel Core i7-3770K (Ivy Bridge), Intel Core i7-3940XM (Ivy Bridge), Intel Core i7-4790T (Haswell), Intel Core i7-5700HQ (Broadwell), Intel Core i7-5750HQ (Broadwell), Intel Core i7-6820HK (Skylake), Intel Core i7-6820HQ (Skylake), Intel Core i7-6770HQ (Skylake), Intel Core i7-6700T (Skylake), Intel Core i7-4900MQ (Haswell), Intel Core i7-4960HQ (Haswell), Intel Core i7-6700HQ (Skylake), Intel Core i7-4810MQ (Haswell), Intel Core i7-4870HQ (Haswell), Intel Core i7-3920XM (Ivy Bridge), Intel Core i7-4800MQ (Haswell), Intel Core i7-4950HQ (Haswell), Intel Core i7-2700K (Sandy Bridge), Intel Core i7-4860HQ (Haswell), Intel Core i7-4720HQ (Haswell), Intel Core i7-3840QM (Ivy Bridge), Intel Core i7-4850HQ (Haswell), Intel Core i7-4710HQ (Haswell), Intel Core i7-4710MQ (Haswell), Intel Core i7-4770HQ (Haswell), Intel Core i7-3820QM (Ivy Bridge), Intel Core i7-2600K (Sandy Bridge), Intel Core i5-7440HQ (Kaby Lake), Intel Core i7-3740QM (Ivy Bridge), Intel Xeon X5670 (Westmere-EP), Intel Core i7-3720QM (Ivy Bridge), Intel Core i7-4700HQ (Haswell), Intel Core i7-4700MQ (Haswell), Intel Core i7-4760HQ (Haswell), Intel Core i7-4722HQ (Haswell), Intel Xeon E3-1226 v3 (Haswell), Intel Core i5-4590 (Haswell), Intel Core i7-2960XM (Sandy Bridge), Intel Core i5-3570K (Ivy Bridge), Intel Core i5-6500 (Skylake), Intel Core i7-7567U (Kaby Lake), Intel Core i7-7660U (Kaby Lake), Intel Core i7-7600U (Kaby Lake), Intel Core i7-4712HQ (Haswell), Intel Core i7-4712MQ (Haswell), Intel Core i7-4750HQ (Haswell), Intel Core i7-3635QM (Ivy Bridge), Intel Core i7-3630QM (Ivy Bridge), Intel Core i5-3550 (Ivy Bridge), Intel Core i7-4702HQ (Haswell), Intel Core i7-4702MQ (Haswell), Intel Core i7-2860QM (Sandy Bridge), Intel Core i7-2920XM (Sandy Bridge), Intel Core i5-3470 (Ivy Bridge), Intel Core i7-3615QM (Ivy Bridge), Intel Core i7-3610QM (Ivy Bridge), AMD FX-8350 (Vishera), Intel Core i7-975 (Bloomfield), Intel Core i5-2500K (Sandy Bridge), Intel Core i5-6600T (Skylake), Intel Core i5-7300HQ (Kaby Lake), Intel Core i5-6440HQ (Skylake), Intel Core i5-4460 (Haswell), Intel Core i7-3632QM (Ivy Bridge), Intel Core i5-6350HQ (Skylake), Intel Core i5-6300HQ (Skylake), Intel Core i5-7500T (Kaby Lake), Intel Core i5-4430 (Haswell), Intel Core i7-2760QM (Sandy Bridge), Intel Core i5-7287U (Kaby Lake), Intel Core i7-7560U (Kaby Lake), Intel Core i5-6400 (Skylake), Intel Core i5-6500T (Skylake), Intel Core i5-2400 (Sandy Bridge), Intel Core i7-960 (Bloomfield), Intel Core i7-950 (Bloomfield), Intel Core i7-2820QM (Sandy Bridge), Intel Core i7-3612QM (Ivy Bridge), Intel Core i7-2720QM (Sandy Bridge), Intel Core i7-2675QM (Sandy Bridge), Intel Core i7-2670QM (Sandy Bridge), Intel Core i5-6400T (Skylake), Intel Core i5-7267U (Kaby Lake), Intel Core i7-6567U (Skylake), Intel Core i5-7360U (Kaby Lake), Intel Core i7-7500U (Kaby Lake), Intel Core i5-5350H (Broadwell), Intel Core i5-7300U (Kaby Lake), Intel Core i5-7260U (Kaby Lake), Intel Core i7-940 (Bloomfield), Intel Core i7-920 (Bloomfield), Intel Core i7-2635QM (Sandy Bridge), Intel Core i7-2630QM (Sandy Bridge), Intel Core i5-750 (Lynnfield), Intel Core i5-6287U (Skylake), Intel Core i7-5557U (Broadwell), Intel Core i7-4610M (Haswell), Intel Core i7-940XM (Clarksfield), Intel Core i5-6267U (Skylake), Intel Core i5-5287U (Broadwell), Intel Core i7-4600M (Haswell), Intel Core i5-4340M (Haswell), Intel Core i7-4578U (Haswell), Intel Core i5-4210H (Haswell), Intel Core 2 Extreme (Desktop) QX6850 (Kentsfield), Intel Core i7-920XM (Clarksfield), Intel Core i5-4330M (Haswell), Intel Core i7-3540M (Ivy Bridge), Intel Core i5-4200H (Haswell), Intel Core i7-4558U (Haswell), Intel Core i5-5257U (Broadwell), Intel Core i5-4308U (Haswell), AMD A10-6800K (Richland), Intel Core 2 Quad (Desktop) Q9550 (Penryn), Intel Core i5-4310M (Haswell), AMD A10-7850K (Kaveri), Intel Core i7-6600U (Skylake), Intel Core i7-6650U (Skylake), Intel Core i7-6560U (Skylake), Intel Core i5-7200U (Kaby Lake), Intel Core i5-4400E (Haswell), Intel Core i5-4300M (Haswell), Intel Core i3-7100H (Kaby Lake), Intel Core i7-3520M (Ivy Bridge), Intel Core i7-6500U (Skylake), Intel Core i7-5600U (Broadwell), Intel Core i7-5650U (Broadwell), Intel Core i5-6360U (Skylake), Intel Core i5-4210M (Haswell), Intel Core i5-6300U (Skylake), Intel Core i5-4288U (Haswell), Intel Core i5-4278U (Haswell), Intel Core i5-3380M (Ivy Bridge), Intel Core i5-3360M (Ivy Bridge), AMD A10-7700K (Kaveri), AMD A8-7650K (Kaveri), Intel Core i3-3220 (Ivy Bridge), Intel Core i5-4200M (Haswell), Intel Core i5-3340M (Ivy Bridge), Intel Core i7-2640M (Sandy Bridge), Intel Core i7-5500U (Broadwell), Intel Core i7-5550U (Broadwell), Intel Core i5-6260U (Skylake), Intel Core i5-3320M (Ivy Bridge), Intel Core i5-4258U (Haswell), AMD A8-6600K (Richland), AMD A10-5800K (Trinity), Intel Core i7-840QM (Clarksfield), Intel Core i5-3230M (Ivy Bridge), AMD A8-5600K (Trinity), Intel Core i7-2620M (Sandy Bridge), Intel Core i7-4600U (Haswell), Intel Core i7-4650U (Haswell), Intel Core i3-7167U (Kaby Lake), Intel Core i5-6198DU (Skylake), Intel Core i5-6200U (Skylake), Intel Core i3-7130U (Kaby Lake-U), Intel Core i3-6167U (Skylake), Intel Core i3-6100H (Skylake), Intel Core i5-5300U (Broadwell), Intel Core i7-3687U (Ivy Bridge), Intel Core i5-5350U (Broadwell), AMD A8-3850 (Llano), Intel Core i7-4510U (Haswell), Intel Core i5-3210M (Ivy Bridge), Intel Core i7-640M (Arrandale), Intel Core i7-820QM (Clarksfield), Intel Core 2 Extreme QX9300 (Penryn), Intel Core 2 Extreme (Desktop) QX6700 (Kentsfield), Intel Core i5-2540M (Sandy Bridge), Intel Core i7-3667U (Ivy Bridge), Intel Core i7-4500U (Haswell), Intel Core i7-4550U (Haswell), Intel Core i7-7Y75 (Kaby Lake), Intel Core i7-740QM (Clarksfield), Intel Core i5-4310U (Haswell), Intel Core i5-4360U (Haswell), AMD FX-9830P (Bristol Ridge), Intel Core i7-3537U (Ivy Bridge), Intel Pentium G4500T (Skylake), Intel Core i5-5200U (Broadwell), Intel Core i5-5250U (Broadwell), Intel Core i5-4300U (Haswell), Intel Core i5-4350U (Haswell), AMD PRO A12-9830B (Bristol Ridge), Intel Core i5-2520M (Sandy Bridge), Intel Core i3-5157U (Broadwell), Intel Core i5-7Y57 (Kaby Lake), Intel Core i5-7Y54 (Kaby Lake), Intel Core i3-6157U (Skylake), Intel Core i3-7100U (Kaby Lake), Intel Core i3-6100U (Skylake), Intel Core i3-4110M (Haswell), AMD FX-9800P (Bristol Ridge), AMD PRO A12-9800B (Bristol Ridge), Intel Core i5-2450M (Sandy Bridge), Intel Core i7-3517U (Ivy Bridge), AMD Phenom II X4 905e (Daneb), Intel Core i7-620M (Arrandale), Intel Core i3-4100M (Haswell), Intel Core i5-580M (Arrandale), Intel Core i5-2435M (Sandy Bridge), Intel Core i5-2430M (Sandy Bridge), Intel Core i3-4000M (Haswell), Intel Core i3-4100E (Haswell), Intel Core i3-3130M (Ivy Bridge), Intel Core i5-2415M (Sandy Bridge), Intel Core i5-2410M (Sandy Bridge), Intel Core m3-7Y30 (Kaby Lake), Intel Core i5-3437U (Ivy Bridge), Intel Core i5-560M (Arrandale), Intel Core i7-720QM (Clarksfield), AMD A12-9720P (Bristol Ridge), AMD A12-9700P (Bristol Ridge), AMD FX-8800P (Carrizo), AMD Pro A12-8800B (Carrizo), Intel Core i5-4210U (Haswell), Intel Core i5-4260U (Haswell), Intel Core i3-3120M (Ivy Bridge), Intel Core i5-3427U (Ivy Bridge), Intel Core i5-4402E (Haswell), Intel Core m7-6Y75 (Skylake), Intel Pentium G860 (Sandy Bridge), Intel Core 2 Extreme X9100 (Penryn), Intel Core i5-4200U (Haswell), Intel Core i5-4250U (Haswell), Intel Core i3-5020U (Broadwell), Intel Core i3-7020U (Kaby Lake), Intel Core i5-3337U (Ivy Bridge), AMD A10-9600P (Bristol Ridge), AMD PRO A8-9600B (Bristol Ridge), Intel Core i3-3110M (Ivy Bridge), Intel Core 2 Duo T9900 (Penryn), Intel Core 2 Duo T9800 (Penryn), AMD FX-7600P (Kaveri), Intel Pentium 4405U (Skylake), Intel Core i5-480M (Arrandale), Intel Core i7-2649M (Sandy Bridge), Intel Core i5-540M (Arrandale), Intel Core i5-460M (Arrandale), Intel Core i3-5010U (Broadwell), Intel Core i3-5015U (Broadwell), Intel Core i3-6006U (Skylake), Intel Core i3-2370M (Sandy Bridge), Intel Core i3-390M (Arrandale), Intel Core i3-5005U (Broadwell), Intel Core i3-2350M (Sandy Bridge), Intel Core i3-2348M (Sandy Bridge), Intel Core 2 Duo P9700 (Penryn), Intel Core m5-6Y57 (Skylake), Intel Core m5-6Y54 (Skylake), AMD A10-8700P (Carrizo), AMD Pro A10-8700B (Carrizo), Intel Core 2 Duo T9600 (Penryn), Intel Core 2 Extreme X9000 (Penryn), Intel Core 2 Duo (Desktop) E6850 (Conroe), Intel Core i7-4610Y (Haswell), Intel Core i5-520M (Arrandale), Intel Core 2 Extreme (Desktop) X6800 (Conroe), Intel Core i7-2629M (Sandy Bridge), Intel Core i5-450M (Arrandale), Intel Core i3-380M (Arrandale), Intel Core i7-2677M (Sandy Bridge), AMD A10-7400P (Kaveri), Intel Pentium 3560M (Haswell), Intel Core i3-2330M (Sandy Bridge), Intel Core i3-2328M (Sandy Bridge), Intel Pentium 2030M (Ivy Bridge), Intel Pentium 3550M (Haswell), Intel Core i7-660LM (Arrandale), Intel Core 2 Extreme X7900 (Merom), Intel Core 2 Quad (Desktop) Q6600 (Kentsfield), Intel Core 2 Quad Q9100 (Penryn), Intel Core i5-3317U (Ivy Bridge), AMD A8-8600P (Carrizo), AMD Pro A8-8600B (Carrizo), AMD A8-7200P (Kaveri), Intel Core 2 Duo P9600 (Penryn), Intel Core 2 Duo T9550 (Penryn), Intel Core 2 Duo T9500 (Penryn), Intel Core i5-430M (Arrandale), AMD A10-5750M (Richland), AMD A10-5757M (Richland), Intel Core i7-2637M (Sandy Bridge), Intel Core M-5Y71 (Broadwell), AMD Phenom II X2 X640 BE (Champlain), AMD Phenom II X4 X940 BE (Champlain), Intel Core i7-2657M (Sandy Bridge), Intel Core i7-3689Y (Ivy Bridge), Intel Pentium 2020M (Ivy Bridge), AMD Phenom II X2 X620 BE (Champlain), Intel Core i3-4158U (Haswell), Intel Pentium 3825U (Broadwell), Intel Core i3-4120U (Haswell), Intel Core i3-370M (Arrandale), Intel Celeron 2970M (Haswell), Intel Core i5-4300Y (Haswell), Intel Core i5-4302Y (Haswell), Intel Pentium B980 (Sandy Bridge), Intel Core i3-4030U (Haswell), Intel Core i3-4025U (Haswell), AMD A10-4600M (Trinity), AMD A10-4657M (Trinity), Intel Core i3-2312M (Sandy Bridge), Intel Core i3-2310M (Sandy Bridge), Intel Core i3-2308M (Sandy Bridge), Intel Core i5-2557M (Sandy Bridge), AMD A10-5745M (Richland), AMD A8-5550M (Richland), AMD A8-5557M (Richland), Intel Core m3-6Y30 (Skylake), Intel Core M-5Y51 (Broadwell), Intel Core M-5Y70 (Broadwell), AMD FX-7500 (Kaveri), AMD A10 Pro-7350B (Kaveri), Intel Celeron 1020E (Ivy Bridge), Intel Core M-5Y31 (Broadwell), Intel Core M-5Y10c (Broadwell), Intel Core M-5Y10a (Broadwell), AMD Phenom II X4 X920 BE (Champlain), Intel Core M-5Y10 (Broadwell), Intel Core 2 Quad Q9000 (Penryn), Intel Core i7-2617M (Sandy Bridge), Intel Core i5-3439Y (Ivy Bridge), AMD A9-9425 (Stoney Ridge), AMD A9-9420 (Stoney Ridge), Intel Core i5-4202Y (Haswell), Intel Core i5-4220Y (Haswell), Intel Core i7-640LM (Arrandale), Intel Core i7-620LM (Arrandale), Intel Core i3-4100U (Haswell), Intel Core i3-3227U (Ivy Bridge), AMD A6-6400K (Richland), AMD A9-9410 (Stoney Ridge), Intel Core i5-4210Y (Haswell), Intel Core i5-2467M (Sandy Bridge), Intel Core i5-3339Y (Ivy Bridge), Intel Core i3-4010U (Haswell), Intel Core i3-4005U (Haswell), Intel Core i3-3217U (Ivy Bridge), AMD A10-7300 (Kaveri), AMD A8 Pro-7150B (Kaveri), Intel Pentium 4405Y (Skylake), AMD Phenom II X4 N970 (Champlain), Intel Core 2 Duo (Desktop) E6700 (Conroe), Intel Core 2 Duo SP9600 (Penryn), Intel Core 2 Duo P9500 (Penryn), Intel Core 2 Duo T9400 (Penryn), Intel Core i5-4200Y (Haswell), Intel Pentium B970 (Sandy Bridge), Intel Celeron 3765U (Broadwell), Intel Pentium N4200 (Apollo Lake), Intel Celeron 2950M (Haswell), AMD A8-7410 (Carrizo-L), AMD A8-7100 (Kaveri), Intel Core i3-4102E (Haswell), Intel Core i3-4030Y (Haswell), AMD A8-3550MX (Llano), Intel Core 2 Duo P8800 (Penryn), AMD A4-5300 (Trinity), Intel Core 2 Duo T9300 (Penryn), AMD Phenom II X2 N660 (Champlain), Intel Celeron 1020M (Ivy Bridge), Intel Core i3-350M (Arrandale), Intel Pentium B960 (Sandy Bridge), Intel Pentium 3805U (Broadwell), AMD Phenom II X2 N640 (Champlain), Intel Core 2 Extreme X7800 (Merom XE), Intel Core 2 Duo T7800 (Merom), Intel Core 2 Duo P8700 (Penryn), Intel Core i3-4020Y (Haswell), Intel Core i3-4012Y (Haswell), Intel Core 2 Duo SP9400 (Penryn), Intel Core 2 Duo (Desktop) E6600 (Conroe), AMD A8-6410 (Beema), AMD A6-7310 (Carrizo-L), AMD A6-6310 (Beema), Intel Celeron 3755U (Broadwell), Intel Celeron 3215U (Broadwell), Intel Core i3-330M (Arrandale), Intel Core i7-680UM (Arrandale), AMD Phenom II X2 P650 (Champlain), AMD Phenom II X2 N620 (Champlain), Intel Pentium B950 (Sandy Bridge), AMD Athlon 64 (Desktop) FX-62 (Windsor), Intel Core 2 Duo P8600 (Penryn), AMD Phenom II X3 N870 (Champlain), AMD A8-3530MX (Llano), Intel Core 2 Duo T8300 (Penryn), Intel Core i5-2537M (Sandy Bridge), Intel Pentium P6300 (Arrandale), Intel Core 2 Duo T7700 (Merom), AMD Phenom II X4 N950 (Champlain), AMD Phenom II X4 N930 (Champlain), AMD Phenom II X3 N850 (Champlain), AMD A8-3510MX (Llano), Intel Pentium 2127U (Ivy Bridge), Intel Pentium B940 (Sandy Bridge), Intel Celeron 1005M (Ivy Bridge), AMD A4-7210 (Carrizo-L), AMD A6-3430MX (Llano), Intel Pentium 3558U (Haswell), AMD A6-9225 (Stoney Ridge), AMD A6-9220 (Stoney Ridge), Intel Pentium 3556U (Haswell), Intel Pentium 2117U (Ivy Bridge), Intel Celeron 1000M (Ivy Bridge), Intel Celeron 1037U (Ivy Bridge), Intel Celeron 2981U (Haswell), Intel Celeron 2980U (Haswell), AMD Phenom II X3 N830 (Champlain), Intel Core 2 Duo SP9300 (Penryn), Intel Core i7-660UM (Arrandale), AMD A8-3520M (Llano), AMD A6-9210 (Stoney Ridge), AMD A10-4655M (Trinity), AMD A8-4500M (Trinity), AMD A8-4557M (Trinity), Intel Core 2 Duo P8400 (Penryn), AMD Phenom II X4 P960 (Champlain), AMD A6-3410MX (Llano), AMD A8-3500M (Llano), AMD A6-3420M (Llano), Intel Core 2 Duo P7570 (Penryn), Intel Core 2 Duo P7550 (Penryn), Intel Core 2 Duo T7600 (Merom), Intel Pentium P6200 (Arrandale), Intel Core 2 Duo T6770 (Penryn), AMD A8-5545M (Richland), AMD A6-3400M (Llano), AMD Phenom II X3 P860 (Champlain), AMD Phenom II X4 P940 (Champlain), AMD Turion II N570 (Champlain), AMD Turion II Ultra M660 (Caspian), Intel Core i5-560UM (Arrandale), Intel Core i7-640UM (Arrandale), Intel Pentium Dual Core T4500 (Penryn), Intel Core 2 Duo T7500 (Merom), AMD Athlon 64 X2 (Desktop) FX-60 (Toledo), Intel Core 2 Duo SL9600 (Penryn), Intel Core 2 Duo P7450 (Penryn), AMD Phenom II X3 P840 (Champlain), AMD Phenom II X4 P920 (Champlain), AMD Turion II N550 (Champlain), AMD Turion II Ultra M640 (Caspian), Intel Core 2 Duo T7400 (Merom), Intel Core 2 Duo T6670 (Penryn), Intel Core 2 Duo T6600 (Penryn), AMD Turion II P560 (Champlain), AMD Turion II N530 (Champlain), Intel Core 2 Duo T8100 (Penryn), AMD Phenom II X3 P820 (Champlain), AMD A8-4555M (Trinity), Intel Core 2 Duo T5900 (Merom), AMD Turion II Ultra M620 (Caspian), Intel Core 2 Duo P7370 (Penryn), Intel Core Duo T2700 (Yonah), Intel Pentium Dual Core T4400 (Penryn), Intel Celeron B840 (Sandy Bridge), Intel Pentium P6100 (Arrandale), Intel Celeron M P4600 (Arrandale), AMD A6-5350M (Richland), AMD A6-5357M (Richland), Intel Celeron N4000 (Gemini Lake), Intel Pentium N3540 (Bay Trail-M), Intel Celeron J3455 (Apollo Lake), AMD A6-5200 (Kabini), Intel Celeron N3450 (Apollo Lake), Intel Pentium N3710 (Braswell), Intel Atom x7-Z8750 (Cherry Trail), AMD Turion II M560 (Caspian), AMD Athlon II N370 (Champlain), AMD Athlon 64 X2 (Desktop) 4800+ (Windsor), Intel Pentium P6000 (Arrandale), Intel Celeron B830 (Sandy Bridge), Intel Celeron M P4500 (Arrandale), Intel Core 2 Duo P7350 (Penryn), Intel Core 2 Duo T7300 (Merom), Intel Core 2 Duo T6570 (Penryn), Intel Core 2 Duo T6500 (Penryn), Intel Core 2 Duo T5850 (Merom), AMD A4-3330MX (Llano), AMD A4-5150M (Richland), AMD A6-4400M (Trinity), Intel Pentium J2900 (Bay Trail-D), AMD A4-4300M (Trinity), Intel Pentium N3530 (Bay Trail-M), Intel Celeron 1017U (Ivy Bridge), Intel Celeron 3205U (Broadwell), Intel Celeron B820 (Sandy Bridge), Intel Pentium N3700 (Braswell), AMD Turion II P540 (Champlain), AMD Turion II Ultra M600 (Caspian), Intel Pentium J2850 (Bay Trail-D), Intel Pentium N3520 (Bay Trail-M), Intel Celeron J1900 (Bay Trail-D), Intel Atom x7-Z8700 (Cherry Trail), Intel Core i3-4010Y (Haswell), AMD E2-9010 (Stoney Ridge), AMD E2-7110 (Carrizo-L), AMD A4-6210 (Beema), AMD A6-8500P (Carrizo), AMD Pro A6-8500B (Carrizo), Intel Atom x5-Z8550 (Cherry Trail), Intel Atom Z3795 (Bay Trail-T), Intel Atom Z3785 (Bay Trail-T), Intel Atom Z3775 (Bay Trail-T), Intel Atom Z3775D (Bay Trail-T), Intel Atom Z3770 (Bay Trail-T), Intel Atom Z3770D (Bay Trail-T), Intel Atom x7-E3950 (Apollo Lake), Intel Atom x5-Z8500 (Cherry Trail), Intel Celeron N2940 (Bay Trail-M), Intel Celeron N3160 (Braswell), Intel Celeron 2957U (Haswell), Intel Celeron 2955U (Haswell), Intel Celeron J3355 (Apollo Lake), Intel Celeron N3350 (Apollo Lake), Intel Celeron 1007U (Ivy Bridge), Intel Celeron N3150 (Braswell), Intel Celeron N2930 (Bay Trail-M), Intel Pentium Dual Core T4300 (Penryn), Intel Celeron J1850 (Bay Trail-D), Intel Pentium N3510 (Bay Trail-M), Intel Celeron Dual-Core T3500 (Penryn), Intel Celeron B815 (Sandy Bridge), Intel Celeron B810 (Sandy Bridge), AMD Athlon II N350 (Champlain), AMD Turion II M540 (Caspian), AMD Turion II P520 (Champlain), Intel Celeron N2920 (Bay Trail-M), Intel Core Duo T2600 (Yonah), Intel Core 2 Duo SL9400 (Penryn), Intel Core 2 Duo SL9380 (Penryn), Intel Pentium Dual Core T3400 (Merom), Intel Core 2 Duo T6400 (Penryn), Intel Core 2 Duo T5870 (Merom), Intel Core i3-3229Y (Ivy Bridge-Y), AMD Turion X2 Ultra ZM-86 (Griffin), Intel Core 2 Duo T7200 (Merom), Intel Core 2 Duo T5800 (Merom), Intel Core 2 Duo T7250 (Merom), AMD Athlon II N330 (Champlain), AMD Athlon II P360 (Champlain), AMD Turion II M520 (Caspian), AMD Athlon II M360 (Caspian), Intel Core 2 Duo T5750 (Merom), Intel Pentium Dual Core T4200 (Penryn), Intel Celeron Dual-Core T3300 (Penryn), Intel Core i7-620UM (Arrandale), Intel Core i3-2377M (Sandy Bridge), Intel Core i3-2375M (Sandy Bridge), AMD Turion II M500 (Caspian), AMD Athlon II P340 (Champlain), AMD Athlon II M340 (Caspian), Intel Core i3-2367M (Sandy Bridge), Intel Core i3-2365M (Sandy Bridge), AMD A4-5100 (Kabini), AMD A4-5050 (Kabini), Intel Core i5-470UM (Arrandale), AMD A4-5000 (Kabini), AMD E2-6110 (Beema), Intel Atom E3845 (Bay Trail), AMD Athlon 64 X2 (Desktop) 4600+ (Windsor), Intel Core 2 Duo L7700 (Merom), Intel Core 2 Duo SP7700 (Merom), Intel Celeron Dual-Core T3100 (Penryn), AMD A10 Micro-6700T (Mullins), AMD A4-3310MX (Llano), AMD A4-3320M (Llano), Intel Atom Z3580 (Moorefield), Intel Atom Z3736F (Bay Trail-T), Intel Atom Z3736G (Bay Trail-T), Intel Atom x5-Z8350 (Cherry Trail), Intel Atom x5-Z8300 (Cherry Trail), AMD Turion X2 Ultra ZM-85 (Puma), AMD Turion X2 Ultra ZM-84 (Puma), Intel Pentium Dual Core T3200 (Merom), Intel Pentium Dual Core T2410 (Merom), Intel Pentium 997 (Sandy Bridge), Intel Atom Z3745 (Bay Trail-T), Intel Atom Z3745D (Bay Trail-T), Intel Atom Z3740 (Bay Trail-T), Intel Atom Z3740D (Bay Trail-T), Intel Atom Z3735D (Bay Trail-T), AMD Athlon II P320 (Champlain), Intel Celeron 1047UE (Ivy Bridge), AMD E2-3800 (Kabini), AMD E2-3000M (Llano), AMD Athlon II M320 (Caspian), Intel Pentium 987 (Sandy Bridge), Intel Celeron 887 (Sandy Bridge), Intel Celeron B800 (Sandy Bridge), Intel Core i3-2357M (Sandy Bridge), AMD A4-3300M (Llano), Intel Core 2 Duo T7100 (Merom), AMD A4-3305M (Llano), Intel Core 2 Duo T5670 (Merom-2M), AMD Turion 64 X2 TL-68 (Tyler), AMD Turion X2 Ultra ZM-82 (Puma), AMD Athlon 64 X2 (Desktop) 4400+ (Windsor), AMD Turion X2 RM-77 (Griffin), AMD Turion X2 RM-76 (Griffin), AMD A6 Pro-7050B (Kaveri), AMD E2-9000 (Stoney Ridge), AMD A6-7000 (Kaveri), AMD Turion 64 X2 TL-66 (Brisbane), Intel Core Duo T2500 (Yonah), Intel Celeron Dual-Core T3000 (Penryn-1M), AMD A6-5345M (Richland), Intel Core i5-540UM (Arrandale), Intel Celeron J1800 (Bay Trail-D), AMD Athlon X2 QL-67 (Lion), AMD Turion X2 RM-75 (Lion), AMD Athlon X2 QL-66 (Lion), AMD Turion X2 RM-74 (Lion), AMD Turion 64 X2 TL-64 (Trinidad), Intel Core 2 Duo SL9300 (Penryn), Intel Core 2 Duo T5600 (Merom), AMD Athlon II M300 (Caspian), AMD Turion X2 Ultra ZM-80 (Puma), Intel Core i5-520UM (Arrandale), Intel Celeron N2840 (Bay Trail-M), Intel Celeron J1750 (Bay Trail-D), Intel Celeron N3060 (Braswell), AMD Athlon X2 QL-65 (Lion), AMD Athlon X2 QL-64 (Lion), Intel Celeron N2910 (Bay Trail-M), Intel Atom x5-E8000 (Cherry Trail), AMD A6-1450 (Temash), AMD Turion X2 RM-72 (Puma), AMD A4 Micro-6400T (Mullins), Intel Core Duo T2450 (Yonah), Intel Core 2 Duo T5550 (Merom), Intel Core Duo T2400 (Yonah), Intel Celeron Dual-Core T1700 (Merom), AMD Turion 64 X2 TL-62 (Tyler), Intel Pentium Dual Core T2390 (Merom), Intel Pentium Dual Core T2130 (Yonah), Intel Core i3-380UM (Arrandale), AMD Turion X2 RM-70 (Puma), AMD Athlon X2 QL-62 (Lion), AMD Turion 64 X2 TL-60 (Trinidad/Tyler), AMD Athlon X2 QL-60 (Lion), Intel Pentium D 820 (Smithfield), Intel Core 2 Duo T5500 (Merom), Intel Core i5-430UM (Arrandale), AMD A6-4455M (Trinity), AMD A4-5145M (Richland), AMD A4-4355M (Trinity), Intel Celeron N2830 (Bay Trail-M), Intel Celeron N2820 (Bay Trail-M), Intel Celeron N3050 (Braswell), Intel Celeron N2815 (Bay Trail-M), Intel Celeron N3000 (Braswell), Intel Celeron N2810 (Bay Trail-M), Intel Atom Z3680 (Bay Trail-T), Intel Atom Z3680D (Bay Trail-T), Intel Core 2 Duo T5470 (Merom-2048), Intel Core 2 Duo T5450 (Merom-2048), Intel Core 2 Duo T5300 (Merom), Intel Core Duo L2500 (Yonah), Intel Core Duo T2350 (Yonah), Intel Core 2 Duo SP7500 (Merom), Intel Core 2 Duo SU9600 (Penryn), Intel Core 2 Duo T5200 (Merom), Intel Core Duo T2250 (Yonah), Intel Core Duo T2300 (Yonah), Intel Core Duo T2300E (Yonah), Intel Core 2 Duo L7500 (Merom), Intel Core Duo L2400 (Yonah), Intel Pentium Dual Core T2370 (Merom), Intel Pentium Dual Core T2080 (Yonah), Intel Core 2 Duo T5270 (Merom-2048), Intel Core 2 Duo T5250 (Merom-2048), Intel Core Duo L2300 (Yonah), Intel Core 2 Duo L7300 (Merom), AMD Turion II Neo K685 (Geneva), VIA Nano QuadCore L4700 (CNQ), Intel Pentium 3561Y (Haswell), Intel Pentium 3560Y (Haswell), Intel Celeron 2961Y (Haswell), Intel Pentium 2129Y (Ivy Bridge), Intel Core 2 Duo SU9400 (Penryn), AMD Turion 64 X2 TL-58 (Tyler), AMD Turion 64 X2 TL-56 (Trinidad / Tyler), Intel Celeron Dual-Core T1600 (Merom), Intel Celeron Dual-Core T1500 (Merom), Intel Pentium 977 (Sandy Bridge), Intel Celeron 877 (Sandy Bridge), Intel Atom Z3570 (Moorefield), AMD Athlon 64 X2 TK-57 (Hawk-256), Intel Core Duo T2050 (Yonah), Intel Celeron Dual-Core T1400 (Merom-2M), AMD Turion II Neo K665 (Geneva), Intel Core i3-330UM (Arrandale), Intel Pentium Dual Core T2330 (Merom), Intel Pentium Dual Core T2060 (Yonah), Intel Pentium 967 (Sandy Bridge), Intel Celeron 867 (Sandy Bridge), Intel Atom Z3560 (Moorefield), AMD E2-3000 (Kabini), Intel Pentium U5600 (Arrandale), Intel Pentium 957 (Sandy Bridge), AMD E1-7010 (Carrizo-L), Intel Atom Z3480 (Merrifield), AMD Athlon 64 X2 TK-55 (Taylor / Hawk-256), AMD Turion II Neo K645 (Geneva), Intel Celeron B730 (Sandy Bridge), AMD Athlon 64 X2 TK-42 (Tyler), AMD Turion 64 X2 TL-53 (Tyler), AMD Athlon 64 X2 TK-53 (Hawk-256), AMD Athlon Neo X2 L325 (Congo), AMD Turion 64 X2 TL-52 (Trinidad), Intel Core 2 Duo SU7300 (Penryn), AMD Turion Neo X2 L625 (Congo), Intel Pentium U5400 (Arrandale), Intel Celeron 1019Y (Ivy Bridge), AMD Turion 64 X2 L510 (Congo), Intel Pentium Dual Core T2310 (Merom), Intel Pentium Dual Core SU4100 (Penryn), Intel Celeron M U3600 (Arrandale), AMD Turion II Neo K625 (Geneva), AMD Turion 64 X2 TL-50 (Taylor), AMD E1-2500 (Kabini), AMD E1 Micro-6200T (Mullins), AMD E1-6010 (Beema), AMD Mobile Sempron X2 NI-52 (Sable), AMD Athlon Neo X2 L335 (Congo), Intel Atom Z3530 (Moorefield), Intel Celeron 847 (Sandy Bridge), Intel Celeron M 925 (Penryn), Intel Celeron 807 (Sandy Bridge), AMD V-Series V160 (Champlain), AMD Athlon II Neo K345 (Champlain), Intel Celeron B720 (Sandy Bridge), Intel Atom D2700 (Cedarview), Intel Core 2 Duo SU9300 (Penryn), Intel Core 2 Duo U7700 (Merom-2048), Intel Core 2 Duo L7100 (Merom), Intel Celeron M 900 (Penryn), AMD V-Series V140 (Champlain), Intel Core 2 Duo U7600 (Merom-2048), Intel Celeron Dual-Core SU2300 (Penryn), Intel Celeron M U3400 (Arrandale), AMD Athlon II Neo K325 (Geneva), AMD E2-2000 (Zacate), Intel Celeron N2808 (Bay Trail-M), AMD E2-1800 (Zacate), AMD E-450 (Zacate), AMD E-350 (Zacate), AMD A4-1350 (Temash), Intel Celeron 927UE (Ivy Bridge), Intel Celeron N2807 (Bay Trail-M), Intel Core Duo U2500 (Yonah), Intel Core 2 Duo U7500 (Merom-2048), Intel Core Duo U2400 (Yonah), Intel Celeron N2806 (Bay Trail-M), Intel Atom E3827 (Bay Trail), Intel Atom N2850 (Cedarview-M), Intel Atom Z3460 (Merrifield), AMD Mobile Athlon 64 4000+ (Newark), Intel Pentium M 780 (Dothan), AMD Turion 64 ML-44 (Lancaster), AMD Turion 64 ML-42 (Lancaster), Intel Pentium M 770 (Dothan), Intel Pentium M 765 (Dothan), Intel Pentium M 760 (Dothan), AMD V-Series V120 (Champlain), AMD Mobile Sempron M140 (Caspian), Intel Celeron B710 (Sandy Bridge), AMD Athlon X2 L310 (Conesus), AMD E1-1500 (Zacate), AMD Turion 64 ML-40 (Lancaster), AMD E1-1200 (Zacate), AMD Turion 64 MT-40 (Lancaster), Intel Pentium M 755 (Dothan), Intel Celeron M 570 (Merom), Intel Celeron M 585 (Merom), AMD Mobile Sempron M120 (Caspian), AMD E-300 (Zacate), Intel Celeron M 560 (Merom), Intel Pentium 4 660 (Prescott 2M), Intel Pentium 4 560 (Prescott), AMD Mobile Sempron M100 (Caspian), AMD Turion 64 MK-38 (Richmond), AMD Turion 64 MT-37 (Lancaster), AMD Turion 64 ML-37 (Lancaster), Intel Core Solo T1400 (Yonah), Intel Celeron M 575 (Merom), Intel Celeron M 550 (Merom), Intel Celeron M 450 (Yonah), Intel Pentium M 750 (Dothan), Intel Pentium M 745 (Dothan), Intel Core Solo T1350 (Yonah), Intel Celeron 797 (Sandy Bridge), Intel Celeron M 540 (Merom), Intel Pentium M 740 (Dothan), Intel Celeron M 440 (Yonah), Intel Pentium M 735 (Dothan), Intel Pentium M 730 (Dothan), Intel Celeron 220 (Conroe), AMD Mobile Athlon 64 3700+ (Clawhammer), AMD Mobile Athlon 64 3400+ (Clawhammer), AMD Turion 64 MK-36 (Richmond), AMD Mobile Sempron 4000+ (Sherman), AMD Mobile Athlon 64 3200+ (Newark), Intel Mobile Pentium 4 552 (Prescott), Intel Mobile Pentium 4 538 (Prescott), AMD Mobile Sempron 3800+ (Sherman), AMD Mobile Sempron SI-42 (Sable), AMD Athlon II Neo K145 (Nile), AMD Mobile Sempron SI-40 (Sable), AMD Mobile Athlon 64 3000+ (Oakville), AMD Athlon II Neo K125 (Geneva), AMD Turion 64 MT-34 (Lancaster), AMD Turion 64 ML-34 (Lancaster), Intel Pentium 4 630 (Prescott 2M), Intel Atom D2560 (Cedarview), Intel Pentium 4-M 548 (Prescott), Intel Mobile Pentium 4 532 (Prescott), Intel Atom D2550 (Cedarview), Intel Atom N2800 (Cedarview-M), AMD E1-2200 (Kabini), Intel Atom E3826 (Bay Trail), Intel Celeron N2805 (Bay Trail-M), AMD A4-1250 (Temash), AMD E1-2100 (Kabini), AMD A4-1200 (Temash), AMD GX-210JA (Temash), Intel Atom D525 (Pinetrail), Intel Atom N2650 (Cedarview-M), Intel Atom E3825 (Bay Trail), Intel Atom E3805 (Bay Trail), AMD Turion 64 MT-32 (Lancaster), AMD Turion 64 ML-32 (Lancaster), AMD Mobile Sempron 3600+ (Sherman), AMD Mobile Athlon 64 2800+ (Oakville), AMD Mobile Athlon 64 2700+ (Clawhammer), AMD Mobile Sempron 3500+ (Keene), AMD Mobile Sempron 3400+ (Albany), AMD Mobile Sempron 3300+ (Roma), AMD Athlon Neo MV-40 (Huron), Intel Atom N570 (Pineview), Intel Atom N2600 (Cedarview-M), Intel Atom 330 (Diamondville), AMD Mobile Sempron 3200+ (Keene), AMD Mobile Sempron 3100+ (Georgetown), AMD Mobile Sempron 3000+ (Paris), Intel Core Solo T1300 (Yonah), Intel Pentium M 725 (Dothan), Intel Celeron M 530 (Merom), Intel Celeron M 430 (Yonah), Intel Celeron M 390 (Dothan), Intel Atom N550 (Pineview), Intel Atom D2500 (Cedarview), Intel Core 2 Solo SU3500 (Penryn), Intel Pentium 4 P4 3.0 (Northwood), AMD Turion 64 MT-30 (Lancaster), AMD Turion 64 ML-30 (Lancaster), Intel Pentium SU2700 (Penryn), Intel Mobile Pentium 4 520 (Northwood), Intel Mobile Pentium 4 518 (Prescott), VIA Nano L2100 (Isaiah), Intel Core Solo U1500 (Yonah), Intel Core 2 Solo SU3300 (Penryn), Intel Celeron M 763 (Penryn), Intel Pentium M 715 (Dothan), Intel Celeron M 520 (Merom), Intel Celeron M 420 (Yonah), Intel Pentium M 778 (Dothan), Intel Celeron M 380 (Dothan), Intel Core Solo T1200 (Yonah), AMD Athlon 64 TF-20 (Sherman), AMD Turion 64 MT-28 (Lancaster), AMD Turion 64 ML-28 (Lancaster), AMD Mobile Sempron 2800+ (Georgetown), Intel Celeron M 410 (Yonah), AMD Mobile Sempron 2700+ (Georgetown), AMD Mobile Sempron 2600+ (Dublin), Intel Celeron M 743 (Penryn), Intel Pentium 4 2.4 GHz (Northwood), Intel Pentium M 710 (Dothan), Intel Celeron M 330 (Banias), Intel Pentium M 758 (Dothan), Intel Pentium M 705 (Banias), Intel Celeron M 370 (Dothan), Motorola PowerPC G4 G4A 1.5 (7447A), Intel Pentium M 718 (Banias), Intel Pentium M 773 (Dothan), Intel Celeron M 320 (Banias), Intel Pentium M 1300 (Banias), Intel Core 2 Solo U2200 (Merom-L), Intel Core Solo U1400 (Yonah), AMD V-Series V105, AMD C-70 (Ontario), AMD C-60 (Ontario), Intel Pentium M 738 (Dothan), Intel Celeron M 360 (Dothan), AMD Mobile Sempron 210U, Intel Celeron M 340 (Banias), AMD C-50 (Ontario), Intel Atom Z560 (Silverthorne), Intel Celeron M 350 (Dothan), VIA C7-M C7-M-2000 (Esther), Intel Atom Z550 (Silverthorne), AMD E-240 (Zacate), Intel Pentium M 753 (Dothan), Intel Celeron M 723 (Penryn), Intel Atom E3815 (Bay Trail), Intel Atom N475 (Pineview), Intel Atom N470 (Pineview), Intel Atom Z540 (Silverthorne), Motorola PowerPC G4 G4 1.3 (7447), VIA Nano U2250 (Isaiah), Intel Atom N455 (Pinetrail), Intel Atom N450 (Pinetrail), Intel Atom N280 (DiamondVille), Intel Atom 230 (Silverthorne), Intel Atom Z530 (Silverthorne), Intel Atom N270 (DiamondVille), Intel Atom Z670 (Lincroft), Intel Celeron M 310 (Banias), AMD Athlon 64 L110, AMD C-30 (Ontario), Intel Pentium M 733 (Dothan), Intel Pentium M 733J (Dothan), Intel Pentium M 713 (Banias), VIA C7-M C7-M-1867 (Esther), Intel Pentium 4-M P4-M 1,7 (Northwood), Intel Mobile Pentium III-M P3M-1200 (Tualatin), Intel Core Solo U1300 (Yonah), Intel Core 2 Solo U2100 (Merom-L), Intel Pentium M 723 (Dothan), Intel Celeron M 722 (Penryn), Intel Celeron M 423 (Yonah), Intel Celeron M 383 (Dothan), Intel Celeron M 373 (Dothan), Intel Celeron M 523 (Merom-L), Intel Pentium M ULV 900 (Banias), Intel Atom N435 (Pinetrail), Intel Atom Z520 (Silverthorne), Intel Mobile A A110 (Stealey), AMD Mobile Sempron 200U (Huron), Intel Celeron 2.8 GHz (Northwood), Motorola PowerPC G4 G4 1.0 (7447), Intel Celeron M 353 (Dothan), Intel Celeron M 333 (Banias), VIA C7-M C7-M-1600 (Esther), VIA Nano U2500 (Isaiah), Intel Atom Z510 (Silverthorne), Intel Atom Z2000 (Penwell), VIA C7-M C7-M-1500 ULV (Esther), Intel Mobile A A100 (Stealey), VIA C3-M C3-M-1500 (Nehemiah), VIA C7-M C7-M-1000 (Esther), Intel Pentium M P-M 600 (Dothan), Intel Celeron M 630 MHz, Intel Atom Z500 (Silverthorne), Transmeta Crusoe TM-5800 (Crusoe), VIA C7-M C7-M-1200 (Esther), VIA C3-M C3-M-1200 (Nehemiah), AMD Geode LX 800 (Castle), AMD Geode LX 700 (Castle), unknown
-
(-) * Smaller values are better. / n123 Number of benchmarks for this median value / * Approximate position
- - -
-

TDP ... Thermal Design Power =  expected maximum power from each of its components while running realistic, worst case applications

-
Please share our article, every link counts!
-
-
-
-
Redaktion, 2023-12-12 (Update: 2023-12-12)
-
-
-
-
-
-
- -
- - - \ No newline at end of file diff --git a/PCData/data/notebookcheck/all-gpu.csv b/PCData/data/notebookcheck/all-gpu.csv deleted file mode 100644 index a1ceda3..0000000 --- a/PCData/data/notebookcheck/all-gpu.csv +++ /dev/null @@ -1,1100 +0,0 @@ -Model,Codename,Architecture,Core speed,Boost / Turbo,Memory Speed,Memory Bus,Memory Type,Max. Memory,DirectX,OpenGL,Process (nm),Days old,Perf. Rating,3DMark Ice Storm GPU,3DMark Cloud Gate Standard Score,3DMark Cloud Gate GPU,3DMark11 P,3DMark11 P GPU,3DMark Fire Strike Score,3DMark Fire Strike Graphics,3DMark Time Spy Score,3DMark Time Spy Graphics,3DMark Vantage P,3DMark06,3DMark01,GFXBench,GFXBench 3.0 1080p Manhattan Offscreen,GFXBench 3.1 Manhattan ES 3.1 Offscreen,Basemark GPU 1.2 Vulkan Medium Offscreen,Basemark X 1.1 Medium Quality,Basemark X 1.1 High Quality,"Unigine Heaven 3.0 DX 11, Normal Tessellation, High Shaders",Unigine Valley 1.0 Extreme HD DirectX,Cinebench R15 OpenGL 64Bit,Cinebench R10 32Bit OpenGL,"ComputeMark v2.1 Normal, Score",LuxMark v2.0 64Bit Sala GPUs-only -NVIDIA RTX 6000 Ada Generation,Ada Lovelace,Ada Lovelace,915,2505,20000,384 bit,8.9,49152,12 Ultimate (12_2),4.6,5,342,~45.3,,,,45615,70850,33120,36679,13057,13239,126448,52895,,,,,104.6,,,,201,368.73,6836,78676,27475 -NVIDIA GeForce RTX 4090,AD102-300-A1,Ada Lovelace,2235,2520,21000,384,GDDR6X,24576,12 Ultimate,4.6,5,439,~74.6,771257,86225.5,249550,64680,104876,52791,72901,31347,36836,136909,64039,,,,,3632,,,,274.95,322,6837,91703,27269.5 -AMD Radeon RX 7900 XTX,Navi 31 XTX,RDNA 3,,2270,20000,384,GDDR6,24560,12 Ultimate (12_2),4.6,5,395,~73.2,738814,87175,250728,53057,80793.5,51397,66967,26641,29699,147286,66523,,,,,,,,,264.5,,,62963,15019 -NVIDIA GeForce RTX 4080,AD103-300-A1,Ada Lovelace,2205,2505,22400,256,GDDR6X,16384,12 Ultimate,4.6,5,439,~67.7,792455,88122,229762,59621,86838,44563,58893,25272,27791,143194,68851,,,,,1810.5,,,,267.25,158.9,,62736.5,24322 -NVIDIA GeForce RTX 3090 Ti,Ampere GA102,Ampere,1560,1860,21000,384,GDDR6X,24576,12_2,4.6,8,675,~56.9,564087,75753,246319,49471,69481,36563,53110,19241,21645,,,,,,,,,,,201.7,204,,52258,16046 -AMD Radeon RX 7900 XT,Navi 31 XT,RDNA 3,,2000,20000,320,GDDR6,20480,12 Ultimate (12_2),4.6,5,395,~70.2,737404,87173,259707,51605.5,75896,50669,63712,24042,25874,142489,66879,,,,,,,,,243.3,,,57570,13489 -NVIDIA GeForce RTX 4070 Ti,AD104-400,Ada Lovelace,2310,2610,21000,192,GDDR6X,12288,12 Ultimate,4.6,5,334,~62.9,815367,86974,217200,56052,75612,42591,53360,22481,22949,135624,66971.5,,,,,104.6,,,,216.75,,,51725.5,19289 -AMD Radeon RX 7900 GRE,Navi 31,RDNA 3,,2245,18000,256,GDDR6,16384,12 Ultimate (12_2),4.6,5,129,~53.3,637522,78905,247366,45225,67134,42407.5,54609.5,19036.5,20658.5,122732,59002.5,,,,,975.8,,,,206.35,356.95,23018.5,47020.5,11051 -AMD Radeon RX 6950 XT,Navi,Navi / RDNA2,1925,2324,18000,256,GDDR6,16,12_2,4.6,7,572,~62.4,497297,80012,229172,48816.5,72227.5,44594.5,59882,20574,22004,119918,58458.5,,,,,,,,,224.3,,,45255.5,22005.5 -NVIDIA GeForce RTX 4090 Laptop GPU,GN21-X11,Ada Lovelace,,2040,20000,256,GDDR6,16384,12 Ultimate,4.6,5,334,~49.6,554375,64860,142552,45723,64848.5,35217.5,46386,20085,21279,113387,64691.5,,4088,1057,993,1746,,,,232,281,16004,49892,19891.5 -NVIDIA RTX 5000 Ada Generation Laptop GPU,,Ada Lovelace,930,1680,20000,256,GDDR6,16384,12 Ultimate,4.6,4,257,~39,,,,39552,53052.5,27801,33145,15316.5,15539.5,,,,,,,742.3,,,,,367.5,,, -NVIDIA GeForce RTX 3090,Ampere GA102,Ampere,1400,1700,19500,384,GDDR6X,24576,12_2,4.6,8,1142,~55.9,763636,84644,231656,47869.5,61569,38748,47773.5,18551,19195,121431,65732,,,,,,,,,235.7,368,6829,48624.5,15017 -NVIDIA GeForce RTX 3080 Ti,Ampere GA102,Ampere,1370,1667,19000,384,GDDR6X,12288,12_2,4.6,8,1142,~55.5,785365,81921,218185,46988,60980,38628.5,47113,18903.5,19224,120236,66856,,,,,,,,,233.3,326.37,6829,48398,15570 -AMD Radeon RX 7800 XT,Navi 32,RDNA 3,,2430,19500,256,GDDR6,16384,12 Ultimate (12_2),4.6,5,112,~57.3,751750,84676,235488,47729,63292,43396,50181,18518,19369,131792,66993,,,,,104.6,,,,191.3,,,43852,10158 -4x NVIDIA RTX A6000,Ampere,Ampere,1410,1800,16000,384,GDDR6,49140,12_2,4.6,8,1131,~38.2,440592,41996,92363,29277,38132,24576,27937,11122,10167,78808,38668,,,,,,,,,134.7,204.8,6831,43210,57054 -NVIDIA RTX A6000,Ampere,Ampere,1410,1800,16000,384,GDDR6,49140,12_2,4.6,8,1131,~40.1,494750,45676,113167,34321,50957,25280,27511,10571,10490,89510,41016,,,,,,,,,,,,47668,14363 -AMD Radeon RX 6900 XT,,Navi / RDNA2,1825,2250,16000,256,GDDR6,16384,12_2,4.6,7,1067,~55.5,,,,42418,59119,39057,50587,17549,18210,,,,,,,,,,,200.8,,,40857,31400 -AMD Radeon RX 7900M,Navi 31,RDNA 3,1825,2090,18000,256,GDDR6,16384,12_2,4.6,5,45,~45.6,,,,41670,59943,40123,50241,18114,19434,,,,,,,104.6,,,,,369,,, -NVIDIA GeForce RTX 4080 Laptop GPU,GN21-X9,Ada Lovelace,1860,2280,20000,192,GDDR6X,12288,12 Ultimate,4.6,5,334,~41.7,,61168,132657,42156.5,57598,32343.5,40687,17218,17879.5,111294,58651.5,,,,,104.6,,,,,270,24367,38663,14841.5 -NVIDIA RTX 4000 Ada Generation Laptop GPU,,Ada Lovelace,,,16000,192,GDDR6,12288,12 Ultimate,4.6,5,257,,,,,,,,,,,,,,,,,,,,,,,,, -NVIDIA GeForce RTX 3080 12 GB,Ampere GA102,Ampere,1260,1710,19000,384,GDDR6X,12288,12_2,4.6,8,691,~53.7,549644,74457,217116,41410,56634,35922,44533,16961,17956,102294,48432,,,,,,,,,203.8,,,42692,14204 -NVIDIA GeForce RTX 3080,Ampere GA102,Ampere,1450,1710,19000,320,GDDR6X,24576,12_2,4.6,8,1150,~49,529548,70338.5,188064,35564.5,53713,31709,39257,16133.5,17535.5,91746.5,43089,,,,,,,,,179,,,40759,12888.5 -NVIDIA GeForce RTX 4070,AD104,Ada Lovelace,1920,2475,21000,192,GDDR6X,12288,12 Ultimate,4.6,5,234,~55.7,773592,82473.5,193559,49045.5,59969,38929,43824,17905,17837,128530,69488,,,,,104.6,,,,192.6,,,42491,14796.5 -NVIDIA RTX 3500 Ada Generation Laptop GPU,,Ada Lovelace,,,16000,192,GDDR6,12288,12 Ultimate,4.6,5,257,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Radeon Pro W6800,Navi 21,Navi / RDNA2,2075,2320,16000,256,GDDR6,32,12_2,2.1,7,885,~33.9,440592,41996,92363,30190,44404,24576,27937,11941,12136,82458,41670,,,,,,,,,164.8,177.7,17302,33935,3260 -AMD Radeon RX 6800 XT,Navi 21,Navi / RDNA2,1825,2250,16000,256,GDDR6,16384,12_2,4.6,7,1087,~48.8,504438,71698,193053,38057,52046,38659,49735,16908,17603,96516,47160,,,,,,,,,190.6,268.1,20430,38823,28023 -NVIDIA GeForce RTX 4070 Laptop GPU,GN21-X6,Ada Lovelace,,2175,16000,128,GDDR6,8192,12 Ultimate,4.6,5,334,~36.3,603749,63781,162423,34455,41011,26013,29860,12062,11955,97153.5,55349.5,,2674,990,743,229.5,,,,115.05,225,19835,25731,10800 -NVIDIA RTX 3000 Ada Generation Laptop GPU,,Ada Lovelace,,,16000,128,GDDR6,8192,12 Ultimate,4.6,5,257,~25.8,,,,27083,29411,18847,20908,8811,8351,,,,,,,900,,,,,288,,, -AMD Radeon RX 6800,,Navi / RDNA2,1815,2105,16000,256,GDDR6,16384,12_2,4.6,7,1087,~53.5,531548,82242,205274,41784.5,55084,38167,45441,16152,16191,106236,56520,,,,,,,,,189,,,33045.5,14873.5 -AMD Radeon RX 7700 XT,Navi 32,RDNA 3,1700,2544,18000,192,GDDR6,12288,12 Ultimate (12_2),4.6,0,77,~52.3,730434,80883,201871,45241,57340,38758,42801,16454,16777,126733,65983,,,,,104.6,,,,160.1,,,38363,8614 -NVIDIA Titan RTX,Turing TU102,Turing,1350,1770,14000,384,GDDR6,24576,12_1,4.6,12,1803,~41.2,534822,62483,177477,34806,49595.5,27951.5,35821,14005,14936,99561,51380,,,,,,,,,179,173.6,6831,28670,10897.5 -NVIDIA GeForce RTX 3070 Ti,Ampere GA104,Ampere,1575,1770,19000,256,GDDR6,8192,12_,4.6,8,928,~55.8,822127,83142,208428,44497,49760,36017,37663,15243,14923,120454,67407.5,,,,,,,,,194.45,,,34173,11104.5 -NVIDIA GeForce RTX 4060 Ti 16G,AD106,Ada Lovelace,2310,2535,18000,128,GDDR6,16384,12_2,4.6,5,176,~45,600933,75160,165263,38780,43112,31146,32275,13605,13359,116054,66993,,,,,104.6,,,,127.8,,,32285,11226 -NVIDIA GeForce RTX 4060 Ti 8G,AD106,Ada Lovelace,2310,2535,18000,128,GDDR6,8192,12_2,4.6,5,199,~48.1,795061,78295,176605,43231,47803,32828,34245,13872,13427,118567,66598,,,,,104.6,,,,130,,,32082,11264 -NVIDIA GeForce RTX 3080 Ti Laptop GPU,GN20-E8,Ampere,975,1590,14000,256,GDDR6,16384,12_2,4.6,8,698,~36.3,648870,60593,152074,33697,42275,26549,31033,12267,12269,94760,56967,,2363.08,,,174.3,,,,,206,17110,30717,10333 -NVIDIA RTX A5500 Laptop GPU,GA103S,Ampere,,,16000,256,GDDR6,16384,12_2,4.6,8,625,~33.2,,54323,104565,30135,35376,24046,26260,9872,9568,,,,,,,1099,,,,,366,,, -NVIDIA GeForce RTX 3070,Ampere GA104,Ampere,1500,1725,14000,256,GDDR6,8192,12_2,4.6,8,1150,~37.1,502470,53317.5,154864,31876,43005,25739,31020,12665,12892,88744,44229,,,,,,,,,157.5,213.5,6823,30100,10111 -AMD Radeon RX 6750 XT,Navi 22,Navi / RDNA2,2150,2600,18000,192,GDDR6,12272,12_2,4.6,7,617,~43.6,529598,69804,170993,36702,48327,32846,37609,13808,13617,104004,58791,,,,,104.6,,,,161.3,,,26723,4522 -NVIDIA GeForce RTX 2080 Ti (Desktop),Turing TU102,Turing,1350,1545,14000,352,GDDR6,11264,12_1,4.6,12,1901,~38.4,521458,56080.5,165122,33327,47166,26227,34316,13518.5,14370.5,83556,44825,,,,,,,,,163,160.9,6829,28047,10178 -AMD Radeon RX 6700 XT,Navi 22,Navi / RDNA2,2321,2581,16000,192,GDDR6,12272,12_2,4.6,7,968,~48,579310,76922,176617,38400,45676,31834,35504,12913,12514,109039,64151,,,,,,,,,155.4,,,25057,11049.5 -NVIDIA GeForce RTX 3080 Laptop GPU,GN20-E7 GA104,Ampere,780 - 1100,1245 - 1710,14000,256,GDDR6,16384,12_2,4.6,8,1067,~31.8,541176,49246,111181,29192,38087,22706,27266,10472.5,10773.5,75159,44856,,,,,245,,,,129.2,182.3,6842,23340,11251 -NVIDIA GeForce RTX 3060 Ti,Ampere GA104,Ampere,1410,1665,14000,256,GDDR6,8192,12_2,4.6,8,1074,~35.1,443119,49931,120576,26587,33006.5,21869.5,24898,10556.5,10802,81097,47127,,,,,779,,,,136,,,27790.5,9653.5 -Intel Arc A770,DG2-512,Alchemist,2100,2400,16000,256,GDDR6,16384,12 Ultimate (12_2),4.6,6,394,~41.5,628292,69520,139166,35386,41303,30755,32666,14047,13953,103295,58321,,,,,104.6,,,,83,,,23997,10921 -NVIDIA GeForce RTX 4060,AD107,Ada Lovelace,1830,2460,17000,128,GDDR6,8192,12_2,4.6,5,211,~45.6,769721,74606,156140,36813,38191,26965,28111,11138,10494,107451,68041,,,,,,,,,115.3,,,23841,8991 -AMD Radeon RX 7600,Navi 33,,1720,2655,18000,128,GDDR6,8192,12_2,4.6,6,170,~43.4,646153,78794,183336,38744,43430,30440,32404,11682,11062,114647,66506,,,,,104.6,,,,107.5,,,25119,5583 -AMD Radeon RX 6850M XT,Navi 22,RDNA 2,,2463,18000,192,GDDR6,12288,12,4.6,7,710,~39.4,,61794,172972,30854.5,42015.5,27931,33900.5,11649.5,11837,,,,,,,,,,,,200.8,,, -NVIDIA GeForce RTX 3070 Ti Laptop GPU,GN20-E6,Ampere,915,1480,14000,256,GDDR6,8192,12_2,4.6,8,710,~35.3,581927,58464,141689,30737,36969.5,24043,27776,10673,10462,81895,50062,,,,,,,,,,201.5,17947,22796,8022 -NVIDIA RTX A4500 Laptop GPU,GA104,Ampere,930,1500,16000,256,GDDR6,16384,12_2,4.6,8,625,,,,,,,,,,,,,,,,,,,,,,,,, -NVIDIA RTX A5000 Laptop GPU,GA104,Ampere,1215,1770,14000,256,GDDR6,16384,12_2,4.6,8,942,~26.7,,33688.5,50153.5,28454,36163.5,22819,27271,10157,10307,,,,2032,654,597,,,,,,291,,24031,9147 -NVIDIA GeForce RTX 4060 Laptop GPU,GN21-X4,Ada Lovelace,,2370,16000,128,GDDR6,8192,12 Ultimate,4.6,5,334,~33.5,598142,60481,152642,30793,35653,23393,26233,10534.5,10301.5,90275,49745.5,,2508.2,844.7,663.4,104.6,,,,,214.51,16072,20014, -NVIDIA RTX 2000 Ada Generation Laptop GPU,,Ada Lovelace,,,16000,128,GDDR6,8192,12 Ultimate,4.6,5,269,~20.9,,,,26717,28615,19082,21189.5,8331,7921.5,37844,53707,,599.3,304.1,193.4,196.8,,,,34.1,259,,14884,6323 -NVIDIA GeForce RTX 2080 Super (Desktop),Turing TU104,Turing,1650,1815,15500,256,GDDR6,8192,12_1,4.6,12,1592,~35.5,515887,50596.5,140388,26415.5,40963,23364,27398,11215.5,11450,,38034.5,,,,,,,,,120.2,198.6,,21009,7878 -NVIDIA Quadro RTX 6000 (Laptop),TU102,Turing,1275,1455,14000,384,GDDR6,24576,12_1,4.6,12,1528,~32,,,,,,,,11084,,,,,,,,,,,,,,,, -AMD Radeon RX 6800M,Navi 22,RDNA 2,2116,2300,16000,192,GDDR6,12288,12,4.6,7,892,~36.2,482999,58796,160859,28826.5,40390.5,26613,34199,10627,11256.5,77244,46433.5,,,,,,,,,117.45,197.97,16581,21425,14770 -AMD Radeon RX 6650 XT,Navi 23,Navi / RDNA2,2055,2635,17500,128,GDDR6,8192,12 Ultimate (12_2),4.6,7,549,~42.4,451929,75884,167944,36173,41739,28042,29796,10690,10104,105955,64608,,,,,,,,,115.5,,,20499,5244.5 -AMD Radeon RX 6600 XT,Navi 23,Navi / RDNA2,1968,2589,16000,128,GDDR6,8192,12_2,4.6,7,868,~36.2,472371,66852,156297,31304,39051,25652,28342,9971,9565,88163,47257,,,,,1002,,,,110.1,308,,19973,7239 -NVIDIA GeForce RTX 2080 (Desktop),Turing TU104,Turing,1515,1710,14000,256,GDDR6,8192,12_1,4.6,12,1901,~35,436117,51449,143576,29073.5,40278,20492,27620,10820,11126,66631,35228,,,,,,,,,121.45,,,20627.5,7907 -NVIDIA GeForce RTX 2080 Super Mobile,N18E-G3 TU104,Turing,1365,1560,14000,256,GDDR6,8192,12_1,4.6,12,1317,~31.5,,54828,141486,28467,34875.5,21377.5,24960,10465.5,10313,69838,41873,,,,,,,,,,166,,17233,8244 -NVIDIA GeForce RTX 3070 Laptop GPU,GN20-E5 GA104,Ampere,780 - 1100,1290 - 1620,14000,256,GDDR6,8192,12_2,4.6,8,1075,~32.1,510435,49493,136558,26152,33996,21167,25477.5,9681,9619,77147.5,47262,,,,,985,,,,126.25,175.65,6836,24877,9606 -NVIDIA RTX A4000 Laptop GPU,GA104,Ampere,780,1680,12000,256,GDDR6,8192,12_2,4.6,8,942,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Radeon RX 6800S,Navi 23,RDNA 2,1800,1975,16000,128,GDDR6,8192,12,4.6,7,892,~32.4,,61531.5,163510,28793,36101,23465.5,26511,9220,9033,82247,51423,,,,,,,,,,190,18164,17442,8018 -AMD Radeon RX 7600M XT,Navi 33,RDNA 3,,2300,18000,128,GDDR6,8192,12,4.6,6,344,~31.8,418181,57801,152903,27492,36365,25367,28256,9803,9261,95780,22993,,,,,104.6,,,,96.5,,,21251,6255 -Intel Arc A750,DG2-512,,2050,2400,16000,256,GDDR6,8192,12 Ultimate (12_2),4.6,6,417,~39.2,634482,66624,130715,33184,37288,28476,29667,12671,12386,98837,57748,,,,,104.6,,,,76.8,,,21700,10403 -NVIDIA GeForce RTX 3060,Ampere GA106,Ampere,1320,1777,15000,192,GDDR6,12288,12_2,4.6,8,1032,~31.4,537787,54094,120745,25149,28375,19572,21379,8721,8559,79706,49934,,,,,,,,,106.7,246.6,13079,20322,6845 -AMD Radeon RX 7700S,Navi 33,RDNA 3,,2200,18000,128,GDDR6,8192,12,4.6,6,332,,,,,,,,,,,,,,,,,,,,,,,,, -NVIDIA GeForce RTX 3080 Max-Q,GN20-E7 GA104,Ampere,780,1245,6000,256,GDDR6,16384,12_2,4.6,8,1040,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Radeon R9 390X2,Grenada,GCN,1000,,5400,512,GDDR5,16384,12_0,2.0,28,2990,,,,,,,,,,,,,,,,,,,,,,,,, -Apple M3 Max 40-Core GPU,,,,,,,LPDDR5-6400,,,,5,45,~37.1,,,,,,,,,,,,,2941.5,1573,1178,,,,,,137.38,,, -Apple M2 Max 38-Core GPU,,,,,,,LPDDR5-6400,,,,5,332,~40.3,,,,,,,,,,,,,3185,1707.7,1294.4,,,,,,147.5,,, -NVIDIA GeForce RTX 2080 Mobile,N18E-G3 TU104,Turing,1380,1590,14000,256,GDDR6,8192,12_1,4.6,12,1792,~30,458810,44306.5,139346,25504,34897,20746,25436,9617,9854,68525,41995,,,,,,,,,,144.85,11602.5,18239,7527 -AMD Radeon RX 6700M,R21M-E110-70,RDNA 2,,2300,16000,160,GDDR6,10240,12,4.6,7,1188,~29.1,,47472,91672,25735.5,33497,23986.5,27924,9038.5,8988.5,66973,46372,,,,,,,,,,186,15120,16389,12486 -NVIDIA GeForce GTX 1080 Ti (Desktop),GP102,Pascal,1481,1600,11000,352,GDDR5X,11264,12_1,4.5 / Vulkan,16,2469,~27.6,394694,43370.5,142490,24935,37671.5,19615.5,27564,8684.5,9401,,33610,,1521,475.5,480.5,1135,,,,114.5,160,6805.5,21948,6591.5 -NVIDIA Titan X Pascal,GP102,Pascal,1418,1531,10000,384,GDDR5X,12288,12_1,4.5 / Vulkan,16,2687,~35.6,496070,58418,135092,30628,35995,23165,27315.5,9417,9076,100948,69049,,,,,,,,,139.75,121.95,6756,21682,6920 -NVIDIA GeForce RTX 2070 Super (Desktop),Turing TU104,Turing,1605,1770,14000,256,GDDR6,8192,12_1,4.6,12,1615,~33.3,515887,55157,129295,27896,35032,22246.5,24638.5,10038,9909,89208.5,55752.5,,,,,,,,,124.45,119.9,6820,18089,7594 -Apple M3 Max 30-Core GPU,,,,,,,LPDDR5-6400,,,,5,45,,,,,,,,,,,,,,,,,,,,,,,,, -NVIDIA Quadro RTX 5000 (Laptop),N19E-Q5,Turing,1035 / 1350,1545 / 1770,14000,256,GDDR6,16384,12_1,4.6,12,1651,~32.5,501167,39398.5,117274,21068.5,24620,18943,23034.5,9012.5,9332,,45180,,1960,626,602,1195,,,302.1,125.5,209.5,19419,19614,7688 -AMD Radeon VII,Vega,Vega,1400,1750,1000,4096,HBM2,16368,12_1,4.6,7,1789,~34,430170,55711.5,146094,26565,37881,22240.5,27448.5,8985,8779.5,62128,35659,,,,,,,,,108.5,,,22798,6869 -AMD Radeon RX 5700 XT (Desktop),Navi 10,Navi / RDNA,1605,1905,14000,256,GDDR6,8192,12,4.6,7,1636,~33,499658,56435.5,146093,28361.5,35822.5,22800,26189,9114,8876,83960.5,46586,,1659,915,,,,,,111.8,163.9,21190,19229,5419 -NVIDIA GeForce RTX 2070 (Desktop),Turing TU106,Turing,1410,1620,14000,256,GDDR6,8192,12_1,4.6,12,1924,~28.5,425550,49226,127652,24241,31260,18678.5,23186,9214.5,9300,63155,34492,,,,,,,,,112.95,172.5,6811,17592,7293 -AMD Radeon RX 7600M,Navi 33,RDNA 3,,2070,16000,128,GDDR6,8192,12,4.6,6,344,,,,,,,,,,,,,,,,,,,,,,,,, -NVIDIA GeForce RTX 3070 Max-Q,GN20-E5 GA104,Ampere,,1290,,256,GDDR6,8192,12_2,4.6,8,1063,,,,,,,,,,,,,,,,,,,,,,,,, -Apple M2 Max 30-Core GPU,,,,,,,LPDDR5-6400,,,,5,332,~8.5,,,,,,,,,,,,,,,,,,,,,145.7,,, -NVIDIA GeForce RTX 3060 Laptop GPU,GN20-E3 GA106,Ampere,817,1702,14000,192,GDDR6,6144,12_2,4.6,8,1075,~30.2,466087,45661,104826,23069,27419,18748.5,20609,8322,8222,57333,47118,,,,,,,,,97.4,187,14081,, -Apple M1 Max 32-Core GPU,,,1296,,,512,LPDDR5-6400,,,,5,1118,~28.7,,,,,,,,,,,,,2251.8,1227.24,920.95,,,,,,94.35,,, -AMD Radeon RX 7600S,Navi 33,RDNA 3,,1865,16000,128,GDDR6,8192,12,4.6,6,344,~33.3,,61238,155806,28571,34217.5,23167,25900,9372,9203,79339,51164,,,,,,,,,,209,15192,17320, -NVIDIA GeForce RTX 2070 Super Mobile,N18E-G2R,Turing,1140,1380,14002,256,GDDR6,8192,12_1,4.6,12,1340,~31.3,481195,46745,126287,24028.5,29092.5,18919.5,22016,8315.5,8272,70601,43041,,,,,,,,,,142.1,,15586, -NVIDIA GeForce GTX 1080 (Desktop),Pascal GP104,Pascal,1607,1733,10000,256,GDDR5X,8192,12_1,4.5,16,2767,~32.7,421474,31475,119971,21289.5,29263,16623,21408.5,6902,7185,53598,37251,94578,,,,,,,269,108.35,121.8,6496.5,16548.5,4791 -NVIDIA GeForce RTX 2080 Super Max-Q,N18E-G3,Turing,975,1230,11000,256,GDDR6,8192,12_1,4.6,12,1340,~28.8,468363,44534,127741,24119,29636.5,18578.5,21902.5,8075,8331,60306,38265,,,,,,,,,,142,13620,16221, -NVIDIA RTX A3000 Laptop GPU,GA104,Ampere,1080,1560,14000,192,GDDR6,12288,12_2,4.6,8,965,~21.2,,24449,29996,23888,25990,18097,19710,7703,7320,71308,,,1777,680,500,,,,,,290,,18652,6178 -Apple M1 Max 24-Core GPU,,,1296,,,,LPDDR5-6400,,,,5,1118,~25.9,,,,,,,,,,,,,2027,1153,686,,,,,,94,,, -NVIDIA GeForce RTX 2060 Super (Desktop),Turing TU106,Turing,1470,1650,14000,256,GDDR6,8192,12_1,4.6,12,1615,~34.5,487878,53006,119831,25594,29636.5,20086,21970,9034,8673,83630.5,56641,,,,,,,,,112,,,15762.5,6995 -Intel Arc A770M,Alchemist,Xe HPG,1650,,16000,256,GDDR6,16384,12_2,4.6,6,625,~31.4,,53345,124487,29170,37375,22178.5,25563,10997,10783,77403,48471,,,,,,,,,75.2,216.53,18594,20027,10975 -AMD Radeon RX 6600,Navi 23,Navi / RDNA2,2044,2491,14500,128,GDDR6,8192,12_2,4.6,7,793,~37.8,545762,69998,145870,28640.5,31774,21964,23366,8688,8092,94734,63840,,,,,,,,,94.5,,,16965,5492.5 -AMD Radeon RX 6650M XT,,RDNA 2,,2162,18000,128,GDDR6,8192,12,4.6,7,710,,,,,,,,,,,,,,,,,,,,,,,,, -Apple M3 Pro 18-Core GPU,,,,,,,LPDDR5-6400,,,,5,45,~26.9,,,,,,,,,,,,,1480,936,670,,,,,,,,, -Apple M2 Pro 19-Core GPU,,,444,1398,,,LPDDR5-6400,,,,5,332,~26.5,,,,,,,,,,,,,1969.6,1131.2,748.2,,,,,,140.91,,, -AMD Radeon RX 5700 (Desktop),Navi 10,Navi / RDNA,1465,1725,14000,256,GDDR6,8192,12,4.6,7,1636,~36.4,489113,60179,132911,27649.5,31470,21701,23746,8478,8051,91992.5,65695,,,,,,,,,102.2,,,16453,4650 -AMD Radeon RX 6650M,,RDNA 2,,2222,18000,128,GDDR6,8192,12,4.6,7,710,~27.4,,,,26153,32846,22516,25739,8869,8700,,,,,,,,,,,,175.8,,, -AMD Radeon RX 6600M,R21M-E65-70,RDNA 2,2068,2177,14000,128,GDDR6,8192,12,4.6,7,1188,~28.8,479404,54130.5,144612,25585,31868,20855,23525,8094,7840,72685.5,45858.5,,,,,217,,,,93.1,179.6,14717,16123,5564 -AMD Radeon RX 6700S,,RDNA 2,1700,1890,14000,128,GDDR6,10240,12,4.6,7,710,~29.7,,59135,153853,26867,32662,21375,24135,8547,8316,75332,48289,,,,,,,,,,207,17573,15945,2530 -NVIDIA GeForce RTX 2070 Mobile,N18E-G2 TU106,Turing,1215,1440,14000,256,GDDR6,8192,12_1,4.6,12,1792,~26.4,444708,39206.5,123004,20935,26005,17762,20392,7499,7738,64151,42409.5,,,,,,,,,,133,13457,14446,6570 -NVIDIA Quadro RTX 5000 Max-Q,N19E-Q5 MAX-Q,Turing,600 - 930,1350 - 1455,14000,256,GDDR6,16384,12_1,4.6,12,1651,~25.9,433183,32096,64768,20890,26465,16600.5,19790,7282.5,7396,53221,40509.5,,1334.5,522,466.7,,,,236.6,94.6,210,6819,14178.5,4983 -NVIDIA GeForce RTX 2080 Max-Q,N18E-G3-A1 MAX-Q TU104,Turing,735-990,1095-1230,12000,256,GDDR6,8192,12_1,4.6,12,1792,~24.8,425550,34287,117764,21067,27973,17504,20703,7484,7923,51930,37613,,,,,,,,,,119.7,8197.5,14673,5110 -NVIDIA GeForce RTX 2060 (Desktop),Turing TU106,Turing,1320,1620,14000,192,GDDR6,6144,12_1,4.6,12,1792,~28.1,424149,44523,107083,22982,27162.5,16267,19338,7878,7732,60454,33727,,,,,,,,,91.2,,,14375,5655 -AMD Radeon RX 5700M,Navi 10 / R19M-E120,Navi / RDNA,1465,1720,12000,256,GDDR6,8192,12,4.6,7,1372,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Radeon RX Vega 64,Vega,Vega,1630,,945,2048,HBM2,8192,12_1,4.6,14,2302,~28,392304,44176,127374,22898,30823.5,18368,22501,7334,7109,55262,36216,,,,,,,,,79.2,135.25,14194,, -NVIDIA GeForce GTX 1080 Mobile,N17E-G3,Pascal,1566,1733,10000,256,GDDR5X,8192,12_1,4.5,16,2665,~27.6,409018,32845,126690,20498.5,28526.5,17223,21394,6584.5,6917,48874,34697.5,,,,,,,,225.2,95.9,122.7,9778.5,16459,4525 -NVIDIA Quadro RTX 4000 (Laptop),N19E-Q3,Turing,1110,1560,14000,256,GDDR6,8192,12_1,4.6,12,1651,~22.4,445161,38830,119052,21595,25370.5,16903,18849,7362,7284,56250,,,1213,490.4,440.5,,,,,89.9,215.5,6824,13576,5927 -NVIDIA GeForce RTX 3060 Max-Q,GN20-E3 GA106,Ampere,,1283,,192,GDDR6,6192,12_2,4.6,8,1063,,,,,,,,,,,,,,,,,,,,,,,,, -Apple M3 Pro 14-Core GPU,,,,,,,LPDDR5-6400,,,,5,45,~19.4,,,,,,,,,,,,,1299,818,565,,,,,,129.85,,, -Apple M2 Pro 16-Core GPU,,,,,,,LPDDR5-6400,,,,5,332,~24,,,,,,,,,,,,,1815,1011,659,,,,,,141.9,,, -Apple M1 Pro 16-Core GPU,,,1296,,,,LPDDR5-6400,,,,5,1118,~20,,,,,,,,,,,,,1561,869,544,,,,,,85.5,,, -AMD Radeon PRO W6600M,,RDNA 2,,,14000,128,GDDR6,8192,12,4.6,7,908,,,,,,,,,,,,,,,,,,,,,,,,, -NVIDIA GeForce RTX 2070 Super Max-Q,N18E-G2R,Turing,930,1155,11000,256,GDDR6,8192,12_1,4.6,12,1340,~28.5,461648,47119,126747,23755.5,27724,18395,20872.5,7611.5,7373.5,65101,43406,,,,,,,,,,138,6835,14015, -NVIDIA Quadro RTX 4000 Max-Q,N19E-Q3 MAX-Q,Turing,780 - 960,1380 - 1485,14000,256,GDDR6,8192,12_1,4.6,12,1651,~19.8,,23809,35167,19888,23574,15010,17049,6724,6764,,,,,,,,,,,,210.5,,, -NVIDIA GeForce GTX 1070 Ti (Desktop),Pascal GP104,Pascal,1607,1683,8000,256,GDDR5,8192,12_1,4.5,16,2222,~26.3,442105,29364,88161,20106,27503,15061,18405,6177,6531,,36475,,,,,,,,,,,,15488,5159 -Apple M1 Pro 14-Core GPU,,,1296,,,,LPDDR5-6400,,,,5,1118,~18.8,,,,,,,,,,,,,1457,817,496,,,,,,91.8,,, -NVIDIA GeForce RTX 2070 Max-Q,N18E-G2 MAX-Q TU106,Turing,885-1080,1185-1305,12000,256,GDDR6,8192,12_1,4.6,12,1792,~22.8,413114,36551.5,106564,18964,22089,15494,17335,6571,6661,48510,35284,,,,,,,,,,119.95,8082.5,12103,5235 -AMD Radeon RX Vega 56,Vega,Vega,1138,1474,800,409.6,HBM2,8192,12_1,4.6,14,2302,~28.4,412820,47018,125359,22937,29086,17098,20759,6746,6482,54586,36286,,,,,,,,,76.4,,,17030,5459 -AMD Radeon RX 6600S,,RDNA 2,,1881,16000,128,GDDR6,8192,12,4.6,7,710,,,,,,,,,,,,,,,,,,,,,,,,, -NVIDIA Quadro P5200,,Pascal,1316,1569,7216,256,GDDR5,16384,12_1,4.5,16,2517,~24.1,,43443.5,106328,21715,25100,16625.5,18467,6646.5,6422,65844,44390,,,,,,,,,,234.3,6833,15892,5183 -NVIDIA Quadro RTX 3000 (Laptop),N19E-Q1,Turing,945,1380,14000,192,GDDR6,6144,12_1,4.6,12,1651,~18.8,,36407,91394,17864,19878.5,13570,14841.5,5923,5589,50309,37304,,1010,407.8,384.8,,,,,58.3,204,6821,8716,5769 -NVIDIA GeForce RTX 2060 Mobile,N18E-G1 TU106,Turing,960,1200,14000,192,GDDR6,6144,12_1,4.6,12,1792,~22.7,411721,36017.5,99178.5,18110,21261.5,14690,16331,6192,6141,57644,38509,,,,,,,,,,120.4,9210,12241,5054 -NVIDIA GeForce RTX 3050,Ampere GA106,Ampere,1552,1777,1750,128 Bit,GDDR6,8192,12_2,4.6,8,710,~30.6,580370,56411,90224,21937.5,21357.5,14733.5,15684.5,6725.5,6150,77233.5,56504,,,,,,,,,73.5,,,15273.5,4730 -NVIDIA GeForce GTX 1070 (Desktop),Pascal GP104,Pascal,1506,1683,8000,256,GDDR5,8192,12_1,4.5,16,2767,~23.4,463865,30229.5,106934,19449,24652,14984,18255,5679,5896,50995,37799.5,,,,,,,,,92.6,136,6835,13488.5,4444.5 -AMD Radeon RX 5600 XT (Desktop),,,1235,1750,12000,192,GDDR6,6144,12,4.6,7,1412,~35.8,548796,60317,115838,29969,31310,20153,22058,8257.5,7710.5,86004,65379,,,,,,,,,91.85,,,15852.5,4325.5 -NVIDIA Quadro RTX 3000 Max-Q,N19E-Q1 MAX-Q,Turing,600 - 870,1215 - 1380,14000,192,GDDR6,6144,12_1,4.6,12,1651,~16.5,,33281.5,66284,16577,17523,12642,13617,5357,5048,,,,,,,,,,,68,202,6821,10064,4392 -NVIDIA GeForce GTX 1080 Max-Q,N17E-G3 Max-Q,Pascal,1101 - 1290,1278 - 1468,10000,256,GDDR5X,8192,12_1,4.5,16,2378,~25.1,387951,28375,114542,16910.5,23540,14273.5,18191.5,5591.5,5868.5,39562,31555,69346,1365,432.5,414,,,,197,84.8,111.15,9138,13756,4618 -AMD Radeon Pro Vega 56,Vega,Vega,1247,,786,2048,HBM2,8192,12_1,,14,2180,~21.6,,,,20785,25589,15302,17797,5831,5465,,35787,,,,,,,,,69.8,129.1,,,3851 -NVIDIA GeForce GTX 1070 Mobile,N17E-G2,Pascal,1443,1645,8000,256,GDDR5,8192,12_1,4.5,16,2649,~20.1,338057,27920,101041,16939.5,22575.5,13797.5,17236.5,5268,5485,34389,31045,,,298.5,,,,,,82.5,112.3,7504,12369.5,4097 -NVIDIA GeForce RTX 2060 Max-Q,N18E-G1 MAX-Q TU106,Turing,975,1185,11000,192,GDDR6,6144,12_1,4.6,12,1792,~19.9,308872,30659.5,58890,18065,19778.5,13716,14909.5,5844.5,5638.5,50957,37332,,1123,497.9,411.3,,,,,,137,11800,,5786 -NVIDIA Quadro P4200,,Pascal,1215,1480,7132,256,GDDR5,8192,12_1,4.5,16,2036,~22,,,,,,12485,,,,,,,,,,,,,,,,,, -NVIDIA GeForce GTX 1660 Ti (Desktop),Turing TU116,Turing,1500,1770,12000,192,GDDR6,6144,12_1,4.6,12,1745,~27.5,483604,48568,93095,21539,22891.5,15021,16024,6759,6303,61217,41952,,,,,,,,,78.75,,,11915.5,4457.5 -NVIDIA GeForce GTX 1660 Super (Desktop),Turing TU116,Turing,1530,1785,14000,192,GDDR6,6144,12_1,4.6,12,1496,~30.8,477037,56556,93241,22583,21982,15164,15828.5,6545.5,5975,76654,68377,,,,,,,,,77.7,,,11098,4490 -AMD Radeon RX 6500 XT,,Navi / RDNA2,2310,,18000,,GDDR6,4,12_2,4.4,7,695,~28.6,356129,58994,91909,22899,22954,14222,15712,5536,4967,76445,64521,,,,,,,,,54.7,,,13400,3089 -AMD Radeon RX 5500 XT (Desktop),Navi 14 XTX,,1607,1845,1750,128,GDDR6,8192,12,4.6,7,1452,~27.1,560812,57069,86609,19887,19499,13146,14305,5518,4941,68429,63326,,63.6,,,,,,,61,,,10697,3420 -NVIDIA GeForce RTX 4050 Laptop GPU,GN21-X2,Ada Lovelace,,2370,16000,96,GDDR6,6144,12 Ultimate,4.6,5,334,~29.6,552112,52615,139468,27315,30910,19925,22597.5,8647.5,8429.5,85660,50886,,2143.4,801,592,238,,,,,205,16035,16302,8036 -NVIDIA RTX A2000 Laptop GPU,GA107,Ampere,893,1687,14000,128,GDDR6,8192,12_2,4.6,8,965,~19.9,,40815,60336,17348,18058,12211,13157,5523,5016,63738,36019,,,,,,,,,,311,6839,13585,4554 -Intel Arc A730M,Alchemist,Xe HPG,1100,,14000,192,GDDR6,12288,12_2,4.6,6,625,~26.2,467230,45257,83396,24285.5,29144,18213.5,21294,8919.5,8813,63380,44798,,,,,104.6,,,,61,196.37,16778.5,14038.5,9344 -AMD Radeon Pro 5600M,Navi 10,Navi / RDNA,,1265,,2048,HBM2,8192,12,4.6,7,1266,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Radeon RX 5600M,Navi 10,Navi / RDNA,,1265,12000,192,GDDR6,6144,12,4.6,7,1426,~19.3,,36805,72335,20663.5,24213,15729,17652.5,6610,5933.5,18582,38139,,,,,,,,,,122.7,12922,2921,1082 -NVIDIA Quadro P5000,N17E-Q5,Pascal,1164,1506,6006,256,GDDR5,16384,12_1,4.5,16,2517,~19.1,401246,28999,86679,16450,20096,12363,14666,4836,3882.5,44689,33236,,1192,448.1,377.6,,,,,74.35,138.4,6830,11544,4323 -NVIDIA GeForce GTX 1660 Ti Mobile,N18E-G0,Turing,1455,1590,12000,192,GDDR6,6144,12_1,4.6,12,1685,~21.6,419800,35118.5,97517,17351,20118.5,13140,14818,5697,5659,49309,38153.5,,,,,,,,,,120.55,8212,10148,4827 -NVIDIA GeForce RTX 3050 Ti Laptop GPU,GN20-P1,Ampere,1222,1485,12000,128,GDDR6,4096,12_2,4.6,8,937,~22.6,422757,39980,72925,16439,18057,11894,13359.5,5341,5170,,45370,,1053,454,336,,,,,,166,13438.5,, -NVIDIA GeForce RTX 3050 6GB Laptop GPU,GN20-P0-R 6GB,Ampere,1237,1492,12000,96,GDDR6,6144,12_2,4.6,8,343,~13.8,,,,17223,18059,11330,12618,5182,4820,,,,,,,104.6,,,,,117.6,,, -Intel Arc A570M,Alchemist,Xe HPG,900,1300,14000,128,GDDR6,8192,12_2,4.6,6,137,,,,,,,,,,,,,,,,,,,,,,,,, -NVIDIA RTX A1000 Laptop GPU,GA107,Ampere,,,14000,128,GDDR6,4096,12_2,4.6,8,625,~18.5,,40266,70880,15198,14402,10123,10914,4558,4101,,,,,,,,,,,,294,,, -NVIDIA GeForce GTX 980 Ti,GM200,Maxwell,1000,1200,7000,256,GDDR5,6144,12_1,4.5,28,3106,~22.7,443119,29684,98958,18303,23057,14339,16961,5026,5058,48631,37454,,1131,481,254,,,,,91.1,,,12373,3919 -NVIDIA GeForce GTX 1660 (Desktop),Turing TU116,Turing,1530,1785,8000,192,GDDR5,6144,12_1,4.6,12,1725,~29,524782,51727.5,80889,21492,21131,12883.5,14055,6013.5,5461.5,71229,65295,,,,,,,,,64.2,,,10237,4070 -NVIDIA GeForce GTX 1070 Max-Q,N17E-G2 Max-Q,Pascal,1101 - 1215,1265 - 1379,8000,256,GDDR5,8192,12_1,4.5,16,2378,~19.6,334256,28582.5,99551.5,15409,18688,12598.5,14678.5,4616,4708,44090,30648.5,,,459,,,,,,,102.1,10777,10917,4937.5 -Intel Arc A550M,Alchemist,Xe HPG,900,2005,14000,128,GDDR6,8192,12_2,4.6,6,625,~18.2,,,,,,12900,14350,6320,5830,,,,,,,,,,,,,,, -NVIDIA GeForce GTX 1650 Super (Desktop),,Turing,1530,,14000,192,GDDR6,4096,12_1,4.6,12,1496,~28,657142,50706,68578,18949,18218,11544,12225,5184,4633,64463,64150,,,,,,,,,54.1,,,9521,2993.5 -NVIDIA Quadro P5000 Max-Q,N17E-Q5 Max-Q,Pascal,1101,1366,6006,256,GDDR5,16384,12_1,4.5,16,2517,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Radeon R9 Fury,Fiji,GCN 1.2,1000,,500,4096,HBM,4096,12 (FL 12_0),4.3,28,3092,~18.4,,27379,80439,14860,17543,23381,14580,4720,4712,42039,36041,,794,175,197,,,,,73.5,,,11890,3125 -AMD Radeon R9 Nano,Fiji,GCN 1.2,1000,,500,4096,HBM,4096,12 (FL 12_0),4.3,28,3006,~20.5,402499,28370,81374,14793,17282,12081,14362,4556,4511,43546,37348,,800,211,243,,,,,71.7,,,, -NVIDIA GeForce GTX 980,GM204,Maxwell,1126,1216,3500,256,GDDR5,4096,12_1,4.5,28,3362,~18.9,323076,21638.5,85374,14169,17604.5,10397.5,12938,,,37997,,,,,,,,,129.65,,109.6,6831,9554, -NVIDIA GeForce RTX 3050 4GB Laptop GPU,GN20-P0,Ampere,1238,1500,12000,128,GDDR6,4096,12_2,4.6,8,948,~19.4,480364,34692,65911,15134,15712,10953,12125,4877,4500,43216,39512,,,,,147,,,,,140.8,11506,10499,4713 -Intel Arc A530M,Alchemist,Xe HPG,900,1300,14000,128,GDDR6,8192,12_2,4.6,6,138,,,,,,,,,,,,,,,,,,,,,,,,, -NVIDIA GeForce GTX 1660 Ti Max-Q,N18E-G0,Turing,1140,1335,12000,192,GDDR6,6144,12_1,4.6,12,1685,~16.6,306910,33027,63086,15913,17439,11615,13355,5072,5084.5,31845,25211,,943,360.6,345.8,,,,,,96.9,8562.5,10027,4254 -NVIDIA RTX A500 Laptop GPU,GA107,Ampere,,,14000,64,GDDR6,4096,12_2,4.6,8,625,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Radeon RX 6550M,,RDNA 2,2000,2560,18000,64,GDDR6,4096,12_2,4.6,6,344,~15.2,,,,19932,20506,12994,14696,4955,4546,,,,,,,104.6,,,,,134.8,,, -AMD Radeon RX 6500M,,RDNA 2,,2191,18000,64,GDDR6,4096,12_2,4.6,6,711,~23,,92553,92553,17548,16290,12287,13980,4795,4434,51599,35958,,,,,,,,,,181,13701,8384,1717 -AMD Radeon RX 6550S,,RDNA 2,,2170,16000,64,GDDR6,4096,12_2,4.6,6,344,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Radeon RX 590 (Desktop),Polaris 30,Polaris,1469,1545,8000,256,GDDR5,8192,12,,12,1844,~24.2,397712,44213,86825,20421.5,23362.5,14430.5,16813.5,5271,4871.5,48454,35704,,,,,,,,,57.3,,,11791,4084 -AMD Radeon RX 580 (Desktop),Polaris 20 Ellesmere,Polaris,1257,1340,8000,256,GDDR5,8192,12,,14,2420,~21.2,348952,37518,82516,17155.5,19274,11985.5,13926.5,4330,3996,44344,33148,,,,,,,,,55.95,,,10210,3612 -NVIDIA GeForce GTX 980 (Laptop),N16E-GXX,Maxwell,1126,1228,3500,256,GDDR5,4096,12_1,4.5,28,3359,~19.1,347481,27629,76705,14925,17200.5,11096,13047,,,39702,32943,,,384.9,,,,,,,117.25,8278.5,9468,3098 -NVIDIA Quadro M5500,,Maxwell,1139,1140,6606,256,GDDR5,8192,12_1,4.5,28,2799,~13.1,,,,14413,,,,,,,,,,,,,,,,,106.7,,, -AMD Radeon R9 390X,Grenada XT,GCN,1050,,6000,512,GDDR5,8192,12 (FL 12_0),4.4,28,3092,~16.6,318024,24518,74351,14327,17944,10431,12389,,,35807,33005,,730,156.1,190.2,,,,,,130.9,,9800,3179 -NVIDIA GeForce GTX 1060 (Desktop),GP106,Pascal,1506,1708,8000,192,GDDR5,6,12_1,4.5,16,2693,~22.6,437988,30538,77035,15802,17401,11090,12984,4631,4194,55892.5,66588,,,446.4,,,,,,62.35,148.7,6819,9266,3408 -AMD Radeon RX 570 (Desktop),Polaris 20 Ellesmere,Polaris,1168,1244,7000,256,GDDR5,8192,12,4.6,14,2420,~21.3,375145,39171,71096,17450,18967,11956,13827,4310,3958,45560,35319,,,,,,,,,49.1,,,9194,3282 -NVIDIA Quadro P4000,N17E-Q3,Pascal,1202,1228,6006,256,GDDR5,16384,12_1,4.5,16,2517,~15.4,369407,18726,53834,12346,15433,10158,12259,3825,3960,36260,29155,,1114,408.4,318,,,,,,107.2,6831,8609,3564 -NVIDIA Quadro T2000 (Laptop),N19P-Q3,Turing,1575,1785,8000,128,GDDR5,4096,12_1,4.6,12,1651,~14,,,,13271,13523.5,,,,,,,,,,,,,,,,203,,, -AMD Radeon RX 480 (Desktop),Polaris 10 Ellesmere,Polaris,1120,1266,8000,256,GDDR5,8192,12,Vulkan,14,2713,~18.7,383333,27843,72213,15476,17919,10329,12186,4001,3882,39552,36954,,777,198,227,,,,132,52.3,166,,9659,3468 -NVIDIA GeForce GTX 1060 Mobile,N17E-G1,Pascal,1404,1670,8000,192,GDDR5,6144,12_1,4.5,16,2663,~16.2,298378,24326.5,74604.5,12449,14693,9739,11558,3618,3580.5,34127,26152,,,,,,,,,81.7,102.1,6838,8538.5,3426.5 -NVIDIA GeForce GTX 1650 Ti Mobile,N18P-G62,Turing,1350,1485,12000,128,GDDR6,4096,12_1,4.6,12,1340,~18.6,410191,28177,65163,13072.5,13266,9222,9930,3851,3618,43517,39720,,,,,,,,,,126.65,6831.5,7120,10574 -Intel Arc A370M,Alchemist,Xe HPG,1550,,14000,64,GDDR6,4096,12_2,4.6,6,625,~13.3,,28128,35604,12520.5,12089.5,7717,8149,4255,3885,,,,,,,,,,,,129.1,,, -AMD Radeon RX 5500M,Navi 14 / R19M-E85,Navi / RDNA,1327,1645,14000,128,GDDR6,4096,12,4.6,7,1526,~15.8,210925,28923.5,50946,13344,16476,10568,12276,4174,4298,,25762.5,,,,,,,,,,103,8386,9581,3411 -AMD Radeon Pro 5500M,Navi 14,Navi / RDNA,,1300,12000,128,GDDR6,8192,12,4.6,7,1481,~20.8,364184,30690,65776,14097,14725,9196,10399,3629,3364,,34321,,,,,,,,,,169.3,,, -NVIDIA Quadro P4000 Max-Q,N17E-Q3 Max-Q,Pascal,1113,1240,6006,256,GDDR5,16384,12_1,4.5,16,2517,~18.1,297918,25528,74933,13482,15837,10473,12312,,,,28211,,,,,,,,,,105,12498,8605,4369 -NVIDIA Quadro P3200,N18E-Q1,Pascal,708 - 1202,1228,7008,192,GDDR5,6084,12_1,4.5,16,2470,~19.1,419543,34178,82506.5,15085.5,16619,11058,12554.5,4508.5,4356,45999,29206.5,,,,,,,,,59.9,172,6819,8791,4192 -AMD Radeon RX 580X (Laptop),Polaris,Polaris,,1340,8000,256,GDDR5,8192,12_0,,14,1788,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Radeon RX 580 (Laptop),Polaris,Polaris,1000,1077,8000,256,GDDR5,8192,12_0,4.6,14,2420,~15.8,290090,30938.5,69324.5,12973,15223,9754,11261,3707,3505,,28909,,,120.4,,,,,,,107.75,10620.5,8688,894 -AMD Radeon RX 6450M,,RDNA 2,2000,2220,18000,64,GDDR6,4096,12_2,4.6,6,344,,,,,,,,,,,,,,,,,,,,,,,,, -NVIDIA GeForce GTX 780 Ti,GK110,Kepler,875,928,3500,384,GDDR5,3072,12 (FL 11_0),4.4,28,3678,~20.9,,24263,75688,13151,15619,9974,11812,,,38813,,,,,,,,,143.4,,,,, -AMD Radeon RX Vega Mobile,Vega Mobile,Vega,,,,2048,HBM2,4096,12_1,,14,2156,,,,,,,,,,,,,,,,,,,,,,,,, -NVIDIA GeForce RTX 2050 Mobile,GN20-S7,Ampere,,1477,14000,64,GDDR6,4096,12_1,4.6,8,728,~15.1,,25879,58068,11734,12195,7746,8815,3417.5,3186,46821,39263,,950,443.2,,,,,,,157.7,6856,9236.5,2690 -NVIDIA GeForce MX570,GN20-S5,Ampere,,1477,12000,64,GDDR6,2048,12_1,4.6,8,728,~10,,,,,,,,3625,3610,,,,,,,,,,,,,,, -AMD Radeon RX 6300M,,RDNA 2,,1512,18000,128,GDDR6,2048,12_2,4.6,6,710,,,,,,,,,,,,,,,,,,,,,,,,, -NVIDIA GeForce GTX 1650 (Desktop),,Turing,1485,1665,8000,128,GDDR5,4096,12_1,4.6,12,1685,~18.4,373333,35325,50549,13894,13645,8795,9203,3879,3512,44694,39545.5,,,,,,,,,44.35,174.5,,7085,2579.5 -NVIDIA GeForce GTX 1650 Mobile,"N18P-G0, N18P-G61",Turing,1380,1560,12000,128,"GDDR5, GDDR6",4096,12_1,4.6,12,1685,~15.7,364872,25707,57365,11788,13131.5,8081,9313,3595.5,3488,31310.5,34484.5,,775,331,272.9,,,,100.6,40.4,103.55,6821,6931,2872.5 -AMD Radeon Pro 5300M,Navi 14,Navi / RDNA,,1250,12000,128,GDDR6,4096,12,4.6,7,1481,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Radeon RX 5300M,Navi 14 / E19M-E65,Navi / RDNA,1036,1445,14000,96,GDDR6,3072,12,4.6,7,1526,~16.1,,32417,55837,12818.5,14351,9093,10306,3866.5,3566.5,39264,36032,,,,,,,,,,111,,7843,3395 -NVIDIA Quadro P3000,N17E-Q1,Pascal,1088,1215,7008,192,GDDR5,16384,12_1,4.5,16,2517,~14.2,331998,24681,63331.5,11229,12105,8155.5,9255.5,2999,2864,33390,29440,,712,328.6,249.9,,,,,50.9,113.4,6835,6556,3351.5 -NVIDIA GeForce GTX 970,GM204,Maxwell,1050,1178,3500,224 + 32,GDDR5,4096,12_1,4.5,28,3362,~17.8,422295,25575,72819,13249,16033,9434,11954,3693,3544,42263,37107,,823,396,297,,,,,59.1,141.6,,8549,3020 -NVIDIA GeForce GTX 1060 Max-Q,N17P-G1 Max-Q,Pascal,1063 - 1265,1341 - 1480,8000,192,GDDR5,6,12_1,4.5,16,2378,~17.2,367999,24154.5,74101,11973,13333.5,9148.5,10430,3415,3324,,34189,,,398,,,,,,,110.55,6829.5,7653,2924 -NVIDIA Quadro P3000 Max-Q,N17E-Q1 Max-Q,Pascal,1075,1240,7008,192,GDDR5,16384,12_1,4.5,16,2284,,,,,,,,,,,,,,,,,,,,,,,,, -NVIDIA GeForce GTX 1650 Ti Max-Q,N18P-G62 Max-Q,Turing,1035,1200,10000,128,GDDR6,4096,12_1,4.6,12,1340,~16.9,421834,22895,47657,11398,11538,7700,8564,3235.5,3098,31116,30266,,,,,,,,,,140,,6297,10809 -NVIDIA Quadro T2000 Max-Q,N19P-Q3 MAX-Q,Turing,930 / 1200,1500 / 1620,8000,128,GDDR5,4096,12_1,4.6,12,1651,~12.7,75193,24991.5,41106,11907,11461,7543.5,8261.5,3352,3094,39269,36376,,622,255.2,234.9,,,,,,220,5840,6331,3050 -AMD Radeon RX 480 (Laptop),Polaris,Polaris,,,,256,GDDR5,,12,,14,2680,~8.6,,,,7200,,4070,,,,,,,,,,,,,,,,,, -AMD Radeon Pro WX 7100,Polaris 12,Polaris,,1243,7000,256,GDDR5,8192,12,Vulkan,14,2468,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Radeon RX 470 (Desktop),Polaris 10 Pro,Polaris,926,1206,6600,256,GDDR5,8192,12,Vulkan,14,2677,~16.7,380689,21727,68475,13831.5,17624.5,9507,11884.5,3756,3624,,,,,,,,,,,47.3,,,9044,3020 -AMD Radeon RX 570X (Laptop),Polaris,Polaris,,1168,7000,256,GDDR5,8192,12,Vulkan,14,1788,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Radeon RX 570 (Laptop),Polaris 10 Pro,Polaris,926,1206,7000,256,GDDR5,8192,12,Vulkan,14,2523,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Radeon RX 470 (Laptop),Polaris 10 Pro,Polaris,926,1206,7000,256,GDDR5,8192,12,Vulkan,14,2677,~14,,,,,,8961,10715,,,,,,,,,,,,,,,,, -NVIDIA GeForce GTX 1650 Max-Q,N18P-G0 / N18P-G61,Turing,1020,1245,8000,128,"GDDR5, GDDR6",4096,12_1,4.6,12,1685,~14.3,373879,20883,45243.5,10471,11082.5,7004.5,7779,3070,3016,30957,32040.5,,,,,,,,,,108.05,5967.5,5833,3068 -NVIDIA T1200 Laptop GPU,,Turing,855,1425,10000,128,GDDR6,4096,12_1,4.6,12,965,~16.5,,29050,50827,13779,14387,9255,10134,3891,3595,44135,38139,,,,,,,,,,216.77,,7416,2370 -NVIDIA Quadro T1000 (Laptop),N19P-Q1,Turing,1395,1455,8000,128,GDDR5,4096,12_1,4.6,12,1651,~15.8,375510,25273,53628.5,11592,11377,7783,8727,3474,3261,31509,35033.5,,659.5,315.3,243.6,,,,110.3,39.3,185.7,6818,5965.5,2768 -NVIDIA Quadro T1000 Max-Q,N19P-Q1,Turing,795 / 1230,1455,8000,128,GDDR5,4096,12_1,4.6,12,1651,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Arc 8-Cores iGPU,Meteor Lake iGPU,Xe LPG,,2300,,,,,12_2,4.6,5,2,~11.9,,32084,44146,12973,12693,8211,8971,3693,3305,43185,,,817.4,,,296.5,,,,,151,17440,7627,2611 -Intel Arc A350M,Alchemist,Xe HPG,1150,,14000,64,GDDR6,4096,12_2,4.6,6,625,~11.9,,25146.5,36314.5,10766,10730,6009,7147,3397,3050,31023,31625,,640,309,194,,,,,19.5,149.27,,4447,2796 -Intel Arc 7-Cores iGPU,Meteor Lake iGPU,Xe LPG,,2200,,,,,12_2,4.6,5,2,,,,,,,,,,,,,,,,,,,,,,,,, -NVIDIA T600 Laptop GPU,,Turing,,1400,10000,128,GDDR6,4096,12_1,4.6,12,977,~15.4,,35278,53941,10973,10498,7475,7928,3075,2766,39112,43438,,585.11,,,,,,,,268,,5694,2200 -NVIDIA T550 Laptop GPU,TU117,Turing,1065,1665,12000,64,"GDDR5, GDDR6",4096,12_1,4.6,12,567,~10.5,,17614,33218.5,8160,8066.5,4581,4890,2066,1928,25155,31003,,449.9,229.9,172.6,,,,,,189.2,,5190, -AMD Radeon R9 290X,Hawaii XT,GCN,1000,,5000,512,GDDR5,4096,12 (FL 12_0),4.3,28,3704,~17.4,332042,22197,73987,13415,16167.5,9835,11717,4114,4003,37284,32271,,909,220,242,,,,140,64.2,142,14449.5,8217,2974 -AMD Radeon RX 490M,Polaris,Polaris,,,,,GDDR5,,12,,14,2692,,,,,,,,,,,,,,,,,,,,,,,,, -NVIDIA GeForce GTX 980M,,Maxwell,1038,1127,5000,256,GDDR5,8192,12_1,4.5,28,3356,~14.8,327632,22162,65241,11177,12517,8343,9682,2949,2805,31944,26811,,660,338,252,,,,110.6,40.1,101.3,6837,6552,2294.5 -AMD Radeon RX Vega M GH,Vega Kaby Lake-G,Vega,1063,1190,,,HBM2,4096,12_1,,14,2168,~16.6,357446,24988.5,59162,13212,14302,8506,10248,2999,2908,,33046,,,,,,,,,,143.95,13015,6661,2867 -NVIDIA Quadro M5000M,,Maxwell,962,1051,5000,256,GDDR5,8192,12_1,4.5,28,2996,~17.7,324161,23878.5,63738,11110,11845,8094.5,9227.5,,,,30962,,,,,,,,112.3,47.85,113.3,7675.5,6291,2173 -AMD Radeon Pro Vega 20,Vega Mobile,Vega,815,1283,,,HBM2,4096,,,14,1856,~12.9,278586,21984,62318,11934.5,12289,7558,9043.5,2794.5,2600.5,33590,32864,,578,111.3,117.8,,,,,35.1,129.5,12230,6431,2081 -AMD Radeon 780M,Phoenix,RDNA 3,1500,3000,,,,,12_2,4.6,4,344,~15.2,431550,34005,47301,11819,12032,6922,7627.5,2939,2639,40258,42241.5,,574,288,224,153.8,,,,22.2,185.1,15175.5,10102,1466 -Apple M3 10-Core GPU,,,,,,,LPDDR5-6400,,,,5,45,~13.9,,,,,,,,,,,,,864.2,563.5,393,,,,,,129.8,,, -AMD Radeon R9 280X,Thaiti XTL,GCN,1000,,6000,384,GDDR5,3072,12 (FL 11_1),4.3,28,3720,~15.8,285376,22027,52117,10241,10792,7368,8343,2393,2210,33045,28452,,599,124,,,,,95.2,,,,, -AMD Radeon R9 380,Tonga Pro,GCN,970,,5700,384,GDDR5,4096,12 (FL 12_0),4.4,28,3094,~14.1,303773,21123,50723,11264,12191,7201,8218,,,29722,31844,,543,134.2,146.5,,,,,,,,6407,1778 -NVIDIA GeForce GTX 960,GM206,Maxwell,1127,1178,3500,128,GDDR5,4096,12,4.4,28,3249,~13.3,310860,19250,49917.5,9875.5,10767.5,6698.5,7915.5,,,30751,32987,,526,264.3,194.8,,,,,,119.95,6783.5,5743,1836 -NVIDIA GeForce MX550,GN18-S5,Turing,,1320,12000,64,GDDR6,,12_1,4.6,12,728,~13.8,,29680,40364,10319.5,10005,5869,6125.5,2800,2470,36560,42476,,,,,,,,,27.1,173.45,,6176,1058 -NVIDIA GeForce GTX 1050 Ti Mobile,N17P-G1,Pascal,1493,1620,7000,128,GDDR5,4096,12_1,4.5,14,2537,~13.3,299188,22393,50514,9117,9615.5,6703.5,7740.5,2450.5,2326,30690,27473,,,322.4,,,,,,,99.7,6756,5380,2646 -NVIDIA GeForce GTX 1050 Ti (Desktop),N17P-G1,Pascal,1290,1392,7008,128,GDDR5,4096,12_1,4.5,16,2607,~15.7,352876,24195,50939,9480.5,9453,6816,7485,2568,2308.5,,38483.5,,,,,,,,,40.7,150.35,,5493,2156 -AMD Radeon 680M,RDNA 2 Rembrandt,RDNA 2,,2400,,,,,12_1,,6,710,~13.9,353317,30929,43275,10382,10419,6287,6865,2609,2323,33260,32341,,,,,263,,,,18.8,144.56,15245.5,5813,1277 -NVIDIA Quadro P2000,GP107GL,Pascal,1215,1468,6008,128,GDDR5,4096,12_1,4.5,14,2354,~13.8,350317,24335,43565.5,8699,8387,6160,6847,2259,2046,32964,33795,,,,,,,,,34.6,180.85,6782,4858.5,2691.5 -NVIDIA Quadro P2000 Max-Q,GP107GL,Pascal,1215,1468,6008,128,GDDR5,4096,12_1,4.5,14,2354,~12.9,326075,14996,28679,8363,8148,5958,6742,2206,2049,32724,31482,,,,,,,,,,137.9,6820,,2617 -NVIDIA Quadro M4000M,,Maxwell,975,1013,5012,256,GDDR5,4096,12_1,4.5,28,2996,~10.8,,17686,49204,9295.5,10259,6937,7723,,,,,,,,,,,,,,93.2,,5686, -NVIDIA GeForce GTX 970M,,Maxwell,924,1038,5000,192,GDDR5,6144,12_1,4.5,28,3356,~14.6,274626,20720,51247,9403,9877.5,6565,7463,,,28845,26468,,,,,,,,93,,90.5,6830,5137.5,2223 -NVIDIA T500 Laptop GPU,,Turing,1365,1695,10000,64,"GDDR5, GDDR6",4096,12_1,4.6,12,1663,~9.8,,15851,23453,8132,7995.5,3973.5,4224.5,1958,1787.5,,31133,,503,236,183,,,,,,173,,4734,1976 -NVIDIA GeForce MX450,N17S-G5 / GP107-670-A1,Turing,1395,1575,10000,64,"GDDR5, GDDR6",2048,12_1,4.6,12,1231,~9.4,335125,18399,27570,8068,8250,4306,4725,2099,1900,22831,,,411,209,156.9,235,,,57.2,20.5,130,,4104,986 -NVIDIA GeForce GTX 680,GK104,Kepler,1006,1058,6000,256,GDDR5,2048,11,4.2,28,4285,~14.8,247306,23150,47130,10000,10216.5,6861,7587,2332,2068,29702,24660,52955,652,,,,,,,45.1,78.2,,5790,626 -AMD Radeon HD 7970,Tahiti XT,GCN,925,,5500,384,GDDR5,3072,11.1,4.2,28,4376,~14.2,,14233,43795,7323,7770,5880,6862,,,24757,23807,,,,,,,,77.8,,,,, -AMD Radeon R9 M395X,Amethyst XT,GCN 3,,909,5460,256,GDDR5,,12 (FL 12_0),,28,3347,~10.7,,,,,,7042,7921,,,,,,,,,,,,,,,,, -NVIDIA GeForce GTX 1050 Ti Max-Q,N17P-G1 Max-Q,Pascal,1151 – 1290,1290 – 1417,7000,128,GDDR5,4096,12_1,4.5,16,2172,~12.2,324705,24021,46952,9106,8752,6688,7324,2485,2261,29503.5,28797,,531,253.15,184.85,,,,,40.1,102,4972,4879,2221.5 -AMD Radeon Pro Vega 16,Vega Mobile,Vega,,,,,HBM2,4096,,,14,1856,~12.5,,29958,56273,10926,10569,6902,7745,2443,2198,,,,,,,,,,,,130.2,,, -AMD Radeon RX Vega M GL / 870,Vega Kaby Lake-G,Vega,931,1011,,,HBM2,4096,12_1,,14,2168,~10.5,299071,19473,38812,9380,9862,6225,7329,2225,2072,,16707,,502,182.5,132.5,,,,,,120.65,9791,956,2253 -AMD Radeon Pro WX Vega M GL,Vega Kaby Lake-G,Vega,931,1011,,,HBM2,4096,12_1,,14,2168,~8.6,,19765,38986,9731,10020,6253,7333,2213,2062,,,,,,,,,,,,132.5,9667,967,1567 -AMD Radeon R9 M485X,,GCN 3,,,5000,256,GDDR5,8,12 (FL 12_0),,28,2771,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Radeon R9 M295X,Tonga,GCN 3,,850,5448,256,GDDR5,,12 (FL 12_0),,28,3347,~12.8,,21221,38132,8729.5,8850.5,5941,6590.5,,,29972,35421,,393,179,,,,,,,108.7,,5205, -AMD Radeon R9 M390X,Amethyst (XT) / Tonga,GCN 3,,723,5000,256,GDDR5,4096,12 (FL 12_0),4.3 / Vulkan,28,3111,~10.4,,,,9082,9448,,,,,,,,,,,,,,,,,,, -NVIDIA Quadro M3000M,,Maxwell,1050,,5000,256,GDDR5,4096,12_1,4.5,28,2996,~12.6,,21407.5,44602.5,8539.5,8288.5,5971.5,6536.5,,,27405,27320.5,,,249.9,,,,,79.95,38.15,92.05,5649.5,4737,2261 -NVIDIA GeForce GTX 1050 (Desktop),N17P-G1,Pascal,1354,1455,7008,128,GDDR5,2048,12_1,4.5,14,2607,~17,349683,21461,40922,8817,8571,6122,6797,1984,1797,32463,29795,96234,472,268,200,105,,,88.3,37.6,132,,4749,1864 -NVIDIA GeForce GTX 1050 Mobile,N17P-G0,Pascal,1354,1493,7000,128,GDDR5,4096,12_1,4.5,14,2537,~11.5,287287,18946,38041.5,7552,7678.5,5452,6066,1774,1610,26560,25817,,533,247,187.4,,,,78.3,,102.4,6831,4583,2008 -AMD FirePro W7170M,Tonga,GCN 3,723,,5000,256,GDDR5,4096,12 (FL 12_0),4.3 / Vulkan,28,2996,~12.4,,21612,43124,9580,9708,6180,6935,,,26345,28430,,,,,,,,76.9,30.7,102.8,9551,925,1412 -AMD Radeon R9 M395,,GCN,834,,5460,256,GDDR5,2048,12 (FL 12_0),4.3 / Vulkan,28,3111,~10.8,,16305,38490,8305,8656,5920,6819,,,,,,,,,,,,,,,,, -AMD Radeon R7 370,Trinidad (Pitcairn),GCN 1.0,975,,5600,256,GDDR5,2048,12 FL 11_1,,28,3146,~12,323114,22745,39808.5,8866,8518.5,5525,5961,1606,1442,28723,31752,,515,164,124,,,,,31,,,4861,1486 -NVIDIA GeForce GTX 880M,N15E-GX-A2,Kepler,954,,5000,256,GDDR5,8192,12 (FL 11_0),4.3,28,3565,~12.9,268706,19151,39891,8319.5,8578,5482.5,6101,,,28022,29036.5,,65,,,,,,81.35,,101.4,10451,4916,899 -NVIDIA GeForce GTX 1050 Max-Q,N17P-G0 Max-Q,Pascal,999 - 1189,1139 - 1328,7000,128,GDDR5,4096,12_1,4.5,14,2172,~10.7,318811,18259.5,35392,7347.5,7153.5,5223,5649.5,1753.5,1615,26080.5,19690.5,,441.6,223,165.2,,,,70.2,30.8,109.5,6811,4342.5,1702 -Apple M3 8-Core GPU,,,,,,,LPDDR5-6400,,,,5,45,,,,,,,,,,,,,,,,,,,,,,,,, -Apple M2 10-Core GPU,,,,1398,,,LPDDR5-6400,,,,5,557,~13.4,,,,,,,,,,,,,911.5,535,339.5,,,,,,130.98,,, -NVIDIA GeForce GTX 950,GM206,Maxwell,1024,1188,3300,128,GDDR5,2048,12.1,4.5,28,3039,~10.3,,19192,37454,8520,8351,5605,6207.5,,,,,,,,,,,,,,96.6,,, -NVIDIA T600,,Turing,735,1335,10000,128,GDDR6,4096,12_1,4.6,12,977,~20.7,304731,31922,40917,9497,8694,6284,6552,2496,2195,344838,43997,,,,,,,,,32.7,227.14,6830,4825,2049 -AMD Radeon 760M,Phoenix,RDNA 3,1500,2800,,,,,12_2,4.6,4,345,~12.4,,28339,41767,9781.5,9603,5694,6141.5,2371.5,2115.5,32985,35337,,,,,196.8,,,,,189.25,14191,6922,981 -AMD Radeon 660M,RDNA 2 Rembrandt,RDNA 2,,1900,,,,,12_1,,6,710,~10.3,283076,21223,30129.5,7003.5,6651.5,4391.5,4734.5,1700,1523,23222,27876,,,,,124.5,,,,10.9,119.65,13243,3427.5,822 -AMD Radeon R9 270X,Curacao XT,GCN,1050,,5600,256,GDDR5,2048,12 (FL 11_1),4.3,28,3720,,,,,,,,,,,,,,,,,,,,,,,,, -NVIDIA GeForce GTX 660 Ti,GK104,Kepler,915,980,6000,192,GDDR5,3072,11,,28,4138,~13.5,,13673,37758,7693,8415,4734,5432,,,23726,22997,,,,,,,,78.7,,,,, -NVIDIA GeForce GTX 760,,Kepler,980,1033,3000,256,GDDR5,2048,11.0,4.3,28,3825,~12.4,,19815,40150,7985,7962,5431,5959,,,29073,,,,,,,,,75.2,,,,, -NVIDIA GeForce GTX 780M,N14E-GTX,Kepler,823,,5000,256,GDDR5,4096,11,4.3,28,3851,~11.4,,18252,35965,7690.5,7776.5,4742,5244,,,26827,23381.5,,,,,,,,75.95,,90.5,6833,,749.5 -NVIDIA Quadro K5100M,N15E-Q5-A2,Kepler,771,,3600,256,GDDR5,8192,11,4.3,28,3797,~9.2,2197,17583,31015,7058,6880,4467,4793,,,24795,24910,,,,,,,,,,119.25,6539,,774 -NVIDIA GeForce GTX 680MX,,Kepler,720,,5000,256,GDDR5,2048,11,4.3,28,4070,~7.6,,,,6883,6736,,,,,25501,,,,,,,,,,,,,, -AMD Radeon RX 460 (Desktop),Polaris 11 / Baffin XT,Polaris,1090,1200,7000,128,GDDR5,4096,12,Vulkan,14,2685,~9.4,307888,20429,34892,8868,8597,5166,5701,1916,1731,,,,412,129,104,,,,,23.9,,,4540,1554 -AMD Radeon Pro WX 4150,Polaris 11,Polaris,,1053,7000,128,GDDR5,4096,12,Vulkan,14,2480,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Radeon HD 7870,Pitcairn XT,GCN,1000,,4800,256,GDDR5,2048,11.1,4.2,28,4302,~11.2,,,,6190,6194,,,,,21348,23230,,,,,,,,,,120.1,11154,, -NVIDIA GeForce GTX 965M,"N16E-GS, N16E-GR",Maxwell,924 / 935,950 / 1151,5000,128,GDDR5,4096,12_1,4.5,28,3266,~10.5,259766,18013,34748,7896,7322,4851,5536,1952,1810,23562,24774,,446,213.5,160,,,,66.3,27.1,93.9,6840,4597,1779 -AMD Radeon RX 560X (Laptop),Polaris 11,Polaris,1172,1275,6000,128,GDDR5,4096,12,Vulkan,14,2535,~8.8,189597,13326,35511,7697,8211.5,5514,6329,1925,1789,19829,25527,,413.7,96.2,103.4,,,,,,86.3,6202.5,3450.5,1837.5 -AMD Radeon RX 560 (Laptop),Polaris 11,Polaris,1090,1292,6000,128,GDDR5,4096,12,Vulkan,14,2535,~8.8,,13138,36528,6955,8329,4899,5738,,,,,,,,,,,,,,98.55,,, -NVIDIA Quadro M2200,N17P-Q3,Maxwell,694,1038,5508,128,GDDR5,4096,12_1,4.5,28,2527,~10.7,289176,20644,37796,7581,7372,5252,5850,1903,1724,24622,28149.5,,432,219.1,163.7,,,,,27.9,103.9,6833,4332,2099 -NVIDIA GeForce GTX 870M,N15P-GT,Kepler,941,,5000,192,GDDR5,6144,12 (FL 11_0),4.3,28,3565,~11.9,,16787,31322,7120,7156,4294,4694,,,24035,25112,,,,,,,,64.7,,93.8,10324,, -AMD Radeon R9 M290X,Neptune,GCN,850,900,4800,256,GDDR5,4096,12 (FL 11_1),4.3,28,3629,~10.5,,17182,33147,6859,6817,4793,5294,,,23961,,,,,,,,,62,,,,, -AMD Radeon HD 8970M,Neptune,GCN,850,900,4800,256,GDDR5,4096,11.1,4.2,28,3866,~10.1,,12468.5,31027,5422,6818,4245.5,5038.5,,,18666.5,18211.5,,,,,,,,56.1,,,5919,, -NVIDIA GeForce GTX 580,GF110,Fermi,775,,2004,384,GDDR5,1536,11,,40,4784,~18.6,,,,6059.5,6065,,,,,21940.5,24765,50850.5,,,,,,,,,,6829,, -AMD Radeon HD 6970,Cayman,Terascale 2,880,,2750,256,DDR5,2048,11,,40,4748,~33.2,,,,,,,,,,,24035,,,,,,,,,,,,, -AMD Radeon RX 460 (Laptop),Polaris 11 / Baffin XT,Polaris,,1180,6000,128,GDDR5,4096,12,Vulkan,14,2685,~7,96383,9968,31294,5488,7792.5,4089,5107.5,,,,,,,,,,,,,,57.2,6157,4404, -NVIDIA GeForce GTX 680M,N13E-GTX,Kepler,720,,3600,256,GDDR5,4096,11,,28,4211,~10.2,,15258.5,27684,5996.5,5897.5,3762.5,4049,,,21533.5,22760,,,,,,,,57.65,,,8846,,614 -NVIDIA GeForce GTX 775M,N13E-GTX-A2,Kepler,719,,3600,256,GDDR5,4096,11,,28,3734,~6.8,,,,6101,6071,,,,,,,,,,,,,,,,,,, -NVIDIA Quadro P1000,,Pascal,1493,1519,6008,128,GDDR5,4096,12_1,4.6,14,2508,~8.9,,20654,30721,6377,6001,4508,4787,1560,1395,24240,32223,,374.7,187.9,144.3,,,,,26,136.5,5759,3531,1260 -AMD Radeon R9 M390,Pitcairn,GCN,,958,5460,256,GDDR5,2048,12 (FL 11_2),,28,3111,~10.4,,,,6838,6819,,,,,,25800,,,,,,,,,,101.6,12092,4417,1287 -Intel Iris Xe MAX Graphics,iDG1LPDEV,Gen. 12 Xe,,1650,4266,128,LPDDR4x,4096,12.1,4.6,10,1140,~10.6,177442,20526.5,36993,8024,8214,5658,6333,1876,1743,,22466,,,,,,,,,18.8,105,11787,3898,3073 -AMD FirePro M6100,Bonaire,GCN,1100,,6000,128,GDDR5,2048,12 (FL 12_0),4.3,28,3727,~9.3,,14975,25342,5639,5369,3476,3837,,,19876,25004,,,101,,,,,56.2,,112.5,11116,3355,1084 -AMD Radeon HD 7970M,Wimbledon XT,GCN,850,,4800,256,GDDR5,,11.1,4.2,28,4245,~10.6,,16428,31869,5907,5645,4307,4694,,,21938,22370.5,,,,,,,,57.65,,,8985.5,,1218 -AMD Radeon Pro 560X,Polaris 21,Polaris,907,,5080,128,GDDR5,4096,12,Vulkan,14,2384,~10,255217,18251,32449,7910,7590,4961,5699,1775,1614,,,,,,,179.75,,,,,98.4,,, -AMD Radeon Pro 560,Polaris 21,Polaris,907,,5080,128,GDDR5,4096,12,Vulkan,14,2384,~7.8,198867,15047,23105,5718,5305,3576,3892,1519,1376,18982,24516,,283.6,70,76.8,,,,,18.2,86.8,9792,3756,1323 -AMD Radeon Pro 460,Polaris 11 / Baffin XT,Polaris,900,,5000,128,GDDR5,4096,12,Vulkan,14,2685,~8.6,,16824,27064,6963,6749,4104,4584,1374,,19234,27694,,320.9,92.9,,,,,,18.3,114.7,13571,3841,1192 -AMD Radeon Pro WX 4130,Polaris,Polaris,,1053,7000,128,GDDR5,4096,12,Vulkan,14,2480,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Iris Xe Graphics G7 96EUs,Tiger Lake Xe,Gen. 11 Ice Lake,400,1350,,,,,12_1,4.6,10,1217,~9.1,207909,18954,26820,6865,6518,4659.5,5116,1724,1552.5,24384,28231,,257.7,164.4,118.65,104.6,,,,15.05,97.85,15631.5,3402,2309.5 -NVIDIA GeForce MX350,N17S-G5 / GP107-670-A1,Pascal,1354,1468,7000,64,GDDR5,,12_1,4.6,14,1394,~9.9,285166,16226,24744,6376,6166,3985,4371,1491,1335.5,,23907,,,,,,,,,19.6,110,6839,3661,1582 -NVIDIA GeForce GTX 960M,N16P-GX,Maxwell,1096,1202,5000,128,GDDR5,4096,12 (FL 11_0),4.5,28,3200,~9.9,226308,16283,30085.5,5535.5,5278,3984,4318,1202,1148,,23733,,,,,,,,56.15,,81.4,6741,3337,1254 -NVIDIA GeForce GTX 750 Ti,GM107,Maxwell,1020,1085,2700,128,GDDR5,2048,11.2,4.4,28,3587,~9.5,,17949,31349,5741,5378,4022,4294,,,21608,,,,,,,,,54.3,,,,, -NVIDIA GeForce GTX 570,GF110,Fermi,732,,1600,320,GDDR5,1280,11,,40,4756,~11.3,,,,4951,5033,,,,,17632,21006.5,,,,,,,,,,,,, -NVIDIA GeForce GTX 480,GF100,Fermi,700,,1848,384,GDDR5,1536,11,4.2,40,4756,~14.7,,,,4982,5014,,,,,,23824,,,,,,,,,,,,, -NVIDIA Quadro M1200,N17P-Q1,Maxwell,991,1150,5000,128,GDDR5,4096,12 (FL 11_0),4.5,28,2527,~10.1,240298,13600,27557,5514.5,5310,3878,4141.5,1290,,,26109,,,,,,,,30.1,27.7,108.15,,388,1207 -NVIDIA Quadro P620,,Pascal,1177,1442,6000,128,GDDR5,4096,12_1,4.5,14,1663,~12.1,310112,23291.5,30409.5,6519,5909,4447.5,4672.5,1582.5,1388,25105,35092,,,,,,,,,,166.3,6822,3516,2058 -AMD Radeon RX 550X (Laptop),Polaris 12,Polaris,1176,,7000,128,GDDR5,4096,12,Vulkan,14,1800,~7,184578,11529.5,20039,5502.5,5344.5,3245,3688,1164.5,1050,14519.5,21444,,269,84.3,75.6,,,,35,12.4,79.55,9698,1822.5,805 -AMD Radeon RX 550 (Laptop),Polaris 12,Polaris,1287,1476,6000,128,GDDR5,4096,12,Vulkan,14,2460,~9,239256,13493,23049.5,5226,4559,3248.5,3645,1410,1280.5,,23308,,,,,,,,,,67.1,,921,1609 -AMD Radeon RX 640,Polaris 12,Polaris,1218,1218,6000,64,GDDR5,4096,12,Vulkan,14,1586,~5.7,,12879.5,19945.5,5411,5235,3119,3498.5,1116.5,1007.5,14141,20261,,258.1,80.2,73.5,,,,,,84.15,369,2934,719 -AMD Radeon Pro WX 3200,Polaris 12,Polaris,1082,,6000,128,GDDR5,4096,12,Vulkan,14,1541,~6.2,105833,11960,18866,4657,4337.5,2871,3156,1059,955.5,12538,16329,,,,,,,,,13.4,76.5,9857,649,921 -AMD Radeon Pro 555X,Polaris 21,Polaris,855,,5080,128,GDDR5,4096,12,Vulkan,14,2384,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Radeon Pro 555,Polaris 21,Polaris,855,,5080,128,GDDR5,2048,12,Vulkan,14,2384,~9.4,217690,15337,22624,5566,5185,3430,3721,1207,1078,,26389,,,,,,,,41.9,16,78.3,,2991,1001 -AMD Radeon Pro 455,Polaris 11,Polaris,855,,5000,128,GDDR5,2048,12,Vulkan,14,2605,~8.4,229045,15766,23434,5774,5388,3463,3759,1254,1118,16522,25873,,229,92.2,,,,,,16.4,100,12740,3049,918 -NVIDIA GeForce GT 1030 (Desktop),N17P-G1,Pascal,1228,1670,6000,64,GDDR5,2048,12_1,4.5,14,2404,~9.2,219163,19202.5,22069,5238,4727.5,3381.5,3624.5,1252.5,1090.5,20192,24100.5,,,,,,,,,17.4,,,2925.5,929.5 -NVIDIA Quadro P600,,Pascal,1430,1620,5012,64,GDDR5,,12_1,4.5,14,2222,~9.9,243785,19090.5,28957,5137.5,4655,3824.5,4083,1312,1162,,22920,,,,,,,,,23.9,139.9,13234,2939,1144 -NVIDIA GeForce MX250,N17S-G2,Pascal,1518,1582,7000,64,GDDR5,4096,12_1,4.5,14,1759,~8.1,235421,13121,21545,4850,4633,3244.5,3660,1220.5,1103,16487.5,25428.5,,268.6,141.2,105.3,,,,43.6,17,99.55,6469,2806,1172.5 -NVIDIA GeForce MX330,N17S-LP / N17S-G3,Pascal,1531,1594,7000,64,GDDR5,,12_1,4.6,14,1394,~7.3,243721,15382,20729,5121.5,4834,3470,3762,1235.5,1160,,,,,,,,,,,18.1,98.2,,2890,1047 -NVIDIA GeForce MX150,N17S-G1,Pascal,1468,1532,6008,64,GDDR5,4096,12_1,4.5,14,2404,~8.3,223740,12943,19132,4576,4494,3104,3488,1132.5,1046,10991.5,19312.5,34443,207.9,123.85,90.9,140,,,41.8,15.7,94.1,6526.5,2581,773.5 -Intel Iris Xe Graphics G7 80EUs,Tiger Lake Xe,Gen. 11 Ice Lake,400,1350,,,,,12_1,4.6,10,1217,~8.2,166479,16291,21817.5,5598,5332,3649,4010,1333.5,1180,21729,25371,,254.95,159.2,88.8,104.6,,,43.8,15.95,86.18,13741.5,2903.5,2074 -Intel Graphics 4-Cores iGPU (Arc),Meteor Lake iGPU,Xe LPG,,1950,,,,,12_2,4.6,5,6,,,,,,,,,,,,,,,,,,,,,,,,, -NVIDIA GeForce GT 710,GK208B,Kepler,954,,1800,64,DDR3,2,12 (11_0),4.6,28,3550,~3.3,70459,7654,7270,,,932,947,263,226,,,,,,,,,,,,39.05,6821,, -NVIDIA Quadro M2000M,,Maxwell,1038,1197,5000,128,GDDR5,4096,12 (FL 11_0),4.5,28,2996,~8.5,,17603.5,29795,5456,5143,3859,4157,,,20567,25604,,310.7,163.9,122.9,,,,52.7,20.4,92.65,4616,3145,1426 -NVIDIA Quadro K5000M,N14E-Q5,Kepler,706,,3000,256,GDDR5,4096,11,4.1,28,4214,~9.4,,16890,23060.5,5152,4893,2735,2797.5,,,20139,24239,,,,,,,,47.45,,,6814,,219.5 -NVIDIA Quadro K4100M,N15E-Q3-A2,Kepler,706,,3200,256,GDDR5,4096,11,4.3,28,3797,~9.6,,16071.5,24685,5259.5,4957,3505,3654,,,19909,25559.5,,,,,,,,48.1,,115,6751,,476.5 -NVIDIA GeForce GTX 770M,N14E-GS,Kepler,811,,4000,192,GDDR5,3072,11,4.3,28,3851,~9,,14766,23513,5066,4889,3131,3347,,,19208,22486,,321,,,,,,48.5,,95.1,6804,, -AMD Radeon RX 540X,Polaris 12,GCN 4.0,,1219,6000,128,GDDR5,4096,12_0,4.6,14,2095,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Radeon Pro WX 2100,Polaris 12,Polaris,,1219,6000,128,GDDR5,2048,12,Vulkan,14,2095,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Radeon RX 540,Polaris 12,Polaris,,1219,6000,128,GDDR5,4096,12,Vulkan,14,2460,~6.5,138197,12853.5,24170,4664,4646,3059,3686,869,787,13719.5,15818,,,,46.12,,,,31.2,19.3,76.4,9285,998,858 -AMD Radeon Pro WX 3100,Polaris 12,Polaris,,,6000,128,GDDR5,4096,12,Vulkan,14,2460,~6.6,176357,11887.5,18522,4058,3690.5,2480.5,2671,918,820,11702,18186,,,,,,,,,10.1,75.35,8486.5,2414,921.5 -NVIDIA GeForce GTX 860M,N15P-GX,Maxwell,1029,,5000,128,GDDR5,4096,12 (FL 11_0),4.4,28,3565,~9.5,215144,15323.5,27960.5,5134,4902,3661,3904,,,19215.5,23220.5,,,41.1,,,,,49.5,,93.95,6718,3103.5,1081 -NVIDIA GeForce GTX 675MX,N13E-GSR,Kepler,600,,3600,256,GDDR5,,11,4.1,28,4092,~9.8,,13265,20325,4265.5,3978.5,2721,2831,,,18949.5,23190,,,,,,,,40.9,,,,, -NVIDIA GeForce GTX 950M,N16P-GT,Maxwell,914 - 993,1124,1800 - 5000,128,"DDR3, GDDR5",4096,12 (FL 11_0),4.5,28,3200,~7.3,198867,13966,21355.5,4574.5,4367,2837.5,3200,1094,971,15710,21645,,244.7,132.3,99.15,,,,42.1,17.8,50.36,6029,2747,1242.5 -AMD Radeon Pro 450,Polaris 11,Polaris,800,,5080,128,GDDR5,2048,12,Vulkan,14,2605,~8.2,200518,14305,21533,4914,4502,3027,3252,1074,952,14245,24189,,,,,,,,,,69.8,,2589,774 -AMD Radeon 630,,GCN 1.0,,1219,6000,64,GDDR5,4096,12,4.5,14,1586,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Radeon 540X,,GCN 4.0,,1219,6000,64,GDDR5,2048,12_0,4.6,14,1586,~5.1,,10652,15167,4199,4097,2435,2779,933.5,797,11545,16578,,210,77.5,61.4,,,,30.1,9.3,66.4,7557,2330,671 -AMD Radeon R9 M470X,,GCN 2,1100,,6000,128,GDDR5,4096,12 FL11_1,4.3,28,2771,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Radeon R9 M385X,Strato-XT-M3,GCN,1100,,6000,128,GDDR5,4096,12 FL11_1,4.3,28,3104,~5.9,,8982,22544,4456.5,5514.5,2930.5,3404.5,,,12453,14024,,,,,,,,,,44.8,5087,3559,1331 -NVIDIA Quadro P520,,Pascal,1303,1493,6000,64,GDDR5,2048,12_1,4.5,14,1663,~7,141330,14169.5,19041,4492.5,4185.5,2960.5,3217.5,1135,1010.5,15720,18941.5,,319,165.7,105.1,,,,,35,102.3,5684.5,2619,1448 -NVIDIA GeForce GTX 850M,N15P-GT,Maxwell,876,,2000 - 5000,128,"DDR3, GDDR5",4096,12 (FL 11_0),4.4,28,3565,~7.1,,12781,21873,4495,4385.5,2765.5,3085.5,,,15862.5,16135,,,,,,,,41.8,,78.8,6463,2678,999 -NVIDIA Quadro M1000M,,Maxwell,993,1072,5000,128,GDDR5,4096,12 (FL 11_0),4.5,28,2996,~8.7,,15948.5,23422,4660.5,4229.5,3323,3497.5,,,,24483,,,,,,,,44.9,18.8,95.9,6839,2676,1179.5 -NVIDIA Quadro M620,,Maxwell,1018,,5012,128,GDDR5,2048,12 (FL 11_0),4.5,28,2527,~6.4,,13620,22119.5,4140,3801,2989,3130,968,862,17237,24751,,232.3,133.5,97.8,,,,,16.5,95.25,6851,2530,1079 -AMD Radeon RX Vega 11,Vega Raven Ridge,Vega,,1240,,,,,12_1,,14,2241,~8.1,157382,14579,20847.5,5350,5483,3038.5,3494,1127,935.5,,20608,,,,,,,,,,80.1,11001,3425,1074 -AMD Radeon R9 M280X,Saturn XT,GCN,900,1000,5500,128,GDDR5,4096,12 (FL 12_0),4.4,28,3239,~4.8,,7236,23201,3823,4698,2974,3498,1041,1012,9222,11618,,,,,120,,,,,50.7,5889,2934,1322 -AMD Radeon HD 7950M,Wimbledon Pro,GCN,700,,4000,256,GDDR5,2048,11.1,4.1,28,4245,,,,,,,,,,,,,,,,,,,,,,,,, -NVIDIA GeForce GTX 560 Ti,GF114,Fermi,822,,2004,256,GDDR5,1024,11,,40,4707,~9.1,,,,4084,4013,,,,,15494,16518,,,,,,,,,,,,, -AMD Radeon HD 6870,RV940 Barts,Terascale 2,900,,1050,256,GDDR5,1024,11,,40,4802,~15.1,,15589,26437,4547.5,4218,3002,3141,,,17772.5,23860,60815,,,,,,,,,,10832,, -NVIDIA GeForce GTX 470,GF100,Fermi,607,,1676,320,GDDR5,1280,11,,40,4995,~11.6,,14953.5,25757,4718,4342,2396,2757.5,,,16753,22622,53506,,,,,,,,,,5432,2460,610 -NVIDIA GeForce 945M,,Maxwell,928,1045,2000,128,DDR3,4096,12 (FL 11_0),4.5,28,3200,~7.2,193684,9643,19405,3451,3309.5,2504.5,2850,,,13507,20209,,208.5,113.6,,,,,,,39.32,5899,,733 -Qualcomm Snapdragon X Elite Adreno GPU,,,,,,,,,,,4,50,,,,,,,,,,,,,,,,,,,,,,,,, -NVIDIA GeForce GTX 765M,N14-GE,Kepler,850,,4000,128,GDDR5,2048,11,4.3,28,3851,~6.6,,12408,17616,4083,4019,2362,2479,,,14870,19624,,266,,,,,,35.8,,88.3,6795.5,2400,517 -NVIDIA Quadro K4000M,N14E-Q3,Kepler,600,,2800,256,GDDR5,4096,11,4.1,28,4214,~7.6,,12751,19058,3777,3466,2192,2199,,,15362,20518,,,,,,,,36.5,,,6804,,221 -NVIDIA Quadro P500,,Pascal,1455,1519,5012,64,GDDR5,,12_1,4.5,14,2222,~4,,9301,12868,3338,3022,2118.5,2254.5,,,,,,,,,,,,,11.9,82.45,4374,,547 -Intel UHD Graphics 64EUs (Alder Lake 12th Gen),Alder Lake Xe,Gen. 12,,1400,,,,,12_1,4.6,10,710,~7.8,206410,18180,20306.5,4589,4077.5,3057.5,3252,1077.5,950,15907,23680,,320.3,234.9,130.9,120.3,,,,10.05,79.56,16251.5,1767,1394 -Intel Iris Plus Graphics G7 (Ice Lake 64 EU),Ice Lake G7 Gen. 11,Gen. 11 Ice Lake,300,1100,,,DDR4,,12_1,4.5,10,1662,~5.7,145594,12848.5,16713,4436,4187,2532,2717.5,892,791,14442,16163.5,,165.55,46.6,59.85,102,,,,,65.2,10554,2532,1321 -AMD Radeon RX Vega 10,Vega Raven Ridge,Vega,,1300,,,,,12_1,,14,2241,~4.9,113236,10318.5,14834.5,3449,3389,2028,2272,845,737,11391,14890,,149.35,46.3,43.15,,,,25.1,7,47.11,7856,2453,514 -Intel Iris Pro Graphics P580,Skylake GT4e,Gen. 9 Skylake,350,1100,,eDRAM + 64/128,eDRAM,128,12_1,4.4,14,2882,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Iris Pro Graphics 580,Skylake GT4e,Gen. 9 Skylake,350,1050,,eDRAM + 64/128,eDRAM,128,12_1,4.4,14,2882,~6.1,184880,11346,14594,3510,3220,1836,1903,,,,,,,,,,,,,,85.55,11355,2308,875 -ATI Radeon HD 5850,RV870,Terascale 2,725,,2000,256,GDDR5,1024,11,,40,5189,~7.5,,,,3375,3401,,,,,13267,15598,,,,,,,,,,,6588,, -NVIDIA GeForce GTX 675M,N13E-GS1,Fermi,620,,3000,256,GDDR5,2048,11,,40,4285,~8.1,,12533,18056,3531,3218,2182,2331,,,14756,20452.5,,,,,,,,34.7,,,6084,, -NVIDIA GeForce GTX 580M,N12E-GTX2,Fermi,620,,1500,256,GDDR5,2,11,,40,4553,~12.1,,,,3424,3116.5,,,,,14403.5,20550.5,27355,,,,,,,,,,6209.5,, -AMD Radeon HD 6990M,Blackcomb XTX,Terascale 2,715,,900,256,GDDR5,2048,11,,40,4539,~18.2,,,,3535,3227,,,,,15113,21082,59748,,,,,,,,,,8394.5,, -AMD Radeon R9 M470,Saturn,GCN 2,1000,,6000,128,GDDR5,4096,12 FL11_1,4.3,28,2771,~7.8,,15817,24365,,,3415,3655,,,,,,,,,,,,,,96.9,,, -AMD Radeon R9 M385,,GCN,,,6000,128,GDDR5,4096,11.1,4.3,28,3104,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Radeon R9 M380,Strato Pro GDDR5,GCN,1000,,6000,128,GDDR5,4096,11.1,4.3,28,3104,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Radeon HD 7770,Cape Verde,GCN,1000,,4500,128,GDDR5,1024,11.1,4.2,28,4321,~8.2,,10707,18782,3356,3098,2600,2825,,,14073,19307,,,,,,,,36,,,,, -NVIDIA GeForce GT 650M SLI,N13E-GE,Kepler,790,835,4000,2x 128,GDDR5,2,11,,28,4285,~8.5,,,,3621,3597,,,,,12811.5,16841.5,,,,,,,,35.8,,,5647,, -NVIDIA GeForce GTX 485M,N12E-GTX-A1,Fermi,575,,1500,256,GDDR5,,11,,40,5091,~8.4,,,,2942,2709,,,,,13536,19877.5,,,,,,,,,,,5859.5,, -NVIDIA GeForce GTX 460 768MB,GF104,Fermi,675,,1800,192,GDDR5,768,11,,40,4756,~8.2,133103,12109,17589,2993.5,2810.5,1902,2092,,,12262,17797,,,,,,,,,,,,, -AMD Radeon HD 6790,Barts,Terascale 2,840,,1050,256,GDDR5,1024,11,,40,4637,~17.4,,,,3221,2887,,,,,13637,18630,57880,,,,,,,,,,10793,, -NVIDIA Quadro K3100M,N15E-Q1-A2,Kepler,706,,3200,256,GDDR5,4096,11,4.3,28,3797,~7.8,,13554,18389,3901,3581,2666,2797,,,15120,22437.5,,,,,,,,35.9,,99,6828,,259.5 -AMD FirePro W5170M,,GCN,,925,4500,128,GDDR5,2048,12 (FL 12_0),4.3 / Vulkan,28,2996,~6.1,,14139,19095,4564,4197,2736,2909,,,,,,,,,,,,,,82.3,,, -AMD Radeon R9 M370X,Cape Verde,GCN 1.0,800,,4500,128,GDDR5,2048,12 (FL 11_1),4.3,28,3132,~6.6,188948,11445,15454.5,3991,3637.5,2283,2419,,,13155,18481,,219.8,62.3,66.3,,,,,,61.3,11288,2226,659 -NVIDIA GeForce GTX 670MX,N13E-GR,Kepler,600,,2800,192,GDDR5,,11,4.2,28,4092,~8.4,,,,3768,3587,2261,2371,,,14530,20268,,,,,,,,34.3,,,,, -NVIDIA Quadro 5010M,N12E-Q5,Fermi,450,,1300,256,GDDR5 ECC,4096,11,,40,4679,~8.3,,,,3066,2693,,,,,12991,19036,,,,,,,,,,,6620,, -NVIDIA GeForce GTX 760M,N14E-GL,Kepler,657,,4000,128,GDDR5,2048,11,4.3,28,3851,~7,,11727,15900,3554,3369,2172.5,2271,,,14006.5,19221,,,,,,,,32.75,,81.85,6802.5,2064, -AMD Radeon R9 M275,,GCN,925,,4500,128,GDDR5,4096,12 (FL 11_1),4.2,28,3423,~6.2,145646,5652,11459,3182,3261,1603,1885,,,,10378,,,,,,,,,,50.5,,, -NVIDIA GeForce GTX 670M,N13E-GS1-LP,Fermi,598,,3000,192,GDDR5,3072,11,,40,4285,~7.2,,11267,14940,2989,2698,1824,1950,,,12670,19451.5,,,,,,,,27.6,,,6283,, -AMD Radeon RX Vega 9,Vega Raven Ridge,Vega,,1300,,,,,12_1,,14,2241,~5.5,131922,13582,19255,4424,4380,2524,2789,974,872,12628,13365,,192,73.1,57.4,,,,,,55,6966,2806,588 -NVIDIA Maxwell GPU Surface Book,Surface Book,Maxwell,954,993,5012,64,GDDR5,1024,12 (FL 11_0),4.5,28,2997,~5.6,123411,7464.5,11380,2736,2577,1919,2075.5,,,,15111,,,,,,,,,,34.98,5703.5,1676,1065 -AMD FirePro W5130M,,GCN,,925,4000,128,GDDR5,2048,12 (FL 12_0),4.3 / Vulkan,28,2996,~5.7,,10835.5,14380.5,3383,3106,1997,2110,,,,15680,,,,,,,,,,62.4,9635,896,629 -AMD FirePro M8900,Blackcomb XT,Terascale 2,680,,900,256,GDDR5,2048,11,,40,4630,~23,,,,,,,,,,,16703,,,,,,,,,,,,, -AMD Radeon HD 6970M,Blackcomb XT,Terascale 2,680,,900,256,GDDR5,2048,11,,40,4726,~8,,,,3054,2818.5,,,,,11898,17447,,,,,,,,,,,7951.5,, -AMD Radeon R9 M270,,GCN,725,,4500,128,GDDR5,4096,12 (FL 11_1),4.2,28,3545,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Radeon HD 8870M,,GCN,725,,4500,128,"GDDR5, DDR3",2048,11.1,4.1,28,4014,~6.3,,11331.5,15738.5,3292,2986,2091,2168.5,,,11715,15675,,,,,,,,25.9,,,7769,,629 -AMD Radeon HD 7870M,Heathrow XT,GCN,800,,4000,128,GDDR5,,11.1,4.2,28,4252,~3.4,,,,3037,2702,,,,,13065,,,,,,,,,,,,,, -NVIDIA Quadro K3000M,N14E-Q1,Kepler,654,,2800,256,GDDR5,4096,11,4.1,28,4214,~7.5,,,,2767,2427,,,,,11902,17037.5,,,,,,,,,,,6817.5,, -NVIDIA GeForce GTX 570M,N12E-GT,Fermi,575,,1150,192,GDDR5,3,11,,40,4553,~7.2,,,,2640,2399,,,,,11060,17004.5,,,,,,,,,,,5353.5,, -Intel UHD Graphics Xe G4 48EUs,Tiger Lake Xe,Gen. 11 Ice Lake,350,1450,,,,,12_1,4.6,10,1217,~4.6,97415.5,9422,15992,3508,3510,1962,2321,888,798,10650,10779.5,,210,,85,89.15,,,,,63.8,10477,1863,905 -Intel UHD Graphics Xe 32EUs (Tiger Lake-H),Tiger Lake Xe,Gen. 12,350,1450,,,,,12_1,4.6,10,948,~6.5,112982,15699.5,16207.5,3661.5,3195,2356,2506,784,676.5,13730,19728,,,,,104.8,,,,8.8,82.67,16428,1422,1197 -Intel UHD Graphics 770,Alder Lake xG,Alder Lake,300,1550,,,,,,,10,710,~7.2,179804,17404,16443,4157,3563,2738,2834,926.5,795.5,15865,23428,,236.1,161.8,86.4,118.7,,,34.9,11,94.6,,1667,1293 -Intel UHD Graphics 750 (Alder Lake),Alder Lake xG,,,,,,,,,,0,19706,,,,,,,,,,,,,,,,,,,,,,,,, -Intel UHD Graphics Xe 750 32EUs (Rocket Lake),Rocket Lake Xe,Gen. 12,350,1450,,,,,12_1,4.6,14,990,~5.2,,12450,11377,3276.5,2817.5,2110,2188,741,638,,17496.5,,,,,,,,,,31.05,,1348,1115 -AMD Radeon 740M,Phoenix,RDNA 3,1500,2500,,,,,12_2,4.6,4,206,,,,,,,,,,,,,,,,,,,,,,,,, -Intel UHD Graphics 730 (Rocket Lake),Rocket Lake GT1,,,,,,,,,,14,990,~5.1,83293,9889,11485,2550,2551,1613,1768,,,9013,13964,,,,,,,,,5.9,60.2,11331,914,771 -AMD FirePro M6000,,GCN,750,,4500,128,GDDR5,2048,11.1,4.1,28,4184,~8,,,,2726,2422,,,,,10744,17152,,,,,,,,,,,10283,, -AMD FirePro M5100,,GCN,725,775,4500,128,GDDR5,2048,12 (FL 11_1),4.3,28,3727,~6.5,,12602.5,16784.5,3333,2967,2225,2327.5,,,12308,18391,,,,,,,,27.5,,63.7,10516,2051,658 -NVIDIA GeForce MX230,N17S-G0,Pascal,1519,1531,7000,64,GDDR5,4096,12_1,4.5,14,1759,~6,183041,10529.5,15796.5,3621.5,3363.5,2298.5,2467.5,839.5,748,,18399,,176,91,65,,,,,,83.4,6353,2018,1069 -Apple M2 8-Core GPU,,,,1398,,,LPDDR5-6400,,,,5,557,~12.3,,,,,,,,,,,,,839.2,483.7,306.9,,,,,,128.62,,, -Apple M1 8-Core GPU,,,1278,,,,LPDDR4X-4266,,,,5,1130,~13.6,280200,,,,,,,,,,,,588,345,248.65,,,,,,89.4,,, -AMD Radeon RX Vega 8 (Ryzen 4000/5000),Vega,Vega,,2100,,,,,12_1,,7,1438,~10,299071,22794,27249.5,6085.5,5951,3441.5,3760,1328,1165.5,22428,25886,,,,,138.1,,,,13.8,80.1,15423,4019,1158.5 -NVIDIA Quadro K2100M,,Kepler,667,,3000,128,GDDR5,2048,11,4.3,28,3797,~5.2,,10047,11835,2626,2393.5,1553,1606,,,10648,15586,,,,,,,,23.2,,68.05,6821,1586,150 -ATI Radeon HD 5770,RV830,Terascale 2,850,,1200,128,GDDR5,1024,11,,40,5176,~16.9,,,,2706,2410,,,,,11699,17844,57557,,,,,,,,,,10509,, -NVIDIA GeForce GTX 550 Ti,GF116,Fermi,900,,2050,192,GDDR5,1024,11,,40,4658,~7.4,,,,2464,2272,,,,,10229,15553,,,,,,,,,,,,, -AMD Radeon HD 6950M,Blackcomb Pro,Terascale 2,580,,900,256,GDDR5,2048,11,,40,4726,~6.9,,,,2643,2452,,,,,10122,13719,,,,,,,,,,,,, -AMD Radeon R7 250,Oland XT,GCN,1050,,1800 - 4600,128,"DDR3, GDDR5",2048,12 (FL 11_1),4.3,28,3727,~7.2,,12202,15080,3148,2775,2051,2145,,,12581,16215,,,,,,,,27.4,,,,, -NVIDIA GeForce GT 755M,N14P-,Kepler,980,,5400,128,GDDR5,4096,11,,28,3825,~6.7,,10459,14966.5,2987.5,2800.5,2031,2105.5,,,12711,15861,,,,,,,,27.8,,,6577,, -Apple M1 7-Core GPU,,,1278,,,,LPDDR4X-4266,,,,5,1130,~9.3,,,,,,,,,,,,,620,376,240,,,,,,90,,, -AMD Radeon RX Vega 7,Vega Raven Ridge,Vega,,1800,,,,,12_1,,7,1438,~8.9,194758,19080,24726,5422.5,5248.5,3042,3347.5,1167.5,1032,17714,22493,37469,234.7,90.1,70,104.6,,,34.8,11.8,68.1,11417,2987.5,910 -NVIDIA GeForce GTX 660M,N13E-GE,Kepler,835,,4000,128,GDDR5,2048,11,,28,4285,~9.2,,10200,12861,2543,2369,1703,1751,,,10971,14704,46020,,,,,,,,,,6317.5,566, -NVIDIA GeForce 845M,,Maxwell,1071,1150,2000 - 5000,64/128,"DDR3, GDDR5",2048,12 (FL 11_0),4.4,28,3565,~3.9,,7519,13754,3019,2973,2113,2362,,,,,,,,,,,,,,41.32,5924,, -AMD Radeon HD 8850M,,GCN,575,725,4500,128,"GDDR5, DDR3",2048,11.1,4.1,28,4014,~4.5,,6278,11387,2507,2349,1693,1845,,,8222.5,10281.5,,,,,,,,,,46.93,6957,, -AMD Radeon R9 M365X,,GCN,900,925,4500,128,GDDR5,4096,12,4.4,28,3145,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Radeon R9 M265X,Venus Pro,GCN,625,,4000,128,GDDR5,2048,12 (FL 11_1),,28,3629,~5.2,,9950,12510,2925.5,2633,1900,1997,,,10547,15426,,,,,,,,,,58.7,8596,688,801 -AMD Radeon HD 7850M,Heathrow Pro,GCN,675,,4000,128,GDDR5,,11.1,4.1,28,4252,~7.2,,,,2760,2467,,,,,12254,14111,,,,,,,,,,,,, -AMD Radeon R7 M465,Litho XT,GCN,825,960,4000,128,GDDR5,2048,11.1,,28,2539,~2.6,,,12250,,,,1740,,,,,,,,,,,,,,,,, -AMD Radeon HD 8790M,Mars XTX,GCN,850,,4500,128,GDDR5,2048,11.1,,28,4046,~5.6,,9478,12049,2513,2186.5,1648,1727,,,9835,13118,,,,,,,,,,,7734,, -AMD FirePro W4170M,Mars XTX?,GCN,850,900,4000,128,GDDR5,2048,11.2,,28,4046,~5.7,,10501,12506,2629,2315,1694,1766,,,,13622,,,,,,,,22.4,,54.7,9615,,462 -AMD FirePro W4100,Cape Verde,GCN,630,,4000,128,GDDR5,2048,12 (FL 11_1),,28,2996,~4,,8881,12657,,,1594,1665,,,,,,,,,,,,20.1,,54.3,,,478 -NVIDIA Quadro 4000M,Fermi,Fermi,475,,1200,256,GDDR5,2048,11,,40,4679,~7.5,,,,2334.5,2092,,,,,10722,17727,,,,,,,,,,,6638,, -NVIDIA GeForce GTX 470M,N11E-GT,Fermi,535,,1250,192,GDDR5,,11,,40,4792,~6.9,,,,2205.5,2002.5,,,,,9800.5,16562,,,,,,,,,,,5409,, -NVIDIA GeForce GTX 480M,N11E-GTX-A3,Fermi,425,,1200,256,GDDR5,2048,11,,40,4952,~12.3,,,,2387,2184.5,,,,,8872,15066.5,39907,,,,,,,,,,4919,, -NVIDIA GeForce GT 750M,N14P-GT,Kepler,967,,2000 - 5000,128,"DDR3, GDDR5",4096,11,,28,3910,~5.4,,8632,10822,2655,2543,1508,1574,,,9618,13670,,,,,,,,22.3,,64.2,6711,, -Intel Iris Pro Graphics 6200,Broadwell GT3e,Gen. 8 Broadwell,300,1150,,eDRAM + 64/128,,,12 (FL 11_1),4.3,14,3118,~4.9,,13058.5,15387.5,3094,2766,1685,1736.5,,,,,,,,,,,,,,,,, -NVIDIA GeForce MX130,N16S-GTR,Maxwell,1122,1242,,64,"DDR3, GDDR5",4096,12 (FL 11_0),4.5,28,2174,~5.7,170596,10635,13610,3112,2875,2203,2345,724.5,644.5,11968,18080,,182.3,95.6,73.5,,,,27.9,11.3,78.8,5682.5,1976,700.5 -NVIDIA GeForce 940MX,N16S-GTR-B/S,Maxwell,1122,1242,4000,64,"DDR3, GDDR5",4096,12 (FL 11_0),4.5,28,2836,~5.8,147706,7674,11513,2660.5,2556,1834,1996,710,626,8549,12843,28793,131.1,69.3,60.3,,,,25.2,6.65,64.5,6321.5,1928,799 -NVIDIA Quadro M520,,Maxwell,756,1019,,64,GDDR5,1024,12 (FL 11_0),4.5,28,2527,~5.5,166193,8544,13394,2884,2658,2139,2342,684,614,11278,17305,,178.5,95.4,74.3,,,,27.9,11.4,75.5,6813,2045,708 -NVIDIA Quadro K1100M,,Kepler,705,,2800,128,GDDR5,2048,11,4.3,28,3797,~4.3,,8005,9227.5,2018.5,1826.5,1299,1340.5,,,8992,12159,,,,,,,,17.5,,51.25,5843,,115 -AMD Radeon RX Vega 8 (Ryzen 2000/3000),Vega Raven Ridge,Vega,,1200,,,,,12_1,,14,2241,~4.8,113247,11149,15770,3676,3557,2142,2381,779,693,10294,12213.5,,146.5,34.85,41.7,,,,27.3,7.7,47.78,7779.5,2272,888 -NVIDIA GeForce 940M,N16S-GT-S/B,Maxwell,1072,1176,2000,64,DDR3,4096,12 (FL 11_0),4.5,28,3200,~4.3,123311,6342,8818.5,2485,2405.5,1422,1622,,,7530.5,11920,,127.5,64,55.1,,,,,,52.4,6088,1719,878 -Intel Iris Plus Graphics G4 (Ice Lake 48 EU),Ice Lake G4 Gen. 11,Gen. 11 Ice Lake,300,1100,,,DDR4,,12_1,4.5,10,1662,~5.1,82913.5,11495.5,14910,3461,3225,1988,2124,732,646,8812,13031,,210.6,130.1,78.1,,,,30.5,8.5,55.5,9931.5,1784,875 -NVIDIA GeForce 930MX,N16S-GMR,Maxwell,952,1020,2000,64,"GDDR5, DDR3",,12 (FL 11_0),4.5,28,2836,~4.1,135057,7025.5,9053,2339,2201.5,1427,1597,564,493,8062,12695,,124.1,66.8,52.6,,,,,,47.84,6810,1587.5,544 -Apple A12Z Bionic GPU,,,,,,,,,,,7,1367,~25.7,221182,,,,,,,,,,,,,,,,,,,,,,, -Apple A12X Bionic GPU,,,,,,,,,,,7,1872,~10.5,194856,,,,,,,,,,,,444.7,211.05,171,,,,,,,,, -Apple A17 Pro GPU,,,,,,,,,,,3,94,~6.8,,,,,,,,,,,,,397.1,235.6,163.85,,,,,,,,, -NVIDIA Quadro M600M,,Maxwell,837,876,5012,128,GDDR5,2048,12 (FL 11_0),4.5,28,2996,~5.6,,13310,18491,3216,2911,2322,2430,719,631,12734,20563,,,104.3,75.7,,,,,,75.2,6832,1754,1016 -AMD FirePro W4190M,Mars XTX?,GCN,825,900,4000,128,GDDR5,2048,11.2,,28,2955,~4.6,,7894,12317,2570,2351,1663,1745,,,,12929,,,,,,,,,7.25,48.74,9490,902,984 -Qualcomm Adreno 750,,,,,,,,,,ES 3.2,4,51,~8.8,,,,,,,,,,,,,543,297,219,,,,,,,,, -AMD Radeon R9 M375,,GCN,1015,,2200,128,DDR3,4096,12 (FL 11_1),4.3,28,3144,~3.9,,5932,8466,3269,3314,1514,1667,,,8275,11543,,,42.3,,,,,,,45.5,6544,657,931 -Qualcomm Adreno 740,,,,,,,,,,ES 3.2,4,394,~7.4,,,,,,,,,,,,,479.5,278,207,210.38,,,,,,,, -ARM Immortalis-G715 MP11,Valhall,Valhall,,,,,,,,ES 3.2,4,745,~6.7,,,,,,,,,,,,,477.5,282,153,136.71,,,,,,,, -Apple A16 GPU 5-Core,Crete,,,,,,,,,,4,464,~7.8,,,,,,,,,,,,,458.5,271.5,189,,,,,,,,, -Intel Iris Plus Graphics 655,Kaby Lake GT3e,Gen. 9.5 Kaby Lake,300,1200,,,DDR3/DDR4,,12_1,4.5,14,2296,~10.9,137266,11622,14343,3180.5,2894,1850,1983,684,604.5,12287,17885,,6375.3,199.6,2387.05,,,,,8.2,74.01,10263,1712.5,1038 -AMD Radeon R7 M445,,GCN,920,,2000,64,GDDR5,4096,12,4.5,28,2770,~4.8,126481,7092,9617,2422,2208,1455,1579,530,471,6872,12657,,,,,,,,,6.6,45.91,7760,, -AMD Radeon R7 M380,,GCN,915,,2000,128,DDR3,4096,12 (FL 11_1),4.3,28,3144,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Radeon R7 M370,,GCN,875,,3600,128,GDDR5,2048,12,4.4,28,3145,~4.6,118746,7169,10364,2690,2524,1654,1760,,,8513,12983,,80.7,35.3,,,,,,,52.1,9537.5,507,475 -Apple A15 GPU 5-Core,,,,,,,,,,,5,821,~6.8,,,,,,,,,,,,,427.55,233,152.6,,,,,,,,, -Qualcomm Adreno 730,,,,800,,,,,12,ES 3.2,4,745,~5.4,,,,,,,,,,,,,381,209,136,144.81,,,,,,,, -ARM Mali-G715 MP7,Valhall,Valhall,,,,,,,,ES 3.2,4,745,~4.1,,,,,,,,,,,,,332.5,135.5,102,142.2,,,,,,,, -Qualcomm Adreno 725,,,,800,,,,,12,ES 3.2,4,745,~5.6,,,,,,,,,,,,,359,232,137,120.89,,,,,,,, -ARM Mali-G710 MP10,Valhall,Valhall,,,,,,,,ES 3.2,4,745,~5.4,,,,,,,,,,,,,294,217.5,149,137.4,,,,,,,, -NVIDIA GeForce GT 650M,N13E-GE,Kepler,735,900,1800 - 4000,128,"DDR3, GDDR5",2048,11,,28,4285,~7.7,,6874,10647,2320,2111.5,1241,1420,,,9682,13514,44872,,,,,,,21.5,,,6483.5,1451,190 -NVIDIA Quadro K620M,,Maxwell,1029,1124,2000,64,DDR3,2048,11,4.3,28,3211,~4.1,,6591,9092,2526,2434,1424,1621,,,7880,10912,,,60.3,,,,,21.9,,60.6,5261,1737,508 -NVIDIA Quadro M500M,,Maxwell,1029,1124,4004,64,DDR3,2048,12 (FL 11_0),4.5,28,2922,~4.4,126522,6359,8348,2447,2364.5,1391.5,1594.5,,,7959,12377.5,,129.5,67.9,53.2,,,,21.35,6.3,40.69,6602,1741,850 -NVIDIA GeForce 840M,N15S-GT,Maxwell,1029,,2000,64,DDR3,4096,12 (FL 11_0),4.5,28,3565,~4.4,119888,5829,8723.5,2378,2340,1361,1573,,,7191,10332,,41,,,,,,22.5,,55.9,6070.5,1674,651 -NVIDIA GeForce GT 745M,N14P-LP/GS,Kepler,837,,1800,128,"DDR3, GDDR5",2048,11,,28,3910,~4.4,,8411,10147,2407,2249,1443,1531,,,9045,13462.5,,,,,,,,,,56.7,6788.5,1559,386 -AMD Radeon HD 7770M,Chelsea XT,GCN,675,,4000,128,GDDR5,,11.1,4.1,28,4252,~2.7,,,,2417,2110,,,,,10468,,,,,,,,,,,,,, -NVIDIA GeForce GTX 560M,N12E-GS,Fermi,775,,1250,192,GDDR5,1536,11,,40,4582,~12.5,,,,2031,1820,,,,,9300,15327,41315,,,,,,,,,,5407,, -AMD Radeon R7 512 Cores (Kaveri Desktop),Kaveri Spectre,GCN,720,,,,,,12 (FL 12_0),4.3,28,3622,~3.8,91999,6770,10341,2444,2302,1477,1616,567,508,,9878,,128,33.5,,,,,19.7,6.9,43.5,7410,1495,470 -Intel Iris Pro Graphics 5200,Haswell GT3e,Gen. 7.5 Haswell,200,1300,,eDRAM + 64/128,eDRAM,128,11.1,4.0,22,3845,~7.4,110085,9877,11930,2217,1923,1340,1380.5,,,8692,13123,41727,136,,,,,,20.8,,52.3,9744,1198,461 -AMD Radeon R7 384 Cores (Kaveri Desktop),Kaveri Spectre,GCN,720,,,,,,12 (FL 12_0),4.3,28,3622,~4.2,89954,6340.5,9650.5,2152,1987.5,1302,1405.5,,,7338,9937.5,,,,,,,,17.8,,40.82,7140.5,1142.5,388.5 -Apple A15 GPU 4-Core,,,,,,,,,,,5,821,~5.7,,,,,,,,,,,,,395.75,191.65,131.85,,,,,,,,, -Apple A14 Bionic GPU,,,,,,,,,,,5,1186,~10.2,220550,,,,,,,,,,,,317.5,172.85,114.6,,,,,,,,, -Samsung Xclipse 920,RDNA 2,RDNA 2,,555,,,,,,,4,696,~4.9,,,,,,,,,,,,,302,193,127,136.6,,,,,,,, -Qualcomm Adreno 660,,,,,,,,,12,ES 3.2,7,1108,~7.6,200519,,,,,,,,,,,,250.5,134,95,109.3,,,,,,,, -ARM Mali-G78 MP24,Valhall,Valhall,,,,,,,,ES 3.2,5,1298,~14.3,123332,,,,,,,,,,,,,,,,,,,,,,, -ARM Mali-G710 MP7,Valhall,Valhall,,,,,,,,ES 3.2,4,745,~3.7,,,,,,,,,,,,,251,134,97,117.35,,,,,,,, -ARM Mali-G78 MP22,Valhall,Valhall,,,,,,,,ES 3.2,5,1298,~3.8,,,,,,,,,,,,,232,154,112,74.4,,,,,,,, -NVIDIA GeForce GT 740M,"N14P-GV2, ...",Kepler,810,980,1600 - 1800,64/128,DDR3,2048,11,4.3,28,3941,~3.2,,5352,7403,1940,1848,1060.5,1150.5,,,6591,9700,3437,112,,,,,,14.4,,53.1,6522,509,455 -Intel Iris Plus Graphics 650,Kaby Lake GT3e,Gen. 9.5 Kaby Lake,300,1100,,64/128,DDR4,,12_1,4.4,14,2537,~5.7,161538,9149.5,13153,2924,2762,1655,1698,623,555,,15175,,,,,,,,,,59.11,8773,1730,813 -NVIDIA GeForce 930M,"N16S-GM-B/S, N16S-LP",Maxwell,928,941,1800,64,DDR3,2048,12 (FL 11_0),4.5,28,3200,~3.6,,6071,8309,2247,2153,1290.5,1460.5,,,7274,11760,,114.2,60.5,,,,,,,45.41,5853.5,1454,694 -Intel Iris Graphics 550,Skylake GT3e,Gen. 9 Skylake,300,1100,,eDRAM + 64/128,eDRAM,64,12_1,4.4,14,3027,~5,144742,8171,12986,2699,2533.5,1544,1638,620,554,9761,15910,,205.6,91.1,,78.5,,,,,60.8,10057,1692,819 -AMD Radeon 530,,GCN,1024,,2250,64,"DDR3, GDDR5",2048,12,4.5,28,2460,~3.7,107458,6371,9210,2508,2327,1386,1542,497,443,6337.5,11481,,116.05,45.2,34.85,,,,17,6.1,44.45,7731,895,386.5 -AMD Radeon 625,,GCN 1.0,,1024,2250,64,"DDR3, GDDR5",4096,12,4.5,28,1586,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Radeon RX Vega 6 (Ryzen 4000/5000),Vega Renoir,Vega,400,1500,,,,,12_1,4.6,7,1438,~6.1,182608,15286.5,21856.5,4446,4210,2537,2793,971.5,852,,14700,,166.2,,52.3,93.6,,,25.4,7.3,54.81,10195.5,2410.5,750 -Intel Iris Plus Graphics 645,Kaby Lake GT3e,Gen. 9.5 Coffee Lake,300,1150,,,"DDR3, DDR4",,12_1,4.5,14,1619,~2.8,,,,3238,2985,1736,1893,624,550,,,,198.3,101.8,69.6,,,,,,67.1,,, -Apple A13 Bionic GPU,,,,,,,,,,,7,1552,~9.7,208697,,,,,,,,,,,,307,167,110,,,,,,,,, -NVIDIA GeForce 830M,N15?,Maxwell,1029,1150,1800,64,DDR3,2048,12 (FL 11_0),4.4,28,3565,~3.5,,6044,8104.5,2094,1961,1215,1386.5,,,6163,10222.5,,,,,,,,,,50.6,5855,1123,597 -NVIDIA GeForce MX110,N16V-GMR1,Maxwell,965,993,1800,64,"DDR3, GDDR5",,12,4.5,28,2174,~4.4,124036,9867,11266,2378,2121,1641,1714,515,450.5,9124,14612,,129.9,72.2,52.9,,,,21.8,9,57.8,4147,1214,468 -Intel Iris Plus Graphics 640,Kaby Lake GT3e,Gen. 9.5 Kaby Lake,300,1050,,64/128,DDR3/DDR4,64,12_1,4.4,14,2537,~4.4,145481,8067,11248,2561,2379,1310,1393.5,494.5,437,,14117.5,,171,31.2,56.1,,,,,6.5,56.2,9703,1677,778.5 -NVIDIA GeForce 920MX,N16V-GMR,Maxwell,965,993,1800,64,"DDR3, GDDR5",,12,4.5,28,3187,~3.8,110110,6545,9113.5,1983,1835,1336.5,1448,472,417,7407.5,12205.5,,115.2,62.85,47.4,,,,21.2,8.7,47.72,4366,1139,427 -Intel Iris Graphics 540,Skylake GT3e,Gen. 9 Skylake,300,1050,,eDRAM + 64/128,eDRAM,64,12_1,4.4,14,3027,~4.6,126078,7235,11327,2364,2211.5,1354,1448,,,8828,13568.5,,183,86,60.4,,,,,6.5,55.3,8277.5,1525.5,712.5 -Apple A12 Bionic GPU,,,,,,,,,,,7,1920,~7.5,160199,,,,,,,,,,,,245,127.55,85.8,,,,,,,,, -Qualcomm Adreno 650,,Adreno 600,250,670,,,,,12,ES 3.2,7,1472,~6,149017,,,,,,,,,,,,206,125,88,75,,,,,,,, -ARM Mali-G78 MP20,Valhall,Valhall,,,,,,,,ES 3.2,5,1298,~2.5,,,,,,,,,,,,,144,90,65,88.8,,,,,,,, -ARM Mali-G78 MP14,Valhall,Valhall,,,,,,,,ES 3.2,5,1298,~5,98950,,,,,,,,,,,,154,143,83,84.4,,,,,,,, -Apple A11 Bionic GPU,,PowerVR Rogue,,,,,,,,,10,2285,~4.9,112489,,,,,,,,,,,,166.9,71,49,,,,,,,,, -Apple A10X Fusion GPU / PowerVR,,PowerVR Rogue,,,,,,,,,10,2382,~5.6,110560,,,,,,,,,,,,224.5,109.5,69.5,,,,,,,,, -Intel UHD Graphics 24EUs (Alder Lake-N),Alder Lake Xe,Gen. 12,450,750,,,,,12_1,4.6,10,346,~3.1,55681,7021,8303,1717,1490,1092,1172,364,317,5768,10126.5,,,,,54.05,,,,4.6,39.85,8288.5,644,504.5 -NVIDIA Quadro K2000M,N14P-Q3,Kepler,745,,1800,128,DDR3,2048,11,4.1,28,4214,~4.3,,8010,8766,1995,1798,1040,1046,,,7947,11991,,,,,,,,17,,,6749,,139.5 -NVIDIA GeForce GTS 450,GF106,Fermi,783,,1600,128,GDDR5,1024,11,,40,4723,~11.3,,10231,12447,2095.5,1887.5,1463,1545,,,9757.5,16033.5,51783,,,,,,,,,,,, -NVIDIA GeForce GT 735M,N14M-LP,Kepler,575,889,1800 - 2000,64,DDR3,2048,11,,28,3910,~3.2,,4718.5,6757,1791,1713,933.5,1023.5,,,5687.5,8527,,,,,,,,,,49.24,6155,,255 -ATI Mobility Radeon HD 5870,Broadway-XT,Terascale 2,700,,1000,128,"DDR3, GDDR3, GDDR5",1024,11,,40,5090,~15.8,,,,,,,,,,7999,12830.5,36969,,,,,,,,,,6609,, -NVIDIA GeForce 825M,,Kepler,850,,1800,64,DDR3,2048,12 (FL 11_0),4.3,28,3609,~3.6,,5421,7416,1859.5,1756.5,1050,1150,,,6000,9290,,,,,,,,,,48.95,,, -NVIDIA Quadro 5000M,Fermi,Fermi,405,,1200,256,GDDR5,2048,11,,40,4889,~10.1,,,,,,,,,,7766.5,12967,,,,,,,,,,,,, -AMD FirePro M4000,Cape Verde GLM,GCN,600,,4500,128,GDDR5,2048,11,4.1,28,4184,~5.2,,7729,12587,2186,1981,1617,1713,,,8627.5,13930.5,,,,,,,,21.3,,,8477,,470 -ATI FirePro M7820,,Terascale 2,700,,1000,128,GDDR5,,11,,40,4976,~17.3,,,,,,,,,,,12531.5,,,,,,,,,,,,, -AMD Radeon HD 6870M,Granville-PRO,Terascale 2,675,,1000,128,"DDR3, GDDR3, GDDR5",1024,11,,40,4725,~19.9,,,,,,,,,,,14396,,,,,,,,,,,,, -ATI Radeon HD 4850,RV770,Terascale 1,625,,993,256,GDDR3,512,10.1,,55,5652,~7.6,72891,4320,11272,,,,,,,8972,14160,,,,,,,,,,,,, -AMD Radeon HD 8830M,,GCN,575,,2000,128,DDR3,2048,11.1,4.1,28,4014,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Radeon HD 8770M,,GCN,775,,4500,128,GDDR5,2048,11.1,,28,4046,~5.9,,,,2206,1934,,,,,8530,12680,,,,,,,,,,,7033,, -AMD Radeon R7 M260X,Mars,GCN,715,,4000,128,GDDR5,4096,12 (FL 11_1),4.3,28,3629,~4,98071,6619,9034,2114,1903,1336,1396,,,7640,11820,,129.1,37.9,,,,,,,36.37,6664,1212,399 -NVIDIA GeForce GTX 460M,N11E-GS,Fermi,675,,1250,192,GDDR5,1536,11,,40,4851,~10.7,,,,1805,1623,,,,,7507,12942,34874,,,,,,,,,,5312.5,, -NVIDIA GeForce GT 730M,,Kepler,725,,1800 - 2000,64/128,DDR3,4096,11,,28,4000,~3.9,86656,5782.5,7152,1886,1722,1001,1061,,,6788,10333,,48,,,,,,14.1,,47.57,6540,,276 -NVIDIA GeForce GT 645M,N13P-GS,Kepler,710,,1800,128,DDR3,2048,11,,28,4285,~4.4,,6537,8654.5,1962.5,1844.5,1146.5,1151.5,,,7356.5,11189,,,,,,,,17.65,,,5548,, -AMD Radeon HD 7750M,Lombok XL,GCN,575,,4000,128,GDDR5,,11.1,4.1,28,4252,~2.5,,,,2382,2085,,,,,,,,,,,,,,,,,,, -AMD FirePro M4100,,GCN,670,,4000,128,GDDR5,2048,12 (FL 11_1),4.3,28,3727,~3.4,,5125,6297,1921,1728,815,857,,,,9320,,,,,,,,10.9,,37.66,6578,,306 -AMD Radeon HD 8750M,Mars Pro,GCN,620,775,2000 - 4000,128,"GDDR5, DDR3",2048,11.1,,28,4046,~3.4,,5610,8524.5,1863.5,1698,1186,1276.5,,,6840,8901.5,,,,,,,,16.9,,40.25,6519,1217.5,372.5 -NVIDIA Quadro 3000M,Fermi,Fermi,450,,625,256,GDDR5,2048,11,,40,4679,~6.1,,,,1742,1539,,,,,7941,14220.5,,,,,,,,,,,6519,, -AMD Radeon R7 M270,Opal XT / Mars,GCN,825,,1800 - 2000,128,DDR3,4096,12 (FL 11_1),4.3,28,3629,~3.2,,4830.5,6364.5,2014,1857.5,1177,1258,,,6715,9791.5,,124.85,33.65,36.8,,,,23.9,,37.41,6141.5,1203,534.5 -AMD Radeon R7 M265,Opal XT / Mars,GCN,825,980,1800 - 2000,64/128,DDR3,4096,12 (FL 11_1),4.3,28,3629,~3.5,,5334.5,8401.5,2012,1882,1211,1336,,,6175,8876,,,,,,,,,,32.85,4563.5,, -NVIDIA Quadro FX 3800M,N10E-GLM4,G9x,675,,1000,256,GDDR3,1024,10,,55,5108,~14.9,,,,,,,,,,6779,12923,34790,,,,,,,,,,4928,, -NVIDIA GeForce GTX 285M,N10E-GTX1,G9x,576,,1020,256,GDDR3,1024,10,,55,5401,~7.8,,,,,,,,,,6498,12988.5,,,,,,,,,,,4941,, -ATI Mobility Radeon HD 4870,M98-XT,Terascale 1,550,,888,256,GDDR5,1024,10.1,,55,5453,~6.8,,,,,,,,,,6631,10655,,,,,,,,,,,5190,, -AMD Radeon R7 (Bristol Ridge),Bristol Ridge,GCN 1.2,,900,,64/128,,,12 (FL 12_0),4.4,28,2753,~2.3,52245.5,3942,5311,1794,1852,866,1013,358,347,5568,6644.5,,90,25.9,24.3,,,,13.9,3.5,23.16,4845,1450,362.5 -NVIDIA GeForce GT 640M,N13P-GS,Kepler,625,645,1800 - 4000,128,"DDR3, GDDR5",2048,11,,28,4285,~4.5,80836,5571,9024,1860.5,1728,1153,1225,,,7425,10625.5,12955,,,,,,,,,42.42,5635,1114,101 -AMD Radeon R7 (Carrizo),Carrizo,GCN 1.2/2.0,,800,,64/128,,,12 (FL 12_0),4.4,28,3116,~2.8,61071,4470,7431,1922,1792,1063,1137,,,5200,6528,,90.95,24.47,,,,,,,28.68,5071,1345,394 -AMD Radeon R7 (Kaveri),Kaveri,GCN 1.1,553,686,,64/128,,,12 (FL 12_0),,28,3481,~2.7,,4719.5,6544,1794.5,1734,1039,851,,,4483,7921.5,,,,,,,,,,31.18,4618,1112.5,460 -AMD Radeon R7 M460,,GCN,984,,2000,64,,,12,4.3,28,2854,~3.6,105142,4755,6081,2256.5,2139,1054,1177,,,5304,8587,,101.4,45.5,,,,,,,37.73,7777,1608,319 -AMD Radeon HD 7730M,Lombok GL,GCN,575,675,1800,128,DDR3,,11.1,4.1,28,4252,~4.5,,,,1684,1478,,,,,7056,9615,,,,,,,,,,,5154,, -Apple A9X / PowerVR Series 7XT,Rogue,PowerVR Rogue,,,,,,,11_2,4.3 OpenGL ES 3.x,14,3019,~3,50604,,,,,,,,,,,,140.15,65.55,61.25,,,,,,,,, -AMD Radeon R7 M360,,GCN 2.0,1125,,2000,64,DDR3,4096,12,4.3,28,3145,~3.1,82837,4583,5746,2156,2029,1024,1146,463,410,5544,8273.5,,111.2,30.15,,,,,15.4,,34.29,7326,1523,313 -NVIDIA GeForce GTX 280M,N10E-GTX,G9x,585,,950,256,GDDR3,1024,10,,55,5401,~15.8,,,,,,,,,,6672,12551,38780,,,,,,,,,,5276.5,, -NVIDIA GeForce 920M,N16V-GM-S,Kepler,954,,1800,64,DDR3,4096,12 (FL 11_0),4.5,28,3244,~3,90619,5240.5,7242,1822,1718.5,1047.5,1161.5,363,329,5587,9003.5,,98.35,46.85,35.6,,,,,,44.28,5181.5,1323,586 -AMD Radeon HD 8690M,,GCN,775,,4500,64,GDDR5,1024,11.1,,28,4046,~4,,6093,7930,1790,1600,1151,1210,,,,9413,,,,,,,,,,40.98,7043,, -AMD Radeon 620,,GCN 1.0,,1024,2250,64,"DDR3, GDDR5",4096,12,4.5,28,1586,~2,,,,,,,1730,,,,,,,,,,,,,,,,, -AMD Radeon R7 M440,,GCN 1.0,1021,,2000,64,DDR3,,12,,28,2753,~3.2,87170.5,4783.5,6040,2305,2245,1079,1197.5,433,381,5584,8800,,112.1,27.1,,,,,,,33.01,8207,1516,289 -NVIDIA Quadro FX 3700M,NB9E-GLM3,G9x,550,,800,256,GDDR3,1024,10,,65,5601,~6.6,,,,,,,,,,5053,11000,,,,,,,,,,,4481,, -AMD Radeon R7 M260,Opal Pro / Mars,GCN,715,980,1800 - 2000,64/128,DDR3,4096,12 (FL 11_1),4.3,28,3629,~2.9,,4385,5603,1942.5,1897,946.5,1067,,,5424.5,7810,,,,,,,,14.2,,33.81,4919,1334,295 -AMD Radeon R7 M340,Meso Pro DDR3,GCN,1021,,2000,64,DDR3,,12,4.3,28,3104,~3.1,69098,5272.5,6153,2268,2148,1091.5,1208.5,,,5427,8982,,109.3,28.7,27.9,,,,,,33.47,6111.5,1455.5,274 -AMD Radeon 520,,GCN 1.0,1030,,2250,64,"DDR3, GDDR5",2048,12,4.5,28,2460,~3,77543,7240,8412.5,2232,2016.5,1232.5,1319,454.5,397,5266,6492,,114.1,52.9,35.4,,,,12,4.1,35.56,9124,929,325 -AMD Radeon 610,,GCN 1.0,,1030,2250,64,GDDR5,4096,12,4.5,28,1586,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Radeon Graphics (Ryzen 7000),Raphael,RDNA 2,,2200,,,,,12_2,4.6,6,445,~8.5,159603,16760,15247,3466,3026,2183,2287,845,725,11455,21514,,,,,,,,,,101.35,17745,, -AMD Radeon 610M,RDNA 2,RDNA 2,400,2200,,,,,12_2,4.6,6,451,~3.7,,13194.5,13645.5,1931.5,1704,1154,1217,425.5,369.5,3575,7195,,,,,104.6,,,,,77.65,11925,517,142 -AMD Radeon RX Vega 6 (Ryzen 2000/3000),Vega Raven Ridge,Vega,,1100,,,,,12_1,,14,2168,~4.6,94451,10091,16787,3111,2991,2025,2245,617.5,551.5,8189,12132,,164.6,,,,,,,,46.42,7146,1790,558 -AMD Radeon RX Vega 5,Vega,Vega,,1400,,,,,12_1,,7,1438,~5.3,128628,12224,18282,3763,3535,2231.5,2438,825,733,11704,15564,,164.8,67.2,51.9,,,,26.2,7.3,62.25,,2134,678 -Intel UHD Graphics G1 (Ice Lake 32 EU),Ice Lake G1 Gen. 11,Gen. 11 Ice Lake,300,1100,,,DDR4,,12_1,4.5,10,1662,~4,94938,8380.5,11096.5,2329,2127,1444.5,1521,482,424.5,8750,10955,,157.8,84.4,52.7,,,,,,46.53,9382.5,1288,747 -Intel UHD Graphics 630,Kaby-Lake-H-GT2,Gen. 9.5,300,1150,,64/128,,,12_1,4.4,14,2266,~4.3,106362,9545,9798,2030,1789.5,1115,1211,479.5,414.5,7704,13216.5,,,,,105,,,18.9,6.05,54.5,8578,894,696 -Intel UHD Graphics P630,Coffee-Lake-GT2,Gen. 9.5,300,1200,,64/128,,,12_1,4.4,14,2266,,,,,,,,,,,,,,,,,,,,,,,,, -Intel UHD Graphics Xe 16EUs (Tiger Lake-H),Tiger Lake Xe,Gen. 12,350,1450,,,,,12_1,4.6,10,990,~3.5,64701,8223,7982,1933,1654,1151,1203,404,348,7190,12452,,123.6,77.3,41.9,52.8,,,,4.75,46.26,12011,745,601 -Intel HD Graphics 630,Kaby-Lake-H-GT2,Gen. 9.5 Kaby Lake,300,1150,,64/128,,,12_1,4.4,14,3054,~3.9,101178,9188,9715,1975,1729,985,1067,425,368,7685,12419,,139.8,47.2,47.2,,,,18.8,5.3,51.75,10479,962,647 -Intel HD Graphics P630,Kaby-Lake-H-GT2,Gen. 9.5 Kaby Lake,,,,64/128,,,12_1,4.4,14,3054,~3.9,,8280,,,,1040,,400,,,,,,,,,,,,,,,, -Intel UHD Graphics G7 (Lakefield GT2 64 EU),Lakefield GT2,Gen. 11 Ice Lake,200,500,,,DDR4,,12_1,4.5,10,1296,~2.7,87818,5835,8408.5,1873,1791.5,1190.5,1295.5,389,349,,,,,48.4,,,,,,,33.2,,1076,491 -Intel HD Graphics 530,Skylake GT2,Gen. 9 Skylake,350,1150,,64/128,,,12_1,4.4,14,3054,~3.8,80241.5,7652,7500,1579,1362,878,935,271,235,6831,11309,,,60.6,,,,,,,42.27,8926,868, -Intel HD Graphics P530,Skylake GT2,Gen. 9 Skylake,350,1050,,64/128,DDR3/DDR4,,12_1,4.4,14,3027,,,,,,,,,,,,,,,,,,,,,,,,, -NVIDIA Tegra X1 Maxwell GPU,Erista,Maxwell,1000,,3200,64,,,11.2,4.5,20,3266,~33.8,57697,,,,,,,,,,,,123,54,38.5,,43721,41415.5,,,,,, -AMD Radeon R5 (Bristol Ridge),Bristol Ridge,GCN 1.2/2.0,,800,,64/128,,,12 (FL 12_0),4.4,28,2753,~2.9,58018,4980.5,8255.5,1874,1720,1053.5,1283.5,,,,6816.5,,107,31.6,,,,,,,30.01,5132.5,1127,331 -Intel UHD Graphics 620,Kaby-Lake-Refresh GT2,Gen. 9.5,300,1150,,,DDR3/DDR4,,12_1,4.4,14,2296,~5,88745.5,8139,9324,1935.5,1744,1071,1168,435.5,380,7330,10642,34467,119.1,58.9,39.8,51.6,,,19.2,4.7,48.84,8194,937,653 -Intel HD Graphics 620,Kaby-Lake GT2,Gen. 9.5 Kaby Lake,300,1050,,64/128,DDR3/DDR4,,12_1,4.4,14,2663,~7.1,79066.5,5993,7725,1645.5,1508.5,858,934,365,321,5803,8449,67477,,,,,,,,4.2,40.48,8162.5,875,564 -AMD Radeon R6 (Carrizo),Carrizo,GCN 1.2/2.0,,800,,64/128,,,12 (FL 12_0),4.4,28,3116,~2.2,53702.5,3524,4717,1550,1437.5,842,909,300,274,4830,6896,,88.4,29.4,,,,,,,22.48,4507,918,301.5 -Qualcomm Adreno 690,,,,,,,,,12,,5,1835,~3.6,,9818,16707.5,3077,2912,2834.5,2932.5,909,811,,,,,,,,,,,,13.7,558,, -Qualcomm Adreno 685,,,,,,,,,12,,7,1835,~1.7,,,,1968,1927,,,,,,,,167.7,31.7,,,,,,,,373,2292, -Qualcomm Adreno 680,,,,,,,,,12,,7,1835,~1.5,,,,1847,1935.5,,,,,,,,140.2,,,,,,,,,353,1890, -ATI Mobility Radeon HD 4860,M97-XT,Terascale 1,650,,1000,128,GDDR5,,10.1,,40,5400,,,,,,,,,,,,,,,,,,,,,,,,, -ATI FirePro M7740,RV740,Terascale 1,650,,1000,128,GDDR5,1024,10.1,,40,5246,~14.9,,,,,,,,,,6626,12109.5,34814,,,,,,,,,,6663.5,, -ATI Mobility Radeon HD 4850,M98,Terascale 1,500,,850,256,GDDR3,1024,10.1,,55,5453,~15.7,,,,,,,,,,5263.5,9784,41976,,,,,,,,,,5682,, -NVIDIA GeForce GTX 260M,N10E-GT,G9x,550,,950,256,GDDR3,1024,10,,55,5401,~13.4,,,,,,,,,,4901,10064,34304,,,,,,,,,,3917,, -NVIDIA GeForce 9800M GTX,NB9E-GTX,G9x,500,,800,256,GDDR3,1024,10,,65,5631,~13.9,,,,,,,,,,4825,10138,35460,,,,,,,,,,4491,, -NVIDIA Quadro FX 2800M,NB10-GLM3,G9x,600,,1000,256,GDDR3,1024,10,,55,5127,~17.9,,,,,,,,,,5783,11358.5,34844,,,,,,,,,,,, -AMD Radeon HD 8670D,Richland,Terascale 3,844,,,,,,11,4.2,32,3846,~3.2,,6191,8288,1682,1547,1074,1157,,,6241,10007,,116,,,,,,,,44.93,8296,957,241.5 -AMD Radeon HD 7690M XT,Thames XTX,Terascale 2,725,,3600,128,GDDR5,,11,4.1,40,4574,~4.9,,,,1550.5,1346,,,,,7054.5,10919,,,,,,,,,,,5514,, -AMD FirePro M5950,Whistler-XT,Terascale 2,725,,900,128,GDDR5,1024,11,4.1,40,4629,~5.1,,,,1500,1350,,,,,6257,10592,,,,,,,,,,,7975,, -NVIDIA GeForce GT 640M LE,N13P-LP,Fermi / Kepler,500,,1800 - 4000,128,"DDR3, GDDR5",2048,11,,28,4285,~4.2,,,,1385,1259,,,,,5788,8858,,,,,,,,,,,5858,, -AMD Radeon R6 (Kaveri),Kaveri,GCN 1.1,533,654,,64/128,,,12 (FL 12_0),,28,3481,~2.1,,3442,5336,1306,1184,707.5,770.5,,,4114,5989,,85,,,,,,10.6,,21.42,3868,776.5,257.5 -AMD Radeon HD 8650M,,GCN,650,,4500,64,GDDR5,2048,11.1,,28,3994,~2.3,,4300,7500,,,920,1050,,,,,,,,,,,,,,,,, -AMD Radeon HD 8730M,,GCN,650,,2000,128,DDR3,2048,11.1,,28,4046,~3.7,,5206,8054,1507.5,1370.5,1073,1150,,,6310.5,8620,,,,,,,,15.7,,,,, -AMD Radeon HD 6770M,Whistler-XT,Terascale 2,675 / 725,,800,128,GDDR5,,11,4.0,40,4728,~12.2,,,,1475.5,1328,,,,,6106.5,10056,47877,,,,,,,,,,6907.5,, -NVIDIA GeForce GT 635M,N13E-GE2,Fermi,660,753,1800,128/192,"DDR3, GDDR5",2048,11,,40,4392,~4,,,,1223,1110,,,,,4995,8517.5,,,,,,,,,,,5707.5,, -NVIDIA GeForce GT 555M,N12E-GE-B,Fermi,525,753,785-900,"128, 192","DDR3,GDDR5",3072,11,,40,4726,~6.3,,,,1299,1146,,,,,5884,10568,14449,,,,,,,,,,5436,, -ATI Radeon HD 5670,RV830,Terascale 2,775,,1000,128,GDDR5,1024,11,,40,5083,~15.6,,,,1684,1468,,,,,6584,11921,54104,,,,,,,,,,,, -ATI Mobility Radeon HD 5850,Broadway-PRO,Terascale 2,625,,2000,128,"DDR3, GDDR3, GDDR5",1024,11,,40,5090,~13.9,,,,,,,,,,5591.5,9655,35281,,,,,,,,,,5573,, -AMD Radeon HD 6850M,Granville Pro/LP,Terascale 2,575 / 675,,800,128,"DDR3, GDDR5",,11,,40,4726,~10.6,,,,1644,1469.5,,,,,6245.5,9336,38862,,,,,,,,,,7291,, -AMD FirePro W2100,Mars,GCN,680,,1800,128,DDR3,2048,12,,28,2996,~2.8,,6550,7771,,,1036,1085,,,,,,,,,,,,14.9,,35.44,,,243 -NVIDIA Quadro 2000M,Fermi,Fermi,550,,900,128,DDR3,2048,11,,40,4679,~5,,,,1421,1261,,,,,6633.5,11656,,,,,,,,,,,5671,, -NVIDIA GeForce 9800M GT,NB9E-GT2,G9x,500,,800,256,GDDR3,512,10,,65,5631,~13.5,,,,,,,,,,4011,9258,35284.5,,,,,,,,,,4526.5,, -NVIDIA GeForce 8800M GTX,NB8E-GTX,G9x,500,,800,256,GDDR3,512,10,,65,5870,~13.3,,,,,,,,,,3422,9217,34985,,,,,,,,,,4464.5,, -NVIDIA Quadro FX 3600M,NB8E-GLM,G9x,500,,800,256,GDDR3,512,10,,65,5774,~19.6,,,,,,,,,,,8135.5,41502,,,,,,,,,,6193,, -NVIDIA GeForce GT 445M,N11E-GE,Fermi,590,,1250,192 / 128,"DDR3, GDDR5",,11,,40,4851,~4.3,,,,1291,1148,,,,,5249,10304,,,,,,,,,,,4100,, -NVIDIA GeForce GTS 360M,N11E-GS1,GT2xx,575,,1800,128,"DDR3, GDDR3, GDDR5",1024,10.1,,40,5090,~5.9,,,,,,,,,,5522,9865,,,,,,,,,,,3664.5,, -NVIDIA GeForce GT 240 GDDR5,GT215,GT2xx,550,,1700,128,GDDR5,512,10.1,,40,5141,~7.8,,,,,,,,,,5221,10166,,,,,,,,,,,,, -AMD Radeon HD 7690M,Thames XT / XTX,Terascale 2,600,725,3600/1800,128,GDDR5/DDR3,,11,4.1,40,4574,~4.6,,,,1306,1141,,,,,5883.5,9660,,,,,,,,,,,7618,, -Intel HD Graphics 5600,Broadwell GT2,Gen. 8 Broadwell,300,1050,,64/128,,,12 (FL 11_1),4.3,14,3118,~3,,7499,7757,1651,1431,944,991,,,,,,,,,,,,,,37.89,7445,, -AMD Radeon HD 8570D,Richland,Terascale 3,844,,,,,,11,4.2,32,4097,~2.8,,5520,7096,1314,1181,869,918,,,5288,8921,,98,,,,,,,,35.08,7473,681,173 -AMD Radeon HD 8670M,,GCN,775,,2000,64,DDR3,1024,11.1,,28,4046,~2.5,,3977,4840,1513,1396,767,829,,,4077,4670,,,,,,,,9.4,,64.38,6007.5,,247 -AMD Radeon HD 7660D,Trinity,Terascale 3,633,800,,,,,11,4.2,32,4097,~3,,5595.5,7418.5,1557,1433,932,997,,,5840,9109,,106,,,,,,,,,7504,876,224 -AMD Radeon HD 6750M,Whistler-PRO,Terascale 2,600,,900,128,GDDR5,,11,,40,4728,~11.3,,,,1305.5,1158.5,,,,,5483,9361,43578,,,,,,,,,,7617,, -NVIDIA Quadro K1000M,N14P-Q1,Kepler,850,,1800,128,DDR3,2048,11.1,4.1,28,4214,~4.1,,,,1232,1102,,,,,5164.5,8340.5,,,,,,,,,,,6750,, -NVIDIA GeForce GT 550M,N12P-GT,Fermi,740,,900,128,"DDR3, GDDR5",1536,11,,40,4726,~8.9,,,,1099.5,973.5,,,,,4781.5,8776,32347,,,,,,,,,,5380,, -AMD Radeon HD 8590M,,GCN,620,,4500,64,GDDR5,,11.1,,28,4046,,,,,,,,,,,,,,,,,,,,,,,,, -NVIDIA GeForce GTS 260M,N10E-GS,GT2xx,550,,1800,128,"GDDR3, GDDR5",1024,10.1,,40,5296,,,,,,,,,,,,,,,,,,,,,,,,, -NVIDIA GeForce GTS 160M,N10E-GS1,G9x,600,,800,256,GDDR3,1024,10,,55,5401,~11.9,,,,,,,,,,3965,9327,30011,,,,,,,,,,3432,, -NVIDIA GeForce 9800M GTS,NB9E-GT,G9x,600,,800,256,GDDR3,1024,10,,65,5631,~17.6,,,,,,,,,,4060,9501.5,36940,,,,,,,,,,,, -NVIDIA GeForce GT 430,GF108,Fermi,700,,900,128,DDR3,1024,11,,40,4813,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Radeon HD 6830M,Granville-LP,Terascale 2,575,,900,128,"DDR3, GDDR3",1024,11,,40,4725,,,,,,,,,,,,,,,,,,,,,,,,, -ATI Mobility Radeon HD 5830,Broadway,Terascale 2,500,,800,128,"DDR3, GDDR3",1024,11,,40,5090,~6.2,,,,,,,,,,4785,8050,,,,,,,,,,,,, -AMD Radeon HD 6730M,Whistler-XT,Terascale 2,725,,800,128,DDR3,,11,,40,4728,~4,,,,1269,1141,,,,,4438,7918,,,,,,,,,,,7282,, -NVIDIA GeForce 9800M GS,NB9E-GS1,G9x,530,,800,256,GDDR3,1024,10,,55,5522,~11.3,,,,,,,,,,3245,8449.5,28740.5,,,,,,,,,,3684,, -ATI Mobility Radeon HD 4830,M97,Terascale 1,550,,700,128,"GDDR3, DDR3",,10.1,,40,5400,~4.7,,,,,,,,,,3863,7155,,,,,,,,,,,4250,, -ATI Mobility Radeon HD 5770,Madison-XT,Terascale 2,650,,800,128,GDDR5,,11,,40,5090,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Radeon HD 6570M,Capilano,Terascale 2,650,,900,128,"DDR3, GDDR5",1024,11,,40,4767,~3.9,,,,1216,1067,,,,,4107,7553,,,,,,,,,,,7319,, -AMD Radeon HD 8650G,Richland,Terascale 3,533,720,,,,,11,4.2,32,3880,~2.8,71794,4180,6453,1479.5,1433,834,905,,,4689,6732.5,,100,,,,,,10.9,,33,5411,983,84 -AMD Radeon HD 7670M,Thames XT,Terascale 2,600,,1800,128,"DDR3, (GDDR5)",,11,4.1,40,4574,~4,,5267,6535,1186.5,1061.5,805,824,,,4995,8203,16914,,,,,,,,,,6696,771,206 -NVIDIA GeForce GT 630M,N13P-GL/GL2,Fermi,672,,1800,128,DDR3,,11,4.0,28,4392,~3.9,58812,4641,5577,1168,1035,674,719,,,4868.5,8610,14216.5,,,,,,,10,,,5865,588,122 -AMD Radeon HD 7560D,Trinity,Terascale 3,760,,,,,,11,4.2,32,4097,~2.7,,5059,6415,1210,1076,751,791,,,4897,8202,,,,,,,,,,32.9,7327,646,162 -NVIDIA GeForce GTS 150M,N10E-GE1,G9x,400,,800,256,GDDR3,1024,10.0,,55,5401,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Radeon R5 M335,Exo XT DDR3,GCN 1.0,1070,,2200,64,DDR3,4096,12,4.3,28,3104,~2.6,70485,4167,4590,1889,1784,824,911,,,4772,5921,,73.1,21.5,19.4,,,,,,30.91,8555,1497,291 -AMD Radeon R5 M330,Exo Pro DDR3,GCN 1.0,1030,,2000,64,DDR3,,12,4.3,28,3144,~2.6,,4427,4897,1782,1689,843,922,,,,5972,,,,,,,,,,27.96,6386,690,597 -AMD Radeon R5 M430,Mars,GCN,955,,1746,64,DDR3,,12 (11_1),4.3,28,2784,~2.3,,4744,5493,1821.5,1689,899,1004,,,4697,6246,,77,23.5,21,,,,,,29.85,7430,1219,699 -AMD Radeon R5 M255,Topaz Pro / Sun,GCN,940,,1800 - 2000,64,DDR3,4096,12,4.3,28,3515,~2.8,,4859,6053,1907,1784,980,1080.5,,,5399,8935,,,16.9,,,,,,,34.68,5647.5,1073,292 -AMD Radeon RX Vega 3,Vega Raven Ridge,Vega,600,1200,,,,,12_1,,14,2168,~3,80755,6044,8536,1947,1723.5,1065.5,1171.5,441.5,393,5440.5,11103,,64.5,23,19.05,43,,,13.9,4.4,28.19,7401,1008,346 -NVIDIA Quadro 1000M,Fermi,Fermi,700,,900,128,DDR3,2048,11,,40,4679,~10.4,,,,1064,943,,,,,4566,8509,40779,,,,,,,,,,6771,, -NVIDIA GeForce 910M,N15V-GM,Kepler,641,,2000,64,DDR3,2048,12 (FL 11_0),,28,3027,~2.4,42738,3677,6636,1432,1413,913,1022,,,4325,6741,,78.7,42.6,30.9,,,,14.4,,23.99,2500,929,189 -NVIDIA GeForce 820M,N15V-GM,Fermi,775,,1800,64,DDR3,2048,12 (FL 11_0),,28,3629,~2.6,,4520.5,6073.5,1383,1266.5,829,897,,,5105.5,7518,,,,,,,,,,35.63,5557,718,379.5 -Intel HD Graphics 520,Skylake GT2,Gen. 9 Skylake,300,1050,,64/128,DDR3/DDR4,,12_1,4.4,14,3027,~3.9,73656,5357.5,6700.5,1435.5,1293.5,752,803.5,297,263,5722,8656,23728.5,87.15,39.4,26.4,,,,,,37,7578,852,474 -Intel Iris Graphics 6100,Broadwell GT3,Gen. 8 Broadwell,300,1100,,64/128,,,12 (FL 11_1),4.3,14,3266,~3.2,89341,6141,7798,1768,1694.5,864.5,874,425,377,6531,8764,,102.1,48.8,,,,,,,36.43,7832.5,1115,390 -Intel UHD Graphics G4 (Lakefield GT1 48 EU),Lakefield GT1,Gen. 11 Ice Lake,200,500,,,DDR4,,12_1,4.5,10,1296,,,,,,,,,,,,,,,,,,,,,,,,, -NVIDIA GeForce GT 720M,N14M-GE,Fermi,625,938,1800 - 2000,64,DDR3,2048,11,,28,3910,~3.6,59694,4522,5426,1321,1213,779,822,,,4584.5,7896,15036,50,,,,,,11.6,,36.01,5824,678.5,239 -NVIDIA GeForce 8800M GTS,NB8E-GT,G9x,500,,800,256,GDDR3,512,10,,65,5870,~11,,,,,,,,,,2552,8385,28301,,,,,,,,,,3164,, -AMD Radeon R5 M240,Jet XT / Sun,GCN,1030,,1800,64,DDR3,,11.2,,28,3392,~2.3,,4338.5,5500,1669,1588,871.5,949,,,5066,5698,,,23.5,,,,,,,26.89,4578,1152,411 -AMD Radeon R5 M320,Exo UL/ULT/ULP,GCN 2.0,855,,2000,64,DDR3,,12,4.3,28,3144,~2.9,45756,3695,4969,1660,1652,,,,,,,,,,,,,,,,,,, -AMD Radeon R5 M230,Jet / Sun,GCN,855,,1800 - 2000,64,DDR3,4096,12,4.3,28,3629,~2.6,,3899,4814,1302,1175,720,771,,,,5145,,,,,,,,,,23.67,6314,, -AMD Radeon R5 M315,Meso LE (DDR3),GCN,970,,1800,64,DDR3,2048,12,4.3,28,3104,~1.2,,,5040,,,,920,,,,,,,,,,,,,,,,, -AMD Radeon R5 M420,Jet,GCN,780,,2000,64,DDR3,4096,12,4.3,28,2753,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Radeon RX Vega 2,Vega Raven Ridge,Vega,,1100,,,,,12_1,,12,2168,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Radeon R5 (Stoney Ridge),Stoney Ridge,GCN 1.2/2.0,,800,,64,,,12 (FL 12_0),4.4,28,2753,~1.9,51382,2995,4755,1263,1264,712,772,281.5,254.5,3346,5174,,67.8,21.8,20.4,,,,13.7,,22.97,3773,597,124 -Apple A10 Fusion GPU / PowerVR,,PowerVR Rogue,,,,,,,,,0,2654,~3.2,63386,,,,,,,,,,,,114.15,59.65,41.75,,,,,,,,, -ATI Mobility Radeon HD 5750,Madison-XT,Terascale 2,550,,1600,128,"DDR, GDDR3, GDDR5",1024,11,,40,5090,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Radeon HD 8570M,,GCN,650,,1800 - 2000,64,DDR3,,11.1,,28,4046,~2.3,,3958,4867,1364,1255,732,790,,,4365,5650,,,,,,,,,,16.99,5829,,258 -Intel HD Graphics 6000,Broadwell GT3,Gen. 8 Broadwell,300,1000,,64/128,,,12 (FL 11_1),4.3,14,3266,~2.6,,5872,7660,1513.5,1395.5,903,951,374,334,6188,8091,,,39.46,,,,,,3.7,30.69,6527,1021,350 -NVIDIA Quadro K610M,,Kepler,954,,2600,64,GDDR5,1024,11,4.3,28,3797,~3.1,,6051.5,5837.5,1294.5,1143.5,712.5,755.5,,,5116,8157,,,,,,,,9.4,,,6823.5,,48 -AMD Radeon HD 8550M,,GCN,700,,1800,64,DDR3,,11.1,,28,4046,~2.8,,,,1242,1307,,,,,3705,4700,,,,,,,,11.2,,,,, -Intel Iris Graphics 5100,Haswell GT3,Gen. 7.5 Haswell,200,1200,,64/128,,,11.1,4.0,22,3845,~2.8,71489,4950,6943.5,1245.5,1151,823,878.5,,,5865,6928.5,,83.5,,,16.3,,,13.9,,21.4,6817.5,1062,419.5 -NVIDIA GeForce GT 540M,N12P-GS,Fermi,672,,900,128,"GDDR5, DDR3",1536,11,,40,4726,~8.8,,,,989,888,,,,,4355,7986,32969,,,,,,,,,,5441,, -AMD Radeon HD 6650M,Whistler-PRO,Terascale 2,600,,900,128,DDR3,,11,,40,4728,~10.1,,,,1158,1037,,,,,4050.5,7307,40671,,,,,,,,,,6775.5,, -Intel HD Graphics 4600,Haswell GT2,Gen. 7.5 Haswell,200,1350,,64/128,,,11.1,4.0,22,3849,~5,42242.5,5040.5,5613,1041,910.5,592.5,635.5,,,5203,7362,38441,78,,,,,,14.35,,18.8,7168.5,767,284.5 -ATI Mobility Radeon HD 5730,Madison,Terascale 2,650,,800,128,"DDR3, GDDR3",,11,,40,5090,~9.9,,,,,,,,,,3809,7265,23762,,,,,,,,,,5418.5,, -Intel HD Graphics 5500,Broadwell GT2,Gen. 8 Broadwell,300,950,,64/128,,,12 (FL 11_1),4.3,14,3266,~2.4,58776,4790.5,5544,1079.5,979,634.5,663,289,255,4798,6998,,70.9,30.6,,105,,,9.3,,25.35,5270.5,695,328 -ARM Mali-G77 MP11,Valhall,Valhall,,,,,,,,ES 3.2,7,1366,~4.2,82052.5,,,,,,,,,,,,199,108,80,71.6,,,,,,,, -ARM Mali-G77 MP9,Valhall,Valhall,,,,,,,,ES 3.2,7,1366,~3.6,60765,,,,,,,,,,,,182.5,115,78,53.8,,,,,,,, -ARM Mali-G76 MP16,,Bifrost,,,,,,,,ES 3.2,7,1932,~3.6,70607.5,,,,,,,,,,,,151.5,103,53.5,53.3,,,,,,,, -ARM Mali-G610 MP6,Valhall,Valhall,,,,,,,,ES 3.2,4,934,~3.8,,,,,,,,,,,,,271.5,145.5,97.5,94.35,,,,,,,, -Qualcomm Adreno 644,,,,,,,,,,ES 3.2,4,952,~2.2,,,,,,,,,,,,,148,88,65,51.69,,,,,,,, -Qualcomm Adreno 643,,,812,,,,,,12,ES 3.2,6,855,~2.3,,,,,,,,,,,,,159,90,69,51.82,,,,,,,, -Qualcomm Adreno 642,,,,,,,,,,ES 3.2,5,952,~2.3,,,,,,,,,,,,,153,90,65,47.98,,,,,,,, -ARM Mali-G610 MP3,Valhall,Valhall,,,,,,,,ES 3.2,4,934,~1.8,,,,,,,,,,,,,117,71,49,39.67,,,,,,,, -Qualcomm Adreno 642L,,,,,,,,,,ES 3.2,6,952,~3.7,89307.5,,,,,,,,,,,,133,78,57,46.9,,,,,,,, -Qualcomm Adreno 640,,,,,,,,,12,ES 3.2,10,2132,~4.5,106829,,,,,,,,,,,,166,99.5,69,64.9,,,,,,,, -Qualcomm Adreno 630,,,,,,,,,12,ES 3.2,10,2132,~2.6,81385.5,3108,6347,,,770,821,,,,,,150,75,58,,,,,,,257,, -ARM Mali-G76 MP12,,Bifrost,,,,,,,,ES 3.2,7,1932,~3.7,68654,,,,,,,,,,,,96.5,85,59,,,,,,,,, -ARM Mali-G76 MP10,,Bifrost,720,,,,,,,ES 3.2,7,1932,~3,47811.5,,,,,,,,,,,,119.5,75.5,51.5,,,,,,,,, -ARM Mali-G68 MP5,Valhall,Valhall,,,,,,,,,5,822,~1.9,,,,,,,,,,,,,119,79,52,41.69,,,,,,,, -ARM Mali-G57 MP6,Valhall,Bifrost,,,,,,,,,7,1260,~2.6,57067,,,,,,,,,,,,107.5,66,45.5,34.85,,,,,,,, -ARM Mali-G57 MP5,Valhall,Bifrost,,,,,,,,,7,1260,~2.3,38974,,,,,,,,,,,,115,71,52,41.98,,,,,,,, -Qualcomm Adreno 540,,,710,,,,,,12,ES 3.2,10,2459,~17.1,56046.5,2359,4259,831,791,452,513,,,,,,111.5,54,40,,44696,38762.5,,,,,, -ARM Mali-G72 MP18,,Bifrost,850,,,,,,,ES 3.2,16,2174,~3,46610,,,,,,,,,,,,145,73.5,45.5,,,,,,,,, -ARM Mali-G71 MP20,Mimir,Bifrost,,900,,,,,,ES 3.2,16,2452,~33.5,36347,,,,,,,,,,,,105,51,42,,43464,42183,,,,,, -Intel UHD Graphics (Jasper Lake 32 EU),Gen. 11,Gen. 11,350,900,,,,,12_1,4.5,10,1068,~2.7,72158,5531.5,6977,1652,1589,982,1016,372,330,6316.5,6074,,91.2,53.7,33.95,,,,12.6,4.55,31.59,6561,1012.5,387 -Intel UHD Graphics (Elkhart Lake 32 EU),Gen. 11,,400,850,,,,,12_1,4.5,10,1068,,,,,,,,,,,,,,,,,,,,,,,,, -ARM Mali-G72 MP12,,Bifrost,850,,,,,,,ES 3.2,16,2249,~25.8,33740,,,,,,,,,,,,118,59,38.5,,39033,25922,,,,,, -ARM Mali-G71 MP8,Mimir,Bifrost,,900,,,,,,ES 3.2,16,2751,~30.1,35210,,,,,,,,,,,,73.5,32,23,,42979,34536,,,,,, -AMD Radeon R5 (Carrizo),Carrizo,GCN 1.2/2.0,,800,,64/128,,,12 (FL 12_0),4.4,28,3116,~2.2,,4365,5804,1686,1711,898,1001,,,,,,,,,,,,,,25.12,4880,, -Intel UHD Graphics 617,Kaby-Lake GT2,Gen. 9 Amber Lake,300,1150,,64/128,DDR3L/LPDDR3,,12_1,4.4,14,1872,~3.5,77156,4841,7231,1671.5,1540.5,889.5,997,337,300,,8662,,,,,,,,,,39.1,,, -Intel UHD Graphics 615,Kaby-Lake GT2,Gen. 9 Amber Lake,300,1000,,64/128,DDR3L/LPDDR3,,12_1,4.4,14,1933,~2.3,60419.5,4660,6602,1312.5,1221,751,842.5,275,242.5,3813,6601.5,,67.3,34.42,23.22,,,,,,35.49,6378,860,473 -Intel UHD Graphics (Jasper Lake 24 EU),Gen. 11,Gen. 11,350,800,,,,,12_1,4.5,10,1068,~2.2,,6659,8388,1654,1458,1043,1106,355,312,,,,,,,,,,,,36.9,,, -Intel HD Graphics 615,Kaby-Lake GT2,Gen. 9 Kaby Lake,300,1050,,64/128,DDR3L/LPDDR3,,12_1,4.4,14,2663,~11.2,70743,4893,6387,1362.5,1242.5,762,853,296.5,261,4102,7399,19381,76.3,,42.7,38.3,42892,33662,,,34.97,6470,693,369 -AMD Radeon R5 (Kaveri),Kaveri,GCN 1.1,514,626,,64/128,,,12 (FL 12_0),,28,3481,~1.5,,2594,3959,1020,901,527,572,,,3011,4317,,,14.4,,,,,,,18.03,3611,520,183 -ATI FirePro M5800,Madison,Terascale 2,650,,800,128,"DDR3, GDDR5",1024,11,,40,5037,~5.5,,,,,,,,,,3760,7237,,,,,,,,,,,,, -NVIDIA NVS 5400M,N13P-NS1,Fermi,660,,1800,128,DDR3,2048,11,4.0,40,4214,~4.2,,,,1260.5,1119,,,,,5197.5,9192.5,,,,,,,,,,,6012,, -NVIDIA GeForce 710M,N14M-GL,Fermi,775,800,1800,64,DDR3,2048,11,,28,3910,~4.1,,4389.5,5323,1226,1106.5,726,768.5,,,4641,7993,13110,,,,,,,,,,6193,, -AMD Radeon HD 7660G,Trinity,Terascale 3,497,686,,,,,11,4.2,32,4231,~4.3,65558,4190,6408.5,1147,1057,,,,,4523,7317,22817,93,,,,,,,4.5,30.3,5576.5,771,179 -NVIDIA GeForce GT 435M,N11P-GT,Fermi,650,,800,128,DDR3,,11,,40,4851,~8.9,,,,896.5,799,,,,,3869.5,7510.5,35402,,,,,,,,,,4567,, -Intel HD Graphics 5000,Haswell GT3,Gen. 7.5 Haswell,200,1100,,64/128,,,11.1,4.0,22,3845,~2.6,65904,4496.5,5693.5,1125.5,1033.5,651,715.5,,,4276.5,5940,,72.5,22.5,,,,,12.1,,27.4,6946.5,816.5,306 -NVIDIA Quadro K510M,,Kepler,846,,2400,64,GDDR5,1024,11,4.3,28,3797,,,,,,,,,,,,,,,,,,,,,,,,, -ATI Radeon HD 5570,Redwood LE,Terascale 2,650,,667 - 900,128,DDR3,1024,11,,40,5053,~11,,,,1175,1025,,,,,3917,7146,44354,,,,,,,,,,9247,, -AMD Radeon HD 6550M,Capilano-PRO,Terascale 2,600,,800,128,DDR3,1024,11,,40,4767,~8.3,,,,1100,993,,,,,3731,7143,31250.5,,,,,,,,,,5286,, -AMD Radeon HD 7590M,Thames XT,Terascale 2,600,,3200,64,,1024,11,,40,4359,,,,,,,,,,,,,,,,,,,,,,,,, -NVIDIA GeForce GTS 350M,n11e-ge1,GT2xx,500,,1600,128,"DDR3, GDDR3, GDDR5",1024,10.1,,40,5090,~11.5,,,,,,,,,,,8303.5,,,,,,,,,,,,, -NVIDIA GeForce GTS 250M,N10E-GE,GT2xx,500,,1600,128,"DDR3, GDDR3, GDDR5",1024,10.1,,40,5296,~12,,,,,,,,,,3659,7484,32373,,,,,,,,,,4451,, -AMD Radeon HD 6630M,Whistler-LP,Terascale 2,485,,800,128,DDR3,,11,,40,4728,~3.4,,,,990,877,,,,,3720,6934,,,,,,,,,,,5952,, -AMD Radeon HD 7650M,Thames-LP/Pro,Terascale 2,450,550,1800,128,DDR3,,11,,40,4360,~3.7,,,,1058.5,945.5,,,,,4562.5,7333,,,,,,,,,,,6705,, -AMD FirePro M2000,Turks GLM,Terascale 2,500,,3200,64,GDDR5,1024,11.1,4.2,40,4184,~3.5,,,,954,841,,,,,3956,6086,,,,,,,,,,,8471,, -AMD Radeon HD 7570M,Thames-Pro / XT,Terascale 2,450,650,3200 / 1800,64,GDDR5 / DDR3,,11,,40,4360,~2.5,,4329,4623,926,829,562,569,,,3727,5998.5,,,,,,,,8.5,,,8310.5,,155 -AMD Radeon HD 7630M,Thames-LP,Terascale 2,450,,1800,128,DDR3,,11,,40,4360,,,,,,,,,,,,,,,,,,,,,,,,, -NVIDIA Quadro FX 1800M,,GT2xx,560,,1100,128,"DDR3, GDDR5",1024,10.1,,40,5065,~5.7,,,,,,,,,,3451.5,7572.5,,,,,,,,,,,,, -ATI Mobility Radeon HD 5650,Madison Pro,Terascale 2,450,650,800,128,"GDDR3, DDR3",1024,11,,40,5090,~5,,4341,6036,955,855.5,706,730,,,3188,6469,26832,,,,,,,9.9,,,4846.5,, -AMD Radeon HD 8510G,Trinity,TeraScale 3,450,554,,,,,11,4.2,32,3858,~1.5,,,,1100,,,,,,,,,,,,,,,,,,,, -AMD Radeon HD 6530M,Capilano-LP,Terascale 2,500,,800,128,DDR3,1024,11,,40,4767,~5.4,,,,,,,,,,3334,7119.5,,,,,,,,,,,,, -AMD Radeon HD 8550G,Richland,Terascale 3,515,720,,,,,11,4.2,32,3930,~2.7,67801,4060,6107,1280,1179,746,792,,,4174,7314,,87,,,,,,10.8,,28.9,5224,575,132 -NVIDIA Quadro K500M,N14M-Q1,Kepler,850,,1800,64,DDR3 / GDDR5,2048,11,4.3,28,4214,,,,,,,,,,,,,,,,,,,,,,,,, -NVIDIA GeForce GT 625M,N13M-GS,Fermi,625,,1800,64,DDR3,1024,11,,28,4092,~1.1,,,,1037,921,,,,,,,,,,,,,,,,,,, -NVIDIA GeForce GT 620M,N13P-GLP / N13M-GS,Fermi,625,715,1800,64 / 128,DDR3,1024,11,,40,4285,~2.6,,4022.5,5269,1041.5,933.5,696,737.5,,,4219,7462,,,,,,,,,,,4989,521, -NVIDIA GeForce GT 525M,N12P-GE,Fermi,600,,900,128,"GDDR5, DDR3",1536,11,,40,4726,~7.1,,,,901,799,,,,,3839.5,7058.5,25685,,,,,,,,,,4531,, -AMD Radeon HD 6550D,Llano,Terascale 2,600,,,,,,11,,32,4551,~6.9,,,,1063.5,951.5,,,,,3929.5,6730.5,23665.5,,,,,,,,,,5681,, -AMD Radeon HD 7610M,Thames-LE,Terascale 2,450,,1600,128,DDR3,,11,,40,4360,~2.8,,4475,5242,849,749,592,605,,,3691,7100,,,,,,,,,,,6930,, -AMD Radeon HD 7620G,Trinity,Terascale 3,360,497,,,,,11,4.2,32,4231,~2.1,,3064,5378,1030,948,659,716,,,2399,5553,,,,,,,,,,,4088,578, -AMD Radeon HD 8470D,Richland,Terascale 3,800,,,,,,11,4.2,32,3845,~1.9,,2587,5583,937,854,598,670,,,3426,6367,,75,,,,,,,,27.15,5141,513,129 -AMD Radeon HD 7640G,Trinity,Terascale 3,497,686,,,,,11,4.2,32,4231,~5,,,,704,655.5,,,,,2599,4173,18117,,,,,,,,,,4489.5,, -PowerVR GM9446,Rogue,PowerVR Rogue,,,,64,,,,ES 3.2,12,2275,~1.3,28629,,,,,,,,,,,,45,22,14.5,,,,,,,,, -Qualcomm Adreno 530,,,624,,,,,,11.1,ES 3.1 AEP,14,2922,~28,32997,,,,,,,,,,,,88,44.5,31,,38353,33028,,,,,, -PowerVR GXA6850,Rogue,PowerVR Rogue,450 (?),,,128,,,10,"3.x, 4.x, OpenGL ES 3.0",20,3384,~27.6,31542,,,,,,,,,,,,70.4,35,17.9,,41488,29502,,,,,, -NVIDIA Tegra K1 Kepler GPU,Logan / NVEA / GK20A,Kepler,950,,,,,,11,4.4,28,3630,~22.2,37318.5,,,,,,,,,,,,60,31.2,23,26.9,37063,28893.5,,,,,, -Apple A9 / PowerVR GT7600,Rogue,PowerVR Rogue,,,,,,,11_2,"4.3, ES 3.x",14,3019,~2.1,43372.5,,,,,,,,,,,,79.95,39.75,28.1,,,,,,,,, -ARM Mali-T880 MP12,Midgard (4th Generation),Midgard (4rd-gen),,650,,,,,11.2 (FL 11_2),ES 3.1,14,2851,~27.7,33031,,,,,,,,,,,,82,39,28,,40671.5,30097,,,,,, -ARM Mali-G76 MP4,,Bifrost,800,,,,,,,ES 3.2,7,1932,~1.8,36546,,,,,,,,,,,,80,49.5,30,29.86,,,,,,,, -Intel HD Graphics 515,Skylake GT2,Gen. 9 Skylake,300,1000,,64/128,DDR3L/LPDDR3,,12_1,4.4,14,3027,~3.5,56787,3850.5,5467,1115,1014,623.5,691.5,,,4672,6446,20345,73.2,36.7,27.7,,,,,,29.4,6088,704,416 -Intel UHD Graphics 610,Kaby Lake GT1,Gen. 9 Kaby Lake,300,950,,64/128,DDR3/DDR4,,12_1,4.4,14,1809,~2,42712.5,4333.5,5276.5,1045.5,922.5,616,663.5,222,194,3996,6902,,71.9,33.1,23.1,25.5,,,10.2,3.35,28.37,5209.5,481.5,304.5 -Intel HD Graphics 610,Kaby Lake GT1,Gen. 9 Kaby Lake,300,950,,64/128,DDR3/DDR4,,12_1,4.4,14,2539,~2,41956.5,4300,5281,996,880,566,607.5,223,194.5,3715,6386.5,,72.4,32.3,23.8,,,,11.8,3.3,26.21,5084,484,291 -Intel HD Graphics 4400,Haswell GT2,Gen. 7.5 Haswell,200,1100,,64/128,,,11.1,4.0,22,3845,~3.1,37082,3940,4953,828,735.5,525,569,,,3583,5164,20486,60.5,16.2,,,,,8.2,,20.37,6130,575,234 -AMD Radeon HD 8610G,Richland,Terascale 3,533,626,,,,,11,4.2,32,3858,~1.4,,2463,2749,941,889,441,475,,,2203,3538,,,15.9,,,,,,,17,3972,612,361 -Intel HD Graphics 510,Skylake GT1,Gen. 9 Skylake,300,950,,64/128,DDR3/DDR4,,12_1,4.4,14,3027,~2.5,43274,4721,5664,985,847,570,621,,,3798,7253,,121.9,64.6,51.7,,,,9.3,,27.98,7348,500,302 -NVIDIA NVS 5200M,N13M-NS,Fermi,625,,1800,64,DDR3,1024,11,,28,4214,~2.7,,4352,4949,1136,1008,671,704,,,4268,7502.5,,,,,,,,9.8,,,6266.5,,54 -ATI Mobility Radeon HD 565v,,Terascale 1,675,,800,128,"GDDR3, DDR3, DDR2",,10.1,,55,4972,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Radeon HD 7550M,Thames-LP / Pro,Terascale 2,450,550,3200 / 1800,64,GDDR5 / DDR3,,11,,40,4360,~3.5,,3573,4081,843,756,545,569,,,2927,4932,16206,,,,,,,7.4,,,4935,, -ATI Mobility Radeon HD 4670,M96-XT,Terascale 1,675,,800,128,"GDDR3, DDR2, DDR3",,10.1,,55,5453,~9.9,,,,,,,,,,3004.5,6828,24975,,,,,,,,,,4567,, -NVIDIA GeForce GT 425M,N11P-GS,Fermi,560,,800,128,DDR3,1024,11,,40,4870,~7.8,,,,832,753,,,,,3380.5,6706.5,30484.5,,,,,,,,,,4098,, -NVIDIA GeForce 9700M GTS,NB9E-GS,G9x,530,,800,256,GDDR3,512,10,,65,5631,~11.1,,,,,,,,,,2825,7779,28921,,,,,,,,,,3843,, -NVIDIA Quadro FX 2700M,NB9E-GLM2,G9x,530,,800,256,GDDR3,1024,10,,65,5601,~13.1,,,,,,,,,,2799,7660,36280,,,,,,,,,,4394,, -NVIDIA GeForce GT 335M,N11P-GS1,GT200,450,,1066,128,"DDR3, GDDR3",1024,10.1,,40,5090,~8,,,,,,,,,,3106,6892,18184,,,,,,,,,,3790.5,, -AMD Radeon HD 7600G,Trinity,Terascale 3,320,424,,,,,11,4.2,32,4122,~1.9,,,,672,628,,,,,1639,3504,,,,,,,,,,,3637,, -ATI Mobility Radeon HD 3870,M88-XT,RV6xx,660,,850,256,GDDR3,,10.1,,55,5767,~9.4,,,,,,,,,,3458,8635.5,21439,,,,,,,,,,3290,, -ATI Mobility Radeon HD 5165,,Terascale 1,600,,900,128,(G)DDR3,1024,10.1,,55,5090,~8.6,,,,,,,,,,2789,6125,21269,,,,,,,,,,4367,, -ATI Mobility Radeon HD 560v,,Terascale 1,550,,800,128,"GDDR3, DDR3, DDR2",,10.1,,55,4972,~4.7,,,,,,,,,,2459.5,6224,,,,,,,,,,,,, -ATI Mobility Radeon HD 4650,M96,Terascale 1,550,,800,128,"GDDR3, DDR2, DDR3",,10.1,,55,5453,~10.2,,,,,,,,,,2412.5,6207,26779,,,,,,,,,,4973.5,, -NVIDIA GeForce GT 220,GT216,GT2xx,615,,790,128,DDR3,1024,10.1,,40,5177,~9.4,,,,,,,,,,,6845,,,,,,,,,,,,, -NVIDIA GeForce GT 420M,N11P-GE,Fermi,500,,800,128,(G)DDR3,,11,,40,4851,~5.5,,,,775,685,,,,,3051,6148,18904,,,,,,,,,,3464,, -AMD Radeon HD 7530M,Thames-LP,Terascale 2,450,,1800,64,DDR3,,11,,40,4360,,,,,,,,,,,,,,,,,,,,,,,,, -ATI Mobility Radeon HD 3850,M88,RV6xx,580,,750,256,GDDR3,,10.1,,55,5858,~3.6,,,,,,,,,,1879.5,6095,,,,,,,,,,,2756,, -NVIDIA GeForce GT 330M,N11P-GE1,GT2xx,575,,1066,128,"GDDR2, GDDR3, DDR3",1024,10.1,,40,5087,~9.7,,,,,,,,,,2657.5,6232,26029.5,,,,,,,,,,3409,, -NVIDIA Quadro FX 880M,N10P-GLM,GT2xx,550,,790,128,"GDDR3, DDR3",1024,10.1,,40,5090,~11.9,,,,,,,,,,2638.5,6378,33331,,,,,,,,,,4846,, -NVIDIA Quadro NVS 5100M,N10P-NS,GT2xx,550,,800,128,DDR3,1024,10.1,,40,5090,~9.4,,,,,,,,,,2634,6325,24702,,,,,,,,,,3700,, -NVIDIA GeForce GT 240M,N10P-GS,GT2xx,550,,800,128,"DDR3, GDDR2, GDDR3",1024,10.1,,40,5296,~8.7,,,,,,,,,,2371.5,5952,22708,,,,,,,,,,3466.5,, -AMD Radeon HD 7490M,Seymour XTX,Terascale 2,800,,3800,64,GDDR5,512,11,,40,4391,,,,,,,,,,,,,,,,,,,,,,,,, -Intel UHD Graphics (Elkhart Lake 16 EU),Gen. 11,,250,850,,,,,12_1,4.5,10,1068,~1.4,30044,2873,3762,701,650,489,523,,,,,,,,,,,,,,14.24,4048,476,147 -Intel UHD Graphics (Jasper Lake 16 EU),Gen. 11,Gen. 11,350,800,,,,,12_1,4.5,10,1068,~1.9,43609.5,4596.5,4910.5,975.5,854,626,645,203,178,3411,6438,,56.25,30.7,16.45,,,,,3.5,26.24,5649.5,548,226 -Intel UHD Graphics 605,Gemini Lake,Gen. 9 Apollo Lake,300,750,,64/128,DDR4 / LPDDR4,,12_1,4.4,14,2195,~1.4,45008,3154,3359.5,748,648,419,454,129,113,2162,4171,,45.5,22.1,16.5,23.3,,,6.5,1.7,18.09,3773,490.5,142 -Intel HD Graphics 505,Apollo Lake,Gen. 9 Apollo Lake,300,750,,64/128,,,12_1,4.4,14,2661,~1.3,32480.5,2837.5,3413.5,679,620,383,408,107.5,94,2350.5,4302.5,,47.2,18.9,14.1,,,,,,16.63,3155,382,141.5 -Intel HD Graphics 5300,Broadwell GT2,Gen. 8 Broadwell,100,900,,64/128,,,12 (FL 11_1),4.3,14,3388,~1.9,59555,3041,3720,731,647,407,439,,,3104,4775,,55,30.1,,,,,7.6,,18.36,4018,518.5,210 -AMD Radeon HD 7510M,Thames-LE,Terascale 2,450,,1600,64,DDR3,,11,,40,4360,,,,,,,,,,,,,,,,,,,,,,,,, -NVIDIA GeForce Go 7950 GTX,G71M,G7x,575,,700,256,GDDR3,512,9c,,90,6273,~20.5,,,,,,,,,,,5659,32000,,,,,,,,,,,, -NVIDIA Quadro FX 3500M,G71GLM,G7x,575,,700,256,GDDR3,512,9c,,90,6133,~7.3,,,,,,,,,,,5254,,,,,,,,,,,,, -NVIDIA GeForce 9700M GT,NB9E-GE,G9x,625,,800,128,"GDDR2, GDDR3",512,10,,65,5672,~11.7,,,,,,,,,,1749.5,5908.5,25300,,,,,,,,,,,, -NVIDIA GeForce GT 230M,N10P-GE,GT2xx,500,,800,128,"GDDR2, GDDR3",1024,10.1,,40,5296,~8.2,,,,,,,,,,2363,5647,21595.5,,,,,,,,,,2819,, -ATI Mobility Radeon HD 550v,,Terascale 1,450,,600,128,"GDDR3, DDR3, DDR2",,10.1,,55,4972,~3.8,,,,,,,,,,2214,5260,,,,,,,,,,,4733,, -AMD Radeon HD 7480D,Trinity,Terascale 3,614,724,,,,,11,4.2,32,4097,~1.8,,2952,4236,655,580,412,445,,,2595,5450,,,,,,,,,,19.1,6391,382,84 -Intel HD Graphics 4000,Ivy Bridge,Gen. 7 Ivy Bridge,350,1350,,64/128,,,11,3.1,22,4650,~2.7,44323.5,3282.5,3768.5,603,523,444,480,,,2959,4412.5,15220,39,,,,,,7.35,,11.91,5157,537,66 -ARM Mali-T760 MP8,Midgard (3rd Generation),Midgard (3rd-gen),700,772,,,,,11,ES 3.1,14,3211,~24.2,26964,,,,,,,,,,,,53.5,22.5,13,,36339.5,26124,,,,,, -ARM Mali-G71 MP2,Mimir,Bifrost,,770,,,,,,ES 3.2,16,2751,~0.6,11251.5,,,,,,,,,,,,22,11,6.6,,,,,,,,, -AMD Radeon HD 6620G,Llano,Terascale 2,400,,,,,,11,,32,4566,~4.2,,,,726.5,650,,,,,2442.5,3595.5,15023,,,,,,,,,,3379,, -AMD Radeon R4 (Stoney Ridge),Stoney Ridge,GCN 1.2/2.0,,600,,64,,,12 (FL 12_0),4.4,28,2753,~1.5,42677,2458,3416,1003.5,972.5,383,583,228,205,2542,4246.5,,57.2,18.5,22.65,,,,8.35,2.95,18.6,2881,612,180.5 -Qualcomm Adreno 430,,,,650,,,,,11,ES 3.1,20,3539,~20.6,36316,,,,,,,,,,,,49,24,17,,32020,20327.5,,,,,, -AMD Radeon R5 (Beema/Carrizo-L),Beema,GCN 1.1,,850,,64,,,12 (FL 12_0),,28,3517,~1.7,36807,2882,3317,831,764,510,539,,,2698,4956,,51,,,,,,,,17,2779,494.5,149 -AMD Radeon R4 (Beema),Beema,GCN 1.1,800,,,64,,,12 (FL 12_0),,28,3517,~1.6,29548,2825,3309,788,716,472,497,,,2506,4046,,,,,,,,,,16.04,3092.5,445,136.5 -AMD Radeon R4 (Kaveri),Kaveri,GCN 1.1,533,,,64/128,,,12 (FL 12_0),,28,3481,~1.2,26079,2034,3371.5,658,611,404.5,433.5,,,1958,3179,,36.2,14.4,,,,,,,12.71,3108,443,137 -AMD Radeon R3 (Mullins/Beema),Beema/Mullins,GCN 1.1,350,686,,64,,,12 (FL 12_0),,28,3517,~1.3,,2391,3049,686,620,396.5,419.5,,,1814.5,4010,,,11.7,,,,,,,14.36,2908,379,108 -AMD Radeon R2 (Stoney Ridge),Stoney Ridge,GCN 1.2/2.0,,600,,64,,,12 (FL 12_0),4.4,28,2753,~1.4,38046.5,2092.5,3321.5,774.5,730.5,463,511.5,,,2136,3809,,42.7,16.5,13.2,,,,7.7,2.8,15.07,3619,432,113 -Intel HD Graphics (Broadwell),Broadwell GT1,Gen. 8 Broadwell,100,850,,64/128,,,12 (FL 11_1),4.3,14,3266,~1.5,,3398,4015,729,641,428,463,,,2651,5077,,47.12,21.52,17.41,,,,,,17.78,4886,374,182 -Intel HD Graphics 4200,Haswell GT2,Gen. 7.5 Haswell,200,850,,64/128,,,11.1,4.0,22,3845,~1.6,41579,3027,3807,712,638,394.5,431.5,,,2537.5,3383,,37.5,,,,,,,,16.95,4514,486,176.5 -Intel HD Graphics (Skylake),Skylake GT1,Gen. 9 Skylake,300,800,,64/128,DDR3L/LPDDR3,,12_1,4.4,14,3027,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Radeon HD 6450 GDDR5,Caicos,Terascale 2,750,,900,64,GDDR5,1024,11,,40,4624,~6,,4597,4257,726,623,443,464,,,2822,6160.5,38450,,,,,,,,,18.79,9118,, -AMD Radeon HD 7500G,Trinity,Terascale 3,327,424,,,,,11,4.2,32,4231,~1.5,,2080,4333,604.5,585,462,512,,,2404.5,4810,,,,,,,,,,,3876,389,95 -AMD Radeon HD 8450G,Richland,Terascale 3,533,720,,,,,11,4.2,32,3930,~1.7,55358,2345.5,3168.5,787,724,411,464.5,,,2114,3868,,65,,,,,,,,18.25,4494,423,94 -AMD Radeon HD 7470M,Seymour XT / XTX,Terascale 2,750 / 800,,3200 / 1800,64,DDR3/GDDR5,512,11,,40,4391,~1.4,,,,566,522,,,,,1739.5,3624.5,,,,,,,,,,,3773.5,390,92 -AMD Radeon HD 6490M,Seymour XT,Terascale 2,700 / 750 / 800,,800,64,DDR3/GDDR5,512,11,,40,4726,~8.2,,,,681,601,,,,,2511,5571,33338,,,,,,,,,,6754,, -AMD Radeon HD 8410G,Trinity,TeraScale 3,450,600,,,,,11,4.2,32,3858,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Radeon HD 8400,Kabini,GCN,600,,,,,,11.1,,28,3858,~1.4,36156,2633,2883,686.5,614,377,401,,,2013,3532,,36,,,,,,,,13.25,3010,363.5,107 -ARM Mali-G72 MP3,,Bifrost,850,,,,,,,ES 3.2,16,2249,~0.9,20999.5,,,,,,,,,,,,38,20,13,14.93,,,,,,,, -ARM Mali-G68 MP4,Valhall,Valhall,,,,,,,,,5,822,~2.4,48592,,,,,,,,,,,,102.5,64.5,42.5,33.6,,,,,,,, -ARM Mali-T880 MP4,Midgard (4th Generation),Midgard (4rd-gen),,900,,,,,11.2 (FL 11_2),ES 3.1,16,2941,~17.9,17736.5,,,,,,,,,,,,39,18,10,,29660.5,16649,,,,,, -ARM Mali-G52 MP6,,Bifrost,,,,,,,,,12,2110,~2,46944,,,,,,,,,,,,87,48,34,21.09,,,,,,,, -ARM Mali-G68 MP2,Valhall,Valhall,,,,,,,,,5,822,,,,,,,,,,,,,,,,,,,,,,,,, -ARM Mali-G52 MP2,,Bifrost,,950,,,,,,,12,2110,~1.1,25142,,,,,,,,,,,,43,24,15,17.43,,,,,,,, -ARM Mali-G52 MP1,,Bifrost,,800,,,,,,,12,1234,~0.6,13379.5,,,,,,,,,,,,24,16,9.4,12.69,,,,,,,, -NVIDIA GeForce GT 520MX,N12P-GVR,Fermi,900,,900,64,DDR3,1024,11,,40,4582,~2.6,,,,666,596.5,,,,,2619.5,5296,,,,,,,,,,,4655,, -AMD Radeon HD 7520G,Trinity,Terascale 3,497,686,,,,,11,4.2,32,4214,~1.8,,2148,3185,608,559,,,,,2045,4332,,,,,,,,,,,5073,,70 -NVIDIA GeForce GT 325M,N11P-GV1,GT2xx,450,,1066,128,"GDDR2, GDDR3, DDR3",1024,10.1,,40,5087,~3.6,,,,,,,,,,2161,5373,,,,,,,,,,,3910,, -NVIDIA GeForce GT 130M,N10P-GE1,G9x,600,,1066,128,"GDDR2, GDDR3",1024,10,,55,5454,~9.2,,,,,,,,,,1629,4950,26293,,,,,,,,,,3292,, -NVIDIA NVS 4200M,,Fermi,810,,800,64,DDR3,1024,11,,40,4679,~2.5,,,,572,507,,,,,2298,4929,,,,,,,,,,,5185,, -NVIDIA GeForce Go 7900 GTX,G71M,G7x,500,,600,256,GDDR3,512,9c,,90,6450,~18.4,,,,,,,,,,,4503,29490,,,,,,,,,,,, -NVIDIA Quadro FX 2500M,G71glm,G7x,500,,600,256,GDDR3,512,9c,,90,6651,~17.6,,,,,,,,,,,4695,27600,,,,,,,,,,,, -AMD Radeon HD 8350G,Richland,Terascale 3,514,720,,,,,11,4.2,32,3930,~1.9,46807,1895,2942,691,624,369,388,,,2463,5139,,,,,,,,,,17.48,4647,,71 -AMD Radeon HD 8330,Kabini,GCN,500,,,,,,11.1,,28,3858,~1.1,,2160,2672,592,530,327,351,,,1812.5,3334.5,,37,,,,,,4.2,,11.96,2440.5,324.5,96 -Intel UHD Graphics 600,Gemini Lake,Gen. 9 Gemini Lake,300,700,,64/128,DDR4 / LPDDR4,,12_1,4.4,14,2195,~1.2,30149,3124,3435.5,647.5,578,401.5,433,125,109,2189,3960,,37.15,19,15,15.75,,,,1.1,16.41,3504,358,129 -Intel HD Graphics 500,Apollo Lake,Gen. 9 Apollo Lake,300,700,,64/128,,,12_1,4.4,14,2661,~1.1,24609,2116,3007,530,482,307,362.5,,,,3506,,42,20,15,16.3,,,,,13,2894,324,79 -NVIDIA GeForce 9650M GS,NB9P-GS1,G8x,625,,800,128,"GDDR2?, GDDR3",512,10,,80,5755,~7.6,,,,,,,,,,1786,4830,19924,,,,,,,,,,3761,, -NVIDIA GeForce 9650M GT,NB9P-GT,G9x,550,,800,128,"GDDR2, GDDR3",1024,10,,55,5596,~8.5,,,,,,,,,,1306,4880,23209,,,,,,,,,,3632,, -NVIDIA GeForce 8700M GT,NB8E-SE,G8x,625,,800,128,GDDR3,512,10,,80,6030,~8.9,,,,,,,,,,2026,4804,24971,,,,,,,,,,3586,, -NVIDIA Quadro FX 1700M,NB9P-GLM,G9x,625,,800,128,GDDR3,256,10,,65,5553,~16.7,,,,,,,,,,,6302,35734,,,,,,,,,,6159,, -NVIDIA Quadro FX 1600M,NB8P-GLM,G8x,625,,800,128,GDDR3,512,10,,80,6041,~15.6,,,,,,,,,,,4915.5,35198,,,,,,,,,,4885,, -NVIDIA GeForce Go 7800 GTX,G70M,G7x,440,,550,256,GDDR3,512,9c,,110,6651,~15.6,,,,,,,,,,,4000,24800,,,,,,,,,,,, -NVIDIA GeForce Go 7900 GS,G71M,G7x,375,,500,256,GDDR3,512,9c,,90,6450,~14.7,,,,,,,,,,,3519,23613.5,,,,,,,,,,,, -NVIDIA Quadro NVS 320M,G84M,G8x,575,,700,128,"GDDR3, GDDR2",512,10,,80,6033,~18.6,,,,,,,,,,,4769,29508,,,,,,,,,,,, -NVIDIA Quadro FX 1500M,G71GLM,G7x,375,,500,256,GDDR3,512,9c,,90,6450,~16.5,,,,,,,,,,,4074,26279,,,,,,,,,,,, -NVIDIA GeForce 9600M GT,NB9P-GS,G9x,500,,800,128,"GDDR2, GDDR3",1024,10,,65,5672,~9.4,,,,,,,,,,1459,5174,26648.5,,,,,,,,,,3535,, -NVIDIA GeForce GT 220M,G96M,GT2xx,500,,800,128,"GDDR2, GDDR3",1024,10,,65,5234,~6.9,,,,,,,,,,1378,4010,18684,,,,,,,,,,3065,, -NVIDIA Quadro FX 770M,NB9P-GLM,G9x,500,,800,128,GDDR2 / GDDR3,512,10,,65,5601,~16,,,,,,,,,,,5296.5,34871,,,,,,,,,,6180,, -NVIDIA GeForce GT 120M,N10P-GV1,G9x,500,,1000,128,"GDDR2, GDDR3",1024,10,,55,5420,~11.2,,,,,,,,,,,5225,22385,,,,,,,,,,4267,, -AMD Radeon HD 7450M,Seymour-PRO,Terascale 2,700,,1800,64,"DDR3, GDDR5",,11,,40,4328,~2.1,,,,652,581.5,,,,,2280.5,4346.5,,,,,,,,,,,3513,, -NVIDIA GeForce 610M,N13M-GE,Fermi,672,900,1800,64,DDR3,,11,4.0,40,4392,~2.4,,,,582,507.5,,,,,2210,4598,,,,,,,,,,,5053,, -NVIDIA GeForce 705M,,Fermi,775,,1800,64,DDR3,,11,4.0,40,3849,,,,,,,,,,,,,,,,,,,,,,,,, -ARM Mali-T760 MP6,Midgard (3rd Generation),Midgard (3rd-gen),700,,,,,,11,ES 3.1,0,3727,~1.1,20244,,,,,,,,,,,,31,13.7,,,,,,,,,, -ARM Mali-T880 MP2,Midgard (4th Generation),Midgard (4rd-gen),,900,,,,,11.2 (FL 11_2),ES 3.1,16,2941,~11.4,13844,,,,,,,,,,,,24,10.5,6.8,,19359,9935.5,,,,,, -Intel HD Graphics 405 (Braswell),Braswell,Gen. 8,320,700,,64/128,,,11.2,,14,2814,~1.1,23763,1933,2113,537,473,237.5,254.5,,,2081,2920,,41.3,20.3,20.3,,,,,,14.11,2753,390.5,102.5 -Intel HD Graphics (Braswell),Braswell,Gen. 8,320,700,,64/128,,,11.2,,14,3180,~0.7,,1529,2193,436,395,238,261,,,1479,1311,,33,16.1,12.5,,,,,,12.31,2284,306,80.5 -Intel HD Graphics 400 (Braswell),Braswell,Gen. 8,320,640,,64/128,,,11.2,,14,2814,~1,20277,1457,1841,397,349,188,218,,,,2474,,29,16,10.6,,,,,,11.32,2052.5,, -AMD Radeon HD 6470M,Seymour XT,Terascale 2,700 / 750,,800,64,DDR3,1024,11,,40,4726,~6.8,,,,595,535,,,,,1706,4502,27881.5,,,,,,,,,,5316,, -AMD FirePro M3900,Seymour XT,Terascale 2,700,750,900,64,DDR3,1024,11,4.1,40,4629,~3.9,,,,617,,,,,,,4997,,,,,,,,,,,,, -NVIDIA GeForce GT 520M,N12P-GP/LV,Fermi,740 / 600,,800 / 900,64 / 128,DDR3 (GDDR5),1536,11,,40,4727,~5.6,,,,568.5,502,,,,,2280,4742.5,20926,,,,,,,,,,4960,, -AMD Radeon HD 7420G,Trinity,Terascale 3,480,655,,,,,11,4.2,32,4214,~1.2,,1963,2717,501,453,332,343,,,1718,3751,,,,,,,,,,13.07,4220,332,67 -ATI Mobility Radeon HD 3670,M86XT,RV6xx,680,,800,128,DDR2/GDDR3/GDDR4,,10.1,,55,5821,~8.7,,,,,,,,,,1277,4389.5,24532,,,,,,,,,,4145,, -ATI Mobility FireGL V5725,M86GL,RV6xx,680,,800,128,,,10.1,,55,5461,,,,,,,,,,,,,,,,,,,,,,,,, -PowerVR GX6450,Rogue,PowerVR Rogue,450 (?),,,64,,,10,"3.x, 4.x, OpenGL ES 3.0",20,3384,~10.2,23937,,,,,,,,,,,,44.8,18.5,,,,16055,,,,,, -Qualcomm Adreno 420,,,,600,,,,,11,ES 3.1,28,3462,~23.4,20733,,,,,,,,,,,,41.35,17.85,,,31806,18680,,,,,, -Qualcomm Adreno 620,,Adreno 600,,,,,,,12,"ES 3.2, Vulkan 1.1",14,1711,~2.7,68764,,,,,,,,,,,,95,54,37,30.4,,,,,,,, -IMG BXM-8-256,B-Series,B-Series,900,,,64,,,,ES 3.x,6,3384,~1.4,,,,,,,,,,,,,74,62,28,31.67,,,,,,,, -ARM Mali-G57 MP4,Valhall,Bifrost,,,,,,,,,7,1260,~1.9,37882,,,,,,,,,,,,84,51.5,34,34.21,,,,,,,, -ARM Mali-G57 MP3,Valhall,Bifrost,,,,,,,,,7,1260,~1.6,32143.5,,,,,,,,,,,,70,42.5,27.5,33.74,,,,,,,, -Intel HD Graphics (Haswell),Haswell GT1,Gen. 7.5 Haswell,200,1000,,64/128,,,11.1,,22,4092,~1.4,43493,2335.5,3278,544,484,314,362.5,,,2163,3357.5,,53.5,28.7,20.1,,,,,,13.92,4215.5,370,140 -AMD Radeon HD 6520G,Llano,Terascale 2,400,,,,,,11,,32,4566,~1.7,,,,549.5,492,,,,,1678,3322,,,,,,,,,,,3494,, -AMD Radeon HD 8310G,Trinity,TeraScale 3,424,554,,,,,11,4.2,32,3858,,,,,,,,,,,,,,,,,,,,,,,,, -NVIDIA GeForce 320M,MCP89,GT2xx,450,,,,,,10.1,,40,5006,~5.2,,,,,,,,,,1852,4229.5,16219,,,,,,,,,12.6,3206,, -NVIDIA GeForce GT 320M,,GT2xx,500,,790,128,DDR3,1024,10.1,,40,5076,~3.4,,,,,,,,,,1205,4706,,,,,,,,,,,,, -ATI Mobility Radeon HD 2600 XT,M76-XT,RV6xx,700,,750,128,"DDR2, GDDR3",256,10,,65,6059,~8.5,,,,,,,,,,1159,4179,24515,,,,,,,,,,3362,, -ATI Mobility Radeon X1900,M59,,400,,470,256,DDR1/DDR2/GDDR3,256,9c,,80,6182,~15.9,,,,,,,,,,,3460,25914,,,,,,,,,,,, -ATI Mobility Radeon X1800XT,"M58, R520",,550,,650,256,GDDR3,,9c,,90,6498,,,,,,,,,,,,,,,,,,,,,,,,, -ATI Mobility Radeon X1800,M58,,450,,500,256,GDDR3,,9c,,90,6498,~11.7,,,,,,,,,,,2681,19000,,,,,,,,,,,, -NVIDIA GeForce Go 6800 Ultra,NV41M,,450,,600,256,DDR3,256,9c,,130,6867,~14.1,,,,,,,,,,,2500,23800,,,,,,,,,,,, -NVIDIA GeForce Go 7800,G70M,G7x,400,,550,256,GDDR3,256,9c,,110,6498,~11.6,,,,,,,,,,,2200,19500,,,,,,,,,,,, -NVIDIA GeForce 9600M GS,NB9P-GE,G9x,430,,800,128,"GDDR2, GDDR3",1024,10,,65,5672,~8.3,,,,,,,,,,1135,4382.5,23837.5,,,,,,,,,,3076,, -NVIDIA GeForce 9500M GS,NB9P-GE1,G8x,475,,700,128,GDDR2 / GDDR3,512,10,,80,5796,~7.3,,,,,,,,,,863,3705.5,20861,,,,,,,,,,3161,, -AMD Radeon HD 7400G,Trinity,Terascale 3,327,423,,,,,11,4.2,32,4122,~1.3,,1586,2424,454,415,245,327,,,,2931,,,,,,,,,,,3866,316, -AMD Radeon HD 6480G,Llano,Terascale 2,444,,,,,,11,,32,4566,~1.6,,1646,,513,467,155,,,,1578,3497,,,,,,,,,,,3655,, -ATI Mobility Radeon HD 2700,M76-XT,RV6xx,700,,700,128,"DDR2, GDDR3",256,10,,65,5847,~14.1,,,,,,,,,,,4067.5,21740,,,,,,,,,,,, -NVIDIA GeForce GT 415M,N11P-GV,Fermi,500,,800,128,(G)DDR3,,11,,40,4851,~2.4,,,,433,379,,,,,,4193.5,,,,,,,,,,,3922,, -NVIDIA GeForce 410M,N12M-GS,Fermi,575,,800,64,DDR3,,11,,40,4726,~5.2,,,,477,415,,,,,1922.5,4035,20641,,,,,,,,,,3399,, -AMD Radeon HD 7370M,Robson XT,Terascale 2,750,,1600,64,DDR3,1024,11,,40,4360,,,,,,,,,,,,,,,,,,,,,,,,, -Qualcomm Adreno 418,,,,600,,,,,11.1,ES 3.1,20,3462,~15.3,23298.5,,,,,,,,,,,,34,15,9.95,,26339,12793,,,,,, -Qualcomm Adreno 619,,Adreno 600,,,,,,,12.1,"ES 3.2, Vulkan",8,2922,~2.3,55911,,,,,,,,,,,,91,46,33,26.82,,,,,,,, -Qualcomm Adreno 619L,,Adreno 600,,,,,,,12.1,"ES 3.2, Vulkan",8,2922,~1.8,44899,,,,,,,,,,,,72.5,36.5,26,22.82,,,,,,,, -Qualcomm Adreno 618,,Adreno 600,,,,,,,12.1,"ES 3.2, Vulkan",14,1711,~1.3,52650,2900,3273,645,599,494,504,129,112,,,,84.5,41,30,26.34,,,,,,288,, -ARM Mali-G57 MP2,Valhall,Bifrost,,,,,,,,,7,1260,~1,,,,,,,,,,,,,63,38,24,27.11,,,,,,,, -ARM Mali-G57 MP1,Valhall,Bifrost,,,,,,,,,7,1260,~0.4,,,,,,,,,,,,,24,16,9.7,11.4,,,,,,,, -Qualcomm Adreno 616,,Adreno 600,,,,,,,12.1,"ES 3.2, Vulkan",14,2922,~1.8,38288.5,,,,,,,,,,,,65,32,23,,,,,,,,, -AMD Radeon R2 (Mullins/Beema/Carrizo-L),Beema/Mullins,GCN 1.1,300,600,,64,,,12 (FL 12_0),,28,3517,~0.9,,1980.5,2650,434.5,397,350.5,373,,,1178,3242,,36,14,12.7,,,,,,9.53,1616,340.5,89 -ARM Mali-G51 MP4,,Bifrost,650,,,,,,,,12,1975,~0.9,21501.5,,,,,,,,,,,,39,21,14,16.03,,,,,,,, -AMD Radeon HD 6370M,Robson XT,Terascale 2,750,,800,64,DDR3,1024,11,,40,4767,~7.3,,,,,,,,,,1319,3999,19638,,,,,,,,,,3875,, -AMD Radeon HD 8280,Temash,GCN,450,,,,,,11.1,,28,3858,~0.7,,2054,2515,554,496,303,328,,,,,,,,,,,,,,11,1041,295, -ATI Mobility Radeon HD 5470,Park XT,Terascale 2,750,,1800,64,"DDR2, GDDR2, DDR3, GDDR3, GDDR5",,11,,40,5090,~7.5,,,,,,,,,,1269.5,3683.5,20743,,,,,,,,,,4042,, -AMD Radeon HD 6450M,Seymour-PRO,Terascale 2,600,,800,64,DDR3,,11,,40,4728,~2.2,,,,506.5,443,,,,,1394.5,3845.5,,,,,,,,,,,5804,, -AMD Radeon HD 7430M,Seymour-PRO,Terascale 2,600,,1800,64,DDR3,,11,,40,4358,,,,,,,,,,,,,,,,,,,,,,,,, -ATI Mobility Radeon HD 3650,M86,RV6xx,600,,700,128,DDR2/GDDR3/GDDR4,,10.1,,55,5821,~7.8,,,,,,,,,,855,3360,23042,,,,,,,,,,3291,, -ATI Mobility FireGL V5700,M86-GL,RV6xx,600,,700,128,DDR2/GDDR3/GDDR4,,10.1,,55,5821,~8.8,,,,,,,,,,1017,4270.5,24429,,,,,,,,,,5049,, -ATI Mobility Radeon HD 5145,,Terascale 1,720,,900,64,"DDR3, GDDR3",,10.1,,55,5090,~6.8,,,,,,,,,,1248,3661,18387.5,,,,,,,,,,4014.5,, -ATI Mobility Radeon HD 545v,,Terascale 1,720,,800,64,"GDDR3, DDR3, DDR2",,10.1,,55,4972,~7.1,,,,,,,,,,1215,3760,19162,,,,,,,,,,4297,, -AMD Radeon HD 8240,Temash,GCN,400,,,,,,11.1,,28,3858,~0.9,,1501,2273,458.5,427.5,265.5,292.5,,,1377,2636,,,,,,,,,,9.55,2198,272,32 -AMD Radeon R6 (Mullins),Mullins,GCN 1.1,500,,,64,,,12 (FL 12_0),,28,3517,~1.3,20511,1900,2258,582,,302,,,,,,,,,,,,,,,,,, -AMD Radeon HD 8250,Temash,GCN,300,400,,,,,11.1,,28,3849,~0.9,,1636,1965,468,422.5,234.5,253.5,,,1317,2570,,,,,,,,3.7,,,1895,275,54 -Intel HD Graphics (Cherry Trail),Cherry Trail,Gen. 8,200,600,,64/128,,,12 (FL 11_1),4.3,14,3210,~0.8,19303,1488,1783.5,343,298,248,225,,,,2595,,32,13.5,11,,,,,1.2,9.66,1973,277,89 -ATI Mobility Radeon HD 4570,M92-XT,Terascale 1,680,,800,64,"GDDR3, DDR2, DDR3",,10.1,,55,5453,~6.4,,,,,,,,,,1151,3633,17062,,,,,,,,,,3689,, -NVIDIA Quadro FX 570M,G64GLM,G8x,475,,700,128,GDDR3,256,10,,80,6041,~12.1,,,,,,,,,,,3800,26907.5,,,,,,,,,,4534,, -ATI Mobility Radeon HD 5450,Park Pro,Terascale 2,675,,800,64,DDR3,,11,,40,5090,~5.2,,,,,,,,,,,3775.5,,,,,,,,,,,,, -NVIDIA GeForce 8600M GT,G84M,G8x,475,,700,128,"GDDR3, GDDR2",512,10,,80,6033,~7.5,,,,,,,,,,1040,3277,22231.5,,,,,,,,,,3006.5,, -ATI Mobility Radeon HD 2600,M76,RV6xx,500,,600,128,"DDR2, GDDR3",256,10,,65,6059,~7.4,,,,,,,,,,,3177,15324,,,,,,,,,,2575,, -Intel HD Graphics 3000,Sandy Bridge,Gen. 6 Sandy Bridge,350,1350,,64/128,,,10.1,3.0,32,4700,~4,,2656.5,2502.5,,,,,,,1568,3286.5,11654,,,,,,,,,,4414,, -NVIDIA Quadro FX 380M,n10m-glm,GT2xx,625,,800,64,"GDDR3, DDR3",512,10.1,,40,5090,~5.1,,,,,,,,,,,3687,,,,,,,,,,,,, -NVIDIA GeForce 310M,N11M-GE1,GT2xx,606 / 625,,800,64,"GDDR3, DDR3",512,10.1,,40,5087,~5.8,,,,,,,,,,1123,3206,15456.5,,,,,,,,,,3175,, -NVIDIA GeForce G210M,N10M-GS,GT2xx,625,,800,64,"GDDR2, GDDR3",512,10.1,,40,5296,~3.9,,1536,1805,,,,,,,1021,3047,17585,,,,,,,,,7.53,2607.5,, -NVIDIA NVS 3100M,N10M-NS,GT2xx,600,,800,64,"GDDR3, DDR3",512,10.1,,40,5090,~7.9,,,,,,,,,,1120.5,3257,23455.5,,,,,,,,,,3374.5,, -NVIDIA GeForce 405M,,GT2xx,606,,1600,64,"GDDR3, DDR3",512,10.1,,40,4235,,,,,,,,,,,,,,,,,,,,,,,,, -NVIDIA GeForce 315M,N11M-GE,GT2xx,606,,790,64,"GDDR3, DDR3",512,10.1,,40,4762,~5.7,,,,,,,,,,1108.5,3267,14749,,,,,,,,,,3787,, -NVIDIA GeForce Go 7600 GT,G73M,,500,,600,128,"GDDR3, GDDR2, GDDR1",256,9c,,90,6345,~12.8,,,,,,,,,,,2833,20865,,,,,,,,,,,, -NVIDIA GeForce 9500M G,NB9P,G9x,500,,800,128,"GDDR2, GDDR3",1024,10,,65,5672,~6.9,,,,,,,,,,,3435,13926,,,,,,,,,,2220.5,, -NVIDIA GeForce 8600M GS,G84M,G8x,600,,700,128,"GDDR3, GDDR2",512,10,,80,6033,~7.7,,,,,,,,,,,3027.5,16193,,,,,,,,,,3131.5,, -NVIDIA NVS 2100M,,GT2xx,535,,800,64,"GDDR3, DDR3",512,10.1,,40,5090,~6.9,,,,,,,,,,992,2971,20085.5,,,,,,,,,,3084,, -NVIDIA GeForce Go 7700,G73M-B1,,450,,500,128,"GDDR3, GDDR2, GDDR1",512,9c,,80,6345,~13.4,,,,,,,,,,,2685.5,22170,,,,,,,,,,,, -NVIDIA GeForce Go 6800,NV42M,,300,,300,128 / 256,,256,9c,,130,6867,~13.7,,,,,,,,,,,1900,23800,,,,,,,,,,,, -NVIDIA Quadro FX Go 1400,NV41M,,330,,500,256,,256,9c,,130,6867,~1.8,,,,,,,,,,,1306,,,,,,,,,,,,, -ATI Mobility Radeon X800XT,M28Pro,,480,,550,256,,,9b,,130,6764,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Radeon HD 6430M,Seymour-LP,Terascale 2,480,,800,64,DDR3,,11,,40,4728,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Radeon HD 6380G,Llano,Terascale 2,400,,,,,,11,,32,4566,~3,,,,,,,,,,,2639,,,,,,,,,,,3318,, -ATI Mobility Radeon HD 5430,Park LP,Terascale 2,550,,800,64,"DDR3, GDDR5?",,11,,40,5090,~2.4,,,,,,,,,,962,3082,,,,,,,,,,,3702,, -AMD Radeon HD 8210,"Temash, Kabini",GCN,300,,,,,,11.1,,28,3858,~0.8,26764,1150,1904.5,370.5,343.5,209,227,,,984,2177.5,,25,,,,,,,,7.69,1691,241,45 -ATI Mobility Radeon HD 540v,,Terascale 1,550,,800,64,"GDDR3, DDR3, DDR2",512,10.1,,55,4972,~6.9,,,,,,,,,,1008,3494,18743,,,,,,,,,,4286.5,, -ATI Mobility Radeon HD 4550,M92,Terascale 1,550,,700,64,"GDDR3, DDR2, DDR3",,10.1,,55,5096,~6.8,,,,,,,,,,1051,3449,18299,,,,,,,,,,4230,, -Intel HD Graphics 2500,Ivy Bridge GT1,Gen. 7 Ivy Bridge,650,1150,,64/128,,,11.0,,22,4275,~3.1,,2817,2604.5,430,350.5,294.5,318,,,1930.5,3816,20814,,,,,,,,,,6037,286,50 -Intel HD Graphics (Ivy Bridge),Ivy Bridge GT1,Gen. 7 Ivy Bridge,350,1100,,64/128,,,11.0,,22,4092,~1.6,,1906.5,2286,370.5,315,254.5,285.5,,,1491,2930,9212,27,,,,,,,,,3382,275,44 -AMD Radeon HD 7350M,Robson Pro,Terascale 2,500,,1800,64,DDR3,1024,11,,40,4184,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Radeon HD 6350M,Robson Pro,Terascale 2,500,,800-900,64,DDR3,1024,11,,40,4767,,,,,,,,,,,,,,,,,,,,,,,,, -ATI Mobility Radeon HD 4530,M92,Terascale 1,500,,700,64,"GDDR3, DDR2, DDR3",,10.1,,55,5453,~2.2,,,,,,,,,,708,2902,,,,,,,,,,,3441,, -ATI Mobility Radeon HD 4350,M92,Terascale 1,450,,600,64,"GDDR3, DDR2, DDR3",,10.1,,55,5453,~7.5,,,,,,,,,,,3130,14875,,,,,,,,,,3914,, -ATI Radeon HD 4350,RV710,Terascale 1,600,,500,64,DDR2,1024,10.1,,55,5585,~6.6,,,,,,,,,,688,2500,15404,,,,,,,,,,,, -ATI Mobility Radeon HD 530v,M92,Terascale 1,450,,600,64,"GDDR3, DDR3, DDR2",,10.1,,55,4972,~4.1,,,,,,,,,,,2947,,,,,,,,,,,,, -NVIDIA GeForce 305M,n11m-lp1,GT2xx,525,,700,64,"GDDR2, GDDR3, DDR2, DDR3",512,10.1,,40,5087,~4.3,,,,,,,,,,,3101,,,,,,,,,,,,, -ATI Mobility Radeon X1700,M66-P,,475,,400,128,DDR/DDR2/GDDR3/GDDR4,256,9c,,90,6526,~11.8,,,,,,,,,,,2139,19877.5,,,,,,,,,,,, -ATI Mobility FireGL V5250,M56GL,,400,,330,128,DDR/DDR2/GDDR3/GDDR4,256,9c,,90,6192,~2.3,,,,,,,,,,,1672,,,,,,,,,,,,, -ATI Mobility Radeon X2500,M66,,460,,400,64 / 128,DDR2,256,9c,,80,6041,~8.7,,,,,,,,,,,2100,13972.5,,,,,,,,,,,, -NVIDIA GeForce Go 7600,G73M,,450,,350,128 / 64,"GDDR3, GDDR2, GDDR1",256,9c,,90,6498,~10.8,,,,,,,,,,,1900,18232,,,,,,,,,,,, -NVIDIA Quadro NVS 300M,G72GLM,,450,,500,128,GDDR3,,9b,,90,6414,,,,,,,,,,,,,,,,,,,,,,,,, -ATI Mobility Radeon X800,M28,,400,,350,128 / 256,"GDDR2, GDDR3",256,9b,,130,6767,~10.8,,,,,,,,,,,1300,19100,,,,,,,,,,,, -ATI Mobility Radeon X1600,M56,,450,,470,128,DDR/DDR2/GDDR3,256,9c,,90,6526,~9.8,,,,,,,,,,,1836,16479,,,,,,,,,,,, -ATI Mobility FireGL V5200,M56GL,,425,,475,128,DDR/DDR2/GDDR3,256,9c,,90,6526,~1.7,,,,,,,,,,,1203.5,,,,,,,,,,,,, -ATI Mobility Radeon 9800,M18,,350,,300,256,DDR2 / DDR3,256,9,,130,7106,~9.8,,,,,,,,,,,860,17800,,,,,,,,,,,, -NVIDIA GeForce Go 6600,NV43M,,375,,300,128,GDDR2,256,9c,,110,6651,~8.6,,,,,,,,,,,1150,15000,,,,,,,,,,,, -ATI Mobility Radeon X1450,M54,,550,,450,128,DDR1/DDR2/DDR3,256,9c,,90,6297,~5.9,,,,,,,,,,,1085,9900,,,,,,,,,,,, -ATI Mobility Radeon X700,M26,,350,,350,128,DDR/DDR2,256,9,,110,6903,~8.7,,,,,,,,,,,735,15675.5,,,,,,,,,,,, -ATI Mobility FireGL V5000,M26GL,,350,,350,128,GDDR3,128,9,,110,6889,~17.1,,,,,,,,,,,,16500,,,,,,,,,,,, -NVIDIA GeForce G 110M,N10M-GS1,G9x,400,,700,64,"GDDR2, GDDR3",1024,10,,55,5454,~3.4,,,,,,,,,,,2450,,,,,,,,,,,,, -AMD Radeon HD 6330M,Robson LP,Terascale 2,500,,800,64,DDR3,1024,11,,40,4767,,,,,,,,,,,,,,,,,,,,,,,,, -ATI Mobility Radeon HD 4330,M92-SE,Terascale 1,450,,600,64,"GDDR3, DDR2, DDR3",512,10.1,,55,5453,~5.2,,,,,,,,,,656,2352,14310,,,,,,,,,,3310.5,, -NVIDIA GeForce 8400M GT,G86M,,450,,600,128,GDDR3 / GDDR2,512,10,,80,6064,~1.4,,,,,,,,,,,1033,,,,,,,,,,,,, -NVIDIA Quadro NVS 140M,G84M,,400,,700,64,"GDDR3, GDDR2",256,10,,80,6064,~5.7,,,,,,,,,,,1410,13071.5,,,,,,,,,,2408,, -Intel HD Graphics 2000,Sandy Bridge,Gen. 6 Sandy Bridge,850/1100,1350,,64/128,,,10.1,,32,4700,~5.2,,,,,,,,,,895.5,2288,15201,,,,,,,,,,2298,, -NVIDIA GeForce G 107M,,G9x,,,,,,,10,,55,5218,,,,,,,,,,,,,,,,,,,,,,,,, -NVIDIA GeForce G 105M,N10M-GE1,G9x,640,,700,64,"GDDR2, GDDR3",512,10,,65,5454,~4.8,,,,,,,,,,788,2261,13616,,,,,,,,,,2416,, -NVIDIA GeForce G 103M,G98,G9x,640,,500,64,DDR2,512,10.0,,65,5218,~4.6,,,,,,,,,,366,1885,13833,,,,,,,,,,2131,, -NVIDIA GeForce 9500M GE,MCP79Mx + NB9M,,,,,64,"GDDR2, GDDR3",256,10.0,,65,5819,,,,,,,,,,,,,,,,,,,,,,,,, -NVIDIA GeForce G 102M,MCP75,G9x,450,,,,"DDR2, DDR3",512,10.0,,65,5400,~5,,,,,,,,,,,1409,10723,,,,,,,,,,2581.5,, -NVIDIA GeForce G 205M,MCP79MX,G9x,450,,,,,,10,,65,5096,~2.2,,,,,,,,,,,1589,,,,,,,,,,,,, -NVIDIA GeForce 9400M (G) / ION (LE),MCP79MX,,450,,,,,,10.0,,65,5540,~2.5,,,,,,,,,,607,1157,6427,,,,,,,,,,2326.5,, -Intel HD Graphics (Sandy Bridge),Sandy Bridge,Gen. 6 Sandy Bridge,350,1100,,64/128,,,10.1,,32,4611,~3.2,,1451.5,1404.5,,,,,,,976,2509,11429.5,,,,,,,,,,2577,, -Qualcomm Adreno 612,,Adreno 600,,,,,,,12.1,"ES 3.2, Vulkan",14,2922,~1.1,26734,,,,,,,,,,,,41,21,15,14.25,,,,,,,, -Qualcomm Adreno 610,,Adreno 600,,,,,,,12.1,"ES 3.2, Vulkan",11,1711,~1,24487.5,,,,,,,,,,,,36,19,13,11.45,,,,,,,, -Qualcomm Adreno 512,,Adreno 500,,,,,,,12.1,"ES 3.2, Vulkan",14,2922,~1.1,29060,,,,,,,,,,,,50,22.5,15,12.76,,,,,,,, -Qualcomm Adreno 510,,Adreno 500,,,,,,,12.1,"ES 3.2, Vulkan",14,2922,~16,21533,,,,,,,,,,,,31,14.5,9.45,,26078,15120,,,,,, -Qualcomm Adreno 330,,,450,578,,,,,9_3,ES 3.0,28,3994,~16.3,18007,,,,,,,,,,,,24,11,,,23230,11943,,,,,, -PowerVR G6430,Rogue,PowerVR Rogue,,,,,,,10,"3.x, 4.x, OpenGL ES 3.0",28,3748,~12,18258,,,,,,,,,,,,27.9,11.85,6.9,,18918,11885,,,,,, -PowerVR GX6250,Rogue,PowerVR Rogue,,700,,64,,,10,"3.x, 4.x, OpenGL ES 3.x",28,3384,~0.7,14121,,,,,,,,,,,,27.8,14,7.5,,,,,,,,, -PowerVR G6400,Rogue,PowerVR Rogue,400,533,,,,,10,"3.x, 4.x, OpenGL ES 3.1",0,3748,~12.1,15933,,,,,,,,,,,,23.6,8.9,,,16066,9700,,,,,, -Intel HD Graphics (Bay Trail),Bay Trail,Gen. 7 Ivy Bridge,311,896,,32/64/128,,,11,"4.0, ES 3.0",22,3747,~3.5,14748.5,1188,1228.5,216,186.5,147,149,,,637,1866,7727,16,8.75,5.2,,14509,8456,3.6,,5.52,1991.5,174,29 -ARM Mali-T628 MP6,Midgard (2nd Generation),,600,,,,,,11,ES 3.0,0,3733,~11.9,13791,,,,,,,,,,,,22.8,6.55,,,17718,7828,,,,,, -ARM Mali-T760 MP4,Midgard (3rd Generation),Midgard (3rd-gen),600,,,,,,11.1,ES 3.1,0,3727,~0.4,9208,,,,,,,,,,,,16,7.1,4.9,,,,,,,,, -VIA Chrome9HD,,,,,,,,,10.1,,0,6133,~2.9,,,,,,,,,,,2120,,,,,,,,,,,,, -AMD Radeon HD 7340,Zacate,Terascale 2,523,680,,,,,11,,40,4245,~1.6,,1385.5,1908,360.5,331.5,217.5,224,,,1070,2466.5,9548,,,,,,,,,,2121,258,63 -AMD Radeon HD 6320,Zacate,Terascale 2,500,600,,,,,11,,40,4777,~1.2,,,,332.5,302,,,,,891.5,2406.5,,,,,,,,,,,2056,, -AMD Radeon HD 7310,Zacate,Terascale 2,500,,,,,,11,,40,4245,~1.2,,1161,1593,286,260,200,192,,,639.5,1458.5,7452,,,,,,,,,,1796,162,28 -AMD Radeon HD 6310,Zacate,Terascale 2,500,,,,,,11,,40,4777,~2.3,,,,275,251,,,,,691,1984.5,8348,,,,,,,,,,1933,, -AMD Radeon HD 8180,Temash,GCN,225,,,,,,11.1,,28,3858,~0.6,,1021,1493,294,268,165,145,,,790,1723.5,,,,,,,,,,5.45,1469.5,216,30 -ATI Mobility Radeon HD 3470 Hybrid X2,M82-XT + RS780M,RV6xx,,,,,DDR2/GDDR3,,10.1,,55,5454,~5.3,,,,,,,,,,,2324,10748,,,,,,,,,,2098,, -NVIDIA GeForce 9400M GeForceBoost,,,,,,64,,,10,,65,5673,~5.1,,,,,,,,,,125,,9710,,,,,,,,,,,, -ATI Mobility Radeon HD 3470,M82-XT,RV6xx,680,,800,64,DDR2/GDDR3,,10.1,,55,6185,~5.6,,,,,,,,,,,1566,12640.5,,,,,,,,,,2245,, -NVIDIA GeForce 9300M G,NB9M-GS1,,400,,600,64,GDDR2 / GDDR3,256,10,,80,5796,~6.3,,,,,,,,,,,1775.5,13980,,,,,,,,,,2613,, -NVIDIA ION 2,"GT218-ION-A3, GT218-ILV-A3",GT2xx,405 / 475 / 535,,790,64,"DDR2, DDR3",512,10.1,,40,5087,~2.4,,,,,,,,,,724,1963,5539.5,,,,,,,,,,1027,, -NVIDIA GeForce 9300M GS,NB9M-GS,,550,,700,64,"GDDR2, GDDR3",256,10,,65,5672,~4.5,,,,,,,,,,267,1465,13583,,,,,,,,,,2561,, -NVIDIA Quadro FX 370M,NB9M-GLM,,580,,700,64,"GDDR2, GDDR3",256,10,,65,5600,~6.2,,,,,,,,,,,1595,13622,,,,,,,,,,3031,, -NVIDIA Quadro NVS 160M,,,580,,700,64,"GDDR2, GDDR3",256,10,,65,5600,~6.3,,,,,,,,,,,1841,13740,,,,,,,,,,2923,, -NVIDIA GeForce 9200M GS,NB9M-GE,,550,,700,64,"GDDR2, GDDR3",256,10,,65,5672,~4.8,,,,,,,,,,372.5,1817.5,14224,,,,,,,,,,2335,, -AMD Radeon HD 7290,Zacate,Terascale 2,280,400,,,,,11,,40,4550,~0.7,,,,226,206,,,,,534,1536,,,,,,,,,,,1342,188, -AMD Radeon HD 6290,Zacate,Terascale 2,280,400,,,,,11,,40,4550,~0.7,,,,200,179,,,,,497,1513,,,,,,,,,,,1174,, -ATI Mobility Radeon HD 3450,M82,RV6xx,500,,700,64,DDR2/GDDR3,,10.1,,55,6185,~4.5,,,,,,,,,,306.5,1911.5,12859,,,,,,,,,,2595,, -ATI Mobility Radeon HD 3430,M82-SE,RV6xx,450,,700,64,GDDR2,512,10.1,,55,5621,~5.5,,,,,,,,,,,1690,12163.5,,,,,,,,,,2129,, -ATI Mobility Radeon HD 3410,M82-MPE,RV6xx,400,,700,64,GDDR2,,10.1,,55,5621,~2,,,,,,,,,,,1450,,,,,,,,,,,,, -ATI Mobility Radeon HD 2400 XT,M74,RV6xx,600,,700,64,"DDR2, GDDR3",256,10,,65,6059,~4.9,,,,,,,,,,,1689,9962,,,,,,,,,,2653,, -ATI Radeon HD 4270,RS880M,RV6xx,590,,,,,512,10.1,,55,4976,~1.2,,,,,,,,,,230,1402,,,,,,,,,,,2220,, -ATI Radeon HD 4250,RS880M,RV6xx,500,,,,,512,10.1,,55,4976,~3.1,,,,,,,,,,227,1372,8689,,,,,,,,,,2117,, -ATI Radeon HD 4200,RV620,RV6xx,500,,,,,512,10.1,,55,5209,~2.8,,330,,,,,,,,236,1465,9370,,,,,,,,,,2229,, -Intel Graphics Media Accelerator (GMA) HD Graphics,GMA HD,Gen. 5 Arrandale,500,,,,,,10,,45,5087,~3,,,,,,,,,,297.5,1420,8301.5,,,,,,,,,,1790,, -AMD Radeon HD 6250,Zacate,Terascale 2,280,,,,,,11,,40,4777,~1.2,,793,1091,188.5,172,,,,,422,1446.5,6589.5,,,,,,,,,,1372,160,27 -NVIDIA Quadro NVS 150M,,,530,,700,64,"GDDR2, GDDR3",256,10,,65,5600,~6.2,,,,,,,,,,,1561,14211.5,,,,,,,,,,2515.5,, -NVIDIA Quadro FX 360M,NB8M-GLM,,400,,600,64,GDDR3,256,10,,80,6064,~6.6,,,,,,,,,,,1490,15053.5,,,,,,,,,,2985,, -ATI Mobility Radeon X1350,M52,,470,,350,128,DDR1/DDR2/GDDR3,256,9c,,90,6297,~7.1,,,,,,,,,,,1088,12234,,,,,,,,,,,, -ATI Mobility Radeon X1400,M54,,445,,250,128,DDR1/DDR2/GDDR3,256,9c,,90,6539,~8.2,,,,,,,,,,,1064,14404.5,,,,,,,,,,,, -NVIDIA GeForce 9100M G,MCP77MH MCP79MH,,450,,,,,,10,,65,5672,~1.7,,,,,,,,,,,1200,,,,,,,,,,,,, -NVIDIA GeForce 8400M GS,G86M,,400,,600,64,GDDR2 / GDDR3,256,10,,80,6064,~5.5,,,,,,,,,,,1343,12521.5,,,,,,,,,,2128.5,, -NVIDIA Quadro NVS 135M,G86M,,400,,600,64,"GDDR3, GDDR2",256,10,,80,6064,~5.9,,,,,,,,,,,965,10100,,,,,,,,,,,, -ATI Mobility Radeon HD 2400,M72,RV6xx,450,,500,64,"DDR2, GDDR3",256,10,,65,6059,~4.6,,,,,,,,,,,1215,10205,,,,,,,,,,2210,, -ATI Radeon HD 3200,RS780M,RV6xx,500,,,,,512,10,,55,5672,~2.1,,,,,,,,,,81.5,891,6020,,,,,,,,,,1511,, -ATI Radeon HD 4225,RS880M,RV6xx,380,,,,,512,10.1,,55,4976,~2.4,,,,,,,,,,140.5,1053,6695,,,,,,,,,,1665.5,, -ATI Radeon HD 4100,,RV6xx,350,,,,,512,10.1,,55,5157,,,,,,,,,,,,,,,,,,,,,,,,, -PowerVR SGX554MP4,,PowerVR SGX5,,,,,,,9,ES 2.0,32,4070,~0.7,11596,,,,,,,,,,,,9.35,,,,,,,,,,, -ARM Mali-T628 MP4,Midgard (2nd Generation),,,600,,,,,11,ES 3.0,0,3389,~9.3,11984,,,,,,,,,,,,12,6.6,3.9,,18011,6038.5,,,,,, -Qualcomm Adreno 509,,Adreno 500,,,,,,,12.1,"ES 3.2, Vulkan",14,2412,~1,20836,,,,,,,,,,,,36,16,10,,,,,,,,, -Qualcomm Adreno 508,,Adreno 500,650,,,,,,12.1,"ES 3.2, Vulkan",14,2412,~0.9,18469,,,,,,,,,,,,30,14,9.7,,,,,,,,, -Qualcomm Adreno 506,,Adreno 500,650,,,,,,12.1,"ES 3.2, Vulkan",14,2922,~12.2,13240,,,,,,,,,,,,23,9.8,6.4,,21210,10438,,,,,, -PowerVR GE8322 / IMG8322,,Rogue,,,,,,,,ES 3.2,28,1626,~0.5,9393,,,,,,,,,,,,19,9.6,6.5,,,,,,,,, -Qualcomm Adreno 505,,Adreno 500,450,,,,,,12.1,"ES 3.2, Vulkan",14,2922,~8.1,10069,,,,,,,,,,,,17,7.1,4.6,5.23,16609.5,8015,,,,,, -Qualcomm Adreno 504,,Adreno 500,450,,,,,,12.1,"ES 3.2, Vulkan",14,1994,~0.3,6896,,,,,,,,,,,,11,4.75,3.15,,,,,,,,, -ATI Mobility Radeon HD 3400,,RV6xx,,,,,,,,,0,4884,,,,,,,,,,,,,,,,,,,,,,,,, -ATI Radeon HD 3100,RS780MC,RV6xx,350,,,,,512,10,,55,5614,~1.6,,,,,,,,,,,1164,,,,,,,,,,,,, -NVIDIA GeForce 8400M G,G86M,,400,,600,64,GDDR3 / GDDR2,256,10,,80,6064,~3.4,,,,,,,,,,,912,7560,,,,,,,,,,1443,, -ARM Mali-T860 MP2,Midgard,Midgard,700,,,,,,11.1,ES 3.1 AEP,28,3270,~8,9806.5,,,,,,,,,,,,17,6.8,4.55,,14306,6378,,,,,, -ARM Mali-T830 MP3,,,,600,,,,,11 (FL 9_3),ES 3.2,16,2814,~0.7,13314,,,,,,,,,,,,34,15,9.1,,,,,,,,, -NVIDIA Quadro NVS 130M,G86M,,,,700,64,"GDDR3, GDDR2",256,10,,80,6064,~1.5,,,,,,,,,,,1115,,,,,,,,,,,,, -NVIDIA GeForce 8200M G,MCP77MV MCP79MVL,,400,,,,,,10,,80,5672,~4.6,,,,,,,,,,,1250,7122,,,,,,,,,,,, -Intel Graphics Media Accelerator (GMA) 4700MHD,Montevina,Gen. 4.5,640,,,0,,0,10,,65,5553,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Graphics Media Accelerator (GMA) 4500MHD,Montevina,Gen. 4.5,533,,,0,,0,10,,65,5553,~1.2,,178,145,,,,,,,,623,5089.5,,,,,,,,,0.82,773,, -Intel Graphics Media Accelerator (GMA) 4500M,GL40,Gen. 4.5,400,,,,,0,10,,65,5553,~1.8,,,,,,,,,,,612.5,3882,,,,,,,,,,687,, -ARM Mali-T604 MP4,Midgard,,533,,,,,,11,ES 3.0,28,4050,~0.1,,,,,,,,,,,,,12.4,,,,,,,,,,, -NVIDIA GeForce Go 7400,G72M,,450,,450,64 / 32,DDR3,128,9c,,90,6526,~7.2,,,,,,,,,,,801.5,12730.5,,,,,,,,,,,, -NVIDIA Quadro FX 350M,G72M,,450,,350,64,DDR-3,64,9c,,90,6468,~0.9,,,,,,,,,,,680,,,,,,,,,,,,, -NVIDIA Quadro NVS 120M,G72M,,450,,700,64,DDR-3,256,9c,,90,6406,~0.9,,,,,,,,,,,660,,,,,,,,,,,,, -NVIDIA GeForce Go 7300,G72M,,350,,700,64,DDR-3,64,9c,,90,6526,~6.4,,,,,,,,,,,712.5,11300,,,,,,,,,,,, -NVIDIA GeForce Tegra 4,Tegra 3,VLIW Vec4,,,,,,,,ES 2.0,40,5096,~16.5,14858,,,,,,,,,,,,17.5,,,,19277,9413,,,,,, -PowerVR G6200,Rogue,PowerVR Rogue,450 - 700,,,,,,10,"3.x, 4.x, OpenGL ES 3.1",0,3748,~0.5,10862,,,,,,,,,,,,15,7.2,3.2,,,,,,,,, -Qualcomm Adreno 405,,,,550,,,,,11,ES 3.1,28,3581,~6.1,8161,,,,,,,,,,,,14,5.6,4.2,,10631,5084,,,,,, -ARM Mali-T830 MP2,,,,600,,,,,11 (FL 9_3),ES 3.2,16,2814,~9.7,11147,,,,,,,,,,,,18.5,7.85,4.5,,16613,8542,,,,,, -NVIDIA Quadro NVS 110M,G72M,,300,,600,64,DDR-3,64,9c,,90,6406,~6.1,,,,,,,,,,,600,11000,,,,,,,,,,,, -ATI Mobility Radeon X600,M24,,400,,250,128,DDR/DDR2,256,9,,130,7136,~5.5,,,,,,,,,,,280,10155.5,,,,,,,,,,,, -ATI Mobility FireGL V3200,M24GL,,400,,,128,DDR/DDR2,128,9,,130,7136,~12.3,,,,,,,,,,,,11800,,,,,,,,,,,, -ATI Mobility FireGL V3100,M22GL,,350,,200,128,DDR/DDR2,64,9,,110,7136,,,,,,,,,,,,,,,,,,,,,,,,, -ATI Mobility Radeon X2300,M64,,480,,400,128,DDR1/DDR2/GDDR3,256,9c,,90,6133,~3.7,,,,,,,,,,,892,8354.5,,,,,,,,,,1787,, -ATI Mobility Radeon HD 2300,M71,RV5xx,480,,400,128,DDR1/DDR2/GDDR3,,9c,,90,6133,~5.3,,,,,,,,,,,834.5,9000,,,,,,,,,,,, -ATI Mobility Radeon 9700,M11,,450,,275,128 / 64,DDR,256,9,,130,7136,~5.5,,,,,,,,,,,424,10000,,,,,,,,,,,, -ATI Mobility FireGL T2e,M11GL,,450,,260,128,,256,9,,130,7075,,,,,,,,,,,,,,,,,,,,,,,,, -ATI Mobility Radeon X1300,M52,,350,,250,128,DDR1/DDR2/GDDR3,256,9c,,90,6539,~5.2,,,,,,,,,,,725,9000,,,,,,,,,,,, -NVIDIA GeForce4 4200 Go,NV28M,,200,,200,128,DDR,128,8.1,,150,7700,~9.9,,,,,,,,,,,,9500,,,,,,,,,,,, -ATI Mobility Radeon 9600,M10,,300,,300,128 / 64,DDR,128,9,,130,7136,~8.8,,,,,,,,,,,,8490,,,,,,,,,,,, -ATI Mobility FireGL T2,M10GL,,300,,200,128,,256,9,,130,7349,~9.2,,,,,,,,,,,,8894,,,,,,,,,,,, -ATI Mobility Radeon 9550,M12,,210,,183,64,DDR,128,9,,130,7136,,,,,,,,,,,,,,,,,,,,,,,,, -NVIDIA GeForce Go 7200,G72M,,450,,350,32,DDR-3,64,9c,,90,6314,~4.4,,,,,,,,,,,674,7489,,,,,,,,,,,, -NVIDIA GeForce Go 6400,NV44M1,,400,,350,64,DDR,32,9c,,110,6526,~10.2,,,,,,,,,,,,9800,,,,,,,,,,,, -ATI Mobility Radeon X300,M22,,350,,250,64,DDR/DDR2,,9,,130,6764,~4.6,,,,,,,,,,,200,8646.5,,,,,,,,,,,, -NVIDIA GeForce Go 6250,NV44M1,,400,,350,64,DDR,32,9c,,110,6526,,,,,,,,,,,,,,,,,,,,,,,,, -NVIDIA GeForce Go 6200,NV44MV,,300,,300,64,DDR,32,9c,,110,6526,~9.4,,,,,,,,,,,,9000,,,,,,,,,,,, -NVIDIA GeForce FX Go 5700,NV36M,,450,,275,128,DDR,32,9,,130,7288,~11.4,,,,,,,,,,,,11000,,,,,,,,,,,, -NVIDIA Quadro FX Go 1000,,,,,,128,,,9,,130,7233,,,,,,,,,,,,,,,,,,,,,,,,, -NVIDIA GeForce FX Go 5600 / 5650,NV31M,,350,,300,128,DDR,32,9,,130,7594,~9.5,,,,,,,,,,,,9100,,,,,,,,,,,, -ATI Radeon Xpress X1270,M690T,,400,,,,,128,9,,80,6161,~2.1,,,,,,,,,,,327.5,5217,,,,,,,,,,559,, -ATI Radeon Xpress X1250,RS690M,,350,,,,,128,9,,80,6161,~2.8,,,,,,,,,,,387.5,6930,,,,,,,,,,880,, -ATI Radeon Xpress 1250,,,400,,,,,,9,,80,6316,~1.9,,,,,,,,,,,445,4576,,,,,,,,,,669,, -ATI Radeon Xpress X1200,RS690M,,350,,0,,,128,9,,80,6161,~2.2,,,,,,,,,,,278,3824,,,,,,,,,,,, -Intel Graphics Media Accelerator (GMA) X3100,Crestline,Gen. 4,500,,,0,,0,10,,90,6064,~1.8,,,,,,,,,,,430.5,4117,,,,,,,,,,665,, -PowerVR SGX543MP4,,PowerVR SGX5,,,,,,,10.1,ES 2.0,40,5387,,,,,,,,,,,,,,,,,,,,,,,,, -ARM Mali-T624,,Midgard 2nd Gen,,,,,,,11,ES 3.0,28,3782,~7.9,9931,,,,,,,,,,,,14.2,3.6,,,12170,4944,,,,,, -Qualcomm Adreno 320,,,400,,,,,,9_3,ES 3.0,28,4309,~7.9,10644,,,,,,,,,,,,13,4.3,,,11550,5400,,,,,, -ARM Mali-T760 MP2,Midgard (3rd Generation),Midgard (3rd-gen),700,,,,,,11.1,ES 3.1,0,3727,~7.3,8041,,,,,,,,,,,,16,4.95,,,11318,4513.5,,,,,, -PowerVR GE8320,,PowerVR Series8XE,400,650,,,,,10,"3.x, 4.x, OpenGL ES 3.0",20,3384,~0.6,11994,,,,,,,,,,,,20,10,6.6,,,,,,,,, -PowerVR GE8300,,PowerVR Series8XE,660,,,,,,10,"3.x, 4.x, OpenGL ES 3.0",20,3384,~0.3,7567,,,,,,,,,,,,14,6.6,4.3,7.51,,,,,,,, -PowerVR GE8100,,PowerVR Series8XE,570,,,,,,10,"3.x, 4.x, OpenGL ES 3.0",20,3384,~0.2,3583.5,,,,,,,,,,,,6,2.7,1.6,,,,,,,,, -ARM Mali-T720 MP4,Midgard (3rd Generation),Midgard (3rd-gen),,600,,,,,11 (FL 9_3),ES 3.1,28,3698,~0.3,6250,,,,,,,,,,,,12,4.2,2.9,,,,,,,,, -ARM Mali-450 MP4,,Utgard,700,,,,,,,ES 2.0,28,4194,~7.7,5253,,,,,,,,,,,,10.05,,,,9924,3612.5,,,,,, -ARM Mali-T830 MP1,,,,,,,,,11 (FL 9_3),ES 3.2,16,2814,~0.3,7456,,,,,,,,,,,,12,5.1,3.2,2.71,,,,,,,, -Intel Graphics Media Accelerator (GMA) 3650,Cedar Trail,PowerVR SGX5,640,,,,,,9.1,,32,4427,~1.4,,,,,,,,,,,422,3207,,,,,,,,,,435,, -NVIDIA GeForce 7190M,,,,,,,shared Memory,,9c,,90,6526,,,,,,,,,,,,,,,,,,,,,,,,, -NVIDIA GeForce 7150M,C67,,425,,,,shared Memory,,9c,,90,6526,~2.6,,,,,,,,,,,315,4501,,,,,,,,,,,, -ATI Radeon Xpress 1150,RS482M,,400,,0,0,shared Memory,0,9b,,110,6406,~2.6,,,,,,,,,,,219,4712.5,,,,,,,,,,,, -NVIDIA GeForce Go 6150,C51MV,,425,,0,0,shared Memory,0,9c,,110,6526,~1.7,,,,,,,,,,,200,4000,,,,,,,,,,867,, -NVIDIA GeForce Go 6100,C51MV,,425,,0,0,shared Memory,0,9c,,110,6526,~2.8,,,,,,,,,,,173,5100,,,,,,,,,,,, -NVIDIA GeForce 7000M,C67,,350,,0,0,shared Memory,0,9c,,90,6526,~2.7,,,,,,,,,,,274,4860,,,,,,,,,,,, -PowerVR SGX543MP3,,PowerVR SGX5,,,,,,,10.1,ES 2.0,40,5387,~0.1,,,,,,,,,,,,,6.75,,,,,,,,,,, -Intel Graphics Media Accelerator (GMA) 3600,Cedar Trail,PowerVR SGX5,400,,,,,,9.1,,32,4427,~1.5,,,,,-1,,,,,,280.5,3514,,,,,,,,,,828,, -ATI Mobility Radeon 9200,M9,,250,,200,128,DDR,64,8.1,,150,7594,~8,,,,,,,,,,,,7670,,,,,,,,,,,, -ATI Mobility FireGL 9000,M9GL,,250,,200,128,DDR,64,8.1,,150,8018,~8.7,,,,,,,,,,,,8400,,,,,,,,,,,, -NVIDIA GeForce FX Go 5200,NV31M,,300,,300,128,DDR,32,9,,150,7594,~7.1,,,,,,,,,,,,6800,,,,,,,,,,,, -ATI Mobility Radeon 9000,M9,,240,,200,128,DDR,128,8.1,,150,7775,~5.8,,,,,,,,,,,,5565,,,,,,,,,,,, -NVIDIA GeForce 4 488 Go,NV17M,,275,,275,32,DDR,64,7,,150,7959,~5.6,,,,,,,,,,,,5400,,,,,,,,,,,, -NVIDIA GeForce 4 460 Go,NV17M,,250,,250,32,DDR,64,7,,150,7959,~5.7,,,,,,,,,,,,5500,,,,,,,,,,,, -NVIDIA GeForce 4 440 Go,NV17M,,220,,220,32,DDR,64,7,,150,7959,~5.2,,,,,,,,,,,,5000,,,,,,,,,,,, -NVIDIA GeForce 4 420 Go,NV17M,,190,,200,32,DDR,64,7,,150,7959,~4.5,,,,,,,,,,,,4300,,,,,,,,,,,, -PowerVR SGX543MP2,,PowerVR SGX5,,,,,,,10.1,ES 2.0,40,5387,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Graphics Media Accelerator (GMA) 3150,Pineview,Gen. 4,200,,,,,,9c,,45,5087,~1,,,,,,,,,,,144,2483.5,,,,,,,,,,287.5,, -Intel Graphics Media Accelerator (GMA) 950,GMA 950,Gen. 3,250,,0,0,,0,9c,,130,6863,~1.2,,,,,,,,,,,107,3009,,,,,,,,,,274,, -PowerVR SGX545,,PowerVR SGX5,533,,,,,,9_3/10.1,3.2,32,5096,~1,,,,,,,,,,,411,3152,2.8,,,,,,,,,428.5,, -PowerVR SGX544MP2,,PowerVR SGX5,300,533,,,,,9_3/10.1,ES 2.0,45,5096,~0.4,6595,,,,,,,,,,,,6.95,,,,,,,,,,, -ARM Mali-T720 MP2,Midgard (3rd Generation),Midgard (3rd-gen),650,,,,,,9.3,ES 3.1,0,3211,~4.4,4680.5,,,,,,,,,,,,9.55,3.6,2.3,,7310,4159,,,,,, -PowerVR SGX544,,PowerVR SGX5,384,,,,,,9_3/10.1,ES 2.0,45,5096,~3.6,2136,,,,,,,,,,,,2.7,,,,4574,1661,,,,,, -Qualcomm Adreno 308,,,,,,,,,9.3,ES 3.0,28,2864,~0.3,5461.5,,,,,,,,,,,,7.6,2.8,,,,,,,,,, -Qualcomm Adreno 306,,,450,,,,,,9.3,ES 3.0,28,4122,~2.8,3838,,,,,,,,,,,,5.3,1.8,,,4014,1880,,,,,, -Qualcomm Adreno 305,,,450,,,,,,9.0c,ES 3.0,28,4122,~2.7,4210,,,,,,,,,,,,5.7,1.7,,,4267,1433.5,,,,,, -Qualcomm Adreno 304,,,400,,,,,,9.0c,ES 3.0,28,3089,~0.2,4053,,,,,,,,,,,,5.2,1.8,,,,,,,,,, -ARM Mali-T720,Midgard (3rd Generation),Midgard (3rd-gen),600,,,,,,9.3,ES 3.1,0,3211,~2.2,2974,,,,,,,,,,,,6,2.2,1.4,,3911,1837,,,,,, -Vivante GC7000UL,,,,,,,,,,ES 3.1,0,3635,~2.3,2591,,,,,,,,,,,,5.4,0.8,,,4078,983,,,,,, -Qualcomm Adreno 302,,,400,,,,,,9.3,ES 3.0,28,3830,~2.2,3592,,,,,,,,,,,,4.35,1.3,,,3442,1316,,,,,, -ATI Mobility Radeon 7500,RV200,,280,,200,64 / 128,DDR,64,7,,150,8144,~4,,,,,,,,,,,,3818.5,,,,,,,,,,,, -ATI Mobility FireGL 7800,,,280,,200,64 / 128,DDR,64,7,,180,6651,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Graphics Media Accelerator (GMA) 900,GMA 900,Gen. 3,400,,0,0,,0,9c,,130,6863,~1.4,,,,,,,,,,,57,4000,,,,,,,,,,149,, -ATI Radeon Xpress 200M,,,350,,0,0,,0,9b,,130,6874,~1.7,,,,,,,,,,,202,4441,,,,,,,,,,194,, -ATI Radeon Xpress 1100,,,300,,,0,shared Memory,,9b,,110,6406,~2.2,,,,,,,,,,,97,4127,,,,,,,,,,,, -SIS Mirage 3+ 672MX,SISM672,,250,,,,,,9,,0,6192,~0.8,,,,,,,,,,,145,1395,,,,,,,,,,,, -SIS Mirage 3 671MX,671MX,,250,,,,,,8.1,,0,6406,~1.1,,,,,,,,,,,68,2061,,,,,,,,,,,, -Qualcomm Adreno 225,,,400,,,,,,,ES 2.0,45,4309,~4.7,4969,,,,,,,,,,,,3.2,,,,6045.5,,,,,,, -Vivante GC4000,,,,,,,,,,ES 2.0,0,3880,~0,,,,,,,,,,,,,4.05,,,,,,,,,,, -ARM Mali-400 MP4,,Utgard,,,,,,,,ES 2.0,0,5674,~5.5,2747,,,,,,,,,,,,4.05,,,,6990,2615.5,,,,,, -NVIDIA GeForce ULP (Tegra 3),Tegra 3,VLIW Vec4,,,,,,,,ES 2.0,40,5096,~4.1,2445,,,,,,,,,,,,3.15,,,,5350,,,,,,, -Broadcom VideoCore-IV,,,,,,,,,,ES 2.0,40,5096,~1.6,,,,,,,,,,,,,2.9,,,,1428,,,,,,, -Qualcomm Adreno 220,,,266,,,,,,,ES 2.0,45,4945,,,,,,,,,,,,,,,,,,,,,,,,, -Vivante GC1000+ Dual-Core,,,600 / 800,,,,,,9_3,2.1 / ES 2.0,0,3746,~0.1,2373,,,,,,,,,,,,2.7,,,,,,,,,,, -ARM Mali-400 MP2,,Utgard,,,,,,,,ES 2.0,0,5674,~3.7,2465,,,,,,,,,,,,4.25,,,,4830.5,1643,,,,,, -ARM Mali-400 MP,,Utgard,,,,,,,,ES 2.0,0,5674,~3.8,2404,,,,,,,,,,,,4.15,,,,4956,1719,,,,,, -NVIDIA GeForce ULP (Tegra 2),Tegra 2,VLIW Vec4,300,400,,,,,,ES 2.0,40,5096,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Graphics Media Accelerator (GMA) 600,GMA 600,PowerVR SGX5,400,,,,,,9.0c,,45,4976,~0.6,,,,,,,,,,,119,1562,,,,,,,,,,107,, -PowerVR SGX540,,PowerVR SGX5,200,,,,,,,ES 2.0,45,5827,~0,,,,,,,,,,,,,1,,,,,,,,,,, -Intel Graphics Media Accelerator (GMA) 500,GMA 500,PowerVR SGX5,200,,,,,,10.1,,130,5522,~0.4,,,,,,,,,,,68,1016,,,,,,,,,,29,, -Qualcomm Adreno 205,,,245,,,,,,,ES 2.0,45,4848,,,,,,,,,,,,,,,,,,,,,,,,, -Qualcomm Adreno 203,,,245,,,,,,,ES 2.0,45,4097,~0.1,2073,,,,,,,,,,,,1.65,,,,,,,,,,, -Vivante GC800,,,315,575,,,,,,ES 2.0,28,4366,,,,,,,,,,,,,,,,,,,,,,,,, -PowerVR SGX535,,PowerVR SGX5,200,,,,,,9.0c,"2.1, ES 2.0",45,5888,,,,,,,,,,,,,,,,,,,,,,,,, -PowerVR SGX531,,PowerVR SGX5,,,,,,,,ES 2.0,0,6284,~0,536,,,,,,,,,,,,0.5,,,,,,,,,,, -PowerVR SGX530,,PowerVR SGX5,,,,,,,,ES 2.0,0,6771,,,,,,,,,,,,,,,,,,,,,,,,, -Qualcomm Adreno 200,,,128,,,,,,,ES 2.0,45,5553,,,,,,,,,,,,,,,,,,,,,,,,, -ARM Mali-200,,Utgard,230,380,,,,,,ES 2.0,65,6150,,,,,,,,,,,,,,,,,,,,,,,,, -NVIDIA GeForce 3 Go,,,250,,,32 / 64 / 128,DDR,64,7,,150,7987,,,,,,,,,,,,,,,,,,,,,,,,, -NVIDIA GeForce 2 Go (200 / 100),NV11,,166,,143,32 / 64,DDR,64,7,,180,8324,~2.6,,,,,,,,,,,,2500,,,,,,,,,,,, -ATI Mobility Radeon 9100 IGP,RS350,,400,,,,,,8.1,,0,7480,~2.8,,,,,,,,,,,,2680,,,,,,,,,,,, -ATI Mobility Radeon 9000 IGP,RC350,,300,,0,0,,,8.1,,0,7533,~7.7,,,,,,,,,,,,7450,,,,,,,,,,,, -ATI Mobility Radeon M7,M7,,230,,183,64,DDR,32,7,,180,8049,~3.6,,,,,,,,,,,,3500,,,,,,,,,,,, -ATI Mobility Radeon M6,M6,,166,,166,32,DDR,16,7,,180,8049,~2.7,,,,,,,,,,,,2570,,,,,,,,,,,, -VIA Chrome9 HC,VN896,,250,,,,onboard,,9,,0,6133,~0.9,,,,,,,,,,,115,2029.5,,,,,,,,,,459,, -Intel Extreme Graphics 2,Montara,Gen. 2,133,,,0,,,8,,150,7317,~2.6,,,,,,,,,,,0,2457,,,,,,,,,,,, -ATI Mobility Radeon 7000 IGP,R100,,,,,0,,,7,,0,7594,~1.7,,,,,,,,,,,,1625,,,,,,,,,,,, -ATI Radeon IGP 340M,,,180,,,0,,,7,,0,7741,~1.3,,,,,,,,,,,,1235,,,,,,,,,,,, -ATI Radeon IGP 320M,,,160,,,0,,,7,,0,7741,~1.6,,,,,,,,,,,,1537,,,,,,,,,,,, -VIA S3G UniChrome Pro II,Zoetrope,,200,,,0,,,7,,0,6284,~1.1,,,,,,,,,,,,1018,,,,,,,,,,,, -VIA S3G UniChrome Pro,Zoetrope,,,,,0,,,7,,0,7106,~2.1,,,,,,,,,,,,2018,,,,,,,,,,,, -VIA Castle Rock,CLE266,,,,,,,,,,0,7653,,,,,,,,,,,,,,,,,,,,,,,,, -SIS Mirage 2 M760,M760,,200,,,,,,8.1,,0,7388,~1.6,,,,,,,,,,,,1514,,,,,,,,,,,, -SIS Mirage M661FX,,,133,,,,,,7,,0,7472,~1.4,,,,,,,,,,,,1300,,,,,,,,,,,, -VIA S3 Graphics ProSavage8,,,121,,,,,,,,0,8383,~0.6,,,,,,,,,,,,600,,,,,,,,,,,, -ATI Mobility 128 M3,M3,,105,,105,64,DDR,8,6,,0,8718,~0.4,,,,,,,,,,,,415,,,,,,,,,,,, -Silicon Motion SM502,,,,,,,,,,,0,6192,,,,,,,,,,,,,,,,,,,,,,,,, -NXP PXP,,,,,,,,,,,0,19706,,,,,,,,,,,,,,,,,,,,,,,,, -unknown,,,,,,,,,,,0,19706,~1.5,,,,,,,,,,,,,74,62,35,35.64,,,,,,,, diff --git a/PCData/data/notebookcheck/all-gpu.html b/PCData/data/notebookcheck/all-gpu.html deleted file mode 100644 index a66dffa..0000000 --- a/PCData/data/notebookcheck/all-gpu.html +++ /dev/null @@ -1,3556 +0,0 @@ - - - - - - - - - - - - - - -Mobile Graphics Cards - Benchmark List - NotebookCheck.net Tech - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- -Notebookcheck Logo - - - -
- -
-
-
-
-
-
-
-
-

Laptop Video Graphics Cards - Benchmark List

The table below can be used to sort through currently available mobile graphics cards by performance or specification. GPUs are ranked by approximate performance. 

-

Also refer to our Comparison of Graphic Cards for more information on the listed cards and the Gaming Performance List for gaming benchmarks.

-
Restrictions

(Manufacturer, Model, Series, Codename), Connect search words with   .

all, none

all, none

Permalink:

-

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
NVIDIA RTX 6000 Ada GenerationAda LovelaceAda Lovelace915250520000384 bit8.94915212 Ultimate (12_2)4.65342
~45.358%
45615
70850
33120
36679
13057
13239
126448
52895
104.6
201
368.73
6836
78676
27475
NVIDIA GeForce RTX 4090AD102-300-A1Ada Lovelace2235252021000384GDDR6X2457612 Ultimate4.65439
~74.671%
771257n15
86225.5n16
249550n16
64680n19
104876n19
52791n17
72901n17
31347n19
36836n19
136909n15
64039n15
3632n7
274.95n16
322n13
6837n13
91703n13
27269.5n14
AMD Radeon RX 7900 XTXNavi 31 XTXRDNA 3227020000384GDDR62456012 Ultimate (12_2)4.65395
~73.258%
738814
87175
250728
53057n2
80793.5n2
51397
66967
26641
29699
147286
66523
264.5
62963
15019
NVIDIA GeForce RTX 4080AD103-300-A1Ada Lovelace2205250522400256GDDR6X1638412 Ultimate4.65439
~67.767%
792455n2
88122n2
229762n2
59621n5
86838n5
44563n3
58893n3
25272n3
27791n3
143194
68851
1810.5n2
267.25n2
158.9n2
62736.5n2
24322n2
NVIDIA GeForce RTX 3090 TiAmpere GA102Ampere1560186021000384GDDR6X2457612_24.68675
~56.954%
564087n2
75753n2
246319n2
49471n2
69481n2
36563n2
53110n2
19241n2
21645n2
201.7n2
204
52258
16046
AMD Radeon RX 7900 XTNavi 31 XTRDNA 3200020000320GDDR62048012 Ultimate (12_2)4.65395
~70.258%
737404
87173
259707
51605.5n2
75896n2
50669
63712
24042
25874
142489
66879
243.3
57570
13489
NVIDIA GeForce RTX 4070 TiAD104-400Ada Lovelace2310261021000192GDDR6X1228812 Ultimate4.65334
~62.963%
815367n4
86974n4
217200n4
56052n5
75612n5
42591n5
53360n5
22481n5
22949n5
135624n2
66971.5n2
104.6
216.75n4
51725.5n4
19289n4
AMD Radeon RX 7900 GRENavi 31RDNA 3224518000256GDDR61638412 Ultimate (12_2)4.65129
~53.371%
637522n2
78905n2
247366n2
45225n2
67134n2
42407.5n2
54609.5n2
19036.5n2
20658.5n2
122732n2
59002.5n2
975.8n2
206.35n2
356.95n2
23018.5n2
47020.5n2
11051n2
AMD Radeon RX 6950 XTNaviNavi / RDNA21925232418000256GDDR61612_24.67572
~62.458%
497297
80012n2
229172n2
48816.5n2
72227.5n2
44594.5n2
59882n2
20574n2
22004n2
119918n2
58458.5n2
224.3n2
45255.5n2
22005.5n2
NVIDIA GeForce RTX 4090 Laptop GPUGN21-X11Ada Lovelace204020000256GDDR61638412 Ultimate4.65334
~49.683%
554375n3
64860n9
142552n9
45723n26
64848.5n26
35217.5n24
46386n25
20085n25
21279n25
113387
64691.5n4
4088
1057
993
1746n7
232
281n27
16004n5
49892n3
19891.5n2
NVIDIA RTX 5000 Ada Generation Laptop GPUAda Lovelace930168020000256GDDR61638412 Ultimate4.64257
~3933%
39552n2
53052.5n2
27801n2
33145n2
15316.5n2
15539.5n2
742.3n2
367.5n2
NVIDIA GeForce RTX 3090Ampere GA102Ampere1400170019500384GDDR6X2457612_24.681142
~55.967%
763636n11
84644n11
231656n11
47869.5n16
61569n16
38748n16
47773.5n16
18551n16
19195n16
121431n9
65732n9
235.7n10
368n15
6829n9
48624.5n8
15017n8
NVIDIA GeForce RTX 3080 TiAmpere GA102Ampere1370166719000384GDDR6X1228812_24.681142
~55.567%
785365n3
81921n3
218185n3
46988n4
60980n4
38628.5n4
47113n4
18903.5n4
19224n4
120236n3
66856n3
233.3n4
326.37n2
6829n2
48398n4
15570n4
AMD Radeon RX 7800 XTNavi 32RDNA 3243019500256GDDR61638412 Ultimate (12_2)4.65112
~57.363%
751750
84676
235488
47729
63292
43396
50181
18518
19369
131792
66993
104.6
191.3
43852
10158
4x NVIDIA RTX A6000AmpereAmpere1410180016000384GDDR64914012_24.681131
~38.267%
440592
41996
92363
29277
38132
24576
27937
11122n2
10167
78808
38668
134.7
204.8
6831
43210
57054
NVIDIA RTX A6000AmpereAmpere1410180016000384GDDR64914012_24.681131
~40.154%
494750
45676
113167
34321
50957
25280
27511
10571
10490
89510
41016
47668
14363
AMD Radeon RX 6900 XTNavi / RDNA21825225016000256GDDR61638412_24.671067
~55.538%
42418
59119
39057
50587
17549
18210
200.8
40857
31400
AMD Radeon RX 7900MNavi 31RDNA 31825209018000256GDDR61638412_24.6545
~45.633%
41670
59943
40123
50241
18114
19434
104.6
369
NVIDIA GeForce RTX 4080 Laptop GPUGN21-X9Ada Lovelace1860228020000192GDDR6X1228812 Ultimate4.65334
~41.763%
61168n8
132657n8
42156.5n16
57598n16
32343.5n14
40687n14
17218n14
17879.5n14
111294
58651.5n2
104.6n7
270n15
24367
38663
14841.5n2
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
NVIDIA RTX 4000 Ada Generation Laptop GPUAda Lovelace16000192GDDR61228812 Ultimate4.65257
NVIDIA GeForce RTX 3080 12 GBAmpere GA102Ampere1260171019000384GDDR6X1228812_24.68691
~53.758%
549644
74457
217116
41410
56634
35922
44533
16961
17956
102294n2
48432n2
203.8
42692
14204
NVIDIA GeForce RTX 3080Ampere GA102Ampere1450171019000320GDDR6X2457612_24.681150
~4958%
529548n2
70338.5n2
188064n2
35564.5n4
53713n4
31709n2
39257n2
16133.5n2
17535.5n2
91746.5n2
43089n2
179n2
40759n2
12888.5n2
NVIDIA GeForce RTX 4070AD104Ada Lovelace1920247521000192GDDR6X1228812 Ultimate4.65234
~55.763%
773592n2
82473.5n2
193559n2
49045.5n2
59969n2
38929n2
43824n2
17905n2
17837n2
128530
69488
104.6
192.6n2
42491n2
14796.5n2
NVIDIA RTX 3500 Ada Generation Laptop GPUAda Lovelace16000192GDDR61228812 Ultimate4.65257
AMD Radeon Pro W6800Navi 21Navi / RDNA22075232016000256GDDR63212_22.17885
~33.967%
440592
41996
92363
30190
44404
24576
27937
11941
12136
82458
41670
164.8
177.7
17302
33935
3260
AMD Radeon RX 6800 XTNavi 21Navi / RDNA21825225016000256GDDR61638412_24.671087
~48.867%
504438
71698
193053
38057
52046
38659
49735
16908
17603
96516
47160
190.6
268.1
20430
38823
28023
NVIDIA GeForce RTX 4070 Laptop GPUGN21-X6Ada Lovelace217516000128GDDR6819212 Ultimate4.65334
~36.383%
603749
63781n17
162423n17
34455n34
41011n34
26013n33
29860n33
12062n33
11955n33
97153.5n2
55349.5n8
2674
990
743
229.5n16
115.05n2
225n33
19835
25731n2
10800
NVIDIA RTX 3000 Ada Generation Laptop GPUAda Lovelace16000128GDDR6819212 Ultimate4.65257
~25.833%
27083
29411
18847
20908
8811
8351
900
288
AMD Radeon RX 6800Navi / RDNA21815210516000256GDDR61638412_24.671087
~53.558%
531548n2
82242n3
205274n3
41784.5n2
55084n2
38167n3
45441n3
16152n3
16191n3
106236n3
56520n3
189n3
33045.5n2
14873.5n2
AMD Radeon RX 7700 XTNavi 32RDNA 31700254418000192GDDR61228812 Ultimate (12_2)4.6077
~52.363%
730434
80883
201871
45241
57340
38758
42801
16454
16777
126733
65983
104.6
160.1
38363
8614
NVIDIA Titan RTXTuring TU102Turing1350177014000384GDDR62457612_14.6121803
~41.267%
534822n28
62483n29
177477n29
34806n29
49595.5n30
27951.5n30
35821n30
14005n30
14936n29
99561n12
51380n13
179n12
173.6n33
6831n24
28670n3
10897.5n2
NVIDIA GeForce RTX 3070 TiAmpere GA104Ampere1575177019000256GDDR6819212_4.68928
~55.858%
822127n3
83142n3
208428n3
44497n3
49760n3
36017n3
37663n3
15243n3
14923n3
120454n2
67407.5n2
194.45n2
34173n2
11104.5n2
NVIDIA GeForce RTX 4060 Ti 16GAD106Ada Lovelace2310253518000128GDDR61638412_24.65176
~4563%
600933
75160
165263
38780
43112
31146
32275
13605
13359
116054
66993
104.6
127.8
32285
11226
NVIDIA GeForce RTX 4060 Ti 8GAD106Ada Lovelace2310253518000128GDDR6819212_24.65199
~48.163%
795061n3
78295n3
176605n3
43231n3
47803n3
32828n3
34245n3
13872n3
13427n3
118567n3
66598n3
104.6n3
130n3
32082n3
11264n3
NVIDIA GeForce RTX 3080 Ti Laptop GPUGN20-E8Ampere975159014000256GDDR61638412_24.68698
~36.371%
648870n8
60593n26
152074n26
33697n45
42275n45
26549n43
31033n43
12267n42
12269n43
94760
56967n3
2363.08
174.3
206n42
17110n3
30717
10333
NVIDIA RTX A5500 Laptop GPUGA103SAmpere16000256GDDR61638412_24.68625
~33.242%
54323
104565
30135n3
35376n3
24046n3
26260n3
9872n3
9568n3
1099
366n3
NVIDIA GeForce RTX 3070Ampere GA104Ampere1500172514000256GDDR6819212_24.681150
~37.167%
502470n3
53317.5n6
154864n6
31876n9
43005n9
25739n7
31020n7
12665n7
12892n7
88744n3
44229n3
157.5n5
213.5n2
6823n2
30100n3
10111n3
AMD Radeon RX 6750 XTNavi 22Navi / RDNA22150260018000192GDDR61227212_24.67617
~43.663%
529598n2
69804n3
170993n3
36702n3
48327n3
32846n3
37609n3
13808n3
13617n3
104004n2
58791n2
104.6
161.3n3
26723n3
4522n2
NVIDIA GeForce RTX 2080 Ti (Desktop)Turing TU102Turing1350154514000352GDDR61126412_14.6121901
~38.467%
521458n4
56080.5n4
165122n4
33327n4
47166n4
26227n4
34316n4
13518.5n4
14370.5n4
83556n3
44825n3
163n3
160.9
6829
28047n3
10178n3
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
AMD Radeon RX 6700 XTNavi 22Navi / RDNA22321258116000192GDDR61227212_24.67968
~4858%
579310n3
76922n3
176617n3
38400n3
45676n3
31834n3
35504n3
12913n3
12514n3
109039n2
64151n3
155.4n3
25057n2
11049.5n2
NVIDIA GeForce RTX 3080 Laptop GPUGN20-E7 GA104Ampere780 - 11001245 - 171014000256GDDR61638412_24.681067
~31.871%
541176n11
49246n34
111181n34
29192n39
38087n39
22706n45
27266n45
10472.5n44
10773.5n44
75159n3
44856n3
245n3
129.2n3
182.3n35
6842n3
23340n5
11251n5
NVIDIA GeForce RTX 3060 TiAmpere GA104Ampere1410166514000256GDDR6819212_24.681074
~35.163%
443119n21
49931n22
120576n22
26587n22
33006.5n22
21869.5n22
24898n22
10556.5n22
10802n22
81097n19
47127n18
779n8
136n22
27790.5n18
9653.5n6
Intel Arc A770DG2-512Alchemist2100240016000256GDDR61638412 Ultimate (12_2)4.66394
~41.563%
628292
69520
139166
35386
41303
30755
32666
14047
13953
103295
58321
104.6
83
23997
10921
NVIDIA GeForce RTX 4060AD107Ada Lovelace1830246017000128GDDR6819212_24.65211
~45.658%
769721
74606
156140
36813
38191
26965
28111
11138
10494
107451
68041
115.3
23841
8991
AMD Radeon RX 7600Navi 331720265518000128GDDR6819212_24.66170
~43.463%
646153
78794
183336
38744
43430
30440
32404
11682
11062
114647
66506
104.6
107.5
25119
5583
AMD Radeon RX 6850M XTNavi 22RDNA 2246318000192GDDR612288124.67710
~39.438%
61794n2
172972n2
30854.5n2
42015.5n2
27931n2
33900.5n2
11649.5n2
11837n2
200.8n2
NVIDIA GeForce RTX 3070 Ti Laptop GPUGN20-E6Ampere915148014000256GDDR6819212_24.68710
~35.363%
581927n5
58464n25
141689n25
30737n36
36969.5n36
24043n37
27776n37
10673n37
10462n37
81895
50062n4
201.5n38
17947n2
22796
8022
NVIDIA RTX A4500 Laptop GPUGA104Ampere930150016000256GDDR61638412_24.68625
NVIDIA RTX A5000 Laptop GPUGA104Ampere1215177014000256GDDR61638412_24.68942
~26.758%
33688.5n2
50153.5n2
28454n2
36163.5n2
22819n3
27271n3
10157n3
10307n3
2032
654
597
291n3
24031
9147
NVIDIA GeForce RTX 4060 Laptop GPUGN21-X4Ada Lovelace237016000128GDDR6819212 Ultimate4.65334
~33.575%
598142n3
60481n21
152642n21
30793n30
35653n30
23393n28
26233n28
10534.5n28
10301.5n28
90275
49745.5n6
2508.2
844.7
663.4
104.6n17
214.51n27
16072
20014
NVIDIA RTX 2000 Ada Generation Laptop GPUAda Lovelace16000128GDDR6819212 Ultimate4.65269
~20.967%
26717n2
28615n2
19082n2
21189.5n2
8331n2
7921.5n2
37844
53707
599.3
304.1
193.4
196.8n2
34.1
259n2
14884
6323
NVIDIA GeForce RTX 2080 Super (Desktop)Turing TU104Turing1650181515500256GDDR6819212_14.6121592
~35.558%
515887n3
50596.5n4
140388n4
26415.5n4
40963n4
23364n4
27398n4
11215.5n4
11450n4
38034.5n2
120.2
198.6
21009
7878
NVIDIA Quadro RTX 6000 (Laptop)TU102Turing1275145514000384GDDR62457612_14.6121528
~324%
11084
AMD Radeon RX 6800MNavi 22RDNA 22116230016000192GDDR612288124.67892
~36.267%
482999n3
58796n3
160859n3
28826.5n2
40390.5n2
26613n4
34199n3
10627n4
11256.5n4
77244
46433.5n2
117.45n2
197.97n2
16581n2
21425
14770
AMD Radeon RX 6650 XTNavi 23Navi / RDNA22055263517500128GDDR6819212 Ultimate (12_2)4.67549
~42.458%
451929n3
75884n3
167944n3
36173n3
41739n3
28042n3
29796n3
10690n3
10104n3
105955n3
64608n3
115.5n3
20499n2
5244.5n2
AMD Radeon RX 6600 XTNavi 23Navi / RDNA21968258916000128GDDR6819212_24.67868
~36.267%
472371
66852
156297
31304
39051
25652
28342
9971
9565
88163
47257
1002n2
110.1
308
19973
7239
NVIDIA GeForce RTX 2080 (Desktop)Turing TU104Turing1515171014000256GDDR6819212_14.6121901
~3558%
436117n3
51449n3
143576n3
29073.5n4
40278n4
20492n3
27620n3
10820n3
11126n3
66631n2
35228n3
121.45n2
20627.5n2
7907n2
NVIDIA GeForce RTX 2080 Super MobileN18E-G3 TU104Turing1365156014000256GDDR6819212_14.6121317
~31.554%
54828n3
141486n3
28467n4
34875.5n4
21377.5n4
24960n4
10465.5n4
10313n4
69838
41873
166n4
17233
8244
NVIDIA GeForce RTX 3070 Laptop GPUGN20-E5 GA104Ampere780 - 11001290 - 162014000256GDDR6819212_24.681075
~32.171%
510435n13
49493n33
136558n33
26152n54
33996n54
21167n54
25477.5n52
9681n54
9619n53
77147.5n2
47262n5
985
126.25n2
175.65n50
6836n3
24877n2
9606
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
NVIDIA RTX A4000 Laptop GPUGA104Ampere780168012000256GDDR6819212_24.68942
AMD Radeon RX 6800SNavi 23RDNA 21800197516000128GDDR68192124.67892
~32.458%
61531.5n2
163510n2
28793n2
36101n2
23465.5n2
26511n2
9220n2
9033n2
82247
51423
190n3
18164
17442
8018
AMD Radeon RX 7600M XTNavi 33RDNA 3230018000128GDDR68192124.66344
~31.863%
418181n3
57801n3
152903n3
27492n3
36365n3
25367n3
28256n3
9803n3
9261n3
95780n2
22993n2
104.6n4
96.5n3
21251n3
6255n3
Intel Arc A750DG2-5122050240016000256GDDR6819212 Ultimate (12_2)4.66417
~39.263%
634482
66624
130715
33184
37288
28476
29667
12671
12386
98837
57748
104.6
76.8
21700
10403
NVIDIA GeForce RTX 3060Ampere GA106Ampere1320177715000192GDDR61228812_24.681032
~31.467%
537787n4
54094n5
120745n5
25149n5
28375n5
19572n5
21379n5
8721n5
8559n5
79706n4
49934n4
106.7n4
246.6
13079n2
20322n5
6845n5
AMD Radeon RX 7700SNavi 33RDNA 3220018000128GDDR68192124.66332
NVIDIA GeForce RTX 3080 Max-QGN20-E7 GA104Ampere78012456000256GDDR61638412_24.681040
AMD Radeon R9 390X2GrenadaGCN10005400512GDDR51638412_02.0282990
Apple M3 Max 40-Core GPULPDDR5-6400545
~37.117%
2941.5n2
1573n2
1178n2
137.38n2
Apple M2 Max 38-Core GPULPDDR5-64005332
~40.317%
3185
1707.7
1294.4
147.5
NVIDIA GeForce RTX 2080 MobileN18E-G3 TU104Turing1380159014000256GDDR6819212_14.6121792
~3063%
458810n4
44306.5n16
139346n16
25504n19
34897n17
20746n16
25436n16
9617n15
9854n15
68525
41995n4
144.85n12
11602.5n4
18239
7527
AMD Radeon RX 6700MR21M-E110-70RDNA 2230016000160GDDR610240124.671188
~29.158%
47472
91672
25735.5n2
33497
23986.5n2
27924n2
9038.5n2
8988.5n2
66973
46372
186
15120
16389
12486
NVIDIA GeForce GTX 1080 Ti (Desktop)GP102Pascal1481160011000352GDDR5X1126412_14.5 / Vulkan162469
~27.679%
394694n4
43370.5n6
142490n6
24935n20
37671.5n20
19615.5n20
27564n20
8684.5n22
9401n22
33610n19
1521n2
475.5n2
480.5n2
1135
114.5n8
160n11
6805.5n14
21948n2
6591.5n2
NVIDIA Titan X PascalGP102Pascal1418153110000384GDDR5X1228812_14.5 / Vulkan162687
~35.667%
496070n6
58418n6
135092n6
30628n6
35995n6
23165n6
27315.5n6
9417n5
9076n5
100948n2
69049n3
139.75n4
121.95n2
6756
21682n2
6920
NVIDIA GeForce RTX 2070 Super (Desktop)Turing TU104Turing1605177014000256GDDR6819212_14.6121615
~33.367%
515887n7
55157n7
129295n7
27896n7
35032n7
22246.5n8
24638.5n8
10038n8
9909n8
89208.5n4
55752.5n4
124.45n4
119.9n3
6820
18089n2
7594
Apple M3 Max 30-Core GPULPDDR5-6400545
NVIDIA Quadro RTX 5000 (Laptop)N19E-Q5Turing1035 / 13501545 / 177014000256GDDR61638412_14.6121651
~32.583%
501167
39398.5n2
117274n2
21068.5n4
24620n5
18943n2
23034.5n2
9012.5n2
9332n2
45180
1960
626
602
1195
302.1
125.5
209.5n4
19419
19614
7688
AMD Radeon VIIVegaVega1400175010004096HBM21636812_14.671789
~3458%
430170n2
55711.5n2
146094n2
26565
37881
22240.5n2
27448.5n2
8985n2
8779.5n2
62128
35659
108.5
22798
6869
AMD Radeon RX 5700 XT (Desktop)Navi 10Navi / RDNA1605190514000256GDDR68192124.671636
~3375%
499658n6
56435.5n6
146093n6
28361.5n6
35822.5n6
22800n7
26189n7
9114n7
8876n7
83960.5n4
46586n5
1659
915
111.8n4
163.9
21190
19229n2
5419n2
NVIDIA GeForce RTX 2070 (Desktop)Turing TU106Turing1410162014000256GDDR6819212_14.6121924
~28.567%
425550n5
49226n6
127652n6
24241n7
31260n7
18678.5n6
23186n6
9214.5n6
9300n6
63155n3
34492n3
112.95n4
172.5
6811
17592n3
7293n3
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
AMD Radeon RX 7600MNavi 33RDNA 3207016000128GDDR68192124.66344
NVIDIA GeForce RTX 3070 Max-QGN20-E5 GA104Ampere1290256GDDR6819212_24.681063
Apple M2 Max 30-Core GPULPDDR5-64005332
~8.54%
145.7
NVIDIA GeForce RTX 3060 Laptop GPUGN20-E3 GA106Ampere817170214000192GDDR6614412_24.681075
~30.258%
466087n6
45661n39
104826n38
23069n44
27419n43
18748.5n50
20609n49
8322n50
8222n49
57333
47118n4
97.4
187n44
14081n3
Apple M1 Max 32-Core GPU1296512LPDDR5-640051118
~28.717%
2251.8n2
1227.24n2
920.95n2
94.35n2
AMD Radeon RX 7600SNavi 33RDNA 3186516000128GDDR68192124.66344
~33.354%
61238n3
155806n3
28571n4
34217.5n4
23167n3
25900n3
9372n3
9203n3
79339
51164n2
209n3
15192
17320
NVIDIA GeForce RTX 2070 Super MobileN18E-G2RTuring1140138014002256GDDR6819212_14.6121340
~31.354%
481195n3
46745n7
126287n7
24028.5n8
29092.5n8
18919.5n12
22016n12
8315.5n12
8272n12
70601
43041
142.1n9
15586
NVIDIA GeForce GTX 1080 (Desktop)Pascal GP104Pascal1607173310000256GDDR5X819212_14.5162767
~32.775%
421474n4
31475n5
119971n5
21289.5n6
29263n6
16623n6
21408.5n6
6902n5
7185n5
53598
37251
94578
269
108.35n2
121.8n3
6496.5n2
16548.5n4
4791n3
NVIDIA GeForce RTX 2080 Super Max-QN18E-G3Turing975123011000256GDDR6819212_14.6121340
~28.858%
468363n3
44534n7
127741n7
24119n10
29636.5n10
18578.5n10
21902.5n10
8075n11
8331n11
60306
38265
142n9
13620
16221
NVIDIA RTX A3000 Laptop GPUGA104Ampere1080156014000192GDDR61228812_24.68965
~21.263%
24449
29996
23888n3
25990n3
18097n3
19710n3
7703n3
7320n3
71308
1777
680
500
290n3
18652
6178
Apple M1 Max 24-Core GPU1296LPDDR5-640051118
~25.917%
2027
1153
686
94
NVIDIA GeForce RTX 2060 Super (Desktop)Turing TU106Turing1470165014000256GDDR6819212_14.6121615
~34.558%
487878n7
53006n7
119831n7
25594n6
29636.5n6
20086n7
21970n7
9034n7
8673n7
83630.5n4
56641n4
112n4
15762.5n2
6995n2
Intel Arc A770MAlchemistXe HPG165016000256GDDR61638412_24.66625
~31.463%
53345
124487
29170
37375
22178.5n2
25563n2
10997
10783
77403
48471
75.2
216.53
18594
20027
10975
AMD Radeon RX 6600Navi 23Navi / RDNA22044249114500128GDDR6819212_24.67793
~37.858%
545762n3
69998n3
145870n3
28640.5n2
31774n2
21964n3
23366n3
8688n3
8092n3
94734n3
63840n3
94.5n2
16965n2
5492.5n2
AMD Radeon RX 6650M XTRDNA 2216218000128GDDR68192124.67710
Apple M3 Pro 18-Core GPULPDDR5-6400545
~26.913%
1480
936
670
Apple M2 Pro 19-Core GPU4441398LPDDR5-64005332
~26.517%
1969.6n2
1131.2n2
748.2n2
140.91
AMD Radeon RX 5700 (Desktop)Navi 10Navi / RDNA1465172514000256GDDR68192124.671636
~36.458%
489113n5
60179n5
132911n5
27649.5n4
31470n4
21701n5
23746n5
8478n5
8051n5
91992.5n2
65695n3
102.2n3
16453n2
4650n2
AMD Radeon RX 6650MRDNA 2222218000128GDDR68192124.67710
~27.429%
26153
32846
22516
25739
8869
8700
175.8
AMD Radeon RX 6600MR21M-E65-70RDNA 22068217714000128GDDR68192124.671188
~28.871%
479404n5
54130.5n6
144612n6
25585n6
31868n6
20855n6
23525n7
8094n6
7840n7
72685.5n4
45858.5n4
217
93.1n4
179.6n10
14717n4
16123n3
5564
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
AMD Radeon RX 6700SRDNA 21700189014000128GDDR610240124.67710
~29.758%
59135
153853
26867
32662
21375
24135
8547
8316
75332
48289
207
17573
15945
2530
NVIDIA GeForce RTX 2070 MobileN18E-G2 TU106Turing1215144014000256GDDR6819212_14.6121792
~26.463%
444708n4
39206.5n18
123004n18
20935n21
26005n21
17762n21
20392n19
7499n18
7738n18
64151
42409.5n4
133n18
13457n3
14446
6570
NVIDIA Quadro RTX 5000 Max-QN19E-Q5 MAX-QTuring600 - 9301350 - 145514000256GDDR61638412_14.6121651
~25.983%
433183n3
32096n7
64768n7
20890n9
26465n9
16600.5n10
19790n10
7282.5n10
7396n10
53221n2
40509.5n2
1334.5n2
522n2
466.7n2
236.6
94.6
210n9
6819n3
14178.5n2
4983n2
NVIDIA GeForce RTX 2080 Max-QN18E-G3-A1 MAX-Q TU104Turing735-9901095-123012000256GDDR6819212_14.6121792
~24.863%
425550n5
34287n17
117764n17
21067n20
27973n20
17504n21
20703n19
7484n19
7923n19
51930
37613n5
119.7n16
8197.5n4
14673
5110
NVIDIA GeForce RTX 2060 (Desktop)Turing TU106Turing1320162014000192GDDR6614412_14.6121792
~28.158%
424149
44523
107083
22982n2
27162.5n2
16267
19338
7878
7732
60454
33727
91.2
14375
5655
AMD Radeon RX 5700MNavi 10 / R19M-E120Navi / RDNA1465172012000256GDDR68192124.671372
AMD Radeon RX Vega 64VegaVega16309452048HBM2819212_14.6142302
~2858%
392304n16
44176n16
127374n16
22898n14
30823.5n14
18368n16
22501n16
7334n16
7109n16
55262n11
36216n13
79.2n7
135.25n14
14194n10
NVIDIA GeForce GTX 1080 MobileN17E-G3Pascal1566173310000256GDDR5X819212_14.5162665
~27.671%
409018n8
32845n24
126690n24
20498.5n26
28526.5n26
17223n24
21394n24
6584.5n8
6917n8
48874n2
34697.5n6
225.2
95.9
122.7n13
9778.5n10
16459n8
4525n2
NVIDIA Quadro RTX 4000 (Laptop)N19E-Q3Turing1110156014000256GDDR6819212_14.6121651
~22.475%
445161
38830
119052
21595n2
25370.5n2
16903n2
18849n2
7362n2
7284n2
56250
1213
490.4
440.5
89.9
215.5n2
6824
13576
5927
NVIDIA GeForce RTX 3060 Max-QGN20-E3 GA106Ampere1283192GDDR6619212_24.681063
Apple M3 Pro 14-Core GPULPDDR5-6400545
~19.417%
1299
818
565
129.85
Apple M2 Pro 16-Core GPULPDDR5-64005332
~2417%
1815
1011
659
141.9
Apple M1 Pro 16-Core GPU1296LPDDR5-640051118
~2017%
1561
869
544
85.5
AMD Radeon PRO W6600MRDNA 214000128GDDR68192124.67908
NVIDIA GeForce RTX 2070 Super Max-QN18E-G2RTuring930115511000256GDDR6819212_14.6121340
~28.558%
461648n2
47119n7
126747n7
23755.5n10
27724n10
18395n10
20872.5n10
7611.5n10
7373.5n10
65101
43406
138n9
6835
14015
NVIDIA Quadro RTX 4000 Max-QN19E-Q3 MAX-QTuring780 - 9601380 - 148514000256GDDR6819212_14.6121651
~19.838%
23809
35167
19888n2
23574n2
15010
17049
6724
6764
210.5n2
NVIDIA GeForce GTX 1070 Ti (Desktop)Pascal GP104Pascal160716838000256GDDR5819212_14.5162222
~26.350%
442105
29364
88161
20106
27503
15061
18405
6177
6531
36475
15488
5159
Apple M1 Pro 14-Core GPU1296LPDDR5-640051118
~18.817%
1457
817
496
91.8
NVIDIA GeForce RTX 2070 Max-QN18E-G2 MAX-Q TU106Turing885-10801185-130512000256GDDR6819212_14.6121792
~22.863%
413114n10
36551.5n28
106564n28
18964n31
22089n31
15494n33
17335n31
6571n28
6661n28
48510
35284n6
119.95n26
8082.5n4
12103
5235
AMD Radeon RX Vega 56VegaVega11381474800409.6HBM2819212_14.6142302
~28.458%
412820
47018
125359
22937
29086
17098
20759
6746
6482
54586
36286
76.4
17030
5459
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
AMD Radeon RX 6600SRDNA 2188116000128GDDR68192124.67710
NVIDIA Quadro P5200Pascal131615697216256GDDR51638412_14.5162517
~24.158%
43443.5n2
106328n2
21715n2
25100n2
16625.5n2
18467n2
6646.5n2
6422n2
65844
44390
234.3n2
6833n2
15892
5183
NVIDIA Quadro RTX 3000 (Laptop)N19E-Q1Turing945138014000192GDDR6614412_14.6121651
~18.875%
36407n3
91394n3
17864n4
19878.5n4
13570n3
14841.5n2
5923n3
5589n3
50309
37304
1010
407.8
384.8
58.3
204n4
6821
8716
5769
NVIDIA GeForce RTX 2060 MobileN18E-G1 TU106Turing960120014000192GDDR6614412_14.6121792
~22.763%
411721n12
36017.5n36
99178.5n36
18110n40
21261.5n40
14690n43
16331n43
6192n41
6141n41
57644
38509n5
120.4n40
9210n4
12241n3
5054
NVIDIA GeForce RTX 3050Ampere GA106Ampere155217771750128 BitGDDR6819212_24.68710
~30.658%
580370n2
56411n2
90224n2
21937.5n2
21357.5n2
14733.5n2
15684.5n2
6725.5n2
6150n2
77233.5n2
56504n2
73.5n2
15273.5n2
4730n2
NVIDIA GeForce GTX 1070 (Desktop)Pascal GP104Pascal150616838000256GDDR5819212_14.5162767
~23.467%
463865
30229.5n4
106934n4
19449n5
24652n5
14984n5
18255n5
5679n3
5896n3
50995n3
37799.5n4
92.6n3
136
6835
13488.5n2
4444.5n2
AMD Radeon RX 5600 XT (Desktop)1235175012000192GDDR66144124.671412
~35.858%
548796n4
60317n4
115838n4
29969n3
31310n3
20153n5
22058n4
8257.5n4
7710.5n4
86004n3
65379n3
91.85n2
15852.5n2
4325.5n2
NVIDIA Quadro RTX 3000 Max-QN19E-Q1 MAX-QTuring600 - 8701215 - 138014000192GDDR6614412_14.6121651
~16.554%
33281.5n2
66284n2
16577n3
17523n3
12642n3
13617n3
5357n3
5048n3
68
202n3
6821
10064
4392
NVIDIA GeForce GTX 1080 Max-QN17E-G3 Max-QPascal1101 - 12901278 - 146810000256GDDR5X819212_14.5162378
~25.188%
387951
28375n3
114542n3
16910.5n6
23540n5
14273.5n6
18191.5n6
5591.5n2
5868.5n2
39562
31555
69346
1365
432.5n2
414
197
84.8
111.15n2
9138n2
13756n2
4618
AMD Radeon Pro Vega 56VegaVega12477862048HBM2819212_1142180
~21.642%
20785
25589
15302
17797
5831
5465
35787
69.8
129.1
3851
NVIDIA GeForce GTX 1070 MobileN17E-G2Pascal144316458000256GDDR5819212_14.5162649
~20.171%
338057n17
27920n51
101041n51
16939.5n58
22575.5n58
13797.5n56
17236.5n56
5268n21
5485n21
34389
31045n15
298.5
82.5n2
112.3n37
7504n20
12369.5n10
4097n5
NVIDIA GeForce RTX 2060 Max-QN18E-G1 MAX-Q TU106Turing975118511000192GDDR6614412_14.6121792
~19.971%
308872
30659.5n4
58890n4
18065n4
19778.5n4
13716n4
14909.5n4
5844.5n4
5638.5n4
50957
37332
1123
497.9
411.3
137n4
11800
5786
NVIDIA Quadro P4200Pascal121514807132256GDDR5819212_14.5162036
~224%
12485n2
NVIDIA GeForce GTX 1660 Ti (Desktop)Turing TU116Turing1500177012000192GDDR6614412_14.6121745
~27.558%
483604n3
48568n3
93095n3
21539n2
22891.5n2
15021n3
16024n3
6759n3
6303n3
61217n2
41952n2
78.75n2
11915.5n2
4457.5n2
NVIDIA GeForce GTX 1660 Super (Desktop)Turing TU116Turing1530178514000192GDDR6614412_14.6121496
~30.858%
477037n3
56556n4
93241n4
22583n3
21982n3
15164n4
15828.5n4
6545.5n4
5975n4
76654n3
68377n3
77.7n3
11098
4490
AMD Radeon RX 6500 XTNavi / RDNA2231018000GDDR6412_24.47695
~28.658%
356129n3
58994n3
91909n3
22899n3
22954n3
14222n3
15712n3
5536n3
4967n3
76445n3
64521n3
54.7n2
13400n2
3089n2
AMD Radeon RX 5500 XT (Desktop)Navi 14 XTX160718451750128GDDR68192124.671452
~27.163%
560812n3
57069n3
86609n3
19887n3
19499n3
13146n3
14305n3
5518n3
4941n3
68429n3
63326n3
63.6
61n3
10697n2
3420n2
NVIDIA GeForce RTX 4050 Laptop GPUGN21-X2Ada Lovelace23701600096GDDR6614412 Ultimate4.65334
~29.679%
552112n2
52615n21
139468n21
27315n29
30910n30
19925n28
22597.5n28
8647.5n28
8429.5n28
85660
50886n7
2143.4
801
592
238n15
205n30
16035n3
16302
8036
NVIDIA RTX A2000 Laptop GPUGA107Ampere893168714000128GDDR6819212_24.68965
~19.958%
40815n7
60336n7
17348n8
18058n9
12211n9
13157n9
5523n9
5016n9
63738
36019
311n8
6839
13585
4554
Intel Arc A730MAlchemistXe HPG110014000192GDDR61228812_24.66625
~26.271%
467230
45257n4
83396n4
24285.5n4
29144n4
18213.5n4
21294n4
8919.5n4
8813n4
63380n2
44798n2
104.6
61
196.37n3
16778.5n2
14038.5n2
9344
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
AMD Radeon Pro 5600MNavi 10Navi / RDNA12652048HBM28192124.671266
AMD Radeon RX 5600MNavi 10Navi / RDNA126512000192GDDR66144124.671426
~19.358%
36805
72335
20663.5n2
24213n2
15729n2
17652.5n2
6610n3
5933.5n2
18582
38139
122.7n2
12922
2921
1082
NVIDIA Quadro P5000N17E-Q5Pascal116415066006256GDDR51638412_14.5162517
~19.179%
401246
28999n3
86679n3
16450n3
20096n3
12363n3
14666n3
4836n2
3882.5n2
44689
33236
1192
448.1
377.6
74.35n2
138.4n3
6830
11544n2
4323n3
NVIDIA GeForce GTX 1660 Ti MobileN18E-G0Turing1455159012000192GDDR6614412_14.6121685
~21.663%
419800n6
35118.5n18
97517n18
17351n23
20118.5n24
13140n23
14818n24
5697n21
5659n22
49309
38153.5n4
120.55n18
8212n5
10148
4827
NVIDIA GeForce RTX 3050 Ti Laptop GPUGN20-P1Ampere1222148512000128GDDR6409612_24.68937
~22.663%
422757n3
39980n23
72925n23
16439n27
18057n27
11894n27
13359.5n26
5341n26
5170n27
45370
1053
454
336
166n27
13438.5n2
NVIDIA GeForce RTX 3050 6GB Laptop GPUGN20-P0-R 6GBAmpere123714921200096GDDR6614412_24.68343
~13.833%
17223
18059
11330
12618
5182
4820
104.6
117.6
Intel Arc A570MAlchemistXe HPG900130014000128GDDR6819212_24.66137
NVIDIA RTX A1000 Laptop GPUGA107Ampere14000128GDDR6409612_24.68625
~18.538%
40266
70880
15198
14402
10123
10914
4558
4101
294
NVIDIA GeForce GTX 980 TiGM200Maxwell100012007000256GDDR5614412_14.5283106
~22.771%
443119
29684
98958
18303
23057
14339
16961
5026
5058
48631
37454
1131
481
254
91.1
12373
3919
NVIDIA GeForce GTX 1660 (Desktop)Turing TU116Turing153017858000192GDDR5614412_14.6121725
~2958%
524782n4
51727.5n4
80889n4
21492n3
21131n3
12883.5n4
14055n4
6013.5n4
5461.5n4
71229n3
65295n3
64.2n3
10237
4070
NVIDIA GeForce GTX 1070 Max-QN17E-G2 Max-QPascal1101 - 12151265 - 13798000256GDDR5819212_14.5162378
~19.667%
334256n7
28582.5n16
99551.5n16
15409n20
18688n18
12598.5n16
14678.5n16
4616n5
4708n5
44090
30648.5n4
459
102.1n11
10777n8
10917n5
4937.5n2
Intel Arc A550MAlchemistXe HPG900200514000128GDDR6819212_24.66625
~18.217%
12900
14350
6320
5830
NVIDIA GeForce GTX 1650 Super (Desktop)Turing153014000192GDDR6409612_14.6121496
~2858%
657142n3
50706n3
68578n3
18949n3
18218n3
11544n3
12225n3
5184n3
4633n3
64463n3
64150n3
54.1n3
9521n2
2993.5n2
NVIDIA Quadro P5000 Max-QN17E-Q5 Max-QPascal110113666006256GDDR51638412_14.5162517
AMD Radeon R9 FuryFijiGCN 1.210005004096HBM409612 (FL 12_0)4.3283092
~18.467%
27379
80439
14860
17543
23381
14580
4720
4712
42039
36041
794
175
197
73.5
11890
3125
AMD Radeon R9 NanoFijiGCN 1.210005004096HBM409612 (FL 12_0)4.3283006
~20.563%
402499
28370
81374
14793
17282
12081
14362
4556
4511
43546
37348
800
211
243
71.7
NVIDIA GeForce GTX 980GM204Maxwell112612163500256GDDR5409612_14.5283362
~18.950%
323076
21638.5n2
85374n2
14169n4
17604.5n4
10397.5n6
12938n6
37997
129.65n2
109.6
6831
9554
NVIDIA GeForce RTX 3050 4GB Laptop GPUGN20-P0Ampere1238150012000128GDDR6409612_24.68948
~19.467%
480364n2
34692n17
65911n17
15134n21
15712n21
10953n19
12125n19
4877n19
4500n20
43216
39512n2
147
140.8n18
11506
10499
4713
Intel Arc A530MAlchemistXe HPG900130014000128GDDR6819212_24.66138
NVIDIA GeForce GTX 1660 Ti Max-QN18E-G0Turing1140133512000192GDDR6614412_14.6121685
~16.675%
306910n3
33027n7
63086n7
15913n7
17439n8
11615n7
13355n7
5072n7
5084.5n8
31845
25211n4
943
360.6
345.8
96.9n7
8562.5n4
10027
4254
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
NVIDIA RTX A500 Laptop GPUGA107Ampere1400064GDDR6409612_24.68625
AMD Radeon RX 6550MRDNA 2200025601800064GDDR6409612_24.66344
~15.233%
19932
20506
12994
14696
4955
4546
104.6
134.8
AMD Radeon RX 6500MRDNA 221911800064GDDR6409612_24.66711
~2358%
92553
92553
17548
16290
12287
13980
4795
4434
51599
35958
181
13701
8384
1717
AMD Radeon RX 6550SRDNA 221701600064GDDR6409612_24.66344
AMD Radeon RX 590 (Desktop)Polaris 30Polaris146915458000256GDDR5819212121844
~24.258%
397712n2
44213n2
86825n2
20421.5n2
23362.5n2
14430.5n2
16813.5n2
5271n2
4871.5n2
48454
35704
57.3
11791
4084
AMD Radeon RX 580 (Desktop)Polaris 20 EllesmerePolaris125713408000256GDDR5819212142420
~21.258%
348952n2
37518n2
82516n2
17155.5n2
19274n2
11985.5n2
13926.5n2
4330n4
3996n4
44344n4
33148
55.95n2
10210
3612
NVIDIA GeForce GTX 980 (Laptop)N16E-GXXMaxwell112612283500256GDDR5409612_14.5283359
~19.158%
347481n3
27629n7
76705n7
14925n8
17200.5n8
11096n8
13047n8
39702n2
32943n3
384.9n2
117.25n6
8278.5n6
9468n5
3098n5
NVIDIA Quadro M5500Maxwell113911406606256GDDR5819212_14.5282799
~13.18%
14413
106.7
AMD Radeon R9 390XGrenada XTGCN10506000512GDDR5819212 (FL 12_0)4.4283092
~16.663%
318024
24518
74351
14327
17944
10431
12389
35807
33005
730
156.1
190.2
130.9
9800
3179
NVIDIA GeForce GTX 1060 (Desktop)GP106Pascal150617088000192GDDR5612_14.5162693
~22.671%
437988n2
30538n3
77035n3
15802n3
17401n3
11090n3
12984n3
4631n2
4194n2
55892.5n2
66588
446.4
62.35n2
148.7
6819
9266n3
3408n3
AMD Radeon RX 570 (Desktop)Polaris 20 EllesmerePolaris116812447000256GDDR58192124.6142420
~21.358%
375145
39171
71096
17450
18967
11956
13827
4310
3958
45560
35319
49.1
9194
3282
NVIDIA Quadro P4000N17E-Q3Pascal120212286006256GDDR51638412_14.5162517
~15.475%
369407
18726
53834
12346
15433
10158
12259
3825
3960
36260
29155
1114
408.4
318
107.2
6831
8609
3564
NVIDIA Quadro T2000 (Laptop)N19P-Q3Turing157517858000128GDDR5409612_14.6121651
~1413%
13271n2
13523.5n2
203
AMD Radeon RX 480 (Desktop)Polaris 10 EllesmerePolaris112012668000256GDDR5819212Vulkan142713
~18.779%
383333
27843
72213
15476
17919
10329
12186
4001
3882
39552
36954
777
198
227
132
52.3
166
9659
3468
NVIDIA GeForce GTX 1060 MobileN17E-G1Pascal140416708000192GDDR5614412_14.5162663
~16.267%
298378n28
24326.5n68
74604.5n68
12449n78
14693n77
9739n77
11558n77
3618n20
3580.5n20
34127n2
26152n10
81.7
102.1n51
6838n30
8538.5n20
3426.5n2
NVIDIA GeForce GTX 1650 Ti MobileN18P-G62Turing1350148512000128GDDR6409612_14.6121340
~18.663%
410191n3
28177n7
65163n7
13072.5n8
13266n8
9222n9
9930n9
3851n9
3618n9
43517
39720
126.65n8
6831.5n2
7120
10574
Intel Arc A370MAlchemistXe HPG15501400064GDDR6409612_24.66625
~13.338%
28128n3
35604n3
12520.5n4
12089.5n4
7717n3
8149n3
4255n3
3885n3
129.1n3
AMD Radeon RX 5500MNavi 14 / R19M-E85Navi / RDNA1327164514000128GDDR64096124.671526
~15.858%
210925n2
28923.5n4
50946n5
13344n7
16476n8
10568n6
12276n6
4174n5
4298n5
25762.5n2
103n5
8386
9581
3411n2
AMD Radeon Pro 5500MNavi 14Navi / RDNA130012000128GDDR68192124.671481
~20.846%
364184
30690
65776
14097
14725
9196
10399
3629
3364
34321
169.3n2
NVIDIA Quadro P4000 Max-QN17E-Q3 Max-QPascal111312406006256GDDR51638412_14.5162517
~18.150%
297918
25528
74933
13482
15837
10473
12312
28211
105
12498
8605
4369
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
NVIDIA Quadro P3200N18E-Q1Pascal708 - 120212287008192GDDR5608412_14.5162470
~19.167%
419543
34178n5
82506.5n4
15085.5n4
16619n4
11058n5
12554.5n4
4508.5n4
4356n3
45999n2
29206.5n2
59.9n3
172n5
6819n3
8791n3
4192n5
AMD Radeon RX 580X (Laptop)PolarisPolaris13408000256GDDR5819212_0141788
AMD Radeon RX 580 (Laptop)PolarisPolaris100010778000256GDDR5819212_04.6142420
~15.863%
290090
30938.5n2
69324.5n2
12973n2
15223n2
9754n2
11261n2
3707n2
3505n2
28909
120.4
107.75n2
10620.5n2
8688
894
AMD Radeon RX 6450MRDNA 2200022201800064GDDR6409612_24.66344
NVIDIA GeForce GTX 780 TiGK110Kepler8759283500384GDDR5307212 (FL 11_0)4.4283678
~20.933%
24263
75688
13151
15619
9974
11812
38813
143.4
AMD Radeon RX Vega MobileVega MobileVega2048HBM2409612_1142156
NVIDIA GeForce RTX 2050 MobileGN20-S7Ampere14771400064GDDR6409612_14.68728
~15.167%
25879n7
58068n7
11734n7
12195n7
7746n7
8815n7
3417.5n8
3186n7
46821n2
39263n2
950
443.2
157.7n7
6856
9236.5n2
2690
NVIDIA GeForce MX570GN20-S5Ampere14771200064GDDR6204812_14.68728
~108%
3625
3610n2
AMD Radeon RX 6300MRDNA 2151218000128GDDR6204812_24.66710
NVIDIA GeForce GTX 1650 (Desktop)Turing148516658000128GDDR5409612_14.6121685
~18.463%
373333n3
35325n3
50549n3
13894n2
13645n2
8795n3
9203n3
3879n3
3512n3
44694n2
39545.5n2
44.35n2
174.5
7085n2
2579.5n2
NVIDIA GeForce GTX 1650 MobileN18P-G0, N18P-G61Turing1380156012000128GDDR5, GDDR6409612_14.6121685
~15.783%
364872n11
25707n21
57365n21
11788n29
13131.5n30
8081n31
9313n32
3595.5n30
3488n31
31310.5n2
34484.5n6
775
331
272.9
100.6
40.4
103.55n26
6821n7
6931n2
2872.5n2
AMD Radeon Pro 5300MNavi 14Navi / RDNA125012000128GDDR64096124.671481
AMD Radeon RX 5300MNavi 14 / E19M-E65Navi / RDNA103614451400096GDDR63072124.671526
~16.154%
32417
55837
12818.5n4
14351n4
9093n4
10306n3
3866.5n2
3566.5n2
39264
36032
111
7843
3395
NVIDIA Quadro P3000N17E-Q1Pascal108812157008192GDDR51638412_14.5162517
~14.279%
331998n2
24681n2
63331.5n2
11229n3
12105n3
8155.5n2
9255.5n2
2999
2864
33390
29440
712
328.6
249.9
50.9
113.4n3
6835n3
6556n2
3351.5n2
NVIDIA GeForce GTX 970GM204Maxwell105011783500224 + 32GDDR5409612_14.5283362
~17.875%
422295
25575n2
72819n2
13249n3
16033n3
9434n3
11954n3
3693
3544
42263
37107
823
396
297
59.1
141.6
8549
3020
NVIDIA GeForce GTX 1060 Max-QN17P-G1 Max-QPascal1063 - 12651341 - 14808000192GDDR5612_14.5162378
~17.263%
367999n5
24154.5n10
74101n10
11973n10
13333.5n10
9148.5n10
10430n10
3415n2
3324n2
34189
398
110.55n10
6829.5n6
7653n5
2924
NVIDIA Quadro P3000 Max-QN17E-Q1 Max-QPascal107512407008192GDDR51638412_14.5162284
NVIDIA GeForce GTX 1650 Ti Max-QN18P-G62 Max-QTuring1035120010000128GDDR6409612_14.6121340
~16.958%
421834
22895n7
47657n7
11398n9
11538n9
7700n12
8564n11
3235.5n10
3098n9
31116
30266
140n9
6297
10809
NVIDIA Quadro T2000 Max-QN19P-Q3 MAX-QTuring930 / 12001500 / 16208000128GDDR5409612_14.6121651
~12.775%
75193
24991.5n2
41106n2
11907n2
11461n2
7543.5n2
8261.5n2
3352n2
3094n2
39269
36376
622
255.2
234.9
220n2
5840
6331
3050
AMD Radeon RX 480 (Laptop)PolarisPolaris256GDDR512142680
~8.68%
7200
4070
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
AMD Radeon Pro WX 7100Polaris 12Polaris12437000256GDDR5819212Vulkan142468
AMD Radeon RX 470 (Desktop)Polaris 10 ProPolaris92612066600256GDDR5819212Vulkan142677
~16.750%
380689
21727n2
68475n2
13831.5n2
17624.5n2
9507n2
11884.5n2
3756
3624
47.3n2
9044
3020
AMD Radeon RX 570X (Laptop)Polaris Polaris11687000256GDDR5819212Vulkan141788
AMD Radeon RX 570 (Laptop)Polaris 10 ProPolaris92612067000256GDDR5819212Vulkan142523
AMD Radeon RX 470 (Laptop)Polaris 10 ProPolaris92612067000256GDDR5819212Vulkan142677
~148%
8961
10715
NVIDIA GeForce GTX 1650 Max-QN18P-G0 / N18P-G61Turing102012458000128GDDR5, GDDR6409612_14.6121685
~14.363%
373879n4
20883n12
45243.5n12
10471n13
11082.5n14
7004.5n12
7779n12
3070n8
3016n10
30957
32040.5n2
108.05n12
5967.5n2
5833
3068
NVIDIA T1200 Laptop GPUTuring855142510000128GDDR6409612_14.612965
~16.554%
29050n2
50827n2
13779n3
14387n3
9255n3
10134n3
3891n3
3595n3
44135
38139
216.77n3
7416
2370
NVIDIA Quadro T1000 (Laptop)N19P-Q1Turing139514558000128GDDR5409612_14.6121651
~15.883%
375510
25273n2
53628.5n2
11592n3
11377n3
7783n3
8727n3
3474n3
3261n3
31509
35033.5n2
659.5n2
315.3n2
243.6n2
110.3
39.3n2
185.7n3
6818
5965.5n2
2768n2
NVIDIA Quadro T1000 Max-QN19P-Q1Turing795 / 123014558000128GDDR5409612_14.6121651
Intel Arc 8-Cores iGPUMeteor Lake iGPUXe LPG230012_24.652
~11.963%
32084n2
44146n2
12973n2
12693n2
8211n3
8971n3
3693n3
3305n5
43185
817.4
296.5n2
151n3
17440
7627
2611
Intel Arc A350MAlchemistXe HPG11501400064GDDR6409612_24.66625
~11.971%
25146.5n2
36314.5n2
10766n2
10730n2
6009n3
7147n3
3397n3
3050n3
31023
31625
640
309
194
19.5
149.27n2
4447
2796
Intel Arc 7-Cores iGPUMeteor Lake iGPUXe LPG220012_24.652
NVIDIA T600 Laptop GPUTuring140010000128GDDR6409612_14.612977
~15.458%
35278
53941
10973
10498
7475
7928
3075
2766
39112
43438
585.11
268
5694
2200
NVIDIA T550 Laptop GPUTU117Turing106516651200064GDDR5, GDDR6409612_14.612567
~10.563%
17614n2
33218.5n2
8160n2
8066.5n2
4581n3
4890n3
2066n3
1928n3
25155
31003
449.9
229.9
172.6
189.2n3
5190
AMD Radeon R9 290XHawaii XTGCN10005000512GDDR5409612 (FL 12_0)4.3283704
~17.483%
332042n4
22197n3
73987n3
13415n4
16167.5n4
9835n4
11717n4
4114
4003
37284n4
32271n4
909n2
220n2
242
140
64.2
142n3
14449.5n2
8217
2974
AMD Radeon RX 490MPolarisPolarisGDDR512142692
NVIDIA GeForce GTX 980MMaxwell103811275000256GDDR5819212_14.5283356
~14.883%
327632n10
22162n33
65241n33
11177n35
12517n35
8343n38
9682n38
2949
2805
31944n5
26811n9
660
338
252
110.6n5
40.1
101.3n30
6837n22
6552n12
2294.5n8
AMD Radeon RX Vega M GHVega Kaby Lake-GVega10631190HBM2409612_1142168
~16.658%
357446
24988.5n2
59162
13212
14302
8506n3
10248
2999n2
2908
33046
143.95n2
13015
6661
2867
NVIDIA Quadro M5000MMaxwell96210515000256GDDR5819212_14.5282996
~17.758%
324161
23878.5n2
63738n2
11110n3
11845n3
8094.5n2
9227.5n2
30962n2
112.3n2
47.85n2
113.3n2
7675.5n2
6291
2173n2
AMD Radeon Pro Vega 20Vega MobileVega8151283HBM24096141856
~12.979%
278586
21984
62318
11934.5n2
12289n2
7558n3
9043.5n2
2794.5n2
2600.5n2
33590
32864
578
111.3
117.8
35.1
129.5n2
12230
6431
2081
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
AMD Radeon 780MPhoenixRDNA 31500300012_24.64344
~15.283%
431550n2
34005n7
47301n7
11819n19
12032n20
6922n19
7627.5n20
2939n19
2639n20
40258n4
42241.5n4
574
288
224
153.8n16
22.2n2
185.1n17
15175.5n4
10102n3
1466n2
Apple M3 10-Core GPULPDDR5-6400545
~13.917%
864.2
563.5
393
129.8
AMD Radeon R9 280XThaiti XTLGCN10006000384GDDR5307212 (FL 11_1)4.3283720
~15.858%
285376
22027
52117
10241
10792
7368
8343
2393
2210
33045
28452
599
124
95.2n2
AMD Radeon R9 380Tonga ProGCN9705700384GDDR5409612 (FL 12_0)4.4283094
~14.158%
303773
21123
50723
11264
12191
7201
8218
29722
31844
543
134.2
146.5
6407
1778
NVIDIA GeForce GTX 960GM206Maxwell112711783500128GDDR54096124.4283249
~13.367%
310860
19250n2
49917.5n2
9875.5n2
10767.5n2
6698.5n2
7915.5n2
30751
32987
526
264.3
194.8
119.95n2
6783.5n2
5743
1836
NVIDIA GeForce MX550GN18-S5Turing13201200064GDDR612_14.612728
~13.858%
29680
40364
10319.5n2
10005n2
5869n2
6125.5n2
2800n3
2470n3
36560
42476
27.1
173.45n2
6176
1058
NVIDIA GeForce GTX 1050 Ti MobileN17P-G1Pascal149316207000128GDDR5409612_14.5142537
~13.367%
299188n16
22393n37
50514n37
9117n36
9615.5n36
6703.5n38
7740.5n38
2450.5n16
2326n16
30690
27473n11
322.4
99.7n31
6756n12
5380n5
2646n5
NVIDIA GeForce GTX 1050 Ti (Desktop)N17P-G1Pascal129013927008128GDDR5409612_14.5162607
~15.758%
352876
24195
50939
9480.5n2
9453n2
6816n3
7485n3
2568n2
2308.5n2
38483.5n2
40.7
150.35n2
5493
2156
AMD Radeon 680MRDNA 2 RembrandtRDNA 2240012_16710
~13.971%
353317n10
30929n23
43275n23
10382n30
10419n30
6287n31
6865n31
2609n31
2323n31
33260n10
32341n11
263n9
18.8n9
144.56n32
15245.5n14
5813n11
1277n8
NVIDIA Quadro P2000GP107GLPascal121514686008128GDDR5409612_14.5142354
~13.867%
350317
24335n2
43565.5n2
8699n2
8387n2
6160n2
6847n2
2259
2046
32964
33795
34.6
180.85n2
6782
4858.5n2
2691.5n2
NVIDIA Quadro P2000 Max-QGP107GLPascal121514686008128GDDR5409612_14.5142354
~12.958%
326075
14996
28679
8363
8148
5958
6742
2206
2049
32724
31482
137.9
6820
2617
NVIDIA Quadro M4000MMaxwell97510135012256GDDR5409612_14.5282996
~10.833%
17686n2
49204
9295.5n2
10259
6937
7723
93.2
5686
NVIDIA GeForce GTX 970MMaxwell92410385000192GDDR5614412_14.5283356
~14.658%
274626n11
20720n36
51247n36
9403n36
9877.5n36
6565n37
7463n37
28845
26468n8
93n3
90.5n33
6830n27
5137.5n8
2223n10
NVIDIA T500 Laptop GPUTuring136516951000064GDDR5, GDDR6409612_14.6121663
~9.863%
15851n3
23453n3
8132n4
7995.5n4
3973.5n4
4224.5n4
1958n4
1787.5n4
31133
503
236
183
173n4
4734
1976
NVIDIA GeForce MX450N17S-G5 / GP107-670-A1Turing139515751000064GDDR5, GDDR6204812_14.6121231
~9.479%
335125n7
18399n13
27570n13
8068n15
8250n16
4306n18
4725n17
2099n16
1900n16
22831
411
209
156.9
235
57.2
20.5
130n19
4104
986
NVIDIA GeForce GTX 680GK104Kepler100610586000256GDDR52048114.2284285
~14.871%
247306n2
23150n2
47130n2
10000n2
10216.5n2
6861n2
7587n2
2332
2068
29702
24660n3
52955
652
45.1
78.2
5790
626
AMD Radeon HD 7970Tahiti XTGCN9255500384GDDR5307211.14.2284376
~14.238%
14233
43795
7323
7770
5880
6862
24757
23807
77.8
AMD Radeon R9 M395XAmethyst XTGCN 39095460256GDDR512 (FL 12_0)283347
~10.78%
7042
7921
NVIDIA GeForce GTX 1050 Ti Max-QN17P-G1 Max-QPascal1151 – 12901290 – 14177000128GDDR5409612_14.5162172
~12.279%
324705
24021n5
46952n5
9106n7
8752n7
6688n7
7324n7
2485n3
2261n3
29503.5n2
28797n2
531n2
253.15n2
184.85n2
40.1
102n7
4972n3
4879n2
2221.5n2
AMD Radeon Pro Vega 16Vega MobileVegaHBM24096141856
~12.538%
29958
56273
10926
10569
6902
7745
2443
2198
130.2
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
AMD Radeon RX Vega M GL / 870Vega Kaby Lake-GVega9311011HBM2409612_1142168
~10.571%
299071n3
19473n5
38812n5
9380n5
9862n5
6225n5
7329n5
2225n3
2072n3
16707
502
182.5
132.5
120.65n4
9791n2
956n3
2253n2
AMD Radeon Pro WX Vega M GLVega Kaby Lake-GVega9311011HBM2409612_1142168
~8.650%
19765
38986
9731
10020
6253
7333
2213
2062
132.5
9667
967
1567
AMD Radeon R9 M485XGCN 35000256GDDR5812 (FL 12_0)282771
AMD Radeon R9 M295XTongaGCN 38505448256GDDR512 (FL 12_0)283347
~12.850%
21221n3
38132n2
8729.5n2
8850.5n2
5941n3
6590.5n2
29972
35421
393
179
108.7n2
5205
AMD Radeon R9 M390XAmethyst (XT) / TongaGCN 37235000256GDDR5409612 (FL 12_0)4.3 / Vulkan283111
~10.48%
9082
9448
NVIDIA Quadro M3000MMaxwell10505000256GDDR5409612_14.5282996
~12.663%
21407.5n2
44602.5n2
8539.5n2
8288.5n2
5971.5n2
6536.5n2
27405
27320.5n2
249.9
79.95n2
38.15n2
92.05n2
5649.5n2
4737
2261n2
NVIDIA GeForce GTX 1050 (Desktop)N17P-G1Pascal135414557008128GDDR5204812_14.5142607
~1788%
349683
21461
40922
8817
8571
6122
6797
1984
1797
32463
29795n4
96234
472
268
200
105
88.3
37.6
132n2
4749
1864
NVIDIA GeForce GTX 1050 MobileN17P-G0Pascal135414937000128GDDR5409612_14.5142537
~11.579%
287287n20
18946n40
38041.5n40
7552n42
7678.5n42
5452n43
6066n43
1774n11
1610n11
26560
25817n11
533
247
187.4
78.3
102.4n41
6831n23
4583n14
2008n4
AMD FirePro W7170MTongaGCN 37235000256GDDR5409612 (FL 12_0)4.3 / Vulkan282996
~12.458%
21612
43124
9580
9708
6180
6935
26345
28430
76.9
30.7
102.8
9551
925
1412
AMD Radeon R9 M395GCN8345460256GDDR5204812 (FL 12_0)4.3 / Vulkan283111
~10.825%
16305
38490
8305
8656
5920
6819
AMD Radeon R7 370Trinidad (Pitcairn)GCN 1.09755600256GDDR5204812 FL 11_1283146
~1271%
323114n2
22745n2
39808.5n2
8866n2
8518.5n2
5525n2
5961n2
1606
1442
28723
31752
515
164
124
31
4861
1486
NVIDIA GeForce GTX 880MN15E-GX-A2Kepler9545000256GDDR5819212 (FL 11_0)4.3283565
~12.963%
268706
19151n10
39891n10
8319.5n10
8578n10
5482.5n10
6101n10
28022n5
29036.5n2
65
81.35n4
101.4n9
10451n3
4916
899
NVIDIA GeForce GTX 1050 Max-QN17P-G0 Max-QPascal999 - 11891139 - 13287000128GDDR5409612_14.5142172
~10.783%
318811
18259.5n4
35392n4
7347.5n4
7153.5n4
5223n4
5649.5n4
1753.5n2
1615n2
26080.5n2
19690.5n2
441.6
223
165.2
70.2
30.8
109.5n4
6811n3
4342.5n2
1702n2
Apple M3 8-Core GPULPDDR5-6400545
Apple M2 10-Core GPU1398LPDDR5-64005557
~13.417%
911.5n6
535n6
339.5n6
130.98n4
NVIDIA GeForce GTX 950GM206Maxwell102411883300128GDDR5204812.14.5283039
~10.329%
19192
37454
8520n2
8351n2
5605n2
6207.5n2
96.6
NVIDIA T600Turing735133510000128GDDR6409612_14.612977
~20.767%
304731
31922
40917
9497
8694
6284
6552
2496
2195
344838
43997
32.7
227.14
6830
4825
2049
AMD Radeon 760MPhoenixRDNA 31500280012_24.64345
~12.463%
28339n2
41767n2
9781.5n2
9603n2
5694n2
6141.5n2
2371.5n2
2115.5n2
32985
35337
196.8n2
189.25n2
14191
6922
981
AMD Radeon 660MRDNA 2 RembrandtRDNA 2190012_16710
~10.371%
283076
21223n6
30129.5n6
7003.5n6
6651.5n6
4391.5n6
4734.5n6
1700n7
1523n6
23222n2
27876n2
124.5
10.9
119.65n6
13243n2
3427.5n2
822n2
AMD Radeon R9 270XCuracao XTGCN10505600256GDDR5204812 (FL 11_1)4.3283720
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
NVIDIA GeForce GTX 660 TiGK104Kepler9159806000192GDDR5307211284138
~13.538%
13673
37758
7693
8415
4734
5432
23726
22997
78.7
NVIDIA GeForce GTX 760Kepler98010333000256GDDR5204811.04.3283825
~12.433%
19815
40150
7985
7962
5431
5959
29073
75.2
NVIDIA GeForce GTX 780MN14E-GTXKepler8235000256GDDR54096114.3283851
~11.450%
18252n7
35965n7
7690.5n8
7776.5n8
4742n7
5244n7
26827n9
23381.5n6
75.95n4
90.5
6833n3
749.5n2
NVIDIA Quadro K5100MN15E-Q5-A2Kepler7713600256GDDR58192114.3283797
~9.250%
2197
17583n3
31015n3
7058n4
6880n3
4467n3
4793n3
24795
24910n2
119.25n2
6539n3
774
NVIDIA GeForce GTX 680MXKepler7205000256GDDR52048114.3284070
~7.613%
6883
6736
25501
AMD Radeon RX 460 (Desktop)Polaris 11 / Baffin XTPolaris109012007000128GDDR5409612Vulkan142685
~9.463%
307888
20429
34892
8868
8597
5166
5701
1916
1731
412
129
104
23.9
4540
1554
AMD Radeon Pro WX 4150Polaris 11Polaris10537000128GDDR5409612Vulkan142480
AMD Radeon HD 7870Pitcairn XTGCN10004800256GDDR5204811.14.2284302
~11.225%
6190
6194
21348
23230
120.1
11154
NVIDIA GeForce GTX 965MN16E-GS, N16E-GRMaxwell924 / 935950 / 11515000128GDDR5409612_14.5283266
~10.583%
259766n2
18013n13
34748n13
7896n15
7322n13
4851n13
5536n13
1952
1810
23562n3
24774n3
446
213.5n2
160
66.3
27.1
93.9n13
6840n3
4597n3
1779n4
AMD Radeon RX 560X (Laptop)Polaris 11Polaris117212756000128GDDR5409612Vulkan142535
~8.875%
189597
13326n3
35511n3
7697n6
8211.5n6
5514n4
6329n4
1925n3
1789n3
19829
25527n3
413.7
96.2
103.4
86.3n2
6202.5n2
3450.5n2
1837.5n2
AMD Radeon RX 560 (Laptop)Polaris 11Polaris109012926000128GDDR5409612Vulkan142535
~8.829%
13138n3
36528n3
6955n3
8329n3
4899n3
5738n3
98.55n2
NVIDIA Quadro M2200N17P-Q3Maxwell69410385508128GDDR5409612_14.5282527
~10.779%
289176n2
20644n3
37796n3
7581n2
7372n2
5252n3
5850n3
1903n3
1724n3
24622
28149.5n2
432
219.1
163.7
27.9n3
103.9n3
6833
4332
2099n3
NVIDIA GeForce GTX 870MN15P-GTKepler9415000192GDDR5614412 (FL 11_0)4.3283565
~11.946%
16787n5
31322n5
7120n6
7156n5
4294n7
4694n6
24035n3
25112
64.7n2
93.8n6
10324
AMD Radeon R9 M290XNeptuneGCN8509004800256GDDR5409612 (FL 11_1)4.3283629
~10.533%
17182
33147
6859
6817
4793
5294
23961
62
AMD Radeon HD 8970MNeptuneGCN8509004800256GDDR5409611.14.2283866
~10.142%
12468.5n2
31027n2
5422n3
6818n3
4245.5n2
5038.5n2
18666.5n2
18211.5n2
56.1n2
5919
NVIDIA GeForce GTX 580GF110Fermi7752004384GDDR5153611404784
~18.625%
6059.5n2
6065n2
21940.5n2
24765n3
50850.5n2
6829
AMD Radeon HD 6970CaymanTerascale 28802750256DDR5204811404748
~33.24%
24035
AMD Radeon RX 460 (Laptop)Polaris 11 / Baffin XTPolaris11806000128GDDR5409612Vulkan142685
~742%
96383
9968
31294
5488n2
7792.5n2
4089n2
5107.5n2
57.2
6157
4404
NVIDIA GeForce GTX 680MN13E-GTXKepler7203600256GDDR5409611284211
~10.246%
15258.5n2
27684n2
5996.5n6
5897.5n6
3762.5n2
4049n2
21533.5n6
22760n6
57.65n2
8846n3
614
NVIDIA GeForce GTX 775MN13E-GTX-A2Kepler7193600256GDDR5409611283734
~6.88%
6101
6071
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
NVIDIA Quadro P1000Pascal149315196008128GDDR5409612_14.6142508
~8.975%
20654n3
30721n3
6377n3
6001n3
4508n3
4787n3
1560
1395
24240
32223
374.7
187.9
144.3
26n3
136.5n3
5759
3531
1260n3
AMD Radeon R9 M390PitcairnGCN9585460256GDDR5204812 (FL 11_2)283111
~10.429%
6838
6819
25800
101.6n2
12092
4417
1287
Intel Iris Xe MAX GraphicsiDG1LPDEVGen. 12 Xe16504266128LPDDR4x409612.14.6101140
~10.663%
177442n2
20526.5n2
36993n3
8024n3
8214n3
5658n4
6333n3
1876n4
1743n3
22466
18.8
105n3
11787
3898
3073
AMD FirePro M6100BonaireGCN11006000128GDDR5204812 (FL 12_0)4.3283727
~9.358%
14975n2
25342n2
5639n3
5369n3
3476n2
3837n2
19876
25004
101
56.2
112.5
11116
3355
1084
AMD Radeon HD 7970MWimbledon XTGCN8504800256GDDR511.14.2284245
~10.646%
16428
31869
5907n7
5645n7
4307
4694
21938n8
22370.5n6
57.65n4
8985.5n2
1218
AMD Radeon Pro 560XPolaris 21Polaris9075080128GDDR5409612Vulkan142384
~1046%
255217
18251
32449
7910
7590
4961
5699
1775
1614
179.75n2
98.4
AMD Radeon Pro 560Polaris 21Polaris9075080128GDDR5409612Vulkan142384
~7.879%
198867
15047
23105
5718
5305
3576
3892
1519
1376
18982
24516
283.6
70
76.8
18.2
86.8
9792
3756
1323
AMD Radeon Pro 460Polaris 11 / Baffin XTPolaris9005000128GDDR5409612Vulkan142685
~8.667%
16824
27064
6963
6749
4104
4584
1374
19234
27694
320.9
92.9
18.3
114.7
13571
3841
1192
AMD Radeon Pro WX 4130PolarisPolaris10537000128GDDR5409612Vulkan142480
Intel Iris Xe Graphics G7 96EUsTiger Lake XeGen. 11 Ice Lake400135012_14.6101217
~9.183%
207909n36
18954n166
26820n167
6865n188
6518n189
4659.5n198
5116n201
1724n195
1552.5n198
24384n16
28231n25
257.7n2
164.4n3
118.65n4
104.6n36
15.05n14
97.85n202
15631.5n24
3402n20
2309.5n16
NVIDIA GeForce MX350N17S-G5 / GP107-670-A1Pascal13541468700064GDDR512_14.6141394
~9.963%
285166n7
16226n9
24744n9
6376n13
6166n13
3985n14
4371n14
1491n12
1335.5n12
23907
19.6
110n11
6839
3661
1582
NVIDIA GeForce GTX 960MN16P-GXMaxwell109612025000128GDDR5409612 (FL 11_0)4.5283200
~9.963%
226308n16
16283n56
30085.5n54
5535.5n54
5278n54
3984n57
4318n55
1202n2
1148n2
23733n11
56.15n2
81.4n50
6741n43
3337n14
1254n11
NVIDIA GeForce GTX 750 TiGM107Maxwell102010852700128GDDR5204811.24.4283587
~9.533%
17949
31349
5741
5378
4022
4294
21608
54.3
NVIDIA GeForce GTX 570GF110Fermi7321600320GDDR5128011404756
~11.317%
4951
5033
17632
21006.5n2
NVIDIA GeForce GTX 480GF100Fermi7001848384GDDR51536114.2404756
~14.713%
4982
5014
23824
NVIDIA Quadro M1200N17P-Q1Maxwell99111505000128GDDR5409612 (FL 11_0)4.5282527
~10.158%
240298
13600n3
27557n2
5514.5n2
5310n2
3878n3
4141.5n2
1290
26109
30.1
27.7
108.15n2
388
1207n2
NVIDIA Quadro P620Pascal117714426000128GDDR5409612_14.5141663
~12.163%
310112
23291.5n2
30409.5n2
6519n3
5909n3
4447.5n2
4672.5n2
1582.5n2
1388n2
25105
35092n2
166.3n3
6822
3516
2058
AMD Radeon RX 550X (Laptop)Polaris 12Polaris11767000128GDDR5409612Vulkan141800
~783%
184578n2
11529.5n2
20039n2
5502.5n2
5344.5n2
3245n2
3688n2
1164.5n2
1050n2
14519.5n2
21444n2
269
84.3
75.6
35
12.4
79.55n2
9698
1822.5n2
805
AMD Radeon RX 550 (Laptop)Polaris 12Polaris128714766000128GDDR5409612Vulkan142460
~954%
239256
13493n4
23049.5n4
5226n4
4559n5
3248.5n4
3645n4
1410n2
1280.5n2
23308
67.1n4
921
1609
AMD Radeon RX 640Polaris 12Polaris12181218600064GDDR5409612Vulkan141586
~5.771%
12879.5n2
19945.5n2
5411n2
5235n2
3119n2
3498.5n2
1116.5n2
1007.5n2
14141
20261
258.1
80.2
73.5
84.15n2
369
2934
719
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
AMD Radeon Pro WX 3200Polaris 12Polaris10826000128GDDR5409612Vulkan141541
~6.267%
105833n2
11960n2
18866n2
4657n2
4337.5n2
2871n2
3156n2
1059n2
955.5n2
12538
16329n2
13.4
76.5n2
9857
649
921
AMD Radeon Pro 555XPolaris 21Polaris8555080128GDDR5409612Vulkan142384
AMD Radeon Pro 555Polaris 21Polaris8555080128GDDR5204812Vulkan142384
~9.463%
217690
15337
22624
5566
5185
3430
3721
1207
1078
26389
41.9
16
78.3
2991
1001
AMD Radeon Pro 455Polaris 11Polaris8555000128GDDR5204812Vulkan142605
~8.475%
229045
15766
23434
5774
5388
3463
3759
1254
1118
16522
25873
229
92.2
16.4
100
12740
3049
918
NVIDIA GeForce GT 1030 (Desktop)N17P-G1Pascal12281670600064GDDR5204812_14.5142404
~9.258%
219163n4
19202.5n4
22069n4
5238n4
4727.5n4
3381.5n4
3624.5n4
1252.5n2
1090.5n2
20192n2
24100.5n2
17.4
2925.5n2
929.5n2
NVIDIA Quadro P600Pascal14301620501264GDDR512_14.5142222
~9.963%
243785
19090.5n2
28957n2
5137.5n2
4655n2
3824.5n2
4083n2
1312
1162
22920n2
23.9
139.9n2
13234
2939
1144
NVIDIA GeForce MX250N17S-G2Pascal15181582700064GDDR5409612_14.5141759
~8.183%
235421n8
13121n25
21545n25
4850n29
4633n29
3244.5n28
3660n29
1220.5n22
1103n22
16487.5n2
25428.5n2
268.6n2
141.2n2
105.3n2
43.6
17
99.55n30
6469n5
2806n2
1172.5n2
NVIDIA GeForce MX330N17S-LP / N17S-G3Pascal15311594700064GDDR512_14.6141394
~7.354%
243721n2
15382n3
20729n3
5121.5n4
4834n4
3470n3
3762n3
1235.5n2
1160n3
18.1
98.2n2
2890
1047
NVIDIA GeForce MX150N17S-G1Pascal14681532600864GDDR5409612_14.5142404
~8.392%
223740n19
12943n43
19132n43
4576n47
4494n47
3104n44
3488n44
1132.5n16
1046n16
10991.5n2
19312.5n12
34443
207.9n4
123.85n4
90.9n4
140
41.8
15.7n2
94.1n42
6526.5n22
2581n9
773.5n6
Intel Iris Xe Graphics G7 80EUsTiger Lake XeGen. 11 Ice Lake400135012_14.6101217
~8.288%
166479n15
16291n90
21817.5n90
5598n103
5332n103
3649n106
4010n105
1333.5n102
1180n102
21729n3
25371n7
254.95n2
159.2n2
88.8n2
104.6n13
43.8
15.95n4
86.18n108
13741.5n8
2903.5n8
2074n4
Intel Graphics 4-Cores iGPU (Arc)Meteor Lake iGPUXe LPG195012_24.656
NVIDIA GeForce GT 710GK208BKepler954180064DDR3212 (11_0)4.6283550
~3.338%
70459
7654
7270
932
947
263
226
39.05
6821
NVIDIA Quadro M2000MMaxwell103811975000128GDDR5409612 (FL 11_0)4.5282996
~8.571%
17603.5n10
29795n10
5456n9
5143n9
3859n10
4157n10
20567n3
25604n5
310.7
163.9
122.9
52.7n4
20.4n4
92.65n10
4616n5
3145n2
1426n5
NVIDIA Quadro K5000MN14E-Q5Kepler7063000256GDDR54096114.1284214
~9.446%
16890n2
23060.5n2
5152n5
4893n3
2735n2
2797.5n2
20139n5
24239n3
47.45n2
6814n2
219.5n2
NVIDIA Quadro K4100MN15E-Q3-A2Kepler7063200256GDDR54096114.3283797
~9.650%
16071.5n2
24685
5259.5n2
4957
3505n2
3654
19909
25559.5n2
48.1
115n2
6751
476.5n2
NVIDIA GeForce GTX 770MN14E-GSKepler8114000192GDDR53072114.3283851
~950%
14766n9
23513n9
5066n9
4889n9
3131n9
3347n9
19208n7
22486n5
321
48.5n4
95.1n2
6804n5
AMD Radeon RX 540XPolaris 12GCN 4.012196000128GDDR5409612_04.6142095
AMD Radeon Pro WX 2100Polaris 12Polaris12196000128GDDR5204812Vulkan142095
AMD Radeon RX 540Polaris 12Polaris12196000128GDDR5409612Vulkan142460
~6.575%
138197
12853.5n4
24170n4
4664n5
4646n5
3059n6
3686n4
869n2
787n2
13719.5n2
15818n3
46.12
31.2
19.3
76.4n5
9285n2
998n3
858n2
AMD Radeon Pro WX 3100Polaris 12Polaris6000128GDDR5409612Vulkan142460
~6.667%
176357
11887.5n2
18522n2
4058n2
3690.5n2
2480.5n2
2671n2
918
820
11702
18186
10.1n2
75.35n2
8486.5n2
2414
921.5n2
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
NVIDIA GeForce GTX 860MN15P-GXMaxwell10295000128GDDR5409612 (FL 11_0)4.4283565
~9.563%
215144
15323.5n24
27960.5n24
5134n25
4902n25
3661n24
3904n24
19215.5n10
23220.5n4
41.1
49.5n7
93.95n20
6718n11
3103.5n4
1081n5
NVIDIA GeForce GTX 675MXN13E-GSRKepler6003600256GDDR5114.1284092
~9.838%
13265
20325
4265.5n2
3978.5n2
2721
2831
18949.5n2
23190n2
40.9
NVIDIA GeForce GTX 950MN16P-GTMaxwell914 - 99311241800 - 5000128DDR3, GDDR5409612 (FL 11_0)4.5283200
~7.383%
198867n5
13966n28
21355.5n28
4574.5n28
4367n28
2837.5n28
3200n28
1094
971
15710n6
21645n13
244.7n2
132.3n2
99.15n2
42.1
17.8
50.36n24
6029n15
2747n5
1242.5n4
AMD Radeon Pro 450Polaris 11Polaris8005080128GDDR5204812Vulkan142605
~8.258%
200518
14305
21533
4914
4502
3027
3252
1074
952
14245n2
24189
69.8
2589
774
AMD Radeon 630GCN 1.01219600064GDDR54096124.5141586
AMD Radeon 540XGCN 4.01219600064GDDR5204812_04.6141586
~5.179%
10652
15167
4199
4097
2435
2779
933.5n2
797
11545
16578
210
77.5
61.4
30.1
9.3
66.4
7557
2330
671
AMD Radeon R9 M470XGCN 211006000128GDDR5409612 FL11_14.3282771
AMD Radeon R9 M385XStrato-XT-M3GCN11006000128GDDR5409612 FL11_14.3283104
~5.950%
8982n2
22544n2
4456.5n2
5514.5n2
2930.5n2
3404.5n2
12453
14024
44.8
5087
3559
1331
NVIDIA Quadro P520Pascal13031493600064GDDR5204812_14.5141663
~779%
141330n2
14169.5n4
19041n4
4492.5n6
4185.5n6
2960.5n6
3217.5n6
1135n6
1010.5n6
15720
18941.5n2
319
165.7
105.1
35
102.3n6
5684.5n2
2619
1448
NVIDIA GeForce GTX 850MN15P-GTMaxwell8762000 - 5000128DDR3, GDDR5409612 (FL 11_0)4.4283565
~7.154%
12781n23
21873n23
4495n21
4385.5n20
2765.5n22
3085.5n22
15862.5n4
16135n5
41.8n5
78.8n20
6463n13
2678
999n3
NVIDIA Quadro M1000MMaxwell99310725000128GDDR5409612 (FL 11_0)4.5282996
~8.754%
15948.5n2
23422n2
4660.5n2
4229.5n2
3323n2
3497.5n2
24483n2
44.9n2
18.8n2
95.9n2
6839n2
2676
1179.5n2
NVIDIA Quadro M620Maxwell10185012128GDDR5204812 (FL 11_0)4.5282527
~6.475%
13620n2
22119.5n2
4140n3
3801n3
2989n3
3130n3
968
862
17237
24751
232.3
133.5
97.8
16.5n2
95.25n2
6851
2530
1079n2
AMD Radeon RX Vega 11Vega Raven RidgeVega124012_1142241
~8.158%
157382n4
14579n4
20847.5n4
5350n6
5483n4
3038.5n6
3494n3
1127n3
935.5n2
20608
80.1n3
11001n2
3425n2
1074n2
AMD Radeon R9 M280XSaturn XTGCN90010005500128GDDR5409612 (FL 12_0)4.4283239
~4.863%
7236
23201
3823
4698
2974
3498
1041
1012
9222
11618
120
50.7
5889
2934
1322
AMD Radeon HD 7950MWimbledon ProGCN7004000256GDDR5204811.14.1284245
NVIDIA GeForce GTX 560 TiGF114Fermi8222004256GDDR5102411404707
~9.117%
4084
4013
15494
16518
AMD Radeon HD 6870RV940 BartsTerascale 29001050256GDDR5102411404802
~15.142%
15589
26437
4547.5n2
4218n2
3002
3141
17772.5n2
23860n2
60815n2
10832
NVIDIA GeForce GTX 470GF100Fermi6071676320GDDR5128011404995
~11.650%
14953.5n2
25757n2
4718n5
4342n5
2396n2
2757.5n2
16753n6
22622n7
53506
5432
2460
610
NVIDIA GeForce 945MMaxwell92810452000128DDR3409612 (FL 11_0)4.5283200
~7.258%
193684
9643n2
19405n2
3451n2
3309.5n2
2504.5n2
2850n2
13507
20209
208.5
113.6
39.32n2
5899n2
733
Qualcomm Snapdragon X Elite Adreno GPU 450
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
NVIDIA GeForce GTX 765MN14-GEKepler8504000128GDDR52048114.3283851
~6.658%
12408n12
17616n11
4083n13
4019n13
2362n13
2479n11
14870n13
19624n12
266n3
35.8n6
88.3n3
6795.5n8
2400
517n3
NVIDIA Quadro K4000MN14E-Q3Kepler6002800256GDDR54096114.1284214
~7.646%
12751
19058
3777n3
3466n2
2192
2199
15362
20518n3
36.5
6804
221
NVIDIA Quadro P500Pascal14551519501264GDDR512_14.5142222
~442%
9301
12868
3338
3022
2118.5n2
2254.5n2
11.9
82.45n2
4374
547
Intel UHD Graphics 64EUs (Alder Lake 12th Gen)Alder Lake XeGen. 12140012_14.610710
~7.883%
206410n5
18180n6
20306.5n6
4589n8
4077.5n8
3057.5n8
3252n8
1077.5n8
950n8
15907n5
23680n5
320.3
234.9
130.9
120.3n5
10.05n4
79.56n8
16251.5n6
1767n5
1394n4
Intel Iris Plus Graphics G7 (Ice Lake 64 EU)Ice Lake G7 Gen. 11Gen. 11 Ice Lake3001100DDR412_14.5101662
~5.779%
145594n14
12848.5n24
16713n24
4436n28
4187n28
2532n25
2717.5n26
892n23
791n23
14442
16163.5n4
165.55n2
46.6
59.85n2
102
65.2n30
10554n7
2532n5
1321n3
AMD Radeon RX Vega 10Vega Raven RidgeVega130012_1142241
~4.983%
113236n8
10318.5n16
14834.5n16
3449n17
3389n17
2028n17
2272n17
845n8
737n7
11391
14890n3
149.35n2
46.3n2
43.15n2
25.1
7
47.11n18
7856n5
2453n3
514n2
Intel Iris Pro Graphics P580Skylake GT4eGen. 9 Skylake3501100eDRAM + 64/128eDRAM12812_14.4142882
Intel Iris Pro Graphics 580Skylake GT4eGen. 9 Skylake3501050eDRAM + 64/128eDRAM12812_14.4142882
~6.146%
184880
11346
14594
3510
3220
1836
1903
85.55n2
11355
2308
875
ATI Radeon HD 5850RV870Terascale 27252000256GDDR5102411405189
~7.521%
3375
3401
13267
15598
6588
NVIDIA GeForce GTX 675MN13E-GS1Fermi6203000256GDDR5204811404285
~8.142%
12533
18056
3531n6
3218n5
2182
2331
14756n5
20452.5n6
34.7
6084n4
NVIDIA GeForce GTX 580MN12E-GTX2Fermi6201500256GDDR5211404553
~12.125%
3424n4
3116.5n4
14403.5n2
20550.5n4
27355
6209.5n2
AMD Radeon HD 6990MBlackcomb XTXTerascale 2715900256GDDR5204811404539
~18.225%
3535n3
3227n3
15113n3
21082n3
59748
8394.5n2
AMD Radeon R9 M470SaturnGCN 210006000128GDDR5409612 FL11_14.3282771
~7.821%
15817
24365
3415
3655
96.9
AMD Radeon R9 M385GCN6000128GDDR5409611.14.3283104
AMD Radeon R9 M380Strato Pro GDDR5GCN10006000128GDDR5409611.14.3283104
AMD Radeon HD 7770Cape VerdeGCN10004500128GDDR5102411.14.2284321
~8.238%
10707
18782
3356
3098
2600
2825
14073
19307
36
NVIDIA GeForce GT 650M SLIN13E-GEKepler79083540002x 128GDDR5211284285
~8.525%
3621n3
3597n3
12811.5n2
16841.5n2
35.8
5647
NVIDIA GeForce GTX 485MN12E-GTX-A1Fermi5751500256GDDR511405091
~8.421%
2942n2
2709n2
13536n4
19877.5n4
5859.5n4
NVIDIA GeForce GTX 460 768MBGF104Fermi6751800192GDDR576811404756
~8.238%
133103
12109
17589
2993.5n2
2810.5n2
1902
2092
12262
17797
AMD Radeon HD 6790BartsTerascale 28401050256GDDR5102411404637
~17.425%
3221
2887
13637
18630
57880
10793
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
NVIDIA Quadro K3100MN15E-Q1-A2Kepler7063200256GDDR54096114.3283797
~7.850%
13554n3
18389n3
3901n3
3581n3
2666n3
2797n3
15120
22437.5n2
35.9n2
99n3
6828n3
259.5n2
AMD FirePro W5170MGCN9254500128GDDR5204812 (FL 12_0)4.3 / Vulkan282996
~6.129%
14139
19095
4564
4197
2736
2909
82.3
AMD Radeon R9 M370XCape VerdeGCN 1.08004500128GDDR5204812 (FL 11_1)4.3283132
~6.667%
188948
11445n2
15454.5n2
3991n2
3637.5n2
2283n2
2419n2
13155
18481
219.8n2
62.3n2
66.3
61.3n3
11288
2226
659
NVIDIA GeForce GTX 670MXN13E-GRKepler6002800192GDDR5114.2284092
~8.429%
3768n2
3587n2
2261
2371
14530n3
20268n3
34.3n3
NVIDIA Quadro 5010MN12E-Q5Fermi4501300256GDDR5 ECC409611404679
~8.321%
3066n2
2693
12991
19036n3
6620
NVIDIA GeForce GTX 760MN14E-GLKepler6574000128GDDR52048114.3283851
~750%
11727n7
15900n5
3554n7
3369n6
2172.5n6
2271n5
14006.5n6
19221n3
32.75n2
81.85n4
6802.5n4
2064
AMD Radeon R9 M275GCN9254500128GDDR5409612 (FL 11_1)4.2283423
~6.238%
145646
5652
11459
3182
3261
1603
1885
10378
50.5
NVIDIA GeForce GTX 670MN13E-GS1-LPFermi5983000192GDDR5307211404285
~7.242%
11267
14940
2989n9
2698n9
1824
1950
12670n9
19451.5n8
27.6
6283n7
AMD Radeon RX Vega 9Vega Raven RidgeVega130012_1142241
~5.575%
131922
13582
19255
4424
4380
2524
2789
974
872
12628
13365
192
73.1
57.4
55
6966
2806
588
NVIDIA Maxwell GPU Surface BookSurface BookMaxwell954993501264GDDR5102412 (FL 11_0)4.5282997
~5.650%
123411
7464.5n2
11380n2
2736n2
2577n2
1919n2
2075.5n2
15111
34.98n2
5703.5n2
1676
1065
AMD FirePro W5130MGCN9254000128GDDR5204812 (FL 12_0)4.3 / Vulkan282996
~5.746%
10835.5n2
14380.5n2
3383
3106
1997n2
2110n2
15680
62.4n2
9635
896
629
AMD FirePro M8900Blackcomb XTTerascale 2680900256GDDR5204811404630
~234%
16703
AMD Radeon HD 6970MBlackcomb XTTerascale 2680900256GDDR5204811404726
~821%
3054n5
2818.5n4
11898n8
17447n8
7951.5n4
AMD Radeon R9 M270GCN7254500128GDDR5409612 (FL 11_1)4.2283545
AMD Radeon HD 8870MGCN7254500128GDDR5, DDR3204811.14.1284014
~6.346%
11331.5n4
15738.5n4
3292n5
2986n5
2091n4
2168.5n4
11715n4
15675n3
25.9n4
7769n2
629
AMD Radeon HD 7870MHeathrow XTGCN8004000128GDDR511.14.2284252
~3.413%
3037
2702
13065
NVIDIA Quadro K3000MN14E-Q1Kepler6542800256GDDR54096114.1284214
~7.521%
2767n4
2427n2
11902n3
17037.5n2
6817.5n2
NVIDIA GeForce GTX 570MN12E-GTFermi5751150192GDDR5311404553
~7.221%
2640n5
2399n5
11060n5
17004.5n4
5353.5n4
Intel UHD Graphics Xe G4 48EUsTiger Lake XeGen. 11 Ice Lake350145012_14.6101217
~4.675%
97415.5n4
9422n11
15992n11
3508n11
3510n11
1962n11
2321n11
888n9
798n9
10650
10779.5n2
210
85
89.15n2
63.8n11
10477n3
1863
905
Intel UHD Graphics Xe 32EUs (Tiger Lake-H)Tiger Lake XeGen. 12350145012_14.610948
~6.571%
112982
15699.5n2
16207.5n2
3661.5n4
3195n4
2356n3
2506n4
784n2
676.5n2
13730
19728
104.8
8.8
82.67n4
16428
1422
1197
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
Intel UHD Graphics 770Alder Lake xGAlder Lake300155010710
~7.283%
179804
17404
16443
4157n2
3563n2
2738n2
2834n2
926.5n2
795.5n2
15865
23428
236.1
161.8
86.4
118.7
34.9
11
94.6
1667
1293
Intel UHD Graphics 750 (Alder Lake)Alder Lake xG019706
Intel UHD Graphics Xe 750 32EUs (Rocket Lake)Rocket Lake XeGen. 12350145012_14.614990
~5.250%
12450n3
11377n3
3276.5n2
2817.5n2
2110n3
2188n3
741n2
638n2
17496.5n2
31.05n2
1348
1115
AMD Radeon 740MPhoenixRDNA 31500250012_24.64206
Intel UHD Graphics 730 (Rocket Lake)Rocket Lake GT114990
~5.158%
83293
9889
11485
2550
2551
1613
1768
9013
13964
5.9
60.2
11331
914
771
AMD FirePro M6000GCN7504500128GDDR5204811.14.1284184
~821%
2726
2422
10744
17152
10283
AMD FirePro M5100GCN7257754500128GDDR5204812 (FL 11_1)4.3283727
~6.554%
12602.5n2
16784.5n2
3333
2967
2225n2
2327.5n2
12308
18391n2
27.5n2
63.7n2
10516n2
2051
658n2
NVIDIA GeForce MX230N17S-G0Pascal15191531700064GDDR5409612_14.5141759
~671%
183041n3
10529.5n6
15796.5n6
3621.5n6
3363.5n6
2298.5n6
2467.5n6
839.5n4
748n4
18399
176
91
65
83.4n6
6353n4
2018
1069
Apple M2 8-Core GPU1398LPDDR5-64005557
~12.317%
839.2
483.7
306.9
128.62
Apple M1 8-Core GPU1278LPDDR4X-426651130
~13.621%
280200
588n5
345n5
248.65n6
89.4n3
AMD Radeon RX Vega 8 (Ryzen 4000/5000)VegaVega210012_171438
~1071%
299071n15
22794n44
27249.5n44
6085.5n52
5951n52
3441.5n52
3760n52
1328n53
1165.5n52
22428n8
25886n11
138.1n7
13.8n8
80.1n53
15423n13
4019n9
1158.5n8
NVIDIA Quadro K2100MKepler6673000128GDDR52048114.3283797
~5.254%
10047n7
11835n7
2626n4
2393.5n4
1553n7
1606n7
10648n2
15586n3
23.2n5
68.05n6
6821n7
1586
150n6
ATI Radeon HD 5770RV830Terascale 28501200128GDDR5102411405176
~16.925%
2706
2410
11699
17844
57557
10509
NVIDIA GeForce GTX 550 TiGF116Fermi9002050192GDDR5102411404658
~7.417%
2464
2272
10229
15553
AMD Radeon HD 6950MBlackcomb ProTerascale 2580900256GDDR5204811404726
~6.917%
2643
2452
10122
13719
AMD Radeon R7 250Oland XTGCN10501800 - 4600128DDR3, GDDR5204812 (FL 11_1)4.3283727
~7.238%
12202
15080
3148
2775
2051
2145
12581
16215
27.4
NVIDIA GeForce GT 755MN14P-Kepler9805400128GDDR5409611283825
~6.742%
10459n2
14966.5n2
2987.5n2
2800.5n2
2031n2
2105.5n2
12711
15861
27.8
6577
Apple M1 7-Core GPU1278LPDDR4X-426651130
~9.317%
620
376
240
90
AMD Radeon RX Vega 7Vega Raven RidgeVega180012_171438
~8.992%
194758n15
19080n43
24726n43
5422.5n58
5248.5n58
3042n61
3347.5n62
1167.5n58
1032n57
17714n5
22493n11
37469
234.7
90.1
70
104.6n10
34.8
11.8n4
68.1n59
11417n10
2987.5n6
910n5
NVIDIA GeForce GTX 660MN13E-GEKepler8354000128GDDR5204811284285
~9.246%
10200
12861
2543n11
2369n9
1703
1751
10971n11
14704n9
46020
6317.5n6
566
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
NVIDIA GeForce 845MMaxwell107111502000 - 500064/128DDR3, GDDR5204812 (FL 11_0)4.4283565
~3.933%
7519
13754
3019
2973
2113
2362
41.32
5924
AMD Radeon HD 8850MGCN5757254500128GDDR5, DDR3204811.14.1284014
~4.542%
6278n3
11387n3
2507n3
2349n3
1693n3
1845n3
8222.5n2
10281.5n2
46.93
6957n3
AMD Radeon R9 M365XGCN9009254500128GDDR54096124.4283145
AMD Radeon R9 M265XVenus ProGCN6254000128GDDR5204812 (FL 11_1)283629
~5.250%
9950n5
12510n5
2925.5n4
2633n4
1900n5
1997n5
10547n2
15426n3
58.7n5
8596n3
688
801
AMD Radeon HD 7850MHeathrow ProGCN6754000128GDDR511.14.1284252
~7.217%
2760n2
2467n2
12254
14111
AMD Radeon R7 M465Litho XTGCN8259604000128GDDR5204811.1282539
~2.68%
12250
1740
AMD Radeon HD 8790MMars XTXGCN8504500128GDDR5204811.1284046
~5.638%
9478
12049
2513n2
2186.5n2
1648
1727
9835
13118
7734
AMD FirePro W4170MMars XTX?GCN8509004000128GDDR5204811.2284046
~5.746%
10501
12506
2629
2315
1694
1766
13622
22.4
54.7
9615
462
AMD FirePro W4100Cape VerdeGCN6304000128GDDR5204812 (FL 11_1)282996
~429%
8881
12657
1594
1665
20.1
54.3
478
NVIDIA Quadro 4000MFermiFermi4751200256GDDR5204811404679
~7.521%
2334.5n2
2092n2
10722
17727
6638
NVIDIA GeForce GTX 470MN11E-GTFermi5351250192GDDR511404792
~6.921%
2205.5n2
2002.5n2
9800.5n2
16562n3
5409n2
NVIDIA GeForce GTX 480MN11E-GTX-A3Fermi4251200256GDDR5204811404952
~12.325%
2387n2
2184.5n2
8872n2
15066.5n6
39907n2
4919
NVIDIA GeForce GT 750MN14P-GTKepler9672000 - 5000128DDR3, GDDR5409611283910
~5.446%
8632n13
10822n13
2655n12
2543n11
1508n13
1574n13
9618n9
13670n9
22.3
64.2n6
6711n8
Intel Iris Pro Graphics 6200Broadwell GT3eGen. 8 Broadwell3001150eDRAM + 64/12812 (FL 11_1)4.3143118
~4.925%
13058.5n2
15387.5n2
3094
2766
1685n2
1736.5n2
NVIDIA GeForce MX130N16S-GTRMaxwell1122124264DDR3, GDDR5409612 (FL 11_0)4.5282174
~5.783%
170596n3
10635n13
13610n13
3112n14
2875n14
2203n13
2345n13
724.5n4
644.5n4
11968
18080n3
182.3n3
95.6n3
73.5n3
27.9
11.3
78.8n13
5682.5n4
1976n3
700.5n2
NVIDIA GeForce 940MXN16S-GTR-B/SMaxwell11221242400064DDR3, GDDR5409612 (FL 11_0)4.5282836
~5.888%
147706n19
7674n37
11513n37
2660.5n50
2556n46
1834n37
1996n37
710n7
626n7
8549n4
12843n9
28793
131.1n3
69.3n3
60.3n2
25.2n2
6.65n2
64.5n39
6321.5n28
1928n4
799n2
NVIDIA Quadro M520Maxwell756101964GDDR5102412 (FL 11_0)4.5282527
~5.583%
166193
8544
13394
2884
2658
2139
2342
684
614
11278
17305
178.5
95.4
74.3
27.9
11.4
75.5
6813
2045
708
NVIDIA Quadro K1100MKepler7052800128GDDR52048114.3283797
~4.350%
8005n6
9227.5n6
2018.5n6
1826.5n6
1299n6
1340.5n6
8992
12159n4
17.5n4
51.25n6
5843n5
115n5
AMD Radeon RX Vega 8 (Ryzen 2000/3000)Vega Raven RidgeVega120012_1142241
~4.883%
113247n18
11149n37
15770n37
3676n44
3557n44
2142n41
2381n41
779n23
693n23
10294n2
12213.5n6
146.5n5
34.85n4
41.7n4
27.3
7.7
47.78n45
7779.5n12
2272n4
888
NVIDIA GeForce 940MN16S-GT-S/BMaxwell10721176200064DDR3409612 (FL 11_0)4.5283200
~4.367%
123311n4
6342n25
8818.5n24
2485n25
2405.5n24
1422n25
1622n24
7530.5n2
11920n6
127.5n3
64n3
55.1
52.4n23
6088n19
1719n2
878n3
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
Intel Iris Plus Graphics G4 (Ice Lake 48 EU)Ice Lake G4 Gen. 11Gen. 11 Ice Lake3001100DDR412_14.5101662
~5.183%
82913.5n2
11495.5n2
14910n2
3461n6
3225n6
1988n6
2124n6
732n3
646n3
8812n2
13031n3
210.6
130.1
78.1
30.5
8.5
55.5n6
9931.5n2
1784n3
875n3
NVIDIA GeForce 930MXN16S-GMRMaxwell9521020200064GDDR5, DDR312 (FL 11_0)4.5282836
~4.175%
135057
7025.5n6
9053n6
2339n8
2201.5n6
1427n6
1597n6
564
493
8062
12695n3
124.1
66.8
52.6
47.84n6
6810n3
1587.5n2
544n3
Apple A12Z Bionic GPU71367
~25.74%
221182n2
Apple A12X Bionic GPU71872
~10.517%
194856
444.7n2
211.05n2
171n2
Apple A17 Pro GPU394
~6.813%
397.1n2
235.6n2
163.85n2
NVIDIA Quadro M600MMaxwell8378765012128GDDR5204812 (FL 11_0)4.5282996
~5.667%
13310
18491
3216
2911
2322
2430
719
631
12734
20563
104.3
75.7
75.2
6832
1754
1016
AMD FirePro W4190MMars XTX?GCN8259004000128GDDR5204811.2282955
~4.650%
7894n3
12317n3
2570n3
2351n3
1663n3
1745n3
12929
7.25n2
48.74n3
9490
902
984n3
Qualcomm Adreno 750ES 3.2451
~8.813%
543
297
219
AMD Radeon R9 M375GCN10152200128DDR3409612 (FL 11_1)4.3283144
~3.954%
5932
8466
3269
3314
1514
1667
8275
11543
42.3
45.5
6544
657
931
Qualcomm Adreno 740ES 3.24394
~7.417%
479.5n24
278n23
207n23
210.38n3
ARM Immortalis-G715 MP11ValhallValhallES 3.24745
~6.717%
477.5n2
282n2
153n2
136.71n2
Apple A16 GPU 5-CoreCrete4464
~7.813%
458.5n4
271.5n4
189n4
Intel Iris Plus Graphics 655Kaby Lake GT3eGen. 9.5 Kaby Lake3001200DDR3/DDR412_14.5142296
~10.979%
137266n4
11622n9
14343n9
3180.5n8
2894n8
1850n9
1983n9
684n10
604.5n10
12287n2
17885n2
6375.3n2
199.6
2387.05n2
8.2
74.01n11
10263n3
1712.5n2
1038n2
AMD Radeon R7 M445GCN920200064GDDR54096124.5282770
~4.858%
126481
7092
9617
2422
2208
1455
1579
530
471
6872
12657
6.6
45.91
7760
AMD Radeon R7 M380GCN9152000128DDR3409612 (FL 11_1)4.3283144
AMD Radeon R7 M370GCN8753600128GDDR52048124.4283145
~4.663%
118746
7169n3
10364n3
2690n3
2524n3
1654n3
1760n3
8513
12983
80.7
35.3
52.1n3
9537.5n2
507
475
Apple A15 GPU 5-Core5821
~6.813%
427.55n6
233n6
152.6n6
Qualcomm Adreno 73080012ES 3.24745
~5.417%
381n38
209n39
136n39
144.81n2
ARM Mali-G715 MP7ValhallValhallES 3.24745
~4.117%
332.5n2
135.5n2
102n2
142.2
Qualcomm Adreno 72580012ES 3.24745
~5.617%
359
232
137
120.89
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
ARM Mali-G710 MP10ValhallValhallES 3.24745
~5.417%
294n5
217.5n6
149n5
137.4n2
NVIDIA GeForce GT 650MN13E-GEKepler7359001800 - 4000128DDR3, GDDR5204811284285
~7.754%
6874n5
10647n4
2320n26
2111.5n20
1241n5
1420n4
9682n21
13514n21
44872
21.5
6483.5n18
1451
190
NVIDIA Quadro K620MMaxwell10291124200064DDR32048114.3283211
~4.158%
6591
9092
2526
2434
1424
1621
7880
10912
60.3
21.9
60.6
5261
1737
508
NVIDIA Quadro M500MMaxwell10291124400464DDR3204812 (FL 11_0)4.5282922
~4.475%
126522
6359n4
8348n4
2447n4
2364.5n4
1391.5n4
1594.5n4
7959
12377.5n2
129.5
67.9
53.2
21.35n2
6.3n2
40.69n4
6602n3
1741n2
850n3
NVIDIA GeForce 840MN15S-GTMaxwell1029200064DDR3409612 (FL 11_0)4.5283565
~4.463%
119888
5829n30
8723.5n30
2378n28
2340n27
1361n31
1573n31
7191n5
10332n11
41
22.5
55.9n29
6070.5n18
1674n2
651n3
NVIDIA GeForce GT 745MN14P-LP/GSKepler8371800128DDR3, GDDR5204811283910
~4.450%
8411n5
10147n5
2407n5
2249n5
1443n5
1531n5
9045n3
13462.5n4
56.7n5
6788.5n4
1559
386
AMD Radeon HD 7770MChelsea XTGCN6754000128GDDR511.14.1284252
~2.713%
2417
2110
10468
NVIDIA GeForce GTX 560MN12E-GSFermi7751250192GDDR5153611404582
~12.525%
2031n11
1820n11
9300n11
15327n11
41315
5407n10
AMD Radeon R7 512 Cores (Kaveri Desktop)Kaveri SpectreGCN72012 (FL 12_0)4.3283622
~3.875%
91999
6770
10341
2444
2302
1477
1616
567
508
9878
128
33.5
19.7
6.9
43.5
7410
1495
470
Intel Iris Pro Graphics 5200Haswell GT3eGen. 7.5 Haswell2001300eDRAM + 64/128eDRAM12811.14.0223845
~7.467%
110085
9877n4
11930n3
2217n5
1923n3
1340n5
1380.5n4
8692
13123n2
41727
136n3
20.8
52.3n3
9744
1198
461n2
AMD Radeon R7 384 Cores (Kaveri Desktop)Kaveri SpectreGCN72012 (FL 12_0)4.3283622
~4.258%
89954n2
6340.5n2
9650.5n2
2152n2
1987.5n2
1302n2
1405.5n2
7338
9937.5n2
17.8
40.82n2
7140.5n2
1142.5n2
388.5n2
Apple A15 GPU 4-Core5821
~5.713%
395.75n2
191.65n2
131.85n2
Apple A14 Bionic GPU51186
~10.217%
220550n4
317.5n6
172.85n6
114.6n6
Samsung Xclipse 920RDNA 2RDNA 25554696
~4.917%
302n3
193n3
127n3
136.6
Qualcomm Adreno 66012ES 3.271108
~7.621%
200519
250.5n26
134n27
95n27
109.3
ARM Mali-G78 MP24ValhallValhallES 3.251298
~14.34%
123332
ARM Mali-G710 MP7ValhallValhallES 3.24745
~3.717%
251n5
134n5
97n5
117.35n2
ARM Mali-G78 MP22ValhallValhallES 3.251298
~3.817%
232
154
112
74.4
NVIDIA GeForce GT 740MN14P-GV2, ...Kepler8109801600 - 180064/128DDR32048114.3283941
~3.263%
5352n29
7403n29
1940n29
1848n27
1060.5n28
1150.5n28
6591n19
9700n22
3437
112
14.4n3
53.1n12
6522n22
509
455
Intel Iris Plus Graphics 650Kaby Lake GT3eGen. 9.5 Kaby Lake300110064/128DDR412_14.4142537
~5.758%
161538
9149.5n2
13153
2924
2762
1655n2
1698
623
555
15175
59.11n2
8773
1730
813
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
NVIDIA GeForce 930MN16S-GM-B/S, N16S-LPMaxwell928941180064DDR3204812 (FL 11_0)4.5283200
~3.658%
6071n6
8309n6
2247n7
2153n7
1290.5n6
1460.5n6
7274
11760
114.2
60.5
45.41n6
5853.5n4
1454
694
Intel Iris Graphics 550Skylake GT3eGen. 9 Skylake3001100eDRAM + 64/128eDRAM6412_14.4143027
~575%
144742n4
8171n7
12986n7
2699n6
2533.5n6
1544n7
1638n7
620n3
554n3
9761
15910n3
205.6
91.1
78.5
60.8n8
10057n5
1692n3
819n2
AMD Radeon 530GCN1024225064DDR3, GDDR52048124.5282460
~3.783%
107458n4
6371n5
9210n5
2508n5
2327n5
1386n5
1542n5
497n3
443n3
6337.5n2
11481n3
116.05n2
45.2n2
34.85n2
17n2
6.1n2
44.45n5
7731n3
895n3
386.5n2
AMD Radeon 625GCN 1.01024225064DDR3, GDDR54096124.5281586
AMD Radeon RX Vega 6 (Ryzen 4000/5000)Vega RenoirVega400150012_14.671438
~6.179%
182608n5
15286.5n16
21856.5n16
4446n23
4210n23
2537n23
2793n23
971.5n24
852n22
14700n3
166.2
52.3
93.6n2
25.4
7.3
54.81n23
10195.5n4
2410.5n2
750n2
Intel Iris Plus Graphics 645Kaby Lake GT3eGen. 9.5 Coffee Lake3001150DDR3, DDR412_14.5141619
~2.842%
3238
2985
1736
1893
624
550
198.3
101.8
69.6
67.1n2
Apple A13 Bionic GPU71552
~9.717%
208697n4
307n5
167n5
110n5
NVIDIA GeForce 830MN15?Maxwell10291150180064DDR3204812 (FL 11_0)4.4283565
~3.550%
6044n4
8104.5n4
2094n3
1961n3
1215n4
1386.5n4
6163
10222.5n2
50.6n3
5855n3
1123
597
NVIDIA GeForce MX110N16V-GMR1Maxwell965993180064DDR3, GDDR5124.5282174
~4.483%
124036n2
9867n3
11266n3
2378n3
2121n3
1641n3
1714n3
515n2
450.5n2
9124
14612
129.9
72.2
52.9
21.8
9
57.8n3
4147
1214
468
Intel Iris Plus Graphics 640Kaby Lake GT3eGen. 9.5 Kaby Lake300105064/128DDR3/DDR46412_14.4142537
~4.475%
145481n3
8067n5
11248n4
2561n5
2379n5
1310n5
1393.5n4
494.5n4
437n4
14117.5n2
171
31.2
56.1
6.5
56.2n4
9703n3
1677n2
778.5n2
NVIDIA GeForce 920MXN16V-GMRMaxwell965993180064DDR3, GDDR5124.5283187
~3.883%
110110n2
6545n2
9113.5n2
1983n5
1835n3
1336.5n2
1448n2
472
417
7407.5n2
12205.5n2
115.2n2
62.85n2
47.4n2
21.2
8.7
47.72n3
4366n3
1139n2
427n2
Intel Iris Graphics 540Skylake GT3eGen. 9 Skylake3001050eDRAM + 64/128eDRAM6412_14.4143027
~4.671%
126078n4
7235n6
11327n6
2364n6
2211.5n6
1354n5
1448n5
8828n2
13568.5n2
183
86
60.4
6.5
55.3n6
8277.5n4
1525.5n4
712.5n4
Apple A12 Bionic GPU71920
~7.517%
160199n5
245n6
127.55n6
85.8n5
Qualcomm Adreno 650Adreno 60025067012ES 3.271472
~621%
149017n25
206n42
125n42
88n43
75n6
ARM Mali-G78 MP20ValhallValhallES 3.251298
~2.517%
144n3
90n3
65n3
88.8
ARM Mali-G78 MP14ValhallValhallES 3.251298
~521%
98950n3
154n3
143n3
83n3
84.4
Apple A11 Bionic GPUPowerVR Rogue102285
~4.917%
112489n3
166.9n3
71n3
49n3
Apple A10X Fusion GPU / PowerVRPowerVR Rogue102382
~5.617%
110560n2
224.5n2
109.5n2
69.5n2
Intel UHD Graphics 24EUs (Alder Lake-N)Alder Lake XeGen. 1245075012_14.610346
~3.171%
55681n6
7021n7
8303n7
1717n7
1490n7
1092n7
1172n7
364n7
317n7
5768n6
10126.5n6
54.05n4
4.6n6
39.85n7
8288.5n6
644n6
504.5n4
NVIDIA Quadro K2000MN14P-Q3Kepler7451800128DDR32048114.1284214
~4.346%
8010n2
8766n2
1995n5
1798n4
1040
1046
7947n4
11991n5
17
6749n4
139.5n2
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
NVIDIA GeForce GTS 450GF106Fermi7831600128GDDR5102411404723
~11.338%
10231
12447
2095.5n2
1887.5n2
1463
1545
9757.5n2
16033.5n2
51783
NVIDIA GeForce GT 735MN14M-LPKepler5758891800 - 200064DDR3204811283910
~3.246%
4718.5n4
6757n4
1791n4
1713n4
933.5n4
1023.5n4
5687.5n2
8527n2
49.24n2
6155n3
255
ATI Mobility Radeon HD 5870Broadway-XTTerascale 27001000128DDR3, GDDR3, GDDR5102411405090
~15.817%
7999n10
12830.5n10
36969n3
6609n7
NVIDIA GeForce 825MKepler850180064DDR3204812 (FL 11_0)4.3283609
~3.638%
5421n2
7416n2
1859.5n2
1756.5n2
1050n2
1150n2
6000
9290
48.95
NVIDIA Quadro 5000MFermiFermi4051200256GDDR5204811404889
~10.18%
7766.5n2
12967
AMD FirePro M4000Cape Verde GLMGCN6004500128GDDR52048114.1284184
~5.246%
7729
12587
2186n2
1981n2
1617
1713
8627.5n2
13930.5n2
21.3
8477
470
ATI FirePro M7820Terascale 27001000128GDDR511404976
~17.34%
12531.5n2
AMD Radeon HD 6870MGranville-PROTerascale 26751000128DDR3, GDDR3, GDDR5102411404725
~19.94%
14396
ATI Radeon HD 4850RV770Terascale 1625993256GDDR351210.1555652
~7.621%
72891
4320
11272
8972
14160
AMD Radeon HD 8830MGCN5752000128DDR3204811.14.1284014
AMD Radeon HD 8770MGCN7754500128GDDR5204811.1284046
~5.921%
2206
1934
8530
12680
7033
AMD Radeon R7 M260XMarsGCN7154000128GDDR5409612 (FL 11_1)4.3283629
~463%
98071
6619
9034
2114
1903
1336
1396
7640
11820
129.1
37.9
36.37
6664
1212
399
NVIDIA GeForce GTX 460MN11E-GSFermi6751250192GDDR5153611404851
~10.725%
1805n7
1623n7
7507n12
12942n14
34874n2
5312.5n10
NVIDIA GeForce GT 730MKepler7251800 - 200064/128DDR3409611284000
~3.958%
86656
5782.5n8
7152n8
1886n7
1722n7
1001n9
1061n9
6788n6
10333n9
48
14.1
47.57n5
6540n7
276
NVIDIA GeForce GT 645MN13P-GSKepler7101800128DDR3204811284285
~4.442%
6537n2
8654.5n2
1962.5n4
1844.5n4
1146.5n2
1151.5n2
7356.5n4
11189n4
17.65n2
5548n2
AMD Radeon HD 7750MLombok XLGCN5754000128GDDR511.14.1284252
~2.58%
2382
2085
AMD FirePro M4100GCN6704000128GDDR5204812 (FL 11_1)4.3283727
~3.446%
5125
6297
1921
1728
815
857
9320
10.9
37.66
6578
306
AMD Radeon HD 8750MMars ProGCN6207752000 - 4000128GDDR5, DDR3204811.1284046
~3.454%
5610n9
8524.5n8
1863.5n10
1698n10
1186n9
1276.5n8
6840n7
8901.5n8
16.9
40.25n4
6519n8
1217.5n2
372.5n2
NVIDIA Quadro 3000MFermiFermi450625256GDDR5204811404679
~6.121%
1742
1539
7941
14220.5n2
6519
AMD Radeon R7 M270Opal XT / MarsGCN8251800 - 2000128DDR3409612 (FL 11_1)4.3283629
~3.267%
4830.5n2
6364.5n2
2014n2
1857.5n2
1177n2
1258n2
6715n2
9791.5n2
124.85n2
33.65n2
36.8
23.9
37.41n2
6141.5n2
1203n2
534.5n2
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
AMD Radeon R7 M265Opal XT / MarsGCN8259801800 - 200064/128DDR3409612 (FL 11_1)4.3283629
~3.542%
5334.5n6
8401.5n6
2012n5
1882n5
1211n5
1336n5
6175n2
8876n3
32.85n2
4563.5n2
NVIDIA Quadro FX 3800MN10E-GLM4G9x6751000256GDDR3102410555108
~14.917%
6779n3
12923n3
34790n2
4928n2
NVIDIA GeForce GTX 285MN10E-GTX1G9x5761020256GDDR3102410555401
~7.813%
6498n3
12988.5n2
4941
ATI Mobility Radeon HD 4870M98-XTTerascale 1550888256GDDR5102410.1555453
~6.813%
6631
10655n2
5190
AMD Radeon R7 (Bristol Ridge)Bristol RidgeGCN 1.290064/12812 (FL 12_0)4.4282753
~2.383%
52245.5n4
3942n5
5311n5
1794n5
1852n5
866n5
1013n5
358n3
347n3
5568
6644.5n2
90
25.9
24.3
13.9
3.5
23.16n5
4845n4
1450n3
362.5n2
NVIDIA GeForce GT 640MN13P-GSKepler6256451800 - 4000128DDR3, GDDR5204811284285
~4.558%
80836
5571
9024
1860.5n12
1728n12
1153
1225
7425n13
10625.5n14
12955
42.42
5635n11
1114
101
AMD Radeon R7 (Carrizo)CarrizoGCN 1.2/2.080064/12812 (FL 12_0)4.4283116
~2.863%
61071n2
4470n5
7431n5
1922n6
1792n4
1063n4
1137n4
5200n3
6528n4
90.95n2
24.47n2
28.68n4
5071n3
1345n3
394n3
AMD Radeon R7 (Kaveri)KaveriGCN 1.155368664/12812 (FL 12_0)283481
~2.750%
4719.5n2
6544
1794.5n4
1734n2
1039n2
851
4483
7921.5n2
31.18n2
4618n2
1112.5n2
460n2
AMD Radeon R7 M460GCN984200064124.3282854
~3.663%
105142
4755
6081
2256.5n2
2139n2
1054
1177
5304
8587
101.4
45.5
37.73n2
7777n2
1608
319
AMD Radeon HD 7730MLombok GLGCN5756751800128DDR311.14.1284252
~4.521%
1684n2
1478
7056n2
9615
5154
Apple A9X / PowerVR Series 7XTRoguePowerVR Rogue11_24.3 OpenGL ES 3.x143019
~317%
50604n2
140.15n2
65.55n2
61.25n2
AMD Radeon R7 M360GCN 2.01125200064DDR34096124.3283145
~3.175%
82837n2
4583n5
5746n5
2156n5
2029n5
1024n5
1146n5
463
410
5544
8273.5n4
111.2
30.15
15.4
34.29n5
7326n5
1523
313
NVIDIA GeForce GTX 280MN10E-GTXG9x585950256GDDR3102410555401
~15.817%
6672n5
12551n8
38780n3
5276.5n6
NVIDIA GeForce 920MN16V-GM-SKepler954180064DDR3409612 (FL 11_0)4.5283244
~375%
90619n3
5240.5n10
7242n10
1822n11
1718.5n10
1047.5n10
1161.5n10
363
329
5587n2
9003.5n4
98.35n2
46.85n2
35.6n2
44.28n11
5181.5n10
1323
586
AMD Radeon HD 8690MGCN775450064GDDR5102411.1284046
~438%
6093
7930
1790
1600
1151
1210
9413
40.98
7043
AMD Radeon 620GCN 1.01024225064DDR3, GDDR54096124.5281586
~24%
1730
AMD Radeon R7 M440GCN 1.01021200064DDR312282753
~3.271%
87170.5n2
4783.5n2
6040n2
2305n2
2245n2
1079n2
1197.5n2
433
381
5584n2
8800n2
112.1
27.1
33.01n2
8207
1516
289
NVIDIA Quadro FX 3700MNB9E-GLM3G9x550800256GDDR3102410655601
~6.613%
5053
11000n3
4481
AMD Radeon R7 M260Opal Pro / MarsGCN7159801800 - 200064/128DDR3409612 (FL 11_1)4.3283629
~2.954%
4385n8
5603n7
1942.5n8
1897n8
946.5n8
1067n7
5424.5n2
7810n3
14.2
33.81n7
4919n5
1334n2
295
AMD Radeon R7 M340Meso Pro DDR3GCN1021200064DDR3124.3283104
~3.167%
69098
5272.5n4
6153n4
2268n4
2148n4
1091.5n4
1208.5n4
5427
8982
109.3
28.7
27.9
33.47n4
6111.5n2
1455.5n2
274
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
AMD Radeon 520GCN 1.01030225064DDR3, GDDR52048124.5282460
~383%
77543
7240n2
8412.5n2
2232n2
2016.5n2
1232.5n2
1319n2
454.5n2
397n2
5266
6492
114.1
52.9
35.4
12
4.1
35.56n2
9124
929
325
AMD Radeon 610GCN 1.01030225064GDDR54096124.5281586
AMD Radeon Graphics (Ryzen 7000)RaphaelRDNA 2220012_24.66445
~8.554%
159603n2
16760n2
15247n2
3466n2
3026n2
2183
2287
845
725
11455
21514
101.35n12
17745n11
AMD Radeon 610MRDNA 2RDNA 2400220012_24.66451
~3.763%
13194.5n2
13645.5n2
1931.5n2
1704n2
1154n2
1217n2
425.5n2
369.5n2
3575
7195
104.6
77.65n2
11925
517
142
AMD Radeon RX Vega 6 (Ryzen 2000/3000)Vega Raven RidgeVega110012_1142168
~4.667%
94451
10091n3
16787n3
3111n3
2991n3
2025n3
2245n3
617.5n2
551.5n2
8189
12132
164.6
46.42n3
7146
1790
558
AMD Radeon RX Vega 5VegaVega140012_171438
~5.379%
128628
12224
18282
3763
3535
2231.5n2
2438
825
733
11704
15564
164.8
67.2
51.9
26.2
7.3
62.25n2
2134
678
Intel UHD Graphics G1 (Ice Lake 32 EU)Ice Lake G1 Gen. 11Gen. 11 Ice Lake3001100DDR412_14.5101662
~475%
94938n7
8380.5n14
11096.5n14
2329n15
2127n15
1444.5n14
1521n15
482n10
424.5n10
8750
10955n2
157.8
84.4
52.7
46.53n12
9382.5n2
1288n2
747n2
Intel UHD Graphics 630Kaby-Lake-H-GT2Gen. 9.5300115064/12812_14.4142266
~4.375%
106362n6
9545n9
9798n9
2030n12
1789.5n12
1115n11
1211n11
479.5n10
414.5n10
7704
13216.5n6
105
18.9
6.05n2
54.5n11
8578n7
894
696
Intel UHD Graphics P630Coffee-Lake-GT2Gen. 9.5300120064/12812_14.4142266
Intel UHD Graphics Xe 16EUs (Tiger Lake-H)Tiger Lake XeGen. 12350145012_14.610990
~3.583%
64701n3
8223n3
7982n3
1933n3
1654n3
1151n3
1203n3
404n3
348n3
7190n3
12452n3
123.6
77.3
41.9
52.8
4.75n2
46.26n3
12011n3
745n3
601
Intel HD Graphics 630Kaby-Lake-H-GT2Gen. 9.5 Kaby Lake300115064/12812_14.4143054
~3.983%
101178n3
9188n5
9715n5
1975n6
1729n6
985n5
1067n5
425
368
7685
12419n3
139.8
47.2
47.2
18.8
5.3
51.75n4
10479n2
962n3
647n2
Intel HD Graphics P630Kaby-Lake-H-GT2Gen. 9.5 Kaby Lake64/12812_14.4143054
~3.913%
8280
1040
400
Intel UHD Graphics G7 (Lakefield GT2 64 EU)Lakefield GT2Gen. 11 Ice Lake200500DDR412_14.5101296
~2.754%
87818
5835n2
8408.5n2
1873n2
1791.5n2
1190.5n2
1295.5n2
389
349
48.4
33.2n2
1076
491
Intel HD Graphics 530Skylake GT2Gen. 9 Skylake350115064/12812_14.4143054
~3.863%
80241.5n2
7652n11
7500n9
1579n9
1362n9
878n9
935n9
271
235
6831n3
11309n9
60.6
42.27n14
8926n11
868
Intel HD Graphics P530Skylake GT2Gen. 9 Skylake350105064/128DDR3/DDR412_14.4143027
NVIDIA Tegra X1 Maxwell GPUEristaMaxwell100032006411.24.5203266
~33.825%
57697n3
123n3
54n4
38.5n2
43721n2
41415.5n2
AMD Radeon R5 (Bristol Ridge)Bristol RidgeGCN 1.2/2.080064/12812 (FL 12_0)4.4282753
~2.958%
58018n2
4980.5n2
8255.5n2
1874n3
1720n3
1053.5n2
1283.5n2
6816.5n2
107
31.6
30.01n2
5132.5n2
1127
331
Intel UHD Graphics 620Kaby-Lake-Refresh GT2Gen. 9.53001150DDR3/DDR412_14.4142296
~592%
88745.5n100
8139n225
9324n225
1935.5n244
1744n244
1071n213
1168n213
435.5n88
380n88
7330n2
10642n34
34467
119.1n5
58.9n6
39.8n6
51.6
19.2
4.7n3
48.84n245
8194n75
937n19
653n13
Intel HD Graphics 620Kaby-Lake GT2Gen. 9.5 Kaby Lake300105064/128DDR3/DDR412_14.4142663
~7.171%
79066.5n48
5993n118
7725n117
1645.5n132
1508.5n132
858n110
934n110
365n13
321n13
5803n7
8449n23
67477
4.2n2
40.48n127
8162.5n58
875n22
564n14
AMD Radeon R6 (Carrizo)CarrizoGCN 1.2/2.080064/12812 (FL 12_0)4.4283116
~2.271%
53702.5n4
3524n5
4717n5
1550n11
1437.5n8
842n7
909n6
300
274
4830n2
6896n3
88.4
29.4
22.48n5
4507n5
918n3
301.5n2
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
Qualcomm Adreno 6901251835
~3.642%
9818n2
16707.5n2
3077n3
2912n3
2834.5n2
2932.5n2
909
811
13.7n2
558
Qualcomm Adreno 6851271835
~1.725%
1968
1927
167.7
31.7
373
2292
Qualcomm Adreno 6801271835
~1.521%
1847n2
1935.5n2
140.2
353
1890
ATI Mobility Radeon HD 4860M97-XTTerascale 16501000128GDDR510.1405400
ATI FirePro M7740RV740Terascale 16501000128GDDR5102410.1405246
~14.917%
6626n2
12109.5n2
34814
6663.5n2
ATI Mobility Radeon HD 4850M98Terascale 1500850256GDDR3102410.1555453
~15.717%
5263.5n4
9784n5
41976
5682
NVIDIA GeForce GTX 260MN10E-GTG9x550950256GDDR3102410555401
~13.417%
4901n8
10064n9
34304n4
3917n8
NVIDIA GeForce 9800M GTXNB9E-GTXG9x500800256GDDR3102410655631
~13.917%
4825n3
10138n5
35460n3
4491n3
NVIDIA Quadro FX 2800MNB10-GLM3G9x6001000256GDDR3102410555127
~17.913%
5783n2
11358.5n2
34844
AMD Radeon HD 8670DRichlandTerascale 3844114.2323846
~3.254%
6191
8288
1682
1547
1074
1157
6241
10007
116
44.93n2
8296
957
241.5n2
AMD Radeon HD 7690M XTThames XTXTerascale 27253600128GDDR5114.1404574
~4.921%
1550.5n2
1346
7054.5n2
10919n2
5514
AMD FirePro M5950Whistler-XTTerascale 2725900128GDDR51024114.1404629
~5.121%
1500
1350
6257
10592
7975
NVIDIA GeForce GT 640M LEN13P-LPFermi / Kepler5001800 - 4000128DDR3, GDDR5204811284285
~4.221%
1385n5
1259n5
5788n5
8858n5
5858n4
AMD Radeon R6 (Kaveri)KaveriGCN 1.153365464/12812 (FL 12_0)283481
~2.158%
3442n4
5336n4
1306n5
1184n4
707.5n4
770.5n4
4114n3
5989n3
85
10.6
21.42n4
3868n3
776.5n2
257.5n2
AMD Radeon HD 8650MGCN650450064GDDR5204811.1283994
~2.317%
4300
7500
920
1050
AMD Radeon HD 8730MGCN6502000128DDR3204811.1284046
~3.738%
5206
8054
1507.5n2
1370.5n2
1073
1150
6310.5n2
8620n2
15.7n2
AMD Radeon HD 6770MWhistler-XTTerascale 2675 / 725800128GDDR5114.0404728
~12.225%
1475.5n10
1328n9
6106.5n8
10056n7
47877
6907.5n6
NVIDIA GeForce GT 635MN13E-GE2Fermi6607531800128/192DDR3, GDDR5204811404392
~421%
1223n7
1110n7
4995n6
8517.5n6
5707.5n6
NVIDIA GeForce GT 555MN12E-GE-BFermi525753785-900128, 192DDR3,GDDR5307211404726
~6.325%
1299n15
1146n13
5884n12
10568n13
14449n2
5436n13
ATI Radeon HD 5670RV830Terascale 27751000128GDDR5102411405083
~15.621%
1684
1468
6584
11921
54104
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
ATI Mobility Radeon HD 5850Broadway-PROTerascale 26252000128DDR3, GDDR3, GDDR5102411405090
~13.917%
5591.5n12
9655n10
35281
5573n6
AMD Radeon HD 6850MGranville Pro/LPTerascale 2575 / 675800128DDR3, GDDR511404726
~10.625%
1644n2
1469.5n2
6245.5n2
9336
38862
7291n2
AMD FirePro W2100MarsGCN6801800128DDR3204812282996
~2.829%
6550
7771
1036
1085
14.9
35.44
243
NVIDIA Quadro 2000MFermiFermi550900128DDR3204811404679
~521%
1421n3
1261n2
6633.5n2
11656n3
5671
NVIDIA GeForce 9800M GTNB9E-GT2G9x500800256GDDR351210655631
~13.517%
4011
9258n3
35284.5n2
4526.5n2
NVIDIA GeForce 8800M GTXNB8E-GTXG9x500800256GDDR351210655870
~13.317%
3422
9217n15
34985n14
4464.5n14
NVIDIA Quadro FX 3600MNB8E-GLMG9x500800256GDDR351210655774
~19.613%
8135.5n2
41502
6193
NVIDIA GeForce GT 445MN11E-GEFermi5901250192 / 128DDR3, GDDR511404851
~4.321%
1291
1148
5249n2
10304
4100
NVIDIA GeForce GTS 360MN11E-GS1GT2xx5751800128DDR3, GDDR3, GDDR5102410.1405090
~5.913%
5522n3
9865
3664.5n2
NVIDIA GeForce GT 240 GDDR5GT215GT2xx5501700128GDDR551210.1405141
~7.88%
5221
10166
AMD Radeon HD 7690MThames XT / XTXTerascale 26007253600/1800128GDDR5/DDR3114.1404574
~4.621%
1306n2
1141
5883.5n2
9660
7618
Intel HD Graphics 5600Broadwell GT2Gen. 8 Broadwell300105064/12812 (FL 11_1)4.3143118
~333%
7499
7757
1651
1431
944
991
37.89
7445
AMD Radeon HD 8570DRichlandTerascale 3844114.2324097
~2.854%
5520
7096
1314
1181
869
918
5288
8921
98
35.08
7473
681
173
AMD Radeon HD 8670MGCN775200064DDR3102411.1284046
~2.550%
3977n5
4840n5
1513n5
1396n5
767n5
829n5
4077n3
4670n3
9.4n2
64.38n2
6007.5n4
247n2
AMD Radeon HD 7660DTrinityTerascale 3633800114.2324097
~350%
5595.5n2
7418.5n2
1557n3
1433n3
932n2
997n2
5840n2
9109n3
106
7504n2
876n2
224n3
AMD Radeon HD 6750MWhistler-PROTerascale 2600900128GDDR511404728
~11.325%
1305.5n4
1158.5n4
5483n5
9361n5
43578
7617n3
NVIDIA Quadro K1000MN14P-Q1Kepler8501800128DDR3204811.14.1284214
~4.121%
1232n2
1102n2
5164.5n2
8340.5n2
6750n2
NVIDIA GeForce GT 550MN12P-GTFermi740900128DDR3, GDDR5153611404726
~8.925%
1099.5n6
973.5n6
4781.5n6
8776n3
32347
5380n5
AMD Radeon HD 8590MGCN620450064GDDR511.1284046
NVIDIA GeForce GTS 260MN10E-GSGT2xx5501800128GDDR3, GDDR5102410.1405296
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
NVIDIA GeForce GTS 160MN10E-GS1G9x600800256GDDR3102410555401
~11.917%
3965
9327
30011
3432
NVIDIA GeForce 9800M GTSNB9E-GTG9x600800256GDDR3102410655631
~17.613%
4060
9501.5n2
36940
NVIDIA GeForce GT 430GF108Fermi700900128DDR3102411404813
AMD Radeon HD 6830MGranville-LPTerascale 2575900128DDR3, GDDR3102411404725
ATI Mobility Radeon HD 5830BroadwayTerascale 2500800128DDR3, GDDR3102411405090
~6.28%
4785n2
8050n3
AMD Radeon HD 6730MWhistler-XTTerascale 2725800128DDR311404728
~421%
1269
1141
4438
7918
7282
NVIDIA GeForce 9800M GSNB9E-GS1G9x530800256GDDR3102410555522
~11.317%
3245
8449.5n4
28740.5n2
3684n3
ATI Mobility Radeon HD 4830M97Terascale 1550700128GDDR3, DDR310.1405400
~4.713%
3863
7155
4250
ATI Mobility Radeon HD 5770Madison-XTTerascale 2650800128GDDR511405090
AMD Radeon HD 6570MCapilanoTerascale 2650900128DDR3, GDDR5102411404767
~3.921%
1216
1067
4107
7553
7319
AMD Radeon HD 8650GRichlandTerascale 3533720114.2323880
~2.863%
71794
4180n3
6453n3
1479.5n6
1433n5
834n3
905n3
4689n2
6732.5n2
100
10.9
33n3
5411
983
84
AMD Radeon HD 7670MThames XTTerascale 26001800128DDR3, (GDDR5)114.1404574
~450%
5267n3
6535n3
1186.5n14
1061.5n14
805n3
824n3
4995n14
8203n15
16914
6696n13
771
206
NVIDIA GeForce GT 630MN13P-GL/GL2Fermi6721800128DDR3114.0284392
~3.958%
58812
4641n4
5577n4
1168n27
1035n26
674n3
719n3
4868.5n22
8610n26
14216.5n2
10
5865n24
588n2
122
AMD Radeon HD 7560DTrinityTerascale 3760114.2324097
~2.750%
5059
6415
1210
1076
751
791
4897
8202
32.9
7327
646
162
NVIDIA GeForce GTS 150MN10E-GE1G9x400800256GDDR3102410.0555401
AMD Radeon R5 M335Exo XT DDR3GCN 1.01070220064DDR34096124.3283104
~2.667%
70485
4167
4590
1889
1784
824
911
4772
5921
73.1
21.5
19.4
30.91
8555
1497
291
AMD Radeon R5 M330Exo Pro DDR3GCN 1.01030200064DDR3124.3283144
~2.646%
4427n7
4897n7
1782n7
1689n7
843n7
922n7
5972n2
27.96n7
6386n7
690
597
AMD Radeon R5 M430MarsGCN955174664DDR312 (11_1)4.3282784
~2.363%
4744
5493n2
1821.5n2
1689n2
899
1004n2
4697
6246
77
23.5
21
29.85n2
7430n2
1219
699
AMD Radeon R5 M255Topaz Pro / SunGCN9401800 - 200064DDR34096124.3283515
~2.854%
4859n5
6053n5
1907n5
1784n5
980n4
1080.5n4
5399
8935
16.9
34.68n5
5647.5n4
1073
292
AMD Radeon RX Vega 3Vega Raven RidgeVega600120012_1142168
~388%
80755n12
6044n16
8536n16
1947n15
1723.5n14
1065.5n16
1171.5n16
441.5n10
393n11
5440.5n2
11103n5
64.5n2
23n2
19.05n2
43
13.9
4.4
28.19n16
7401n7
1008n2
346n2
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
NVIDIA Quadro 1000MFermiFermi700900128DDR3204811404679
~10.425%
1064
943
4566
8509n3
40779
6771
NVIDIA GeForce 910MN15V-GMKepler641200064DDR3204812 (FL 11_0)283027
~2.471%
42738
3677
6636
1432
1413
913
1022
4325
6741
78.7
42.6
30.9
14.4
23.99
2500
929
189
NVIDIA GeForce 820MN15V-GMFermi775180064DDR3204812 (FL 11_0)283629
~2.650%
4520.5n10
6073.5n10
1383n11
1266.5n10
829n9
897n9
5105.5n4
7518n5
35.63n12
5557n8
718n2
379.5n2
Intel HD Graphics 520Skylake GT2Gen. 9 Skylake300105064/128DDR3/DDR412_14.4143027
~3.979%
73656n21
5357.5n114
6700.5n114
1435.5n130
1293.5n130
752n98
803.5n98
297
263
5722n5
8656n27
23728.5n2
87.15n4
39.4n4
26.4n2
37n118
7578n68
852n10
474n4
Intel Iris Graphics 6100Broadwell GT3Gen. 8 Broadwell300110064/12812 (FL 11_1)4.3143266
~3.271%
89341
6141n5
7798n4
1768n5
1694.5n4
864.5n4
874n3
425
377
6531
8764n3
102.1
48.8
36.43n5
7832.5n4
1115
390
Intel UHD Graphics G4 (Lakefield GT1 48 EU)Lakefield GT1Gen. 11 Ice Lake200500DDR412_14.5101296
NVIDIA GeForce GT 720MN14M-GEFermi6259381800 - 200064DDR3204811283910
~3.667%
59694
4522n6
5426n6
1321n5
1213n5
779n5
822n5
4584.5n4
7896n5
15036
50
11.6
36.01n4
5824n5
678.5n2
239n2
NVIDIA GeForce 8800M GTSNB8E-GTG9x500800256GDDR351210655870
~1117%
2552
8385n3
28301n2
3164
AMD Radeon R5 M240Jet XT / SunGCN1030180064DDR311.2283392
~2.354%
4338.5n2
5500n2
1669n2
1588n2
871.5n2
949n2
5066
5698n2
23.5
26.89n2
4578n2
1152
411
AMD Radeon R5 M320Exo UL/ULT/ULPGCN 2.0855200064DDR3124.3283144
~2.921%
45756
3695
4969
1660
1652
AMD Radeon R5 M230Jet / SunGCN8551800 - 200064DDR34096124.3283629
~2.638%
3899n3
4814n3
1302n3
1175n3
720n3
771n3
5145
23.67
6314n2
AMD Radeon R5 M315Meso LE (DDR3)GCN970180064DDR32048124.3283104
~1.28%
5040
920
AMD Radeon R5 M420JetGCN780200064DDR34096124.3282753
AMD Radeon RX Vega 2Vega Raven RidgeVega110012_1122168
AMD Radeon R5 (Stoney Ridge)Stoney RidgeGCN 1.2/2.08006412 (FL 12_0)4.4282753
~1.979%
51382n3
2995n3
4755n3
1263n4
1264n4
712n3
772n3
281.5n2
254.5n2
3346
5174n2
67.8
21.8
20.4
13.7
22.97n4
3773n4
597n2
124
Apple A10 Fusion GPU / PowerVRPowerVR Rogue02654
~3.217%
63386n5
114.15n6
59.65n6
41.75n4
ATI Mobility Radeon HD 5750Madison-XTTerascale 25501600128DDR, GDDR3, GDDR5102411405090
AMD Radeon HD 8570MGCN6501800 - 200064DDR311.1284046
~2.346%
3958n3
4867n3
1364n3
1255n3
732n3
790n3
4365
5650n2
16.99
5829n3
258
Intel HD Graphics 6000Broadwell GT3Gen. 8 Broadwell300100064/12812 (FL 11_1)4.3143266
~2.667%
5872n5
7660n4
1513.5n4
1395.5n4
903n3
951n3
374
334
6188n3
8091n3
39.46n2
3.7
30.69n6
6527n3
1021n3
350n3
NVIDIA Quadro K610MKepler954260064GDDR51024114.3283797
~3.146%
6051.5n2
5837.5n2
1294.5n2
1143.5n2
712.5n2
755.5n2
5116n2
8157
9.4
6823.5n2
48
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
AMD Radeon HD 8550MGCN700180064DDR311.1284046
~2.821%
1242
1307
3705
4700
11.2
Intel Iris Graphics 5100Haswell GT3Gen. 7.5 Haswell200120064/12811.14.0223845
~2.867%
71489
4950n4
6943.5n4
1245.5n4
1151n4
823n4
878.5n4
5865
6928.5n4
83.5n2
16.3
13.9
21.4n3
6817.5n4
1062n2
419.5n2
NVIDIA GeForce GT 540MN12P-GSFermi672900128GDDR5, DDR3153611404726
~8.825%
989n37
888n35
4355n43
7986n41
32969n4
5441n45
AMD Radeon HD 6650MWhistler-PROTerascale 2600900128DDR311404728
~10.125%
1158n7
1037n7
4050.5n6
7307n5
40671
6775.5n6
Intel HD Graphics 4600Haswell GT2Gen. 7.5 Haswell200135064/12811.14.0223849
~567%
42242.5n2
5040.5n28
5613n28
1041n26
910.5n26
592.5n24
635.5n24
5203n15
7362n14
38441
78
14.35n2
18.8n17
7168.5n22
767n5
284.5n4
ATI Mobility Radeon HD 5730MadisonTerascale 2650800128DDR3, GDDR311405090
~9.917%
3809n5
7265n3
23762n3
5418.5n8
Intel HD Graphics 5500Broadwell GT2Gen. 8 Broadwell30095064/12812 (FL 11_1)4.3143266
~2.479%
58776n8
4790.5n72
5544n61
1079.5n72
979n65
634.5n62
663n53
289
255
4798n13
6998n22
70.9n5
30.6n5
105
9.3
25.35n64
5270.5n52
695n11
328n13
ARM Mali-G77 MP11ValhallValhallES 3.271366
~4.221%
82052.5n4
199n5
108n5
80n5
71.6
ARM Mali-G77 MP9ValhallValhallES 3.271366
~3.621%
60765
182.5n8
115n8
78n8
53.8n6
ARM Mali-G76 MP16BifrostES 3.271932
~3.621%
70607.5n6
151.5n6
103n6
53.5n6
53.3n3
ARM Mali-G610 MP6ValhallValhallES 3.24934
~3.817%
271.5n4
145.5n4
97.5n4
94.35n2
Qualcomm Adreno 644ES 3.24952
~2.217%
148n5
88n5
65n5
51.69n2
Qualcomm Adreno 64381212ES 3.26855
~2.317%
159
90
69
51.82
Qualcomm Adreno 642ES 3.25952
~2.317%
153
90
65
47.98
ARM Mali-G610 MP3ValhallValhallES 3.24934
~1.817%
117
71
49
39.67
Qualcomm Adreno 642LES 3.26952
~3.721%
89307.5n2
133n15
78n15
57n15
46.9n5
Qualcomm Adreno 64012ES 3.2102132
~4.521%
106829n23
166n26
99.5n26
69n26
64.9
Qualcomm Adreno 63012ES 3.2102132
~2.638%
81385.5n28
3108
6347
770
821
150n28
75n27
58n28
257
ARM Mali-G76 MP12BifrostES 3.271932
~3.717%
68654n6
96.5n6
85n6
59n6
ARM Mali-G76 MP10Bifrost720ES 3.271932
~317%
47811.5n10
119.5n10
75.5n10
51.5n10
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
ARM Mali-G68 MP5ValhallValhall5822
~1.917%
119n3
79n3
52n3
41.69n2
ARM Mali-G57 MP6ValhallBifrost71260
~2.621%
57067
107.5n2
66n2
45.5n2
34.85
ARM Mali-G57 MP5ValhallBifrost71260
~2.321%
38974
115
71
52
41.98
Qualcomm Adreno 54071012ES 3.2102459
~17.150%
56046.5n20
2359
4259
831n2
791n2
452n2
513n2
111.5n18
54n19
40n19
44696
38762.5n2
ARM Mali-G72 MP18Bifrost850ES 3.2162174
~317%
46610n3
145n4
73.5n4
45.5n4
ARM Mali-G71 MP20MimirBifrost900ES 3.2162452
~33.525%
36347n3
105n3
51n3
42n3
43464n3
42183n3
Intel UHD Graphics (Jasper Lake 32 EU)Gen. 11Gen. 1135090012_14.5101068
~2.783%
72158n4
5531.5n6
6977n5
1652n5
1589n5
982n7
1016n6
372n5
330n5
6316.5n2
6074n3
91.2n2
53.7n2
33.95n2
12.6
4.55n2
31.59n7
6561n4
1012.5n4
387n4
Intel UHD Graphics (Elkhart Lake 32 EU)Gen. 1140085012_14.5101068
ARM Mali-G72 MP12Bifrost850ES 3.2162249
~25.825%
33740n8
118n8
59n8
38.5n8
39033
25922
ARM Mali-G71 MP8MimirBifrost900ES 3.2162751
~30.125%
35210n7
73.5n8
32n8
23n8
42979n2
34536n2
AMD Radeon R5 (Carrizo)CarrizoGCN 1.2/2.080064/12812 (FL 12_0)4.4283116
~2.233%
4365
5804
1686
1711
898
1001
25.12
4880
Intel UHD Graphics 617Kaby-Lake GT2Gen. 9 Amber Lake300115064/128DDR3L/LPDDR312_14.4141872
~3.546%
77156
4841
7231
1671.5n2
1540.5n2
889.5n2
997n2
337n3
300n3
8662
39.1n2
Intel UHD Graphics 615Kaby-Lake GT2Gen. 9 Amber Lake300100064/128DDR3L/LPDDR312_14.4141933
~2.375%
60419.5n6
4660n9
6602n9
1312.5n10
1221n10
751n10
842.5n10
275n6
242.5n6
3813
6601.5n2
67.3n2
34.42n2
23.22n2
35.49n10
6378n4
860
473
Intel UHD Graphics (Jasper Lake 24 EU)Gen. 11Gen. 1135080012_14.5101068
~2.238%
6659
8388
1654
1458
1043
1106
355
312
36.9
Intel HD Graphics 615Kaby-Lake GT2Gen. 9 Kaby Lake300105064/128DDR3L/LPDDR312_14.4142663
~11.288%
70743n11
4893n13
6387n13
1362.5n14
1242.5n14
762n11
853n11
296.5n6
261n6
4102n2
7399n5
19381
76.3
42.7
38.3
42892
33662
34.97n13
6470n7
693n4
369n3
AMD Radeon R5 (Kaveri)KaveriGCN 1.151462664/12812 (FL 12_0)283481
~1.554%
2594
3959
1020n2
901
527
572
3011
4317
14.4
18.03
3611
520
183
ATI FirePro M5800MadisonTerascale 2650800128DDR3, GDDR5102411405037
~5.58%
3760
7237n3
NVIDIA NVS 5400MN13P-NS1Fermi6601800128DDR32048114.0404214
~4.221%
1260.5n2
1119n2
5197.5n2
9192.5n2
6012n2
NVIDIA GeForce 710MN14M-GLFermi775800180064DDR3204811283910
~4.142%
4389.5n2
5323n2
1226n2
1106.5n2
726n2
768.5n2
4641n2
7993n2
13110
6193n2
AMD Radeon HD 7660GTrinityTerascale 3497686114.2324231
~4.358%
65558
4190n2
6408.5n2
1147n3
1057n2
4523n2
7317n2
22817
93
4.5
30.3n4
5576.5n2
771
179
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
NVIDIA GeForce GT 435MN11P-GTFermi650800128DDR311404851
~8.925%
896.5n2
799n2
3869.5n2
7510.5n2
35402
4567n3
Intel HD Graphics 5000Haswell GT3Gen. 7.5 Haswell200110064/12811.14.0223845
~2.667%
65904
4496.5n8
5693.5n8
1125.5n10
1033.5n10
651n6
715.5n6
4276.5n6
5940n6
72.5n2
22.5
12.1
27.4n2
6946.5n8
816.5n2
306n3
NVIDIA Quadro K510MKepler846240064GDDR51024114.3283797
ATI Radeon HD 5570Redwood LETerascale 2650667 - 900128DDR3102411405053
~1125%
1175
1025
3917
7146
44354
9247
AMD Radeon HD 6550MCapilano-PROTerascale 2600800128DDR3102411404767
~8.325%
1100n3
993n3
3731n2
7143n2
31250.5n2
5286n3
AMD Radeon HD 7590MThames XTTerascale 2600320064102411404359
NVIDIA GeForce GTS 350Mn11e-ge1GT2xx5001600128DDR3, GDDR3, GDDR5102410.1405090
~11.54%
8303.5n2
NVIDIA GeForce GTS 250MN10E-GEGT2xx5001600128DDR3, GDDR3, GDDR5102410.1405296
~1217%
3659n6
7484n5
32373
4451n5
AMD Radeon HD 6630MWhistler-LPTerascale 2485800128DDR311404728
~3.421%
990n12
877n11
3720n13
6934n11
5952n11
AMD Radeon HD 7650MThames-LP/ProTerascale 24505501800128DDR311404360
~3.721%
1058.5n6
945.5n6
4562.5n6
7333n6
6705n6
AMD FirePro M2000Turks GLMTerascale 2500320064GDDR5102411.14.2404184
~3.521%
954
841
3956
6086
8471
AMD Radeon HD 7570MThames-Pro / XTTerascale 24506503200 / 180064GDDR5 / DDR311404360
~2.546%
4329
4623
926n7
829n7
562
569
3727n6
5998.5n6
8.5
8310.5n6
155
AMD Radeon HD 7630MThames-LPTerascale 24501800128DDR311404360
NVIDIA Quadro FX 1800MGT2xx5601100128DDR3, GDDR5102410.1405065
~5.78%
3451.5n2
7572.5n2
ATI Mobility Radeon HD 5650Madison ProTerascale 2450650800128GDDR3, DDR3102411405090
~546%
4341
6036
955n2
855.5n2
706
730
3188n29
6469n25
26832n12
9.9
4846.5n30
AMD Radeon HD 8510GTrinityTeraScale 3450554114.2323858
~1.54%
1100
AMD Radeon HD 6530MCapilano-LPTerascale 2500800128DDR3102411404767
~5.48%
3334
7119.5n2
AMD Radeon HD 8550GRichlandTerascale 3515720114.2323930
~2.763%
67801
4060
6107
1280
1179
746
792
4174
7314
87
10.8
28.9
5224
575
132
NVIDIA Quadro K500MN14M-Q1Kepler850180064DDR3 / GDDR52048114.3284214
NVIDIA GeForce GT 625MN13M-GSFermi625180064DDR3102411284092
~1.18%
1037
921
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
NVIDIA GeForce GT 620MN13P-GLP / N13M-GSFermi625715180064 / 128DDR3102411404285
~2.642%
4022.5n2
5269n2
1041.5n10
933.5n10
696n2
737.5n2
4219n8
7462n10
4989n9
521
NVIDIA GeForce GT 525MN12P-GEFermi600900128GDDR5, DDR3153611404726
~7.125%
901n11
799n11
3839.5n8
7058.5n8
25685
4531n8
AMD Radeon HD 6550DLlanoTerascale 260011324551
~6.925%
1063.5n2
951.5n2
3929.5n2
6730.5n2
23665.5n2
5681
AMD Radeon HD 7610MThames-LETerascale 24501600128DDR311404360
~2.838%
4475
5242
849n3
749n3
592
605
3691n3
7100n3
6930n3
AMD Radeon HD 7620GTrinityTerascale 3360497114.2324231
~2.142%
3064
5378
1030
948
659
716
2399
5553n2
4088
578
AMD Radeon HD 8470DRichlandTerascale 3800114.2323845
~1.954%
2587
5583
937
854
598
670
3426
6367
75
27.15
5141
513
129
AMD Radeon HD 7640GTrinityTerascale 3497686114.2324231
~525%
704n2
655.5n2
2599n2
4173n2
18117
4489.5n2
PowerVR GM9446RoguePowerVR Rogue64ES 3.2122275
~1.317%
28629n2
45n2
22n2
14.5n2
Qualcomm Adreno 53062411.1ES 3.1 AEP142922
~2825%
32997n21
88n21
44.5n20
31n21
38353n7
33028n7
PowerVR GXA6850RoguePowerVR Rogue450 (?)128103.x, 4.x, OpenGL ES 3.0203384
~27.625%
31542
70.4n3
35n2
17.9
41488
29502
NVIDIA Tegra K1 Kepler GPULogan / NVEA / GK20AKepler950114.4283630
~22.229%
37318.5n4
60n5
31.2n3
23
26.9
37063n2
28893.5n2
Apple A9 / PowerVR GT7600RoguePowerVR Rogue11_24.3, ES 3.x143019
~2.117%
43372.5n4
79.95n4
39.75n4
28.1n3
ARM Mali-T880 MP12Midgard (4th Generation)Midgard (4rd-gen)65011.2 (FL 11_2)ES 3.1142851
~27.725%
33031n3
82n4
39n4
28n3
40671.5n2
30097n3
ARM Mali-G76 MP4Bifrost800ES 3.271932
~1.821%
36546n5
80n8
49.5n8
30n8
29.86n2
Intel HD Graphics 515Skylake GT2Gen. 9 Skylake300100064/128DDR3L/LPDDR312_14.4143027
~3.571%
56787n6
3850.5n26
5467n26
1115n29
1014n29
623.5n22
691.5n22
4672
6446n14
20345
73.2n5
36.7n5
27.7n2
29.4n31
6088n15
704n5
416n4
Intel UHD Graphics 610Kaby Lake GT1Gen. 9 Kaby Lake30095064/128DDR3/DDR412_14.4141809
~288%
42712.5n2
4333.5n2
5276.5n2
1045.5n2
922.5n2
616n2
663.5n2
222
194
3996
6902n2
71.9
33.1
23.1
25.5
10.2
3.35n2
28.37n2
5209.5n2
481.5n2
304.5n2
Intel HD Graphics 610Kaby Lake GT1Gen. 9 Kaby Lake30095064/128DDR3/DDR412_14.4142539
~283%
41956.5n4
4300n4
5281n4
996n5
880n5
566n5
607.5n4
223n2
194.5n2
3715
6386.5n2
72.4
32.3
23.8
11.8
3.3
26.21n4
5084n3
484
291
Intel HD Graphics 4400Haswell GT2Gen. 7.5 Haswell200110064/12811.14.0223845
~3.171%
37082
3940n94
4953n91
828n97
735.5n94
525n84
569n81
3583n43
5164n54
20486
60.5n2
16.2
8.2n3
20.37n58
6130n65
575n7
234n15
AMD Radeon HD 8610GRichlandTerascale 3533626114.2323858
~1.454%
2463
2749
941
889
441
475
2203
3538
15.9
17
3972
612
361
Intel HD Graphics 510Skylake GT1Gen. 9 Skylake30095064/128DDR3/DDR412_14.4143027
~2.571%
43274
4721
5664
985
847
570
621
3798
7253
121.9
64.6
51.7
9.3
27.98
7348
500
302
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
NVIDIA NVS 5200MN13M-NSFermi625180064DDR3102411284214
~2.746%
4352n3
4949n3
1136n5
1008n5
671n3
704n3
4268n3
7502.5n4
9.8
6266.5n4
54
ATI Mobility Radeon HD 565vTerascale 1675800128GDDR3, DDR3, DDR210.1554972
AMD Radeon HD 7550MThames-LP / ProTerascale 24505503200 / 180064GDDR5 / DDR311404360
~3.546%
3573
4081
843n3
756n3
545
569
2927n3
4932n3
16206
7.4
4935
ATI Mobility Radeon HD 4670M96-XTTerascale 1675800128GDDR3, DDR2, DDR310.1555453
~9.917%
3004.5n2
6828n3
24975n2
4567n4
NVIDIA GeForce GT 425MN11P-GSFermi560800128DDR3102411404870
~7.825%
832n3
753n3
3380.5n8
6706.5n8
30484.5n4
4098n10
NVIDIA GeForce 9700M GTSNB9E-GSG9x530800256GDDR351210655631
~11.117%
2825n3
7779n2
28921
3843
NVIDIA Quadro FX 2700MNB9E-GLM2G9x530800256GDDR3102410655601
~13.117%
2799
7660
36280
4394
NVIDIA GeForce GT 335MN11P-GS1GT2004501066128DDR3, GDDR3102410.1405090
~817%
3106n5
6892n5
18184n2
3790.5n4
AMD Radeon HD 7600GTrinityTerascale 3320424114.2324122
~1.921%
672n3
628n3
1639
3504n3
3637n3
ATI Mobility Radeon HD 3870M88-XTRV6xx660850256GDDR310.1555767
~9.417%
3458
8635.5n2
21439
3290
ATI Mobility Radeon HD 5165Terascale 1600900128(G)DDR3102410.1555090
~8.617%
2789
6125
21269n2
4367n2
ATI Mobility Radeon HD 560vTerascale 1550800128GDDR3, DDR3, DDR210.1554972
~4.78%
2459.5n2
6224
ATI Mobility Radeon HD 4650M96Terascale 1550800128GDDR3, DDR2, DDR310.1555453
~10.217%
2412.5n6
6207n10
26779n14
4973.5n14
NVIDIA GeForce GT 220GT216GT2xx615790128DDR3102410.1405177
~9.44%
6845
NVIDIA GeForce GT 420MN11P-GEFermi500800128(G)DDR311404851
~5.525%
775
685
3051n2
6148n3
18904n2
3464n4
AMD Radeon HD 7530MThames-LPTerascale 2450180064DDR311404360
ATI Mobility Radeon HD 3850M88RV6xx580750256GDDR310.1555858
~3.613%
1879.5n2
6095n2
2756
NVIDIA GeForce GT 330MN11P-GE1GT2xx5751066128GDDR2, GDDR3, DDR3102410.1405087
~9.717%
2657.5n18
6232n21
26029.5n14
3409n25
NVIDIA Quadro FX 880MN10P-GLMGT2xx550790128GDDR3, DDR3102410.1405090
~11.917%
2638.5n4
6378n5
33331n4
4846n3
NVIDIA Quadro NVS 5100MN10P-NSGT2xx550800128DDR3102410.1405090
~9.417%
2634
6325
24702
3700n2
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
NVIDIA GeForce GT 240MN10P-GSGT2xx550800128DDR3, GDDR2, GDDR3102410.1405296
~8.717%
2371.5n4
5952n5
22708n10
3466.5n10
AMD Radeon HD 7490MSeymour XTXTerascale 2800380064GDDR551211404391
Intel UHD Graphics (Elkhart Lake 16 EU)Gen. 1125085012_14.5101068
~1.446%
30044
2873
3762
701
650
489
523
14.24
4048
476
147
Intel UHD Graphics (Jasper Lake 16 EU)Gen. 11Gen. 1135080012_14.5101068
~1.979%
43609.5n4
4596.5n8
4910.5n8
975.5n8
854n8
626n8
645n8
203n5
178n5
3411
6438n4
56.25n2
30.7n2
16.45n2
3.5n2
26.24n8
5649.5n4
548n4
226n3
Intel UHD Graphics 605Gemini LakeGen. 9 Apollo Lake30075064/128DDR4 / LPDDR412_14.4142195
~1.488%
45008n9
3154n11
3359.5n10
748n14
648n13
419n11
454n10
129
113
2162
4171n3
45.5n3
22.1n3
16.5n3
23.3
6.5
1.7
18.09n14
3773n7
490.5n2
142n2
Intel HD Graphics 505Apollo LakeGen. 9 Apollo Lake30075064/12812_14.4142661
~1.375%
32480.5n6
2837.5n8
3413.5n8
679n16
620n16
383n7
408n7
107.5n4
94n4
2350.5n2
4302.5n2
47.2
18.9
14.1
16.63n16
3155n9
382
141.5n2
Intel HD Graphics 5300Broadwell GT2Gen. 8 Broadwell10090064/12812 (FL 11_1)4.3143388
~1.967%
59555n4
3041n20
3720n20
731n21
647n21
407n19
439n19
3104n2
4775n8
55n5
30.1n3
7.6
18.36n22
4018n17
518.5n2
210n3
AMD Radeon HD 7510MThames-LETerascale 2450160064DDR311404360
NVIDIA GeForce Go 7950 GTXG71MG7x575700256GDDR35129c906273
~20.58%
5659n2
32000
NVIDIA Quadro FX 3500MG71GLMG7x575700256GDDR35129c906133
~7.34%
5254
NVIDIA GeForce 9700M GTNB9E-GEG9x625800128GDDR2, GDDR351210655672
~11.713%
1749.5n2
5908.5n2
25300
NVIDIA GeForce GT 230MN10P-GEGT2xx500800128GDDR2, GDDR3102410.1405296
~8.217%
2363
5647
21595.5n2
2819n2
ATI Mobility Radeon HD 550vTerascale 1450600128GDDR3, DDR3, DDR210.1554972
~3.813%
2214
5260
4733
AMD Radeon HD 7480DTrinityTerascale 3614724114.2324097
~1.850%
2952
4236
655
580
412
445
2595
5450
19.1
6391
382
84
Intel HD Graphics 4000Ivy BridgeGen. 7 Ivy Bridge350135064/128113.1224650
~2.767%
44323.5n2
3282.5n56
3768.5n56
603n125
523n121
444n45
480n46
2959n122
4412.5n140
15220n8
39n7
7.35n4
11.91n2
5157n121
537n19
66n13
ARM Mali-T760 MP8Midgard (3rd Generation)Midgard (3rd-gen)70077211ES 3.1143211
~24.225%
26964n5
53.5n4
22.5n6
13
36339.5n4
26124n4
ARM Mali-G71 MP2MimirBifrost770ES 3.2162751
~0.617%
11251.5n24
22n22
11n22
6.6n22
AMD Radeon HD 6620GLlanoTerascale 240011324566
~4.225%
726.5n4
650n2
2442.5n4
3595.5n2
15023
3379n3
AMD Radeon R4 (Stoney Ridge)Stoney RidgeGCN 1.2/2.06006412 (FL 12_0)4.4282753
~1.583%
42677n3
2458n3
3416n3
1003.5n4
972.5n4
383n3
583n3
228n2
205n2
2542
4246.5n2
57.2n2
18.5n2
22.65n2
8.35n2
2.95n2
18.6n4
2881n3
612n2
180.5n2
Qualcomm Adreno 43065011ES 3.1203539
~20.625%
36316n13
49n15
24n15
17n13
32020n7
20327.5n6
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
AMD Radeon R5 (Beema/Carrizo-L)BeemaGCN 1.18506412 (FL 12_0)283517
~1.758%
36807
2882n7
3317n7
831n9
764n9
510n7
539n7
2698
4956n2
51
17n9
2779n7
494.5n2
149
AMD Radeon R4 (Beema)BeemaGCN 1.18006412 (FL 12_0)283517
~1.654%
29548
2825n7
3309n7
788n8
716n7
472n7
497n7
2506
4046
16.04n7
3092.5n6
445
136.5n2
AMD Radeon R4 (Kaveri)KaveriGCN 1.153364/12812 (FL 12_0)283481
~1.263%
26079
2034n2
3371.5n2
658n3
611n2
404.5n2
433.5n2
1958
3179
36.2
14.4
12.71n2
3108n2
443
137
AMD Radeon R3 (Mullins/Beema)Beema/MullinsGCN 1.13506866412 (FL 12_0)283517
~1.354%
2391n4
3049n4
686n6
620n4
396.5n4
419.5n4
1814.5n2
4010n3
11.7n3
14.36n4
2908n4
379n3
108n3
AMD Radeon R2 (Stoney Ridge)Stoney RidgeGCN 1.2/2.06006412 (FL 12_0)4.4282753
~1.475%
38046.5n2
2092.5n2
3321.5n2
774.5n2
730.5n2
463n2
511.5n2
2136
3809
42.7
16.5
13.2
7.7
2.8
15.07n2
3619n2
432
113
Intel HD Graphics (Broadwell)Broadwell GT1Gen. 8 Broadwell10085064/12812 (FL 11_1)4.3143266
~1.563%
3398
4015
729
641
428
463
2651
5077
47.12
21.52
17.41
17.78
4886
374
182
Intel HD Graphics 4200Haswell GT2Gen. 7.5 Haswell20085064/12811.14.0223845
~1.658%
41579
3027n13
3807n13
712n12
638n13
394.5n12
431.5n12
2537.5n2
3383n7
37.5n4
16.95n7
4514n9
486n2
176.5n2
Intel HD Graphics (Skylake)Skylake GT1Gen. 9 Skylake30080064/128DDR3L/LPDDR312_14.4143027
AMD Radeon HD 6450 GDDR5CaicosTerascale 275090064GDDR5102411404624
~646%
4597
4257
726
623
443
464
2822
6160.5n2
38450
18.79
9118n2
AMD Radeon HD 7500GTrinityTerascale 3327424114.2324231
~1.546%
2080
4333
604.5n4
585
462
512
2404.5n2
4810n2
3876n2
389
95
AMD Radeon HD 8450GRichlandTerascale 3533720114.2323930
~1.758%
55358
2345.5n4
3168.5n4
787n3
724n3
411n4
464.5n4
2114n2
3868n2
65
18.25n2
4494n3
423
94
AMD Radeon HD 7470MSeymour XT / XTXTerascale 2750 / 8003200 / 180064DDR3/GDDR551211404391
~1.429%
566n2
522n2
1739.5n2
3624.5n2
3773.5n2
390
92
AMD Radeon HD 6490MSeymour XTTerascale 2700 / 750 / 80080064DDR3/GDDR551211404726
~8.225%
681n4
601n3
2511n4
5571n4
33338
6754n11
AMD Radeon HD 8410GTrinityTeraScale 3450600114.2323858
AMD Radeon HD 8400KabiniGCN60011.1283858
~1.458%
36156
2633n5
2883n5
686.5n4
614n4
377n4
401n4
2013
3532n2
36n2
13.25n4
3010n3
363.5n2
107
ARM Mali-G72 MP3Bifrost850ES 3.2162249
~0.921%
20999.5n28
38n30
20n30
13n30
14.93
ARM Mali-G68 MP4ValhallValhall5822
~2.421%
48592
102.5n14
64.5n14
42.5n14
33.6n10
ARM Mali-T880 MP4Midgard (4th Generation)Midgard (4rd-gen)90011.2 (FL 11_2)ES 3.1162941
~17.925%
17736.5n12
39n12
18n12
10n12
29660.5n2
16649n2
ARM Mali-G52 MP6Bifrost122110
~221%
46944n3
87n3
48n3
34n3
21.09
ARM Mali-G68 MP2ValhallValhall5822
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
ARM Mali-G52 MP2Bifrost950122110
~1.121%
25142n6
43n34
24n35
15n34
17.43n11
ARM Mali-G52 MP1Bifrost800121234
~0.621%
13379.5n4
24n11
16n11
9.4n11
12.69n2
NVIDIA GeForce GT 520MXN12P-GVRFermi90090064DDR3102411404582
~2.621%
666n2
596.5n2
2619.5n2
5296n2
4655n2
AMD Radeon HD 7520GTrinityTerascale 3497686114.2324214
~1.833%
2148
3185
608n3
559n3
2045n3
4332n3
5073n3
70
NVIDIA GeForce GT 325MN11P-GV1GT2xx4501066128GDDR2, GDDR3, DDR3102410.1405087
~3.613%
2161n3
5373n3
3910n4
NVIDIA GeForce GT 130MN10P-GE1G9x6001066128GDDR2, GDDR3102410555454
~9.217%
1629n3
4950n4
26293n5
3292n7
NVIDIA NVS 4200MFermi81080064DDR3102411404679
~2.521%
572n7
507n7
2298n7
4929n8
5185n8
NVIDIA GeForce Go 7900 GTXG71MG7x500600256GDDR35129c906450
~18.48%
4503n2
29490n2
NVIDIA Quadro FX 2500MG71glmG7x500600256GDDR35129c906651
~17.68%
4695n2
27600
AMD Radeon HD 8350GRichlandTerascale 3514720114.2323930
~1.950%
46807
1895
2942
691
624
369
388
2463
5139
17.48n2
4647
71
AMD Radeon HD 8330KabiniGCN50011.1283858
~1.158%
2160n11
2672n11
592n9
530n9
327n11
351n11
1812.5n8
3334.5n8
37
4.2
11.96n7
2440.5n12
324.5n2
96
Intel UHD Graphics 600Gemini LakeGen. 9 Gemini Lake30070064/128DDR4 / LPDDR412_14.4142195
~1.283%
30149n9
3124n20
3435.5n20
647.5n28
578n27
401.5n22
433n21
125n12
109n12
2189n2
3960n9
37.15n2
19n3
15n3
15.75n2
1.1
16.41n28
3504n13
358n4
129n3
Intel HD Graphics 500Apollo LakeGen. 9 Apollo Lake30070064/12812_14.4142661
~1.167%
24609n8
2116n8
3007n8
530n11
482n11
307n8
362.5n8
3506n3
42
20
15
16.3
13n16
2894n8
324n4
79
NVIDIA GeForce 9650M GSNB9P-GS1G8x625800128GDDR2?, GDDR351210805755
~7.617%
1786
4830
19924
3761
NVIDIA GeForce 9650M GTNB9P-GTG9x550800128GDDR2, GDDR3102410555596
~8.517%
1306
4880n5
23209n5
3632n5
NVIDIA GeForce 8700M GTNB8E-SEG8x625800128GDDR351210806030
~8.917%
2026
4804n4
24971n3
3586
NVIDIA Quadro FX 1700MNB9P-GLMG9x625800128GDDR325610655553
~16.713%
6302
35734
6159
NVIDIA Quadro FX 1600MNB8P-GLMG8x625800128GDDR351210806041
~15.613%
4915.5n2
35198n3
4885n3
NVIDIA GeForce Go 7800 GTXG70MG7x440550256GDDR35129c1106651
~15.68%
4000
24800
NVIDIA GeForce Go 7900 GSG71MG7x375500256GDDR35129c906450
~14.78%
3519n2
23613.5n4
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
NVIDIA Quadro NVS 320MG84MG8x575700128GDDR3, GDDR251210806033
~18.68%
4769
29508n2
NVIDIA Quadro FX 1500MG71GLMG7x375500256GDDR35129c906450
~16.58%
4074
26279
NVIDIA GeForce 9600M GTNB9P-GSG9x500800128GDDR2, GDDR3102410655672
~9.417%
1459n5
5174n10
26648.5n14
3535n19
NVIDIA GeForce GT 220MG96MGT2xx500800128GDDR2, GDDR3102410655234
~6.917%
1378
4010
18684n3
3065n2
NVIDIA Quadro FX 770MNB9P-GLMG9x500800128GDDR2 / GDDR351210655601
~1613%
5296.5n2
34871
6180
NVIDIA GeForce GT 120MN10P-GV1G9x5001000128GDDR2, GDDR3102410555420
~11.213%
5225n3
22385
4267
AMD Radeon HD 7450MSeymour-PROTerascale 2700180064DDR3, GDDR511404328
~2.121%
652n2
581.5n2
2280.5n2
4346.5n2
3513
NVIDIA GeForce 610MN13M-GEFermi672900180064DDR3114.0404392
~2.421%
582n4
507.5n4
2210n4
4598n4
5053n4
NVIDIA GeForce 705MFermi775180064DDR3114.0403849
ARM Mali-T760 MP6Midgard (3rd Generation)Midgard (3rd-gen)70011ES 3.103727
~1.113%
20244n2
31n2
13.7n2
ARM Mali-T880 MP2Midgard (4th Generation)Midgard (4rd-gen)90011.2 (FL 11_2)ES 3.1162941
~11.425%
13844n7
24n7
10.5n8
6.8n8
19359n2
9935.5n2
Intel HD Graphics 405 (Braswell)BraswellGen. 832070064/12811.2142814
~1.167%
23763n2
1933n4
2113n4
537n7
473n7
237.5n2
254.5n2
2081
2920n2
41.3
20.3
20.3
14.11n7
2753n4
390.5n2
102.5n2
Intel HD Graphics (Braswell)BraswellGen. 832070064/12811.2143180
~0.763%
1529n15
2193n15
436n17
395n17
238n13
261n13
1479
1311
33
16.1
12.5
12.31n17
2284n15
306
80.5n2
Intel HD Graphics 400 (Braswell)BraswellGen. 832064064/12811.2142814
~154%
20277n6
1457n7
1841n7
397n11
349n11
188n2
218n2
2474
29n2
16n2
10.6n2
11.32n11
2052.5n6
AMD Radeon HD 6470MSeymour XTTerascale 2700 / 75080064DDR3102411404726
~6.825%
595n16
535n15
1706n11
4502n11
27881.5n4
5316n13
AMD FirePro M3900Seymour XTTerascale 270075090064DDR31024114.1404629
~3.98%
617
4997
NVIDIA GeForce GT 520MN12P-GP/LVFermi740 / 600800 / 90064 / 128DDR3 (GDDR5)153611404727
~5.625%
568.5n12
502n12
2280n11
4742.5n8
20926n3
4960n12
AMD Radeon HD 7420GTrinityTerascale 3480655114.2324214
~1.250%
1963
2717
501
453
332
343
1718
3751n2
13.07
4220n2
332
67
ATI Mobility Radeon HD 3670M86XTRV6xx680800128DDR2/GDDR3/GDDR410.1555821
~8.717%
1277
4389.5n4
24532n2
4145n2
ATI Mobility FireGL V5725M86GLRV6xx68080012810.1555461
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
PowerVR GX6450RoguePowerVR Rogue450 (?)64103.x, 4.x, OpenGL ES 3.0203384
~10.217%
23937n5
44.8n5
18.5n4
16055n2
Qualcomm Adreno 42060011ES 3.1283462
~23.421%
20733n5
41.35n4
17.85n4
31806n3
18680n3
Qualcomm Adreno 620Adreno 60012ES 3.2, Vulkan 1.1141711
~2.721%
68764n19
95n17
54n17
37n17
30.4
IMG BXM-8-256B-SeriesB-Series90064ES 3.x63384
~1.417%
74n3
62n3
28n3
31.67n3
ARM Mali-G57 MP4ValhallBifrost71260
~1.921%
37882
84n4
51.5n4
34n4
34.21
ARM Mali-G57 MP3ValhallBifrost71260
~1.621%
32143.5n2
70n8
42.5n8
27.5n8
33.74n4
Intel HD Graphics (Haswell)Haswell GT1Gen. 7.5 Haswell200100064/12811.1224092
~1.467%
43493
2335.5n6
3278n6
544n7
484n7
314n6
362.5n6
2163n2
3357.5n4
53.5
28.7
20.1
13.92n4
4215.5n4
370n2
140n2
AMD Radeon HD 6520GLlanoTerascale 240011324566
~1.721%
549.5n2
492
1678n5
3322n3
3494n3
AMD Radeon HD 8310GTrinityTeraScale 3424554114.2323858
NVIDIA GeForce 320MMCP89GT2xx45010.1405006
~5.221%
1852n5
4229.5n4
16219n2
12.6
3206n4
NVIDIA GeForce GT 320MGT2xx500790128DDR3102410.1405076
~3.48%
1205
4706
ATI Mobility Radeon HD 2600 XTM76-XTRV6xx700750128DDR2, GDDR325610656059
~8.517%
1159
4179n2
24515
3362n2
ATI Mobility Radeon X1900M59400470256DDR1/DDR2/GDDR32569c806182
~15.98%
3460n3
25914
ATI Mobility Radeon X1800XTM58, R520550650256GDDR39c906498
ATI Mobility Radeon X1800M58450500256GDDR39c906498
~11.78%
2681
19000
NVIDIA GeForce Go 6800 UltraNV41M450600256DDR32569c1306867
~14.18%
2500
23800
NVIDIA GeForce Go 7800G70MG7x400550256GDDR32569c1106498
~11.68%
2200
19500
NVIDIA GeForce 9600M GSNB9P-GEG9x430800128GDDR2, GDDR3102410655672
~8.317%
1135
4382.5n2
23837.5n4
3076n3
NVIDIA GeForce 9500M GSNB9P-GE1G8x475700128GDDR2 / GDDR351210805796
~7.317%
863
3705.5n4
20861n5
3161n3
AMD Radeon HD 7400GTrinityTerascale 3327423114.2324122
~1.338%
1586
2424
454
415
245
327
2931
3866
316
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
AMD Radeon HD 6480GLlanoTerascale 244411324566
~1.629%
1646
513n3
467n2
155
1578n4
3497n3
3655n3
ATI Mobility Radeon HD 2700M76-XTRV6xx700700128DDR2, GDDR325610655847
~14.18%
4067.5n2
21740
NVIDIA GeForce GT 415MN11P-GVFermi500800128(G)DDR311404851
~2.417%
433
379
4193.5n2
3922
NVIDIA GeForce 410MN12M-GSFermi57580064DDR311404726
~5.225%
477n5
415n4
1922.5n2
4035n4
20641
3399n5
AMD Radeon HD 7370MRobson XTTerascale 2750160064DDR3102411404360
Qualcomm Adreno 41860011.1ES 3.1203462
~15.325%
23298.5n6
34n7
15n7
9.95n4
26339n3
12793
Qualcomm Adreno 619Adreno 60012.1ES 3.2, Vulkan82922
~2.321%
55911n3
91n34
46n35
33n35
26.82n9
Qualcomm Adreno 619LAdreno 60012.1ES 3.2, Vulkan82922
~1.821%
44899
72.5n2
36.5n2
26n2
22.82n2
Qualcomm Adreno 618Adreno 60012.1ES 3.2, Vulkan141711
~1.358%
52650n16
2900
3273
645n3
599n3
494
504
129
112
84.5n18
41n18
30n18
26.34n2
288
ARM Mali-G57 MP2ValhallBifrost71260
~117%
63n21
38n21
24n21
27.11n10
ARM Mali-G57 MP1ValhallBifrost71260
~0.417%
24n9
16n9
9.7n9
11.4
Qualcomm Adreno 616Adreno 60012.1ES 3.2, Vulkan142922
~1.817%
38288.5n12
65n12
32n12
23n12
AMD Radeon R2 (Mullins/Beema/Carrizo-L)Beema/MullinsGCN 1.13006006412 (FL 12_0)283517
~0.963%
1980.5n2
2650n2
434.5n6
397n3
350.5n2
373n2
1178
3242n2
36n2
14
12.7
9.53n3
1616n3
340.5n2
89n2
ARM Mali-G51 MP4Bifrost650121975
~0.921%
21501.5n14
39n14
21n14
14n14
16.03
AMD Radeon HD 6370MRobson XTTerascale 275080064DDR3102411404767
~7.317%
1319
3999
19638
3875
AMD Radeon HD 8280TemashGCN45011.1283858
~0.738%
2054
2515
554
496
303
328
11
1041
295
ATI Mobility Radeon HD 5470Park XTTerascale 2750180064DDR2, GDDR2, DDR3, GDDR3, GDDR511405090
~7.517%
1269.5n16
3683.5n16
20743n10
4042n16
AMD Radeon HD 6450MSeymour-PROTerascale 260080064DDR311404728
~2.221%
506.5n2
443
1394.5n2
3845.5n2
5804
AMD Radeon HD 7430MSeymour-PROTerascale 2600180064DDR311404358
ATI Mobility Radeon HD 3650M86RV6xx600700128DDR2/GDDR3/GDDR410.1555821
~7.817%
855n3
3360n7
23042n10
3291n8
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
ATI Mobility FireGL V5700M86-GLRV6xx600700128DDR2/GDDR3/GDDR410.1555821
~8.817%
1017
4270.5n2
24429
5049
ATI Mobility Radeon HD 5145Terascale 172090064DDR3, GDDR310.1555090
~6.817%
1248n3
3661n3
18387.5n4
4014.5n4
ATI Mobility Radeon HD 545vTerascale 172080064GDDR3, DDR3, DDR210.1554972
~7.117%
1215n2
3760n2
19162n3
4297n3
AMD Radeon HD 8240TemashGCN40011.1283858
~0.950%
1501
2273
458.5n2
427.5n2
265.5n2
292.5n2
1377
2636
9.55
2198
272
32
AMD Radeon R6 (Mullins)MullinsGCN 1.15006412 (FL 12_0)283517
~1.321%
20511
1900
2258
582
302
AMD Radeon HD 8250TemashGCN30040011.1283849
~0.950%
1636n2
1965n2
468n2
422.5n2
234.5n2
253.5n2
1317n2
2570n2
3.7
1895n2
275
54
Intel HD Graphics (Cherry Trail)Cherry TrailGen. 820060064/12812 (FL 11_1)4.3143210
~0.867%
19303n7
1488n7
1783.5n8
343n23
298n22
248n5
225n3
2595n5
32n7
13.5n6
11n6
1.2
9.66n17
1973n16
277
89n3
ATI Mobility Radeon HD 4570M92-XTTerascale 168080064GDDR3, DDR2, DDR310.1555453
~6.417%
1151n6
3633n7
17062n10
3689n13
NVIDIA Quadro FX 570MG64GLMG8x475700128GDDR325610806041
~12.113%
3800
26907.5n2
4534
ATI Mobility Radeon HD 5450Park ProTerascale 267580064DDR311405090
~5.24%
3775.5n2
NVIDIA GeForce 8600M GTG84MG8x475700128GDDR3, GDDR251210806033
~7.517%
1040
3277n10
22231.5n22
3006.5n14
ATI Mobility Radeon HD 2600M76RV6xx500600128DDR2, GDDR325610656059
~7.413%
3177
15324n5
2575n3
Intel HD Graphics 3000Sandy BridgeGen. 6 Sandy Bridge350135064/12810.13.0324700
~425%
2656.5n4
2502.5n4
1568n91
3286.5n112
11654n17
4414n114
NVIDIA Quadro FX 380Mn10m-glmGT2xx62580064GDDR3, DDR351210.1405090
~5.14%
3687
NVIDIA GeForce 310MN11M-GE1GT2xx606 / 62580064GDDR3, DDR351210.1405087
~5.817%
1123n15
3206n17
15456.5n14
3175n26
NVIDIA GeForce G210MN10M-GSGT2xx62580064GDDR2, GDDR351210.1405296
~3.929%
1536
1805
1021n3
3047
17585n3
7.53
2607.5n4
NVIDIA NVS 3100MN10M-NSGT2xx60080064GDDR3, DDR351210.1405090
~7.917%
1120.5n6
3257n7
23455.5n4
3374.5n10
NVIDIA GeForce 405MGT2xx606160064GDDR3, DDR351210.1404235
NVIDIA GeForce 315MN11M-GEGT2xx60679064GDDR3, DDR351210.1404762
~5.717%
1108.5n2
3267n2
14749
3787n2
NVIDIA GeForce Go 7600 GTG73M500600128GDDR3, GDDR2, GDDR12569c906345
~12.88%
2833
20865n2
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
NVIDIA GeForce 9500M GNB9PG9x500800128GDDR2, GDDR3102410655672
~6.913%
3435n2
13926n2
2220.5n2
NVIDIA GeForce 8600M GSG84MG8x600700128GDDR3, GDDR251210806033
~7.713%
3027.5n2
16193n8
3131.5n2
NVIDIA NVS 2100MGT2xx53580064GDDR3, DDR351210.1405090
~6.917%
992
2971
20085.5n2
3084n2
NVIDIA GeForce Go 7700G73M-B1450500128GDDR3, GDDR2, GDDR15129c806345
~13.48%
2685.5n4
22170
NVIDIA GeForce Go 6800NV42M300300128 / 2562569c1306867
~13.78%
1900
23800
NVIDIA Quadro FX Go 1400NV41M3305002562569c1306867
~1.84%
1306
ATI Mobility Radeon X800XTM28Pro4805502569b1306764
AMD Radeon HD 6430MSeymour-LPTerascale 248080064DDR311404728
AMD Radeon HD 6380GLlanoTerascale 240011324566
~38%
2639
3318
ATI Mobility Radeon HD 5430Park LPTerascale 255080064DDR3, GDDR5?11405090
~2.413%
962
3082
3702
AMD Radeon HD 8210Temash, KabiniGCN30011.1283858
~0.858%
26764
1150n6
1904.5n6
370.5n4
343.5n4
209n5
227n5
984n3
2177.5n4
25
7.69n7
1691n7
241
45n2
ATI Mobility Radeon HD 540vTerascale 155080064GDDR3, DDR3, DDR251210.1554972
~6.917%
1008
3494
18743
4286.5n2
ATI Mobility Radeon HD 4550M92Terascale 155070064GDDR3, DDR2, DDR310.1555096
~6.817%
1051n3
3449n3
18299n3
4230n4
Intel HD Graphics 2500Ivy Bridge GT1Gen. 7 Ivy Bridge650115064/12811.0224275
~3.150%
2817n4
2604.5n4
430n5
350.5n4
294.5n4
318n4
1930.5n6
3816n5
20814
6037n4
286n3
50n3
Intel HD Graphics (Ivy Bridge)Ivy Bridge GT1Gen. 7 Ivy Bridge350110064/12811.0224092
~1.654%
1906.5n12
2286n12
370.5n12
315n12
254.5n10
285.5n10
1491n11
2930n12
9212n2
27
3382n13
275n8
44
AMD Radeon HD 7350MRobson ProTerascale 2500180064DDR3102411404184
AMD Radeon HD 6350MRobson ProTerascale 2500800-90064DDR3102411404767
ATI Mobility Radeon HD 4530M92Terascale 150070064GDDR3, DDR2, DDR310.1555453
~2.213%
708
2902
3441n3
ATI Mobility Radeon HD 4350M92Terascale 145060064GDDR3, DDR2, DDR310.1555453
~7.513%
3130n4
14875
3914n2
ATI Radeon HD 4350RV710Terascale 160050064DDR2102410.1555585
~6.613%
688
2500
15404
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
ATI Mobility Radeon HD 530vM92Terascale 145060064GDDR3, DDR3, DDR210.1554972
~4.14%
2947
NVIDIA GeForce 305Mn11m-lp1GT2xx52570064GDDR2, GDDR3, DDR2, DDR351210.1405087
~4.34%
3101
ATI Mobility Radeon X1700M66-P475400128DDR/DDR2/GDDR3/GDDR42569c906526
~11.88%
2139n5
19877.5n4
ATI Mobility FireGL V5250M56GL400330128DDR/DDR2/GDDR3/GDDR42569c906192
~2.34%
1672
ATI Mobility Radeon X2500M6646040064 / 128DDR22569c806041
~8.78%
2100
13972.5n2
NVIDIA GeForce Go 7600G73M450350128 / 64GDDR3, GDDR2, GDDR12569c906498
~10.88%
1900n15
18232n12
NVIDIA Quadro NVS 300MG72GLM450500128GDDR39b906414
ATI Mobility Radeon X800M28400350128 / 256GDDR2, GDDR32569b1306767
~10.88%
1300
19100
ATI Mobility Radeon X1600M56450470128DDR/DDR2/GDDR32569c906526
~9.88%
1836n13
16479n12
ATI Mobility FireGL V5200M56GL425475128DDR/DDR2/GDDR32569c906526
~1.74%
1203.5n2
ATI Mobility Radeon 9800M18350300256DDR2 / DDR325691307106
~9.88%
860
17800
NVIDIA GeForce Go 6600NV43M375300128GDDR22569c1106651
~8.68%
1150
15000
ATI Mobility Radeon X1450M54550450128DDR1/DDR2/DDR32569c906297
~5.98%
1085n2
9900
ATI Mobility Radeon X700M26350350128DDR/DDR225691106903
~8.78%
735n2
15675.5n2
ATI Mobility FireGL V5000M26GL350350128GDDR312891106889
~17.14%
16500
NVIDIA GeForce G 110MN10M-GS1G9x40070064GDDR2, GDDR3102410555454
~3.44%
2450n2
AMD Radeon HD 6330MRobson LPTerascale 250080064DDR3102411404767
ATI Mobility Radeon HD 4330M92-SETerascale 145060064GDDR3, DDR2, DDR351210.1555453
~5.217%
656
2352n2
14310n5
3310.5n6
NVIDIA GeForce 8400M GTG86M450600128GDDR3 / GDDR251210806064
~1.44%
1033
NVIDIA Quadro NVS 140MG84M40070064GDDR3, GDDR225610806064
~5.713%
1410
13071.5n6
2408
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
Intel HD Graphics 2000Sandy BridgeGen. 6 Sandy Bridge850/1100135064/12810.1324700
~5.217%
895.5n2
2288n3
15201
2298n2
NVIDIA GeForce G 107MG9x10555218
NVIDIA GeForce G 105MN10M-GE1G9x64070064GDDR2, GDDR351210655454
~4.817%
788
2261n7
13616n7
2416n6
NVIDIA GeForce G 103MG98G9x64050064DDR251210.0655218
~4.617%
366
1885
13833
2131
NVIDIA GeForce 9500M GEMCP79Mx + NB9M64GDDR2, GDDR325610.0655819
NVIDIA GeForce G 102MMCP75G9x450DDR2, DDR351210.0655400
~513%
1409
10723n2
2581.5n2
NVIDIA GeForce G 205MMCP79MXG9x45010655096
~2.24%
1589
NVIDIA GeForce 9400M (G) / ION (LE)MCP79MX45010.0655540
~2.517%
607
1157n5
6427n7
2326.5n12
Intel HD Graphics (Sandy Bridge)Sandy BridgeGen. 6 Sandy Bridge350110064/12810.1324611
~3.225%
1451.5n2
1404.5n2
976n18
2509n19
11429.5n4
2577n18
Qualcomm Adreno 612Adreno 60012.1ES 3.2, Vulkan142922
~1.121%
26734n5
41n3
21n3
15n3
14.25
Qualcomm Adreno 610Adreno 60012.1ES 3.2, Vulkan111711
~121%
24487.5n18
36n31
19n31
13n31
11.45n6
Qualcomm Adreno 512Adreno 50012.1ES 3.2, Vulkan142922
~1.121%
29060n12
50n14
22.5n14
15n14
12.76
Qualcomm Adreno 510Adreno 50012.1ES 3.2, Vulkan142922
~1625%
21533n8
31n8
14.5n8
9.45n8
26078
15120
Qualcomm Adreno 3304505789_3ES 3.0283994
~16.321%
18007n34
24n39
11n25
23230n16
11943n15
PowerVR G6430RoguePowerVR Rogue103.x, 4.x, OpenGL ES 3.0283748
~1225%
18258n13
27.9n9
11.85n8
6.9
18918n5
11885n4
PowerVR GX6250RoguePowerVR Rogue70064103.x, 4.x, OpenGL ES 3.x283384
~0.717%
14121n5
27.8n6
14n5
7.5n4
PowerVR G6400RoguePowerVR Rogue400533103.x, 4.x, OpenGL ES 3.103748
~12.121%
15933
23.6
8.9
16066
9700
Intel HD Graphics (Bay Trail)Bay TrailGen. 7 Ivy Bridge31189632/64/128114.0, ES 3.0223747
~3.583%
14748.5n20
1188n74
1228.5n72
216n88
186.5n86
147n7
149n11
637n12
1866n27
7727
16n15
8.75n10
5.2
14509n4
8456n3
3.6
5.52n42
1991.5n84
174n12
29n6
ARM Mali-T628 MP6Midgard (2nd Generation)60011ES 3.003733
~11.921%
13791n5
22.8n5
6.55n6
17718n3
7828n3
ARM Mali-T760 MP4Midgard (3rd Generation)Midgard (3rd-gen)60011.1ES 3.103727
~0.417%
9208
16
7.1
4.9
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
VIA Chrome9HD10.106133
~2.94%
2120
AMD Radeon HD 7340ZacateTerascale 252368011404245
~1.650%
1385.5n2
1908n2
360.5n8
331.5n8
217.5n2
224n2
1070n7
2466.5n8
9548
2121n5
258
63
AMD Radeon HD 6320ZacateTerascale 250060011404777
~1.221%
332.5n6
302n6
891.5n8
2406.5n8
2056n7
AMD Radeon HD 7310ZacateTerascale 250011404245
~1.250%
1161
1593
286n3
260n3
200
192
639.5n4
1458.5n4
7452n2
1796n3
162
28
AMD Radeon HD 6310ZacateTerascale 250011404777
~2.325%
275n5
251n5
691n6
1984.5n10
8348n7
1933n12
AMD Radeon HD 8180TemashGCN22511.1283858
~0.650%
1021n3
1493n3
294
268
165
145n2
790
1723.5n2
5.45n2
1469.5n4
216
30
ATI Mobility Radeon HD 3470 Hybrid X2M82-XT + RS780MRV6xxDDR2/GDDR310.1555454
~5.313%
2324
10748
2098
NVIDIA GeForce 9400M GeForceBoost6410655673
~5.18%
125
9710
ATI Mobility Radeon HD 3470M82-XTRV6xx68080064DDR2/GDDR310.1556185
~5.613%
1566n3
12640.5n4
2245n3
NVIDIA GeForce 9300M GNB9M-GS140060064GDDR2 / GDDR325610805796
~6.313%
1775.5n2
13980n3
2613n2
NVIDIA ION 2GT218-ION-A3, GT218-ILV-A3GT2xx405 / 475 / 53579064DDR2, DDR351210.1405087
~2.417%
724n3
1963n5
5539.5n4
1027n5
NVIDIA GeForce 9300M GSNB9M-GS55070064GDDR2, GDDR325610655672
~4.517%
267
1465
13583n8
2561n7
NVIDIA Quadro FX 370MNB9M-GLM58070064GDDR2, GDDR325610655600
~6.213%
1595
13622
3031
NVIDIA Quadro NVS 160M58070064GDDR2, GDDR325610655600
~6.313%
1841n3
13740
2923n3
NVIDIA GeForce 9200M GSNB9M-GE55070064GDDR2, GDDR325610655672
~4.817%
372.5n2
1817.5n2
14224n6
2335n3
AMD Radeon HD 7290ZacateTerascale 228040011404550
~0.725%
226
206
534
1536
1342
188
AMD Radeon HD 6290ZacateTerascale 228040011404550
~0.721%
200
179
497n2
1513n2
1174n2
ATI Mobility Radeon HD 3450M82RV6xx50070064DDR2/GDDR310.1556185
~4.517%
306.5n2
1911.5n4
12859n3
2595n2
ATI Mobility Radeon HD 3430M82-SERV6xx45070064GDDR251210.1555621
~5.513%
1690n3
12163.5n2
2129
ATI Mobility Radeon HD 3410M82-MPERV6xx40070064GDDR210.1555621
~24%
1450
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
ATI Mobility Radeon HD 2400 XTM74RV6xx60070064DDR2, GDDR325610656059
~4.913%
1689n2
9962n2
2653
ATI Radeon HD 4270RS880MRV6xx59051210.1554976
~1.213%
230
1402
2220
ATI Radeon HD 4250RS880MRV6xx50051210.1554976
~3.117%
227n2
1372n5
8689n3
2117n6
ATI Radeon HD 4200RV620RV6xx50051210.1555209
~2.821%
330
236n2
1465
9370n3
2229n2
Intel Graphics Media Accelerator (GMA) HD GraphicsGMA HDGen. 5 Arrandale50010455087
~317%
297.5n20
1420n54
8301.5n22
1790n74
AMD Radeon HD 6250ZacateTerascale 228011404777
~1.242%
793
1091
188.5n6
172n5
422n7
1446.5n6
6589.5n6
1372n9
160
27
NVIDIA Quadro NVS 150M53070064GDDR2, GDDR325610655600
~6.213%
1561
14211.5n2
2515.5n2
NVIDIA Quadro FX 360MNB8M-GLM40060064GDDR325610806064
~6.613%
1490
15053.5n2
2985
ATI Mobility Radeon X1350M52470350128DDR1/DDR2/GDDR32569c906297
~7.18%
1088
12234
ATI Mobility Radeon X1400M54445250128DDR1/DDR2/GDDR32569c906539
~8.28%
1064n2
14404.5n2
NVIDIA GeForce 9100M GMCP77MH MCP79MH45010655672
~1.74%
1200
NVIDIA GeForce 8400M GSG86M40060064GDDR2 / GDDR325610806064
~5.513%
1343n5
12521.5n14
2128.5n6
NVIDIA Quadro NVS 135MG86M40060064GDDR3, GDDR225610806064
~5.98%
965
10100
ATI Mobility Radeon HD 2400M72RV6xx45050064DDR2, GDDR325610656059
~4.613%
1215
10205n4
2210n2
ATI Radeon HD 3200RS780MRV6xx50051210555672
~2.117%
81.5n2
891n7
6020n14
1511n13
ATI Radeon HD 4225RS880MRV6xx38051210.1554976
~2.417%
140.5n4
1053n8
6695n4
1665.5n8
ATI Radeon HD 4100RV6xx35051210.1555157
PowerVR SGX554MP4PowerVR SGX59ES 2.0324070
~0.78%
11596
9.35n2
ARM Mali-T628 MP4Midgard (2nd Generation)60011ES 3.003389
~9.325%
11984n7
12n7
6.6n7
3.9
18011n2
6038.5n2
Qualcomm Adreno 509Adreno 50012.1ES 3.2, Vulkan142412
~117%
20836n11
36n12
16n12
10n12
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
Qualcomm Adreno 508Adreno 50065012.1ES 3.2, Vulkan142412
~0.917%
18469n13
30n13
14n13
9.7n13
Qualcomm Adreno 506Adreno 50065012.1ES 3.2, Vulkan142922
~12.225%
13240n38
23n40
9.8n40
6.4n40
21210
10438
PowerVR GE8322 / IMG8322RogueES 3.2281626
~0.517%
9393n2
19n3
9.6n3
6.5n3
Qualcomm Adreno 505Adreno 50045012.1ES 3.2, Vulkan142922
~8.129%
10069n33
17n34
7.1n34
4.6n34
5.23
16609.5n2
8015
Qualcomm Adreno 504Adreno 50045012.1ES 3.2, Vulkan141994
~0.317%
6896n2
11n2
4.75n2
3.15n2
ATI Mobility Radeon HD 3400RV6xx04884
ATI Radeon HD 3100RS780MCRV6xx35051210555614
~1.64%
1164n3
NVIDIA GeForce 8400M GG86M40060064GDDR3 / GDDR225610806064
~3.413%
912
7560n5
1443
ARM Mali-T860 MP2MidgardMidgard70011.1ES 3.1 AEP283270
~825%
9806.5n36
17n32
6.8n33
4.55n32
14306n3
6378n3
ARM Mali-T830 MP360011 (FL 9_3)ES 3.2162814
~0.717%
13314
34
15
9.1
NVIDIA Quadro NVS 130MG86M70064GDDR3, GDDR225610806064
~1.54%
1115
NVIDIA GeForce 8200M GMCP77MV MCP79MVL40010805672
~4.68%
1250
7122n3
Intel Graphics Media Accelerator (GMA) 4700MHDMontevinaGen. 4.56400010655553
Intel Graphics Media Accelerator (GMA) 4500MHDMontevinaGen. 4.55330010655553
~1.225%
178
145
623n28
5089.5n52
0.82
773n68
Intel Graphics Media Accelerator (GMA) 4500MGL40Gen. 4.5400010655553
~1.813%
612.5n4
3882n7
687n13
ARM Mali-T604 MP4Midgard53311ES 3.0284050
~0.14%
12.4
NVIDIA GeForce Go 7400G72M45045064 / 32DDR31289c906526
~7.28%
801.5n4
12730.5n4
NVIDIA Quadro FX 350MG72M45035064DDR-3649c906468
~0.94%
680
NVIDIA Quadro NVS 120MG72M45070064DDR-32569c906406
~0.94%
660
NVIDIA GeForce Go 7300G72M35070064DDR-3649c906526
~6.48%
712.5n4
11300n3
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
NVIDIA GeForce Tegra 4Tegra 3VLIW Vec4ES 2.0405096
~16.517%
14858n6
17.5n8
19277n3
9413n3
PowerVR G6200RoguePowerVR Rogue450 - 700103.x, 4.x, OpenGL ES 3.103748
~0.517%
10862n4
15n3
7.2
3.2n2
Qualcomm Adreno 40555011ES 3.1283581
~6.125%
8161n20
14n18
5.6n19
4.2n6
10631n5
5084n5
ARM Mali-T830 MP260011 (FL 9_3)ES 3.2162814
~9.725%
11147n19
18.5n18
7.85n18
4.5n18
16613n4
8542n4
NVIDIA Quadro NVS 110MG72M30060064DDR-3649c906406
~6.18%
600
11000
ATI Mobility Radeon X600M24400250128DDR/DDR225691307136
~5.58%
280
10155.5n2
ATI Mobility FireGL V3200M24GL400128DDR/DDR212891307136
~12.34%
11800
ATI Mobility FireGL V3100M22GL350200128DDR/DDR26491107136
ATI Mobility Radeon X2300M64480400128DDR1/DDR2/GDDR32569c906133
~3.713%
892n2
8354.5n2
1787
ATI Mobility Radeon HD 2300M71RV5xx480400128DDR1/DDR2/GDDR39c906133
~5.38%
834.5n2
9000
ATI Mobility Radeon 9700M11450275128 / 64DDR25691307136
~5.58%
424
10000
ATI Mobility FireGL T2eM11GL45026012825691307075
ATI Mobility Radeon X1300M52350250128DDR1/DDR2/GDDR32569c906539
~5.28%
725
9000
NVIDIA GeForce4 4200 GoNV28M200200128DDR1288.11507700
~9.94%
9500
ATI Mobility Radeon 9600M10300300128 / 64DDR12891307136
~8.84%
8490n2
ATI Mobility FireGL T2M10GL30020012825691307349
~9.24%
8894
ATI Mobility Radeon 9550M1221018364DDR12891307136
NVIDIA GeForce Go 7200G72M45035032DDR-3649c906314
~4.48%
674
7489
NVIDIA GeForce Go 6400NV44M140035064DDR329c1106526
~10.24%
9800
ATI Mobility Radeon X300M2235025064DDR/DDR291306764
~4.68%
200
8646.5n2
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
NVIDIA GeForce Go 6250NV44M140035064DDR329c1106526
NVIDIA GeForce Go 6200NV44MV30030064DDR329c1106526
~9.44%
9000
NVIDIA GeForce FX Go 5700NV36M450275128DDR3291307288
~11.44%
11000
NVIDIA Quadro FX Go 100012891307233
NVIDIA GeForce FX Go 5600 / 5650NV31M350300128DDR3291307594
~9.54%
9100
ATI Radeon Xpress X1270M690T4001289806161
~2.113%
327.5n2
5217n7
559n3
ATI Radeon Xpress X1250RS690M3501289806161
~2.813%
387.5n2
6930n5
880n3
ATI Radeon Xpress 12504009806316
~1.913%
445
4576n3
669
ATI Radeon Xpress X1200RS690M35001289806161
~2.28%
278n3
3824n2
Intel Graphics Media Accelerator (GMA) X3100CrestlineGen. 45000010906064
~1.813%
430.5n8
4117n31
665n25
PowerVR SGX543MP4PowerVR SGX510.1ES 2.0405387
ARM Mali-T624Midgard 2nd Gen11ES 3.0283782
~7.921%
9931
14.2
3.6
12170
4944
Qualcomm Adreno 3204009_3ES 3.0284309
~7.921%
10644n2
13n15
4.3
11550n2
5400n2
ARM Mali-T760 MP2Midgard (3rd Generation)Midgard (3rd-gen)70011.1ES 3.103727
~7.321%
8041n4
16n3
4.95n6
11318n2
4513.5n2
PowerVR GE8320PowerVR Series8XE400650103.x, 4.x, OpenGL ES 3.0203384
~0.617%
11994n41
20n29
10n29
6.6n29
PowerVR GE8300PowerVR Series8XE660103.x, 4.x, OpenGL ES 3.0203384
~0.321%
7567n11
14n10
6.6n10
4.3n10
7.51
PowerVR GE8100PowerVR Series8XE570103.x, 4.x, OpenGL ES 3.0203384
~0.217%
3583.5n18
6n18
2.7n15
1.6n17
ARM Mali-T720 MP4Midgard (3rd Generation)Midgard (3rd-gen)60011 (FL 9_3)ES 3.1283698
~0.317%
6250n9
12n8
4.2n8
2.9n5
ARM Mali-450 MP4Utgard700ES 2.0284194
~7.717%
5253n21
10.05n18
9924n7
3612.5n6
ARM Mali-T830 MP111 (FL 9_3)ES 3.2162814
~0.321%
7456n3
12n3
5.1n3
3.2n3
2.71
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
Intel Graphics Media Accelerator (GMA) 3650Cedar TrailPowerVR SGX56409.1324427
~1.413%
422
3207
435n3
NVIDIA GeForce 7190Mshared Memory9c906526
NVIDIA GeForce 7150MC67425shared Memory9c906526
~2.68%
315n3
4501
ATI Radeon Xpress 1150RS482M40000shared Memory09b1106406
~2.68%
219
4712.5n4
NVIDIA GeForce Go 6150C51MV42500shared Memory09c1106526
~1.713%
200
4000n3
867
NVIDIA GeForce Go 6100C51MV42500shared Memory09c1106526
~2.88%
173n2
5100
NVIDIA GeForce 7000MC6735000shared Memory09c906526
~2.78%
274n2
4860n3
PowerVR SGX543MP3PowerVR SGX510.1ES 2.0405387
~0.14%
6.75n2
Intel Graphics Media Accelerator (GMA) 3600Cedar TrailPowerVR SGX54009.1324427
~1.513%
-1
280.5n2
3514
828n3
ATI Mobility Radeon 9200M9250200128DDR648.11507594
~84%
7670
ATI Mobility FireGL 9000M9GL250200128DDR648.11508018
~8.74%
8400
NVIDIA GeForce FX Go 5200NV31M300300128DDR3291507594
~7.14%
6800
ATI Mobility Radeon 9000M9240200128DDR1288.11507775
~5.84%
5565
NVIDIA GeForce 4 488 GoNV17M27527532DDR6471507959
~5.64%
5400
NVIDIA GeForce 4 460 GoNV17M25025032DDR6471507959
~5.74%
5500
NVIDIA GeForce 4 440 GoNV17M22022032DDR6471507959
~5.24%
5000
NVIDIA GeForce 4 420 GoNV17M19020032DDR6471507959
~4.54%
4300
PowerVR SGX543MP2PowerVR SGX510.1ES 2.0405387
Intel Graphics Media Accelerator (GMA) 3150PineviewGen. 42009c455087
~113%
144n35
2483.5n36
287.5n42
Intel Graphics Media Accelerator (GMA) 950GMA 950Gen. 32500009c1306863
~1.213%
107n3
3009n61
274n36
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
PowerVR SGX545PowerVR SGX55339_3/10.13.2325096
~117%
411n8
3152
2.8
428.5n10
PowerVR SGX544MP2PowerVR SGX53005339_3/10.1ES 2.0455096
~0.48%
6595n3
6.95n6
ARM Mali-T720 MP2Midgard (3rd Generation)Midgard (3rd-gen)6509.3ES 3.103211
~4.425%
4680.5n50
9.55n50
3.6n50
2.3n44
7310n4
4159n3
PowerVR SGX544PowerVR SGX53849_3/10.1ES 2.0455096
~3.617%
2136n11
2.7n14
4574n2
1661n2
Qualcomm Adreno 3089.3ES 3.0282864
~0.313%
5461.5n18
7.6n18
2.8n17
Qualcomm Adreno 3064509.3ES 3.0284122
~2.821%
3838n29
5.3n25
1.8n29
4014n4
1880n3
Qualcomm Adreno 3054509.0cES 3.0284122
~2.721%
4210n19
5.7n32
1.7n16
4267n16
1433.5n8
Qualcomm Adreno 3044009.0cES 3.0283089
~0.213%
4053n8
5.2n11
1.8n9
ARM Mali-T720Midgard (3rd Generation)Midgard (3rd-gen)6009.3ES 3.103211
~2.225%
2974n25
6n21
2.2n22
1.4n17
3911n8
1837n8
Vivante GC7000ULES 3.103635
~2.321%
2591
5.4
0.8
4078
983
Qualcomm Adreno 3024009.3ES 3.0283830
~2.221%
3592n6
4.35n4
1.3n3
3442
1316
ATI Mobility Radeon 7500RV20028020064 / 128DDR6471508144
~44%
3818.5n2
ATI Mobility FireGL 780028020064 / 128DDR6471806651
Intel Graphics Media Accelerator (GMA) 900GMA 900Gen. 34000009c1306863
~1.413%
57n2
4000n3
149
ATI Radeon Xpress 200M3500009b1306874
~1.713%
202
4441n3
194
ATI Radeon Xpress 11003000shared Memory9b1106406
~2.28%
97n2
4127
SIS Mirage 3+ 672MXSISM672250906192
~0.88%
145n2
1395
SIS Mirage 3 671MX671MX2508.106406
~1.18%
68
2061n3
Qualcomm Adreno 225400ES 2.0454309
~4.713%
4969
3.2n4
6045.5n2
Vivante GC4000ES 2.003880
~04%
4.05n4
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
ARM Mali-400 MP4UtgardES 2.005674
~5.517%
2747n3
4.05n14
6990n3
2615.5n2
NVIDIA GeForce ULP (Tegra 3)Tegra 3VLIW Vec4ES 2.0405096
~4.113%
2445
3.15n6
5350
Broadcom VideoCore-IVES 2.0405096
~1.68%
2.9
1428
Qualcomm Adreno 220266ES 2.0454945
Vivante GC1000+ Dual-Core600 / 8009_32.1 / ES 2.003746
~0.18%
2373n3
2.7n3
ARM Mali-400 MP2UtgardES 2.005674
~3.717%
2465n25
4.25n26
4830.5n4
1643n4
ARM Mali-400 MPUtgardES 2.005674
~3.817%
2404n9
4.15n8
4956n5
1719n3
NVIDIA GeForce ULP (Tegra 2)Tegra 2VLIW Vec4300400ES 2.0405096
Intel Graphics Media Accelerator (GMA) 600GMA 600PowerVR SGX54009.0c454976
~0.613%
119
1562n2
107n3
PowerVR SGX540PowerVR SGX5200ES 2.0455827
~04%
1
Intel Graphics Media Accelerator (GMA) 500GMA 500PowerVR SGX520010.11305522
~0.413%
68
1016n11
29n13
Qualcomm Adreno 205245ES 2.0454848
Qualcomm Adreno 203245ES 2.0454097
~0.18%
2073
1.65n4
Vivante GC800315575ES 2.0284366
PowerVR SGX535PowerVR SGX52009.0c2.1, ES 2.0455888
PowerVR SGX531PowerVR SGX5ES 2.006284
~08%
536
0.5
PowerVR SGX530PowerVR SGX5ES 2.006771
Qualcomm Adreno 200128ES 2.0455553
ARM Mali-200Utgard230380ES 2.0656150
NVIDIA GeForce 3 Go25032 / 64 / 128DDR6471507987
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
NVIDIA GeForce 2 Go (200 / 100)NV1116614332 / 64DDR6471808324
~2.64%
2500
ATI Mobility Radeon 9100 IGPRS3504008.107480
~2.84%
2680n2
ATI Mobility Radeon 9000 IGPRC350300008.107533
~7.74%
7450
ATI Mobility Radeon M7M723018364DDR3271808049
~3.64%
3500
ATI Mobility Radeon M6M616616632DDR1671808049
~2.74%
2570
VIA Chrome9 HCVN896250onboard906133
~0.913%
115n3
2029.5n4
459n3
Intel Extreme Graphics 2MontaraGen. 2133081507317
~2.64%
0n2
2457n2
ATI Mobility Radeon 7000 IGPR1000707594
~1.74%
1625n2
ATI Radeon IGP 340M1800707741
~1.34%
1235
ATI Radeon IGP 320M1600707741
~1.64%
1537
VIA S3G UniChrome Pro IIZoetrope2000706284
~1.14%
1018
VIA S3G UniChrome ProZoetrope0707106
~2.14%
2018n3
VIA Castle RockCLE26607653
SIS Mirage 2 M760M7602008.107388
~1.64%
1514n2
SIS Mirage M661FX 133707472
~1.44%
1300
VIA S3 Graphics ProSavage812108383
~0.64%
600
ATI Mobility 128 M3M310510564DDR8608718
~0.44%
415
Silicon Motion SM50206192
NXP PXP019706
unknown019706
~1.517%
74
62
35
35.64
-
(-) * Smaller values are better. / n123 Number of benchmarks for this median value / * Approximate position
- - -
-
-
Please share our article, every link counts!
-
-
-
-
Klaus Hinum, 2023-12-12 (Update: 2023-12-12)
-
-
-
-
-
-
- -
- - - \ No newline at end of file diff --git a/PCData/data/notebookcheck/mobile-cpu.csv b/PCData/data/notebookcheck/mobile-cpu.csv deleted file mode 100644 index 8f6df8e..0000000 --- a/PCData/data/notebookcheck/mobile-cpu.csv +++ /dev/null @@ -1,917 +0,0 @@ -Model,Codename,Series,L2 Cache + L3 Cache,FSB / QPI,TDP Watt,MHz - Turbo,Cores / Threads,Process (nm),Architecture,64 Bit,Days old,Graphics Card,Perf. Rating,3DMark06 CPU,Cinebench R10 32Bit Single,Cinebench R10 32Bit Multi,Cinebench R11.5 CPU Single 64Bit,Cinebench R11.5 64Bit,Cinebench R15 CPU Single 64Bit,Cinebench R15 CPU Multi 64Bit,Cinebench R20 Single,Cinebench R20,Cinebench R23 Single Core,Cinebench R23 Multi Core,SuperPI 1M*,SuperPI 32M*,wPrime 32,wPrime 1024,WinRAR 4.0,x264 Pass 1,x264 Pass 2,x265,TrueCrypt AES,TrueCrypt Twofish,TrueCrypt Serpent,Blender(-),Blender v3.3 Classroom CPU(-),7-Zip Single,7-Zip,Geekbench 2,Geekbench 3 32 Bit Single-Core Score,Geekbench 3 32 Bit Multi-Core Score,Geekbench 4.4 64 Bit Single-Core Score,Geekbench 4.4 64 Bit Multi-Core Score,Geekbench 5.0 5.0 Single-Core,Geekbench 5.0 5.0 Multi-Core,Geekbench 5.5 Single-Core,Geekbench 5.5 Multi-Core,Geekbench 6.2 Single-Core,Geekbench 6.2 Multi-Core,PassMark PerformanceTest Mobile V1 CPU Tests,Sunspider 1.0 Total Score(-),Octane V2 Total Score,Jetstream 2,Speedometer,WebXPRT 3,WebXPRT 4 Overall -AMD Ryzen Threadripper PRO 7995WX,Storm Peak,Threadripper,96MB + 384MB,,350,2500 ‑ 5100,96/192,5,x86,,22,,~70.2,21375,7951,72072,3.4,76.86,286,15842,695,41011,1815,107681,6.98,349.43,7.93,17.19,63037,354.5,267.5,56.9,38.4,5.3,3.3,29,38,7108,174189,,,,4762,19324,1017,3879,1918,55811,2702,25365,,,,,,349,263 -AMD Ryzen Threadripper PRO 3995WX,Matisse,Threadripper,32MB + 256MB,,280,2700 ‑ 4200,64/128,7,x86,,1244,,~52.4,16656,5596,52743,2.12,54.3,195,9706,488,23571,1249,61102,9.81,730,6.11,25.41,6689,264,192.5,46.6,26,4.8,2.9,47.8,,5021,140172,,,,5567,80545,1266,31711,1720,14881,,,,,,,,229, -Intel Core i9-14900K,Raptor Lake,Raptor Lake-R,32MB + 36MB,,125,3200 ‑ 6000,24/32,10,x86,,24,UHD Graphics 770,~68.6,20802,12643,94801,4.02,72.24,332,6282,900,15466,2351,41193,5.48,280.25,2.07,74.47,16108,345.5,181.2,42,26.7,5.8,2.8,82.5,139.5,7772,149570,,,,9869.5,88609,2271.5,24957,2306.5,25285,3254.5,21537.5,,,,,,386,332 -AMD Ryzen 9 7950X,Raphael (Zen 4),"Raphael (Zen 4, Ryzen 7000)",16MB + 64MB,,170,4500 ‑ 5700,16/32,0,x86,,410,Radeon Graphics (Ryzen 7000),~65.9,21065,8508,72480,3.7,68.61,316,6095,778,14538,2001,37353,6.35,312.55,1.67,30.81,15779,383,274,43.55,32.5,4.5,2.8,86,134,8167,157469,,,,8864,85341,2131,23887,2227,23903,2975,19813,,,,,,377,303 -Intel Core i9-13900K,Raptor Lake,Raptor Lake-S,32MB + 36MB,,125,3000 ‑ 5800,24/32,10,x86,,386,UHD Graphics 770,~65.9,20191.5,12017.5,87738,3.87,67.5,324,5959,849.5,14620.5,2238.5,38271.5,5.7,293.25,2.05,84.2,14271,419.25,264.75,40.7,22.9,5.4,2.9,84,139,7272,146984,,,,9598,85336,2197,23664,2286,24033,,,,,,,,368,316 -AMD Ryzen 9 7950X3D,Raphael (Zen4),"Raphael (Zen 4, Ryzen 7000)",16MB + 128MB,64K (per core),120,4200 ‑ 5700,16/32,5,x86,,310,Radeon Graphics (Ryzen 7000),~67.5,20279,16551,138015,3.86,64.59,326,5974,795,14188,2053,36291,6.11,305.11,2.01,33.88,15779,392.5,265.5,42.4,26.9,4.2,2.8,86,133,8321,159341,,,,9240,87922,2183,23720,2311,24343,,,,,,,,383,313 -Intel Core i7-14700K,Raptor Lake,Raptor Lake-R,28MB + 33MB,,125,2500 ‑ 5600,20/28,10,x86,,54,UHD Graphics 770,~64.6,20665,12027,91081,3.7,61.44,314,5459,832,13672,2153,35892,5.98,305.94,2.15,109.8,12800,419,261,36.8,25.6,4.6,2.6,91,155,7351,135648,,,,9304,79501,2045,22756,2121,23159,2902,19790,,,,,,339,314 -AMD Ryzen 9 7900X,Raphael (Zen4),"Raphael (Zen 4, Ryzen 7000)",12MB + 64MB,,170,4700 ‑ 5600,12/24,5,x86,,440,Radeon Graphics (Ryzen 7000),~58.7,21284,8623,68579.5,3.83,54.66,323,4820.5,782.5,11471.5,2016.5,29300,6.14,313.44,1.8,40.31,17225,376,241,36.85,14.8,2.8,1.5,106,166,8269,127195,,,,9275,77033,2196,20658,2294,20667.5,,,,,,,,383,304.5 -Intel Core i7-13700K,Raptor Lake,Raptor Lake-S,24MB + 30MB,,125,3400 ‑ 5400,16/24,10,x86,,439,UHD Graphics 770,~60,18153,11278,85748,3.66,52.98,303,4507.5,811.5,11713.5,2116,30745,6.19,317.81,2.31,170.22,12835,406,232,33.85,15.8,4,2.2,108,176.5,7061.5,111390,,,,8955,69210,2064,19217,2110,20190.5,2962,19249,,,,,,348,301 -AMD Ryzen 9 7945HX3D,Dragon Range-HX (Zen 4),"Dragon Range (Zen 4, Ryzen 7045)",16MB + 128MB,,55,2300 ‑ 5400,16/32,5,x86,,135,Radeon 610M,~64.2,,8478,70414,3.7,61.9,311,5600,755,13033,1935,32782,6.4,337.8,5.9,249.9,51122,,,36.4,23.4,3.8,2.5,95,150,7573,136201,,,,,,,,2133,19875,2916,16957,,,97066,332.3,367.9,480,328 -AMD Ryzen 9 7945HX,Dragon Range-HX (Zen 4),"Dragon Range (Zen 4, Ryzen 7045)",16MB + 64MB,,55,2500 ‑ 5400,16/32,0,x86,,339,Radeon 610M,~60.8,,8481,71582,3.65,64.29,307,5541,747,13308,1936,34202,6.4,337,4.9,158.7,,,,36.15,25.3,4,2.7,93,145.5,7379,140471,,,,,,1984,19315,2103,19583,2876,16316,,,95872.5,331.6,325,351,289 -AMD Ryzen Threadripper PRO 3975WX,Matisse,Threadripper,16MB + 128MB,,280,3500 ‑ 4200,32/64,7,x86,,1244,,~50.5,16923,5884,53924,2.19,52.2,201,7053,500,16464,1286,42744,9.55,714,3.63,24.28,6530,268,193,43,27,4.7,2.6,69.4,,5140,141386,,,,5764,81029,1306,29094,1285,28798,,,,,,,,198, -Intel Core i9-13980HX,Raptor Lake-HX,Raptor Lake-HX,32MB + 36MB,,55,1600 ‑ 5600,24/32,10,x86,,340,UHD Graphics 770,~60.7,19734,11940,85088,3.73,55.79,304.5,4717,807,11510,2110,30273,7.42,345.8,3.02,183.5,11438,374,198.05,31.6,18.4,4.9,2.5,106,190,6972,119244,,,,,,1987,22107,2099,20329,2881.5,17564,,,102620,328.04,399,337,306 -Intel Core i9-13950HX,Raptor Lake-HX,Raptor Lake-HX,32MB + 36MB,,55,1600 ‑ 5500,24/32,10,x86,,340,UHD Graphics 770,~62.8,19311,11424,80693,3.57,59.98,297,4529,801,10919,2096,28681,6.2,322.8,,,,,,31,,,,111,196,6754,116665,,,,,,2006,18486.5,2043,20036,2919.5,16927.5,,,103911,328.16,407,318.5,291 -Intel Core i9-13900HX,Raptor Lake-HX,Raptor Lake-HX,32MB + 36MB,,55,1600 ‑ 5400,24/32,10,x86,,340,UHD Graphics Xe 32EUs (Tiger Lake-H),~59.7,18036.5,11699.5,79299.5,3.66,52.32,295,4487,785.5,10548,2055,27844,6.21,315.13,2.6,215.69,12916,387.7,217.7,29.4,17,4.25,2.25,114,202,6892.5,114430,,,,8843,71143,1982,19027,2036,19982,2720,16522.5,,,104390,305.03,356.5,322,291 -AMD Ryzen 9 7900,Raphael (Zen4),"Raphael (Zen 4, Ryzen 7000)",12MB + 64MB,,65,3700 ‑ 5400,12/24,5,x86,,330,Radeon Graphics (Ryzen 7000),~55.7,19451,8339,60934,3.68,45.31,315,4020,762,9703,1966,24776,6.73,329.05,2.98,46.75,10154,355.5,207,31.2,21.5,3.1,2,125,199,7936,112881,,,,8861,65241,2096,17581,2203,17880,,,,,,,,366,302 -Intel Core i9-12900K,Alder Lake,Alder Lake-S,14MB + 30MB,,125,3200 ‑ 5200,16/24,10,x86,,765,UHD Graphics 770,~53.1,18752.5,9859,71819,3.5,45.62,289,4057,771.5,9935,2004.5,26125,7.05,347,3.66,192.8,11834,366.75,201,29.5,19.25,3.6,1.95,124.7,,6575.5,97315.5,,,,8629,63910.5,1947.5,17828,2005.5,17776,,,,,96769,206.7,,325, -Intel Core i5-14600K,Raptor Lake,Raptor Lake-R,20MB + 24MB,,125,3500 ‑ 5300,14/20,10,x86,,54,UHD Graphics 770,~56.6,18096,11396,75358,3.58,40.96,297,3640,790,9371,2064,24491,6.23,316.69,2.39,158.77,11491,411,209,28.6,19.5,3.4,1.8,134,223,6910,93235,,,,8904,64035,2004,17374,2017,17516,2879,17409,,,,,,354,301 -AMD Ryzen 9 7845HX,Dragon Range-HX (Zen 4),"Dragon Range (Zen 4, Ryzen 7045)",12MB + 64MB,,55,3000 ‑ 5200,12/24,0,x86,,344,Radeon 610M,~65.9,,,,,,295,4320,719,10492,1852,26876,,,,,,,,29.7,,,,117,185,7018,106033,,,,,,,,2008,15068,2729,12585,,,,308.27,,357,282 -AMD Ryzen 7 7700X,Raphael (Zen4),"Raphael (Zen 4, Ryzen 7000)",8MB + 32MB,,170,4500 ‑ 5400,8/16,5,x86,,440,Radeon Graphics (Ryzen 7000),~52.1,18115,8633,56024,3.71,36.06,315,3113.5,772.5,7462.5,1987,19088,6.35,322.8,2.15,61.15,14879,373.5,181.2,25.45,17.5,2.3,1.4,163,261,8074,85706.5,,,,8991,56909,2123,14215,2218,14131,,,,,,,,355,301 -AMD Ryzen 7 7700,Raphael (Zen4),"Raphael (Zen 4, Ryzen 7000)",8MB + 32MB,,65,3800 ‑ 5300,8/16,5,x86,,339,Radeon Graphics (Ryzen 7000),~51.1,18277,8345,53881,3.64,34.29,308,3047,750,7259,1930,18760,6.55,335.26,2.72,62.63,14860,368,174.95,25,15.9,2.3,1.5,166,266,7880,85260,,,,8753,55542,2078,13869,2161,13929,,,,,,,,352,295 -AMD Ryzen 9 5950X,Vermeer (Zen 3),Vermeer (Ryzen 5000),8MB + 64MB,,105,3400 ‑ 4900,16/32,7,x86,,1158,,~49.7,17656.5,6689.5,56640.5,3.08,47.83,266.5,4324,629,10061,1614,26017,7.24,361.5,4.23,58.45,12735.5,330,212,30.85,26,3.5,2.35,117.65,,6851.5,122978,,,,7118.5,60408.5,1654,15983,1651.5,16248,,,,,,,,289.5, -Intel Core i5-13600K,Raptor Lake,Raptor Lake-S,20MB + 24MB,,125,3500 ‑ 5100,14/20,10,x86,,416,UHD Graphics 770,~53.3,17627,10754.5,68879.5,3.47,42.29,287.5,3642,770.5,9241,2000.5,24221,6.53,331.36,2.52,174.89,10967,387.5,198.8,27.55,19.1,3.15,1.7,135,224,6377.5,89587,,,,8624.5,61014,1947.5,16566,1973,16670.5,,,,,,,,331,288 -Intel Core i7-13850HX,Raptor Lake-HX,Raptor Lake-HX,24MB + 30MB,,55,1500 ‑ 5300,20/28,10,x86,,345,UHD Graphics 770,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Ryzen 7 7800X3D,Raphael (Zen4),"Raphael (Zen 4, Ryzen 7000)",1KB + 96MB,,162,4200 ‑ 5000,8/16,5,x86,,253,Radeon Graphics (Ryzen 7000),~50,16892,8026,51950,3.43,33.48,281.5,2878.5,686,6804.5,1766.5,17387,7.09,337.57,2.44,62.73,16585,344,169.25,23.25,15.3,2.1,1.3,178,282.5,7823.5,80312.5,,,,9097,54840,1938,13888,1920,12715,2634,14288,,,,,,353,282 -Intel Core i9-12900,Alder Lake,Alder Lake-S,14MB + 20MB,,65,2400 ‑ 5100,16/24,10,x86,,710,UHD Graphics 770,~45.9,17464,8949,68729,3.16,38.96,262,3299,703,7179,1825,18628,,,2.67,211.8,10739,310,147.5,14.4,17.2,3.4,1.9,262.7,,5979,50152,,,,6991,36310,1638,8845,1656,8924,,,,,,,,269, -Intel Core i7-13700,Raptor Lake-S,Raptor Lake-S,24MB + 30MB,,65,2100 ‑ 5200,16/24,10,x86,,345,UHD Graphics 770,~57.2,17194,10840,82724,3.5,50.37,285,3692,739.5,9194,2008.5,25369,6.39,329.23,2.5,161.46,12289,393,224,27.25,22,3.8,2.1,144.5,250.5,6642.5,91604,,,,8714,67866,1925,18964,1983.5,17563.5,2761,15882,,,,341.33,,338,289.5 -Intel Core i9-12950HX,Alder Lake-HX,Alder Lake-S,14MB + 30MB,,55,1700 ‑ 5000,16/24,10,x86,,584,UHD Graphics 770,~58.4,,,,,,274,3107,727,7744,1885,20263,,,,,,,,22.5,,,,175,302,6197,77003,,,,,,1855,13908,1886,15229,,,,,94008,291.99,356,311,274 -Intel Core i9-12900HX,Alder Lake-HX,Alder Lake-S,14MB + 30MB,,55,1700 ‑ 5000,16/24,10,x86,,584,UHD Graphics 770,~53.8,17668,9509,64621,3.35,41.54,278,3566,739,8842.5,1912.5,23150,7.25,379.61,7.83,245.74,9993,313.7,185.5,26,17.4,3.2,1.7,148.6,267,6336,86541,,,,8182,58845.5,1848,16487.5,1906.5,16311.5,,,,77.4,95387,292.72,327,317.5,275 -Apple M3 Max 16-Core,,Apple M3,,,78,2748 ‑ 4056,16/16,3,ARM,,51,M3 Max 40-Core GPU,~70.8,,,,,,271,3264,494.5,6123.5,1959,24022,,,,,,,,,,,,216,195,,,,,,,,,,2324.5,22937.5,3126.5,21253.5,,,96362.5,310.1,561,421, -AMD Ryzen 9 3950X,Matisse (Zen 2),Matisse (Ryzen 3000 Desktop),8MB + 64MB,,105,3500 ‑ 4700,16/32,7,x86,,1487,,~41.1,,6102,53396,2.37,43.68,209,4002,520,9075,,,9.19,512,4.11,44.86,7409,265,168,15.8,10.8,3.6,2.3,125.8,,5340,99467,,,,5749,48962,1315,12976,1306,12363,,,,,,,,239, -Intel Core i7-13700HX,Raptor Lake-HX,Raptor Lake-HX,24MB + 30MB,,55,1500 ‑ 5000,16/24,10,x86,,345,UHD Graphics 770,~59.4,17038,,,,,272,3348.5,723,8062,1875,21516,,,,,,,,22.4,,,,157.5,267,6166,78076,,,,8059,57031,1788.5,15008.5,1845,14942,2593,14402,,,92283,295.42,335,309.5,270.5 -Intel Core i7-12700K,Alder Lake,Alder Lake-S,12MB + 25MB,,125,2700 ‑ 5000,12/20,10,x86,,770,UHD Graphics 770,~46.7,16827,9305,63484,3.29,38.38,272,3325,735.5,7800.5,1850.5,19784,7.35,387,2.66,171.2,10389,349.5,179,20.5,15.7,2.8,1.6,173.1,,6269.5,73438.5,,,,8133,55786,1840.5,13879,1911.5,14016,,,,,,241.28,,303.5, -Intel Core i9-13900HK,Raptor Lake-H,Raptor Lake-H,11.5MB + 24MB,,45,1900 ‑ 5400,14/20,10,x86,,345,Iris Xe G7 96EUs,~54.6,,,,,,279,2950,749,7542,1960,19704,,,,,,,,21.9,,,,,287,5864,77190,,,,,,1865,14628,1942,14985,,,,,,314.97,,297,279 -Intel Core Ultra 9 185H,Meteor Lake-H,Intel Meteor Lake-H,+ 24MB,,45,3800 ‑ 5100,16/22,7,x86,,6,Arc 8-Cores,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Core i9-13905H,Raptor Lake-H,Raptor Lake-H,11.5MB + 24MB,,45,1900 ‑ 5400,14/20,10,x86,,345,Iris Xe G7 96EUs,~55.5,,,,,,246,2857,639,7152,2020,20034,,,,,,,,21.2,,,,173,302,5520,69892,,,,,,1898,14690,1685,13707,2404,14212,,,,310.21,,301.5,265.5 -Intel Core i9-13900H,Raptor Lake-H,Raptor Lake-H,11.5MB + 24MB,,45,1900 ‑ 5400,14/20,10,x86,,345,Iris Xe G7 96EUs,~59.1,15361.5,,,,,280,2739,763,6958,1973.5,17856.5,,,,,,,,19.25,,,,193,329,6260.5,70425,,,,8409,50450,1802.5,13197.5,1967,13216,2645,12611,,,100022,310.6,348,319,285 -Apple M3 Max 14-Core,,Apple M3,,,78,2748 ‑ 4056,14/14,3,ARM,,51,M3 Max 30-Core GPU,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Core Ultra 7 165H,Meteor Lake-H,Intel Meteor Lake-H,+ 24MB,,28,3800 ‑ 5000,16/22,7,x86,,6,Arc 8-Cores,~57.1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1853,11733,2513,13288,,,,,,, -Intel Core i7-13800H,Raptor Lake-H,Raptor Lake-H,11.5MB + 24MB,,45,1800 ‑ 5200,14/20,10,x86,,345,Iris Xe G7 96EUs,~61.5,,,,,,287,2765,776,6714,2017,17591,,,,,,,,20,,,,191,337,6310,70500,,,,,,,,1972,12880,2766,12876,,,,,,314,283 -AMD Ryzen 9 5900X,Vermeer (Zen3),Vermeer (Ryzen 5000),6MB + 64MB,,105,3700 ‑ 4800,12/24,7,x86,,1163,,~47.5,16438,6828,52076,3.14,41.78,250,2695,598,6233,1527,16262,7.19,360.5,,,13361,335,191,24.9,21.2,2.9,1.8,154.2,,6582,90443,,,,7034,52798.5,1588,12813,1604,11765,,,,,,218.1,,279, -Intel Core i9-10980XE,Cascade Lake,Core i9 (Desktop),18MB + 24.8MB,,165,3000 ‑ 4600,18/36,14,x86,,1535,,~46.7,14129,7847,59479,2.36,38.39,208,3744,489.5,8532.5,,,7.68,410,2.81,47.4,7172,215,157.5,27,18.2,3.2,1.9,130,,5370.5,93076.5,38219,4578,56351,5794.5,54222.5,1239.5,15743.5,1260,16480,,,,97.5,39564,,77.3,239, -Intel Core i9-9980XE,Sky Lake-X,Core i9 (Desktop),18MB + 24.8MB,,165,3000 ‑ 4400,18/36,14,x86,,1811,,~40.2,13495,7323,58001,2.22,38.57,197.5,3735.5,461.5,8857,,,8.23,433,2.74,46.52,6879,206.5,156,26.05,18.1,3.2,1.9,136.5,,5110,93017.5,,,,5492.5,55149.5,1217.5,16331,1200,15780,,,,,,,,, -Intel Core i7-12850HX,Alder Lake-HX,Alder Lake-S,14MB + 25MB,,55,1500 ‑ 4800,16/24,10,x86,,584,UHD Graphics 770,~51.6,,,,,,260.5,2679,697.5,6490.5,1720.5,16301.5,,,,,,,,17.25,,,,193,317,5762,61678.5,,,,,,1718,11363,1782,12302,,,,,,261.94,,284.5,232 -Intel Core i7-12800HX,Alder Lake-HX,Alder Lake-S,14MB + 25MB,,55,1500 ‑ 4800,16/24,10,x86,,584,UHD Graphics 770,~51.4,,,,,,260,3383,676,8564,1812,22456,,,,,,,,24.9,,,,153.1,,5624,76947,,,,,,1726,14093,1759,14213,,,,,,277.91,,309, -Intel Core Ultra 7 155H,Meteor Lake-H,Intel Meteor Lake-H,+ 24MB,,28,3800 ‑ 4800,16/22,7,x86,,6,Arc 8-Cores,~46.6,,9919,56242,3.07,29.98,257,2362,673.5,5455,1779,15013,7.05,400.29,,,7084,282.57,128.04,16.5,10.2,1.7,0.94,219.5,385.5,5223.5,62093.5,,,,6838,43897,1684,11684,1776.5,12014.5,2425,12504,,,,,,293,263 -Intel Core i9-12900HK,Alder Lake-H,Alder Lake-P,11.5MB + 24MB,,45,1800 ‑ 5000,14/20,10,x86,,710,Iris Xe G7 96EUs,~46.9,16756,8561,53020,2.99,28.22,257,2845,664,7104.5,1789,18621.5,7.87,409.92,3.38,201.06,8480,288.2,136.65,20.55,15.2,2.45,1.4,178.4,,5622.5,72874,,,,7970,50701,1853.5,13647.5,1870,13717,,,,107.05,94352,267.75,274,299,249 -Intel Core i9-12900H,Alder Lake-H,Alder Lake-P,11.5MB + 24MB,,45,1800 ‑ 5000,14/20,10,x86,,710,Iris Xe G7 96EUs,~44.1,12799,8235,47831,2.96,25.96,265,2586,715,6060,1863,15987,7.78,409.19,4.1,196.5,7897,254.75,111.4,18.7,9.7,1.7,1,201,375.5,5881,64918,,,,7199,35978.5,1673,10985,1830.5,12321.5,2265,10442,,,86645,263,241,297.5,264 -Intel Core i7-13705H,Raptor Lake-H,Raptor Lake-H,11.5MB + 24MB,,45,1800 ‑ 5000,14/20,10,x86,,345,Iris Xe G7 96EUs,~51.7,,10476,61674,3.21,31.6,273.5,2868.5,727.5,7198.5,1874,18765,6.9,680.2,26.3,1258.7,,,,20.1,12.7,2.7,1.5,181,322,5999.5,75165,,,,,,,,1841,14322.5,2588,14502,,,91471,287.85,314.5,303.5,267.5 -Intel Core i7-13700H,Raptor Lake-H,Raptor Lake-H,11.5MB + 24MB,,45,1800 ‑ 5000,14/20,10,x86,,345,Iris Xe G7 96EUs,~49.8,15415,10487,65623,3.28,33.82,268,2515,717,6051,1854,15609,6.8,371.9,2.94,208.8,7559,340.5,167.5,16.9,16.1,2.9,1.5,217,386,6014,61921,,,,8083,50819,1815,13200,1829,12567,2610,12989,,,92979,292.9,332,299,267.5 -Intel Core i5-13400F,Raptor Lake-S,Raptor Lake-S,9.5MB + 20MB,,65,2500 ‑ 4600,10/16,10,x86,,345,,~43.5,13989,8689,51113,3.06,27.46,252,2364,672,6091,1744,15911,8.03,420.48,3.27,367.88,8602,314.5,136.85,19.2,12.2,2,1.1,206,336,5743,60048,,,,7684,43856,1721,12009,1792,12095,,,,,,,,294,254 -Intel Core i5-13400,Raptor Lake-S,Raptor Lake-S,9.5MB + 20MB,,65,2500 ‑ 4600,10/16,10,x86,,345,UHD Graphics 730,~43.7,13632,8721,51095,3.1,27.36,257,2358,688,6135,1786,15953,8.03,427.16,3.47,452.31,7979,311,135.8,19.1,11.8,2,1.2,206,336,5829,59510,,,,7683,42509,1706,11801,1795,12107,,,,,,,,306,251 -Intel Core i7-12700F,Alder Lake,Alder Lake-S,12MB + 25MB,,65,3300 ‑ 4900,12/20,10,x86,,710,,~43.9,15823,9146,56067,3.28,33.5,271,2610,726,5786,1898,15291,7.39,386.35,2.95,128.31,8695,296.5,118.55,17.7,3.3,2.8,1.5,212,,6145,61218,,,,6698,39852,1557,10249,1590,10126,,,,,94804,295.07,,281,271 -Intel Core i7-12700,Alder Lake,Alder Lake-S,12MB + 25MB,,65,3300 ‑ 4900,12/20,10,x86,,710,UHD Graphics 770,~49,15390,9171,60892,3.28,36.92,272,3151,731,8338,1894,21751,7.53,400.41,2.9,272.82,9328,347,172.35,25.5,14.5,2.7,1.5,151,242,6292,78331,,,,8059,52676,1845,14883,1924,14961,,,,,,,,314,268 -Intel Core i5-12600K,Alder Lake,Alder Lake-S,9.5MB + 20MB,,125,2800 ‑ 4900,10/16,10,x86,,770,UHD Graphics 770,~44,15722,9381,55462,3.31,30.01,275,2555,734,6692,1907,17491,7.41,363.2,4.73,202.7,6239,333.5,148,30.1,12.8,2.2,1.3,189.5,,5944,64260,,,,8223,46557,1821,12746,1904,12797,,,,,,,,293, -AMD Ryzen 5 7600X,Raphael (Zen4),"Raphael (Zen 4, Ryzen 7000)",6MB + 32MB,,105,4700 ‑ 5300,6/12,5,x86,,445,Radeon Graphics (Ryzen 7000),~49,17290.5,8480,49430,3.71,28.32,314,2517,761,5966,1965,15236,7.42,367.07,2.76,78.81,16178,367,147.8,21,13.2,1.8,1.1,205,328,8058,69291,,,,9021,47694,2126,11982,2217,12003,,,,,,,,370.5,298 -AMD Ryzen 5 7600,Raphael (Zen4),"Raphael (Zen 4, Ryzen 7000)",6MB + 32MB,,65,3800 ‑ 5100,6/12,5,x86,,335,Radeon Graphics (Ryzen 7000),~45.1,15993,8122,46166,3.51,26.4,298,2339,724,5487,1852,12735,6.82,351.04,3.06,83.81,14038,347,137.8,19.5,12.5,1.6,1.1,219,352,7566,64613,,,,8453,44221,2005,10745,2088,11095,,,,,,,,345, -Intel Core Ultra 5 135H,Meteor Lake-H,Intel Meteor Lake-H,+ 18MB,,28,3600 ‑ 4600,14/18,7,x86,,6,Arc 7-Cores,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Ryzen 9 8945HS,Hawk Point-HS (Zen 4),"Hawk Point (Zen 4/4c, Ryzen 8040)",8MB + 16MB,,45,4000 ‑ 5200,8/16,4,x86,,9,Radeon 780M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Ryzen 9 7940HS,Phoenix-HS (Zen 4),"Phoenix (Zen 4, Ryzen 7040)",8MB + 16MB,,35,4000 ‑ 5200,8/16,4,x86,,344,Radeon 780M,~48.4,15715.5,7963,49845,3.46,30.88,285,2664.85,702.5,6659,1792,17124,7.06,532.8,2.7,66.8,7439,304.5,150.8,20.8,14.8,2.1,1.4,188,303,6652,70050,,,,7657,46087.5,1898,11382,1981,11564,2591,12011,,,89067,298.74,302,315,262 -AMD Ryzen 9 PRO 7940HS,Phoenix-HS (Zen 4),"Phoenix (Zen 4, Ryzen 7040)",8MB + 16MB,,35,4000 ‑ 5200,8/16,4,x86,,185,Radeon 780M,~56.6,,,,,,263.5,2539,653,6195.5,1681,15928.5,,,,,,,,18.7,,,,203,325,6029.5,64558,,,,,,,,1857,10967.5,2472,11561.5,,,77466,262.2,263,297,242 -AMD Ryzen 7 7745HX,Dragon Range (Zen 4),"Dragon Range (Zen 4, Ryzen 7045)",8MB + 32MB,,55,3600 ‑ 5100,8/16,0,x86,,344,Radeon 610M,~58,,,,,,294,2978,717,7072,1846,18060,,,,,,,,23.2,,,,174,277,7244,75557,,,,,,1971,12179,2040,12378,,,,,,326.92,,345,283 -AMD Ryzen 7 8845HS,Hawk Point-HS (Zen 4),"Hawk Point (Zen 4/4c, Ryzen 8040)",8MB + 16MB,,45,3800 ‑ 5100,8/16,4,x86,,9,Radeon 780M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Core Ultra 5 125H,Meteor Lake-H,Intel Meteor Lake-H,+ 18MB,,28,3600 ‑ 4500,14/18,7,x86,,6,Arc 7-Cores,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Core i7-13650HX,Raptor Lake-HX,Raptor Lake-HX,+ 24MB,,55,1900 ‑ 4900,14/20,10,x86,,345,UHD Graphics Xe 16EUs (Tiger Lake-H),~54,16051,10616,68755,3.31,37.44,274,3141.5,719.5,8010,1868.5,20999,6.7,370.4,,,8422,345.8,175.1,23.15,16.7,2.9,1.6,161.5,280.5,5981.5,78884.5,,,,7895,52742,,,1845,14196,,,,,,,,312,277 -AMD Ryzen 7 8840HS,Hawk Point-HS (Zen 4),"Hawk Point (Zen 4/4c, Ryzen 8040)",8MB + 16MB,,28,3300 ‑ 5100,8/16,4,x86,,9,Radeon 780M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Ryzen 7 7840HS,Phoenix-HS (Zen 4),"Phoenix (Zen 4, Ryzen 7040)",8MB + 16MB,,35,3800 ‑ 5100,8/16,4,x86,,344,Radeon 780M,~48.5,15667,7709,50264,3.33,30.25,279,2608,690,6509,1779,16706,8.77,724.41,2.63,72.82,7699,298,149.3,20.4,14.9,2.1,1.3,192,310,6640,70243,,,,8148,48814,1910.5,11662,1960,11803,2671.5,13100,,,91466.5,303.71,298.5,322,263 -AMD Ryzen 7 7840S,Phoenix-HS (Zen 4),"Phoenix (Zen 4, Ryzen 7040)",8MB + 16MB,,35,3800 ‑ 5100,8/16,4,x86,,344,Radeon 780M,~47.2,14547,7579,45931,3.33,28.61,274,2222.84,685,5912,1761,15102,7.4,653.4,10.2,341.9,20369,,,18.6,12.9,1.9,1.2,213,347,6328,64696,,,,,,,,1939,11288,2605,12598,,,91068,316.3,280.6,296,247.5 -AMD Ryzen 7 PRO 7840HS,Phoenix-HS (Zen 4),"Phoenix (Zen 4, Ryzen 7040)",8MB + 16MB,,35,3800 ‑ 5100,8/16,4,x86,,185,Radeon 780M,~58.3,,,,,,276,2519,693,6235,1774,15863,,,,,,,,19.9,,,,201,325,6493,70387,,,,,,,,1953,12039,2528.5,12858,,,,,,311,222 -AMD Ryzen 9 6980HX,Rembrandt-H (Zen 3+),Rembrandt (Zen 3+),4MB + 16MB,,45,3300 ‑ 5000,8/16,6,x86,,710,Radeon 680M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Core i7-12800H,Alder Lake-H,Alder Lake-P,11.5MB + 24MB,,45,1800 ‑ 4800,14/20,10,x86,,710,Iris Xe G7 96EUs,~57.6,,,,,,265,2222,706,5731,1828,15283,,,,,,,,16.8,,,,222,337,5820,62100,,,,,,,,1771,12434,,,,,91965,254.5,311,294.5,265 -Apple M3 Pro 12-Core,,Apple M3,,,27,2748 ‑ 4056,12/12,3,ARM,,51,M3 Pro 18-Core GPU,~71.3,,,,,,,2163,,,1977,15106,,,,,,,,,,,,327,314,,,,,,,,,,2327,15298,3138,15480,,,96501,297.2,555,427, -Apple M3 Pro 11-Core,,Apple M3,,,27,2748 ‑ 4056,11/11,3,ARM,,51,M3 Pro 14-Core GPU,~66.6,,,,,,281,1913,502,3529,1942,13315,,,,,,,,,,,,365,355,,,,,,,,,,2331,13312,3113,14412,,,98732,307.5,549,431, -Intel Core i7-12650HX,Alder Lake-HX,Alder Lake-S,11.5MB + 24MB,,55,1500 ‑ 4700,14/20,10,x86,,584,UHD Graphics 770,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Core i5-13600HX,Raptor Lake-HX,Raptor Lake-HX,+ 24MB,,55,1900 ‑ 4800,14/20,10,x86,,345,UHD Graphics 770,~65,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1912.5,15135,2920,15910,,,,,,, -Intel Core i5-13500HX,Raptor Lake-HX,Raptor Lake-HX,+ 24MB,,55,1800 ‑ 4700,14/20,10,x86,,345,UHD Graphics Xe 16EUs (Tiger Lake-H),~49.3,14596,8980,58608,3.14,33.7,252,2863,679,7021,1730.5,18334,7.7,408,10.7,400.2,,,,20.3,14.6,2.8,1.5,193,336,5728,71243,,,,,,,,1730,13581,2478,13404,,,90065,308.43,356.7,293,243 -AMD Ryzen 9 3900X,Matisse (Zen 2),Matisse (Ryzen 3000 Desktop),6MB + 64MB,,105,3800 ‑ 4600,12/24,7,x86,,1622,,~37.7,14889,6018.5,45539,2.36,33.88,207,3049,514,6910,1370,19000,9.14,511,2.69,64.85,7534,267.5,147,20.75,10.75,2.9,1.7,162.3,,5316,80935,,,,5680,43350,1247,11135,1250,10498,,,,,,,,225, -Qualcomm Snapdragon X Elite,Oryon,,,,45,3800 ‑ 4300,12/12,4,ARM,,50,SD X Elite Adreno GPU,~72.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2871.5,14647.5,,,,,,, -Apple M2 Max,,Apple M2,36MB + 48MB,,79,2424 ‑ 3696,12/12,5,ARM,,332,M2 Max 38-Core GPU,~60.7,,,,,,236,2084,455.5,4064.5,1643.5,14752.5,,,,,,,,,,,,333,326,,,,,,,,,,1967,15373,2692,14863,,,77676,246.45,423,404.5,259 -Apple M2 Pro,,Apple M2,36MB + 24MB,,,2424 ‑ 3504,12/12,5,ARM,,332,M2 Pro 19-Core GPU,~57.3,,,,,,230,2069,446.5,4031,1647.5,14794.5,,,,,,,,,,,,,331,,,,,,,,,,1957,15010,2663,14568,,,76205,239,403,386,253 -Intel Core i7-13620H,Raptor Lake-H,Raptor Lake-H,9.5MB + 24MB,,45,1800 ‑ 4900,10/16,10,x86,,345,UHD Graphics 64EUs,~46.4,13632,10181,54809,3.27,27.06,263,2349,711,5828,1860,15339,6.74,379.96,3.14,1021,8682,345.36,138.15,16.6,13.8,2.3,1.3,223,391,5890,59430,,,,7977,42882,1767,11205,1831,11430,2596.5,12817,,,,,,305.5,267 -Intel Core i7-12700H,Alder Lake-H,Alder Lake-S,11.5MB + 24MB,,45,1700 ‑ 4700,14/20,10,x86,,710,Iris Xe G7 96EUs,~48,14044,8875.5,54647,3.06,27.6,256,2605,688,6087,1780.5,16338,7.92,428.65,3.3,236.13,8231,297.5,145.75,16.7,14.8,2.5,1.4,214,391.5,5761.5,61958.5,,,,7421,46409,1695,11805,1755,12125,2486,13118,,93.6,88214.5,261.2,278,297.5,258 -AMD Ryzen 7 5800X3D,Vermeer (Zen3),Vermeer (Ryzen 5000),4MB + 96MB,,105,3400 ‑ 4500,8/16,7,x86,,591,,~38.5,14479,6008,42010,2.77,27.19,241,2413,566,5479,1452,14317,8.11,385.46,3.65,92.57,14431,292,138.25,19.1,13.8,1.9,1.2,212.6,,6799,69518,,,,7187,43687,1526,10836,1622,10856,,,,,,,,, -AMD Ryzen 7 5800X,Vermeer (Zen 3),Vermeer (Ryzen 5000),4MB + 32MB,,105,3800 ‑ 4700,8/16,7,x86,,1163,,~44.2,15873,6835,45548,3.09,29.31,265.5,2608.5,624.5,6074.5,1574.5,15476,7.3,365.8,3.04,86.1,15604,339,152,20.3,15,2,1.3,196.9,336,6906.5,72113.5,,,,7333,44131,1673,11246,1683,10723.5,,,,,,,,301.5,245 -Intel Core i9-11900K,Rocket Lake,Rocket Lake,4MB + 16MB,,125,3500 ‑ 5300,8/16,14,x86,,959,UHD Graphics Xe 750 32EUs,~44,,10545,62024,3.1,26.76,255,2379,633,5306,1636,14747,6.27,331.4,3.98,77.9,9030,309.5,137,18.2,13,1.9,1.2,211.85,428,6347,59658.5,,,,7976,42329,1863,11008,1787.5,10483,,,,,,,,283.5,247 -Intel Core i7-1370P,Raptor Lake-P,Raptor Lake-P,11.5MB + 24MB,,28,1400 ‑ 5200,14/20,10,x86,,345,Iris Xe G7 96EUs,~54.1,,,,,,271,2272,719.5,5113.5,1872.5,12968.5,,,,,,,,12.08,,,,317.5,609,6413.5,51639,,,,,,1939,11474,1887,10353,2644,12891,,,,308.91,,296,285 -AMD Ryzen 9 PRO 6950H,Rembrandt-H (Zen 3+),Rembrandt (Zen 3+),4MB + 16MB,,45,3300 ‑ 4900,8/16,6,x86,,604,Radeon 680M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Ryzen 9 6900HX,Rembrandt-H (Zen 3+),Rembrandt (Zen 3+),4MB + 16MB,,45,3300 ‑ 4900,8/16,6,x86,,710,Radeon 680M,~40,13274,6545.5,39524,2.92,23.88,249,2231,610,5306,1558,13497,7.86,661.86,3.77,104.79,6875,255.5,114.45,16.95,11.9,1.7,1.1,231,407,5817,61333,,,,6698,39852,1557,10144,1589,9647,,,,,,243.02,,286,227 -Intel Core i9-10900K,Comet Lake,Comet Lake,2.5MB + 20MB,,125,3700 ‑ 5300,10/20,14,x86,,1304,UHD Graphics 630,~39.2,,8127,59368,2.56,29.03,217,2533,524,6181,1374,15821,7.2,403.4,3.58,66.3,9739,289.5,149,19.8,14.6,2.6,1.5,179,,5811,69987,,,,6126,41647,1385,11060.5,1428,11393,,,,,,,,255, -Intel Core i5-13450HX,Raptor Lake-HX,Raptor Lake-HX,+ 20MB,,55,1800 ‑ 4600,10/16,10,x86,,345,UHD Graphics Xe 16EUs (Tiger Lake-H),,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Core i7-12650H,Alder Lake-H,Alder Lake-P,9.5MB + 24MB,,45,1700 ‑ 4700,10/16,10,x86,,710,UHD Graphics 64EUs,~45.2,13453,8898,44608,3.14,22.08,253,1893,680,4772,1770,12326,7.83,414.82,6.99,410.29,8199,282.3,111.1,14.5,10.1,1.8,1.1,267,449,5674,49673,,,,7600,41235,1732,10303,1772,10126,2429,10580,,86,87864,265.07,278.5,299,251 -Intel Core i9-11900KB,Tiger Lake-H,Tiger Lake,10MB + 24MB,,65,3300 ‑ 5300,8/16,10,x86,,914,UHD Graphics Xe 32EUs (Tiger Lake-H),~37.4,14961,9538,50665,2.84,22.07,247,2027,629,4644,1621,11726,6.66,343.2,3.42,102.2,9584,272.5,106,14.4,11.6,1.7,1.1,262.7,,5979,50152,,,,6991,36310,1638,8845,1656,8924,,,,,,,,269, -AMD Ryzen 9 3900,Matisse (Zen 2),Matisse (Ryzen 3000 Desktop),6MB + 64MB,,65,3100 ‑ 4300,12/24,7,x86,,1528,,~38.2,13817,5700,44191,2.22,30.96,197,2804,490,6321,,,9.6,547,,,7145,255.5,131.9,18.9,10.4,2.4,1.6,179,,5134,75612,,,,5449,40720,1258,10695,1246,10190,,,,,,,,227, -Intel Core i9-10850K,Comet Lake-S,Comet Lake,2.5MB + 20MB,,125,3600 ‑ 5200,10/20,14,x86,,1205,UHD Graphics 630,~38.7,,6829,58453,2.45,28.14,215,2457,511,5961,1314,15538,7.59,419.8,2.67,68.1,9424,285.5,146.5,20.3,14.5,2.5,1.5,181.2,,5914,70932,,,,6425,44146,1412,11426,1401,11436,,,,,,,,253, -AMD Ryzen 7 5700X,Vermeer (Zen 3),Vermeer (Ryzen 5000),4MB + 32MB,,65,3400 ‑ 4600,8/16,7,x86,,620,,~42.1,14862,6527,42876,2.94,26.45,253,2329,595,5405,1499,13184,9.47,460.69,3.39,89.63,12478,305,134.7,17.1,13.4,1.9,1.2,221,374,6522,65777,,,,6928,37730,1587,9214,1647,9353,2186,9331,,,,,,310,236 -Intel Core i7-11700K,Rocket Lake,Rocket Lake,4MB + 16MB,,125,3600 ‑ 5000,8/16,14,x86,,959,UHD Graphics Xe 750 32EUs,~44.3,16388,9621,58342,2.87,25.55,240,2299,588,5361,1558,14281,20.2,685,4.8,,,292.5,128,16.3,12.7,1.9,1.2,221,,6157,57129,,,,,,,,1765.5,10786.5,,,,124.2,71212,196.9,199.1,254, -AMD Ryzen 7 5700G,Cezanne (Zen 3),"Cezanne (Zen 3, Ryzen 5000)",4MB + 16MB,,65,3800 ‑ 4600,8/16,7,x86,,976,Vega 8,~39.2,14324,6196,38826.5,2.86,23.58,242.5,2107,584,5015.5,1494,12830.5,7.8,415.27,4.33,94.57,7680.5,273.75,123.4,15.8,10.5,1.6,1.05,232.85,,5813.5,59702,,,,6630,34402.5,1521.5,8684.5,1579,8681,,,,55.3,74010,225,217.2,289.5, -AMD Ryzen 7 PRO 5750G,Cezanne PRO (Zen 3),"Cezanne (Zen 3, Ryzen 5000)",4MB + 16MB,,65,3800 ‑ 4600,8/16,7,x86,,927,Vega 8,~35.5,,6432,37998,2.87,22.22,241,1956,585,4782,1500,12157,7.7,406.94,3.69,96.77,7011,249.5,113.15,14.4,11.1,1.6,1,245,,5682,57184,,,,6440,33145,1493,8361,1561,8396,,,,,,,,276, -Apple M1 Max,,Apple M-Series,28MB + 48MB,,,2060 ‑ 3220,10/10,5,ARM,,788,M1 Max 32-Core GPU,~48.2,,,,,,200,1691,395,2750,1533,12386,,,,,,,,,,,,189,,,,,,,,,,,1782,12697,,,,,68029,214.5,282,360, -Apple M2 Pro 10-Core,,Apple M2,36MB + 24MB,,,2424 ‑ 3696,10/10,5,ARM,,332,M2 Pro 16-Core GPU,~57.2,,,,,,231,1664,449,3235,1643,11811,,,,,,,,,,,,415,435,,,,,,,,,,1936.5,12131.5,,,,,75471,234.8,395,391,250 -Apple M1 Pro,,Apple M-Series,28MB + 24MB,,,2064 ‑ 3220,10/10,5,ARM,,788,M1 Pro 16-Core GPU,~52.8,,,,,,209,1690,393,2721,1534,12370,,,,,,,,,,,,183.3,,,,,,,,,,,1768,12499,2409,12440,,75.6,66203,213.5,276,342, -AMD Ryzen 9 6980HS,Rembrandt-HS (Zen 3+),Rembrandt (Zen 3+),4MB + 16MB,,35,3300 ‑ 5000,8/16,6,x86,,710,Radeon 680M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Ryzen 9 6900HS,Rembrandt-H (Zen 3+),Rembrandt (Zen 3+),4MB + 16MB,,35,3300 ‑ 4900,8/16,6,x86,,710,Radeon 680M,~41.8,14208,6404.5,39960,2.95,24.75,245,2161,612,5152,1554,13445,8.99,758.26,5.49,116.82,6488,265.5,123.6,16.2,11.1,1.65,1.08,227,382,5805,62006,,,,6476,39091,1502,9261,1537,9224,,,,106.6,73797,229.25,227.7,281,197.4 -AMD Ryzen 9 PRO 6950HS,Rembrandt-HS (Zen 3+),Rembrandt (Zen 3+),4MB + 16MB,,35,3300 ‑ 4900,8/16,6,x86,,604,Radeon 680M,~34.7,,6266,36583,2.82,22.13,239,1913,591,4577,1514,11515,7.2,366,8.4,252,5970,222,103,12.8,11.7,1.6,1.02,264,,5516,49474,,,,6351,31423,1522,8033,1549,7664,,,,,,,,274, -Intel Core i9-10910,Comet Lake-S,Comet Lake,2.5MB + 20MB,,125,3600 ‑ 5000,10/20,14,x86,,1304,UHD Graphics 630,~39.5,,8131,57842,2.44,25.57,215,2302,501,5196,,,7.6,432.5,,,8613,,,16.8,,,,208,,5690,60747,,,,,,,,1381,10244,,,,,55976,203.1,161,236, -AMD Ryzen 7 6800H,Rembrandt-H (Zen 3+),Rembrandt (Zen 3+),4MB + 16MB,,45,3200 ‑ 4700,8/16,6,x86,,710,Radeon 680M,~42.2,13958,6424.5,39436.5,2.87,24.35,243,2151,598.5,5076.5,1526.5,12832,9.13,729,11.37,414.92,14392,266.3,129.5,16.15,9.6,1.6,1.04,236,390,5768,58798,,,,6477,36919,1510,9345,1551.5,9388.5,,,,105.9,75542,242.34,234.5,281,226.5 -AMD Ryzen 7 PRO 6850H,Rembrandt-H (Zen 3+),Rembrandt (Zen 3+),4MB + 16MB,,45,3200 ‑ 4700,8/16,6,x86,,604,Radeon 680M,~35.6,11620,5791,34412,2.6,21.32,205.1,2085.5,576,4887,1480,12393,0.94,800.35,3.72,103.58,5263,222.48,104.13,14.3,9.1,1.01,1,241.5,469.5,5417,54444.5,,,,,,,,1477.5,8472,,,,,,,,232,179.55 -Intel Core i9-11980HK,Tiger Lake-HK,Tiger Lake,10MB + 24MB,,55,3300 ‑ 5000,8/16,10,x86,,948,UHD Graphics Xe 32EUs (Tiger Lake-H),~40.7,,9626,52116,2.76,21.06,230,2152,594,4568.5,1559,10923,6.82,350,7.47,243.3,,,,15.8,,,,256,,5668,53426,,,,,,,,1627,9813,2250,9970,,,72523,198.75,211.1,279, -AMD Ryzen 9 5980HX,Cezanne-HX (Zen 3),"Cezanne (Zen 3, Ryzen 5000)",4MB + 16MB,,54,3300 ‑ 4800,8/16,7,x86,,1067,Vega 8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Core i9-11900H,Tiger Lake-H,Tiger Lake,10MB + 24MB,,45,2500 ‑ 4900,8/16,10,x86,,948,UHD Graphics Xe 32EUs (Tiger Lake-H),~51.9,,,,,,241,2148,608,4878,1580.5,12143.5,,,,,,,,15,,,,243,479,5795,53205,,,,,,,,1632,9628,2355,9401,,,,,,273,227 -Intel Core i5-12600HX,Alder Lake-HX,Alder Lake-S,10MB + 18MB,,55,1800 ‑ 4600,12/16,10,x86,,584,UHD Graphics 770,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Ryzen 9 5900HX,Cezanne-H (Zen 3),"Cezanne (Zen 3, Ryzen 5000)",4MB + 16MB,,45,3300 ‑ 4600,8/16,7,x86,,1072,Vega 8,~40.9,14253.5,6409,40114,2.84,24.71,240,2106,578.5,4978,1488,12845,7.89,415.58,3.46,98.18,7061,275.25,120.23,15.55,11.1,1.75,1.15,243,434,5750,58664,,,,6350.5,33335.5,1485,8400,1538.5,8462,,,,117.65,71000,191.8,206.1,279,218.5 -Intel Core i7-11700,Rocket Lake,Rocket Lake,4MB + 16MB,,65,2500 ‑ 4900,8/16,14,x86,,759,UHD Graphics 750,~36.4,14738,9493,51493,2.77,19.84,233,1767,579,3986,1529,10287,6.87,387.73,4.19,115.52,5962,267.2,93.1,12.6,12,1.8,1.1,295,,5810,44752,,,,7173,37795,1677,9706,1681,9760,,,,,,,,256, -Intel Core i5-12600H,Alder Lake-H,Alder Lake-P,10MB + 18MB,,45,2000 ‑ 4500,12/16,10,x86,,710,Iris Xe G7 80EUs,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Ryzen Threadripper 1950X,ZEN,Threadripper,8MB + 32MB,,180,3400 ‑ 4200,16/32,14,x86,,2318,UHD Graphics 750,~31.6,,4754,41814,1.73,23.13,159,2997,410,6700,,,10.66,633,3.34,55.1,4150,189.6,134.3,16.9,19,2.9,1.8,163,,,,,,,4304,28877,1029,,1029,11237,,,,,,,,, -Intel Core i5-13600H,Raptor Lake-H,Raptor Lake-H,10MB + 18MB,,45,2100 ‑ 4800,12/16,10,x86,,345,Iris Xe G7 80EUs,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Core i5-13505H,Raptor Lake-H,Raptor Lake-H,10MB + 18MB,,45,1900 ‑ 4700,12/16,10,x86,,345,Iris Xe G7 80EUs,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Core i5-13500H,Raptor Lake-H,Raptor Lake-H,10MB + 18MB,,45,1900 ‑ 4700,12/16,10,x86,,345,Iris Xe G7 80EUs,~44.2,14693.5,9664,53786,3.1,28.34,252,2317.5,684.5,5395,1779,14085.5,7.1,340.36,3.27,225.42,7325,336,132.2,15.8,13.3,2.2,1.2,238,420,5653,52630,,,,7706.5,42655.5,1708.5,11350.5,1743,11099,2446,11828,,,,,,273,238 -Intel Core i5-12500H,Alder Lake-H,Alder Lake-P,10MB + 18MB,,45,1800 ‑ 4500,12/16,10,x86,,710,Iris Xe G7 80EUs,~49.7,13126,,,,,242.5,2112,652.5,5090.5,1685.5,13461,,,,,,,,15.3,,,,238,426,5377,51984.5,,,,,,1636,10203,1636.5,10272,2279.5,9891.5,,,83229,254.5,296,272,240 -AMD Ryzen 9 5980HS,Cezanne-HS (Zen 3),"Cezanne (Zen 3, Ryzen 5000)",4MB + 16MB,,35,3000 ‑ 4800,8/16,7,x86,,1072,Vega 8,~40,,,,,,243,2083,602.5,4651,1529,12629,,,3.47,109.7,,,,15.2,,,,245.6,,5623,57319,,,,6295,33630,1508,8649,1537,8620,,,,,66881,179.5,,279, -Intel Core i7-1360P,Raptor Lake-P,Raptor Lake-P,10MB + 18MB,,28,1600 ‑ 5000,12/16,10,x86,,345,Iris Xe G7 96EUs,~44.5,12800.5,10473,51246,3.26,24.69,258,1860,687,4132.5,1809,10688.5,6.78,383.28,3.89,304.68,5759,296.5,110.68,11.3,12.4,2.05,1.2,324,585,5742.5,43043.5,,,,7635,37274,1773,10000.5,1824,9967,2546,10956.5,,,83850,254.1,307.5,303,263 -Intel Core i7-1280P,Alder Lake-P,Alder Lake-P,11.5MB + 24MB,,28,1300 ‑ 4800,14/20,10,x86,,710,Iris Xe G7 96EUs,~43.5,6579,8881,46007,3.07,25.17,238,2112,629,4677.5,1651,11666,7,366,34,1168,7082,,,12.9,11.8,2.1,1.2,285,537,5540,49572,,,,7522,40196,1694,10537,1746,11191,,,,95.5,84578.5,244.65,251,286,248.5 -Intel Core i9-11950H,Tiger Lake-H,Tiger Lake,10MB + 24MB,,45,2600 ‑ 5000,8/16,10,x86,,948,UHD Graphics Xe 32EUs (Tiger Lake-H),~47.2,,,,,,242.5,1954,619.5,4664.5,1591,12206.5,,,,,,,,14.2,,,,254,,5773,50060,,,,,,,,1631,7969,,,,,74632.5,208.3,211.5,272.5, -Intel Xeon W-11955M,Tiger Lake-H,Tiger Lake,10MB + 24MB,,45,2600 ‑ 5000,8/16,10,x86,,948,UHD Graphics Xe 32EUs (Tiger Lake-H),~35.8,,,,,,230,1846,568,4250,1480,10862,6.9,360,,,8815,,,13.4,8.6,1.7,1.1,276,,5222,47264,,,,6286,33776,1484,8230,1586.5,9057.5,,,,,60397,,147,271, -AMD Ryzen 7 7735HS,Rembrandt-HS Refresh,Rembrandt (Zen 3+),4MB + 16MB,,35,3200 ‑ 4750,8/16,6,x86,,344,Radeon 680M,~42.1,13410,6508,42409,2.95,26.48,248,2274,603,5341,1546,13750,7.79,663.99,3.43,92.76,6807,270.2,131.43,17,13,1.85,1.2,229,376,5786,60612,,,,6720,40164,1516,9315,1555,9436,2115,10348,,,76231,246.2,272,290,223.5 -AMD Ryzen 7 7735H,Rembrandt-H Refresh,Rembrandt (Zen 3+),4MB + 16MB,,35,3200 ‑ 4750,8/16,6,,,344,Radeon 680M,~38.5,12923.5,6438,35222,2.91,21.14,246,1825,601,4354,1536,10920,7.59,680.96,3.81,109.78,5997,251.5,103.65,14.1,10.6,1.6,1.1,283,488,5621,52518,,,,6434.5,34180.5,1525,8372,1564,8582,2015.5,9182.5,,,,,,293,222 -AMD Ryzen 7 PRO 6850HS,Rembrandt-HS (Zen 3+),Rembrandt (Zen 3+),4MB + 16MB,,35,3200 ‑ 4700,8/16,6,x86,,604,Radeon 680M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Ryzen 7 6800HS,Rembrandt-HS (Zen 3+),Rembrandt (Zen 3+),4MB + 16MB,,35,3200 ‑ 4700,8/16,6,x86,,710,Radeon 680M,~39.3,13890,6258,41339,2.79,26.19,234,1987,570,4634,1455,11992,8.4,710.8,,,6716,254.7,113.7,15.1,11.4,1.7,1.1,258,,5495,56170,,,,6168,36693,,,1492,9298,,,,,,,,280, -AMD Ryzen 9 5900HS,Cezanne-HS (Zen 3),"Cezanne (Zen 3, Ryzen 5000)",4MB + 16MB,,35,3000 ‑ 4600,8/16,7,x86,,1072,Vega 8,~42.9,,6380,41235,2.83,24.94,236.5,2041,571.5,4895.5,1475.5,12745.5,,,,,,,,14.55,,,,241,,5653,57286,,,,6361,31805,1502,7784,1497,7867,,,,,65400,196.25,183,275.5, -AMD Ryzen 7 3800XT,Matisse (Zen 2),Matisse (Ryzen 3000 Desktop),4MB + 32MB,,105,3900 ‑ 4700,8/16,7,x86,,1256,UHD Graphics 750,~35,,6035,40528,2.36,24.18,219,2230,544,5120,,,9.07,508,3.74,81.4,7467,271,119,16.1,11.4,2,1.2,222.7,,5516,59247,,,,5830,35526,1360,9163,1353,8948,,,,,,,,249, -AMD Ryzen 7 3700X,Matisse (Zen 2),Matisse (Ryzen 3000 Desktop),4MB + 32MB,,65,3600 ‑ 4400,8/16,7,x86,,1622,UHD Graphics 750,~34.5,13814.5,5839,40439,2.3,23.19,204,2092,506,4782,,,9.45,531,3.71,86.7,7503,269.5,115,15.4,11.4,2,1.1,181.4,,5333,57307,,,,5799,34757,,,1304,8960,,,,,,,,, -Intel Core i9-9900KS,Coffee Lake-R,Coffee Lake,2MB + 16MB,,127,4000 ‑ 5000,8/16,14,x86,,1507,UHD Graphics 630,~36.9,14883.5,8183,51778.5,2.45,23.15,216,2058,511.5,4819.5,,,7.42,414.15,3.6,87.9,8353,278.85,122.5,16.26,12.15,2.1,1.2,224.55,,5734,55735,,,,6308,35586,,,1372,9100,,,,,44538,,,, -Intel Core i7-10700K,Comet Lake,Comet Lake,2MB + 16MB,,125,3800 ‑ 5100,8/16,14,x86,,1324,UHD Graphics 630,~35.1,,7910,50670,2.38,22.19,208,2027,496,4882,,,7.58,391.3,3.18,85.7,8469,269,121,16.3,11.2,2,0.97,217.4,,5647,54050,,,,6247,34735,1368,8903,1373.5,8925,,,,,,,,245, -AMD Ryzen 5 7645HX,Dragon Range (Zen4),"Dragon Range (Zen 4, Ryzen 7045)",6MB + 32MB,,55,4000 ‑ 5000,6/12,5,x86,,344,Radeon 610M,~48.8,,7717,44716,,25.68,289,2276,699,5467,1809,13985,8,410.82,,,13352,328.4,135.9,18.6,12.6,1.7,1,224,360,7124,60373,,,,7927,41241,1924,10185,1971,10145,2717,11717,,,87916,,,331,273 -AMD Ryzen 5 8645HS,Hawk Point-HS (Zen 4),"Hawk Point (Zen 4/4c, Ryzen 8040)",6MB + 16MB,,45,4300 ‑ 5000,6/12,4,x86,,9,Radeon 760M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Ryzen 5 8640HS,Hawk Point-HS (Zen 4),"Hawk Point (Zen 4/4c, Ryzen 8040)",6MB + 16MB,,28,3500 ‑ 4900,6/12,4,x86,,9,Radeon 760M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Core Ultra 7 165U,Meteor Lake-P,Intel Meteor Lake-U,+ 12MB,,15,3800 ‑ 4900,12/14,7,x86,,6,Graphics 4-Core,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Ryzen Z1 Extreme,Phoenix (Zen 4),"Phoenix (Zen 4, Ryzen 7040)",8MB + 16MB,,30,3300 ‑ 5100,8/16,4,x86,,265,Radeon 780M,~58.6,,,,,,274,2223.5,682,5467,1756,13982,,,,,,,,17.35,,,,213,406,6316,59811.5,,,,,,,,1898,9803,2534,10931,,,86617,276.7,293,366,277 -AMD Ryzen 5 7640HS,Phoenix-HS (Zen 4),"Phoenix (Zen 4, Ryzen 7040)",6MB + 16MB,,45,4300 ‑ 5000,6/12,4,x86,,344,Radeon 760M,~56.6,,,,,,271,2079,667,5044,1715,13029,,,,,,,,16.7,,,,245,393,6465,54954,,,,,,,,1941,9355,2620,10936,,,,,,316,257 -AMD Ryzen 5 PRO 7640HS,Phoenix (Zen4),"Phoenix (Zen 4, Ryzen 7040)",6MB + 16MB,,54,4300 ‑ 5000,6/12,4,x86,,344,Radeon 760M,~42.7,12948,6888,39399,2.97,21.61,249,1863,612,4530,1581,11507,7.9,740.7,,,6717,264,109.5,14.7,10.4,1.5,0.92,270,444,5892,51096,,,,7042,34588,,,1748,8863,2352,10200,,,,,,262, -AMD Ryzen 7 PRO 7840U,Phoenix (Zen 4),"Phoenix (Zen 4, Ryzen 7040)",8MB + 16MB,,28,3300 ‑ 5100,8/16,4,x86,,226,Radeon 780M,~52.8,,,,,,273,2014,684,4970,1747,12929,,,,,,,,15.9,,,,248,410,5988,57056,,,,,,,,1881,9663,1896,7596,,,,,,317, -AMD Ryzen 7 8840U,Hawk Point-U (Zen 4),"Hawk Point (Zen 4/4c, Ryzen 8040)",8MB + 16MB,,28,3300 ‑ 5100,8/16,4,x86,,19,Radeon 780M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Ryzen 7 7840U,Phoenix-U (Zen 4),"Phoenix (Zen 4, Ryzen 7040)",8MB + 16MB,,28,3300 ‑ 5100,8/16,4,x86,,226,Radeon 780M,~43.3,13021,7342,36812,2.97,20.46,264,1947,661.5,4731,1683,11930.5,7.24,626.26,,,5629,242.64,105.52,15.1,6.1,1.5,0.95,264,427.5,6002.5,53861,,,,6140,30359,1564,8055,1749,9382,2399,10763,,,82676,288.9,268,278.5,233 -Intel Core Ultra 7 155U,Meteor Lake-P,Intel Meteor Lake-U,+ 12MB,,15,3800 ‑ 4800,12/14,7,x86,,6,Graphics 4-Core,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Core i7-11850H,Tiger Lake-H,Tiger Lake,10MB + 24MB,,45,2500 ‑ 4800,8/16,10,x86,,948,UHD Graphics Xe 32EUs (Tiger Lake-H),~45.5,,,,,,232.5,1767.5,595,4244.5,1532.5,10857,,,,,,,,13.5,,,,285,,5744.5,47721,,,,,,,,1672.5,9250,,,,,,198.5,,274.5, -Intel Core Ultra 7 164U,Meteor Lake-U,Intel Meteor Lake-U,+ 12MB,,9,3800 ‑ 4800,12/14,7,x86,,6,Graphics 4-Core,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Core i9-9900K,Coffee Lake-R,Coffee Lake,2MB + 16MB,,95,3600 ‑ 5000,8/16,14,x86,,1894,UHD Graphics 630,~37,14281.5,7933,48778.5,2.38,21.39,212,1979,502,4871,1280,12397,7.66,432.15,3.58,91.3,7633,260.5,114.25,15.8,11.1,1.9,1.15,223.8,,5410.5,48207,,,,6049,32981,,,1300,8845,,,,71,40081,,,, -AMD Ryzen 5 5600X,Vermeer (Zen 3),Vermeer (Ryzen 5000),3MB + 32MB,,65,3700 ‑ 4600,6/12,7,x86,,1163,UHD Graphics 750,~37.3,14576,6462,39331,2.95,21.75,254,1968,601,4567,1541,11838,8.08,400.9,3.89,113.9,13282,320,117,15.7,10.7,1.5,0.94,260.2,,6594,56607,,,,6953,35617,1587,8926,1657,8980,,,,,,,,286, -Intel Core i5-11600K,Rocket Lake,Rocket Lake,3MB + 12MB,,125,3900 ‑ 4900,6/12,14,x86,,990,UHD Graphics Xe 750 32EUs,~36.5,14519,9745,49408,2.87,19.32,238,1744,585.5,4301.5,1529.5,11217.5,6.76,353.7,4.92,107.6,7850,289,100.75,14.35,9.7,1.5,0.9,267.25,,6061.5,44971,,,,7438,33266,1731,8542,1723,8429.5,,,,,,,,271.5, -Intel Core i7-1365U,Raptor Lake-U,Raptor Lake-U,9.5MB + 12MB,,15,1300 ‑ 5200,10/12,10,x86,,710,Iris Xe G7 96EUs,~52.7,,,,,,265.5,1466.5,726.5,3495.5,1887,8946,,,,,,,,9.8,,,,383,726.5,5850.5,39727,,,,,,1812.5,8500,1878.5,8605.5,2583,9605,,,93596,282.37,350,300,262.5 -Intel Core i7-11800H,Tiger Lake-H,Tiger Lake,10MB + 24MB,,45,2300 ‑ 4600,8/16,10,x86,,948,UHD Graphics Xe 32EUs (Tiger Lake-H),~40.3,13362,9075,44099,2.6,18.53,227,1936,580,4689,1508,12197,7.27,369.78,3.97,120.84,7944,247.5,93.75,13.9,9.9,1.5,1,261,559,5509,49080,,,,6667,34107,1550,7866,1572,8905,2192.5,9253.5,,134.8,68002,190.9,194,262,212 -Intel Core i7-1355U,Raptor Lake-U,Raptor Lake-U,9.5MB + 12MB,,15,1200 ‑ 5000,10/12,10,x86,,710,Iris Xe G7 96EUs,~41.1,10128,10028,33627,3.07,16.45,255.5,1393,697.5,3257.5,1825,8286,6.7,382.8,21,885,12688,,,9.29,8.3,1.7,0.94,424.5,770.5,5569.5,35321.5,,,,,,1786,8018,1783,8058,2505,8908,,,90249,278.41,338,284.5,253.5 -AMD Ryzen 7 7735U,Rembrandt-U Refresh,Rembrandt (Zen 3+),4MB + 16MB,,28,2700 ‑ 4750,8/16,6,x86,,344,Radeon 680M,~35.5,10406.5,6207,32220,2.8,19.45,234,1698,524,3895,1490,10085,7.71,697.06,5.18,194.41,4904,228.5,90.55,12.5,10.2,1.5,1,308,540,5579,48972,,,,6267,32079,1497,8115,1522,8203,,,,,,,,240,189.4 -AMD Ryzen 7 PRO 6860Z,Rembrandt U (Zen 3+),Rembrandt (Zen 3+),4MB + 16MB,,28,2700 ‑ 4750,8/16,6,x86,,604,Radeon 680M,~39.8,,6238,36959,2.87,23.11,233,1992,588,4555,1468,11822,7.6,693.5,7.9,252.1,,,,14.7,7.7,1.3,1.1,274,483,5289,52568,,,,,,,,1452,8734,,,,,73281,235.4,256,270,214 -Apple M1 Pro 8-Core,,Apple M-Series,28MB + 16MB,,,2060 ‑ 3220,8/8,5,ARM,,788,M1 Pro 14-Core GPU,~50.8,,,,,,210,1320,,,1531,9581,,,,,,,,,,,,,,,,,,,,,,,1769,9942,,,,76.7,65528,207.9,262,343, -AMD Ryzen 7 5800H,Cezanne-H (Zen 3),"Cezanne (Zen 3, Ryzen 5000)",4MB + 16MB,,45,3200 ‑ 4400,8/16,7,x86,,1072,Vega 8,~39.3,12790,6017,36734.5,2.72,22.47,229,2005,554,4662,1416,12091.5,8.31,419.5,6.12,188.36,6851,244,104.65,14.75,10,1.65,1.05,255.5,499.5,5499.5,54052,,,,6132.5,31636.5,1418.5,7988,1462,7641,1991,9411,,134.1,67411,189,187,269,190.5 -AMD Ryzen 7 7736U,Rembrandt R,Rembrandt (Zen 3+),4MB + 16MB,,28,2700 ‑ 4700,8/16,6,x86,,344,Radeon 680M,~50.8,,,,,,246,2019,,,1548,12768,,,,,,,,15.7,,,,246,453,5466,56824,,,,,,,,1511,9218,,,,,,179.93,,254,193.4 -Intel Core Ultra 5 135U,Meteor Lake-P,Intel Meteor Lake-U,+ 12MB,,15,3600 ‑ 4400,12/14,7,x86,,6,Graphics 4-Core,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Ryzen 7 PRO 6850U,Rembrandt-U PRO (Zen 3+),Rembrandt (Zen 3+),4MB + 16MB,,28,2700 ‑ 4700,8/16,6,x86,,604,Radeon 680M,~36.6,11429,6260,33284,2.84,20.26,237.5,1726,590,4044.5,1497,10039.5,7.7,682.3,8,257.2,,,,13,6.5,1.4,0.96,300,519.5,5339.5,48175.5,,,,,,1502,7891,1496.5,7924,,,,,71849.5,220.3,239,243,191.9 -AMD Ryzen 5 PRO 6650H,Rembrandt-H PRO (Zen 3+),Rembrandt (Zen 3+),3MB + 16MB,,45,3300 ‑ 4500,6/12,6,x86,,604,Radeon 660M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Ryzen 5 6600H,Rembrandt-H (Zen 3+),Rembrandt (Zen 3+),3MB + 16MB,,45,3300 ‑ 4500,6/12,6,x86,,710,Radeon 660M,~43.9,,,,,,233.5,1683,569.5,4053,1458,10471.5,,,,,,,,12.85,,,,298.5,520,5509.5,43861,,,,,,1417,6219,1460,7066,,,,,,224.13,,246.5,209 -AMD Ryzen 5 PRO 6650HS,Rembrandt-HS (Zen 3+),Rembrandt (Zen 3+),3MB + 16MB,,35,3300 ‑ 4500,6/12,6,x86,,604,Radeon 660M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Ryzen Z1,Phoenix (Zen4),"Phoenix (Zen 4, Ryzen 7040)",6MB + 16MB,,30,3200 ‑ 4900,6/12,4,x86,,265,Radeon 740M,~45.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1827,7674,,,,,,,,, -AMD Ryzen 5 PRO 7640U,Phoenix (Zen4),"Phoenix (Zen 4, Ryzen 7040)",6MB + 16MB,,15,3500 ‑ 4900,6/12,4,x86,,206,Radeon 760M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Core Ultra 5 125U,Meteor Lake-P,Intel Meteor Lake-U,+ 12MB,,15,3600 ‑ 4300,12/14,7,x86,,6,Graphics 4-Core,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Ryzen 5 7640U,Phoenix-U (Zen 4),"Phoenix (Zen 4, Ryzen 7040)",6MB + 16MB,,28,3500 ‑ 4900,6/12,4,x86,,206,Radeon 760M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Core Ultra 5 134U,Meteor Lake-U,Intel Meteor Lake-U,+ 12MB,,9,3600 ‑ 4400,12/14,7,x86,,6,Graphics 4-Core,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Ryzen 5 PRO 7540U,Phoenix (Zen4),"Phoenix (Zen 4, Ryzen 7040)",6MB + 16MB,,15,3200 ‑ 4900,6/12,4,x86,,206,Radeon 740M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Ryzen 5 8640U,Hawk Point-U (Zen 4),"Hawk Point (Zen 4/4c, Ryzen 8040)",6MB + 16MB,,28,3500 ‑ 4900,6/12,4,x86,,17,Radeon 760M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Ryzen 5 7545U,Phoenix (Zen4),"Phoenix (Zen 4, Ryzen 7040)",6MB + 16MB,,28,3200 ‑ 4900,6/12,4,x86,,206,Radeon 740M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Ryzen 5 7540U,Phoenix (Zen4),"Phoenix (Zen 4, Ryzen 7040)",6MB + 16MB,,28,3200 ‑ 4900,6/12,4,x86,,206,Radeon 740M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Ryzen 5 8540U,Hawk Point-U (Zen 4 + Zen 4c),"Hawk Point (Zen 4/4c, Ryzen 8040)",6MB + 16MB,,28,3200 ‑ 4900,6/12,4,x86,,17,Radeon 740M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Ryzen 5 7535HS,Rembrandt R,Rembrandt (Zen 3+),3MB + 16MB,,35,3300 ‑ 4550,6/12,6,x86,,344,Radeon 660M,~38.1,12242,6257,37321,2.79,20.14,241,1757,581,4224,1488,10900,8.49,700.99,8.4,256.14,6586,258.1,103.8,14.2,10.2,1.3,0.9,286,481,5670,48646,,,,6170.5,31413.5,1472,7949,1502,7852,2056,8960,,,69893,214.9,250,235,189.4 -AMD Ryzen 5 6600HS,Rembrandt-HS (Zen 3+),Rembrandt (Zen 3+),3MB + 16MB,,35,3300 ‑ 4500,6/12,6,x86,,710,Radeon 660M,~38.3,,6157,34414,2.74,19,235,1656,577,3935,1465,9131,8,710.7,,,5207,236.5,93.4,12,7.7,1.3,0.84,328,,5318,44476,,,,6029,28928,,,1493,7195,,,,106.9,,,,234, -Intel Core i7-10700,Comet Lake,Comet Lake,2MB + 16MB,,65,2900 ‑ 4800,8/16,14,x86,,1291,UHD Graphics 630,~31.9,,7611,41156,2.26,16.7,196,1455,,,1234,8532,8.08,439.6,3.26,119.5,6555,236,84.8,11.6,10.3,1.8,1.1,315.4,,5293,43007,,,,5726,32174,1304,8196,1299,8173,,,,,,,,244, -AMD Ryzen 9 4900H,Renoir-H (Zen 2),Renoir (Ryzen 4000 APU),4MB + 8MB,,45,3300 ‑ 4400,8/16,7,x86,,1378,Vega 8,~31.6,,5946,40253,2.24,23.03,193,1926.5,493.5,4409,1294,11604,9.46,729,3.19,82.9,4297,215,111,12.9,7.4,2,1.2,247.3,,4727,48976,,,,5287,28402,1237,7624,1231.5,8012,,,,,,,,227, -Intel Core i9-10980HK,Comet Lake-H,Comet Lake,2MB + 16MB,,45,2400 ‑ 5300,8/16,14,x86,,1352,UHD Graphics 630,~34.8,13765,,,,,206,1737,489,3883,1287,10590.5,7.8,449,,,6869,238.5,98.2,13,10.1,1.8,1.1,279,,5437,47455,,,,5971,30973,1349,8010,1347.5,8155.5,,,,,57793,,,243, -AMD Ryzen 7 5800HS,Cezanne-HS (Zen 3),"Cezanne (Zen 3, Ryzen 5000)",4MB + 16MB,,35,2800 ‑ 4400,8/16,7,x86,,1072,Vega 8,~35.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1380,7454,,,,,,,,, -AMD Ryzen 9 4900HS,Renoir (Zen 2),Renoir (Ryzen 4000 APU),4MB + 8MB,,35,3000 ‑ 4300,8/16,7,x86,,1378,Vega 8,~32,12448,5866,37938,2.23,18.21,193,1863,495,4288,,,9.5,547,3.28,88.2,4548,223,106,12.19,11.2,1.9,1.2,297,,4634,48577,,,,5372,30230,,,1218,7675,,,,,38616,,,, -Intel Core i7-11600H,Tiger Lake H45,Tiger Lake,7.5MB + 18MB,,45,2900 ‑ 4600,6/12,10,x86,,948,UHD Graphics Xe 32EUs (Tiger Lake-H),~26.8,,,,,,,,,4073,,,,,,,,,,,,,,,,,,,,,,,,,1401,6375,,,,,,,,, -Intel Xeon W-10885M,Comet Lake-H,Comet Lake,2MB + 16MB,,45,2400 ‑ 5300,8/16,14,x86,,1311,UHD Graphics P630,~32.7,13490,7865,44583,2.35,18.25,210,1640,495.5,3882.5,1300,6893,7.74,429.3,3.6,105.8,7180,236.9,100.1,13.1,10.3,1.8,1,286,,5507,45696,,,,5892,32814,1323,8295,1340,8378,,,,,,,,229, -Intel Core i9-10885H,Comet Lake-H,Comet Lake,2MB + 16MB,,45,2400 ‑ 5300,8/16,14,x86,,1352,UHD Graphics 630,~31.1,12101,,,,,211,1517,489,3639,1289.5,9438,7.33,433.9,3.86,131.2,6420,217.8,80.5,11.3,9.9,1.8,1,302,,5589,41823,,,,5675.5,29009,1280.5,7172,1317,6914,,,,,58398,167.6,146,234, -AMD Ryzen 7 6800U,Rembrandt-U (Zen 3+),Rembrandt (Zen 3+),4MB + 16MB,,28,2700 ‑ 4700,8/16,6,x86,,710,Radeon 680M,~37.9,9964.5,6450,35314,2.88,21.13,242,1776,585.5,4083.5,1506,10546,7.94,692.03,4.54,113.45,4639,219.5,101.05,13.1,10.7,1.5,1,304,504,5452.5,50614,,,,6261,30925,1462.5,7767,1514,7678,2028,8771,,,69752,236.3,176,270,213 -AMD Ryzen 7 PRO 5875U,Cezanne U (Zen 3),"Cezanne (Zen 3, Ryzen 5000)",4MB + 16MB,,25,2000 ‑ 4500,8/16,7,x86,,1072,Vega 8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Ryzen 5 5600G,Cezanne,"Cezanne (Zen 3, Ryzen 5000)",3MB + 16MB,,65,3900 ‑ 4400,6/12,7,x86,,976,Vega 7,~32.8,12904,6052,35552,2.68,19.92,228,1724,552,4072,1409,10551,8.08,416.8,4.53,125.3,7652,261.5,102.5,13.9,9.7,1.3,0.88,299.1,,5549,48700,,,,6450,31424,1441,7991,1506,8003,,,,,,,,, -Intel Core i7-1265U,Alder Lake-U,Alder Lake-M,9.5MB + 12MB,,15,1300 ‑ 4800,10/12,10,x86,,710,Iris Xe G7 96EUs,~38.8,9433.5,8549,38152,2.99,16.48,240,1344.5,642,3214.5,1679.5,8225,7.98,429.84,5.24,217.43,5960,265.5,80.95,9.24,9.7,1.6,0.9,423.5,834,5285.5,34399,,,,7515,33057,1678,8305.5,1739.5,8127,,,,,73251,231.57,281,279.5,242.5 -Intel Core i7-1270P,Alder Lake-P,Alder Lake-P,10MB + 18MB,,28,1600 ‑ 4800,12/16,10,x86,,710,Iris Xe G7 96EUs,~37.6,,7886,36271,2.74,19.94,229.5,1739,611,3536,1620,9718,7.64,436.4,9.8,344.6,16497,,,10.43,5.8,1.1,0.84,373.5,714,5279,38274,,,,,,1683,8537,1644,8660,,,,,78273,227.45,232,285,251 -Intel Core i7-1260P,Alder Lake-P,Alder Lake-P,10MB + 18MB,,28,1500 ‑ 4700,12/16,10,x86,,710,Iris Xe G7 96EUs,~43.3,12963.5,8793,44516,3.1,22,243,1626,670,3761.5,1737.5,9711,7.8,424.8,4.49,237.12,7200,245,94.13,11.5,11.6,1.9,1.1,328,623,5373,41260.5,,,,7531,38187,1668,9907,1719,9298,2424,9532,,102.55,83695,240.3,263.5,283,247 -AMD Ryzen 7 7730U,Barcelo-U Refresh,"Cezanne (Zen 3, Ryzen 5000)",4MB + 16MB,,15,2000 ‑ 4500,8/16,7,x86,,710,Vega 8,~37.7,,6243,32670,2.76,19.06,231,1830,566.5,4070.5,1454.5,10801.5,7.95,438.1,4.37,121.16,5881,236.2,90.9,12.7,10.1,1.4,0.99,296,499.5,5356,49424.5,,,,6092,29078,1429,7765,1479.5,7573,1960,7013,,,71624,226.99,255,263,210.5 -AMD Ryzen 7 PRO 7730U,Barcelo-U Refresh,"Cezanne (Zen 3, Ryzen 5000)",4MB + 16MB,,15,2000 ‑ 4500,8/16,7,x86,,710,Vega 8,~35.4,8758,6108,33735,2.68,17.55,229,1756,562,3967,1441,10095,8.46,456.71,10.43,369.11,5274,221,95,12.05,4.2,0.67,0.46,301.5,528,5269,45924,,,,,,,,1437.5,6559.5,1894.5,6336,,,71022,242,252,254, -AMD Ryzen 7 5825U,Barcelo-U (Zen 3),"Cezanne (Zen 3, Ryzen 5000)",4MB + 16MB,,15,2000 ‑ 4500,8/16,7,x86,,710,Vega 8,~36.5,11292,6304,32641,2.75,18.56,231.5,1778,556,4003.5,1447,10273.5,7.2,366,9.2,340.8,5835,249.6,100.3,12.65,8.7,1.5,1.1,302.5,542.5,5436.5,47588.5,,,,,,1455,7235,1468,6782,,,,,70779,227.87,232,266.5,213 -AMD Ryzen 7 5825C,Barcelo (Zen 3),"Cezanne (Zen 3, Ryzen 5000)",4MB + 16MB,,25,2000 ‑ 4500,8/16,7,x86,,589,Vega 8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Ryzen 5 5600H,Cezanne-H (Zen 3),"Cezanne (Zen 3, Ryzen 5000)",3MB + 16MB,,45,3300 ‑ 4200,6/12,7,x86,,1072,Vega 7,~35.6,12008,5832,35017.5,2.62,19.2,223,1573,534,3721,1369,9631.5,7.94,406.61,6.58,201.1,7497,251.21,95.18,12.4,7.35,1.2,0.83,319,582,5369,44613,,,,5813,27790,1373,6483,1428,6567,1610,7910,,,67221,204.2,190.3,267,202 -AMD Ryzen 7 5800U,Cezanne-U (Zen 3),"Cezanne (Zen 3, Ryzen 5000)",4MB + 16MB,,25,1900 ‑ 4400,8/16,7,x86,,1072,Vega 8,~34.2,,6039,26711,2.7,14.78,229,1613,555,3303,1427,8154,9.83,514,4.11,136.5,,230.5,80.8,10.3,,,,351.85,,5362.5,42603.5,,,,5878,28418,1411,7053,1428.5,6722.5,,,,,64961,178.6,184.25,249, -AMD Ryzen 7 PRO 5850U,Cezanne-U PRO (Zen 3),"Cezanne (Zen 3, Ryzen 5000)",4MB + 16MB,,15,1900 ‑ 4400,8/16,7,x86,,1072,Vega 8,~30.5,11656,5817,27430,2.67,16.63,227,1467,548,3417,1405,8716,10,529,8.12,258.7,6290,217.6,83.4,11.3,4.2,1,0.75,345,,5231,44266,,,,5810,25894.5,1220,5477,1436,6889,,,,,,,,260, -AMD Ryzen 7 4800H,Renoir-H (Zen 2),Renoir (Ryzen 4000 APU),4MB + 8MB,,45,2900 ‑ 4200,8/16,7,x86,,1438,Vega 7,~30.6,12683,5684,37276,2.18,21.1,188,1854,485,4339.5,1253.5,11135.5,9.81,564,3.38,90.9,4601,215.6,102.7,12.8,10.3,1.9,1.1,262,,4686,50075,,,,4949.5,26453,1184,7108,1191,7955,,,,,43309,136.8,129,218.5, -Intel Core i7-10875H,Comet Lake-H,Comet Lake,2MB + 16MB,,45,2300 ‑ 5100,8/16,14,x86,,1352,UHD Graphics 630,~34.3,12944.5,7803,44805,2.4,18.69,202,1594.5,483.5,3391.5,1241.5,8889.5,7.7,431.7,,,7473,242.4,103,12.1,10.3,1.8,1.1,322.5,,5319,44947,,,,5803,31346,1264,7370,1300,7799,,,,,,147.1,,239, -Intel Core i9-9980HK,Coffee Lake-H,Coffee Lake,2MB + 16MB,,45,2400 ‑ 5000,8/16,14,x86,,1690,UHD Graphics 630,~34.3,13208,7969.5,44455,2.28,17.2,201,1624,478.5,3475,,,7.75,432.25,4.36,115.3,7351,238.1,93.8,11.4,10.2,1.7,1,348.4,,5389.5,41688,,4871,31724,5969,29385,1282,7403.5,1346,7568,,,,,42219.5,158.3,107.3,233, -Intel Core i7-10870H,Comet Lake-H,Comet Lake,2MB + 16MB,,45,2200 ‑ 5000,8/16,14,x86,,1191,UHD Graphics 630,~37.2,,,,,,200,1659,473.5,3632,1226,9892.5,,,,,,,,12.45,,,,292,,5295.5,44975.5,,,,5652,30578,1276,7700,1282.5,7735.5,,,,,54493.5,156.8,132,225, -Intel Core i7-9700K,Coffee Lake-R,Coffee Lake,2MB + 12MB,,95,3600 ‑ 4900,8/8,14,x86,,1894,UHD Graphics 630,~34.3,12928,7653,42777.5,2.37,15.83,205.5,1449,475,3250,,,7.74,421.1,4.49,120.5,7396,270,94.8,13,8.1,1.3,0.77,307,,,,,4825,27774,5984,29225.5,,,1300,7440,,,,,41962,,,, -Intel Core i5-13420H,Raptor Lake-H,Raptor Lake-H,8MB + 12MB,,45,1500 ‑ 4600,8/12,10,x86,,345,UHD Graphics Xe G4 48EUs,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Core i5-12450HX,Alder Lake-HX,Alder Lake-S,8MB + 12MB,,55,1800 ‑ 4400,8/12,10,x86,,584,UHD Graphics Xe 16EUs (Tiger Lake-H),,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Core i5-12450H,Alder Lake-H,Alder Lake-P,8MB + 12MB,,45,1500 ‑ 4400,8/12,10,x86,,710,UHD Graphics Xe G4 48EUs,~37.9,11439,8178,35790,2.88,16.05,238,1266,643,3253.5,1665,8320,8.41,451.44,7.23,436.01,6015,272.5,75.95,9.94,8,1.3,0.79,403,701,5278,33549,,,,7153,28151,1575,7120.5,1639,7200,2262,8123,,,,291.61,,285,238.5 -Intel Core i5-12400F,Alder Lake-S,Alder Lake-S,7.5MB + 17.9MB,,65,2500 ‑ 4400,6/12,10,x86,,710,UHD Graphics 750,~38.9,11892,8389,40690,2.95,20.39,244,1759,653,4740,1680,12380,8.3,438.44,4.08,112.85,7816,252.5,101.35,15.2,9.3,1.4,0.88,269,430,5476,45043,,,,7548,35098,1673,9368,1742,9517,,,,,,,,272,235 -Intel Core i5-11400F,Rocket Lake,Rocket Lake,3MB + 12MB,,65,2600 ‑ 4400,6/12,14,x86,,940,UHD Graphics 750,~32.5,13359,6210,44220,2.23,17.65,210,1574,502,3945,1339,10235,7.76,703,4.09,117.2,7147,258,91.5,13.5,8.7,1.4,0.84,290.2,,5466,41522,,,,6836,30191,1543,7679,1575,7681,,,,,,,,255, -Intel Core i5-1350P,Raptor Lake-P,Raptor Lake-P,10MB + 18MB,,28,1400 ‑ 4700,12/16,10,x86,,710,Iris Xe G7 80EUs,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Apple M3,,Apple M3,4MB,,,2748 ‑ 4056,8/8,3,ARM,,51,M3 10-Core GPU,~64.5,,,,,,271,1499,504,2818,1904,10454,,,,,,,,,,,,474,761,,,,,,,,,,2342,10774,3087.5,11914.5,,,96933,304.5,559,423, -Intel Core i5-10600K,Comet Lake,Comet Lake,1.5MB + 12MB,,125,4100 ‑ 4800,6/12,14,x86,,1304,UHD Graphics 630,~31.1,,7343,40074,2.19,15.76,205,1452,464,3443,1385,10475,7.8,438.7,4.65,113.2,6536,251.5,88.2,12.2,8,1.4,0.82,302.4,,5289,40379,,,,5821,28391,1281,7237,1286,7248,,,,,,,,239, -AMD Ryzen 7 4800HS,Renoir-HS (Zen 2),Renoir (Ryzen 4000 APU),4MB + 8MB,,35,2900 ‑ 4200,8/16,7,x86,,1438,Vega 7,~30.4,12785,5705,36313,2.19,19.94,186.5,1700.5,482,3869,,,9.72,561,4.11,91.1,4642,216.5,99,12,10.3,1.8,1.1,284,,4655,48392,,,,5134,29223.5,1196,7878,1190.5,7611,,,,,,,,214, -Intel Core i9-9880H,Coffee Lake-H,Coffee Lake,2MB + 16MB,,45,2300 ‑ 4800,8/16,14,x86,,1690,UHD Graphics 630,~29.4,12225.5,6967,42456,2.11,18.94,190,1508,465,3235,1174,8747,8.52,476.5,5.39,118.7,6683,217,102.4,11.1,7.5,1,0.68,334.5,,4924,42138,,,,5457,29077,1186,7100,1176,7231,,,,,40443,151.8,134.1,184, -Intel Core i7-8086K,Coffee Lake-S,Coffee Lake,1.5MB + 12MB,,95,3700 ‑ 5000,6/12,14,x86,,2023,UHD Graphics 630,~29.8,11218,7216,35896,2.28,15.04,206,1349,495,3111,1260,8686,8.5,466.95,4.13,119.8,6751.5,230.55,85.45,11.3,7.85,1.4,0.79,316,,5416.5,36059.5,,,,5792,24527,1276,5644,1240,5485,,,,,,,,217, -Intel Core i7-8700K,Coffee Lake-S,Coffee Lake,1.5MB + 12MB,,95,3700 ‑ 4700,6/12,14,x86,,2535,UHD Graphics 630,~32.3,11701,7328,39096,2.2,15,192,1362,430,3165,,,8.02,442.8,4.16,118.9,7120,232,87.2,10.8,8,1.4,0.79,332.75,,,,,,,5783,25045,,,1210,6310,,,,55.75,47063.5,,,, -Intel Xeon W-11855M,Tiger Lake-H,Tiger Lake,7.5MB + 18MB,,45,3200 ‑ 4900,6/12,10,x86,,948,UHD Graphics Xe 32EUs (Tiger Lake-H),~39.6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1573,7191,,,,,,,,, -Intel Core i5-11500H,Tiger Lake H45,Tiger Lake,7.5MB + 12MB,,45,2900 ‑ 4600,6/12,10,x86,,948,UHD Graphics Xe 32EUs (Tiger Lake-H),~38.1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1507,6987,,,,,,,,, -AMD Ryzen 7 2700X,Zen+,Ryzen 7,4MB + 16MB,,105,3700 ‑ 4300,8/16,12,x86,,2073,UHD Graphics 750,~29.2,10643,5256,34763,1.95,18.68,175.7,1762,430,3944,,,10.8,578,3.48,96.6,4779,226.7,104.5,,10.6,1.6,1,266.8,,4647,45814,,,,5049.5,27789.5,1126,7878,1177,7021.5,,,,,,,,, -Intel Core i5-10400F,Comet Lake,Comet Lake,1.5MB + 12MB,,65,2900 ‑ 4300,6/12,14,x86,,1304,UHD Graphics 750,~30.4,,6719,36564,2.03,14.39,180,1332,438,3201,,,8.74,470.4,6.25,134.7,,228.5,81.2,11.2,,,,332.4,,5064,36731,,,,5587,25403,1217,6349,1220,6365,,,,,,,,215, -Intel Core i5-11400H,Tiger Lake-H,Tiger Lake,7.5MB + 12MB,,45,2700 ‑ 4500,6/12,10,x86,,948,UHD Graphics Xe 16EUs (Tiger Lake-H),~36.5,12043,8712,39095.5,2.5,14.64,218,1277,561,3283,1460.5,8451,7.52,487.52,6.8,231.84,5571,182.25,69.93,9.63,8.15,1.25,0.8,396,662,5116,33444,,,,6110,24947,1461,5961,1500,6006,2090,6317,,156.15,63574.5,190.55,197,250,204 -AMD Ryzen 7 4980U,Renoir-U (Zen 2),Renoir (Ryzen 4000 APU),4MB + 8MB,,15,2000 ‑ 4400,8/16,7,x86,,976,Vega 8,~33.1,,5715,35106,2.15,18.87,182,1658,492,3453,1260,9164,9.6,758,,,,,,9.82,,,,342,,4320,42368,,,,,,,,1133,7156,,,,,,,,210, -AMD Ryzen 7 5700U,Lucienne-U (Zen 2),"Lucienne (Zen 2, Ryzen 5000)",4MB + 8MB,,25,1800 ‑ 4300,8/16,7,x86,,1072,Vega 8,~33.8,11662,5780,31131,2.18,16.77,188,1483.5,490,3370,1258,8779,24.58,1081,3.49,110.9,3763,191.5,72.4,10.1,9.2,1.6,1,331.5,572.5,4568,41598,,,,5085,26487,1199,6904,1186,6264,,,,158.1,56365.5,152.9,181.1,215.5,169.35 -Intel Xeon E-2176G,Coffee Lake-ER,Coffee Lake,1.5MB + 12MB,,80,3700 ‑ 4700,6/12,14,x86,,1931,UHD Graphics P630,~29.9,11719,7369,39053,2.2,14.58,200,1324,,,,,8.31,467.9,4.52,132.1,6277,233.2,83.3,9.92,8,1.3,0.79,352,,5157,37522,,,,5297,21008,,,1225,6271,,,,,36458,,,, -Intel Core i7-9700,Coffee Lake-R,Coffee Lake,2MB + 12MB,,65,3000 ‑ 4700,8/8,14,x86,,1697,UHD Graphics 630,~30.1,,7473,37381,2.25,14.44,199,1254,474,2892,,,8.31,460.7,4.79,155.8,6945,247.5,77.6,10.5,7.6,1.3,0.78,388.7,,5186,33539,,,,5777,27040,1300,7060,1312,7060,,,,,,,,232, -Intel Core i9-8950HK,Coffee Lake-H,Coffee Lake,1.5MB + 12MB,,45,2900 ‑ 4800,6/12,14,x86,,2113,UHD Graphics 630,~33.8,11055,7149,36591,2.24,13.22,195,1223.5,442.5,2651.5,,,8.41,466.45,8.08,245.4,6420.5,224.9,77.9,8.84,7.2,1.2,0.74,410.8,,5080,,,4567,23881,5665.5,24399.5,,,1097,5205,,,,173.85,40726,,115,, -Intel Xeon E-2186M,Coffee Lake-H,Coffee Lake,1.5MB + 12MB,,45,2900 ‑ 4800,6/12,14,x86,,2115,UHD Graphics 630,~23,,,,,,,1098,,,,,,,,,,,,,,,,,,,,,,,,,,,1248,5239,,,,,,,,, -Intel Xeon E-2276M,Coffee Lake-H,Coffee Lake,1.5MB + 12MB,,45,2800 ‑ 4700,6/12,14,x86,,1689,UHD Graphics P630,~40.1,,,,,,195,1242.5,484,2782.5,,,,,,,,,,9.68,,,,384,,5214,33994,,,,5218,24150,,,1303,6595,,,,,56114,164.1,,220, -Intel Xeon W-2145,Skylake-W,Xeon,8MB + 11MB,,140,3700 ‑ 4500,8/16,14,x86,,2299,UHD Graphics 750,~45.1,,,,,,177,1682,,,,,,,,,,,,,,,,,,,,,,,4996,34132,,,1192,9146,,,,90.9,46837,,,, -Intel Core i7-10850H,Comet Lake-H,Comet Lake,1.5MB + 12MB,,45,2700 ‑ 5100,6/12,14,x86,,1352,UHD Graphics 630,~30,9471,7653,34586,2.25,12.22,203,1232,494,2636,,,7.7,431.6,,,5519,,,8.37,7.8,1.3,0.81,425,,5241,30988,,,,,,,,1305,5753,,,,,,,,, -Intel Xeon W-10855M,Comet Lake-H,Comet Lake,1.5MB + 12MB,,45,2800 ‑ 5100,6/12,14,x86,,1311,UHD Graphics P630,~32.9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1296,6231,,,,,,,,, -Intel Core i7-10750H,Comet Lake-H,Comet Lake,1.5MB + 12MB,,45,2600 ‑ 5000,6/12,14,x86,,1352,UHD Graphics 630,~29.7,11307,7376.5,37154,2.2,13.92,197,1303.5,472,2941,1217,7463.5,8.3,466.6,5.56,142.7,6287,221.2,78.3,9.89,7.6,1.3,0.77,371,,5120,35346,,,,5600.5,24897,1253,6338.5,1270,6308,,,,,53724.5,152.65,136.9,225, -AMD Ryzen 7 4800U,Renoir-U (Zen 2),Renoir (Ryzen 4000 APU),4MB + 8MB,,15,1800 ‑ 4200,8/16,7,x86,,1438,Vega 8,~28.9,10227,5690,33649,2.15,17.84,183,1411,480,3230.5,1235,8376,9.73,585,3.63,99.5,3881,196.1,88.5,10.4,10.2,1.5,1.1,340,,4436,40117,,,,4963,27286.5,1162,7298,1156.5,6136.5,,,,,36619,133.45,,208, -Intel Core i7-8700,Coffee Lake-S,Coffee Lake,1.5MB + 12MB,,65,3200 ‑ 4600,6/12,14,x86,,2535,UHD Graphics 630,~33.8,11193,7171,35384,2.17,12.97,192,1199,,,,,8.36,472.2,6.77,198.4,6332,234.6,75.2,9.53,7.7,1.3,0.8,388.2,,,,,4486,23061.5,5565,23220,,,1170,6250,,,,64.5,,,,, -Intel Core i5-10500H,Comet Lake-H,Comet Lake,+ 12MB,,45,2500 ‑ 4500,6/12,14,x86,,1352,UHD Graphics 630,~27.9,11157,7109,37125,2.1,13.84,186.25,1249,448,2919,1159.5,7103.5,8.59,485.6,9.13,281,6194,227.5,77.8,9.52,4.1,0.94,0.58,385.5,,4885.5,33445,,,,5501,25696,1200,6233,1205.5,6332,,,,,,,,223.5, -Intel Core i5-9600K,Coffee Lake-R,Coffee Lake,1.5MB + 9MB,,95,3700 ‑ 4600,6/6,14,x86,,1894,UHD Graphics 630,~27,10974,7205,33950,2.24,10.98,193,1094,,,,,7.74,421.1,6.03,176.2,5903,250,68.8,8.02,5.6,0.63,0.43,444.4,,,,,,,5916,23810,,,1217,5855,,,,,,,,, -AMD Ryzen 5 5600HS,Cezanne-HS (Zen 3),"Cezanne (Zen 3, Ryzen 5000)",3MB + 16MB,,35,3000 ‑ 4200,6/12,7,x86,,1072,Vega 7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Ryzen 5 4600H,Renoir-H (Zen 2),Renoir (Ryzen 4000 APU),3MB + 8MB,,45,3000 ‑ 4000,6/12,7,x86,,1438,Vega 6,~32.7,,5365,32756,2.04,16.25,176,1425,449.5,3229.5,1142.5,8072,10.5,607,,,4380,197,82.9,9.8,5,1.4,0.81,352,631,4397,37642.5,,,,4964,25247,,,1117,6080,1525,6631,,,47137.5,134.35,127.75,207, -Intel Core i7-9850H,Coffee Lake-H,Coffee Lake,1.5MB + 12MB,,45,2600 ‑ 4600,6/12,14,x86,,1690,UHD Graphics 630,~26.8,10056,7169,31938,2.13,12.47,193,1230,439.5,2114,,,8.15,467.6,8.3,278,5621,201.3,68.3,9,7.4,1.2,0.76,415,,5086,31087,,,,5594,23715,1169,5619.5,1150,5270,,,,,39091,,71.6,, -Intel Core i7-9750H,Coffee Lake-H,Coffee Lake,+ 12MB,,45,2600 ‑ 4500,6/12,14,x86,,1690,UHD Graphics 630,~31.3,10791.5,6970,34445,2.12,13.11,185.5,1188,442,2599,,,8.35,467.3,4.93,154.4,6395.5,214.8,70.25,8.83,7.35,1.25,0.73,435.2,,4865,33303,,4252.5,22711.5,5266,22951,1171,5635,1204,5813,,,,84.05,36178,,59.8,208.5, -Intel Core i9-9900T,Coffee Lake-R,Coffee Lake,2MB + 16MB,,35,2100 ‑ 4400,8/16,14,x86,,1894,UHD Graphics 630,~26.2,10259,6758,31357,2.09,12.38,185,1112,440,2626,,,8.77,481,5.88,162.1,6109,173.4,70.3,5.5,4.6,0.83,0.54,422,,4894,35084,,,,5381,23223,1193,5875,1206,5888,,,,,,,,197, -AMD Ryzen 7 2700,Zen+,Ryzen 7,4MB + 16MB,,65,3200 ‑ 4100,8/16,12,x86,,2073,UHD Graphics 750,~26.2,9475,4505,31385,1.78,16.71,161,1551,,,,,11.08,597,5.14,130.5,4440,195.7,89.7,9.51,9,1.4,0.9,308.3,,,,,,,4681,22776,,,1000,6560,,,,,,,,, -AMD Ryzen 7 1800X,Zen,Ryzen 7,4MB + 16MB,,95,3600 ‑ 4000,8/16,14,x86,,2479,UHD Graphics 750,~30.8,9585,5062,32833,1.79,18,160.8,1618,398.5,3610.5,939,8891,12.7,613,4.6,103.5,3967,179,84,9.76,9.7,1.5,0.95,294.75,,4062,40776,20615,4014,30389,4488.5,26147,1006.5,7036,1023,6545,,,,107.7,31263,,53.1,186.5, -AMD Ryzen 7 1700X,Zen,Ryzen 7,4MB + 16MB,,95,3400 ‑ 3800,8/16,14,x86,,2479,UHD Graphics 750,~26.8,9076,4662,31950,1.73,16.95,154,1537,335,3280,,,10.83,576,4.89,109.4,3728,180,90.05,8.88,8.95,1.4,0.9,327.1,,3746,39624,19631,,,4277,24555,,,932,6275,,,,,,,,, -Intel Core i5-11260H,Tiger Lake-H,Tiger Lake,7.5MB + 12MB,,45,2600 ‑ 4400,6/12,10,x86,,948,UHD Graphics Xe 16EUs (Tiger Lake-H),~22.3,,,,,,,,,3831,,8990,,,,,,,,,,,,,,,,,,,,,,,1428,6358,,,,,,,,, -Apple M2,,Apple M2,20MB + 8MB,,20,2424 ‑ 3480,8/8,5,ARM,,553,M2 10-Core GPU,~55,,,,,,223,1215,381,2324,1585,8667,,,,,,,,,,,,597,619.5,,,,,,,,,,1917,8961,2621.5,10063.5,,,74614,226.8,392,377,226.5 -AMD Ryzen 5 4600HS,Renoir-HS (Zen 2),Renoir (Ryzen 4000 APU),3MB + 8MB,,35,3000 ‑ 4000,6/12,7,x86,,1438,Vega 6,~31.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4630,20170,,,1100,6345,,,,,,,,, -Intel Xeon E-2176M,Coffee Lake-H,Coffee Lake,1.5MB + 12MB,,45,2700 ‑ 4400,6/12,14,x86,,2115,UHD Graphics 630,~29.2,9757,6973,32132,2.04,12.29,187,1095,,,,,8.6,477,5.34,163.3,4624.5,203.55,63.05,8.72,6.85,1.1,0.68,509.9,,,,,,,4660,20689.5,,,,,,,,76.2,36101.5,,,, -Intel Core i7-11390H,Tiger Lake-H35,Tiger Lake,5MB + 12MB,,35,3400 ‑ 5000,4/8,10,x86,,835,Iris Xe G7 96EUs,~35.9,10150.5,9604,29456,2.78,10.68,232,953,614,2284,1602,5917,6.77,349.8,6.52,196.91,6374.5,232.3,58.55,7.61,6.05,0.91,0.56,513,1101,5682,25876,,,,7125.5,22986,1655,5025,1615.5,5235.5,2194,5630,,117.6,,,,266.5,204 -Intel Core i7-11375H,Tiger Lake-H35,Tiger Lake,5MB + 12MB,,35,3300 ‑ 5000,4/8,10,x86,,1068,Iris Xe G7 96EUs,~39.4,,,,,,230,929,606,2569,1578,6663,,,,,,,,8.54,,,,473,,5565,28441,,,,6891,22937,1631,5975,1648,6098,,,,,,,,249, -AMD Ryzen 7 PRO 4750U,Renoir-U PRO (Zen 2),Renoir (Ryzen 4000 APU),4MB + 8MB,,15,1700 ‑ 4100,8/16,7,x86,,1317,Vega 7,~28.6,11008,8378.5,29573.5,2.12,15.78,181,1410,469,3203,1215,8359,10.04,673,3.95,108.9,4227,201.9,79.9,9.54,7.05,1.25,0.86,352,,4438,39649,,,,4995,25564,1167,6811,1149,6153,,,,,49781,139.8,133.5,205, -Apple M1,,Apple M-Series,16MB + 8MB,,,2064 ‑ 3220,8/8,5,ARM,,1130,M1 8-Core GPU,~49.9,,,,,,208,1072,402.5,2093.5,1514.5,7800.5,,,,,,,,,,,,561,964,5441,34614,,,,,,,,1730,7578,2363,8622,,76.4,62589.5,178.55,214,280.5,189 -Intel Core i7-1195G7,Tiger Lake-UP3,Tiger Lake,5MB + 12MB,,28,2900 ‑ 5000,4/8,10,x86,,929,Iris Xe G7 96EUs,~35.1,9989,,,2.7,10.59,222,940,559,1932,1455,5337,6.75,354.2,8.17,281.4,6334,,,6.64,6.4,0.99,0.63,597.5,1105,5386,24669,,,,6894,20629.5,1605.5,5066,1536,4734,2064,7644,,118.3,69945,194.5,213,261, -Intel Core i7-11370H,Tiger Lake-H35,Tiger Lake,5MB + 12MB,,35,3300 ‑ 4800,4/8,10,x86,,1068,Iris Xe G7 96EUs,~41.3,10019,,,,,229,960,589,2199,1507,5712.5,,,,,,,,7.7,,,,491,783,5307,26791,,,,,,1380,4911,1556.5,5388,,,,,68903,193.5,199,263,205 -Intel Core i5-1250P,Alder Lake-P,Alder Lake-P,10MB + 12MB,,28,1200 ‑ 4400,12/16,10,x86,,710,Iris Xe G7 80EUs,~31.7,11842,7918,38277,2.74,9.71,201,1528,536,2334,1521,7282,8.43,461.49,9.58,339.99,5561,201.07,79.64,6.77,9.5,1.9,1,511,,3532,24625,,,,7072,35532,1583,8778,1622,7672,,,,,,,,254, -Intel Core i5-1340P,Raptor Lake-P,Raptor Lake-P,9MB + 12MB,,28,1400 ‑ 4600,12/16,10,x86,,710,Iris Xe G7 80EUs,~39.9,11552,,,1.86,19.9,240.5,1756,655,4114,1710,10920.5,13.15,731.21,,,3503,228.93,95.23,12.4,9.3,1.6,0.88,299.5,570,5317,44767,,,,4246,29296,967,7117,1721.5,10020.5,,,,,85504,258.95,298,241.5,215.25 -Intel Core i5-1240P,Alder Lake-P,Alder Lake-P,10MB + 12MB,,28,1200 ‑ 4400,12/16,10,x86,,710,Iris Xe G7 80EUs,~40,,8205,42275,2.85,22.09,225,1592,597.5,3173.5,1600,8337,8.3,438.9,10.1,329.9,17276,,,9.3,6.6,1.5,0.81,413.5,839.5,4738,33826,,,,7106,34828,1543,8275.5,1588,7848,,,,106,77844.5,236.09,245,261,228 -Intel Core i5-1345U,Raptor Lake-U,Raptor Lake-U,9.5MB + 12MB,,15,1200 ‑ 4700,10/12,10,x86,,710,Iris Xe G7 80EUs,~46.7,,,,,,240,1311,660,2951,1724,7724,,,,,,,,8.78,,,,415,813,5296,34915,,,,7318,30701.5,1656,7692,1653,7738,,,,,,256.37,,277.5,242.5 -Intel Core i7-1255U,Alder Lake-U,Alder Lake-M,9.5MB + 12MB,,15,1200 ‑ 4700,10/12,10,x86,,710,Iris Xe G7 96EUs,~49.5,,,,,,238.5,1400,638,3131,1656,8332,,,,,,,,9.72,,,,383,723,5256,36825,,,,,,1610.5,7294.5,1650.5,7989.5,,,,97.3,82948,242.27,264,275,232 -AMD Ryzen 5 PRO 6650U,Rembrandt-U PRO (Zen 3+),Rembrandt (Zen 3+),3MB + 16MB,,28,2900 ‑ 4500,6/12,6,x86,,604,Radeon 660M,~34.8,11322,6062,32262,2.79,16.19,232.5,1459.5,570,3427.5,1463,8854,7.94,712.15,7.74,243.3,5343,224.34,86.33,9.84,5.5,0.96,0.61,397,712.5,5228.5,37856.5,,,,5910,28857,1417,7218,1452.5,6488.5,,,,,72306,230.7,226,233.5,185.35 -AMD Ryzen 5 7535U,Rembrandt R,Rembrandt (Zen 3+),3MB + 16MB,,28,2900 ‑ 4550,6/12,6,x86,,344,Radeon 660M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Ryzen 5 6600U,Rembrandt-U (Zen 3+),Rembrandt (Zen 3+),3MB + 16MB,,28,2900 ‑ 4500,6/12,6,x86,,710,Radeon 660M,~35.8,9908,6242,32097,2.73,17.15,233,1493,570,3623,1456.5,9159.5,8.12,692.42,4.69,146.55,6937,212,71.45,11.7,9.3,1.3,0.86,415,488.5,5486,44320,,,,6382.5,33338,1481,8602.5,1483,7529,1977,8310,,,,,,274,217 -Intel Core i3-1220P,Alder Lake-P,Alder Lake-P,9.5MB + 12MB,,28,1100 ‑ 4400,10/12,10,x86,,710,UHD Graphics 64EUs,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Core i5-1245U,Alder Lake-U,Alder Lake-M,9.5MB + 12MB,,15,1200 ‑ 4400,10/12,10,x86,,710,Iris Xe G7 80EUs,~37.2,12162,8303,37663,2.92,16.2,242,1311,649,3153,1690,8199,8.39,442.77,5.44,229.1,6154,263,78.35,9.47,9.2,1.5,0.87,388,712,5097,35918,,,,7065,33040,1585,8911,1675,9065,,,,,,,,271,240 -Intel Core i5-1335U,Raptor Lake-U,Raptor Lake-U,9.5MB + 12MB,,15,900 ‑ 4600,10/12,10,x86,,710,Iris Xe G7 80EUs,~41.4,12286,9351,40266,2.97,18.94,236,1472,643,3319,1684,7783,7.37,423.06,8.03,507.82,5178,256.95,81.84,9.2,9.5,1.7,0.87,414,804,5149,34186,,,,7007,30532,1641.5,8225,1672,7865,2312,8649,,64.5,83996,259.02,306,260,232 -Intel Core i5-1334U,Raptor Lake-U,Raptor Lake-U,9.5MB + 12MB,,15,900 ‑ 4600,10/12,10,x86,,710,Iris Xe G7 80EUs,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Core i7-1185G7,Tiger Lake-UP3,Tiger Lake,5MB + 12MB,,28,3000 ‑ 4800,4/8,10,x86,,1199,Iris Xe G7 96EUs,~32,9108,8872,27024.5,2.54,9.33,217,866,558.5,2090,1455.5,5383.5,7.12,380.38,5.78,240.41,6045,198.8,46.6,6.64,5.8,0.81,0.5,578.5,1102.5,5153,23471,,,,6437,22175,1531.5,5578.5,1529,5550,,,,,61608,172.8,166.5,253,189.9 -Intel Core i7-8850H,Coffee Lake-H,Coffee Lake,1.5MB + 9MB,,45,2600 ‑ 4300,6/12,14,x86,,2113,UHD Graphics 630,~30.4,10516,6766,34216.5,2.04,13.85,181.5,1090,441,2522,1096,5742,8.7,483,,,5922,216.1,71.35,7.61,7.4,1.2,0.73,490.1,,4689,30851,,,,5261,22631.5,1006,4860,1121,4908,,,,76.1,35232,,108.1,194, -Intel Core i5-8600K,Coffee Lake-S,Coffee Lake,1.5MB + 9MB,,95,3600 ‑ 4300,6/6,14,x86,,2535,UHD Graphics 630,~28.1,9078,6875,32863,2.07,10.76,181,989.5,,,,,8.76,496.45,5.69,188.8,4583,232.65,63.35,,5.4,0.89,0.53,,,,,,4217,18970,,,,,,,,,,68.1,,,,, -Intel Core i5-8500,Coffee Lake-S,Coffee Lake,1.5MB + 9MB,,65,3000 ‑ 4100,6/6,14,x86,,2083,UHD Graphics 630,~25.9,9903,8606,40829,1.96,10.21,172,950,,,,,9.22,541,26.52,848,4219,206.5,,7.86,5,0.87,0.52,494.8,,4513,23200,,,,,,,,,,,,,,,,,, -Intel Core i7-8750H,Coffee Lake-H,Coffee Lake,1.5MB + 9MB,,45,2200 ‑ 4100,6/12,14,x86,,2113,UHD Graphics 630,~31,10294.5,6471,33595,1.98,12.33,173,1116,412.5,2336.5,,,9.33,524,5.48,156.8,5310,200.3,67.2,7.8,7,1.2,0.72,469.25,,4629,31144,,4008,21920,5040,21648,,,1050,4820,,,,83,34163,,64.5,213, -AMD Ryzen 7 4700U,Renoir-U (Zen 2),Renoir (Ryzen 4000 APU),4MB + 8MB,,15,2000 ‑ 4100,8/8,7,x86,,1438,Vega 7,~31.7,8629,5524,24770.5,2.1,12.56,180,1094.5,466,2647,1220.5,7378,10.01,599,7.89,265.7,3963,191.3,57.4,8.43,5.25,1.01,0.64,477.5,858,4361.5,30954,16771,4351,20656,4841,21001,1128,5018,1131,5656,,,,90.4,43380.5,147,134.3,203, -AMD Ryzen 5 7530U,Barcelo-U Refresh,"Cezanne (Zen 3, Ryzen 5000)",3MB + 16MB,,15,2000 ‑ 4500,6/12,7,x86,,344,Vega 7,~44.2,,,,,,230.5,1457.5,565,3288,1443,8418.5,,,,,,,,10.7,,,,362,674,5339,37983,,,,,,1376.5,6396.5,1479,6390,1941,6500,,,72262,229.15,252,264,209 -AMD Ryzen 5 PRO 7530U,Barcelo-U Refresh,"Cezanne (Zen 3, Ryzen 5000)",3MB + 16MB,,15,2000 ‑ 4500,6/12,7,x86,,344,Vega 7,~40.1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1904,5548,,,,,,, -Intel Core i7-1165G7,Tiger Lake-UP3,Tiger Lake,5MB + 12MB,,28,2800 ‑ 4700,4/8,10,x86,,1200,Iris Xe G7 96EUs,~33.6,7454,8645,22636,2.49,7.94,218,850,564,1996.5,1457.5,5216,7.21,395.21,8.36,288.14,5717,197.95,46.3,6.45,5.7,0.82,0.46,587,1150,5217,23460,,,,6560.5,21250.5,1533,5200,1532.5,5174.5,,,,135.1,64672,173.7,178.45,253,199.4 -Apple A17 Pro,Coll APL1V02,Apple A-Series,,,,2110 ‑ 3780,6/6,3,ARM,,99,A17 Pro GPU,~55.6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2138,5305,2915,7222,13067,,87691,302.57,420.5,302.5, -Intel Core i5-1155G7,Tiger Lake-UP3,Tiger Lake,5MB + 8MB,,28,2500 ‑ 4500,4/8,10,x86,,929,Iris Xe G7 80EUs,~43.3,,,,,,211,890,550,2173,1419,5612,,,,,,,,7.49,,,,540,1011,4941,24992,,,,6305.5,22182,,,1473,5761,,,,,,205.85,233,244,190.05 -Intel Core i7-10810U,Comet Lake-U,Comet Lake,1MB + 12MB,,15,1100 ‑ 4900,6/12,14,x86,,1311,UHD Graphics 620,~26.9,6842.5,6926.5,19286.5,1.95,6.98,182,754,424,1713,1118.5,4310.5,7.98,510.87,5.9,236.33,4837,147.65,39.43,5.2,5.7,0.98,0.6,694,1346,4498,21925,,,,5203,22485,1233,5168,1226,3934,1563,4090,,,,,,206,161.3 -Intel Core i7-10710U,Comet Lake-U,Comet Lake,1MB + 12MB,,15,1100 ‑ 4700,6/12,14,x86,,1566,UHD Graphics 620,~26.1,10451,6972,31643.5,2.18,11.81,176,1059,460,2303,863,4079,8.19,507,5.24,174.25,4656.5,204,60.5,5.81,6.4,1.2,0.71,618,,4642,24493,,,,4615,17420,1043,4258,1227,5207,,,,,37343.5,150.3,,219, -AMD Ryzen 7 1700,Zen,Ryzen 7,4MB + 16MB,,65,3000 ‑ 3700,8/16,14,x86,,2479,UHD Graphics 750,~27.8,8335,4419,29330,1.66,15.7,147,1414,,,,,11.75,635.5,6,120,3447,153.85,74.4,,7.2,1.3,0.83,,,,,18461,3343,23920,3884,18457,,,,,,,,84.6,32176,,,, -AMD Ryzen 5 2600X,Zen+,Ryzen 5,4MB + 16MB,,95,3600 ‑ 4200,6/12,12,x86,,2073,UHD Graphics 750,~26.1,,4958,29954,1.81,14.56,163,1341,421,2688,,,11.35,616,4.62,133.8,4599,207.4,80.5,8.3,8,1.2,0.78,351.95,,4293,33222,,,,4641.5,22301,1067,5939,1144.5,6094,,,,,,,,186, -Intel Core i5-8400,Coffee Lake-S,Coffee Lake,1.5MB + 9MB,,65,2800 ‑ 4000,6/6,14,x86,,2535,UHD Graphics 630,~25.1,9474,6363.5,30789.5,1.9,10.99,169.5,941,,,,,9.5,526,6.2,191.8,5173,223.8,61.4,,5,0.83,0.5,488,,,,,,,5104,20500,,,,,,,,,,,,, -Intel Core i5-1235U,Alder Lake-U,Alder Lake-M,9.5MB + 12MB,,15,900 ‑ 4400,10/12,10,x86,,710,Iris Xe G7 80EUs,~47.7,,,,,,214,1086,620,2797,1610,5902,,,,,,,,9.18,,,,448,859,5083,31892,,,,,,1592,7643,1572,6220,2208,7046,,99.6,80117,232.37,265,261,231 -AMD Ryzen 5 5625U,Barcelo-U (Zen 3),"Cezanne (Zen 3, Ryzen 5000)",3MB + 16MB,,15,2300 ‑ 4300,6/12,7,x86,,710,Vega 7,~35.9,11440,5806,29724,2.64,15.89,223,1447,544,3224,1379,8290,9.84,519.24,6.46,206.52,6340.5,229.1,82.1,10.3,6.15,1,0.65,365,653,5246,37708,,,,5812,24531,1384,6032,1417,5947,,,,105.8,69094.5,220.57,215.55,260,203 -AMD Ryzen 5 5625C,Barcelo (Zen 3),"Cezanne (Zen 3, Ryzen 5000)",3MB + 16MB,,25,2300 ‑ 4300,6/12,7,x86,,589,Vega 7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Ryzen 5 5600U,Cezanne-U (Zen 3),"Cezanne (Zen 3, Ryzen 5000)",3MB + 16MB,,25,2300 ‑ 4200,6/12,7,x86,,1072,Vega 7,~33.3,11308,2866.25,28347,2.63,14.78,223,1321,534,3067,1371,7792.5,8.66,454.57,5.38,156.33,6858,235,78.48,9.84,7.7,1.1,0.78,412.5,798,5204.5,37815.5,,,,5854,24495,1371,6117,1391,5773,,,,,65343,197.3,185.9,255.5,200 -AMD Ryzen 5 PRO 5675U,Barcelo-U PRO (Zen 3),"Cezanne (Zen 3, Ryzen 5000)",3MB + 16MB,,15,2300 ‑ 4300,6/12,7,x86,,1072,Vega 7,~44.1,,,,,,215.5,1326,537,2991.5,1387.5,7866.5,,,,,,,,9.45,,,,390.5,716,5093.5,35208.5,,,,5814,23357,1341,5207,1363.5,5227,,,,109.2,66431.5,210.98,212.5,241,192.55 -AMD Ryzen 5 PRO 5650U,Cezanne-U PRO (Zen 3),"Cezanne (Zen 3, Ryzen 5000)",3MB + 16MB,,15,2300 ‑ 4200,6/12,7,x86,,1072,Vega 7,~28.6,11124,2.24,12.47,2.6,14.19,218,1207,531,2488,1363,6429,8.61,475.8,8.21,270.4,5905,216.1,70.6,8.39,7.9,1.1,0.76,443.1,,5031,35235,,,,5726,24383,1341,5874,1353,5736,,,,,65444,,,246, -AMD Ryzen 5 5560U,Cezanne-U (Zen 3),"Cezanne (Zen 3, Ryzen 5000)",3MB + 16MB,,25,2300 ‑ 4000,6/12,7,x86,,1072,Vega 6,~43.5,,,,,,202,1280,498,3019,1260,7667,,,,,,,,10,,,,392,677,4740,38281,,,,,,,,1318,5955,1765,6723,,,,239.48,,250,192.4 -Intel Core i7-1260U,Alder Lake-U,Alder Lake-M,9.5MB + 12MB,,9,800 ‑ 4700,10/12,10,x86,,710,Iris Xe G7 96EUs,~42.3,,,,,,222,1117,588,2838,1538,7444,,,,,,,,8.54,,,,431,801,4746,32008,,,,,,1555,7077,1560,7072,,,,,,224.23,,236,213 -Intel Core i7-1250U,Alder Lake-U,Alder Lake-M,9.5MB + 12MB,,9,800 ‑ 4700,10/12,10,x86,,710,Iris Xe G7 96EUs,~45.1,,,,,,226,1222,611.5,2874,1567.5,7402,,,,,,,,8.55,,,,454.5,840,4780,31380,,,,,,1547,7072,1627,7019.5,,,,,81256,226.25,255,268.5,230 -AMD Ryzen 5 4680U,Renoir-U (Zen 2),Renoir (Ryzen 4000 APU),3MB + 8MB,,15,2200 ‑ 4000,6/12,7,x86,,976,Vega 7,~27.2,,5301,31826,2,15.63,170,1291,451,2478,1163,7073,10.5,581,8.2,248.6,3576,,,7.66,8.3,1.4,1.2,458,,4077,32745,,,,,,,,1078,5785,,,,,47184,133.8,123.5,198, -AMD Ryzen 5 2600,Pinnacle Riege (Zen+),Ryzen 5,3MB + 16MB,,65,3400 ‑ 3900,6/12,12,,,2072,UHD Graphics 750,~25.2,9290,4726,28173,1.76,13.71,157.3,1248,380,2793,,,11.17,615,5.5,140.9,4517,205.3,75,7.81,7.5,1,0.73,374.95,,4020,30898,,,,5109,23018,1020,5885,1118.5,6069.5,,,,,,,,179, -Intel Core i5-11400T,Rocket Lake,Rocket Lake,3MB + 12MB,,35,1300 ‑ 3700,6/12,14,x86,,1004,UHD Graphics 730,~22.2,7263,6122,20362,1.79,7.3,153,642,378,1500,972,3891,10.09,543.45,7.8,261.3,4409,154.5,40,5.24,4.2,0.65,0.41,704,,4157,19699,,,,4855,17082,1130,3495,1146,3510,,,,,,,,208, -AMD Ryzen 5 5500U,Lucienne-U (Zen 2),"Lucienne (Zen 2, Ryzen 5000)",3MB + 8MB,,25,2100 ‑ 4000,6/12,7,x86,,1072,Vega 7,~28.1,9184.5,5313,27437,1.99,11.41,177,1247,457,2698,1172,7186,10.46,574,6.22,181.3,3945,162.3,45.31,8.48,4.3,0.82,0.54,416.5,748.5,4324,33768,,,,4798,21901,1119.5,5515,1108,5438.5,,,,,50330,149.45,153.9,206,156.3 -AMD Ryzen 5 4600U,Renoir-U (Zen 2),Renoir (Ryzen 4000 APU),3MB + 8MB,,15,2100 ‑ 4000,6/12,7,x86,,1438,Vega 6,~36.1,,,,,,175.5,1089,447,2544,,,,,,,,,,8.8,,,,402,,4247,34854,,,,,,,,1105,5591,,,,,,,,199, -AMD Ryzen 5 PRO 4650U,Renoir-U PRO (Zen 2),Renoir (Ryzen 4000 APU),3MB + 8MB,,15,2100 ‑ 4000,6/12,7,x86,,1317,Vega 6,~30.1,10182,5289,27559,2.02,12.94,175,1161,453.5,2599,,,7.2,366,,,3795,,,7.9,5.4,1.2,0.81,428.5,,4223,31980,,4010,22199,4475,19220,,,1071,4648.5,,,,,44814.5,124.3,124.9,186, -Intel Core i5-11320H,Tiger Lake-H35,Tiger Lake,5MB + 8MB,,35,3200 ‑ 4500,4/8,10,x86,,835,Iris Xe G7 96EUs,~32.9,10886,8767,32576,2.51,10.78,214,905.5,560.5,2267.5,1460.5,5852,7.51,389.7,5.9,191.4,5481,,,7.57,6.1,0.92,0.53,528.5,995,5025,24760,,,,6238,22045,1493.5,5259,1505,5308,,,,,67714,204.59,,260.5,206 -Qualcomm Snapdragon 8 Gen 3,Cortex-X4 / A720 / A720 / A520 (Kryo),Snapdragon,+ 8MB,,,2300 ‑ 3300,8/8,4,ARM v9,,57,Adreno 750,~46.7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1687,6439,2303.5,7188,,,54365,202,226,254,181 -Intel Core i5-11300H,Tiger Lake-H35,Tiger Lake,5MB + 8MB,,35,3100 ‑ 4400,4/8,10,x86,,1068,Iris Xe G7 80EUs,~34.2,10250,8663,30491,2.48,10.97,187,961,529,2247.5,1378,5702,7.98,404.7,,,4926,215.6,58.9,7.32,5.3,0.78,0.45,530,,4930.5,24688.5,,,,6019,18976,,,1415,4749,,,,163.2,62911,183.8,188,238, -Intel Core i5-1240U,Alder Lake-U,Alder Lake-M,9.5MB + 12MB,,9,800 ‑ 4400,10/12,10,x86,,710,Iris Xe G7 80EUs,~43.2,,,,,,226,1242,596,2990,1559,7902,,,,,,,,9.13,,,,407,744,4446,31097,,,,,,1547,7029,1596,7066,,,,,,235.82,,266,221 -Intel Core i5-1230U,Alder Lake-U,Alder Lake-M,9.5MB + 12MB,,9,700 ‑ 4400,10/12,10,x86,,710,Iris Xe G7 80EUs,~31.7,6641,7290,17243,,,186.8,514,469,1653,1310,4402,7,365,14,576,4985,152.65,41.8,5.96,,,,754,1458.5,3969,20092,,5120,21447,,,1471.5,5505.5,1529,6755,,,,,,193.59,,233.5,204.2 -Intel Core i3-1315U,Raptor Lake-U,Raptor Lake-U,5MB + 10MB,,15,900 ‑ 4500,6/8,10,x86,,346,UHD Graphics 64EUs,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Core i3-1215U,Alder Lake-U,Alder Lake-M,5MB + 10MB,,15,900 ‑ 4400,6/8,10,x86,,710,UHD Graphics 64EUs,~36.3,,7879,19430,2.79,10.99,217.5,809,581.5,1966,1511.5,5181.5,7.27,372.38,3.41,98.31,7944,199.3,50.05,5.32,11.6,1.7,1.1,664.5,1249.5,5031.5,22883,,,,6801,23138,1501,6005,1539,5258.5,2082,5213,,,78716,254.6,281,312,237.5 -Intel Core i5-10400H,Comet Lake-H,Comet Lake,1MB + 8MB,,45,2600 ‑ 4600,4/8,14,x86,,1352,UHD Graphics 630,~25.6,9578,7403,25731,2.18,9.62,192,796,471,1924,,,8.14,484.5,24.93,801,4115,191.4,49.05,6.14,5.3,0.95,0.55,565,,4766,23136,,,,,,,,1245,4332,,,,,,,,, -Intel Core i3-10320,Comet Lake-S,Comet Lake,1MB + 7.9MB,,65,3800 ‑ 4600,4/8,14,x86,,1304,UHD Graphics 630,~32,9911,7164,28383,2.1,10.5,188,949,458,2320,1185,5986,9.73,516,,,,218,58.8,8.16,5.3,0.91,0.53,469,,4899,25864,,,,,,,,1217,4846,,,,160,,149.4,168,224, -Intel Core i5-1145G7,Tiger Lake-UP3,Tiger Lake,5MB + 8MB,,28,2600 ‑ 4400,4/8,10,x86,,1200,Iris Xe G7 80EUs,~29.7,8922.5,8274.5,25545,2.31,9.27,202.5,791.5,531,1841.5,1374.5,4880,7.51,389.85,8.35,281.14,4706.5,192,46.3,6.03,5.6,0.76,0.45,641,1116,4802,21844,,,,6226,20787,1423,5351,1428.5,5261,,,,,,,,238.5,177.4 -Intel Core i5-1135G7,Tiger Lake-UP3,Tiger Lake,5MB + 8MB,,28,2400 ‑ 4200,4/8,10,x86,,1200,Iris Xe G7 80EUs,~31.7,8274,8116,25271,2.33,9.29,198,822,515,1859,1345,4894,8.08,412.7,6.66,259.07,5283,182.53,41.4,5.97,5.2,0.76,0.45,649.5,1254,4723.5,21892.5,,,,5911,18889,1379,4761.5,1384,4688,,,,143.3,58147,168.8,182.3,226.5,180.4 -AMD Ryzen 3 7440U,Phoenix-U (Zen 4 + Zen 4c),"Phoenix (Zen 4, Ryzen 7040)",4MB + 8MB,,28,3000 ‑ 4700,4/8,4,x86,,206,Radeon 740M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Core i5-10300H,Comet Lake-H,Comet Lake,1MB + 8MB,,45,2500 ‑ 4500,4/8,14,x86,,1352,UHD Graphics 630,~25.8,9744,7130,27692,2.16,10.06,186,892,455.5,2113.5,1121,4863.5,8.72,516,7.12,215.2,4825,190.2,53.3,7.27,3.1,0.69,0.39,514,,4903,24259,,,,5199,17278,1172.5,4365,1205,4399,,,,,48896,140.6,131.8,210.5, -AMD Ryzen 3 8440U,Hawk Point-U (Zen 4 + Zen 4c),"Hawk Point (Zen 4/4c, Ryzen 8040)",4MB + 8MB,,28,3000 ‑ 4700,4/8,4,x86,,17,Radeon 740M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Ryzen 5 4500U,Renoir-U (Zen 2),Renoir (Ryzen 4000 APU),3MB + 8MB,,15,2300 ‑ 4000,6/6,7,x86,,1438,Vega 6,~28.8,8933.5,5337,24155.5,2.03,10.91,174,892,447.5,2219,1152,5920,10.25,622,8.3,171.9,3493,210,59.3,6.93,4.9,0.89,0.53,584,,4288,24101,14964,3960,18690,4624,18561,1074,4282,1097,4632,,,,99,48506,139.5,94.1,197, -Intel Core i7-8809G,Kaby Lake-G,Core i7,1MB + 8MB,,100,3100 ‑ 4200,4/8,14,x86,,2165,Vega M GH,~27.6,8837,6668,25809,1.99,9.41,179,865,404,2005,,,9.78,484.9,6.57,190.85,5984,200.3,53.4,7.1,4.8,0.82,0.48,537,,4101,19347,,,,5268,17183,,,,,,,,78.6,34543,,,, -Intel Core i5-8500T,Coffee Lake-S,Coffee Lake,1.5MB + 9MB,,35,2100 ‑ 3500,6/6,14,x86,,2023,UHD Graphics 630,~21.7,8062,5493,25971,1.65,8.6,145,843,,,,,10.71,567,8.03,235.1,4331,196,51.8,6.3,3.4,0.63,0.36,561,,,,,,,4626,18335,,,,,,,,,,,,, -Intel Core i5-9400H,Coffee Lake-H,Coffee Lake,1MB + 8MB,,45,2500 ‑ 4300,4/8,14,x86,,1690,UHD Graphics 630,~8.7,,,,,9.44,,823,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Ryzen 5 1600,Zen,Ryzen 5,3MB + 16MB,,65,3200 ‑ 3600,6/12,14,x86,,2439,UHD Graphics 750,~27.1,8244,4538,25970,1.65,12.57,147,1129,349,2578,915,6468,11.98,650,6.85,149,3430,177,68.7,7.21,6.4,1,0.66,404.1,,3834,30143.5,16217,3189,19391,3841,18788,914.5,5402.5,950,5424.5,,,,89,30668,,,180, -AMD Ryzen 3 3300X,Matisse (Zen 2),Matisse (Ryzen 3000 Desktop),2MB + 16MB,,65,3800 ‑ 4300,4/8,7,x86,,1317,UHD Graphics 750,~27.8,,5856,25416,2.28,11.82,195,1071,500,2430,,,9.51,531,6.04,164.5,7177,233.5,61.8,8.28,5.9,0.97,0.57,449.4,,5329,30353,,,,5753,20529,1299,5406,1296,5311,,,,,,,,233, -Intel Core i5-10200H,Comet Lake-H,Comet Lake,1MB + 8MB,,45,2400 ‑ 4100,4/8,14,x86,,1200,UHD Graphics 610,~32.7,,,,,,171.6,842,419,2082,1089,5372,,,,,,,,6.48,,,,515,,4497,21148,,,,,,,,1094,3845,,,,,,,,187.3, -Intel Core i5-1038NG7,Ice Lake-U,Ice Lake,2MB + 6MB,,28,2000 ‑ 3800,4/8,10,x86,,1320,Iris Plus Graphics G7 (Ice Lake 64 EU),~26.9,7844,6743,23609,2.03,7.47,169,768,438,1998,,,9.45,756,11.2,355,,,,5.99,,,,4.2,,4161,19485,,,,,,,,1265,4564,,,,,45151,142.9,115,180, -Intel Core i7-8709G,Kaby Lake-G,Core i7,1MB + 8MB,,100,3100 ‑ 4100,4/8,14,x86,,2165,Vega M GH,~28.5,,,,,,158,791,,,,,,,,,,,,,,,,,,,,,,,4436,14863,,,,,,,,,,,,, -Intel Core i7-8706G,Kaby Lake-G,Core i7,1MB + 8MB,,65,3100 ‑ 4100,4/8,14,x86,,2168,Vega M GL / 870,~23,,6549,24130,1.99,8.44,172,781,,,,,9.48,505,6.64,199.6,5047,182.6,50,6.35,2.4,0.7,0.42,624,,,,,,,5011,16256,,,,,,,,,28486,,,, -Intel Core i7-8705G,Kaby Lake-G,Core i7,1MB + 8MB,,65,3100 ‑ 4100,4/8,14,x86,,2168,Vega M GL / 870,~23.2,,6436,23794,1.93,7.62,174,746,414,1883,,,9.25,504,6.67,197.6,4969,181.2,50.1,,4.6,0.77,0.45,,,,,,,,5009,16066,1066,4029,1059,4047,,,,82.9,32262,,,, -Intel Core i7-1068G7,Ice Lake U,Ice Lake,2MB + 8MB,,28,2300 ‑ 4100,4/8,10,x86,,1597,Iris Plus Graphics G7 (Ice Lake 64 EU),~28.7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1173,4449,,,,,,,,, -Intel Core i5-9300HF,Coffee Lake-H,Coffee Lake,1MB + 8MB,,45,2400 ‑ 4100,4/8,14,x86,,1690,UHD Graphics 750,~28.7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4447,14512,,,1090,4370,,,,,,,,, -Intel Core i5-9300H,Coffee Lake-H,Coffee Lake,1MB + 8MB,,45,2400 ‑ 4100,4/8,14,x86,,1690,UHD Graphics 630,~29.3,8107,6572,24623,,,172,790,419,1737,,,9.1,496,,,5663,193.7,49.4,6,4.7,0.84,0.5,602,,4609,22133,,3854.5,15527.5,4901,16541,1123,4146,,,,,,86.6,33646,,63.6,222, -Intel Core i5-8400H,Coffee Lake-H,Coffee Lake,1MB + 8MB,,45,2500 ‑ 4200,4/8,14,x86,,2113,UHD Graphics 630,~27.4,,6659,21711,,,170.4,761.5,393,1793,1128,4657,8.97,498.29,7.2,230.75,5391,185.2,45.25,6.49,4.6,0.78,0.47,596,1151,4553,22023,,,,,,1118,4211,1127,4352,1493,4963,,,49389,168,195,209,155.3 -Intel Core i7-8559U,Coffee Lake-U,Coffee Lake,1MB + 8MB,,28,2700 ‑ 4500,4/8,14,x86,,2082,Iris Plus Graphics 655,~24.4,8313,7249,23215,2.17,7.32,188,798,466,1691,,,8.33,464.1,6.54,234.6,6656,191.4,45.59,5.71,5,0.81,0.47,666,,5498.5,26301.5,13909,,,5383.5,18095,1150,4440,723,3660,,,,,,,,, -Intel Core i5-8300H,Coffee Lake-H,Coffee Lake,1MB + 8MB,,45,2300 ‑ 4000,4/8,14,x86,,2113,UHD Graphics 630,~26.3,,6463.5,22266.5,1.9,7.84,170,812,,,,,9.36,548.5,7.66,265.3,,169,40.15,,3.9,0.6,0.39,,,,,,3740,15050,4770,14790,,,990,3270,,,,88.5,33251,,,, -AMD Ryzen 5 1500X,Zen,Ryzen 5,2MB + 16MB,,65,3500 ‑ 3700,4/8,14,x86,,2439,UHD Graphics 750,~24.5,7403,4573,20186,1.73,8.95,154,805,360,1783,947,4597,10.95,640,6.9,210.6,3910,177,49.5,5.11,4.9,0.74,0.47,586,,3865,21842,13198,,,4282,15134,915,4035,918.5,4603.5,,,,74.8,36017,,,177.5, -Intel Core i7-1180G7,Tiger Lake-UP4,Tiger Lake,5MB + 12MB,,15,2200 ‑ 4600,4/8,10,x86,,1199,Iris Xe G7 96EUs,~34.2,,,,,,188,549,492,1301,1280,3434,,,,,,,,4.7,,,,844,,5108,19703,,,,6260,19898,1530,5254,1525,5304,,,,,,157.1,,242, -Intel Core i5-9400F,Coffee Lake-R,Coffee Lake,1.5MB + 9MB,,65,2900 ‑ 4100,6/6,14,x86,,1803,UHD Graphics 750,~26.2,,6490,31523,1.95,11.27,173,984,416,2378,,,9.3,499.8,6.76,198.7,5794,234,64,9.07,5.2,0.86,0.51,468.5,,4678,25639,,,,5347,21830,1132,5698,1139,5715,,,,,,,,211, -AMD Ryzen 3 3100,Matisse (Zen 2),Matisse (Ryzen 3000 Desktop),2MB + 16MB,,65,3600 ‑ 3900,4/8,7,x86,,1317,UHD Graphics 750,~25.2,,5181,23406,1.99,10.93,178,991,446,2282,,,10.64,594,6.58,177.6,4848,202.5,58.6,7.58,5.4,0.91,0.52,486.4,,4602,27541,,,,5162,18756,1138,5023,1135,5005,,,,,,,,209, -AMD Ryzen 3 PRO 4450U,Renoir PRO (Zen 2),Renoir (Ryzen 4000 APU),2MB + 4MB,,15,2500 ‑ 3700,4/8,7,x86,,1317,Vega 5,~25.1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1033,3657,,,,,,,,, -Intel Core i3-10100,Comet Lake-S,Comet Lake,1MB + 6MB,,65,3600 ‑ 4300,4/8,14,x86,,1324,UHD Graphics 750,~25.8,,6863,26903,2.05,9.93,181,895,436,2181,,,8.93,481.8,6.34,194.1,6124,212.5,55.8,7.74,5,0.86,0.5,493.65,,4853,24355.5,,,,5563,18692,1183.5,4748,1187.5,4758,,,,,,,,207.5, -Intel Core i3-10100F,Comet Lake,Comet Lake,1MB + 6MB,,65,3600 ‑ 4300,4/8,14,x86,,1159,UHD Graphics 750,~25.9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1072,3650,,,,,,,,, -Intel Core i3-9100F,Coffee Lake-R,Coffee Lake,1MB + 6MB,,65,3600 ‑ 4200,4/4,14,x86,,1697,UHD Graphics 750,~23.5,,6509,18118,1.95,5.38,171,634,414,1175,,,9.31,495.5,11.81,345.9,4052,218,44.35,6.12,3,0.5,0.32,687,,4682,17150,,,,5301,15937,1146,4060,1152,4074,,,,,,,,204, -AMD Ryzen 5 2400G,Zen,Raven Ridge (Ryzen 2000 APU),2MB + 4MB,,65,3600 ‑ 3900,4/8,14,x86,,2165,Vega 11,~21.7,6672,4805,21024,1.77,9.46,155.65,846.5,382.5,1849.5,,,11.27,624,6.9,198,3846,171.6,47.95,5.09,5.2,0.81,0.5,550.5,,3909,19885,,,,4268,13653,990,3825,1001,3885,,,,,,,,170, -Intel Core i5-8305G,Kaby Lake-G,Core i5,1MB + 6MB,,65,2800 ‑ 3800,4/8,14,x86,,2168,Vega M GL / 870,~21.4,7755,5844,21845,1.79,7.47,157,710,,,,,10.81,565,7.13,215.8,4459,166.2,45.87,,4.1,0.71,0.41,,,,,,,,,,,,,,,,,89.5,30273,,,, -Intel Core i7-8557U,Coffee Lake-U,Coffee Lake,1MB + 8MB,,28,1700 ‑ 4500,4/8,14,x86,,1613,Iris Plus Graphics 645,~26.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1079,4119,,,,,,,,, -Intel Core i5-8269U,Coffee Lake-U,Coffee Lake,1MB + 6MB,,28,2600 ‑ 4200,4/8,14,x86,,2082,Iris Plus Graphics 655,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Core i5-8279U,Coffee Lake-U,Coffee Lake,1MB + 6MB,,28,2400 ‑ 4100,4/8,14,x86,,1717,Iris Plus Graphics 655,~25.9,8830,6551,24096,1.93,8.29,167.5,750,421,1717,,,9.2,512,8.55,266.1,5862,190,45.7,6,,,,627,,4276,22683,,,,4850,17643,,,,,,,,,44259,137.5,110,, -Intel Core i7-1160G7,Tiger Lake-UP4,Tiger Lake,5MB + 12MB,,15,2100 ‑ 4400,4/8,10,x86,,1199,Iris Xe G7 96EUs,~27.6,,8212,26247,2.39,9.64,200.5,816,514.5,1699,1266,3896,8.08,422.6,10.13,327.8,4779,,,4.05,4.9,0.73,0.41,910.5,,4596,17006,,,,,,,,1437,4917,,,,,55945,155,151.1,231.5, -Intel Core i7-1065G7,Ice Lake-U,Ice Lake,2MB + 8MB,,15,1300 ‑ 3900,4/8,10,x86,,1661,Iris Plus Graphics G7 (Ice Lake 64 EU),~28.3,9208.5,7270.5,22401.5,2.11,7.22,178.1,662.5,449,1543,1131,3437,11.68,481,7.7,255.6,4956,184.9,45.05,4.48,5,0.76,0.46,836,,4393,17254.5,,3863,14396,5637.5,18459.5,1310,4648,1316,4406.5,,,,88.9,36670,148.2,132.8,201.5, -Apple A16 Bionic,Crete,Apple A-Series,20MB + 24MB,,,2020 ‑ 3460,6/6,4,ARM,,464,A16 GPU 5-Core,~55,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1883,5433,2597.5,6680.5,10812,56.2,73142.5,269.34,373,287.5,201.5 -Apple A15 Bionic,,Apple A-Series,16MB + 32MB,,,2020 ‑ 3230,6/6,5,ARM,,822,A15 GPU 5-Core,~47.6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1734,4788,2332,5661,10410.5,77,64026.5,181.7,242.5,250,188 -Qualcomm Snapdragon 8 Gen 2 for Galaxy,Cortex-X3 / A715 / A710 / A510 (Kryo),Snapdragon,+ 8MB,,,2000 ‑ 3360,8/8,4,ARM v9,,399,Adreno 740,~44.1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8380,21209,,,1556,4989,2059.5,5443.5,,,60115,169.81,170.5,231,165 -AMD Ryzen 7 3780U,Picasso-U (Zen+),Picasso (Ryzen 3000 APU),2MB + 4MB,,15,2300 ‑ 4000,4/8,12,x86,,1804,Vega 11,~18.8,,,,,,166,788,290,1580,,,,,,,,,,,,,,,,,,,,,,,890,3380,940,3050,,,,,,,,, -Qualcomm Snapdragon 8 Gen 2,Cortex-X3 / A715 / A710 / A510 (Kryo),Snapdragon,+ 8MB,,,2000 ‑ 3200,8/8,4,ARM v9,,399,Adreno 740,~39.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8169,21216,,,1493,5005,2006,5198,,,43632,140.57,112,211,139 -AMD Ryzen 5 1400,Zen,Ryzen 5,2MB + 8MB,,65,3200 ‑ 3400,4/8,14,x86,,2439,UHD Graphics 750,~19.1,6436.5,4204.5,17556.5,1.53,7.78,133.75,688,329,1537,832,3985,13.88,732.5,7.8,237.15,2758,146.9,43,4.41,4.1,0.62,0.41,682,,3370,19219,10513,,,3715,12846,817,3410,831,3037.5,,,,,,,,, -Intel Core i5-8259U,Coffee Lake-U,Coffee Lake,1MB + 6MB,,28,2300 ‑ 3800,4/8,14,x86,,2082,Iris Plus Graphics 655,~23.8,7916,5706,21869,1.67,7.07,148.65,615,381,1471,976.5,3728,11.12,589.33,7.48,248.62,5348,165.13,39.5,5.36,4.1,0.75,0.45,729.5,1331,3975.5,19104.5,,,,4211,13961,948,3567,951,3607,,,,,,121,,176,140.3 -Intel Core i5-8257U,Coffee Lake-U,Coffee Lake,1MB + 6MB,,15,1400 ‑ 3900,4/8,14,x86,,1619,Iris Plus Graphics 645,~28.3,,,,,,157.65,633.5,393,1519.5,1003,4033,,,,,,,,5.28,,,,714,,4083,19620,,,,4608,16580,989,4181,948,3858,,,,,39387.5,129.8,107.5,210, -Intel Core i7-10610U,Comet Lake-U,Comet Lake,1MB + 8MB,,15,1800 ‑ 4900,4/8,14,x86,,1311,UHD Graphics 620,~25.6,8163,7163,17253,2.08,7.46,178,604.5,446,1477,1207,4048.5,7.78,467.3,6.67,295.5,4786,183.1,43.9,4.57,5,0.86,0.52,791,,4666.5,18717.5,,,,,,,,1243.5,4123.5,,,,,51613,149.2,,211, -Intel Core i7-10510U,Comet Lake-U,Comet Lake,1MB + 8MB,,15,1800 ‑ 4900,4/8,14,x86,,1566,UHD Graphics 620,~31.5,6125,7268,25882,1.95,6.69,182,678,441,1422,1152,3734,,,,,,,,4.6,,,,797,,4678,17318,,4427,16790,5368,17109,1214,3669.5,1212,3663,,,,,38295,138.5,70.9,210, -AMD Ryzen 3 1300X,Zen,Ryzen 3,2MB + 8MB,,65,3500 ‑ 3700,4/4,14,x86,,2331,UHD Graphics 750,~23.8,6310,4676,16094,1.72,6.37,152,558,345,1336,947,3486,10.97,619,10.8,334.8,2677,181.6,38.4,4.13,3,0.46,0.29,870,,3772,13712,,,,4327,12230,,,920,5210,,,,81,35289,,,171, -Intel Core i5-1035G7,Ice Lake-U,Ice Lake,2MB + 6MB,,15,1200 ‑ 3700,4/8,10,x86,,1661,Iris Plus Graphics G7 (Ice Lake 64 EU),~23.1,8736,6449.5,19601,1.91,6.41,170,712,427,1233,,,9.17,456.5,7.75,265,4513,167.5,38.1,4.67,4.7,0.75,0.43,794,,4205,18342,,,,5439,17322,1135,3488,1163,2713,,,,,33114,,,186, -Intel Core i5-1035G4,Ice Lake-U,Ice Lake,2MB + 6MB,,15,1100 ‑ 3700,4/8,10,x86,,1661,Iris Plus Graphics G4 (Ice Lake 48 EU),~23.3,7425.5,6829,22252,2.04,7.35,169,602.5,426,1304.5,1119,3800,9.19,458.3,7.4,307.8,4526,154.1,35.8,3.97,4.7,0.76,0.43,958,,4086.5,13057,,,,5376,17202,1197,4206,1235,3986,,,,,35435,,,176, -AMD Ryzen 7 3750H,Picasso (Zen+),Picasso (Ryzen 3000 APU),2MB + 4MB,,35,2300 ‑ 4000,4/8,12,x86,,1804,Vega 10,~22.5,7431,4770,20687,1.64,9.21,144,734,364.5,1713,971,3897,10.95,650,7.44,197.1,2866,139.4,48.58,4.35,5,0.69,0.47,633,,3659,18689,,3768,14748.5,4166,13403.5,884,3571.5,874,3537,,,,,30626,112.7,,153, -Qualcomm Snapdragon 8cx Gen 3,Cortex-X1 / A78,Snapdragon,6MB + 8MB,,7,2400 ‑ 2995,8/8,5,ARM,,743,Adreno 690,~22.6,3876,2481,13940,1.38,9.23,119.05,748.5,205,1248,598,3567,17.47,847.99,8.67,305.27,4046,146.9,33.2,2.52,,,,1080,1625.5,3915,23989,,,,3460,15240,665,3796.5,1588,5989.5,,,,,49893,166.42,150,90.45,67.2 -AMD Ryzen 7 3700U,Picasso-U (Zen+),Picasso (Ryzen 3000 APU),2MB + 4MB,,15,2300 ‑ 4000,4/8,12,x86,,1804,Vega 10,~23,4595,4410.5,15461,1.59,7.6,139,672,343,1499,,,12.58,748,13.48,450.4,2392,104.8,27.1,3.3,3.8,0.63,0.39,703,,3492.5,15386.5,10025,3003,10238,3843.5,10542,,,,,,,,147.3,27490,,35.3,154, -AMD Ryzen 7 PRO 3700U,Zen+,Picasso (Ryzen 3000 APU),2MB + 4MB,,15,2300 ‑ 4000,4/8,12,x86,,1712,Vega 10,~24.4,,,,,,149,658,,,,,,,,,,,,3.6,,,,785,,3680,16735,,,,3928,11249,839,3091,808,3018,,,,,27979,,39,, -AMD Ryzen 3 7335U,Rembrandt R,Rembrandt (Zen 3+),2MB + 8MB,,28,3000 ‑ 4300,4/8,6,x86,,344,Radeon 660M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Core i5-10310U,Comet Lake-U,Comet Lake,1MB + 6MB,,15,1700 ‑ 4400,4/8,14,x86,,1311,UHD Graphics 620,~32.7,,,,,,170,546,438,1327,1051,3094,,,,,,,,4.09,,,,864,,4274,16475,,,,4814.5,12621,1040,2931,1122,3717.5,,,,202.3,46029,124.85,,195, -Intel Core i5-1035G1,Ice Lake-U,Ice Lake,2MB + 6MB,,15,1000 ‑ 3600,4/8,10,x86,,1661,UHD Graphics G1 (Ice Lake 32 EU),~22.9,,6869.5,21298.5,1.97,5.81,167.5,606,428,1311,1016,4027,25.5,789,10.8,454.1,3800,,,4.2,4.2,0.65,0.39,863,,4159,15156,,,,5183,15042.5,1136,3505,1219,3858,,,,,35437.5,132.4,58.1,178, -Intel Core i7-8665U,Whiskey Lake-U,Core i7,1MB + 8MB,,15,1900 ‑ 4800,4/8,14,x86,,1704,UHD Graphics 620,~25,6365,6872,18426.5,1.67,4.88,180,670,427,1346,988,2729,8,521,9.98,429.3,3418,139,32,4.5,2.6,0.45,0.27,754.5,,4705.5,18298,,3887,14277,5342.5,16347,1196,3453,1039,2671,,,,235,34548,,63.1,, -Intel Core i7-8650U,Kaby Lake Refresh,Kaby Lake Refresh,1MB + 8MB,,15,1900 ‑ 4200,4/8,14,x86,,2307,UHD Graphics 620,~23.2,6936,6629,18635,1.92,6.82,169,605,,,,,8.84,508,9.94,302.8,4319,169.6,39.75,,4.3,0.72,0.44,,,,,,,,,,,,,,,,,74.4,33906,,,227, -Intel Core i5-10210U,Comet Lake-U,Comet Lake,1MB + 6MB,,15,1600 ‑ 4200,4/8,14,x86,,1566,UHD Graphics 620,~25.2,6363,6412,16072,1.89,7.5,166,616,415,1242,1062,3794,8.96,516.5,6.78,217.8,4213,169.5,43.85,4.31,4.65,0.8,0.49,829,,4261,16742,,3457,12114,4696.5,14139,1067.5,3467.5,1079,3689,,,4130,245.45,34153,127.45,116.5,191, -Intel Core i7-8565U,Whiskey Lake-U,Core i7,1MB + 8MB,,15,1800 ‑ 4600,4/8,14,x86,,1942,UHD Graphics 620,~26.1,6158,6644,16760,1.93,6.8,173,608.5,411.5,1181.5,,,8.36,508,9.55,360.2,4291.5,140.9,33.71,4.71,4,0.72,0.44,806.5,,4737,18860,10600,3851,12302.5,5142.5,13888,1197,3176,1135.5,3073.5,,,,152.7,34884.5,,59.7,202, -Intel Core i7-1060NG7,Ice Lake Y,Ice Lake,2MB + 8MB,,10,1200 ‑ 3800,4/8,10,x86,,1365,Iris Plus Graphics G7 (Ice Lake 64 EU),~27,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1153,2940,,,,,,,,, -Intel Core i7-1060G7,Ice Lake Y,Ice Lake,2MB + 8MB,,9,1000 ‑ 3800,4/8,10,x86,,1597,Iris Plus Graphics G7 (Ice Lake 64 EU),~26.7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1167,2322,,,,,,,,, -Intel Core i5-1034G1,Ice Lake U,Ice Lake,2MB + 6MB,,15,800 ‑ 3600,4/8,10,x86,,1661,UHD Graphics G1 (Ice Lake 32 EU),~35.2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5090,16969,,,,,,,,,,,,, -Intel Core i5-8365U,Whiskey Lake-U,Core i5,1MB + 6MB,,15,1600 ‑ 4100,4/8,14,x86,,1704,UHD Graphics 620,~22.5,6330,6557,16518,1.91,5.74,166,579,421,1408,,,9.15,546,7.72,296.7,3173,153,35.9,4.49,4.6,0.8,0.46,825,,4346,17293,,,,4822.5,15472,,,,,,,,,32878,,,, -AMD Ryzen 3 7330U,Barcelo (Zen 3),"Cezanne (Zen 3, Ryzen 5000)",2MB + 8MB,,15,2300 ‑ 4300,4/8,7,x86,,344,Vega 6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Ryzen 5 7520U,Mendocino-U (Zen 2),"Mendocino (Zen 2, Ryzen 7020)",2MB + 4MB,,15,2800 ‑ 4300,4/8,6,x86,,451,Radeon 610M,~36.6,,,,,,168.8,834,350.5,1632.5,1171,5149,,,,,,,,6.3,,,,588,1044,4167,24219,,,,,,,,1066,3821,,,,,,,,191.3,155.3 -AMD Ryzen 5 7520C,Mendocino (Zen 2),"Mendocino (Zen 2, Ryzen 7020)",2MB + 4MB,,15,2800 ‑ 4300,4/8,6,x86,,206,Radeon 610M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Ryzen 3 7320U,Mendocino-U (Zen 2),"Mendocino (Zen 2, Ryzen 7020)",2MB + 4MB,,15,2400 ‑ 4100,4/8,6,x86,,451,Radeon 610M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Ryzen 3 7320C,Mendocino (Zen 2),"Mendocino (Zen 2, Ryzen 7020)",2MB + 4MB,,15,2400 ‑ 4100,4/8,6,x86,,451,Radeon 610M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Ryzen 3 5425U,Barcelo-U (Zen 3),"Cezanne (Zen 3, Ryzen 5000)",2MB + 8MB,,15,2700 ‑ 4100,4/8,7,x86,,710,Vega 6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Ryzen 3 5425C,Barcelo (Zen 3),"Cezanne (Zen 3, Ryzen 5000)",2MB + 8MB,,25,2700 ‑ 4100,4/8,7,x86,,589,Vega 6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Ryzen 3 5400U,Cezanne-U (Zen 3),"Cezanne (Zen 3, Ryzen 5000)",2MB + 8MB,,25,2600 ‑ 4000,4/8,7,x86,,1072,Vega 6,~27.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1170,3095,,,,,,,,, -AMD Ryzen 3 PRO 5475U,Barcelo-U PRO (Zen 3),"Cezanne (Zen 3, Ryzen 5000)",2MB + 8MB,,15,2700 ‑ 4100,4/8,7,x86,,633,Vega 6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Ryzen 3 PRO 5450U,Cezanne-U PRO (Zen 3),"Cezanne (Zen 3, Ryzen 5000)",2MB + 8MB,,15,2600 ‑ 4000,4/8,7,x86,,1072,Vega 6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Core i5-8265U,Whiskey Lake-U,Core i5,1MB + 6MB,,15,1600 ‑ 3900,4/8,14,x86,,1942,UHD Graphics 620,~27,6316,6082,19418,1.78,5.74,159,601.5,397,1285.5,1008,3500,9.78,552,11.02,402.35,3988,156,39.1,4.2,4.4,0.79,0.46,861,1565,4084,16245,11639,3678.5,14002,4514,13295,1017,3365,1041.5,3624.5,,,,95.6,32120,119.7,54.45,187,145.3 -Intel Core i5-1140G7,Tiger Lake-UP4,Tiger Lake,5MB + 8MB,,15,1800 ‑ 4200,4/8,10,x86,,1199,Iris Xe G7 80EUs,~26.9,7524,7771,19199,2.25,7.06,179,630,438,1126,1246,2611,8.32,434.9,10.99,410.7,4632,145.9,32.13,3.82,3.1,0.55,0.31,993,,4201,15167,,,,5937,15462,1355,3904,1353,3921,,,,160.1,57983,169,130.9,216, -AMD Ryzen 7 2800H,Raven Ridge (Zen),Raven Ridge (Ryzen 2000 APU),2MB + 4MB,,45,3300 ‑ 3800,4/8,14,x86,,1915,Vega 11,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Ryzen 5 3550H,Picasso-U (Zen+),Picasso (Ryzen 3000 APU),2MB + 4MB,,35,2100 ‑ 3700,4/8,12,x86,,1804,Vega 8,~25.3,7174,4592,19520.5,1.65,8.55,144,742,359,1621,886,3929.5,11.91,695,7.67,209.2,2929,146.8,44.3,4.04,4.7,0.67,0.47,659,1297,3547.5,17978,,3353,14437,3807,11926,902,3250,899,3281,,,,117.8,28811.5,122.1,42.8,162,124.3 -AMD Ryzen 7 2700U,Zen,Raven Ridge (Ryzen 2000 APU),2MB + 4MB,,15,2200 ‑ 3800,4/8,14,x86,,2165,Vega 10,~24.7,6072,4515,13729,1.65,7.53,143.5,644,356,1422,886,3603,11.8,698,8.55,269.1,,128,36.4,3.96,,,,713,,3592,17317,,3248.5,11433.5,3495,8582,,,813,2969,,,,217.4,26482,,36.9,142, -AMD Ryzen 7 PRO 2700U,Zen,Raven Ridge (Ryzen 2000 APU),2MB + 4MB,,15,2200 ‑ 3800,4/8,14,x86,,2165,Vega 10,~21.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,882,3183,,,,,,,,, -AMD Ryzen 3 5300U,Lucienne-U (Zen 2),"Lucienne (Zen 2, Ryzen 5000)",2MB + 4MB,,25,2600 ‑ 3800,4/8,7,x86,,1072,Vega 6,~29.5,7931,5118,22139,1.89,9.29,170,906,436,2067,1115,5341,7,366,,,2551,,,6.54,5.1,0.93,0.55,544,1069,3960,21971,,4096,16771,4560,16261,1062.5,4106.5,1070,4008,,,,,52372,156.69,176,187.4,147.3 -AMD Ryzen 3 2200G,Zen,Raven Ridge (Ryzen 2000 APU),2MB + 4MB,,65,3500 ‑ 3700,4/4,14,x86,,2168,Vega 8,~22.8,6636,4625,16684,1.68,6.66,145.55,577,363,1446,,,11.7,651,10.8,333,3229,184,39.7,4.29,3.1,0.48,0.3,826,,3948,14790,,,,4249,11896.5,959,3431,1086.5,4881.5,,,,92.7,34670,,,, -AMD Ryzen 5 3500U,Picasso-U (Zen+),Picasso (Ryzen 3000 APU),2MB + 4MB,,15,2100 ‑ 3700,4/8,12,x86,,1804,Vega 8,~23.2,5950.5,4557.5,17230.5,1.65,7.62,143,650,364,1477,,,12,697,12.88,368.2,2455,134.8,39.2,4.02,4.4,0.67,0.44,694,,3538,17024.5,11917,3442.5,13040,3893,11783,896,3118.5,898.5,3155.5,,,,128.8,27809,89.4,40.4,148, -AMD Ryzen 5 PRO 3500U,Zen+,Picasso (Ryzen 3000 APU),2MB + 4MB,,15,2100 ‑ 3700,4/8,12,x86,,1712,Vega 8,~25.9,,,,,,142,624,361.5,1338.5,,,,,,,,,,3.48,,,,795.5,,3474,16220.5,,,,3820,10419,,,863,2824,,,,,27437,89.7,41.3,142, -Intel Core i5-1130G7,Tiger Lake-UP4,Tiger Lake,5MB + 8MB,,15,1800 ‑ 4000,4/8,10,x86,,1199,Iris Xe G7 80EUs,~25.2,5569,7813,25385,2.18,7.64,179,616.5,448,1060.5,1151.5,2738.5,8.58,464.2,10.56,474.9,4785,145.5,30.2,3.04,2.6,0.64,0.33,1189.5,,4175,14726,,,,5724,18742,1307,4791,1321.5,4802,,,,,57829,174,179,219.5, -AMD Ryzen 5 3450U,Picasso-U (Zen+),Picasso (Ryzen 3000 APU),2MB + 4MB,,15,2100 ‑ 3500,4/8,12,x86,,1323,Vega 8,~23.6,,,,,,137.5,566.5,321.5,1168,875,2926.5,,,,,,,,3.03,,,,946,,3359,15878,,,,3486,10200,853,2630,839,2972,,,,,,115.4,,145.5, -AMD Ryzen 3 4300U,Renoir-U (Zen 2),Renoir (Ryzen 4000 APU),2MB + 4MB,,15,2700 ‑ 3700,4/4,7,x86,,1438,Vega 5,~30.4,6068,,,,,163.9,562.5,422,1571,1074,3571,,,,,2397,172.3,35,4.87,3.2,0.59,0.34,887.5,1413.5,4063.5,15824,11281,4042,13134,4517,13503,1036,3358,1046.5,3438.5,,,,102.5,33152,,51.2,194,152.3 -AMD Ryzen 5 3580U,Picasso-U (Zen+),Picasso (Ryzen 3000 APU),2MB + 4MB,,15,2100 ‑ 3700,4/8,12,x86,,1804,Vega 9,~19.5,5545,4525,18307,1.65,7.82,139,693,352,1549,,,12.04,694,7.17,274.7,2924,135.3,40.1,4.09,3.5,0.61,0.4,710,,3572,15209,,,,,,,,900,2990,,,,,28517,,,, -Intel Core i3-1125G4,Tiger Lake-UP3,Tiger Lake,5MB + 8MB,,28,2000 ‑ 3700,4/8,10,x86,,1200,UHD Graphics Xe G4 48EUs,~28.6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1198,3738,,,,,,,,, -Intel Core i3-1305U,Raptor Lake-U,Raptor Lake-U,3.5MB + 10MB,,15,1200 ‑ 4500,5/6,10,x86,,710,UHD Graphics 64EUs,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Processor U300,Raptor Lake-U,Raptor Lake-U,3.5MB + 8MB,,15,900 ‑ 4400,5/6,10,x86,,346,UHD Graphics Xe G4 48EUs,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Pentium 8505,Alder Lake-U,Alder Lake-M,3.5MB + 8MB,,15,900 ‑ 4400,5/6,10,x86,,710,UHD Graphics Xe G4 48EUs,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Core i3-1210U,Alder Lake-U,Alder Lake-M,5MB + 10MB,,9,700 ‑ 4400,6/8,10,x86,,710,UHD Graphics 64EUs,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Pentium 8500,Alder Lake-U,Alder Lake-M,3.5MB + 8MB,,9,700 ‑ 4400,5/6,10,x86,,710,UHD Graphics Xe G4 48EUs,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Core i7-8550U,Kaby Lake Refresh,Kaby Lake Refresh,1MB + 8MB,,15,1800 ‑ 4000,4/8,14,x86,,2307,UHD Graphics 620,~25.6,5845,6423,17321.5,1.89,6.11,163,553,388.5,1128,1021,2914,9.28,536,9.9,366.7,4374,147.9,33.15,3.88,4.3,0.73,0.43,913,,4337,15613,,3770,12327.5,4900,15117,1081,3141,,,,,,71.3,33496,121.8,,182, -Qualcomm Snapdragon 8cx Gen 2 5G,Cortex-A76 / A55 (Kryo 495),Snapdragon,+ 2MB,,7,3150,8/8,7,ARM,,1198,Adreno 680,~19.9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2355,7502,,,797,3115.5,,,,,32979,85.4,68.8,132, -MediaTek Dimensity 9200+,Cortex-X3 / A715 / A510,,,,,2000 ‑ 3350,8/8,4,ARM,,393,Immortalis-G715 MP11,~35.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7167,19785,,,1541,4936.5,1805.5,4658.5,,,36482,136.74,176,143,95 -MediaTek Dimensity 9200,Cortex-X3 / A715 / A510,,,,,1800 ‑ 3050,8/8,4,ARM,,393,Immortalis-G715 MP11,~22.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6247,13625,1668,4233,1384,4232,,,,,21648,67.65,60.2,82,66 -AMD Ryzen 5 2600H,Zen,Raven Ridge (Ryzen 2000 APU),2MB + 4MB,,45,3200 ‑ 3600,4/8,14,x86,,1870,Vega 8,~13.1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,819,2741,812,3226,,,,,,,,, -Intel Core i5-8260U,Coffee Lake,Coffee Lake,1MB + 6MB,,15,1600 ‑ 3900,4/8,14,x86,,1577,UHD Graphics 620,~27.3,,,,,,156.9,627,400,1494,629,3028,,,,,,,,1.8,,,,726,1402,4056,18874,,,,,,552,1464,639,1817,,,,,,148.27,,, -Intel Core i5-1030NG7,Ice Lake Y,Ice Lake,2MB + 6MB,,10,1100 ‑ 3500,4/8,10,x86,,1365,Iris Plus Graphics G7 (Ice Lake 64 EU),~21.1,3828,4250,9432,1.21,3.37,140,448,352.5,875.5,,,11.4,653,15.2,687,3878,77.4,16.9,2.95,3.1,0.48,0.3,1310,,3472,10924,,,,4996,12112,1020,2572,1088.5,2710,,,,132,42305,122.5,97.9,158.5, -Intel Core i3-N305,Alder Lake-N,Alder Lake-N,4MB + 6MB,,15,1800 ‑ 3800,8/8,10,x86,,354,UHD Graphics Xe 32EUs (Tiger Lake-H),,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Core i5-1030G7,Ice Lake-Y,Ice Lake,2MB + 6MB,,9,800 ‑ 3500,4/8,10,x86,,1597,Iris Plus Graphics G7 (Ice Lake 64 EU),,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Core i5-1030G4,Ice Lake-Y,Ice Lake,2MB + 6MB,,9,700 ‑ 3500,4/8,10,x86,,1597,Iris Plus Graphics G4 (Ice Lake 48 EU),,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Core i3-1115G4,Tiger Lake-UP3,Tiger Lake,2.5MB + 6MB,,28,3000 ‑ 4100,2/4,10,x86,,1200,UHD Graphics Xe G4 48EUs,~28.7,6331,8018,16265,,,190,480.5,504.5,1114,1312,3125,8.24,434.8,11.76,412.8,,141.6,26.2,3.74,2.8,0.41,0.23,1021.5,2408,4599.5,12919.5,,,,5601,9945,1328,2399,1311.5,2605,,,,145.8,58151,164.05,179.5,204.5,152.3 -Intel Core i3-1120G4,Tiger Lake-UP4,Tiger Lake,5MB + 8MB,,15,1500 ‑ 3500,4/8,10,x86,,1199,UHD Graphics Xe G4 48EUs,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Core i3-1005G1,Ice Lake-U,Ice Lake,1MB + 4MB,,15,1200 ‑ 3400,2/4,10,x86,,1661,UHD Graphics G1 (Ice Lake 32 EU),~23.3,5501,6573,14323,1.88,4.58,157,405,403,859,1055.5,2221,10.02,487.1,13.92,439.8,2624,135.2,25.22,3.12,2.4,0.38,0.22,1264,,4004,10896,,,,4817.5,9211,1129.5,2231.5,1159.5,2425.5,,,,191.4,46698,131.95,127.2,179.5, -Intel Core i3-10110U,Comet Lake-U,Comet Lake,1MB + 4MB,,15,2100 ‑ 4100,2/4,14,x86,,1566,UHD Graphics 620,~22.7,,6349,11204.5,1.87,3.59,162,321,401,753,1032.5,2142,9.43,538.5,15.77,533,2156,110.05,20.63,2.92,2.05,0.37,0.22,1279.5,,4153.5,10291.5,7706,3470,7335,4455,8289,1002,2034,987,2025.5,,,,95.3,29833,,47,164, -Intel Core i3-8109U,Coffee Lake-U,Coffee Lake,512KB + 4MB,,28,3000 ‑ 3600,2/4,14,x86,,2082,Iris Plus Graphics 655,~25.9,,,,,,138.65,352.5,351,772,906,2004,,,,,,,,2.85,,,,1328,,3752,9489,,,,4540,8974,,,888,1880,,,,,,90.07,,131.3, -Intel Core i5-8350U,Kaby Lake Refresh,Kaby Lake Refresh,1MB + 6MB,,15,1700 ‑ 3600,4/8,14,x86,,2307,UHD Graphics 620,~25.9,5925,5460.5,17931,1.69,5.95,150.5,569,,,,,10.94,637,9.7,330.45,2961,152.85,37.28,,4.05,0.69,0.41,705,,,,,3439,12270,4225,13605,,,,,,,,156.45,31171,94.7,98.65,183.5, -AMD Ryzen 3 1200,Summit Ridge (Zen),Ryzen 3,2MB + 8MB,,65,3100 ‑ 3400,4/4,14,x86,,2331,UHD Graphics 750,~19.6,5419,4178,13961,1.53,5.5,135,480,337,1192,834,3013,12.39,,12.5,390.1,2481,160,33.34,3.47,2.6,0.4,0.25,1002,,3391,11980,,,,3955,10851,,,834,2882,,,,,,,,151, -Intel Core i5-8250U,Kaby Lake Refresh,Kaby Lake Refresh,1MB + 6MB,,15,1600 ‑ 3400,4/8,14,x86,,2307,UHD Graphics 620,~23.1,6348,5533,17987,1.64,5.94,143,562,353,1171,873.5,3108,11.06,613,8.06,306.2,3991,137.5,31.96,4.34,3.5,0.68,0.41,899.5,,3706,15365.5,,3242,12742,4095,12751,927,3298,925,3427,,,,91,29871,,48.7,167.5, -AMD Ryzen 5 2500U,Zen,Raven Ridge (Ryzen 2000 APU),2MB + 4MB,,15,2000 ‑ 3600,4/8,14,x86,,2165,Vega 8,~23.1,4828,4410.5,15683.5,1.59,6.64,137,609,354.5,1298.5,,,12.29,697,10.23,313.5,2425.5,121,34.7,3.67,3.3,0.56,0.37,770.5,,3441,16251,10616,3383,11301,3703,9952,,,831,2515,,,,116.95,26534.5,,38.55,160, -Intel Core i3-N300,Alder Lake-N,Alder Lake-N,+ 6MB,,7,‑ 3800,8/8,10,x86,,351,UHD Graphics Xe 750 32EUs,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Ryzen 5 PRO 2500U,Zen,Raven Ridge (Ryzen 2000 APU),2MB + 4MB,,15,2000 ‑ 3600,4/8,14,x86,,2165,Vega 8,~23.2,5635,4349,14336,1.55,6.08,134,553,,,,,12.7,728.5,12.36,386.55,2699.5,97.7,33.91,3,3.4,0.6,0.39,1007,,4102,2794,11156,3326,12421.5,3492,9343,,,887,3135,,,,138.1,24308,,,, -AMD Ryzen Embedded V1605B,Zen,Raven Ridge (Ryzen 2000 APU),2MB + 4MB,,15,2000 ‑ 3600,4/8,14,x86,,2123,Vega 8,~23.8,,,,,,128,654,334,1235,841,3160,,,,,,,,3.64,,,,791,,3374,16708,,,,3800,12100,846,3264,819,3184,,,,,,92.6,,149, -Intel Core i3-8100H,Coffee Lake-H,Coffee Lake,1MB + 8MB,,45,3000,4/4,14,x86,,1991,UHD Graphics 630,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -MediaTek Dimensity 9000+,Cortex-X2 / A710 / A510,,+ 14MB,,,1800 ‑ 3200,8/8,4,ARM,,462,Mali-G710 MP10,~28.1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3705.5,8482,,,1391.5,4606.5,,,8591,,51846,134,116,152,128 -MediaTek Dimensity 9000,Cortex-X2 / A710 / A510,,+ 14MB,,,1800 ‑ 3050,8/8,4,ARM,,1059,Mali-G710 MP10,~31,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5713,15310,,,1248,4051,1608,4482,9111,,50429,148.12,119,121,153 -Apple A12Z Bionic,"Vortex, Tempest",Apple A-Series,8MB,,,‑ 2490,8/8,7,ARM,,1367,A12Z Bionic GPU,~39.3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1122,4709.5,,,,125,42425,126.1,144.5,141, -Apple A12X Bionic,"Vortex, Tempest",Apple A-Series,8MB,,,‑ 2490,8/8,7,ARM,,1872,A12X Bionic GPU,~38.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4993,17866,1114,4661,1120,4620,1313,4660,758432,114,45079.5,,131.9,177, -Apple A14 Bionic,Firestorm / Icestorm,Apple A-Series,12MB + 16MB,,,1800 ‑ 3100,6/6,5,ARM,,1186,A14 Bionic GPU,~42.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1588.5,4093.5,,,44785,85.85,58528,159.95,194.5,193.5,147 -Qualcomm Snapdragon 8+ Gen 1,Cortex-X2 / A710 / A510 (Kryo) Waipio,Snapdragon,+ 6MB,,,1800 ‑ 3200,8/8,4,ARM v9,,574,Adreno 730,~38.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7202.5,17569.5,,,1321,4162,1741,4584,,190.4,39564,111.45,103,156.5,101 -Google Tensor G3,Zuma - Cortex X3 / A715 / A510,,+ 4MB,,,1700 ‑ 2910,9/9,4,ARM,,77,Mali-G715 MP7,~37.6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6074,14268,,,1267,3509.5,1711,4381.5,,197,48641,104.71,147,122,98.5 -Qualcomm Snapdragon 8 Gen 1,Cortex-X2 / A710 / A510 (Kryo) Waipio,Snapdragon,+ 6MB,,,1800 ‑ 2995,8/8,4,ARM v9,,750,Adreno 730,~36.1,,,,,,,,,,,,,,,,,,,,,,,,,,,8654,,,6668,15021,,,1236,3581,1610,3860,,302.5,45945,108.4,109.5,151,92.5 -Microsoft SQ1,Cortex-A76 / A55 (Kryo 495),Snapdragon,+ 2MB,,,3000,8/8,7,ARM,,1535,Adreno 685,~10.2,,537,4276,,,,,,,,,21.2,1095,14.2,429.3,,,,,,,,,,,,,,,830,2597,728,2785,739,2875,,,,,31099,76.7,61.8,116, -Qualcomm Snapdragon 7+ Gen 2,Cortex-X2 / A710 / A510,Snapdragon,,,,1800 ‑ 2910,8/8,4,ARM,,281,Adreno 725,~32.1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6584,16748,,,1224.5,3959,1687,4378,,,37823,126.39,108,134,107 -Intel Core i3-1110G4,Tiger Lake-UP4,Tiger Lake,2.5MB + 6MB,,15,2500 ‑ 3900,2/4,10,x86,,1199,UHD Graphics Xe G4 48EUs,~19.6,5008,6972,13139,2.02,4.31,160.4,382,422,732,877,1868,9.39,474.59,12.44,519.97,2728,115.6,21.4,2.47,2.4,0.36,0.21,1560,,3935,8714,,,,5397,10233,1212,2478,772,1894,,,,,,,,188.4, -Qualcomm Snapdragon 8cx,Cortex-A76 / A55 (Kryo 495),Snapdragon,+ 2MB,,7,2840,8/8,7,ARM,,1835,Adreno 680,~12.6,,591,4187,,,,,,,,,10.9,564,14.6,442.1,,,,,,,,,,,,,,,3313,11047,,,700,2760,,,,,29364,73.5,59.3,116, -Qualcomm Snapdragon 888 Plus 5G,Cortex-X1 / A78 / A55 (Kryo 680),Snapdragon,+ 3MB,,5,1800 ‑ 3000,8/8,5,ARM,,900,Adreno 660,~28.1,,,,,,,,,,,,,,,,,,,,,,,,,,,10821,,,4973,13552.5,1164,3699,1157,3628.5,,,4771,342.5,37604,96.2,80.6,147,104 -Qualcomm Snapdragon 888 5G,Cortex-X1 / A78 / A55 (Kryo 680),Snapdragon,+ 3MB,,5,1800 ‑ 2840,8/8,5,ARM,,1108,Adreno 660,~28.4,,,,,,,,,,,,,,,,,,,,,,,,,,,11578,,,5087,14326,,,1129,3598,1480,3595,,,35487.5,106.1,85.75,148, -Qualcomm Snapdragon 888 4G,Cortex-X1 / A78 / A55 (Kryo 680),Snapdragon,+ 3MB,,5,1800 ‑ 2840,8/8,5,ARM,,1108,Adreno 660,~27.1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5083,13553,,,1107,3334,,,,,22851,,,108, -Samsung Exynos 2200,Exynos X2 / Cortex-A710 / A510,Exynos,,,,1820 ‑ 2800,8/8,4,ARM,,696,Xclipse 920,~37,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5788,15310,,,1145,3560,,,,281.5,38992,96.8,108,149, -Apple A13 Bionic,Lightning and Thunder,Apple A-Series,12MB,,,‑ 2660,6/6,7,ARM,,1552,A13 Bionic GPU,~34.2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1343,3463,1332,3378.5,,,683897,,48991,132.9,157,183, -Intel Processor N200,Alder Lake-N,Alder Lake-N,+ 6MB,,6,1000 ‑ 3700,4/4,10,x86,,351,UHD Graphics Xe 750 32EUs,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Core i3-8145U,Whiskey Lake-U,Core i3,1MB + 4MB,,15,2100 ‑ 3900,2/4,14,x86,,1942,UHD Graphics 620,~18.9,5158,5939,12432,1.77,4.01,148.5,351.5,296,657,,,10.52,638,13.1,463.9,1889,117.6,22.6,2.64,2.2,0.39,0.23,,,,,7459,3360,7420,4118,7859,995,2096,,,,,,104.85,28828.5,,,, -AMD Ryzen 3 3350U,Zen+,Picasso (Ryzen 3000 APU),2MB + 4MB,,15,2100 ‑ 3500,4/4,12,x86,,1804,Vega 6,~20.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,864,2455,,,,,,,,, -AMD Ryzen 3 3300U,Zen+,Picasso (Ryzen 3000 APU),2MB + 4MB,,15,2100 ‑ 3500,4/4,12,x86,,1804,Vega 6,~21.4,4332,4280,12357,,,134,471,337,921,,,12.82,709,11.94,404.6,2398,132.1,26.2,2.81,2.7,0.43,0.28,1212,,3340,12118,9508,3469,10170,3861,10787,843,2722,824,2578,,,,136.9,27764,,39.8,153.5, -AMD Ryzen 3 PRO 3300U,Zen+,Picasso (Ryzen 3000 APU),2MB + 4MB,,15,2100 ‑ 3500,4/4,12,x86,,1712,Vega 6,~20.9,,,,1.43,5.52,126,481,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Ryzen 3 2300U,Zen,Raven Ridge (Ryzen 2000 APU),2MB + 4MB,,15,2000 ‑ 3400,4/4,14,x86,,2168,Vega 6,~14.9,,,,0.79,4.46,79,422.5,,,,,,,,,,,,,,,,,,,,,,,,,,,783,2360,,,,,,,,, -AMD Ryzen 3 PRO 2300U,Zen,Raven Ridge (Ryzen 2000 APU),2MB + 4MB,,15,2000 ‑ 3400,4/4,14,x86,,2168,Vega 6,~19.6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3387,8655,,,727,2156,,,,,,,,, -Intel Processor N97,Alder Lake-N,Alder Lake-N,+ 6MB,,12,‑ 3600,4/4,10,x86,,351,UHD Graphics 24EUs (Alder Lake-N),,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Processor N95,Alder Lake-N,Alder Lake-N,+ 6MB,,15,‑ 3400,4/4,10,x86,,351,UHD Graphics Xe 16EUs (Tiger Lake-H),~21.9,5952,4783,13854,1.83,5.55,151,445,350,1030,914,2769,19.42,824.72,17.04,537.32,2319.5,162.15,32.4,3.18,2.7,0.5,0.24,1113,2186.5,3803,12177,,,,4450,10228,993,2531,999,2566,1227,2961,,,,,,178.3,126.75 -Intel Processor N100,Alder Lake-N,Alder Lake-N,+ 6MB,,6,1000 ‑ 3400,4/4,10,x86,,351,UHD Graphics 24EUs (Alder Lake-N),~22.9,6438,5024,15271.5,1.85,5.59,153.9,477,357,1138,931,2983,19.31,818.56,15.85,489.22,2401.5,172.78,34.28,3.47,2.9,0.54,0.26,1038,2028,3908,13255,,,,4492.5,11101,1000.5,2807.5,1006,2865.5,1232,3236,,,,161.56,,181.4,136.2 -Intel Core i3-8130U,Kaby Lake Refresh,Kaby Lake Refresh,1MB + 4MB,,15,2200 ‑ 3400,2/4,14,x86,,2129,UHD Graphics 620,~20,4720,5447.5,12157,1.63,3.77,139,338,348,774,,,11.09,661,14.3,485.5,2168,116.6,22.2,,2,0.36,0.21,,,,,7131,3288,7168.5,4000.5,7890.5,,,,,,,,187,27142.5,,43.6,153, -Intel Core i3-1000NG4,Ice Lake Y,Ice Lake,1MB + 4MB,,9,1100 ‑ 3200,2/4,10,x86,,1365,Iris Plus Graphics G4 (Ice Lake 48 EU),~20,3151,5771,9257,1.49,2.72,141,333,348,587,,,10.64,550,16.2,691,2468,,,2.23,,,,1814,,3438,7921,,,,4748,9090,1074,2035,1096,2028,,,,,39043,118.2,98.8,162, -Intel Core i3-1000G4,Ice Lake-Y,Ice Lake,1MB + 4MB,,9,1100 ‑ 3200,2/4,10,x86,,1597,Iris Plus Graphics G4 (Ice Lake 48 EU),,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Core i3-1000G1,Ice Lake-Y,Ice Lake,1MB + 4MB,,9,1100 ‑ 3200,2/4,10,x86,,1597,UHD Graphics G1 (Ice Lake 32 EU),,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Core i3-8121U,Cannon-Lake,Core i3,512KB + 4MB,,15,2200 ‑ 3100,2/4,10,x86,,2039,UHD Graphics 750,~20.5,4314,,,,,133,317.6,,,,,,,,,,,,,,,,,,,,,,,4195,7985,,,,,,,,,,,,, -HiSilicon Kirin 9000,Cortex-A77/-A55,,,,,2050 ‑ 3130,8/8,5,ARM,,1149,Mali-G78 MP24,~21.7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,26597,79.6,84.6,147, -HiSilicon Kirin 9000E,Cortex-A77/-A55,,,,,2050 ‑ 3130,8/8,5,ARM,,1149,UHD Graphics 750,~17.7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,24616,72.8,72.1,97, -Intel Core i7-10510Y,Comet Lake-Y,Comet Lake,512KB + 8MB,,7,1200 ‑ 4500,4/8,14,x86,,1566,UHD Graphics 617,~19.3,,,,,,,,250,845,,,,,,,,,,,,,,,,,,,,,,,,,1005,2728,,,,,,,,, -Intel Core i5-10310Y,Amber Lake-Y,Amber Lake,512KB + 6MB,,7,1100 ‑ 4100,4/8,14,x86,,1566,UHD Graphics 615,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Core i5-10210Y,Amber Lake-Y,Amber Lake,512KB + 6MB,,7,1000 ‑ 4000,4/8,14,x86,,1566,UHD Graphics 615,~18,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,738,2735,,,,,,,,, -Intel Core i5-L16G7,Lakefield,Lakefield,,,7,1400 ‑ 3000,5/5,10,x86,,1296,UHD Graphics G7 (Lakefield GT2 64 EU),~18.4,,4079,9003,1.42,3.18,89.5,255,282.5,647.5,710,1810,11.7,622,28.6,879,,,,1.46,,,,2026.5,,3211,7586.5,,,,,,,,826.5,1633.5,,,,,32455,85.8,76.1,124.5, -AMD Athlon Gold 7220U,Mendocino (Zen 2),"Mendocino (Zen 2, Ryzen 7020)",1MB + 4MB,,15,2400 ‑ 3700,2/4,6,x86,,451,Radeon 610M,~21.6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,932,2159,,,,,,,,, -AMD Athlon Gold 7220C,Mendocino (Zen 2),"Mendocino (Zen 2, Ryzen 7020)",1MB + 4MB,,15,2400 ‑ 3700,2/4,6,x86,,206,Radeon 610M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Samsung Exynos 2100 5G,Exynos X1 / Cortex-A78 / A55,Exynos,,,,2200 ‑ 2900,8/8,5,ARM,,1066,UHD Graphics 750,~32.7,,,,,,,,,,,,,,,,,,,,,,,,,,,13062,,,4970,14476,,,1100,3364,,,,313.2,27275,66.3,84.1,114, -Qualcomm Snapdragon 870 5G,Cortex-A77 / A55 (Kryo 585),Snapdragon,1.8MB + 7MB,,5,2420 ‑ 3200,8/8,7,ARM,,1472,Adreno 650,~28.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4411,11658,,,992.5,3188,1299,3357,5196,312.9,33694,92.45,70.42,127,83 -Qualcomm Snapdragon 865+ (Plus),Cortex-A77 / A55 (Kryo 585),Snapdragon,1.8MB + 4MB,,5,2420 ‑ 3100,8/8,7,ARM,,1472,Adreno 650,~23,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4493,13066,,,980,3250.5,,,,,26700.5,72.15,71.1,119.5, -Qualcomm Snapdragon 865,Cortex-A77 / A55 (Kryo 585),Snapdragon,1.8MB + 4MB,,5,2420 ‑ 2840,8/8,7,ARM,,1472,Adreno 650,~26,,,,,,,,,,,,,,,,,,,,,,,,,,,10921,,,4278,13356,932,3450,910,3309,,,,312.5,23734,66.45,67.7,104, -MediaTek Dimensity 1300,Cortex-A78 / A55,,,,,2000 ‑ 3000,8/8,6,ARM,,646,Mali-G77 MP9,~14.5,,,,,,,,,,,,,,,,,,,,,,,,,,,9050,,,,,,,415,2700,,,7485,,33879,66.96,59.7,65, -MediaTek Dimensity 8100,Cortex-A78 / A55,,,,,2000 ‑ 2850,8/8,6,ARM,,654,Mali-G610 MP6,~20.2,,,,,,,,,,,,,,,,,,,,,,,,,,,11358,,,4422.5,15985.5,925,3743,907,3720,,,8158,,33238,81.17,72.4,106,86.5 -MediaTek Dimensity 8050,Cortex-A78 / A55,,,,,2000 ‑ 3000,8/8,6,ARM,,215,Mali-G77 MP9,~20.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4348,11466,,,867.5,2852,1036,3173,6101,,31904,88,76.2,89,76 -MediaTek Dimensity 1200,Cortex-A78 / A55,,,,,2000 ‑ 3000,8/8,6,ARM,,1059,Mali-G77 MP9,~16.8,,,,,,,,,,,,,,,,,,,,,,,,,,,11256,,,4294,13528,850,3023,833,2689.5,,,5166,,28059.5,51.45,52.15,69.5, -MediaTek Kompanio 1300T,Cortex-A78 / A55,,,,,2000 ‑ 2600,8/8,6,ARM,,646,Mali-G77 MP9,~17.2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,773,2669,,,,,28601,64.89,48.9,75,63 -Intel Core i7-8500Y,Amber Lake-Y,Amber Lake,512KB + 4MB,,5,1500 ‑ 4200,2/4,14,x86,,1933,UHD Graphics 615,~17.6,3056,5027,8706,1.45,2.49,130.5,246.5,312,587.5,,,9.34,657,15.51,673,2483,83.3,14.07,2.12,2.2,0.36,0.22,1965.5,,4367.5,10709,,3245,5614,4397.5,7224,858,1504,,,,,,,24631.5,,,, -Intel Core i3-10110Y,Amber Lake-Y,Amber Lake,512KB + 4MB,,7,1000 ‑ 4000,2/4,14,x86,,1566,UHD Graphics 615,~22.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,996,1633,,,,,,,,, -Intel Core i5-8210Y,Amber Lake-Y,Amber Lake,512KB + 4MB,,7,1600 ‑ 3600,2/4,14,x86,,1872,UHD Graphics 617,~21.5,3544,,,,,129.5,269.5,312,601,,,,,,,,,,2.26,,,,1680,,3405,7936,,,,4162,7474,660,1433,,,,,,,33003,96.3,82.6,, -Intel Core i5-8200Y,Amber Lake-Y,Amber Lake,512KB + 4MB,,5,1300 ‑ 3900,2/4,14,x86,,1933,UHD Graphics 615,~24.2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4600,7913,,,900,1934,,,,,,,,, -Intel Core i3-10100Y,Amber Lake-Y,Amber Lake,512KB + 4MB,,5,1300 ‑ 3900,2/4,14,x86,,1933,UHD Graphics 615,~18.5,,5292,9659,1.39,2.53,122,220,303,536,788,1375,10.7,667,15.98,632,1683,,,2.01,1.8,0.34,0.2,1825,,3535,8262,,,,4359,7643,,,986,1889,,,,,34086,98.9,97.9,148, -AMD Athlon Silver 7120U,Mendocino (Zen 2),"Mendocino (Zen 2, Ryzen 7020)",1MB + 2MB,,15,2400 ‑ 3500,2/2,6,x86,,451,Radeon 610M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Athlon Silver 7120C,Mendocino (Zen 2),"Mendocino (Zen 2, Ryzen 7020)",1MB + 2MB,,15,2400 ‑ 3500,2/2,6,x86,,451,Radeon 610M,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Core i3-L13G4,Lakefield,Lakefield,1.5MB + 4MB,,10,800 ‑ 2800,5/5,10,x86,,1283,UHD Graphics G4 (Lakefield GT1 48 EU),~18.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,816,1349,,,,,,,,, -AMD Ryzen 3 3250U,Zen,Picasso (Ryzen 3000 APU),1MB + 4MB,,15,2600 ‑ 3500,2/4,14,x86,,1439,Vega 3,~20.6,3966,4088,10251,1.46,3.95,121.6,353,300,783,776,2010,12.72,668,14.5,457.3,1710,101,21.1,2.16,1.9,0.32,0.23,1399,2541,3291,9063,,,,3829,7396,868,1838,824,1662,,,,313.8,35541,100.6,97.2,140.15,105.2 -AMD Ryzen Embedded R1606G,Zen,Raven Ridge (Ryzen 2000 APU),1MB + 4MB,,15,2600 ‑ 3500,2/4,14,x86,,1735,Vega 3,~25.8,,,,,,139,317,350,710,888,1842,,,,,,,,2,,,,1456,,3528,8969,,,,,,,,877,1903,,,,,,,,148, -AMD Ryzen 3 3200U,Picasso-U (Zen),Picasso (Ryzen 3000 APU),1MB + 4MB,,15,2600 ‑ 3500,2/4,14,x86,,1804,Vega 3,~19.4,3755,4258,9284,,,129,334,301,690,765,1786,12.52,730,14.03,483.5,1613,97.8,19.5,1.96,2.2,0.36,0.23,1485,,3372,9081.5,7816,3282,6922,3562,7143,826.5,1649,796.5,1651.5,,,,130.3,23991,,36.1,139, -AMD Ryzen 3 2200U,Zen,Raven Ridge (Ryzen 2000 APU),1MB + 4MB,,15,2500 ‑ 3400,2/4,14,x86,,2168,Vega 3,~17.3,3386.5,3977.5,7775.5,1.15,2.99,117,312,,,,,12.98,756.5,14.27,459.3,1545,92,17.8,,2.1,0.32,0.21,,,,,7422,2925,6826.5,3583,6937,,,667,1267,,,,115.9,22930,,,, -AMD Ryzen 3 PRO 2200U,Zen,Raven Ridge (Ryzen 2000 APU),1MB + 4MB,,15,2500 ‑ 3400,2/4,14,x86,,2168,Vega 3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Ryzen 3 5125C,Barcelo (Zen 3),"Cezanne (Zen 3, Ryzen 5000)",1MB + 8MB,,15,3000,2/4,7,x86,,589,Vega 3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Athlon Gold 3150U,Dali (Zen),Picasso (Ryzen 3000 APU),1MB + 4MB,,15,2400 ‑ 3300,2/4,14,x86,,1438,Vega 3,~16.1,4189,3639,7566,1.36,3.99,117,352,303,795,,,13.86,727,40.13,1280,1631,106.6,22.47,2.03,2.2,0.35,0.22,1348,,3065,8752,,,,,,,,751,1847,,,,,,,,, -AMD Ryzen Embedded R1505G,Zen,Raven Ridge (Ryzen 2000 APU),2MB + 4MB,,10,2400 ‑ 3300,2/4,14,x86,,1703,Vega 3,~18.2,,,,,,97.3,264,243,596,,,,,,,,,,0.65,,,,1725,,2505,6931,,,,2667,5478,616,1370,612,1353,,,,,,,,106, -Intel Pentium Gold 6405U,Comet Lake-U,Comet Lake,1MB + 2MB,,15,2400,2/4,14,x86,,1506,UHD Graphics 610,~13.7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,595,1320,,,,,,,,, -Intel Celeron 7305,Alder Lake-U,Alder Lake-M,3.5MB + 8MB,,15,900 ‑ 1100,5/5,10,x86,,715,UHD Graphics Xe G4 48EUs,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Celeron 6305,Tiger Lake-U,Tiger Lake,2.5MB + 4MB,,15,1800,2/2,10,x86,,1200,UHD Graphics Xe G4 48EUs,~15.2,,3465,6611,0.99,1.93,83.95,161.05,217,416,566.5,1071.5,18.83,904.72,39.12,1231.05,1210,61.9,11.25,1.7,0.92,0.13,0.07,2834,,2237.5,4262.5,,,,2824.5,4949.5,628.5,1183.5,638,1198,,,,326.7,21416,72.43,72.43,100.7, -Intel Celeron 7300,Alder Lake-U,Alder Lake-M,3.5MB + 8MB,,9,700 ‑ 1000,5/5,10,x86,,715,UHD Graphics Xe G4 48EUs,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Athlon PRO 300U,Zen+,Raven Ridge (Ryzen 2000 APU),1MB + 4MB,,15,2400 ‑ 3300,2/4,12,x86,,1711,Vega 3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Athlon 300U,Zen,Raven Ridge (Ryzen 2000 APU),1MB + 4MB,,15,2400 ‑ 3300,2/4,12,x86,,1804,Vega 3,~16.6,,3968,8724,,,119,308,308,637,,,14.09,807,15.44,510,1623,88.6,18.5,1.77,1.9,0.29,0.21,,,,,6868,2919,6134,3287,6053,765,1552,867,1840,,,,133.6,22253,,33.51,143, -AMD Athlon Silver 3050U,Dali (Zen),Picasso (Ryzen 3000 APU),1MB + 4MB,,15,2300 ‑ 3200,2/2,14,x86,,1438,Vega 2,~17,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,743,1429,,,,,,,,, -Intel Celeron 6205,Tiger Lake U,Tiger Lake,2.5MB + 4MB,,15,,2/2,10,x86,,1200,UHD Graphics Xe G4 48EUs,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Apple A12 Bionic,,Apple A-Series,8MB,,,‑ 2490,6/6,7,ARM,,1920,A12 Bionic GPU,~28,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4774,11480,1118,2910,1117.5,2814.5,,,486197,,42333.5,109.75,123.5,159.5, -Qualcomm Snapdragon 7 Gen 1,Cortex-A710 / A510,Snapdragon,,,,1800 ‑ 2400,8/8,4,ARM,,574,Adreno 644,~17.9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3646,11669,802,2970,786,2912.5,1057.5,3017,6056,,30021,86.23,67.2,110,79 -Qualcomm Snapdragon 780G 5G,Kryo 670 (Cortex-A78/A55),Snapdragon,,,,1900 ‑ 2400,8/8,5,ARM,,995,Adreno 642,~21.2,,,,,,,,,,,,,,,,,,,,,,,,,,,9815,,,3674,11965,,,809,2998,,,,,26943,75.8,70.8,106, -Google Tensor G2,Cortex X1 / A76 / A55,,+ 4MB,,,1800 ‑ 2850,8/8,5,ARM,,435,Mali-G710 MP7,~29.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4782,12839.5,1069,3276.5,1049,3217,1450,3600,,300.65,44948,104.66,125,98,98 -Google Tensor,Exynos X1 / Cortex-A76 / A55,,+ 4MB,,,1800 ‑ 2800,8/8,5,ARM,,774,Mali-G78 MP20,~25.7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4815,11589,,,1041,2940,,,,,43376,90.1,104,105,72 -HiSilicon Kirin 990 5G,Cortex-A76/-A55,,,,,‑ 2860,8/8,7,ARM,,1561,Mali-G76 MP16,~24.8,,,,,,,,,,,,,,,,,,,,,,,,,,,11668.5,,,3925,12549,769,3083,772.5,3076.5,,,,345.4,22343,62.7,67.45,98, -MediaTek Dimensity 8200-Ultra,Cortex-A78 / A55,,+ 4MB,,,2000 ‑ 3100,8/8,4,ARM,,206,Mali-G610 MP6,~24.9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4858,16050,998,3889,1018,3833,1252,4034,,,42222,96.18,112,123,107 -HiSilicon Kirin 990,Cortex-A76/-A55,,,,,‑ 2860,8/8,7,ARM,,1561,Mali-G76 MP16,~19.6,,,,,,,,,,,,,,,,,,,,,,,,,,,11581,,,3881.5,12082.5,783,3059,770,2977.5,,,261357,,21726.5,60.5,69,108, -Samsung Exynos 990,Exynos M5 / Cortex A-76 / Cortex-A55,Exynos,,,,2000 ‑ 2730,8/8,7,ARM,,1757,UHD Graphics 750,~29,,,,,,,,,,,,,,,,,,,,,,,,,,,10510,,,4878,12559,,,940,2787,,,,478.8,19122,53.9,63.25,97, -MediaTek Dimensity 8020,Cortex-A78 / A55,,,,,2000 ‑ 2600,8/8,6,ARM,,654,Mali-G77 MP9,~19.3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3906,12596,836,3280,835,3310,1120,3617,,,28282,67.26,69.9,87,78 -MediaTek Dimensity 1100,Cortex-A78 / A55,,,,,2000 ‑ 2600,8/8,6,ARM,,1059,Mali-G77 MP9,~16.1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,655,2500,,,,,,,,, -Qualcomm Snapdragon 860,Cortex-A76 / A55 (Kryo 485),Snapdragon,1.8MB + 5MB,,5,‑ 2960,8/8,7,ARM,,1625,Adreno 640,~17.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3398,10570,,,756,2712.5,1037,3038,3913,,26179,67.5,60.15,93, -Qualcomm Snapdragon 7c Gen 2,Cortex-A76 / A55 (Kryo 468),Snapdragon,,,7,2550,8/8,8,ARM,,943,Adreno 618,~12.3,755,511,3053,0.32,1.88,,,116.8,347,307,992,22.82,1132,,,1226,,,0.61,,,,3620,,2046,7703,,,,1580,3667,,,1046.5,3483.5,,,,,20737,62.9,,95, -Qualcomm Snapdragon 855+ / 855 Plus,Cortex-A76 / A55 (Kryo 485),Snapdragon,1.8MB + 5MB,,5,‑ 2960,8/8,7,ARM,,1625,Adreno 640,~18.7,,,,,,,,,,,,,,,,,,,,,,,,,,,9887,,,3654,10546.5,787.5,2846.5,751,2658.5,,,249792,,24571,65.3,64.45,98, -Qualcomm Snapdragon 7c,Cortex-A76 / A55 (Kryo 468),Snapdragon,,,7,2400,8/8,8,ARM,,943,Adreno 618,~13.9,,1381,3518,0.75,2.4,,,114,323,321,830,29.56,1436,36.68,906,1000,47.9,8.4,0.63,,,,3895,,2059,7459,,,,1579,3470,305,845,620,1725,,,,384.75,22523,62.1,44.57,83.5, -Qualcomm Snapdragon 855,Cortex-A76 / A55 (Kryo 485),Snapdragon,1.8MB + 5MB,,5,2840,8/8,7,ARM,,1836,Adreno 640,~25.2,,,,,,,,,,,,,,,,,,,,,,,,,,,8574.5,2891,9555,3491,10987.5,742,2589.5,744,2666,1008,2757,246456,384.2,24044,59.15,64.2,106.5, -Apple A11 Bionic,Monsoon / Mistral,Apple A-Series,8MB,,,‑ 2390,6/6,10,ARM,,2285,A11 Bionic GPU,~30.3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4263,10380,935,2510,927,2339,,,453409,149,35209,96.7,91.5,130, -Qualcomm QCM6490,Kryo 670 (Cortex-A78/A55),Snapdragon,,,,1960 ‑ 2710,8/8,6,ARM,,855,Adreno 643,~25.6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3822,11172,,,870,2944,1129,2999,,,38966,115.42,93.9,151,116 -Qualcomm Snapdragon 778G+ 5G,Kryo 670 (Cortex-A78/A55),Snapdragon,,,,1900 ‑ 2500,8/8,6,ARM,,562,Adreno 642L,~20.3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3760,11342,,,824,2929,,,6514,,32109,90.28,63.69,116,93 -Qualcomm Snapdragon 778G 5G,Kryo 670 (Cortex-A78/A55),Snapdragon,,,,1800 ‑ 2400,8/8,6,ARM,,940,Adreno 642L,~17.9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3500,11003,,,787,2889,,,4438.5,,25445,74.4,55,105.5,73.5 -Qualcomm Snapdragon 778G 4G,Kryo 670 (Cortex-A78/A55),Snapdragon,,,,1800 ‑ 2400,8/8,6,ARM,,940,Adreno 642L,~18.7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3557.5,11874,,,788,3019.5,1008,2418,6336,,25361,74.88,56.6,109,79 -Samsung Exynos 1380,ARM Cortex-A55 / A78,Exynos,,,,2000 ‑ 2400,8/8,5,ARM,,281,Mali-G68 MP5,~33,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3555.5,11160,,,778,2728,1017,2878.5,591842,187,34739,102.6,75.3,124.5,107 -MediaTek Dimensity 1000+,Cortex-A77 / A55,,,,,2000 ‑ 2600,8/8,7,ARM,,1306,Mali-G77 MP9,~19,,,,,,,,,,,,,,,,,,,,,,,,,,,10598,,,3688,11987,,,796,2762,,,,,21933,48.35,50.9,73, -Apple A10X Fusion,Cyclone 4?,Apple A-Series,,,,2390,6/3,10,ARM,,2382,A10X Fusion GPU,~21.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3928.5,9325.5,,,850,2324,,,82837.5,,30760.5,,,, -MediaTek Dimensity 7050,Cortex-A78 / A55,,,,,2000 ‑ 2600,8/8,6,ARM,,228,Mali-G68 MP4,~16.9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3737,9132.5,762,1960,833,2318,957,2407,5412,,31801,82.97,77.75,90,72 -MediaTek Dimensity 1080,Cortex-A78 / A55,,,,,2000 ‑ 2600,8/8,6,ARM,,856,Mali-G68 MP4,~16.6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3754.5,8894,786,2342,765,2041,954,2229,5411,,31662,71.87,62.9,102,74 -MediaTek Dimensity 7030,Cortex-A78 / A55,,,,,2000 ‑ 2500,8/8,6,ARM,,113,Mali-G610 MP3,~20.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3505,8625,,,789,2197,893,2214,5405,,34140,102.38,91.6,121,106 -MediaTek Dimensity 920,Cortex-A78 / A55,,,,,2000 ‑ 2500,8/8,6,ARM,,856,Mali-G68 MP4,~14.2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3440,8397,,,775.5,2097.5,,,5110,,18244,48.56,46.05,58,46 -MediaTek Dimensity 930,Cortex-A78 / A55,,,,,2000 ‑ 2200,8/8,6,ARM,,571,IMG BXM-8-256,~14.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3272,8224,705,1919,669.5,1848,,,4563,,23554,70.9,51.27,101.5,77.5 -MediaTek Dimensity 7020,Cortex-A78 / A55,,,,,2000 ‑ 2500,8/8,6,ARM,,113,IMG BXM-8-256,~17.9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3264,8148,703,1908,697,1903,916,2315,,,28919,85.94,76.5,120,97 -MediaTek MT8188J,Cortex-A78 / A55,,,,,2000 ‑ 2200,8/8,12,ARM,,289,Mali-G57 MP2,~17,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3315,7741,711,2065,702,2070,949,2363,,,24222,74.31,65.6,122,75 -MediaTek Dimensity 900,Cortex-A78 / A55,,,,,2000 ‑ 2400,8/8,6,ARM,,1306,Mali-G68 MP4,~18.3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3502.5,9026,,,734,2161,,,219220,,25580,53.76,49.6,68.5,54 -MediaTek Dimensity 820,Cortex-A76 / A55,,,,,2000 ‑ 2600,8/8,7,ARM,,1306,Mali-G57 MP5,~16,,,,,,,,,,,,,,,,,,,,,,,,,,,7836,,,3022,10658,,,652,2678,,,,,18974,44.97,47.6,65, -Intel Core m3-7Y32,Kaby Lake,Kaby Lake,512KB + 4MB,,4.5,1000 ‑ 3000,2/4,14,x86,,2429,HD Graphics 615,~18.4,,,,,,120,265,,,637,1293,,,,,,,,,,,,,,,,,,,3774,6736,,,773,1576,,,,,,,,, -Intel Core m3-8100Y,Amber Lake-Y,Amber Lake,512KB + 4MB,,5,1100 ‑ 3400,2/4,14,x86,,1933,UHD Graphics 615,~18.1,,3850,6055,,,96.6,179.5,243,413,,,11.43,818,18.57,906,1646,58.3,11.2,1.69,1.7,0.29,0.17,2206,,2982.5,6245.5,6113,2702,5446,4159,6934,765,1279,845.5,1396.5,,,,211,20267,,56.75,135.5, -Intel Pentium Gold 6500Y,Amber Lake-Y,Amber Lake,512KB + 4MB,,5,1100 ‑ 3400,2/4,14,x86,,1019,UHD Graphics 615,~21.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3647,5963,,,,,,,,,,,,, -Intel Processor N50,Alder Lake-N,Alder Lake-N,+ 6MB,,6,1000 ‑ 3400,2/2,10,x86,,351,UHD Graphics Xe 16EUs (Tiger Lake-H),~21.1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,891,1339,1185,2024,,,,,,, -Intel Pentium Gold 5405U,Whiskey Lake-U,Pentium,512KB + 2MB,,15,2300,2/4,14,x86,,1787,UHD Graphics 610,~15.1,3224,3560.5,7885.5,1.06,2.62,92.55,233,206,524,539,1390,16.96,878.75,22.53,711.01,1904,82.15,15.6,1.37,1.35,0.24,0.14,2179.5,,2528,6501.5,5080,,,2810,5418.5,588,1323.5,585,1324,,,,175,16762,,18.15,102.6, -Intel Pentium Gold 4415U,Kaby Lake,Kaby Lake,512KB + 2MB,,15,2300,2/4,14,x86,,2480,HD Graphics 610,~18.2,3249,3587,8169,1.01,2.71,94,239.5,181.3,356,529,1366,16.66,846,20.86,659,2003,85.7,16,1.56,1.4,0.25,0.14,2188,3786,2575,6602,5719,2510,5270,2943,5630,,,599,1374,,,,119.1,21322,,,110.2,82.2 -AMD A10-9620P,Bristol Ridge,Bristol Ridge,2MB,,15,2500 ‑ 3400,4/4,28,x86,,2539,Radeon R5 (Bristol Ridge),~8.3,,2277,7420,0.81,2.66,72,230,,,,,18.24,977,14.41,470.9,1329,76.6,16.3,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Celeron 3965U,Kaby Lake,Kaby Lake,512KB + 2MB,,15,2200,2/2,14,x86,,2480,HD Graphics 610,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Pentium Gold 4417U,Kaby Lake Refresh,Kaby Lake Refresh,1MB + 2MB,,15,2300,2/4,14,x86,,1764,HD Graphics 610,~14.8,3204,3570,8012,1.08,2.57,89,228,203,472,,,17.25,922,21.15,665,1792,81.1,15.54,,1.4,0.24,0.14,,,,,5280,2254,4882,2695,5248,,,,,,,,165.1,16702,,26,102, -Intel Celeron 5205U,Comet Lake-U,Comet Lake,,,15,1900,2/2,14,x86,,1506,UHD Graphics 610,~10.9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,480,912,,,,,,,,, -Intel Pentium Silver N6005,Jasper Lake,Jasper Lake,1.5MB + 4MB,,10,2000 ‑ 3300,4/4,10,x86,,1068,UHD Graphics (Jasper Lake 32 EU),~17.9,5451,3970,12496,1.48,4.85,121,319,262,720,694,1833,17.57,880.65,16.55,554.13,1674.5,118.75,25.18,1.83,2.75,0.4,0.22,1805,2464,3465,9964,,,,2764,5399,680,1537,695,1673,,,,,,,,146,104.2 -Intel Pentium Silver N6000,Jasper Lake,Jasper Lake,1.5MB + 4MB,,6,1100 ‑ 3300,4/4,10,x86,,1068,UHD Graphics (Jasper Lake 32 EU),~19.6,3985,4131.5,9642.5,1.41,3.59,113.65,291,255,650.5,672.5,1699,17.53,895,16.92,727,1330,93.4,18.4,1.61,2.8,0.41,0.22,1935,3786,3305,9212,,,,3188,8341,724.5,1911.5,727,1915,,,,293.2,34145.5,107.6,82.45,146,104.2 -Intel Celeron N5095,Jasper Lake,Jasper Lake,1.5MB + 4MB,,15,2000 ‑ 2900,4/4,10,x86,,1068,UHD Graphics (Jasper Lake 16 EU),~17.1,5272,3544.5,12283,1.27,4.71,106,364,234,827,611,2164,20.51,1038.95,19.49,611.35,1705.5,116.5,25,2.01,2.5,0.37,0.2,1547,2936,3100,11013,,,,2900,7842,646.5,2030.5,650.5,2028,,,,,,89.8,,125.3,95.2 -Intel Celeron N5105,Jasper Lake,Jasper Lake,1.5MB + 4MB,,10,2000 ‑ 2900,4/4,10,x86,,1068,UHD Graphics (Jasper Lake 24 EU),~22.7,,,,,,108.1,368,235,826,618,2175,,,,,,,,2.01,,,,1573,2940,3108,11153,,,,,,649,2069,653,2080,,,,,,102.15,,134.2,96.2 -Intel Celeron N5100,Jasper Lake,Jasper Lake,1.5MB + 4MB,,6,1100 ‑ 2800,4/4,10,x86,,1068,UHD Graphics (Jasper Lake 24 EU),~14.9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,631,1788,,,,,,,,, -Intel Pentium Silver J5040,Gemini Lake Refresh,Gemini Lake,4MB,,10,2000 ‑ 3200,4/4,14,x86,,1502,UHD Graphics 605,~13.4,4296,2688,8279,1.09,3.49,91,279,202,630,519,1634,21.32,1083.02,15.29,515.52,1391,89.1,19.2,1.66,2,0.29,0.2,2060,,2833,8946,,,,2333,6359,535,1664,538,1672,,,,,,,,108.2,80.2 -AMD Athlon Silver 3050e,Dali (Zen),Raven Ridge (Ryzen 2000 APU),1MB + 4MB,,6,1400 ‑ 2800,2/4,14,x86,,1292,Vega 3,~15.8,,3339,6780,1.18,2.51,102,226.5,224.5,419.5,576,1174.5,41.6,1302,18.99,595,1403,70.1,13.8,1.27,1.3,0.24,0.16,2298.5,,2524.5,6641.5,,,,2948,5000,662,1224,594.5,1172,,,,454.6,22479,,55.6,98.6, -AMD 3020e,Dali (Zen),Raven Ridge (Ryzen 2000 APU),1MB + 4MB,,6,1200 ‑ 2600,2/2,14,x86,,1228,Vega 3,~12.9,,,,,,92,196,236,369,603,943,16.95,879,29,903,1232,65.3,12.8,1.15,1.1,0.16,0.11,2964,,2597,4963,,,,2809,4803,646,1195,638,1188,,,,,20692,,59.5,105, -Intel Pentium Silver N5030,Gemini Lake Refresh,Gemini Lake,4MB,,6,1100 ‑ 3100,4/4,14,x86,,1502,UHD Graphics 605,~15.2,3895,2498,7724,1.02,3.09,80.9,225.95,182.5,425.5,430,911,24.86,1247,14.65,526,1163,84,17.58,0.71,,,,3449.5,,2645,7238,,,,2176,5662,356,1177,512,1221,,,,355.8,21899,65.1,59.3,95.4, -Intel Celeron J4125,Gemini Lake Refresh,Gemini Lake,4MB,,10,2000 ‑ 2700,4/4,14,x86,,1502,UHD Graphics 600,~11.4,3740,2112,7128,0.85,3.06,75.3,243,170,430,438,1186,24.65,1845,17.37,603,1048,61.35,13.05,1.46,1.8,0.26,0.18,2391,7856,2369,7494,,,,1924,5468,453,1482,455,1394,,,,,,64.65,,88.7,68.2 -Intel Celeron J4105,Gemini Lake,Gemini Lake,4MB,,10,1500 ‑ 2500,4/4,14,x86,,2195,UHD Graphics 600,~11.8,,,,,,73,270,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Pentium Silver N5000,Gemini Lake,Gemini Lake,4MB,,6,1100 ‑ 2700,4/4,14,x86,,2195,UHD Graphics 605,~14.6,3320,2295,6688,0.94,2.8,78,236.5,170,484,438,1232,24.17,1319,16.83,645,1245,76.3,15.4,1.31,1.9,0.27,0.19,2707,,2431,7320,4819,1777.5,5547.5,2027,5790,,,421,1582,,,,194.6,13121,33.94,20.1,89.1, -Intel Celeron J4005,Gemini Lake,Gemini Lake,4MB,,10,2000 ‑ 2700,2/2,14,x86,,2195,UHD Graphics 600,~10.5,,2085,3500,0.85,1.39,77,144,,,,,16.34,1245,33.07,1042,798,49.92,9.96,0.88,0.96,0.13,0.09,4124,,,,,,,1997,3491,,,,,,,,,,,,, -Intel Celeron N6211,Elkhart Lake,Elkhart Lake,1.5MB,,6.5,1200 ‑ 3000,2/2,10,x86,,516,UHD Graphics (Jasper Lake 16 EU),~11.7,,2696,4693,0.97,1.65,76,128,174,285,439,735,21.98,1070.14,49.66,1561.18,731,45.25,10,0.88,0.98,0.14,0.07,3767,,2593,3974,,,,2585,3606,559,857,556,844,,,,,,,,89.2,63.2 -Intel Celeron 4205U,Whiskey Lake-U,Celeron,512KB + 2MB,,15,1800,2/2,14,x86,,1787,HD Graphics 610,~0.9,,,,,,,136,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Celeron 3867U,Kaby Lake,Kaby Lake,512KB + 2MB,,15,1800,2/2,14,x86,,1750,HD Graphics 610,~8.1,,,,,,,134,,159,,,,,,,,,,,,,,,,,,,,,2285,3830,,,434,873,,,,,,,,, -Intel Celeron 3865U,Kaby Lake,Kaby Lake,512KB + 2MB,,15,1800,2/2,14,x86,,2480,HD Graphics 610,~13.6,,2853,5425,0.86,1.66,72,142,,,,,21.38,1120,39.36,1213,1108,54.4,10.8,,0.81,0.13,0.08,,,,,3627,1843,3224,2240,3719,,,,,,,,176.6,13961,,,, -Samsung Exynos 9825,Exynos M3 / Cortex-A55,Exynos,,,,1900 ‑ 2730,8/8,7,ARM,,1757,Mali-G76 MP12,~18.2,,,,,,,,,,,,,,,,,,,,,,,,,,,8839,,,4550,10425.5,813.5,2184,834,2331,,,215665,,19021.5,45.33,59.7,107.5, -Samsung Exynos 9820,Exynos M3 / Cortex-A55,Exynos,,,,1900 ‑ 2700,8/8,8,ARM,,1757,Mali-G76 MP12,~17.4,,,,,,,,,,,,,,,,,,,,,,,,,,,8492.5,,,4505.5,10374,836,2306,825,2259,,,,,20469.5,44.24,56,115, -HiSilicon Kirin 820,Cortex-A76/-A55,,,,,1840 ‑ 2360,8/8,7,ARM,,1354,Mali-G57 MP6,~19.4,,,,,,,,,,,,,,,,,,,,,,,,,,,9969,,,3113,9860,,,642,2434,,,238069,,19727,54.8,49.5,115, -MediaTek Dimensity 810,Cortex-A76 / A55,,,,,2000 ‑ 2400,8/8,6,ARM,,856,Mali-G57 MP2,~19.3,,,,,,,,,,,,,,,,,,,,,,,,,,,7956,,,2846,7135,605,1788,598,1791.5,,,,619,16718.5,43.83,39.8,62, -MediaTek Dimensity 800,Cortex-A76 / A55,,,,,2000,8/8,7,ARM,,1306,Mali-G57 MP4,~11.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2524,8649,,,523,2143,,,23814,,14751,36.83,37.9,56, -HiSilicon Kirin 820e,Cortex-A76/-A55,,,,,1840 ‑ 2220,8/8,7,ARM,,1354,Mali-G57 MP6,~13.7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2820,7841,,,566,1853,,,3553,,18755,56.22,34.1,86,64 -HiSilicon Kirin 810,Cortex-A76/-A55,,,,,1880 ‑ 2270,8/8,7,ARM,,1658,Mali-G52 MP6,~16.2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2836,7891,,,598,1919.5,,,217082,,16604,47.86,48.3,83, -HiSilicon Kirin 980,Cortex-A76/-A55,,,,,‑ 2600,8/8,7,ARM,,2297,Mali-G76 MP10,~17.4,,,,,,,,,,,,,,,,,,,,,,,,,,,9587.5,,,3314,9854,695.5,2500,707,2558,,,246733,,21603.5,50.18,59.05,99, -Qualcomm Snapdragon 695 5G,Kryo 660 Gold (2x Cortex-A78) / Silver (6x Cortex-A55),Snapdragon,,,,1700 ‑ 2200,8/8,6,ARM,,780,Adreno 619,~15.7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3084,7355,,,672.5,1922,903.5,2075,4737,,22285,64.22,45.45,94,65 -Samsung Exynos 1280,,Exynos,,,,2000 ‑ 2400,8/8,5,ARM,,635,Mali-G68 MP4,~15.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3376,7738.5,,,737,1878,,,4737,,24340,64.76,49.62,75.5, -Samsung Exynos 9810,Exynos M3 / Cortex-A55,Exynos,,,,‑ 2900,8/8,10,ARM,,2172,Mali-G72 MP18,~13.4,,,,,,,,,,,,,,,,,,,,,,,,,,,6098.5,,,3698,8874,679,2033,,,,,154312,,14711.5,32.26,39,68, -Qualcomm Snapdragon 850,Cortex-A75 / A55 (Kryo 385),Snapdragon,1.5MB + 2MB,,,2750 ‑ 2960,8/8,10,ARM,,2132,Adreno 630,~9.6,,1166,2284,,,,,,,,,34,1678,37,1456,4745,28,4.9,,,,,,,,,,,,2269,7118,,,488,1923,,,,,13947,58.8,,, -Qualcomm Snapdragon 845,Cortex-A75 / A55 (Kryo 385),Snapdragon,+ 2MB,,,2800,8/8,10,ARM,,2132,Adreno 630,~21.2,,,,,,,,,,,,,,,,,,,,,,,,,,,10839.5,,,2429,8849,501,1986,466,2012,,,244932,451,16369.5,46.61,51.05,97, -Qualcomm Snapdragon 765G,Kryo 475 Gold / Silver,Snapdragon,,,,1800 ‑ 2400,8/8,7,ARM,,1470,Adreno 620,~16.7,,,,,,,,,,,,,,,,,,,,,,,,,,,7961,,,2863,7665,,,606,1810,,,208510,,18551,50.5,49.8,76, -Qualcomm Snapdragon 765,Kryo 475 Gold / Silver,Snapdragon,,,,1800 ‑ 2300,8/8,7,ARM,,1470,Adreno 620,~12.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2785,7832,,,592.5,1911.5,,,17028,,17001,48.46,36,75, -Qualcomm Snapdragon 4 Gen 1,2x Cortex-A78 / 6x Cortex-A55,Snapdragon,,,,1804 ‑ 2016,8/8,6,ARM,,435,Adreno 619,~15.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,642,1954,,,,,19867,58.04,48.5,91,68 -Qualcomm Snapdragon 750G 5G,Kryo 570 (Cortex-A77/A55),Snapdragon,,,,1800 ‑ 2200,8/8,8,ARM,,1179,Adreno 619,~14.7,,,,,,,,,,,,,,,,,,,,,,,,,,,7402,,,3054,7945,,,643,1878,,,8058,,17823,54.7,44.27,79,63 -AMD 3015e,Pollock (Zen),Raven Ridge (Ryzen 2000 APU),1MB + 4MB,,6,1200 ‑ 2300,2/4,14,x86,,1228,Vega 3,~10.6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,464,860,,,,,,,,, -AMD 3015Ce,Pollock (Zen),Raven Ridge (Ryzen 2000 APU),1MB + 4MB,,6,1200 ‑ 2300,2/4,14,x86,,1228,Vega 3,~28,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,564,1135,,,,344.3,23395,75.3,67.7,118, -Intel Celeron N4120,Gemini Lake Refresh,Gemini Lake,4MB,,6,1100 ‑ 2600,4/4,14,x86,,1502,UHD Graphics 600,~14.4,3403,2159,6432,0.88,2.68,73.2,224,165,490,416.5,1230,25.57,,17.56,661,,,,1.31,1.8,0.25,0.18,2570.5,,2279,7184,,,,1876,5668,435.5,1503,439,1509,,,,520,17701,54.4,46,86.2, -Qualcomm Snapdragon 690 5G,Kryo 560 Gold (Cortex-A77) / Silver (Cortex-A55),Snapdragon,,,,1700 ‑ 2000,8/8,8,ARM,,1276,Adreno 619L,~25.2,,,,,,,,,,,,,,,,,,,,,,,,,,,7298,,,2739.5,6837,,,600,1794.5,,,515836,481.5,10630.5,30.89,27.25,51.5, -MediaTek Dimensity 800U,Cortex-A76 / A55,,,,,2000 ‑ 2400,8/8,7,ARM,,1306,Mali-G57 MP3,~11.1,,,,,,,,,,,,,,,,,,,,,,,,,,,8035,,,,,,,599,1779.5,,,12938.5,,16629,33.82,32.05,47, -MediaTek Dimensity 6020,Cortex-A76 / A55,,,,,2000 ‑ 2200,8/8,7,ARM,,289,Mali-G57 MP2,~12,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,539,1813,709,1781,4668,,16765,56.65,45.2,66,52 -UNISOC T820,Cortex-A76 / A55,,,,,2100 ‑ 2700,8/8,6,ARM,,470,Mali-G57 MP4,~17.3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2857,8410,,,639,2283,,,,,,,,, -UNISOC Tangula T770,Cortex-A76 / A55,,,,,2000 ‑ 2500,8/8,6,ARM,,1444,Mali-G57 MP4,~16.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2763,8087,,,622,2226,,,,,,,,, -UNISOC Tangula T760,Cortex-A76 / A55,,+ 3MB,,,2000 ‑ 2000,8/8,6,ARM,,1452,Mali-G57 MP4,~13.3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,541,2155,,,,,,,,, -Qualcomm Snapdragon 732G,Kryo 470 Gold / Silver,Snapdragon,,,,2300,8/8,8,ARM,,1209,Adreno 618,~22.4,,,,,,,,,,,,,,,,,,,,,,,,,,,6709,,,2616,7036.5,,,565,1787,,,,430,17398,52.6,43.2,72, -Qualcomm Snapdragon 730G,Kryo 470 Gold / Silver,Snapdragon,,,,2200,8/8,8,ARM,,1719,Adreno 618,~12.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2556,6987,543,1726,547,1744.5,,,199813,,16602.5,46.87,43.3,69, -Mediatek Helio G99,Cortex-A76 / A55,Mediatek,,,,2000 ‑ 2200,8/8,6,ARM,,486,Mali-G57 MP2,~13,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2672,7896,555,1921,543.5,1803.5,721,1957.5,,,18447.5,55.89,34.55,86,56.5 -MediaTek Dimensity 700,Cortex-A76 / A55,,,,,2000 ‑ 2200,8/8,7,ARM,,1014,Mali-G57 MP2,~18.6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2531,6853,,,547,1700,711,1919,3167,592,16871,44.7,37,56,54 -Qualcomm Snapdragon 730,Kryo 470 Gold / Silver,Snapdragon,,,,2200,8/8,7,ARM,,1719,Adreno 618,~15,,,,,,,,,,,,,,,,,,,,,,,,,,,7184,,,2481.5,6848.5,,,545,1713.5,,,199625,,16378.5,43.58,40.1,73, -Qualcomm Snapdragon 720G,Cortex-A76 / A55,Snapdragon,,,,2300,8/8,8,ARM,,1719,Adreno 618,~12.3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2620,6263,,,567,1694,,,18494,,17265,48.22,41,69, -Mediatek Helio G96,Cortex-A76 / A55,Mediatek,,,,2000 ‑ 2050,8/8,12,ARM,,920,Mali-G57 MP2,~11.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2522,7630,531,1873,528,1755,680,1688,4433.5,,18633.5,52.37,43.55,66,50 -Mediatek Helio G95,Cortex-A76 / A55,Mediatek,,,,2000 ‑ 2050,8/8,12,ARM,,1605,Mali-G76 MP4,~10.9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2476,6436,,,510.5,1680,,,12299,,15551.5,36.93,33.65,53,40 -Mediatek Helio G90T,Cortex-A76 / A55,Mediatek,,,,2050,8/8,12,ARM,,1605,Mali-G76 MP4,~11.2,,,,,,,,,,,,,,,,,,,,,,,,,,,6843,,,2424.5,6836.5,391,1612,503,1593,,,107245,,15619,35.74,33.95,54, -UNISOC T765,Cortex-A76 / A55,,,,,2100 ‑ 2300,8/8,6,ARM,,4,Mali-G57 MP2,~15.3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,750,1935,,,,,,, -Qualcomm Snapdragon 480 Plus 5G,Cortex-A76 / 55,Snapdragon,,,,1800 ‑ 2200,8/8,8,ARM,,1080,Adreno 619,~14.2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2531,6819,,,554,1643,746,1917,4242,,20689,65.69,47.6,85.5,70 -Qualcomm Snapdragon 480 5G,Cortex-A76 / 55,Snapdragon,,,,1800 ‑ 2000,8/8,8,ARM,,1080,Adreno 619,~14.2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2478,6917,,,510,1663,,,187431,,16018,46.44,38.4,70, -MediaTek Dimensity 720,Cortex-A76 / A55,,,,,2000,8/8,7,ARM,,1245,Mali-G57 MP3,~13.6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2329.5,6174,,,499.5,1603.5,660,1856,176204,,16261.5,37.29,37.7,51,62 -Mediatek Helio P90,Cortex-A75 / A55,Mediatek,,,,2200,8/8,12,ARM,,1468,PowerVR GM9446,~14.2,,,,,,,,,,,,,,,,,,,,,,,,,,,7696,,,1994,6162,,,408,1524,,,195354,,14607,43.53,41.5,91, -HiSilicon Kirin 970,Cortex-A73/-A53,,,,,2400,8/8,10,ARM,,2300,Mali-G72 MP12,~11.3,,,,,,,,,,,,,,,,,,,,,,,,,,,6877.5,,,1901,6714.5,386,1711.5,,,,,202050,,11085,25.88,27.9,69, -HiSilicon Kirin 960,Cortex-A73/-A53,,,,,2400,8/8,16,ARM,,2603,Mali-G71 MP8,~13.3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1869,6445,,,,,,,264076,,10236,23.46,20.85,70, -HiSilicon Kirin 960s,Cortex-A73/-A53,,,,,2100,8/8,16,ARM,,2603,Mali-G71 MP8,~11.6,,,,,,,,,,,,,,,,,,,,,,,,,,,6502,,,1634,5809,,,,,,,,,6802,,,, -AMD A9-9420e,Stoney Ridge,Bristol Ridge,1MB,,,‑ 2500,2/2,28,x86,,2028,Radeon R5 (Stoney Ridge),~0.6,,,,,,,97,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Pentium Gold 4425Y,Kaby Lake,Kaby Lake,512KB + 2MB,,6,1700,2/4,14,x86,,2434,UHD Graphics 615,~13.3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2160,4330,,,,,,,,,,,,, -Intel Pentium Gold 4415Y,Kaby Lake,Kaby Lake,512KB + 2MB,,6,1600,2/4,14,x86,,2434,HD Graphics 615,~6.7,,2521,5586,0.75,1.8,65,164,,,,,16.34,1240,31.07,982,1455,58.3,11,1.09,0.1,,,,,,,,,,,,,,,,,,,,11875,,,, -Apple A9X,Cyclone 3,,,,,2260,2/2,14,ARM,,3024,A9X / PowerVR GT7xxx,~30.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3097,5284,,,,,,,59226,181,19736.5,,,101, -Qualcomm Snapdragon 678,Kryo 460 Gold (Cortex-A76) / Silver (Cortex-A55),Snapdragon,,,,1700 ‑ 2200,8/8,11,ARM,,1100,Adreno 612,~14.7,,,,,,,,,,,,,,,,,,,,,,,,,,,7022,2219,5674,2483,6570,,,531,1541,,,2743,,15828,47.39,41.17,71, -Qualcomm Snapdragon 675,Kryo 460 Gold (Cortex-A76) / Silver (Cortex-A55),Snapdragon,,,,1600 ‑ 2000,8/8,11,ARM,,1914,Adreno 612,~12.4,,,,,,,,,,,,,,,,,,,,,,,,,,,6668,,,2323,6222,504,1610,486,924,,,190355,,15702.5,44.17,41.4,76, -Samsung Exynos 8895 Octa,Mongoose / Cortex-A53,Exynos,,,,2300,8/8,10,ARM,,2457,Mali-G71 MP20,~17.6,,,,,,,,,,,,,,,,,,,,,,,,,,,6325,,,2015,6711,,,,,,,238041,,13265,,,, -Qualcomm Snapdragon 685 4G,Kryo 265 Gold (Cortex-A73) / Silver (Cortex-A53),Snapdragon,,,,1900 ‑ 2800,8/8,6,ARM,,1100,Adreno 610,~11.9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2055,7087,,,442,1787,,,4077,,15695,58.95,50.9,74,58 -Qualcomm Snapdragon 680 4G,Kryo 265 Gold (Cortex-A73) / Silver (Cortex-A53),Snapdragon,,,,1800 ‑ 2400,8/8,6,ARM,,1100,Adreno 610,~10.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1818.5,5636,,,377.5,1604,425.5,1157.5,,,12386,42.03,39.64,63.5,45.5 -Qualcomm Snapdragon 835 (8998),Kryo 280,Snapdragon,,,,2450,8/8,10,ARM,,2464,Adreno 540,~15.3,,664,3198,0.27,1.59,,,,,,,,,,,,,,,,,,,,,,7226,1155,4100,1920,6517,388,1714,386,1669,,,266992,298.5,11484,36.4,41.7,77, -UNISOC T750,Cortex-A76 / A55,,+ 3MB,,,1800 ‑ 2000,8/8,6,ARM,,249,Mali-G57 MP2,~11.2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,470,1432,,,,,,,,, -UNISOC Tangula T740,Cortex-A75 / A55 Tangula,,+ 2MB,,,1800 ‑ 1800,8/8,12,ARM,,1449,PowerVR GM9446,~9.3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,367,1727,,,,,,,,, -Qualcomm Snapdragon 712,Kryo 360,Snapdragon,,,,2300,8/8,10,ARM,,1777,Adreno 616,~11.2,,,,,,,,,,,,,,,,,,,,,,,,,,,6973,,,1875,5975,317,1491,,,,,185962,,11945,37.21,37.5,59.5, -Apple A10 Fusion,APL1021 Hurricane / Zephyr,Apple A-Series,,,,2340,4/2,16,ARM,,2659,A10 Fusion GPU,~14.6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3499,5922,771,1429,777,1421,,,49329,,26053,65.2,65.95,95, -Samsung Exynos 8890 Octa,Mongoose / Cortex-A53,Exynos,,,,2600,8/8,14,ARM,,2850,Mali-T880 MP12,~32,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1810,5354,,,,,,,207417,321,12915.5,,,, -Samsung Exynos 9611,Exynos 7 Series,Exynos,,,,1700 ‑ 2300,8/8,10,ARM,,1486,Mali-G72 MP3,~8.2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,347,1299,347.5,1323.5,,,150124,,9810,27.68,29.2,55, -Samsung Exynos 9610,Exynos 7 Series,Exynos,,,,1700 ‑ 2300,8/8,10,ARM,,1714,Mali-G72 MP3,~12.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1721,5605,,,,,,,172805,,10322,,33.07,62, -HiSilicon Kirin 955,Cortex-A72/-A53,,,,,2500,8/8,16,ARM,,2814,Mali-T880 MP4,~14.6,,,,,,,,,,,,,,,,,,,,,,,,,,,8222,,,1744,5260,,,,,,,253465,,11920.5,32.26,36,, -Intel Celeron J4115,Gemini Lake,Gemini Lake,4MB,,10,1800 ‑ 2500,4/4,14,x86,,1507,UHD Graphics 600,~11.8,3683,2087,7426,0.83,3.2,70.6,244,156.5,546.5,,,27.38,1472,19.09,564,1203,76.3,17.5,1.42,1.7,0.25,0.17,2515,,2199.5,7613.5,,,,,,,,399,1420.5,,,,,,,,81.65, -Intel Celeron N4100,Gemini Lake,Gemini Lake,4MB,,6,1100 ‑ 2400,4/4,14,x86,,2200,UHD Graphics 600,~13.4,2805,2013,5904,0.83,2.18,68.6,198,152,391,386.5,960.5,28.5,1474,19.41,790,1139,58.2,11.8,1.18,1.7,0.23,0.16,3176,,2158,6608,,1629,5041.5,1795,5259,408,1232,405,1271,,,,233,11328,,,75.2, -Intel Pentium Gold 4410Y,Kaby Lake,Kaby Lake,512KB + 2MB,,6,1500,2/4,14,x86,,2434,HD Graphics 615,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Celeron 3965Y,Kaby Lake,Kaby Lake,512KB + 2MB,,6,1500,2/2,14,x86,,2434,HD Graphics 615,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -HiSilicon Kirin 950,Cortex-A72/-A53,,,,,2300,8/8,16,ARM,,2946,Mali-T880 MP4,~32.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1683,5283,,,,,,,270825,460.6,11329,,,, -Samsung Exynos 9609,Exynos 7 Series,Exynos,,,,1600 ‑ 2200,8/8,10,ARM,,1714,Mali-G72 MP3,~12.8,,,,,,,,,,,,,,,,,,,,,,,,,,,6123,1478,5223,1603,5324,,,,,,,131830,,9808,31.18,29.9,63, -AMD A6-9220C,Stoney Ridge,Bristol Ridge,1MB,,6,1800 ‑ 2700,2/2,28,x86,,1784,Radeon R5 (Stoney Ridge),,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Celeron N4505,Jasper Lake,Jasper Lake,1.5MB + 4MB,,10,2000 ‑ 2900,2/2,10,x86,,1073,UHD Graphics (Jasper Lake 16 EU),~16.7,3214,3621.5,6860.5,1.28,2.49,106,197.5,230,441.5,603.5,1148.5,20.92,1003.47,35.84,1131.72,1061.5,72.3,13.65,1.19,1.3,0.19,0.1,2899,5741.5,3046.5,6003.5,,,,2945.5,5082,648,1214.5,653.5,1232,,,,353.4,24502,89.8,71.7,114.15,80.25 -Intel Celeron J4025,Gemini Lake Refresh,Gemini Lake,4MB,,10,2000 ‑ 2900,2/2,14,x86,,1507,UHD Graphics 600,~11,2575,2337,4556,0.96,1.81,77,148,178,293,461,857,23.08,1175.7,31.07,983.3,783,53.1,10.6,0.98,1,0.15,0.1,3792,7396,2636,4955,,,,2170,3847,497,919,500,927,,,,,,,,89.2,67.1 -Intel Celeron N4500,Jasper Lake,Jasper Lake,1.5MB + 4MB,,6,1100 ‑ 2800,2/2,10,x86,,1073,UHD Graphics (Jasper Lake 16 EU),~15.6,2053,,,1.04,2.1,82,171,188,332,452,709,22.82,1132,50.2,1270,1076,60.6,12.02,0.74,1.1,0.18,0.1,4249,,2853,5394,,,,,,,,594,1018,457,662,,197.1,24838,82.5,71.5,94.75,91.2 -Intel Celeron N4020,Gemini Lake Refresh,Gemini Lake,4MB,,6,1100 ‑ 2800,2/2,14,x86,,1507,UHD Graphics 600,~10.9,2495,2184,4427,0.94,1.71,73.75,127.1,162.4,279,308,616,24.17,1220,29.66,932,766,50.1,9.97,0.83,0.95,0.13,0.09,4064,,2456,4498,,,,2004,3433,,,462,836,,,,,,49.9,,80.2,55.25 -MediaTek Kompanio 520,2x Cortex-A76 / 6x A55,MediaTek Kompanio 500,,,,2000,8/8,7,ARM,,408,Mali-G52 MP2,~27,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,510,1532,,,,172.6,23443,75.55,40.9,121,80.5 -Mediatek Helio P70,Cortex-A73 / A53,Mediatek,,,,2100,8/8,12,ARM,,1707,Mali-G72 MP3,~9.1,,,,,,,,,,,,,,,,,,,,,,,,,,,6339,,,1479,5124,298,1399,295,1443,,,171015,,9097,23.72,32.04,47.5, -Mediatek Helio P65,Cortex-A75 / A55,Mediatek,,,,2000,8/8,12,ARM,,1633,Mali-G52 MP2,~7.9,,,,,,,,,,,,,,,,,,,,,,,,,,,6229,,,1711,5097,357,1211,354,1239.5,,,6412,,10460.5,33.29,27.9,51.5, -MediaTek Helio X27 MT6797X,,Mediatek Helio 20,,,,2600,10/10,,ARM,,1997,Mali-T880 MP4,~12.2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1690,4781.5,,,,,,,159874,,6031.5,,,, -Qualcomm Snapdragon 710,Kryo 360,Snapdragon,,,,2200,8/8,10,ARM,,1853,Adreno 616,~12.7,,,,,,,,,,,,,,,,,,,,,,,,,,,6539,1863,5589,1821,5850.5,394,1515,393,1478,,,180127,,12364.5,36.48,36.7,69.5, -Qualcomm Snapdragon 670,Kryo 360 Gold / Silver,Snapdragon,,,,2016,8/8,10,ARM,,1960,Adreno 616,~10,,,,,,,,,,,,,,,,,,,,,,,,,,,6467,,,1624,5172,344,1322,349,1343,,,171622,,10950,33.13,32.5,62, -Qualcomm Snapdragon 665,Kryo 260,Snapdragon,,,,2200,8/8,11,ARM,,1716,Adreno 610,~9.3,,,,,,,,,,,,,,,,,,,,,,,,,,,6117,,,1495,5366,314,1379,310.5,1371.5,,,172978,,9260,30.59,29.12,51, -Qualcomm Snapdragon 662,Kryo 260,Snapdragon,,,,1800 ‑ 2000,8/8,11,ARM,,1716,Adreno 610,~7.7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1472,4938,,,314,1381,,,16222,,9385,31.63,28.5,52, -Qualcomm Snapdragon 660,Kryo 260,Snapdragon,,,,2200,8/8,14,ARM,,2416,Adreno 512,~16.3,,,,,,,,,,,,,,,,,,,,,,,,,,,6141,,,1617,5850,321.5,1305,330.5,1440.5,,,186416,630,10070,30.82,32.3,59, -Qualcomm Snapdragon 821 MSM8996 Pro,Kryo,Snapdragon,1.5MB,,,2400,4/4,14,ARM,,2636,Adreno 530,~11.7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1834.5,4356,,,,,,,215105,,9493,26.42,22.4,, -Samsung Exynos 7885,Cortex-A73/-A53,Exynos,,,,2200,8/8,14,ARM,,2179,Mali-G71 MP2,~10.8,,,,,,,,,,,,,,,,,,,,,,,,,,,5054,,,1525.5,4430,,,,,,,,,9257.5,,,57, -UNISOC T619,Cortex-A75 / A55,,+ 1MB,,,1800 ‑ 2200,8/8,12,ARM,,1484,Mali-G57 MP1,~9.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,403,1489,,,,,,,,, -UNISOC T618,Cortex-A75 / A55,,+ 1MB,,,2000 ‑ 2000,8/8,12,ARM,,1484,Mali-G52 MP2,~11.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1911,5744,,,382,1325.5,,,,,12356.5,42.61,33.33,74.5,58 -UNISOC T616,Cortex-A75 / A55,,+ 1MB,,,1800 ‑ 2000,8/8,12,ARM,,1484,Mali-G57 MP1,~10.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1734,5377.5,,,355,1428,428,1548,3122.5,,14081,50.52,38.3,80,57 -UNISOC T612,Cortex-A75 / A55,,+ 1MB,,,1800 ‑ 2000,8/8,12,ARM,,598,Mali-G52 MP1,~9.1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,346,1323,,,2969,,12581,45.17,31.65,73,46 -UNISOC T610,Cortex-A75 / A55,,+ 1MB,,,1800 ‑ 2000,8/8,12,ARM,,1484,Mali-G52 MP2,~8.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,348.5,1298.5,,,1942,,11952,44.18,33.43,,53 -UNISOC T606,Cortex-A75 / A55,,+ 1MB,,,1600,8/8,12,ARM,,1484,Mali-G57 MP1,~8.2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,310,1185.5,375,1442.5,1218,,10858,48.46,35.13,,51.5 -UNISOC Tangula T700,Cortex-A75 / A55,,,,,1800 ‑ 1800,8/8,12,ARM,,999,Mali-G52 MP2,~7.6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,351.5,1342,,,2078,,10382,35.89,29.9,65, -Mediatek Helio G88,Cortex-A75 / A55,Mediatek,,,,1800 ‑ 2000,8/8,12,ARM,,1360,Mali-G52 MP2,~7.6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1785.5,5838.5,363,1257,375,1284,436,1262.5,3345,,9404,28.58,24.4,48,34.5 -Mediatek Helio G85,Cortex-A75 / A55,Mediatek,,,,1800 ‑ 2000,8/8,12,ARM,,1360,Mali-G52 MP2,~9.7,,,,,,,,,,,,,,,,,,,,,,,,,,,5907,,,1662,5301,,,353,1305,,,,,12107,30.77,27.85,45, -Mediatek Helio G80,Cortex-A75 / A55,Mediatek,,,,2000,8/8,12,ARM,,1707,Mali-G52 MP2,~9.4,,,,,,,,,,,,,,,,,,,,,,,,,,,5821,,,1702.5,5424.5,,,363.5,1337.5,413,1384,7818,,11782,33.32,28.65,49,44.5 -Mediatek Helio G70,Cortex-A75 / A55,Mediatek,,,,2000,8/8,12,ARM,,1707,Mali-G52 MP2,~9.4,,,,,,,,,,,,,,,,,,,,,,,,,,,6725,,,1832,5734,,,387.5,1307.5,,,13756,,10648,29.08,31.2,44, -HiSilicon Kirin 710,Cortex-A73/-A53,,,,,2200,8/8,12,ARM,,1918,Mali-G51 MP4,~9.8,,,,,,,,,,,,,,,,,,,,,,,,,,,5856.5,,,1550,5430,327,1339,330.5,1338,,,184162,,9695,31.56,31.55,62, -HiSilicon Kirin 710A,Cortex-A73/-A53,,,,,2000,8/8,14,ARM,,1317,Mali-G51 MP4,~9.2,,,,,,,,,,,,,,,,,,,,,,,,,,,6201,,,1440,5231.5,,,297,1312,,,,,9453.5,30.19,26.37,55, -Mediatek Helio P60T,Cortex-A73 / A53,Mediatek,,,,2000,8/8,12,ARM,,2179,Mali-G72 MP3,~17.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,258.5,1091.5,,,6791,716,10523.5,37.36,30.44,69.5,48 -Mediatek Helio P60,Cortex-A73 / A53,Mediatek,,,,2000,8/8,12,ARM,,2179,Mali-G72 MP3,~10.2,,,,,,,,,,,,,,,,,,,,,,,,,,,6391,,,1479.5,5648.5,,,293,1422,,,142690,,8778,26.19,33,51, -Mediatek MT8788,Cortex-A73 / A53,Mediatek,,,,2000,8/8,12,ARM,,1724,Mali-G72 MP3,~7.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,971,4983,,,291,1383,329,1284,,,10152.5,36.44,25.3,, -Mediatek MT8183,Cortex-A73/-A53,Mediatek MT8,,,,2000,8/8,12,ARM,,1478,Mali-G72 MP3,~10,,,,,,,,,,,,,,,,,,,,,,,,,,,6072,,,1430.5,5376.5,,,300,1293,323,1214,175006,,9822,25.62,26.7,55.5, -Samsung Exynos 7420 Octa,Cortex-A57/-A53,Exynos,,,,2100,8/8,14,ARM,,3216,Mali-T760 MP8,~28.9,,,,,,,,,,,,,,,,,,,,,,,,,,,6201,1237.5,4958,,,,,,,,,169794,546,8518,,,, -Mediatek Helio X25 MTK6797T,Cortex-A72 / A53,Mediatek Helio 20,,,,2500,10/10,20,ARM,,2850,Mali-T880 MP4,~9.6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1791,4554,,,,,,,,,6089,,,, -Qualcomm Snapdragon 820 MSM8996,Kryo,Snapdragon,1.5MB,,,2200,4/4,14,ARM,,2926,Adreno 530,~10.1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1662,4021,,,,,,,170521,,8987,24.59,21,, -Nvidia Tegra X1,Erista (Cortex-A57 + A53),Tegra,2.5MB,,,2000,8/8,20,ARM,,3271,Tegra X1 Maxwell GPU,~27.3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1510,4264,,,,,,,129085,715,8031.5,,,, -Apple A9,Cyclone 3,,,,,1800,2/2,14,ARM,,3024,A9 / PowerVR GT7600,~24.9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2556,4459,,,531,970,,,48849,223,16375,,,, -AMD A4-9120,Stoney Ridge,Bristol Ridge,1MB,,10-15,2200 ‑ 2500,2/2,28,x86,,2393,Radeon R2 (Stoney Ridge),,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AMD A4-9120C,Stoney Ridge,Bristol Ridge,1MB,,6,1600 ‑ 2400,2/2,28,x86,,1809,Radeon R4 (Stoney Ridge),,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Qualcomm Snapdragon 810 MSM8994,Cortex-A57/-A53,Snapdragon,,,,2000,8/8,20,ARM,,3544,Adreno 430,~17.7,,,,,,,,,,,,,,,,,,,,,,,,,,,3012.5,1093.5,3218,1350,3440,,,,,,,117831,579,7924.5,18.08,22.4,, -Samsung Exynos 850,Cortex-A55,,,,,‑ 2000,8/8,8,ARM,,1314,Mali-G52 MP1,~5.3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,987,4986,,,178,1042,,,10533,,5454.5,20.2,15.7,36.5,25 -Qualcomm Snapdragon 652 MSM8976,Cortex-A72/-A53,Snapdragon,,,,1800,8/8,28,ARM,,3227,Adreno 510,~14.1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1454,4612,,,,,,,215365,,9071.5,,,, -Qualcomm Snapdragon 808 MSM8992,Cortex-A53/A57,Snapdragon,,,,2000,6/6,20,ARM,,3544,Adreno 418,~20.3,,,,,,,,,,,,,,,,,,,,,,,,,,,3773,1022,2952,1124,2798,,,,,,,97824,651,7948.5,,,, -Qualcomm Snapdragon 650 MSM8956,Cortex-A72/-A53,Snapdragon,,,,1800,6/6,28,ARM,,3227,Adreno 510,~8.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1458,2869,,,,,,,,,8368.5,,,, -Apple A8X,Cyclone 2,,2MB + 4MB,,,1500,3/3,20,ARM,,3352,UHD Graphics 750,~20.9,,,,,,,,,,,,,,,,,,,,,,,,,,,,1812,4477,1821,4357,381,1060,,,,,73235,291.1,10512,,,, -Nvidia Tegra K1 (Denver),Denver,Tegra,2MB,,,2300,2/2,28,ARM,,3353,GeForce ULP K1 (Tegra K1 Kepler GPU),~21.8,,,,,,,,,,,,,,,,,,,,,,,,,,,4055,1811,3029,1729,2776,,,,,,,35765,919,8210,,,, -Mediatek Helio X20 MT6797,Cortex-A72 / A53,Mediatek Helio 20,,,,2300,10/10,20,ARM,,2850,Mali-T880 MP4,~9.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1599,4468,,,,,,,,,7999.5,,,, -Mediatek MT8176,Cortex-A72/-A53,Mediatek,,,,2100,6/6,28,ARM,,2689,PowerVR GX6250,~9.3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1582.5,3232.5,,,,,,,,,8897,,,, -Mediatek Helio P25,Cortex-A53,Mediatek Helio 20,,,,2600,8/8,16,ARM,,2872,Mali-T880 MP2,~6.5,,,,,,,,,,,,,,,,,,,,,,,,,,,4348,,,836.5,3860.5,177,891,177,891,,,135249,,4582.5,,,, -Mediatek MT8173,Cortex-A72/-A53,Mediatek,,,,2400,4/4,28,ARM,,3216,PowerVR GX6250,~7.9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1204,3305,,,,,,,,,8570,,,, -MediaTek MT8169A,Cortex-A55,Mediatek MT8,,,,2000,6/6,12,ARM,,350,Mali-G52 MP2,~5.7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5843,23.54,15.76,38.5,25 -Mediatek Helio G37,Cortex-A53,Mediatek Helio G,,,,1800 ‑ 2300,8/8,12,ARM,,1268,PowerVR GE8320,~5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,800,3716,,,161,706,193,845,,,6000,21.16,15.01,37, -Mediatek Helio G35,Cortex-A53,Mediatek Helio G,,,,2300,8/8,12,ARM,,1268,PowerVR GE8320,~4.3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,783,3585,,,170,881,,,1727,,5369.5,17.96,13.3,34, -Mediatek Helio G36,Cortex-A53,Mediatek Helio G,,,,2200,8/8,12,ARM,,325,PowerVR GE8320,~4.6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,139,512,,,1003,,5207,23.11,16.9,43,27 -Mediatek MT8173C,Cortex-A72/-A53,Mediatek,,,,2100,4/4,28,ARM,,3216,PowerVR GX6250,~51.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,590,10319,,,, -Mediatek MT6595 Turbo,Cortex-A7/-A17,Mediatek,2MB,,,2500,8/8,28,ARM,,3599,PowerVR G6200,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Mediatek MT8768,Cortex-A53,Mediatek MT8,,,,1500 ‑ 2000,8/8,,ARM,,1416,PowerVR GE8320,~4.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,789,3745,,,152,780,,,,,4142.5,15.5,13.34,31, -Samsung Exynos 5433 Octa,Cortex-A57/-A53,Exynos,,,,1900,8/8,20,ARM,,3395,Mali-T760 MP6,~28.3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1359,3969,,,,,,,,1023.5,6991,,,, -Apple A8,Cyclone 2,,1MB + 4MB,,,1400,2/2,20,ARM,,3389,PowerVR GX6450,~19.9,,,,,,,,,,,,,,,,,,,,,,,,,,,,1614.5,2881.5,1591,2759,,,328,627,,,44118,347.2,7377,,,, -Mediatek Helio G25,Cortex-A53,Mediatek Helio G,,,,2000,8/8,12,ARM,,1268,PowerVR GE8320,~4.5,,,,,,,,,,,,,,,,,,,,,,,,,,,3256,,,711,3574,,,141,650,,,,,3974,14.37,12.65,24, -Mediatek Helio A25,Cortex-A53,Mediatek Helio 20,,,,1800,8/8,12,ARM,,1416,PowerVR GE8320,~4.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,138.5,860,,,99375,,3779.5,13.05,13.6,23, -Nvidia Tegra K1,"Logan (Cortex-A15 ""r3"" + Kepler-GPU)",Tegra,2MB,,,2300,4/4,28,ARM,,3635,GeForce ULP K1 (Tegra K1 Kepler GPU),~19.7,,,,,,,,,,,,,,,,,,,,,,,,,,,4743,1090.5,3278.5,1085,2949,,,,,,,22985,525,6810,,,, -Qualcomm Snapdragon 805 APQ8084,Krait 450,Snapdragon,2MB,,,2700,4/4,28,ARM,,3682,Adreno 420,~18.8,,,,,,,,,,,,,,,,,,,,,,,,,,,4469,1073,3141,1008,2576,,,,,,,18314,784,5379,,,, -Qualcomm Snapdragon 636,Kryo 260,Snapdragon,,,,1800,8/8,14,ARM,,2255,Adreno 509,~8,,,,,,,,,,,,,,,,,,,,,,,,,,,5063,,,1337,4941,278,1256,,,,,157981,9121,8559,26.2,26.45,54, -Samsung Exynos 7904,Cortex-A73/-A53,Exynos,,,,1800,8/8,14,ARM,,1794,Mali-G71 MP2,~7.4,,,,,,,,,,,,,,,,,,,,,,,,,,,4275,,,1320,4096,273,1010,239,596,,,133094,,8372,22.61,22.29,52, -Qualcomm Snapdragon 632,Kryo 250,Snapdragon,,,,1800,8/8,14,ARM,,2003,Adreno 506,~7.7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1247,4515,,,271,1233,,,,,8268.5,26.9,27.44,58, -Qualcomm Snapdragon 460,Cortex-A73 / 53,Snapdragon,,,,1800,8/8,14,ARM,,2366,Adreno 610,~14.4,,,,,,,,,,,,,,,,,,,,,,,,,,,5371,,,1290.5,4970,,,254,1155,,,13985,1219,7240.5,25.98,22.55,42.5, -Intel Atom Z3735E,Bay Trail-T,Atom,2MB,,<4,1330 ‑ 1830,4/4,22,x86,,3512,HD Graphics (Bay Trail),,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Atom Z3735F,Bay Trail-T,Atom,2MB,,<4,1330 ‑ 1830,4/4,22,x86,,3512,HD Graphics (Bay Trail),~9.7,1164,945,2885.5,0.31,0.87,,,,,,,27.45,1566,35.66,1100,1635,35.9,6.83,,0.62,0.14,0.09,,,,,2238.5,786,2191.5,,,,,,,,,,511,3524,,,, -Intel Atom Z3735G,Bay Trail-T,Atom,2MB,,<4,1330 ‑ 1830,4/4,22,x86,,3512,HD Graphics (Bay Trail),~13.4,1526,946,2891,,,,,,,,,156.3,6113,37.53,1171,1397,31.8,6.55,,0.62,0.14,0.09,,,,,,724,2110,,,,,,,,,,512,3381,,,, -AMD A6-9220e,Stoney Ridge,Bristol Ridge,1MB,,6,1600 ‑ 2400,2/2,28,x86,,2393,Radeon R4 (Stoney Ridge),~9.6,,1056,1741,,,31,86,73,110,,,66.4,2732,35.2,1517,519,14.7,2.65,,0.34,0.07,,,,,,3192,1247,1929,1260,1571,260,293,,,,,,357.7,9070,,12.6,64, -Qualcomm Snapdragon 630,Cortex-A53,Snapdragon,,,,2200,8/8,14,ARM,,2417,Adreno 508,~6.7,,,,,,,,,,,,,,,,,,,,,,,,,,,4256,,,865,4172,,,,,,,,,5011,16.25,,38, -Qualcomm Snapdragon 626,Cortex-A53,Snapdragon,,,,2200,8/8,14,ARM,,2869,Adreno 506,~5.3,,,,,,,,,,,,,,,,,,,,,,,,,,,4557,,,928.5,4496.5,187,1098,,,,,,,4705.5,17.94,19.78,, -Qualcomm Snapdragon 801 MSM8974AC,Krait 400,Snapdragon,2MB,,,2450,4/4,28,ARM,,3836,Adreno 330,~18,,,,,,,,,,,,,,,,,,,,,,,,,,,3594,965.5,2709,1024,2658,,,,,,,18438,826,4549.5,,,, -Samsung Exynos 5430 Octa,Cortex-A7/-A15,Exynos,512KB,,,1800,8/8,20,ARM,,3415,Mali-T628 MP6,~22.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,951,3209,782,2457,,,,,,,,445.7,5640,,,, -UNISOC SC9863A,Cortex-A55,,+ 512KB,,,1200 ‑ 1600,8/8,28,ARM,,1849,GE8322 / IMG8322,~4.9,,,,,,,,,,,,,,,,,,,,,,,,,,,3189,,,827,3526,155,808.5,138,629,,,92404,,4018,14.69,13.26,30.5, -Mediatek Helio P23 MT6763T,Cortex-A53,Mediatek Helio 20,,,,2300 ‑ 2500,8/8,16,ARM,,2305,Mali-G71 MP2,~6.7,,,,,,,,,,,,,,,,,,,,,,,,,,,2632,,,829,3678,,,,,,,103595,,3913.5,15.99,,, -Mediatek Helio P23 MT6763V,Cortex-A53,Mediatek Helio 20,,,,2000,8/8,16,ARM,,2305,Mali-G71 MP2,~5.2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,804,3691,154.5,854.5,150,875,,,100256,,4274,,,29, -Mediatek MT6595,Cortex-A7/-A17,Mediatek,2MB,,,2200,8/8,28,ARM,,3599,PowerVR G6200,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Qualcomm Snapdragon 801 APQ8074AB,Krait 400,Snapdragon,2MB,,,2360,4/4,28,ARM,,3671,Adreno 330,~24.9,,,,,,,,,,,,,,,,,,,,,,,,,,,3982,915,2327,,,,,,,,,,1047,4127,,,, -Qualcomm Snapdragon 801 MSM8974AB,Krait 400,Snapdragon,2MB,,,2360,4/4,28,ARM,,3836,Adreno 330,~21.5,,,,,,,,,,,,,,,,,,,,,,,,,,,3717,919,2619,,,,,,,,,17428,772.5,3131,,,, -Nvidia Tegra 4,Wayne (Cortex A15),Tegra,,,,1800,4/4,28,ARM,,3998,GeForce Tegra 4,~15.6,,,,,,,,,,,,,,,,,,,,,,,,,,,3887,922,2513,909,2382,,,,,,,16687,599.5,4901,,18.8,40, -Mediatek MT6595M,Cortex-A7/-A17,Mediatek,2MB,,,2000,8/8,28,ARM,,3599,PowerVR G6200,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Qualcomm Snapdragon 801 MSM8974AA,Krait 400,Snapdragon,2MB,,,2260,4/4,28,ARM,,3428,Adreno 330,~27.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,913,2570,,,,,,,,,,1509,4529.5,,,, -Qualcomm Snapdragon 625,Cortex-A53,Snapdragon,,,,2000,8/8,14,ARM,,2869,Adreno 506,~7.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,925,4792,872.5,4319.5,171,1023,,,,,156240,,4502,15.99,17.17,36.5, -UNISOC Tiger T310,,,,,,1800 ‑ 2000,4/4,12,ARM,,1694,PowerVR GE8300,~8.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1687,2969,,,376,756,,,1653,,11986,39.15,28.2,63,45 -Qualcomm Snapdragon 439,Cortex-A53,Snapdragon,,,,2000,8/8,12,ARM,,2002,Adreno 505,~5.5,,,,,,,,,,,,,,,,,,,,,,,,,,,3684,,,877.5,3154,177,812,176,823,,,105520,,4755.5,16.3,18.23,35.5, -JLQ JR510,Cortex-A53,,,,,1500 ‑ 2000,8/8,11,ARM,,2002,Mali-G52 MP1,~5.1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,934,2671,,,164,818,,,1033,,5975,,14.9,46,25 -HiSilicon Kirin 925,Cortex-A15 / Cortex-A7,,,,,1800,8/8,28,ARM,,3394,Mali-T628 MP6,~21.9,,,,,,,,,,,,,,,,,,,,,,,,,,,,896.5,3214,767,1899,,,,,,,,704.5,6461,,,, -Qualcomm Snapdragon 800 MSM8974,Krait 400,Snapdragon,2MB,,,2300,4/4,28,ARM,,3836,Adreno 330,~17.8,,,,,,,,,,,,,,,,,,,,,,,,,,,3845,908,2641,991,2330,,,,,,,15263.5,739,4089.5,,,, -Mediatek Helio P20 (LP4) MT6757,Cortex-A53,Mediatek Helio 20,,,,2300,8/8,16,ARM,,2857,Mali-T880 MP2,~8.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,845,3580,,,,,,,130988,,4376.5,,,, -Samsung Exynos 5420 Octa,Cortex-A7/-A15,Exynos,512KB,,,1800,8/8,28,ARM,,3738,UHD Graphics 750,~17.2,,,,,,,,,,,,,,,,,,,,,,,,,,,3589,927.5,2751,818,2145,,,,,,,18111,1067,4297,,,, -HiSilicon Kirin 920,Cortex-A15 / Cortex-A7,,,,,1700,8/8,28,ARM,,3394,Mali-T628 MP4,~18.9,,,,,,,,,,,,,,,,,,,,,,,,,,,,858,3102,738,1752,,,,,,,18892,725,6363,,,, -Samsung Exynos 7880,A53,Exynos,,,,1900,8/8,14,ARM,,2544,Mali-T830 MP3,~5.7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,773,4104,,,,,,,,,5256,,,, -HiSilicon Kirin 935,Cortex-A53,,,,,2200,8/8,28,ARM,,3213,Mali-T628 MP4,~26.1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,800,2912,,,,,,,,992,4376,,,, -HiSilicon Kirin 659,Cortex-A53,,,,,2360,8/8,16,ARM,,2469,Mali-T830 MP2,~16.3,,,,,,,,,,,,,,,,,,,,,,,,,,,3897,,,926.5,3680.5,,,,,,,127602,1173,4980,16.77,16.42,40, -Samsung Exynos 7884B,Cortex-A73/-A53,Exynos,,,,1560,8/8,14,ARM,,2179,Mali-G71 MP2,~7.4,,,,,,,,,,,,,,,,,,,,,,,,,,,3886,,,1212,3714,,,,,,,,,7065,22.46,21.63,48, -HiSilicon Kirin 658,Cortex-A53,,,,,2350,8/8,16,ARM,,2469,Mali-T830 MP2,~5.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,913,3460,,,,,,,,,4589,,,, -Mediatek Helio X10 MT6795,Cortex-A53,Mediatek,,,,2200,8/8,28,ARM,,3445,PowerVR G6200,~5.1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,789,2041,,,,,,,,,,,,, -Samsung Exynos 7870 Octa,A53,Exynos,,,,1600,8/8,14,ARM,,2862,Mali-T830 MP2,~4.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,732,3710,,,,,,,,,3880,12.04,13,31.5, -HiSilicon Kirin 655,Cortex-A53,,,,,2100,8/8,16,ARM,,2636,Mali-T830 MP2,~12.7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,162396,,4414.5,,,, -HiSilicon Kirin 650,Cortex-A53,,,,,2000,8/8,16,ARM,,2819,Mali-T830 MP2,~11.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,142543,,4472,,,, -HiSilicon Kirin 930,Cortex-A53,,,,,2000,8/8,28,ARM,,3213,Mali-T628 MP4,~25.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,760.5,3211.5,,,,,,,,,125047,1092.5,4084,,,, -Mediatek Helio P35 MT6765,Cortex-A53,Mediatek,,,,1800 ‑ 2300,8/8,16,ARM,,1845,PowerVR GE8320,~4.8,,,,,,,,,,,,,,,,,,,,,,,,,,,4143,,,855,3973,173,1002,168.5,934.5,,,,,4643,15.83,14.59,31.5, -Mediatek Helio P22T MT8768T,Cortex-A53,Mediatek,,,,2300,8/8,16,ARM,,2059,PowerVR GE8320,~4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,842,3870,173,920,166,936,,,5163,,5080,18.53,13.9,35, -Mediatek Helio P22 MT6762,Cortex-A53,Mediatek Helio 20,,,,2000,8/8,16,ARM,,2148,PowerVR GE8320,~4.3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,773.5,3505.5,,,137,805,,,,,4257,13.68,14.7,29, -Mediatek Helio P10 MT6755,Cortex-A53,Mediatek,,,,2000,8/8,28,ARM,,3445,Mali-T860 MP2,~18.6,,,,,,,,,,,,,,,,,,,,,,,,,,,3064,,,720.5,2926.5,,,,,,,102616,1107,3964.5,,,31, -Apple A7,Cyclone,,1MB + 4MB,,,1300,2/2,28,ARM,,3753,UHD Graphics 750,~21.3,,,,,,,,,,,,,,,,,,,,,,,,,,,,1383,2495.5,,,,,276,502,,,35725.5,399.3,5180,,,, -MediaTek MT8168,Cortex-A53,Mediatek MT8,,,,2000,4/4,12,ARM,,1315,Mali-G52 MP1,~5.1,,,,,,,,,,,,,,,,,,,,,,,,,,,2538,,,835,2469.5,,,144,500,,,70655,,4168.5,,12.2,30, -Qualcomm Snapdragon 450,Cortex-A53,Snapdragon,,,,1800,8/8,14,ARM,,2366,Adreno 506,~5.7,,,,,,,,,,,,,,,,,,,,,,,,,,,3783.5,,,758,3907,,,131,498,,,101906,,3997,15.76,12.45,31.5, -Samsung Exynos 5410 Octa,Cortex-A7/-A15,Exynos,512KB,,,1600,8/8,28,ARM,,3933,UHD Graphics 750,~4.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,683,1696,,,,,,,,,,,,, -Intel Atom x3-C3440,SoFIA LTE,Atom,1MB,,,1200 ‑ 1400,4/4,28,,,3215,UHD Graphics 750,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Samsung Exynos 5260 Hexa,Cortex-A15,Exynos,,,,1700,6/6,28,ARM,,3581,UHD Graphics 750,~20.6,,,,,,,,,,,,,,,,,,,,,,,,,,,2957,884,2156,,,,,,,,,15547,999,4316,,,, -Qualcomm Snapdragon 429,Cortex-A53,Snapdragon,,,,2000,4/4,12,ARM,,1999,Adreno 504,~4.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,860,2485,168,552,168,566,,,70208,,4344.5,15.33,14.54,34, -Mediatek Helio A22 MT6762M,Cortex-A53,Mediatek Helio 20,,,,2000,4/4,16,ARM,,2148,PowerVR GE8320,~4.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,825,2471,161,538,,,,,66909,,4355,,15.49,32, -Mediatek Helio A22 MT6761,Cortex-A53,Mediatek Helio 20,,,,2000,4/4,16,ARM,,2148,PowerVR GE8300,~5,,,,,,,,,,,,,,,,,,,,,,,,,,,2414,,,835.5,2395,,,140,488,189,491,67423,,4538.5,15.4,14.71,34,24 -Mediatek MT8766B,Cortex-A53,Mediatek MT8,,,,2000,4/4,12,ARM,,1267,PowerVR GE8300,~12,,,,,,,,,,,,,,,,,,,,,,,,,,,2227,,,783,2217,,,133,455,,,,1609,3920,15.01,12.6,27, -Mediatek Helio A20 MT6761D,Cortex-A53,Mediatek Helio 20,,,,1800,4/4,12,ARM,,1267,PowerVR GE8300,~4.2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,143.5,477,,,61213,,3938,14.28,12.8,26.5, -Mediatek MT8135,Cortex-A7/-A15,Mediatek,,,,1700,4/4,28,ARM,,3796,PowerVR G6200,~20.2,,,,,,,,,,,,,,,,,,,,,,,,,,,2797.5,765.5,1492.5,,,,,,,,,11615.5,992,5864.5,,,, -Rockchip RK3566,ARM Cortex-A55,,,,,‑ 2000,4/4,22,ARM,,1449,Mali-G52 MP2,~4.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,745,1418,,,143,312,203,493,,,5022,19.86,15.75,36,21 -Samsung Exynos 5250 Dual,Cortex A15,Exynos,1MB,,,1700,2/2,32,ARM,,4055,UHD Graphics 750,~34.5,,,,,,,,,,,,,,,,,,,,,,,,,,,2591,,,,,,,,,,,,720.5,4943,,,, -Mediatek MT8752,Cortex-A53,Mediatek,,,,1700,8/8,28,ARM,,3336,Mali-T760 MP2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Mediatek MT6752,Cortex-A53,Mediatek,,,,1700,8/8,28,ARM,,3445,Mali-T760 MP2,~23.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,740.5,3766.5,,,,,,,,,30455,1049,4139,,,, -Samsung Exynos 7580 Octa,Cortex-A53,Exynos,,,,1600,8/8,28,ARM,,3063,Mali-T720 MP2,~28.9,,,,,,,,,,,,,,,,,,,,,,,,,,,,721,3607,,,,,,,,,,735,3627,,,, -Qualcomm Snapdragon 617 MSM8952,Cortex-A53,Snapdragon,,,,1500,8/8,28,ARM,,3018,Adreno 405,~44.9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1228,3527,,,, -Qualcomm Snapdragon 616 MSM8939v2,Cortex-A53,Snapdragon,,,,1700,8/8,28,ARM,,3586,Adreno 405,~33.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,96167,1299,3155,,,, -Qualcomm Snapdragon 615 MSM8939,Cortex-A53,Snapdragon,,,,1700,8/8,28,ARM,,3586,Adreno 405,~19.2,,,,,,,,,,,,,,,,,,,,,,,,,,,2579,638,2370,,,,,,,,,12996.5,1213,3411,,,, -HiSilicon Kirin 620,Cortex-A53,,,,,1200,8/8,28,ARM,,3306,Mali-450 MP4,~41.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1679.5,2170,,,, -Rockchip RK3288,,,,,,1800,4/4,28,ARM,,3428,Mali-T760 MP4,~29.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,778.5,2182.5,,,,,,,,,,745.5,7107,,,, -Mediatek MT6753,Cortex-A53,Mediatek,,,,1500,8/8,28,ARM,,3216,Mali-T720 MP4,~18.2,,,,,,,,,,,,,,,,,,,,,,,,,,,,612.5,2483,653,2505,,,,,,,120120,1562,2855,,,, -Mediatek MT6750S,Cortex-A53,Mediatek,,,,1500,8/8,28,ARM,,2179,Mali-T860 MP2,~4.3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,646,2466.5,,,,,,,,,3448,,,22, -Mediatek MT6750N,Cortex-A53,Mediatek,,,,1500,8/8,28,ARM,,2179,Mali-T860 MP2,~4.2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,665,2645,,,,,,,,,3274,,,, -Mediatek MT6750,Cortex-A53,Mediatek,,,,1500,8/8,28,ARM,,2697,Mali-T860 MP2,~13.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,612,2617,,,,,,,75778,2042,3200,11.3,12.5,19, -Mediatek MT6750T,Cortex-A53,Mediatek,,,,1500,8/8,28,ARM,,2697,Mali-T860 MP2,~4.2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,658.5,2680,,,,,,,,,3192.5,,,, -Qualcomm Snapdragon W5+ Gen 1,ARM Cortex-A53,,,,,1700,4/4,4,,,157,UHD Graphics 750,~30.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1251.7,3710,,11,, -Qualcomm Snapdragon W5 Gen 1,ARM Cortex-A53,,,,,1700,4/4,4,,,157,UHD Graphics 750,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Qualcomm Snapdragon 610 MSM8936,Cortex-A53,Snapdragon,,,,1700,4/4,28,ARM,,3586,Adreno 405,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -MediaTek MT8163 V/A 1.5 GHz,Cortex-A53,,,,,1500,4/4,28,ARM,,3063,Mali-T720 MP2,~2.6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,636,1781,134,375,,,,,,,3261,,,, -Mediatek MT6592,Cortex-A7,Mediatek,1MB,,,1700,8/8,28,ARM,,3682,Mali-450 MP4,~18.7,,,,,,,,,,,,,,,,,,,,,,,,,,,2561,445,2390,,,,,,,,,25313.5,1182,2563.5,,,, -Qualcomm Snapdragon 600 APQ8064T,Krait-300,Snapdragon,2MB,,,1700,4/4,28,ARM,,3998,Adreno 320,~19.1,,,,,,,,,,,,,,,,,,,,,,,,,,,2721,637,1900,,,,,,,,,11659,1089,1988,,,, -Samsung Exynos 7578,Cortex-A53,Exynos,,,,1500,4/4,,ARM,,2850,Mali-T720 MP2,~26.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,703,2201,,,,,,,,,,1413,3566,,,, -HiSilicon Kirin 910T,Cortex-A9,,,,,1800,4/4,28,ARM,,3520,UHD Graphics 750,~21.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,599,1796,,,,,,,,,12178,1043,2775,,,, -MediaTek MT8163 V/B 1.3 GHz,Cortex-A53,,,,,1300,4/4,28,ARM,,3063,Mali-T720 MP2,~3.6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,640,1767,,,,,,,,,2853.5,,11.11,23, -MediaTek MT8161,Cortex-A53,,,,,1300,4/4,28,ARM,,3275,Mali-T720 MP2,~29.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,43768,1713,2510,,,, -Intel Atom x3-C3230RK,SoFIA 3G-R,Atom,,,,1100,4/4,28,,,3215,Mali-450 MP4,~4,,,,,,,,,,,,,,,,,,,,,,,,,,,,334,860,,,,,,,,,,,,,,, -Qualcomm Snapdragon 435,Cortex-A53,Snapdragon,,,,1400,8/8,28,ARM,,2869,Adreno 505,~17.9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,666,2582,,,,,,,81667,1979,3209,,,27, -Qualcomm Snapdragon 430 (MSM8937),Cortex-A53,Snapdragon,,,,1400,8/8,28,ARM,,2869,Adreno 505,~4.2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,658.5,2552.5,,,,,,,,,3293.5,10.99,,29, -Qualcomm Snapdragon 415 MSM8929,Cortex-A53,Snapdragon,,,,1400,8/8,28,ARM,,3227,Adreno 405,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Qualcomm Snapdragon S4 Pro APQ8064A,ARMv7,Snapdragon,2MB,,,1500,4/4,28,ARM,,4314,Adreno 320,~17.7,,,,,,,,,,,,,,,,,,,,,,,,,,,2026,498,1473,,,,,,,,,10517.5,1337,2223,,,, -Mediatek MT8732,Cortex-A53,Mediatek,,,,1500,4/4,28,ARM,,3336,Mali-T760 MP2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Mediatek MT8165,Cortex-A53,Mediatek,,,,1500,4/4,28,ARM,,3336,Mali-T760 MP2,~22.7,,,,,,,,,,,,,,,,,,,,,,,,,,,,686,2031,,,,,,,,,59688,1358,4116,,,, -Mediatek MT6739,Cortex-A53,Mediatek,,,,1500,4/4,28,ARM,,2274,PowerVR GE8100,~3.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,653,1779,,,,,,,,,3126,10.64,,25, -Mediatek MT6739WW,Cortex-A53,Mediatek,,,,1500,4/4,28,ARM,,2274,PowerVR GE8100,~4.2,,,,,,,,,,,,,,,,,,,,,,,,,,,1788,,,589,1718,,,,,,,49040,,3213,,10.24,27, -Mediatek MT6732,Cortex-A53,Mediatek,,,,1500,4/4,28,ARM,,3397,Mali-T760 MP2,~27.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,711,2078,,,,,,,,,,979,3489,,,, -Mediatek MT6735,Cortex-A53,Mediatek,,,,1500,4/4,28,ARM,,3353,Mali-T720,~15.3,,,,,,,,,,,,,,,,,,,,,,,,,,,,505.5,1443.5,519,1430,,,,,,,34641,1750,2657,,,, -Qualcomm Snapdragon 425 (MSM8917),Cortex-A53,Snapdragon,,,,1400,4/4,28,ARM,,2862,Adreno 308,~3.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,660.5,1849,,,,,,,,,3052,9.13,10.8,26, -Mediatek MT8735,Cortex-A53,Mediatek,,,,1300,4/4,28,ARM,,3353,Mali-T720,~3.6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,617.5,1765,,,,,,,,,2718,,,, -Mediatek MT6737T,Cortex-A53,Mediatek,,,,1500,4/4,28,ARM,,2767,Mali-T720 MP2,~16.2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,672,1876.5,,,,,,,2040,1861,3266,,,27, -Mediatek MT6737,Cortex-A53,Mediatek,,,,1250,4/4,28,ARM,,2767,Mali-T720 MP2,~12.8,,,,,,,,,,,,,,,,,,,,,,,,,,,1573,,,537,1504,,,58,291,,,45882,1825,2392,,,, -Rockchip RK3188,Cortex-A9,,,,,1800,4/4,28,ARM,,4005,Mali-400 MP4,~17.7,,,,,,,,,,,,,,,,,,,,,,,,,,,1182,504,1421,,,,,,,,,10965,1240,3093.5,,,, -Samsung Exynos 7570 Quad,Cortex-A53,Exynos,,,,1400,4/4,14,ARM,,2393,Mali-T720 MP2,~3.7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,631.5,1856.5,,,,,,,,,3027,,,, -Qualcomm Snapdragon 410 MSM8916,Cortex-A53,Snapdragon,,,,1400,4/4,28,ARM,,3663,Adreno 306,~13.6,,,,,,,,,,,,,,,,,,,,,,,,,,,,476,1426,516,1322,,,,,,,9857,1380,2737.5,,9.03,, -Qualcomm Snapdragon 410 APQ8016,Cortex-A53,Snapdragon,,,,1200,4/4,28,ARM,,3663,Adreno 306,~24.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,482,1443,,,,,,,,,,1415,2968.5,,,, -Apple S9 SiP,Thunder,,,,,1800,2/2,4,ARM,,99,UHD Graphics 750,~48.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,902.3,,,38.9,, -Samsung Exynos W930,ARM Cortex-A55,,,,,1400,2/2,5,,,146,Mali-G68 MP2,~29.3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1464.05,2581,,8.55,, -HiSilicon Kirin 910,Cortex-A9,,,,,1600,4/4,28,ARM,,3520,UHD Graphics 750,~17.6,,,,,,,,,,,,,,,,,,,,,,,,,,,1938,509,1547.5,,,,,,,,,11258,1360.5,1535,,,, -Intel Atom Z2760,Cloverview,Atom,1MB,,1.7 / 3,1800,2/4,32,x86,,4101,SGX545,~11,945,601.5,1696.5,0.18,0.53,,,,,,,84.6,4233,58.1,1892,713,17.75,3.28,,0.06,0.07,0.06,,,,,1397.5,,,,,,,,,,,,812.5,,,,, -Qualcomm Snapdragon 400 MSM8928,ARMv7,Snapdragon,,,,1600,4/4,28,ARM,,3824,Adreno 305,~19.6,,,,,,,,,,,,,,,,,,,,,,,,,,,,398.5,1338,,,,,,,,,7929,1404.5,2335,,,, -Qualcomm Snapdragon 215,Cortex-A53,Snapdragon 200,,,,1300,4/4,28,ARM,,1625,Adreno 308,~3.2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,606,1556,,,,,,,,,1986,,,, -Qualcomm Snapdragon 400 APQ8028,ARMv7,Snapdragon,,,,1600,4/4,28,ARM,,3824,Adreno 305,~18,,,,,,,,,,,,,,,,,,,,,,,,,,,1596,435,1489,,,,,,,,,9698,958,1759,,,, -Mediatek MT6735P,Cortex-A53,Mediatek,,,,1000,4/4,28,ARM,,3353,Mali-T720,~1.9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14483,,2089.5,,,, -Mediatek MT6735M,Cortex-A53,Mediatek,,,,1000,4/4,28,ARM,,3185,Mali-T720,~1.9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14977,,1929,,,, -Marvell Armada PXA1908,Cortex-A53,,,,,1200,4/4,28,ARM,,3336,GC7000UL,~4.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,575,1717,,,,,,,,,10868,,2059,,,, -Apple S8,Thunder,,,,,1800,2/2,7,ARM,,1562,UHD Graphics 750,~28.1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1867.3,838,,22.6,, -Apple S7,Thunder,,,,,1800,2/2,,,,1562,UHD Graphics 750,~28.3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1785,810,,21.74,, -Apple S6,Thunder,,,,,1800,2/2,,,,1562,UHD Graphics 750,~80.2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1807,,,,, -Qualcomm Snapdragon Wear 4100+,ARM Cortex-A53,,,,,‑ 1700,5/5,12,ARM,,1268,Adreno 504,~28.6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1702,2752,,11.6,, -Qualcomm Snapdragon Wear 4100,ARM Cortex-A53,,,,,‑ 1700,4/4,12,ARM,,1268,Adreno 504,~31.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1019,3444,,14.13,, -Apple A6x,,,,,,1400,2,32,ARM,,4075,UHD Graphics 750,~7.5,,,,,,,,,,,,,,,,,,,,,,,,,,,1768,781,1424,,,,,,,,,,,,,,, -Intel Atom Z2580,Cloverview,Atom,1MB,,3,1300 ‑ 2000,2/4,32,x86,,4359,SGX544MP2,~18.6,,,,,,,,,,,,,,,,,,,,,,,,,,,1479,552,1302.5,,,,,,,,,11276,847,2822,,,, -Qualcomm Snapdragon S4 Pro MSM8960DT,Krait 300,Snapdragon,1MB,,,1700,2/2,28,ARM,,3824,Adreno 320,~22.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,682,1263,,,,,,,,,6979,622,3187,,,, -Qualcomm Snapdragon S4 Pro MSM8960T,ARMv7,Snapdragon,1MB,,,1700,2/2,28,ARM,,4280,Adreno 320,~17.6,,,,,,,,,,,,,,,,,,,,,,,,,,,1848,583.5,1098,,,,,,,,,7065,1421.5,2018,,,, -Qualcomm Snapdragon 400 8930AB,ARMv7,Snapdragon,1MB,,,1700,2/2,28,ARM,,4005,Adreno 305,~31.2,,,,,,,,,,,,,,,,,,,,,,,,,,,1907,,,,,,,,,,,7051,1117.5,,,,, -Qualcomm Snapdragon S4 Plus APQ8060A,ARMv7,Snapdragon,1MB,,,1500,2/2,28,ARM,,4314,Adreno 225,~3.9,,,,,,,,,,,,,,,,,,,,,,,,,,,1473,,,,,,,,,,,,,,,,, -Qualcomm Snapdragon S4 Plus MSM8960,ARMv7,Snapdragon,1MB,,,1500,2/2,28,ARM,,4314,Adreno 225,~31.2,,,,,,,,,,,,,,,,,,,,,,,,,,,1626.5,,,,,,,,,,,5589,1045.5,,,,, -Qualcomm Snapdragon S4 Plus MSM8260A,ARMv7,Snapdragon,1MB,,,1700,2/2,28,ARM,,4314,Adreno 225,~4,,,,,,,,,,,,,,,,,,,,,,,,,,,1525,,,,,,,,,,,,,,,,, -Intel Atom Z2560,Cloverview,Atom,1MB,,3,933 ‑ 1600,2/4,32,x86,,4359,SGX544MP2,~17.6,,,,,,,,,,,,,,,,,,,,,,,,,,,1221,451,1056,,,,,,,,,9263,1100.5,3081,,,, -AMD Z-60,Hondo,Z-Series,1MB,,4.5,1000,2/2,40,x86,,4057,Radeon HD 6250,~8.8,,669,1249,0.2,0.37,,,,,,,75,1566,114,3574,348,11.24,1.95,,,,,,,,,1075,,,,,,,,,,,,,,,,, -AMD Z-01,Desna,Z-Series,1MB,,5.9,1000,2/2,40,x86,,4585,UHD Graphics 750,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Apple A6,,,,,,1000,2,32,ARM,,4116,UHD Graphics 750,~23.1,,,,,,,,,,,,,,,,,,,,,,,,,,,1648,705.5,1273,,,,,,,,,24996,722,,,,, -Intel Atom x3-C3130,SoFIA 3G,Atom,512KB,,,1000,2/2,28,x86,,3215,Mali-400 MP2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Samsung Exynos 4412 Quad,Cortex A9,Exynos,,,,1400,4/4,32,ARM,,4219,UHD Graphics 750,~31.4,,,,,,,,,,,,,,,,,,,,,,,,,,,1886.5,,,,,,,,,,,10466,1109,,,,, -NVIDIA Tegra 3,Kal-El,Tegra,,,,1200 ‑ 1300,4/4,40,ARM,,4424,GeForce ULP (Tegra 3),~16.9,,,,,,,,,,,,,,,,,,,,,,,,,,,1455.5,354.5,1084,,,,,,,,,8638,1257,1741,,,, -Apple S5,,,,,,,2/2,,,,1562,UHD Graphics 750,~77.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2022,,,,, -Mediatek MT8127,Cortex-A7,Mediatek,512KB,,,1500,4/4,28,ARM,,3489,Mali-450 MP4,~16.5,,,,,,,,,,,,,,,,,,,,,,,,,,,,383.5,1274,448,1216,,,,,,,,1713.5,2358,,,, -Mediatek MT6589T,Cortex-A7,Mediatek,2MB,,,1500,4/4,28,ARM,,3824,SGX544,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Mediatek MT8389,Cortex-A7,Mediatek,1MB,,,1200,4/4,28,ARM,,3857,SGX544,~16.3,,,,,,,,,,,,,,,,,,,,,,,,,,,1301,325,1069,,,,,,,,,8323,1464,1355,,,, -Mediatek MT8125,Cortex-A7,Mediatek,1MB,,,1200,4/4,28,ARM,,3857,SGX544,~16.7,,,,,,,,,,,,,,,,,,,,,,,,,,,1315.5,325.5,1110,,,,,,,,,8406,1341.5,1915,,,, -Spreadtrum SC9830A,Cortex-A7,Spreadtrum,,,,1500,4/4,28,ARM,,2910,Mali-400 MP2,~4.3,,,,,,,,,,,,,,,,,,,,,,,,,,,,405,1280,,,,,,,,,,,2842,,,, -Samsung Exynos 3470 Quad,Cortex-A7,Exynos,,,,1400,4/4,28,ARM,,3459,Mali-400 MP4,~17.2,,,,,,,,,,,,,,,,,,,,,,,,,,,1207,369,1113,,,,,,,,,8008,1119,2019,,,, -Samsung Exynos 3475 Quad,Cortex-A7,Exynos,,,,1300,4/4,28,ARM,,3094,UHD Graphics 750,~3.7,,,,,,,,,,,,,,,,,,,,,,,,,,,,350,1171,,,,,,,,,,,2323,,,, -Mediatek MT8321,Cortex-A7,Mediatek,1MB,,,1300,4/4,28,ARM,,2728,Mali-400 MP2,~2.2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,430,1116.5,,,,,,,,,1715,,5.68,13, -Mediatek MT8121,Cortex-A7,Mediatek,1MB,,,1300,4/4,28,ARM,,3824,SGX544,~16.6,,,,,,,,,,,,,,,,,,,,,,,,,,,1298,351,1140.5,,,,,,,,,9761,1453,2085,,,, -Mediatek MT6582,Cortex-A7,Mediatek,512KB,,,1300,4/4,28,ARM,,3732,Mali-400 MP2,~16.4,,,,,,,,,,,,,,,,,,,,,,,,,,,1416,353,1169.5,,,,,,,,,9807,1578.5,2105,,,, -Mediatek MT6582M,Cortex-A7,Mediatek,512KB,,,1300,4/4,28,ARM,,3640,Mali-400 MP2,~16.7,,,,,,,,,,,,,,,,,,,,,,,,,,,1424,350,1179,,,,,,,,,9264,1441.5,2172,,,, -Mediatek MT6580M,Cortex-A7,Mediatek,512KB,,,1300,4/4,28,ARM,,2910,Mali-400 MP2,~2.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,356,1170.5,426,1161.5,,,63,248,,,,,2138.5,,,, -Spreadtrum SC7731,Cortex-A7,Spreadtrum,,,,1300,4/4,28,ARM,,3275,Mali-400 MP2,~3.6,,,,,,,,,,,,,,,,,,,,,,,,,,,,351,1075,,,,,,,,,,,2300,,,, -Qualcomm Snapdragon 212 APQ8009,Cortex-A7,Snapdragon 200,,,,1300,4/4,28,ARM,,3094,Adreno 304,~3.2,,,,,,,,,,,,,,,,,,,,,,,,,,,,331,1075,423,1118,,,,,,,,,2152,,,, -Qualcomm Snapdragon 400 MSM8926,ARMv7,Snapdragon,,,,1200,4/4,28,ARM,,3852,Adreno 305,~16.2,,,,,,,,,,,,,,,,,,,,,,,,,,,1378,340,1123,,,,,,,,,7511.5,1607.5,1838,,,, -Qualcomm Snapdragon 400 MSM8226,ARMv7,Snapdragon,,,,1200,4/4,28,ARM,,4032,Adreno 305,~16.8,,,,,,,,,,,,,,,,,,,,,,,,,,,1279,341,1147,,,,,,,,,7300.5,1243,1449,,,, -Qualcomm Snapdragon 400 APQ8026,ARMv7,Snapdragon,,,,1200,4/4,28,ARM,,3824,Adreno 305,~17,,,,,,,,,,,,,,,,,,,,,,,,,,,1279,327,1075,,,,,,,,,6717,1137,1810,,,, -Mediatek MT6589,Cortex-A7,Mediatek,,,,1200,4/4,28,ARM,,4025,SGX544,~16.4,,,,,,,,,,,,,,,,,,,,,,,,,,,1347,327,1097,,,,,,,,,8336,1451,1449,,,, -Qualcomm Snapdragon 200 MSM8212,Cortex-A7,Snapdragon 200,,,,1200,4/4,28,ARM,,3824,Adreno 302,~23.7,,,,,,,,,,,,,,,,,,,,,,,,,,,,329,1113,,,,,,,,,,1331,1233,,,, -Qualcomm Snapdragon 210 MSM8909,Cortex-A7,Snapdragon 200,,,,1100,4/4,28,ARM,,3094,Adreno 304,~15.1,,,,,,,,,,,,,,,,,,,,,,,,,,,,302,1019,430.5,1117,,,,,,,,2255,1949,,,, -Marvell PXA1088,Cortex-A7,,,,,1200,4/4,40,ARM,,3956,UHD Graphics 750,~15.8,,,,,,,,,,,,,,,,,,,,,,,,,,,1277,312,990,,,,,,,,,5776.5,1651,1091,,,, -Qualcomm Snapdragon Wear 3100,ARM Cortex-A7,,,,,‑ 1200,4/4,28,ARM,,1927,Adreno 304,~34.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2997,1730,,,, -Qualcomm Snapdragon Wear 2500,ARM Cortex-A7,,,,,‑ 1200,4/4,28,ARM,,1927,UHD Graphics 750,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Qualcomm Snapdragon Wear 2100,ARM Cortex-A7,,,,,‑ 1200,4/4,28,ARM,,1927,UHD Graphics 750,~30.1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3744,1374,,,, -Qualcomm Snapdragon S4 Plus MSM8930,ARMv7,Snapdragon,1MB,,,1200,2/2,28,ARM,,4097,Adreno 305,~20.1,,,,,,,,,,,,,,,,,,,,,,,,,,,1276.5,432,788,,,,,,,,,3464,1189,,,,, -Qualcomm Snapdragon S4 Plus MSM8230,ARMv7,Snapdragon,1MB,,,1200,2/2,28,ARM,,4097,Adreno 305,~18.6,,,,,,,,,,,,,,,,,,,,,,,,,,,1082,454,457,,,,,,,,,4294,1811.5,,,,, -Qualcomm 205,Cortex-A7,Snapdragon,,,,1100,2/2,28,ARM,,2466,Adreno 304,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Atom Z2480,Penwell,Atom,512KB,,,2000,1/2,32,x86,,4359,SGX540,~2.6,,,,,,,,,,,,,,,,,,,,,,,,,,,995,,,,,,,,,,,,,,,,, -Intel Atom Z2460,Penwell,Atom,512KB,,4?,1300 ‑ 1600,1/2,32,x86,,4359,SGX540,~2.2,,,,,,,,,,,,,,,,,,,,,,,,,,,853,,,,,,,,,,,,,,,,, -Qualcomm Snapdragon S4 Plus MSM8227,ARMv7,Snapdragon,1MB,,,1000,2/2,28,ARM,,4314,Adreno 305,~18.5,,,,,,,,,,,,,,,,,,,,,,,,,,,963,349,619,,,,,,,,,3632,1669.5,,,,, -Samsung Exynos 4212 1.5 GHz,Cortex A9,Exynos,1MB,,,1500,2/2,32,ARM,,4466,UHD Graphics 750,~30.5,,,,,,,,,,,,,,,,,,,,,,,,,,,1240.5,,,,,,,,,,,4814.5,1128,,,,, -Texas Instruments OMAP 4470,Cortex A9,,,,,1500,2/2,45,ARM,,4493,UHD Graphics 750,~3.6,,,,,,,,,,,,,,,,,,,,,,,,,,,1381,,,,,,,,,,,,,,,,, -HiSilicon k3v2 Hi3620,,,,,,1200,4/4,40,ARM,,4315,UHD Graphics 750,~19.2,,,,,,,,,,,,,,,,,,,,,,,,,,,1557,327,1094,,,,,,,,,8678,1610,,,,, -Rockchip RK3066 1.5 GHz,,,512KB,,,1500,2/2,40,ARM,,4280,Mali-400 MP4,~27.3,,,,,,,,,,,,,,,,,,,,,,,,,,,1007.5,,,,,,,,,,,5852,1959,,,,, -Qualcomm Snapdragon S4 Play MSM8625Q,Cortex-A5,Snapdragon,,,,1200,4/4,45,ARM,,4102,Adreno 203,~36.9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2697,2430,,,,, -Qualcomm Snapdragon 200 8225Q,Cortex-A5,Snapdragon 200,,,,1400,4/4,45,ARM,,4102,Adreno 203,~27.6,,,,,,,,,,,,,,,,,,,,,,,,,,,1010,,,,,,,,,,,6062,1876,,,,, -Qualcomm Snapdragon S4 Play MSM8225Q,Cortex-A5,Snapdragon,,,,1200,4/4,45,ARM,,4102,Adreno 203,~37.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6341,2379,,,,, -MediaTek MT8312,,Mediatek,,,,1300,2/2,28,ARM,,3640,Mali-400 MP,~16.1,,,,,,,,,,,,,,,,,,,,,,,,,,,809,343,646,,,,,,,,,4457,1390,1477,,,, -Renesas MP5232,Cortex-A9,,,,,1500,2/2,,ARM,,4334,UHD Graphics 750,~18.7,,,,,,,,,,,,,,,,,,,,,,,,,,,,373,654,,,,,,,,,4557,1525,1547,,,, -Broadcom BCM21664T,Cortex-A9,,,,,1200,2/2,,ARM,,4036,UHD Graphics 750,~19.2,,,,,,,,,,,,,,,,,,,,,,,,,,,,353,658,,,,,,,,,4230,1316,2121,,,, -Marvell PXA986,Cortex-A9,,,,,1200,2/2,45,ARM,,4145,UHD Graphics 750,~15.9,,,,,,,,,,,,,,,,,,,,,,,,,,,1034.5,379.5,646.5,,,,,,,,,3976,1624,1448,,,, -Amlogic AML8726-MX,,,512KB,,,1500,2/2,45,ARM,,4080,UHD Graphics 750,~2.7,,,,,,,,,,,,,,,,,,,,,,,,,,,1020.5,,,,,,,,,,,,,,,,, -Qualcomm Snapdragon S3 MSM8660,ARMv7,Snapdragon,1MB,,,1700,2/2,45,ARM,,4314,Adreno 220,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Qualcomm Snapdragon S3 MSM8260,ARMv7,Snapdragon,1MB,,,1500,2/2,45,ARM,,4314,Adreno 220,~2.6,,,,,,,,,,,,,,,,,,,,,,,,,,,994,,,,,,,,,,,,,,,,, -Samsung Exynos 4210 1.4 GHz,Cortex A9,Exynos,1MB,,,1400,2/2,45,ARM,,4695,UHD Graphics 750,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Texas Instruments OMAP 4460,Cortex A9,,,,0.6,1200,2/2,45,ARM,,4493,UHD Graphics 750,~20.4,,,,,,,,,,,,,,,,,,,,,,,,,,,1243.5,427,796,,,,,,,,,5787,1096,,,,, -Rockchip RK3168,,,,,,1200,2/2,28,ARM,,4005,SGX540,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Samsung Exynos 4210 1.2 GHz,Cortex A9,Exynos,1MB,,,1200,2/2,45,ARM,,4695,UHD Graphics 750,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -MediaTek MT8377,Cortex-A9,Mediatek,1MB,,,1200,2/2,40,ARM,,4005,SGX531,~2.6,,,,,,,,,,,,,,,,,,,,,,,,,,,993,,,,,,,,,,,,,,,,, -Broadcom BCM28155,Cortex A9,,,,,1200,2/2,40,ARM,,4371,UHD Graphics 750,~1.8,,,,,,,,,,,,,,,,,,,,,,,,,,,679,,,,,,,,,,,,,,,,, -Texas Instruments OMAP 4430,Cortex A9,,,,0.6,1000,2/2,45,ARM,,4677,UHD Graphics 750,~1.1,,,,,,,,,,,,,,,,,,,,,,,,,,,424,,,,,,,,,,,,,,,,, -MediaTek MT6572,Cortex-A7,Mediatek,1MB,,,1200,2/2,28,ARM,,3880,Mali-400 MP,~15.3,,,,,,,,,,,,,,,,,,,,,,,,,,,614,314,575,,,,,,,,,3679.5,1723,1587.5,,,, -Spreadtrum SC8830,Cortex-A7,Spreadtrum,512KB,,,1200,4/4,28,ARM,,3275,Mali-400 MP2,~22.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,329,829,,,,,,,,,,1863.5,2408,,,, -Apple A5x,Cortex A9,,,,,1000,2,32,ARM,,4306,UHD Graphics 750,~19,,,,,,,,,,,,,,,,,,,,,,,,,,,759,262,496,,,,,,,,,11087,1307,,,,, -Qualcomm Snapdragon S4 Play MSM8225,Cortex-A5,Snapdragon,,,,1500,2/2,45,ARM,,4371,Adreno 203,~26,,,,,,,,,,,,,,,,,,,,,,,,,,,545.5,,,,,,,,,,,3040,2178,,,,, -Intel Atom Z2420,Saltwell,Atom,512KB,,,1200,1/2,32,x86,,3999,SGX540,~1.5,,,,,,,,,,,,,,,,,,,,,,,,,,,559.5,,,,,,,,,,,,,,,,, -Apple A5,Cortex A9,,,,,1000,2,40,ARM,,4676,UHD Graphics 750,~2,,,,,,,,,,,,,,,,,,,,,,,,,,,750,,,,,,,,,,,,,,,,, -Nvidia Tegra 2 (250),T20 Harmony,Tegra,1MB,,1,1000,2/2,40,ARM,,5101,GeForce ULP (Tegra 2),~2.3,,,,,,,,,,,,,,,,,,,,,,,,,,,894,,,,,,,,,,,,,,,,, -Qualcomm Snapdragon 200 8210,Cortex-A7,Snapdragon 200,,,,1200,2/2,28,ARM,,3824,Adreno 302,~19.2,,,,,,,,,,,,,,,,,,,,,,,,,,,,324.5,604,,,,,,,,,3466,1246,1746,,,, -MediaTek MT8317T,Cortex-A9,Mediatek,,,,1200,2/2,,ARM,,4005,SGX531,~29.4,,,,,,,,,,,,,,,,,,,,,,,,,,,869,,,,,,,,,,,4319,1347,,,,, -MediaTek MT6577,Cortex-A9,Mediatek,,,,1000,2/2,,ARM,,4193,SGX531,~15.9,,,,,,,,,,,,,,,,,,,,,,,,,,,868.5,314,575,,,,,,,,,3671,1497,1993,,,, -Samsung Exynos W920,ARM Cortex-A55,,,,,1180,2/2,5,ARM,,827,Mali-G68 MP2,~24.2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2804,2023,,7.66,, -Samsung Exynos 9110,ARM Cortex-A53,,,,,1150,2/2,10,ARM,,1491,Mali-T720,~35.7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2782,2076,,,, -ST-Ericsson NovaThor U8500,ARMv7,,,,,1000,2/2,45,ARM,,4585,UHD Graphics 750,~2,,,,,,,,,,,,,,,,,,,,,,,,,,,758,,,,,,,,,,,,,,,,, -ST-Ericsson NovaThor U8420,ARMv7,,,,,1000,2/2,45,ARM,,4585,UHD Graphics 750,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -MediaTek MT6575,Cortex-A9,Mediatek,,,,1000,1/1,40,ARM,,4323,SGX531,~1.5,,,,,,,,,,,,,,,,,,,,,,,,,,,582,,,,,,,,,,,,,,,,, -NXP i.MX 6SLL,Cortex-A9,,256KB,,,1000,1/1,40,ARM,,4736,UHD Graphics 750,~25.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6771,,,,, -Qualcomm Snapdragon S2 MSM8255,Scorpion,Snapdragon,,,,1500,1/1,45,ARM,,4981,Adreno 205,~1.7,,,,,,,,,,,,,,,,,,,,,,,,,,,660,,,,,,,,,,,,,,,,, -Rockchip RK2918 1.2 GHz,,,,,,1200,1/1,55,ARM,,4736,GC800,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -AllWinner A10,Cortex A8,,,,,1200,1/1,55,ARM,,5101,UHD Graphics 750,~0.9,,,,,,,,,,,,,,,,,,,,,,,,,,,339,,,,,,,,,,,,,,,,, -ARM Cortex A8 1.2 GHz,,,,,,1200,1/1,,ARM,,6197,UHD Graphics 750,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Apple A4,S5L8930,,,,,1000,1/1,40,ARM,,4950,UHD Graphics 750,~1.2,,,,,,,,,,,,,,,,,,,,,,,,,,,470,,,,,,,,,,,,,,,,, -AllWinner A13,Cortex A8,,,,,1000,1/1,55,ARM,,5101,UHD Graphics 750,~0.8,,,,,,,,,,,,,,,,,,,,,,,,,,,316,,,,,,,,,,,,,,,,, -WonderMedia PRIZM WM8950,Cortex-A9,,,,,1000,1/1,,ARM,,4367,Mali-400 MP,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Samsung Hummingbird S5PC110 / Exynos 3110,Cortex A8,,,,,1000,1/1,45,ARM,,5291,UHD Graphics 750,~1.9,,,,,,,,,,,,,,,,,,,,,,,,,,,290,239,228,,,,,,,,,,,,,,, -Qualcomm Snapdragon S1 MSM7227A,Cortex A5,Snapdragon,256KB,,,1000,1/1,45,ARM,,4463,Adreno 200,~21.1,,,,,,,,,,,,,,,,,,,,,,,,,,,442,,,,,,,,,,,1262,3459,,,,, -Qualcomm Snapdragon S1 MSM7225A,Cortex A5,Snapdragon,256KB,,,1000,1/1,45,ARM,,4371,Adreno 200,~1,,,,,,,,,,,,,,,,,,,,,,,,,,,373,,,,,,,,,,,,,,,,, -Texas Instruments OMAP 3630 1GHz,ARM Cortex A8,,,,,1000,1/1,45,ARM,,5101,UHD Graphics 750,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Texas Instruments OMAP 3622,Cortex A8,,,,,1000,1/1,45,ARM,,5101,UHD Graphics 750,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Rockchip RK2918,Cortex-A8,,,,,1000,1/1,55,ARM,,4736,GC800,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Telechips TCC8803 1GHz,,,,,,1000,1/1,65,ARM,,4736,UHD Graphics 750,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ZiiLABS ZMS-08,Cortex A8,,,,,1000,1/1,,ARM,,5154,UHD Graphics 750,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ARM Cortex A8 1GHz,ARM,,,,,1000,1/1,,ARM,,5832,UHD Graphics 750,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Actions ACT-ATM7029,Cortex-A5,,,,,1000,4/4,,ARM,,4036,UHD Graphics 750,~1.2,,,,,,,,,,,,,,,,,,,,,,,,,,,474,,,,,,,,,,,,,,,,, -Qualcomm Snapdragon S1 QSD8250,ARMv7,Snapdragon,,,,1000,1/1,65,ARM,,5588,Adreno 200,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Loongson 2F 900MHz,,,512KB,,4,900,1/1,,MIPS,,5832,UHD Graphics 750,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Qualcomm Snapdragon S1 MSM7227,ARM1136EJ-S,Snapdragon,,,,600,1/1,65,ARM,,5435,Adreno 200,~0.2,,,,,,,,,,,,,,,,,,,,,,,,,,,120,,,,,,,,,,,462,,,,,, -CSR8670,,,,,,80,2,,,,3275,UHD Graphics 750,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Huawei Kirin A1,ARM Cortex-M7,,,,,200,1/1,,ARM,,1553,UHD Graphics 750,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ARM Cortex-M4,,,,,,,,,,,19711,UHD Graphics 750,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Dialog DA14697,"Cortex M33F, Cortex M0+",,,,,96,,,ARM,,1640,UHD Graphics 750,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -HiSilicon Hi6262,,,,,,,,,,,19711,UHD Graphics 750,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ST STM32L4R9,ARM Cortex-M4,,,,,80,1/1,90,ARM,,2971,UHD Graphics 750,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Cypress PSoC6 MCU,Cortex-M4 / M0+,,,,,150,2/2,,ARM,,1224,UHD Graphics 750,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -ST32,Cortex-M3,,,,,,,,ARM,,5729,UHD Graphics 750,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Ambiq Apollo 3.5,Cortex-M4F,,,,,,1/1,40,ARM,,1814,UHD Graphics 750,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Ambiq Apollo 3,Cortex-M4F,,,,,96,1/1,40,ARM,,2026,UHD Graphics 750,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -NXP MK26FN2M0CAC18R,ARM Cortex-M0,,,,,180,1/1,,,,19711,UHD Graphics 750,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -DK3.5+ST,,,,,,,2,,,,1181,UHD Graphics 750,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Pentium Gold 7505,Tiger Lake-U,Tiger Lake,2.5MB + 4MB,,15,2000 ‑ 3500,2/4,10,x86,,1159,UHD Graphics Xe G4 48EUs,~25.6,4890,6773,14093,1.93,4.48,165,400,429,1017,1112.5,2600,9.79,522.83,14.48,454.1,2522,131.1,24.9,3.43,2.4,0.34,0.2,1150,2129.5,4062,10755.5,,,,4998.5,9426,1157.5,2305,1129,2326,,,,152.9,49676,143.03,151,184.4,142.8 -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, diff --git a/PCData/data/notebookcheck/mobile-cpu.html b/PCData/data/notebookcheck/mobile-cpu.html deleted file mode 100644 index c9f387c..0000000 --- a/PCData/data/notebookcheck/mobile-cpu.html +++ /dev/null @@ -1,2755 +0,0 @@ - - - - - - - - - - - - - - - -Mobile Processors - Benchmark List - NotebookCheck.net Tech - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- -Notebookcheck Logo - - - -
- -
-
-
-
-
-
-
-
-

Comparison of Mobile Processors (CPU Benchmarks)

This table is sorted by the approximate speed of the (laptop) CPU. It contains average benchmark values of some internal and external reviews. Furthermore, the list can be sorted and filtered by the user.

-

More detailed informations on the different processor series can be found in our comparison of mobile processors.

-

Note, that there are also some desktop processors in the list (because some laptops are equiped with desktop CPUs and for comparison).

-
Restrictions

(Manufacturer, Model, Series, Codename), Connect search words with   .

   min. TDP W    max. TDP W    Cores Threads    Architecture

all, none

all, none

Permalink:

-

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
AMD Ryzen Threadripper PRO 7995WXStorm PeakThreadripper96MB + 384MB3502500 ‑ 510096/1925x86yes22
~70.282%
21375
7951
72072
3.4
76.86
286
15842
695
41011
1815
107681
6.98
349.43
7.93
17.19
63037
354.5
267.5
56.9
38.4
5.3
3.3
29
38
7108
174189
4762
19324
1017
3879
1918
55811
2702
25365
349
263
AMD Ryzen Threadripper PRO 3995WXMatisseThreadripper32MB + 256MB2802700 ‑ 420064/1287x86yes1244
~52.473%
16656
5596
52743
2.12
54.3
195
9706
488
23571
1249
61102
9.81
730
6.11
25.41
6689
264
192.5
46.6
26
4.8
2.9
47.8
5021
140172
5567
80545
1266
31711
1720
14881
229
Intel Core i9-14900KRaptor LakeRaptor Lake-R32MB + 36MB1253200 ‑ 600024/3210x86yes24UHD Graphics 770
~68.682%
20802n2
12643
94801
4.02
72.24
332
6282
900
15466
2351
41193
5.48
280.25
2.07
74.47
16108
345.5n2
181.2n2
42n2
26.7
5.8
2.8
82.5n2
139.5n2
7772
149570
9869.5n2
88609n2
2271.5n2
24957n2
2306.5n2
25285n2
3254.5n2
21537.5n2
386n2
332
AMD Ryzen 9 7950XRaphael (Zen 4)Raphael (Zen 4, Ryzen 7000)16MB + 64MB1704500 ‑ 570016/320x86yes410Radeon Graphics (Ryzen 7000)
~65.982%
21065n47
8508n3
72480n3
3.7n3
68.61n3
316n5
6095n5
778n5
14538n5
2001n5
37353n5
6.35n3
312.55n3
1.67n3
30.81n3
15779n3
383n3
274n3
43.55n10
32.5n3
4.5n3
2.8n3
86n21
134n21
8167n11
157469n11
8864n28
85341n28
2131n29
23887n29
2227n31
23903n31
2975n19
19813n19
377n7
303n7
Intel Core i9-13900KRaptor LakeRaptor Lake-S32MB + 36MB1253000 ‑ 580024/3210x86yes386UHD Graphics 770
~65.977%
20191.5n4
12017.5n4
87738n4
3.87n4
67.5n4
324n5
5959n5
849.5n4
14620.5n4
2238.5n4
38271.5n4
5.7n4
293.25n4
2.05n4
84.2n4
14271n4
419.25n4
264.75n4
40.7n5
22.9n4
5.4n4
2.9n4
84n5
139n9
7272n5
146984n5
9598n5
85336n5
2197n5
23664n5
2286n5
24033n5
368n5
316n5
AMD Ryzen 9 7950X3DRaphael (Zen4)Raphael (Zen 4, Ryzen 7000)16MB + 128MB64K (per core)1204200 ‑ 570016/325x86yes310Radeon Graphics (Ryzen 7000)
~67.577%
20279
16551
138015
3.86
64.59
326
5974
795
14188
2053
36291
6.11
305.11
2.01
33.88
15779
392.5
265.5
42.4
26.9
4.2
2.8
86
133
8321
159341
9240
87922
2183
23720
2311
24343
383
313
Intel Core i7-14700KRaptor LakeRaptor Lake-R28MB + 33MB1252500 ‑ 560020/2810x86yes54UHD Graphics 770
~64.682%
20665
12027
91081
3.7
61.44
314
5459
832
13672
2153
35892
5.98
305.94
2.15
109.8
12800
419
261
36.8
25.6
4.6
2.6
91
155
7351
135648
9304
79501
2045
22756
2121
23159
2902
19790
339
314
AMD Ryzen 9 7900XRaphael (Zen4)Raphael (Zen 4, Ryzen 7000)12MB + 64MB1704700 ‑ 560012/245x86440Radeon Graphics (Ryzen 7000)
~58.777%
21284n19
8623n6
68579.5n6
3.83n6
54.66n6
323n6
4820.5n6
782.5n6
11471.5n6
2016.5n6
29300n6
6.14
313.44
1.8n6
40.31n6
17225
376
241
36.85n6
14.8
2.8
1.5
106n6
166n5
8269n6
127195n6
9275n6
77033n6
2196n6
20658n6
2294n6
20667.5n6
383n6
304.5n4
Intel Core i7-13700KRaptor LakeRaptor Lake-S24MB + 30MB1253400 ‑ 540016/2410x86yes439UHD Graphics 770
~6082%
18153
11278
85748
3.66
52.98
303n2
4507.5n2
811.5n2
11713.5n2
2116n2
30745n2
6.19
317.81
2.31
170.22
12835
406
232
33.85n2
15.8
4
2.2
108n2
176.5n2
7061.5n2
111390n2
8955
69210
2064
19217
2110n2
20190.5n2
2962
19249
348n2
301
AMD Ryzen 9 7945HX3DDragon Range-HX (Zen 4)Dragon Range (Zen 4, Ryzen 7045)16MB + 128MB552300 ‑ 540016/325x86yes135Radeon 610M
~64.273%
8478
70414
3.7
61.9
311
5600
755
13033
1935
32782
6.4
337.8
5.9
249.9
51122
36.4
23.4
3.8
2.5
95
150
7573
136201
2133
19875
2916
16957
97066
332.3
367.9
480
328
AMD Ryzen 9 7945HXDragon Range-HX (Zen 4)Dragon Range (Zen 4, Ryzen 7045)16MB + 64MB552500 ‑ 540016/320x86yes339Radeon 610M
~60.875%
8481
71582
3.65
64.29
307n5
5541n5
747n5
13308n5
1936n5
34202n5
6.4
337
4.9
158.7
36.15n4
25.3
4
2.7
93n5
145.5n4
7379n5
140471n5
1984
19315
2103n5
19583n5
2876
16316
95872.5n2
331.6n4
325
351n4
289n4
AMD Ryzen Threadripper PRO 3975WXMatisseThreadripper16MB + 128MB2803500 ‑ 420032/647x86yes1244
~50.573%
16923
5884
53924
2.19
52.2
201
7053
500
16464
1286
42744
9.55
714
3.63
24.28
6530
268
193
43
27
4.7
2.6
69.4
5140
141386
5764
81029
1306
29094
1285
28798
198
Intel Core i9-13980HXRaptor Lake-HXRaptor Lake-HX32MB + 36MB551600 ‑ 560024/3210x86yes340UHD Graphics 770
~60.784%
19734
11940
85088
3.73
55.79
304.5n10
4717n10
807n9
11510n9
2110n9
30273n10
7.42
345.8
3.02
183.5
11438
374
198.05
31.6n9
18.4
4.9
2.5
106n9
190n9
6972n9
119244n9
1987
22107
2099n9
20329n9
2881.5n2
17564n2
102620n2
328.04n4
399
337n9
306n7
Intel Core i9-13950HXRaptor Lake-HXRaptor Lake-HX32MB + 36MB551600 ‑ 550024/3210x86yes340UHD Graphics 770
~62.866%
19311
11424
80693
3.57
59.98
297n7
4529n7
801n7
10919n7
2096n7
28681n7
6.2
322.8
31n7
111n7
196n7
6754n7
116665n7
2006n4
18486.5n4
2043n7
20036n7
2919.5n2
16927.5n2
103911
328.16n4
407
318.5n8
291n9
Intel Core i9-13900HXRaptor Lake-HXRaptor Lake-HX32MB + 36MB551600 ‑ 540024/3210x86yes340UHD Graphics Xe 32EUs (Tiger Lake-H)
~59.789%
18036.5n6
11699.5n2
79299.5n2
3.66n2
52.32n2
295n21
4487n21
785.5n20
10548n20
2055n19
27844n22
6.21n2
315.13n2
2.6
215.69
12916n2
387.7
217.7
29.4n21
17n2
4.25n2
2.25n2
114n21
202n21
6892.5n20
114430n20
8843n5
71143n5
1982n5
19027n5
2036n21
19982n21
2720n2
16522.5n2
104390n6
305.03n9
356.5n4
322n18
291n15
AMD Ryzen 9 7900Raphael (Zen4)Raphael (Zen 4, Ryzen 7000)12MB + 64MB653700 ‑ 540012/245x86330Radeon Graphics (Ryzen 7000)
~55.777%
19451
8339
60934
3.68
45.31
315
4020
762
9703
1966
24776
6.73
329.05
2.98
46.75
10154
355.5
207
31.2
21.5
3.1
2
125
199
7936
112881
8861
65241
2096
17581
2203
17880
366
302
Intel Core i9-12900KAlder LakeAlder Lake-S14MB + 30MB1253200 ‑ 520016/2410x86yes765UHD Graphics 770
~53.177%
18752.5n2
9859n2
71819n2
3.5n2
45.62n2
289n3
4057n3
771.5n2
9935n2
2004.5n2
26125n2
7.05n2
347n2
3.66n2
192.8n2
11834n2
366.75n2
201n2
29.5n2
19.25n2
3.6n2
1.95n2
124.7n2
6575.5n2
97315.5n2
8629n2
63910.5n2
1947.5n2
17828n2
2005.5n2
17776n2
96769
206.7
325n2
Intel Core i5-14600KRaptor LakeRaptor Lake-R20MB + 24MB1253500 ‑ 530014/2010x86yes54UHD Graphics 770
~56.682%
18096
11396
75358
3.58
40.96
297
3640
790
9371
2064
24491
6.23
316.69
2.39
158.77
11491
411
209
28.6
19.5
3.4
1.8
134
223
6910
93235
8904
64035
2004
17374
2017
17516
2879
17409
354
301
AMD Ryzen 9 7845HXDragon Range-HX (Zen 4)Dragon Range (Zen 4, Ryzen 7045)12MB + 64MB553000 ‑ 520012/240x86yes344Radeon 610M
~65.941%
295
4320
719
10492
1852
26876
29.7
117
185
7018
106033
2008
15068
2729
12585
308.27
357
282
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
AMD Ryzen 7 7700XRaphael (Zen4)Raphael (Zen 4, Ryzen 7000)8MB + 32MB1704500 ‑ 54008/165x86440Radeon Graphics (Ryzen 7000)
~52.177%
18115
8633
56024
3.71
36.06
315n2
3113.5n2
772.5n2
7462.5n2
1987n2
19088n2
6.35
322.8
2.15
61.15
14879
373.5
181.2
25.45n2
17.5
2.3
1.4
163n2
261n2
8074n2
85706.5n2
8991
56909
2123
14215
2218n2
14131n2
355
301
AMD Ryzen 7 7700Raphael (Zen4)Raphael (Zen 4, Ryzen 7000)8MB + 32MB653800 ‑ 53008/165x86339Radeon Graphics (Ryzen 7000)
~51.177%
18277
8345
53881
3.64
34.29
308
3047
750
7259
1930
18760
6.55
335.26
2.72
62.63
14860
368
174.95
25
15.9
2.3
1.5
166
266
7880
85260
8753
55542
2078
13869
2161
13929
352
295
AMD Ryzen 9 5950XVermeer (Zen 3)Vermeer (Ryzen 5000)8MB + 64MB1053400 ‑ 490016/327x86yes1158
~49.773%
17656.5n2
6689.5n2
56640.5n2
3.08n2
47.83n2
266.5n2
4324n2
629n2
10061n2
1614n2
26017n2
7.24n2
361.5n2
4.23n2
58.45n2
12735.5n2
330n2
212n2
30.85n2
26n2
3.5n2
2.35n2
117.65n2
6851.5n2
122978n2
7118.5n2
60408.5n2
1654n2
15983n2
1651.5n2
16248n2
289.5n2
Intel Core i5-13600KRaptor LakeRaptor Lake-S20MB + 24MB1253500 ‑ 510014/2010x86yes416UHD Graphics 770
~53.377%
17627
10754.5n2
68879.5n2
3.47n2
42.29n2
287.5n2
3642n2
770.5n2
9241n2
2000.5n2
24221n2
6.53n2
331.36n2
2.52n2
174.89n2
10967n2
387.5n2
198.8n2
27.55n2
19.1n2
3.15n2
1.7n2
135n2
224n3
6377.5n2
89587n2
8624.5n2
61014n2
1947.5n2
16566n2
1973n2
16670.5n2
331n2
288n2
Intel Core i7-13850HXRaptor Lake-HXRaptor Lake-HX24MB + 30MB551500 ‑ 530020/2810x86yes345UHD Graphics 770
AMD Ryzen 7 7800X3DRaphael (Zen4)Raphael (Zen 4, Ryzen 7000)1KB + 96MB1624200 ‑ 50008/165x86yes253Radeon Graphics (Ryzen 7000)
~5082%
16892
8026
51950
3.43
33.48
281.5n2
2878.5n2
686n2
6804.5n2
1766.5n2
17387n2
7.09
337.57
2.44
62.73
16585
344
169.25
23.25n2
15.3
2.1
1.3
178n2
282.5n2
7823.5n2
80312.5n2
9097
54840
1938
13888
1920n3
12715n3
2634
14288
353
282
Intel Core i9-12900Alder LakeAlder Lake-S14MB + 20MB652400 ‑ 510016/2410x86yes710UHD Graphics 770
~45.968%
17464
8949
68729
3.16
38.96
262
3299
703
7179
1825
18628
2.67
211.8
10739
310
147.5
14.4
17.2
3.4
1.9
262.7
5979
50152
6991
36310
1638
8845
1656
8924
269
Intel Core i7-13700Raptor Lake-SRaptor Lake-S24MB + 30MB652100 ‑ 520016/2410x86yes345UHD Graphics 770
~57.284%
17194
10840
82724
3.5
50.37
285n2
3692n2
739.5n2
9194n2
2008.5n2
25369n2
6.39
329.23
2.5
161.46
12289
393
224
27.25n2
22
3.8
2.1
144.5n2
250.5n2
6642.5n2
91604n2
8714
67866
1925
18964
1983.5n2
17563.5n2
2761
15882
341.33
338n2
289.5n2
Intel Core i9-12950HXAlder Lake-HXAlder Lake-S14MB + 30MB551700 ‑ 500016/2410x86yes584UHD Graphics 770
~58.445%
274n7
3107n7
727n7
7744n7
1885n7
20263n7
22.5n7
175n7
302n5
6197n7
77003n7
1855n3
13908n3
1886n7
15229n7
94008
291.99n4
356
311n5
274n5
Intel Core i9-12900HXAlder Lake-HXAlder Lake-S14MB + 30MB551700 ‑ 500016/2410x86yes584UHD Graphics 770
~53.886%
17668n2
9509
64621
3.35
41.54
278n8
3566n8
739n8
8842.5n8
1912.5n8
23150n8
7.25
379.61
7.83
245.74
9993
313.7
185.5
26n7
17.4
3.2
1.7
148.6n8
267n8
6336n7
86541n7
8182n2
58845.5n2
1848n2
16487.5n2
1906.5n8
16311.5n8
77.4
95387n3
292.72n3
327n2
317.5n6
275n5
Apple M3 Max 16-CoreApple M3782748 ‑ 405616/163ARMyes51M3 Max 40-Core GPU
~70.836%
271n2
3264n3
494.5n2
6123.5n2
1959n2
24022n2
216n2
195n2
2324.5n2
22937.5n2
3126.5n2
21253.5n2
96362.5n2
310.1n2
561n2
421n2
AMD Ryzen 9 3950XMatisse (Zen 2)Matisse (Ryzen 3000 Desktop)8MB + 64MB1053500 ‑ 470016/327x86yes1487
~41.166%
6102
53396
2.37
43.68
209
4002
520
9075
9.19
512
4.11
44.86
7409
265
168
15.8
10.8
3.6
2.3
125.8
5340
99467
5749
48962
1315
12976
1306
12363
239
Intel Core i7-13700HXRaptor Lake-HXRaptor Lake-HX24MB + 30MB551500 ‑ 500016/2410x86yes345UHD Graphics 770
~59.457%
17038n3
272n9
3348.5n10
723n9
8062n9
1875n9
21516n9
22.4n9
157.5n8
267n9
6166n9
78076n9
8059
57031
1788.5n4
15008.5n4
1845n9
14942n9
2593n3
14402n3
92283n4
295.42n7
335n4
309.5n8
270.5n8
Intel Core i7-12700KAlder LakeAlder Lake-S12MB + 25MB1252700 ‑ 500012/2010x86yes770UHD Graphics 770
~46.775%
16827
9305
63484
3.29
38.38
272
3325
735.5n2
7800.5n2
1850.5n2
19784n2
7.35
387
2.66
171.2
10389
349.5
179
20.5n2
15.7
2.8
1.6
173.1n2
6269.5n2
73438.5n2
8133
55786
1840.5n2
13879n2
1911.5n2
14016n2
241.28
303.5n2
Intel Core i9-13900HKRaptor Lake-HRaptor Lake-H11.5MB + 24MB451900 ‑ 540014/2010x86yes345Iris Xe G7 96EUs
~54.639%
279
2950
749
7542
1960
19704
21.9
287
5864
77190
1865
14628
1942
14985
314.97
297
279
Intel Core Ultra 9 185HMeteor Lake-HIntel Meteor Lake-H + 24MB453800 ‑ 510016/227x86yes6Arc 8-Cores
Intel Core i9-13905HRaptor Lake-HRaptor Lake-H11.5MB + 24MB451900 ‑ 540014/2010x86yes345Iris Xe G7 96EUs
~55.545%
246n3
2857n3
639n3
7152n3
2020n3
20034n3
21.2n3
173n3
302n3
5520n3
69892n3
1898
14690
1685n3
13707n3
2404
14212
310.21
301.5n2
265.5n2
Intel Core i9-13900HRaptor Lake-HRaptor Lake-H11.5MB + 24MB451900 ‑ 540014/2010x86yes345Iris Xe G7 96EUs
~59.157%
15361.5n2
280n21
2739n21
763n20
6958n20
1973.5n20
17856.5n22
19.25n20
193n19
329n19
6260.5n20
70425n20
8409n5
50450n5
1802.5n4
13197.5n4
1967n20
13216n20
2645n7
12611n7
100022n5
310.6n8
348n3
319n15
285n16
Apple M3 Max 14-CoreApple M3782748 ‑ 405614/143ARMyes51M3 Max 30-Core GPU
Intel Core Ultra 7 165HMeteor Lake-HIntel Meteor Lake-H + 24MB283800 ‑ 500016/227x86yes6Arc 8-Cores
~57.19%
1853
11733
2513
13288
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
Intel Core i7-13800HRaptor Lake-HRaptor Lake-H11.5MB + 24MB451800 ‑ 520014/2010x86yes345Iris Xe G7 96EUs
~61.539%
287
2765
776
6714
2017
17591
20
191
337
6310
70500
1972
12880
2766
12876
314
283
AMD Ryzen 9 5900XVermeer (Zen3)Vermeer (Ryzen 5000)6MB + 64MB1053700 ‑ 480012/247x86yes1163
~47.570%
16438n17
6828
52076
3.14
41.78
250n5
2695n5
598n5
6233n5
1527n5
16262n5
7.19
360.5
13361
335
191
24.9n22
21.2
2.9
1.8
154.2n23
6582n23
90443n23
7034n20
52798.5n20
1588n19
12813n19
1604n25
11765n25
218.1
279n19
Intel Core i9-10980XECascade LakeCore i9 (Desktop)18MB + 24.8MB1653000 ‑ 460018/3614x86yes1535
~46.782%
14129
7847
59479
2.36
38.39
208n3
3744n3
489.5n2
8532.5n2
7.68
410
2.81
47.4
7172
215
157.5
27n2
18.2
3.2
1.9
130n2
5370.5n2
93076.5n2
38219
4578
56351
5794.5n2
54222.5n2
1239.5n2
15743.5n2
1260
16480
97.5
39564
77.3
239
Intel Core i9-9980XESky Lake-XCore i9 (Desktop)18MB + 24.8MB1653000 ‑ 440018/3614x86yes1811
~40.266%
13495
7323
58001
2.22
38.57
197.5n2
3735.5n2
461.5n2
8857n2
8.23
433
2.74
46.52
6879
206.5
156
26.05n2
18.1
3.2
1.9
136.5n2
5110n2
93017.5n2
5492.5n2
55149.5n2
1217.5n2
16331n2
1200
15780
Intel Core i7-12850HXAlder Lake-HXAlder Lake-S14MB + 25MB551500 ‑ 480016/2410x86yes584UHD Graphics 770
~51.641%
260.5n2
2679n2
697.5n2
6490.5n2
1720.5n2
16301.5n2
17.25n2
193n2
317n3
5762n2
61678.5n2
1718
11363
1782n2
12302n2
261.94
284.5n2
232n2
Intel Core i7-12800HXAlder Lake-HXAlder Lake-S14MB + 25MB551500 ‑ 480016/2410x86yes584UHD Graphics 770
~51.436%
260
3383
676
8564
1812
22456
24.9
153.1
5624
76947
1726
14093
1759
14213
277.91
309
Intel Core Ultra 7 155HMeteor Lake-HIntel Meteor Lake-H + 24MB283800 ‑ 480016/227x86yes6Arc 8-Cores
~46.675%
9919
56242
3.07
29.98
257n3
2362n3
673.5n2
5455n2
1779n3
15013n3
7.05
400.29
7084
282.57
128.04
16.5n2
10.2
1.7
0.94
219.5n2
385.5n2
5223.5n2
62093.5n2
6838
43897
1684
11684
1776.5n4
12014.5n4
2425n4
12504n4
293n2
263
Intel Core i9-12900HKAlder Lake-HAlder Lake-P11.5MB + 24MB451800 ‑ 500014/2010x86yes710Iris Xe G7 96EUs
~46.984%
16756n3
8561n2
53020n2
2.99n2
28.22n2
257n8
2845n8
664n8
7104.5n8
1789n8
18621.5n8
7.87n2
409.92n2
3.38
201.06
8480n2
288.2n2
136.65n2
20.55n8
15.2n2
2.45n2
1.4n2
178.4n8
5622.5n8
72874n8
7970n2
50701n2
1853.5n2
13647.5n2
1870n7
13717n7
107.05n2
94352
267.75n2
274
299n5
249
Intel Core i9-12900HAlder Lake-HAlder Lake-P11.5MB + 24MB451800 ‑ 500014/2010x86yes710Iris Xe G7 96EUs
~44.189%
12799n5
8235n5
47831n5
2.96n5
25.96n5
265n26
2586n25
715n25
6060n25
1863n25
15987n25
7.78n5
409.19n5
4.1n4
196.5n4
7897n5
254.75n4
111.4n4
18.7n25
9.7n5
1.7n5
1n5
201n25
375.5n14
5881n25
64918n25
7199n4
35978.5n4
1673n7
10985n7
1830.5n26
12321.5n26
2265n3
10442n3
86645n4
263n7
241n2
297.5n22
264n12
Intel Core i7-13705HRaptor Lake-HRaptor Lake-H11.5MB + 24MB451800 ‑ 500014/2010x86yes345Iris Xe G7 96EUs
~51.770%
10476
61674
3.21
31.6
273.5n2
2868.5n2
727.5n2
7198.5n2
1874n2
18765n2
6.9
680.2
26.3
1258.7
20.1n2
12.7
2.7
1.5
181n2
322n2
5999.5n2
75165n2
1841n2
14322.5n2
2588n3
14502n3
91471n2
287.85n2
314.5n2
303.5n2
267.5n2
Intel Core i7-13700HRaptor Lake-HRaptor Lake-H11.5MB + 24MB451800 ‑ 500014/2010x86yes345Iris Xe G7 96EUs
~49.889%
15415n4
10487
65623
3.28
33.82
268n25
2515n25
717n25
6051n25
1854n25
15609n25
6.8
371.9
2.94
208.8
7559
340.5
167.5
16.9n25
16.1
2.9
1.5
217n25
386n25
6014n25
61921n25
8083
50819
1815n3
13200n3
1829n25
12567n25
2610n9
12989n9
92979n11
292.9n15
332n10
299n20
267.5n20
Intel Core i5-13400FRaptor Lake-SRaptor Lake-S9.5MB + 20MB652500 ‑ 460010/1610x86yes345
~43.577%
13989
8689
51113
3.06
27.46
252
2364
672
6091
1744
15911
8.03
420.48
3.27
367.88
8602
314.5
136.85
19.2
12.2
2
1.1
206
336
5743
60048
7684
43856
1721
12009
1792
12095
294
254
Intel Core i5-13400Raptor Lake-SRaptor Lake-S9.5MB + 20MB652500 ‑ 460010/1610x86yes345UHD Graphics 730
~43.777%
13632
8721
51095
3.1
27.36
257
2358
688
6135
1786
15953
8.03
427.16
3.47
452.31
7979
311
135.8
19.1
11.8
2
1.2
206
336
5829
59510
7683
42509
1706
11801
1795
12107
306
251
Intel Core i7-12700FAlder LakeAlder Lake-S12MB + 25MB653300 ‑ 490012/2010x86yes710
~43.980%
15823
9146
56067
3.28
33.5
271
2610
726
5786
1898
15291
7.39
386.35
2.95
128.31
8695
296.5
118.55
17.7
3.3
2.8
1.5
212
6145
61218
6698
39852
1557
10249
1590
10126
94804
295.07
281
271
Intel Core i7-12700Alder LakeAlder Lake-S12MB + 25MB653300 ‑ 490012/2010x86yes710UHD Graphics 770
~4977%
15390
9171
60892
3.28
36.92
272
3151
731
8338
1894
21751
7.53
400.41
2.9
272.82
9328
347
172.35
25.5
14.5
2.7
1.5
151
242
6292
78331
8059
52676
1845
14883
1924
14961
314
268
Intel Core i5-12600KAlder LakeAlder Lake-S9.5MB + 20MB1252800 ‑ 490010/1610x86yes770UHD Graphics 770
~4473%
15722
9381
55462
3.31
30.01
275
2555
734
6692
1907
17491
7.41
363.2
4.73
202.7
6239
333.5
148
30.1
12.8
2.2
1.3
189.5
5944
64260
8223
46557
1821
12746
1904
12797
293
AMD Ryzen 5 7600XRaphael (Zen4)Raphael (Zen 4, Ryzen 7000)6MB + 32MB1054700 ‑ 53006/125x86445Radeon Graphics (Ryzen 7000)
~4977%
17290.5n2
8480n9
49430n9
3.71n9
28.32n9
314n9
2517n9
761n9
5966n9
1965n9
15236n9
7.42
367.07
2.76n9
78.81n9
16178
367
147.8
21n9
13.2
1.8
1.1
205n9
328n8
8058n9
69291n9
9021n9
47694n9
2126n9
11982n9
2217n9
12003n9
370.5n8
298n8
AMD Ryzen 5 7600Raphael (Zen4)Raphael (Zen 4, Ryzen 7000)6MB + 32MB653800 ‑ 51006/125x86335Radeon Graphics (Ryzen 7000)
~45.175%
15993
8122
46166
3.51
26.4
298
2339
724
5487
1852
12735
6.82
351.04
3.06
83.81
14038
347
137.8
19.5
12.5
1.6
1.1
219
352
7566
64613
8453
44221
2005
10745
2088
11095
345n2
Intel Core Ultra 5 135HMeteor Lake-HIntel Meteor Lake-H + 18MB283600 ‑ 460014/187x86yes6Arc 7-Cores
AMD Ryzen 9 8945HSHawk Point-HS (Zen 4)Hawk Point (Zen 4/4c, Ryzen 8040)8MB + 16MB454000 ‑ 52008/164x86yes9Radeon 780M
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
AMD Ryzen 9 7940HSPhoenix-HS (Zen 4)Phoenix (Zen 4, Ryzen 7040)8MB + 16MB354000 ‑ 52008/164x86yes344Radeon 780M
~48.489%
15715.5n4
7963
49845
3.46
30.88
285n6
2664.85n6
702.5n6
6659n6
1792n6
17124n6
7.06
532.8
2.7
66.8
7439
304.5
150.8
20.8n5
14.8
2.1
1.4
188n5
303n6
6652n6
70050n6
7657n2
46087.5n2
1898n3
11382n3
1981n7
11564n7
2591n3
12011n3
89067
298.74n2
302
315n5
262n6
AMD Ryzen 9 PRO 7940HSPhoenix-HS (Zen 4)Phoenix (Zen 4, Ryzen 7040)8MB + 16MB354000 ‑ 52008/164x86yes185Radeon 780M
~56.645%
263.5n2
2539n2
653n2
6195.5n2
1681n2
15928.5n2
18.7n2
203n2
325n2
6029.5n2
64558n2
1857n2
10967.5n2
2472n2
11561.5n2
77466
262.2
263
297n2
242n2
AMD Ryzen 7 7745HXDragon Range (Zen 4)Dragon Range (Zen 4, Ryzen 7045)8MB + 32MB553600 ‑ 51008/160x86yes344Radeon 610M
~5841%
294
2978
717
7072
1846
18060
23.2
174
277
7244
75557
1971
12179
2040
12378
326.92
345
283
AMD Ryzen 7 8845HSHawk Point-HS (Zen 4)Hawk Point (Zen 4/4c, Ryzen 8040)8MB + 16MB453800 ‑ 51008/164x86yes9Radeon 780M
Intel Core Ultra 5 125HMeteor Lake-HIntel Meteor Lake-H + 18MB283600 ‑ 450014/187x86yes6Arc 7-Cores
Intel Core i7-13650HXRaptor Lake-HXRaptor Lake-HX + 24MB551900 ‑ 490014/2010x86yes345UHD Graphics Xe 16EUs (Tiger Lake-H)
~5468%
16051
10616
68755
3.31
37.44
274n2
3141.5n2
719.5n2
8010n2
1868.5n2
20999n2
6.7
370.4
8422
345.8
175.1
23.15n2
16.7
2.9
1.6
161.5n2
280.5n2
5981.5n2
78884.5n2
7895
52742
1845n2
14196n2
312n3
277n3
AMD Ryzen 7 8840HSHawk Point-HS (Zen 4)Hawk Point (Zen 4/4c, Ryzen 8040)8MB + 16MB283300 ‑ 51008/164x86yes9Radeon 780M
AMD Ryzen 7 7840HSPhoenix-HS (Zen 4)Phoenix (Zen 4, Ryzen 7040)8MB + 16MB353800 ‑ 51008/164x86yes344Radeon 780M
~48.589%
15667n5
7709
50264
3.33
30.25
279n11
2608n11
690n11
6509n11
1779n11
16706n11
8.77
724.41
2.63
72.82
7699
298
149.3
20.4n13
14.9
2.1
1.3
192n13
310n13
6640n13
70243n13
8148n3
48814n3
1910.5n6
11662n6
1960n13
11803n13
2671.5n10
13100n10
91466.5n2
303.71n7
298.5n2
322n13
263n10
AMD Ryzen 7 7840SPhoenix-HS (Zen 4)Phoenix (Zen 4, Ryzen 7040)8MB + 16MB353800 ‑ 51008/164x86yes344Radeon 780M
~47.275%
14547
7579
45931
3.33
28.61
274
2222.84n3
685
5912
1761
15102
7.4
653.4
10.2
341.9
20369
18.6
12.9
1.9
1.2
213
347
6328
64696
1939
11288
2605
12598
91068
316.3
280.6
296
247.5n2
AMD Ryzen 7 PRO 7840HSPhoenix-HS (Zen 4)Phoenix (Zen 4, Ryzen 7040)8MB + 16MB353800 ‑ 51008/164x86yes185Radeon 780M
~58.339%
276
2519
693
6235
1774
15863
19.9
201
325
6493
70387
1953
12039
2528.5n2
12858n2
311
222
AMD Ryzen 9 6980HXRembrandt-H (Zen 3+)Rembrandt (Zen 3+)4MB + 16MB453300 ‑ 50008/166x86yes710Radeon 680M
Intel Core i7-12800HAlder Lake-HAlder Lake-P11.5MB + 24MB451800 ‑ 480014/2010x86yes710Iris Xe G7 96EUs
~57.641%
265n5
2222n5
706n5
5731n5
1828n5
15283n5
16.8n5
222n5
337
5820n5
62100n5
1771n5
12434n5
91965
254.5n3
311
294.5n4
265
Apple M3 Pro 12-CoreApple M3272748 ‑ 405612/123ARMyes51M3 Pro 18-Core GPU
~71.330%
2163
1977
15106
327
314
2327
15298
3138
15480
96501
297.2
555
427
Apple M3 Pro 11-CoreApple M3272748 ‑ 405611/113ARMyes51M3 Pro 14-Core GPU
~66.636%
281
1913
502
3529
1942
13315
365
355
2331
13312
3113
14412
98732
307.5
549
431
Intel Core i7-12650HXAlder Lake-HXAlder Lake-S11.5MB + 24MB551500 ‑ 470014/2010x86yes584UHD Graphics 770
Intel Core i5-13600HXRaptor Lake-HXRaptor Lake-HX + 24MB551900 ‑ 480014/2010x86yes345UHD Graphics 770
~659%
1912.5n2
15135n2
2920
15910
Intel Core i5-13500HXRaptor Lake-HXRaptor Lake-HX + 24MB551800 ‑ 470014/2010x86yes345UHD Graphics Xe 16EUs (Tiger Lake-H)
~49.373%
14596n2
8980
58608
3.14
33.7
252n3
2863n3
679n3
7021n3
1730.5n2
18334n3
7.7
408
10.7
400.2
20.3n3
14.6
2.8
1.5
193n3
336n3
5728n3
71243n3
1730n3
13581n3
2478
13404
90065
308.43
356.7
293n3
243n3
AMD Ryzen 9 3900XMatisse (Zen 2)Matisse (Ryzen 3000 Desktop)6MB + 64MB1053800 ‑ 460012/247x86yes1622
~37.773%
14889n9
6018.5n2
45539n2
2.36n2
33.88n2
207n3
3049n3
514n3
6910n3
1370
19000
9.14
511
2.69n2
64.85n2
7534n2
267.5
147
20.75n2
10.75n2
2.9n2
1.7n2
162.3n3
5316n3
80935n3
5680n3
43350n3
1247n3
11135n3
1250n4
10498n4
225
Qualcomm Snapdragon X EliteOryon453800 ‑ 430012/124ARMyes50SD X Elite Adreno GPU
~72.85%
2871.5n2
14647.5n2
Apple M2 MaxApple M236MB + 48MB792424 ‑ 369612/125ARMyes332M2 Max 38-Core GPU
~60.739%
236n2
2084n2
455.5n2
4064.5n2
1643.5n2
14752.5n2
333
326n2
1967n3
15373n3
2692
14863
77676n2
246.45n2
423n2
404.5n2
259n2
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
Apple M2 ProApple M236MB + 24MB2424 ‑ 350412/125ARMyes332M2 Pro 19-Core GPU
~57.336%
230
2069
446.5n2
4031n2
1647.5n2
14794.5n2
331
1957n3
15010n3
2663
14568
76205
239
403
386
253
Intel Core i7-13620HRaptor Lake-HRaptor Lake-H9.5MB + 24MB451800 ‑ 490010/1610x86yes345UHD Graphics 64EUs
~46.482%
13632
10181
54809
3.27
27.06
263n3
2349n3
711n3
5828n3
1860n3
15339n3
6.74
379.96
3.14
1021
8682
345.36
138.15
16.6n3
13.8
2.3
1.3
223n3
391n3
5890n3
59430n3
7977
42882
1767
11205
1831n3
11430n3
2596.5n2
12817n2
305.5n4
267n2
Intel Core i7-12700HAlder Lake-HAlder Lake-S11.5MB + 24MB451700 ‑ 470014/2010x86yes710Iris Xe G7 96EUs
~4891%
14044n7
8875.5n2
54647n2
3.06n2
27.6n2
256n62
2605n67
688n61
6087n61
1780.5n60
16338n61
7.92
428.65
3.3
236.13
8231
297.5
145.75
16.7n61
14.8
2.5
1.4
214n60
391.5n34
5761.5n60
61958.5n60
7421n4
46409n4
1695n19
11805n19
1755n61
12125n61
2486
13118
93.6n2
88214.5n16
261.2n30
278n16
297.5n52
258n29
AMD Ryzen 7 5800X3DVermeer (Zen3)Vermeer (Ryzen 5000)4MB + 96MB1053400 ‑ 45008/167x86yes591
~38.570%
14479
6008
42010
2.77
27.19
241
2413
566
5479
1452
14317
8.11
385.46
3.65
92.57
14431
292
138.25
19.1
13.8
1.9
1.2
212.6
6799
69518
7187
43687
1526
10836
1622
10856
AMD Ryzen 7 5800XVermeer (Zen 3)Vermeer (Ryzen 5000)4MB + 32MB1053800 ‑ 47008/167x86yes1163
~44.277%
15873
6835
45548
3.09
29.31
265.5n2
2608.5n2
624.5n2
6074.5n2
1574.5n2
15476n2
7.3
365.8
3.04
86.1
15604
339
152
20.3n2
15
2
1.3
196.9n2
336n2
6906.5n2
72113.5n2
7333
44131
1673
11246
1683n2
10723.5n2
301.5n2
245
Intel Core i9-11900KRocket LakeRocket Lake4MB + 16MB1253500 ‑ 53008/1614x86yes959UHD Graphics Xe 750 32EUs
~4475%
10545
62024
3.1
26.76
255n4
2379n4
633n4
5306n5
1636n5
14747n5
6.27
331.4
3.98
77.9
9030
309.5
137
18.2n4
13
1.9
1.2
211.85n4
428
6347n4
59658.5n4
7976
42329
1863
11008
1787.5n6
10483n6
283.5n4
247n2
Intel Core i7-1370PRaptor Lake-PRaptor Lake-P11.5MB + 24MB281400 ‑ 520014/2010x86yes345Iris Xe G7 96EUs
~54.145%
271n2
2272n2
719.5n2
5113.5n2
1872.5n2
12968.5n2
12.08n2
317.5n2
609n2
6413.5n2
51639n2
1939
11474
1887n3
10353n3
2644
12891
308.91
296n3
285
AMD Ryzen 9 PRO 6950HRembrandt-H (Zen 3+)Rembrandt (Zen 3+)4MB + 16MB453300 ‑ 49008/166x86yes604Radeon 680M
AMD Ryzen 9 6900HXRembrandt-H (Zen 3+)Rembrandt (Zen 3+)4MB + 16MB453300 ‑ 49008/166x86yes710Radeon 680M
~4080%
13274n11
6545.5n8
39524n8
2.92n8
23.88n8
249n19
2231n19
610n19
5306n19
1558n19
13497n19
7.86n5
661.86n5
3.77n7
104.79n7
6875n7
255.5n7
114.45n7
16.95n20
11.9n7
1.7n7
1.1n7
231n21
407n14
5817n20
61333n20
6698n11
39852n11
1557n15
10144n15
1589n21
9647n21
243.02n5
286n17
227n15
Intel Core i9-10900KComet LakeComet Lake2.5MB + 20MB1253700 ‑ 530010/2014x86yes1304UHD Graphics 630
~39.270%
8127
59368
2.56
29.03
217n3
2533n3
524n3
6181n3
1374
15821
7.2
403.4
3.58
66.3
9739
289.5
149
19.8n3
14.6
2.6
1.5
179n3
5811n3
69987n3
6126n2
41647n2
1385n2
11060.5n2
1428n3
11393n3
255n3
Intel Core i5-13450HXRaptor Lake-HXRaptor Lake-HX + 20MB551800 ‑ 460010/1610x86yes345UHD Graphics Xe 16EUs (Tiger Lake-H)
Intel Core i7-12650HAlder Lake-HAlder Lake-P9.5MB + 24MB451700 ‑ 470010/1610x86yes710UHD Graphics 64EUs
~45.291%
13453n5
8898n3
44608n3
3.14n3
22.08n3
253n11
1893n11
680n11
4772n11
1770n11
12326n11
7.83n3
414.82n3
6.99n3
410.29n3
8199n3
282.3n3
111.1n3
14.5n13
10.1n3
1.8n3
1.1n3
267n12
449n10
5674n11
49673n11
7600n5
41235n5
1732n6
10303n6
1772n13
10126n13
2429n4
10580n4
86
87864n2
265.07n3
278.5n2
299n7
251n7
Intel Core i9-11900KBTiger Lake-HTiger Lake10MB + 24MB653300 ‑ 53008/1610x86914UHD Graphics Xe 32EUs (Tiger Lake-H)
~37.473%
14961
9538
50665
2.84
22.07
247
2027
629
4644
1621
11726
6.66
343.2
3.42
102.2
9584
272.5
106
14.4
11.6
1.7
1.1
262.7
5979
50152
6991
36310
1638
8845
1656
8924
269
AMD Ryzen 9 3900Matisse (Zen 2)Matisse (Ryzen 3000 Desktop)6MB + 64MB653100 ‑ 430012/247x86yes1528
~38.264%
13817
5700
44191
2.22
30.96
197
2804
490
6321
9.6
547
7145
255.5
131.9
18.9
10.4
2.4
1.6
179
5134
75612
5449
40720
1258
10695
1246
10190
227
Intel Core i9-10850KComet Lake-SComet Lake2.5MB + 20MB1253600 ‑ 520010/2014x86yes1205UHD Graphics 630
~38.770%
6829
58453
2.45
28.14
215
2457
511
5961
1314
15538
7.59
419.8
2.67
68.1
9424
285.5
146.5
20.3
14.5
2.5
1.5
181.2
5914
70932
6425
44146
1412
11426
1401
11436
253
AMD Ryzen 7 5700XVermeer (Zen 3)Vermeer (Ryzen 5000)4MB + 32MB653400 ‑ 46008/167x86yes620
~42.182%
14862
6527
42876
2.94
26.45
253
2329
595
5405
1499
13184
9.47
460.69
3.39
89.63
12478
305
134.7
17.1
13.4
1.9
1.2
221
374
6522
65777
6928
37730
1587
9214
1647
9353
2186
9331
310
236
Intel Core i7-11700KRocket LakeRocket Lake4MB + 16MB1253600 ‑ 50008/1614x86yes959UHD Graphics Xe 750 32EUs
~44.368%
16388
9621
58342
2.87
25.55
240n2
2299n2
588n2
5361n2
1558
14281
20.2
685
4.8
292.5
128
16.3
12.7
1.9
1.2
221
6157
57129
1765.5n2
10786.5n2
124.2
71212
196.9
199.1
254
AMD Ryzen 7 5700GCezanne (Zen 3)Cezanne (Zen 3, Ryzen 5000)4MB + 16MB653800 ‑ 46008/167x86yes976Vega 8
~39.282%
14324n3
6196n2
38826.5n2
2.86n2
23.58n2
242.5n2
2107n2
584n2
5015.5n2
1494n2
12830.5n2
7.8n2
415.27n2
4.33n2
94.57n2
7680.5n2
273.75n2
123.4n2
15.8n2
10.5n2
1.6n2
1.05n2
232.85n2
5813.5n2
59702n2
6630n2
34402.5n2
1521.5n2
8684.5n2
1579n2
8681n2
55.3n2
74010
225
217.2
289.5n2
AMD Ryzen 7 PRO 5750GCezanne PRO (Zen 3)Cezanne (Zen 3, Ryzen 5000)4MB + 16MB653800 ‑ 46008/167x86yes927Vega 8
~35.570%
6432
37998
2.87
22.22
241
1956
585
4782
1500
12157
7.7
406.94
3.69
96.77
7011
249.5
113.15
14.4
11.1
1.6
1
245
5682
57184
6440
33145
1493
8361
1561
8396
276
Apple M1 MaxApple M-Series28MB + 48MB2060 ‑ 322010/105ARMyes788M1 Max 32-Core GPU
~48.230%
200n3
1691n3
395n3
2750n3
1533n3
12386n3
189n3
1782n3
12697n3
68029n3
214.5n3
282n3
360n3
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
Apple M2 Pro 10-CoreApple M236MB + 24MB2424 ‑ 369610/105ARMyes332M2 Pro 16-Core GPU
~57.234%
231
1664
449
3235
1643
11811
415
435
1936.5n2
12131.5n2
75471
234.8
395
391
250
Apple M1 ProApple M-Series28MB + 24MB2064 ‑ 322010/105ARMyes788M1 Pro 16-Core GPU
~52.836%
209
1690
393
2721
1534
12370
183.3
1768
12499
2409
12440
75.6
66203
213.5
276
342
AMD Ryzen 9 6980HSRembrandt-HS (Zen 3+)Rembrandt (Zen 3+)4MB + 16MB353300 ‑ 50008/166x86yes710Radeon 680M
AMD Ryzen 9 6900HSRembrandt-H (Zen 3+)Rembrandt (Zen 3+)4MB + 16MB353300 ‑ 49008/166x86yes710Radeon 680M
~41.886%
14208n3
6404.5n2
39960n2
2.95n2
24.75n2
245n5
2161n5
612n5
5152n5
1554n5
13445n5
8.99n2
758.26n2
5.49
116.82
6488n2
265.5n2
123.6n2
16.2n5
11.1n2
1.65n2
1.08n2
227n5
382n3
5805n5
62006n5
6476n3
39091n3
1502n3
9261n3
1537n5
9224n5
106.6n2
73797
229.25n2
227.7
281n5
197.4n3
AMD Ryzen 9 PRO 6950HSRembrandt-HS (Zen 3+)Rembrandt (Zen 3+)4MB + 16MB353300 ‑ 49008/166x86yes604Radeon 680M
~34.770%
6266
36583
2.82
22.13
239
1913
591
4577
1514
11515
7.2
366
8.4
252
5970
222
103
12.8
11.7
1.6
1.02
264
5516
49474
6351
31423
1522
8033
1549
7664
274
Intel Core i9-10910Comet Lake-SComet Lake2.5MB + 20MB1253600 ‑ 500010/2014x86yes1304UHD Graphics 630
~39.548%
8131
57842
2.44
25.57
215
2302
501
5196
7.6
432.5
8613
16.8
208
5690
60747
1381
10244
55976
203.1
161
236
AMD Ryzen 7 6800HRembrandt-H (Zen 3+)Rembrandt (Zen 3+)4MB + 16MB453200 ‑ 47008/166x86yes710Radeon 680M
~42.286%
13958
6424.5n2
39436.5n2
2.87n2
24.35n2
243n9
2151n9
598.5n8
5076.5n8
1526.5n8
12832n10
9.13
729
11.37n2
414.92n2
14392n2
266.3
129.5
16.15n8
9.6n2
1.6n2
1.04n2
236n7
390n7
5768n7
58798n7
6477n3
36919n3
1510n5
9345n5
1551.5n8
9388.5n8
105.9
75542n3
242.34n6
234.5n2
281n7
226.5n6
AMD Ryzen 7 PRO 6850HRembrandt-H (Zen 3+)Rembrandt (Zen 3+)4MB + 16MB453200 ‑ 47008/166x86yes604Radeon 680M
~35.668%
11620
5791
34412
2.6
21.32
205.1n2
2085.5n2
576n3
4887n3
1480n2
12393n2
0.94
800.35
3.72
103.58
5263
222.48
104.13
14.3n2
9.1
1.01
1
241.5n2
469.5n2
5417n2
54444.5n2
1477.5n2
8472n2
232n2
179.55n2
Intel Core i9-11980HKTiger Lake-HKTiger Lake10MB + 24MB553300 ‑ 50008/1610x86yes948UHD Graphics Xe 32EUs (Tiger Lake-H)
~40.759%
9626
52116
2.76
21.06
230n6
2152n7
594n7
4568.5n8
1559n2
10923n2
6.82
350
7.47
243.3
15.8n5
256n4
5668n5
53426n5
1627n5
9813n5
2250
9970
72523
198.75n2
211.1n2
279n5
AMD Ryzen 9 5980HXCezanne-HX (Zen 3)Cezanne (Zen 3, Ryzen 5000)4MB + 16MB543300 ‑ 48008/167x86yes1067Vega 8
Intel Core i9-11900HTiger Lake-HTiger Lake10MB + 24MB452500 ‑ 49008/1610x86yes948UHD Graphics Xe 32EUs (Tiger Lake-H)
~51.939%
241n5
2148n5
608n5
4878n5
1580.5n4
12143.5n4
15n5
243n5
479
5795n5
53205n5
1632n5
9628n5
2355
9401
273n5
227
Intel Core i5-12600HXAlder Lake-HXAlder Lake-S10MB + 18MB551800 ‑ 460012/1610x86yes584UHD Graphics 770
AMD Ryzen 9 5900HXCezanne-H (Zen 3)Cezanne (Zen 3, Ryzen 5000)4MB + 16MB453300 ‑ 46008/167x86yes1072Vega 8
~40.986%
14253.5n8
6409n5
40114n5
2.84n5
24.71n5
240n25
2106n28
578.5n28
4978n29
1488n28
12845n29
7.89n4
415.58n4
3.46n4
98.18n4
7061n4
275.25n4
120.23n4
15.55n28
11.1n4
1.75n4
1.15n4
243n28
434n2
5750n28
58664n28
6350.5n8
33335.5n8
1485n9
8400n9
1538.5n26
8462n26
117.65n2
71000n3
191.8n7
206.1
279n27
218.5n2
Intel Core i7-11700Rocket LakeRocket Lake4MB + 16MB652500 ‑ 49008/1614x86yes759UHD Graphics 750
~36.473%
14738
9493
51493
2.77
19.84
233
1767
579
3986
1529
10287
6.87
387.73
4.19
115.52
5962
267.2
93.1
12.6
12
1.8
1.1
295
5810
44752
7173
37795
1677
9706
1681
9760
256
Intel Core i5-12600HAlder Lake-HAlder Lake-P10MB + 18MB452000 ‑ 450012/1610x86yes710Iris Xe G7 80EUs
AMD Ryzen Threadripper 1950XZENThreadripper8MB + 32MB1803400 ‑ 420016/3214x86yes2318UHD Graphics 750
~31.657%
4754
41814
1.73
23.13
159
2997
410
6700
10.66
633
3.34
55.1
4150
189.6
134.3
16.9
19
2.9
1.8
163
4304
28877
1029
1029
11237
Intel Core i5-13600HRaptor Lake-HRaptor Lake-H10MB + 18MB452100 ‑ 480012/1610x86yes345Iris Xe G7 80EUs
Intel Core i5-13505HRaptor Lake-HRaptor Lake-H10MB + 18MB451900 ‑ 470012/1610x86yes345Iris Xe G7 80EUs
Intel Core i5-13500HRaptor Lake-HRaptor Lake-H10MB + 18MB451900 ‑ 470012/1610x86yes345Iris Xe G7 80EUs
~44.282%
14693.5n2
9664
53786
3.1
28.34
252n4
2317.5n4
684.5n4
5395n4
1779n4
14085.5n4
7.1
340.36
3.27
225.42
7325
336
132.2
15.8n5
13.3
2.2
1.2
238n5
420n5
5653n5
52630n5
7706.5n2
42655.5n2
1708.5n2
11350.5n2
1743n5
11099n5
2446n3
11828n3
273n6
238n6
Intel Core i5-12500HAlder Lake-HAlder Lake-P10MB + 18MB451800 ‑ 450012/1610x86yes710Iris Xe G7 80EUs
~49.752%
13126n2
242.5n8
2112n9
652.5n8
5090.5n8
1685.5n8
13461n8
15.3n8
238n8
426n8
5377n8
51984.5n8
1636
10203
1636.5n8
10272n8
2279.5n2
9891.5n2
83229n3
254.5n3
296n2
272n7
240n7
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
AMD Ryzen 9 5980HSCezanne-HS (Zen 3)Cezanne (Zen 3, Ryzen 5000)4MB + 16MB353000 ‑ 48008/167x86yes1072Vega 8
~4048%
243
2083
602.5n2
4651n2
1529
12629
3.47
109.7
15.2
245.6
5623
57319
6295
33630
1508
8649
1537
8620
66881
179.5
279
Intel Core i7-1360PRaptor Lake-PRaptor Lake-P10MB + 18MB281600 ‑ 500012/1610x86yes345Iris Xe G7 96EUs
~44.589%
12800.5n10
10473n5
51246n5
3.26n5
24.69n5
258n14
1860n14
687n14
4132.5n14
1809n14
10688.5n14
6.78n5
383.28n5
3.89n5
304.68n5
5759n3
296.5n4
110.68n4
11.3n14
12.4n4
2.05n4
1.2n4
324n15
585n15
5742.5n14
43043.5n14
7635n5
37274n5
1773n6
10000.5n6
1824n15
9967n15
2546n8
10956.5n8
83850n5
254.1n8
307.5n4
303n12
263n11
Intel Core i7-1280PAlder Lake-PAlder Lake-P11.5MB + 24MB281300 ‑ 480014/2010x86yes710Iris Xe G7 96EUs
~43.582%
6579
8881
46007
3.07
25.17
238n7
2112n7
629n8
4677.5n8
1651n7
11666n8
7
366
34
1168
7082
12.9n5
11.8
2.1
1.2
285n7
537n7
5540n7
49572n7
7522
40196
1694n3
10537n3
1746n7
11191n7
95.5
84578.5n2
244.65n4
251
286n7
248.5n6
Intel Core i9-11950HTiger Lake-HTiger Lake10MB + 24MB452600 ‑ 50008/1610x86yes948UHD Graphics Xe 32EUs (Tiger Lake-H)
~47.236%
242.5n4
1954n5
619.5n4
4664.5n4
1591n4
12206.5n4
14.2n4
254n3
5773n3
50060n3
1631n3
7969n3
74632.5n2
208.3n4
211.5n2
272.5n4
Intel Xeon W-11955MTiger Lake-HTiger Lake10MB + 24MB452600 ‑ 50008/1610x86yes948UHD Graphics Xe 32EUs (Tiger Lake-H)
~35.857%
230
1846
568
4250
1480
10862
6.9
360
8815
13.4
8.6
1.7
1.1
276
5222
47264
6286
33776
1484
8230
1586.5n2
9057.5n2
60397
147
271
AMD Ryzen 7 7735HSRembrandt-HS RefreshRembrandt (Zen 3+)4MB + 16MB353200 ‑ 47508/166x86yes344Radeon 680M
~42.189%
13410n3
6508n2
42409n2
2.95n2
26.48n2
248n10
2274n11
603n9
5341n9
1546n9
13750n9
7.79n2
663.99n2
3.43
92.76
6807n2
270.2n2
131.43n2
17n9
13n2
1.85n2
1.2n2
229n9
376n10
5786n9
60612n9
6720
40164
1516n3
9315n3
1555n9
9436n9
2115n3
10348n3
76231n3
246.2n6
272n3
290n11
223.5n10
AMD Ryzen 7 7735HRembrandt-H RefreshRembrandt (Zen 3+)4MB + 16MB353200 ‑ 47508/166yes344Radeon 680M
~38.582%
12923.5n2
6438
35222
2.91
21.14
246
1825
601
4354
1536
10920
7.59
680.96
3.81
109.78
5997
251.5
103.65
14.1
10.6
1.6
1.1
283n2
488n2
5621
52518
6434.5n2
34180.5n2
1525n2
8372n2
1564n2
8582n2
2015.5n2
9182.5n2
293
222
AMD Ryzen 7 PRO 6850HSRembrandt-HS (Zen 3+)Rembrandt (Zen 3+)4MB + 16MB353200 ‑ 47008/166x86yes604Radeon 680M
AMD Ryzen 7 6800HSRembrandt-HS (Zen 3+)Rembrandt (Zen 3+)4MB + 16MB353200 ‑ 47008/166x86yes710Radeon 680M
~39.364%
13890
6258
41339
2.79
26.19
234
1987
570
4634
1455
11992
8.4
710.8
6716
254.7
113.7
15.1
11.4
1.7
1.1
258
5495
56170
6168
36693
1492
9298
280
AMD Ryzen 9 5900HSCezanne-HS (Zen 3)Cezanne (Zen 3, Ryzen 5000)4MB + 16MB353000 ‑ 46008/167x86yes1072Vega 8
~42.955%
6380
41235
2.83
24.94
236.5n4
2041n5
571.5n4
4895.5n4
1475.5n4
12745.5n4
14.55n4
241n4
5653n4
57286n4
6361n2
31805n2
1502
7784
1497n3
7867n3
65400
196.25n2
183
275.5n4
AMD Ryzen 7 3800XTMatisse (Zen 2)Matisse (Ryzen 3000 Desktop)4MB + 32MB1053900 ‑ 47008/167x86yes1256UHD Graphics 750
~3566%
6035
40528
2.36
24.18
219
2230
544
5120
9.07
508
3.74
81.4
7467
271
119
16.1
11.4
2
1.2
222.7
5516
59247
5830
35526
1360
9163
1353
8948
249
AMD Ryzen 7 3700XMatisse (Zen 2)Matisse (Ryzen 3000 Desktop)4MB + 32MB653600 ‑ 44008/167x86yes1622UHD Graphics 750
~34.561%
13814.5n2
5839
40439
2.3
23.19
204
2092
506
4782
9.45
531
3.71
86.7
7503
269.5
115
15.4
11.4
2
1.1
181.4
5333
57307
5799
34757
1304
8960
Intel Core i9-9900KSCoffee Lake-RCoffee Lake2MB + 16MB1274000 ‑ 50008/1614x86yes1507UHD Graphics 630
~36.964%
14883.5n2
8183n2
51778.5n2
2.45n2
23.15n2
216n2
2058n2
511.5n2
4819.5n2
7.42n2
414.15n2
3.6n2
87.9n2
8353n2
278.85n2
122.5n2
16.26n2
12.15n2
2.1n2
1.2n2
224.55n2
5734n2
55735n2
6308
35586
1372
9100
44538
Intel Core i7-10700KComet LakeComet Lake2MB + 16MB1253800 ‑ 51008/1614x86yes1324UHD Graphics 630
~35.166%
7910
50670
2.38
22.19
208
2027
496
4882
7.58
391.3
3.18
85.7
8469
269
121
16.3
11.2
2
0.97
217.4
5647
54050
6247
34735
1368n2
8903n2
1373.5n2
8925n2
245
AMD Ryzen 5 7645HXDragon Range (Zen4)Dragon Range (Zen 4, Ryzen 7045)6MB + 32MB554000 ‑ 50006/125x86yes344Radeon 610M
~48.875%
7717
44716
25.68
289
2276
699
5467
1809
13985
8
410.82
13352
328.4
135.9
18.6
12.6
1.7
1
224
360
7124
60373
7927
41241
1924
10185
1971
10145
2717
11717
87916
331
273
AMD Ryzen 5 8645HSHawk Point-HS (Zen 4)Hawk Point (Zen 4/4c, Ryzen 8040)6MB + 16MB454300 ‑ 50006/124x86yes9Radeon 760M
AMD Ryzen 5 8640HSHawk Point-HS (Zen 4)Hawk Point (Zen 4/4c, Ryzen 8040)6MB + 16MB283500 ‑ 49006/124x86yes9Radeon 760M
Intel Core Ultra 7 165UMeteor Lake-PIntel Meteor Lake-U + 12MB153800 ‑ 490012/147x86yes6Graphics 4-Core
AMD Ryzen Z1 ExtremePhoenix (Zen 4)Phoenix (Zen 4, Ryzen 7040)8MB + 16MB303300 ‑ 51008/164x86yes265Radeon 780M
~58.645%
274n2
2223.5n2
682n2
5467n2
1756n2
13982n2
17.35n2
213
406n2
6316
59811.5n2
1898n3
9803n3
2534n2
10931n2
86617
276.7
293
366n2
277
AMD Ryzen 5 7640HSPhoenix-HS (Zen 4)Phoenix (Zen 4, Ryzen 7040)6MB + 16MB454300 ‑ 50006/124x86yes344Radeon 760M
~56.639%
271
2079
667
5044
1715
13029
16.7
245
393
6465
54954
1941
9355
2620
10936
316
257
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
AMD Ryzen 5 PRO 7640HSPhoenix (Zen4)Phoenix (Zen 4, Ryzen 7040)6MB + 16MB544300 ‑ 50006/124x86yes344Radeon 760M
~42.770%
12948
6888
39399
2.97
21.61
249
1863
612
4530
1581
11507
7.9
740.7
6717
264
109.5
14.7
10.4
1.5
0.92
270
444
5892
51096
7042
34588
1748
8863
2352
10200
262n2
AMD Ryzen 7 PRO 7840UPhoenix (Zen 4)Phoenix (Zen 4, Ryzen 7040)8MB + 16MB283300 ‑ 51008/164x86yes226Radeon 780M
~52.836%
273
2014
684
4970
1747
12929
15.9
248
410
5988
57056
1881
9663
1896
7596
317
AMD Ryzen 7 8840UHawk Point-U (Zen 4)Hawk Point (Zen 4/4c, Ryzen 8040)8MB + 16MB283300 ‑ 51008/164x86yes19Radeon 780M
AMD Ryzen 7 7840UPhoenix-U (Zen 4)Phoenix (Zen 4, Ryzen 7040)8MB + 16MB283300 ‑ 51008/164x86yes226Radeon 780M
~43.384%
13021
7342
36812
2.97
20.46
264n8
1947n10
661.5n8
4731n8
1683n8
11930.5n8
7.24
626.26
5629
242.64
105.52
15.1n8
6.1
1.5
0.95
264n8
427.5n8
6002.5n8
53861n8
6140
30359
1564
8055
1749n8
9382n8
2399n7
10763n7
82676n2
288.9n5
268n2
278.5n8
233n6
Intel Core Ultra 7 155UMeteor Lake-PIntel Meteor Lake-U + 12MB153800 ‑ 480012/147x86yes6Graphics 4-Core
Intel Core i7-11850HTiger Lake-HTiger Lake10MB + 24MB452500 ‑ 48008/1610x86yes948UHD Graphics Xe 32EUs (Tiger Lake-H)
~45.532%
232.5n2
1767.5n2
595n2
4244.5n2
1532.5n2
10857n2
13.5n2
285n2
5744.5n2
47721n2
1672.5n2
9250n2
198.5
274.5n2
Intel Core Ultra 7 164UMeteor Lake-UIntel Meteor Lake-U + 12MB93800 ‑ 480012/147x86yes6Graphics 4-Core
Intel Core i9-9900KCoffee Lake-RCoffee Lake2MB + 16MB953600 ‑ 50008/1614x86yes1894UHD Graphics 630
~3770%
14281.5n6
7933n4
48778.5n4
2.38n5
21.39n5
212n9
1979n9
502n2
4871n2
1280
12397
7.66n4
432.15n4
3.58n3
91.3n3
7633n4
260.5n4
114.25n4
15.8n3
11.1n4
1.9n4
1.15n4
223.8n3
5410.5n2
48207n2
6049n4
32981n4
1300
8845
71
40081n2
AMD Ryzen 5 5600XVermeer (Zen 3)Vermeer (Ryzen 5000)3MB + 32MB653700 ‑ 46006/127x86yes1163UHD Graphics 750
~37.373%
14576n2
6462
39331
2.95
21.75
254
1968
601
4567
1541
11838
8.08
400.9
3.89
113.9
13282
320
117
15.7
10.7
1.5
0.94
260.2
6594
56607
6953
35617
1587
8926
1657
8980
286
Intel Core i5-11600KRocket LakeRocket Lake3MB + 12MB1253900 ‑ 49006/1214x86yes990UHD Graphics Xe 750 32EUs
~36.573%
14519
9745
49408
2.87
19.32
238n2
1744n2
585.5n2
4301.5n2
1529.5n2
11217.5n2
6.76
353.7
4.92
107.6
7850
289n2
100.75n2
14.35n2
9.7
1.5
0.9
267.25n2
6061.5n2
44971n2
7438
33266
1731
8542
1723n2
8429.5n2
271.5n2
Intel Core i7-1365URaptor Lake-URaptor Lake-U9.5MB + 12MB151300 ‑ 520010/1210x86yes710Iris Xe G7 96EUs
~52.750%
265.5n4
1466.5n4
726.5n4
3495.5n4
1887n4
8946n4
9.8n4
383n3
726.5n4
5850.5n4
39727n4
1812.5n2
8500n2
1878.5n4
8605.5n4
2583
9605
93596
282.37n4
350
300n4
262.5n4
Intel Core i7-11800HTiger Lake-HTiger Lake10MB + 24MB452300 ‑ 46008/1610x86yes948UHD Graphics Xe 32EUs (Tiger Lake-H)
~40.391%
13362n5
9075n3
44099n3
2.6n4
18.53n4
227n45
1936n49
580n46
4689n49
1508n44
12197n47
7.27n3
369.78n3
3.97n3
120.84n3
7944n3
247.5n3
93.75n3
13.9n45
9.9n3
1.5n3
1n3
261n45
559n5
5509n45
49080n45
6667n7
34107n7
1550n8
7866n8
1572n39
8905n39
2192.5n2
9253.5n2
134.8
68002n9
190.9n16
194n5
262n39
212n3
Intel Core i7-1355URaptor Lake-URaptor Lake-U9.5MB + 12MB151200 ‑ 500010/1210x86yes710Iris Xe G7 96EUs
~41.180%
10128n3
10028
33627
3.07
16.45
255.5n16
1393n16
697.5n16
3257.5n16
1825n16
8286n16
6.7
382.8
21
885
12688
9.29n16
8.3
1.7
0.94
424.5n16
770.5n16
5569.5n16
35321.5n16
1786
8018
1783n16
8058n16
2505n11
8908n11
90249n5
278.41n11
338n4
284.5n16
253.5n14
AMD Ryzen 7 7735URembrandt-U RefreshRembrandt (Zen 3+)4MB + 16MB282700 ‑ 47508/166x86yes344Radeon 680M
~35.577%
10406.5n2
6207
32220
2.8
19.45
234
1698
524
3895
1490
10085
7.71
697.06
5.18
194.41
4904
228.5
90.55
12.5
10.2
1.5
1
308
540
5579
48972
6267
32079
1497
8115
1522
8203
240
189.4
AMD Ryzen 7 PRO 6860ZRembrandt U (Zen 3+)Rembrandt (Zen 3+)4MB + 16MB282700 ‑ 47508/166x86yes604Radeon 680M
~39.866%
6238
36959
2.87
23.11
233
1992
588
4555
1468
11822
7.6
693.5
7.9
252.1
14.7
7.7
1.3
1.1
274
483
5289
52568
1452
8734
73281
235.4
256
270
214
Apple M1 Pro 8-CoreApple M-Series28MB + 16MB2060 ‑ 32208/85ARMyes788M1 Pro 14-Core GPU
~50.825%
210
1320
1531
9581
1769
9942
76.7
65528
207.9
262
343
AMD Ryzen 7 5800HCezanne-H (Zen 3)Cezanne (Zen 3, Ryzen 5000)4MB + 16MB453200 ‑ 44008/167x86yes1072Vega 8
~39.391%
12790n2
6017n2
36734.5n2
2.72n2
22.47n2
229n28
2005n27
554n29
4662n30
1416n28
12091.5n28
8.31n2
419.5n2
6.12n2
188.36n2
6851n2
244
104.65
14.75n28
10n2
1.65n2
1.05n2
255.5n28
499.5n2
5499.5n28
54052n27
6132.5n2
31636.5n2
1418.5n2
7988n2
1462n27
7641n27
1991
9411
134.1
67411n5
189n5
187n3
269n24
190.5
AMD Ryzen 7 7736URembrandt RRembrandt (Zen 3+)4MB + 16MB282700 ‑ 47008/166x86yes344Radeon 680M
~50.832%
246
2019
1548
12768
15.7
246
453
5466
56824
1511
9218
179.93
254
193.4
Intel Core Ultra 5 135UMeteor Lake-PIntel Meteor Lake-U + 12MB153600 ‑ 440012/147x86yes6Graphics 4-Core
AMD Ryzen 7 PRO 6850URembrandt-U PRO (Zen 3+)Rembrandt (Zen 3+)4MB + 16MB282700 ‑ 47008/166x86yes604Radeon 680M
~36.673%
11429
6260
33284
2.84
20.26
237.5n6
1726n6
590n6
4044.5n6
1497n6
10039.5n6
7.7
682.3
8
257.2
13n6
6.5
1.4
0.96
300n6
519.5n6
5339.5n6
48175.5n6
1502
7891
1496.5n6
7924n6
71849.5n2
220.3n2
239n2
243n6
191.9n6
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
AMD Ryzen 5 PRO 6650HRembrandt-H PRO (Zen 3+)Rembrandt (Zen 3+)3MB + 16MB453300 ‑ 45006/126x86yes604Radeon 660M
AMD Ryzen 5 6600HRembrandt-H (Zen 3+)Rembrandt (Zen 3+)3MB + 16MB453300 ‑ 45006/126x86yes710Radeon 660M
~43.941%
233.5n2
1683n2
569.5n2
4053n2
1458n2
10471.5n2
12.85n2
298.5n2
520n2
5509.5n2
43861n2
1417
6219
1460n2
7066n2
224.13
246.5n2
209
AMD Ryzen 5 PRO 6650HSRembrandt-HS (Zen 3+)Rembrandt (Zen 3+)3MB + 16MB353300 ‑ 45006/126x86yes604Radeon 660M
AMD Ryzen Z1Phoenix (Zen4)Phoenix (Zen 4, Ryzen 7040)6MB + 16MB303200 ‑ 49006/124x86yes265Radeon 740M
~45.45%
1827
7674
AMD Ryzen 5 PRO 7640UPhoenix (Zen4)Phoenix (Zen 4, Ryzen 7040)6MB + 16MB153500 ‑ 49006/124x86yes206Radeon 760M
Intel Core Ultra 5 125UMeteor Lake-PIntel Meteor Lake-U + 12MB153600 ‑ 430012/147x86yes6Graphics 4-Core
AMD Ryzen 5 7640UPhoenix-U (Zen 4)Phoenix (Zen 4, Ryzen 7040)6MB + 16MB283500 ‑ 49006/124x86yes206Radeon 760M
Intel Core Ultra 5 134UMeteor Lake-UIntel Meteor Lake-U + 12MB93600 ‑ 440012/147x86yes6Graphics 4-Core
AMD Ryzen 5 PRO 7540UPhoenix (Zen4)Phoenix (Zen 4, Ryzen 7040)6MB + 16MB153200 ‑ 49006/124x86yes206Radeon 740M
AMD Ryzen 5 8640UHawk Point-U (Zen 4)Hawk Point (Zen 4/4c, Ryzen 8040)6MB + 16MB283500 ‑ 49006/124x86yes17Radeon 760M
AMD Ryzen 5 7545UPhoenix (Zen4)Phoenix (Zen 4, Ryzen 7040)6MB + 16MB283200 ‑ 49006/124x86yes206Radeon 740M
AMD Ryzen 5 7540UPhoenix (Zen4)Phoenix (Zen 4, Ryzen 7040)6MB + 16MB283200 ‑ 49006/124x86yes206Radeon 740M
AMD Ryzen 5 8540UHawk Point-U (Zen 4 + Zen 4c)Hawk Point (Zen 4/4c, Ryzen 8040)6MB + 16MB283200 ‑ 49006/124x86yes17Radeon 740M
AMD Ryzen 5 7535HSRembrandt RRembrandt (Zen 3+)3MB + 16MB353300 ‑ 45506/126x86yes344Radeon 660M
~38.189%
12242
6257
37321
2.79
20.14
241
1757
581
4224
1488
10900
8.49
700.99
8.4
256.14
6586
258.1
103.8
14.2
10.2
1.3
0.9
286
481
5670
48646
6170.5n2
31413.5n2
1472
7949
1502
7852
2056
8960
69893
214.9
250
235
189.4
AMD Ryzen 5 6600HSRembrandt-HS (Zen 3+)Rembrandt (Zen 3+)3MB + 16MB353300 ‑ 45006/126x86yes710Radeon 660M
~38.364%
6157
34414
2.74
19
235
1656
577
3935
1465
9131
8
710.7
5207
236.5
93.4
12
7.7
1.3
0.84
328
5318
44476
6029
28928
1493
7195
106.9
234
Intel Core i7-10700Comet LakeComet Lake2MB + 16MB652900 ‑ 48008/1614x86yes1291UHD Graphics 630
~31.966%
7611
41156
2.26
16.7
196
1455
1234
8532
8.08
439.6
3.26
119.5
6555
236
84.8
11.6
10.3
1.8
1.1
315.4
5293
43007
5726
32174
1304
8196
1299
8173
244
AMD Ryzen 9 4900HRenoir-H (Zen 2)Renoir (Ryzen 4000 APU)4MB + 8MB453300 ‑ 44008/167x86yes1378Vega 8
~31.670%
5946
40253
2.24
23.03
193n2
1926.5n2
493.5n2
4409n2
1294n2
11604n2
9.46
729
3.19
82.9
4297
215
111
12.9
7.4
2
1.2
247.3
4727
48976
5287
28402
1237
7624
1231.5n2
8012n2
227
Intel Core i9-10980HKComet Lake-HComet Lake2MB + 16MB452400 ‑ 53008/1614x86yes1352UHD Graphics 630
~34.861%
13765n2
206n15
1737n15
489n13
3883n13
1287n4
10590.5n4
7.8
449
6869
238.5
98.2
13n13
10.1
1.8
1.1
279n13
5437n13
47455n13
5971n3
30973n3
1349n3
8010n3
1347.5n12
8155.5n12
57793
243n12
AMD Ryzen 7 5800HSCezanne-HS (Zen 3)Cezanne (Zen 3, Ryzen 5000)4MB + 16MB352800 ‑ 44008/167x86yes1072Vega 8
~35.85%
1380
7454
AMD Ryzen 9 4900HSRenoir (Zen 2)Renoir (Ryzen 4000 APU)4MB + 8MB353000 ‑ 43008/167x86yes1378Vega 8
~3264%
12448
5866
37938
2.23
18.21
193
1863
495
4288
9.5
547
3.28
88.2
4548
223
106
12.19
11.2
1.9
1.2
297
4634
48577
5372
30230
1218
7675
38616
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
Intel Core i7-11600HTiger Lake H45Tiger Lake7.5MB + 18MB452900 ‑ 46006/1210x86yes948UHD Graphics Xe 32EUs (Tiger Lake-H)
~26.87%
4073
1401
6375
Intel Xeon W-10885MComet Lake-HComet Lake2MB + 16MB452400 ‑ 53008/1614x86yes1311UHD Graphics P630
~32.773%
13490
7865
44583
2.35
18.25
210n4
1640n4
495.5n4
3882.5n4
1300
6893
7.74
429.3
3.6
105.8
7180
236.9
100.1
13.1n3
10.3
1.8
1
286n3
5507n3
45696n3
5892n3
32814n3
1323n3
8295n3
1340n3
8378n3
229n3
Intel Core i9-10885HComet Lake-HComet Lake2MB + 16MB452400 ‑ 53008/1614x86yes1352UHD Graphics 630
~31.170%
12101
211n3
1517n3
489n3
3639n3
1289.5n2
9438n2
7.33
433.9
3.86
131.2
6420
217.8
80.5
11.3n3
9.9
1.8
1
302n3
5589n3
41823n3
5675.5n2
29009n2
1280.5n2
7172n2
1317n3
6914n3
58398
167.6
146
234n3
AMD Ryzen 7 6800URembrandt-U (Zen 3+)Rembrandt (Zen 3+)4MB + 16MB282700 ‑ 47008/166x86yes710Radeon 680M
~37.989%
9964.5n2
6450
35314
2.88
21.13
242n6
1776n7
585.5n8
4083.5n8
1506n7
10546n7
7.94
692.03
4.54
113.45
4639
219.5
101.05
13.1n6
10.7
1.5
1
304n7
504n5
5452.5n6
50614n6
6261n3
30925n3
1462.5n4
7767n4
1514n9
7678n9
2028
8771
69752n3
236.3n5
176n3
270n6
213n5
AMD Ryzen 7 PRO 5875UCezanne U (Zen 3)Cezanne (Zen 3, Ryzen 5000)4MB + 16MB252000 ‑ 45008/167x86yes1072Vega 8
AMD Ryzen 5 5600GCezanneCezanne (Zen 3, Ryzen 5000)3MB + 16MB653900 ‑ 44006/127x86yes976Vega 7
~32.870%
12904
6052
35552
2.68
19.92
228
1724
552
4072
1409
10551
8.08
416.8
4.53
125.3
7652
261.5
102.5
13.9
9.7
1.3
0.88
299.1
5549
48700
6450
31424
1441
7991
1506
8003
Intel Core i7-1265UAlder Lake-UAlder Lake-M9.5MB + 12MB151300 ‑ 480010/1210x86yes710Iris Xe G7 96EUs
~38.884%
9433.5n2
8549
38152
2.99
16.48
240n10
1344.5n10
642n10
3214.5n10
1679.5n10
8225n10
7.98
429.84
5.24
217.43
5960
265.5
80.95
9.24n10
9.7
1.6
0.9
423.5n10
834n10
5285.5n10
34399n10
7515
33057
1678n6
8305.5n6
1739.5n10
8127n10
73251n3
231.57n7
281n3
279.5n10
242.5n10
Intel Core i7-1270PAlder Lake-PAlder Lake-P10MB + 18MB281600 ‑ 480012/1610x86yes710Iris Xe G7 96EUs
~37.673%
7886
36271
2.74
19.94
229.5n2
1739n2
611n2
3536n2
1620n2
9718n2
7.64
436.4
9.8
344.6
16497
10.43n2
5.8
1.1
0.84
373.5n2
714
5279n2
38274n2
1683
8537
1644n2
8660n2
78273
227.45n2
232
285n2
251
Intel Core i7-1260PAlder Lake-PAlder Lake-P10MB + 18MB281500 ‑ 470012/1610x86yes710Iris Xe G7 96EUs
~43.391%
12963.5n6
8793n3
44516n3
3.1n3
22n3
243n25
1626n27
670n24
3761.5n24
1737.5n24
9711n26
7.8n3
424.8n3
4.49n3
237.12n3
7200n3
245n2
94.13n2
11.5n25
11.6n3
1.9n3
1.1n3
328n25
623n16
5373n24
41260.5n24
7531n3
38187n3
1668n10
9907n10
1719n24
9298n24
2424
9532
102.55n2
83695n9
240.3n15
263.5n8
283n24
247n15
AMD Ryzen 7 7730UBarcelo-U RefreshCezanne (Zen 3, Ryzen 5000)4MB + 16MB152000 ‑ 45008/167x86yes710Vega 8
~37.786%
6243
32670
2.76
19.06
231n6
1830n6
566.5n6
4070.5n6
1454.5n6
10801.5n6
7.95
438.1
4.37
121.16
5881
236.2
90.9
12.7n6
10.1
1.4
0.99
296n5
499.5n6
5356n6
49424.5n6
6092
29078
1429n2
7765n2
1479.5n6
7573n6
1960n3
7013n3
71624n5
226.99n6
255n3
263n6
210.5n6
AMD Ryzen 7 PRO 7730UBarcelo-U RefreshCezanne (Zen 3, Ryzen 5000)4MB + 16MB152000 ‑ 45008/167x86yes710Vega 8
~35.477%
8758
6108
33735
2.68
17.55
229
1756
562
3967
1441
10095
8.46
456.71
10.43
369.11
5274
221
95
12.05n2
4.2
0.67
0.46
301.5n2
528n2
5269n2
45924n2
1437.5n2
6559.5n2
1894.5n2
6336n2
71022
242
252
254
AMD Ryzen 7 5825UBarcelo-U (Zen 3)Cezanne (Zen 3, Ryzen 5000)4MB + 16MB152000 ‑ 45008/167x86yes710Vega 8
~36.580%
11292
6304
32641
2.75
18.56
231.5n4
1778n4
556n4
4003.5n4
1447n4
10273.5n4
7.2
366
9.2
340.8
5835
249.6
100.3
12.65n4
8.7
1.5
1.1
302.5n4
542.5n4
5436.5n4
47588.5n4
1455
7235
1468n3
6782n3
70779
227.87n2
232
266.5n4
213n4
AMD Ryzen 7 5825CBarcelo (Zen 3)Cezanne (Zen 3, Ryzen 5000)4MB + 16MB252000 ‑ 45008/167x86yes589Vega 8
AMD Ryzen 5 5600HCezanne-H (Zen 3)Cezanne (Zen 3, Ryzen 5000)3MB + 16MB453300 ‑ 42006/127x86yes1072Vega 7
~35.689%
12008n3
5832n4
35017.5n4
2.62n4
19.2n4
223n13
1573n15
534n14
3721n15
1369n12
9631.5n12
7.94n2
406.61n2
6.58n2
201.1n2
7497
251.21
95.18
12.4n13
7.35n2
1.2n2
0.83n2
319n13
582n3
5369n13
44613n13
5813n3
27790n3
1373n6
6483n6
1428n13
6567n13
1610
7910
67221n3
204.2n5
190.3n2
267n14
202n3
AMD Ryzen 7 5800UCezanne-U (Zen 3)Cezanne (Zen 3, Ryzen 5000)4MB + 16MB251900 ‑ 44008/167x86yes1072Vega 8
~34.268%
6039
26711
2.7
14.78
229n4
1613n5
555n5
3303n5
1427n5
8154n5
9.83
514
4.11
136.5
230.5
80.8
10.3n4
351.85n4
5362.5n4
42603.5n4
5878
28418
1411
7053
1428.5n4
6722.5n4
64961n3
178.6n4
184.25n2
249n3
AMD Ryzen 7 PRO 5850UCezanne-U PRO (Zen 3)Cezanne (Zen 3, Ryzen 5000)4MB + 16MB151900 ‑ 44008/167x86yes1072Vega 8
~30.573%
11656n2
5817
27430
2.67
16.63
227n3
1467n3
548n3
3417n3
1405n3
8716n3
10
529
8.12
258.7
6290
217.6
83.4
11.3n3
4.2
1
0.75
345n3
5231n3
44266n3
5810n2
25894.5n2
1220n2
5477n2
1436n3
6889n3
260n4
AMD Ryzen 7 4800HRenoir-H (Zen 2)Renoir (Ryzen 4000 APU)4MB + 8MB452900 ‑ 42008/167x86yes1438Vega 7
~30.680%
12683n2
5684n2
37276n2
2.18n3
21.1n3
188n15
1854n21
485n17
4339.5n18
1253.5n4
11135.5n4
9.81
564
3.38
90.9
4601
215.6n2
102.7n2
12.8n16
10.3
1.9
1.1
262n15
4686n15
50075n15
4949.5n2
26453n2
1184n2
7108n2
1191n17
7955n17
43309n2
136.8
129
218.5n12
Intel Core i7-10875HComet Lake-HComet Lake2MB + 16MB452300 ‑ 51008/1614x86yes1352UHD Graphics 630
~34.370%
12944.5n2
7803
44805
2.4
18.69
202n37
1594.5n38
483.5n32
3391.5n32
1241.5n6
8889.5n6
7.7
431.7
7473
242.4
103
12.1n27
10.3
1.8
1.1
322.5n30
5319n31
44947n31
5803n5
31346n5
1264n5
7370n5
1300n29
7799n29
147.1
239n26
Intel Core i9-9980HKCoffee Lake-HCoffee Lake2MB + 16MB452400 ‑ 50008/1614x86yes1690UHD Graphics 630
~34.380%
13208n3
7969.5n4
44455n4
2.28n3
17.2n3
201n13
1624n14
478.5n10
3475n10
7.75n2
432.25n2
4.36n2
115.3n2
7351n2
238.1n2
93.8n2
11.4n3
10.2n2
1.7n2
1n2
348.4n3
5389.5n4
41688n4
4871
31724
5969n3
29385n3
1282n4
7403.5n4
1346n2
7568n3
42219.5n8
158.3
107.3n2
233
Intel Core i7-10870HComet Lake-HComet Lake2MB + 16MB452200 ‑ 50008/1614x86yes1191UHD Graphics 630
~37.245%
200n11
1659n14
473.5n12
3632n12
1226n12
9892.5n12
12.45n12
292n12
5295.5n12
44975.5n12
5652n3
30578n3
1276n3
7700n3
1282.5n12
7735.5n12
54493.5n2
156.8n3
132
225n11
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
Intel Core i7-9700KCoffee Lake-RCoffee Lake2MB + 12MB953600 ‑ 49008/814x86yes1894UHD Graphics 630
~34.364%
12928n5
7653n2
42777.5n2
2.37
15.83
205.5n2
1449n2
475
3250
7.74
421.1
4.49
120.5
7396
270
94.8
13
8.1
1.3
0.77
307
4825
27774
5984n2
29225.5n2
1300
7440
41962
Intel Core i5-13420HRaptor Lake-HRaptor Lake-H8MB + 12MB451500 ‑ 46008/1210x86yes345UHD Graphics Xe G4 48EUs
Intel Core i5-12450HXAlder Lake-HXAlder Lake-S8MB + 12MB551800 ‑ 44008/1210x86yes584UHD Graphics Xe 16EUs (Tiger Lake-H)
Intel Core i5-12450HAlder Lake-HAlder Lake-P8MB + 12MB451500 ‑ 44008/1210x86yes710UHD Graphics Xe G4 48EUs
~37.984%
11439n4
8178n3
35790n3
2.88n3
16.05n3
238n4
1266n4
643n4
3253.5n4
1665n4
8320n4
8.41n3
451.44n3
7.23n3
436.01n3
6015n3
272.5n3
75.95n3
9.94n4
8n3
1.3n3
0.79n3
403n5
701n5
5278n5
33549n5
7153n5
28151n5
1575n4
7120.5n4
1639n5
7200n5
2262n5
8123n5
291.61
285n4
238.5n2
Intel Core i5-12400FAlder Lake-SAlder Lake-S7.5MB + 17.9MB652500 ‑ 44006/1210x86yes710UHD Graphics 750
~38.977%
11892
8389
40690
2.95
20.39
244
1759
653
4740
1680
12380
8.3
438.44
4.08
112.85
7816
252.5
101.35
15.2
9.3
1.4
0.88
269
430
5476
45043
7548
35098
1673
9368
1742
9517
272
235
Intel Core i5-11400FRocket LakeRocket Lake3MB + 12MB652600 ‑ 44006/1214x86yes940UHD Graphics 750
~32.573%
13359
6210
44220
2.23
17.65
210
1574
502
3945
1339
10235
7.76
703
4.09
117.2
7147
258
91.5
13.5
8.7
1.4
0.84
290.2
5466
41522
6836
30191
1543
7679
1575
7681
255
Intel Core i5-1350PRaptor Lake-PRaptor Lake-P10MB + 18MB281400 ‑ 470012/1610x86yes710Iris Xe G7 80EUs
Apple M3Apple M34MB2748 ‑ 40568/83ARMyes51M3 10-Core GPU
~64.536%
271
1499
504
2818
1904
10454
474
761
2342
10774
3087.5n2
11914.5n2
96933
304.5
559
423
Intel Core i5-10600KComet LakeComet Lake1.5MB + 12MB1254100 ‑ 48006/1214x86yes1304UHD Graphics 630
~31.170%
7343
40074
2.19
15.76
205
1452
464
3443
1385
10475
7.8
438.7
4.65
113.2
6536
251.5
88.2
12.2
8
1.4
0.82
302.4
5289
40379
5821
28391
1281
7237
1286
7248
239
AMD Ryzen 7 4800HSRenoir-HS (Zen 2)Renoir (Ryzen 4000 APU)4MB + 8MB352900 ‑ 42008/167x86yes1438Vega 7
~30.468%
12785
5705
36313
2.19
19.94
186.5n2
1700.5n2
482
3869
9.72
561
4.11
91.1
4642
216.5
99
12
10.3
1.8
1.1
284
4655
48392
5134n2
29223.5n2
1196
7878
1190.5n2
7611n2
214
Intel Core i9-9880HCoffee Lake-HCoffee Lake2MB + 16MB452300 ‑ 48008/1614x86yes1690UHD Graphics 630
~29.480%
12225.5n2
6967
42456
2.11
18.94
190n11
1508n11
465n7
3235n7
1174n2
8747n3
8.52
476.5
5.39
118.7
6683
217
102.4
11.1n3
7.5
1
0.68
334.5n4
4924n3
42138n3
5457n3
29077n3
1186n3
7100n3
1176n2
7231n2
40443n5
151.8n2
134.1n2
184
Intel Core i7-8086KCoffee Lake-SCoffee Lake1.5MB + 12MB953700 ‑ 50006/1214x86yes2023UHD Graphics 630
~29.873%
11218n2
7216n2
35896n2
2.28n2
15.04n2
206n3
1349n3
495n2
3111n2
1260
8686
8.5n2
466.95n2
4.13n2
119.8n2
6751.5n2
230.55n2
85.45n2
11.3n2
7.85n2
1.4n2
0.79n2
316n3
5416.5n2
36059.5n2
5792n3
24527n3
1276n2
5644n2
1240
5485
217n2
Intel Core i7-8700KCoffee Lake-SCoffee Lake1.5MB + 12MB953700 ‑ 47006/1214x86yes2535UHD Graphics 630
~32.361%
11701n3
7328n4
39096n4
2.2n4
15n4
192n5
1362n5
430
3165
8.02n5
442.8n5
4.16n5
118.9n5
7120n3
232n3
87.2n3
10.8
8n5
1.4n5
0.79n5
332.75n2
5783n3
25045n3
1210
6310
55.75n2
47063.5n2
Intel Xeon W-11855MTiger Lake-HTiger Lake7.5MB + 18MB453200 ‑ 49006/1210x86yes948UHD Graphics Xe 32EUs (Tiger Lake-H)
~39.65%
1573
7191
Intel Core i5-11500HTiger Lake H45Tiger Lake7.5MB + 12MB452900 ‑ 46006/1210x86yes948UHD Graphics Xe 32EUs (Tiger Lake-H)
~38.15%
1507
6987
AMD Ryzen 7 2700XZen+Ryzen 74MB + 16MB1053700 ‑ 43008/1612x86yes2073UHD Graphics 750
~29.264%
10643n15
5256
34763
1.95
18.68
175.7n3
1762n3
430
3944
10.8
578
3.48
96.6
4779
226.7
104.5
10.6
1.6
1
266.8n2
4647
45814
5049.5n2
27789.5n2
1126
7878
1177n2
7021.5n2
Intel Core i5-10400FComet LakeComet Lake1.5MB + 12MB652900 ‑ 43006/1214x86yes1304UHD Graphics 750
~30.457%
6719
36564
2.03
14.39
180
1332
438
3201
8.74
470.4
6.25
134.7
228.5
81.2
11.2
332.4
5064
36731
5587
25403
1217
6349
1220n2
6365n2
215
Intel Core i5-11400HTiger Lake-HTiger Lake7.5MB + 12MB452700 ‑ 45006/1210x86yes948UHD Graphics Xe 16EUs (Tiger Lake-H)
~36.591%
12043n3
8712n2
39095.5n2
2.5n2
14.64n2
218n6
1277n7
561n6
3283n7
1460.5n6
8451n7
7.52n2
487.52n2
6.8n2
231.84n2
5571n2
182.25n2
69.93n2
9.63n6
8.15n2
1.25n2
0.8n2
396n6
662
5116n6
33444n6
6110
24947
1461
5961
1500n7
6006n7
2090
6317
156.15n2
63574.5n2
190.55n2
197n2
250n6
204
AMD Ryzen 7 4980URenoir-U (Zen 2)Renoir (Ryzen 4000 APU)4MB + 8MB152000 ‑ 44008/167x86yes976Vega 8
~33.143%
5715
35106
2.15
18.87
182
1658
492
3453
1260
9164
9.6
758
9.82
342
4320
42368
1133
7156
210
AMD Ryzen 7 5700ULucienne-U (Zen 2)Lucienne (Zen 2, Ryzen 5000)4MB + 8MB251800 ‑ 43008/167x86yes1072Vega 8
~33.886%
11662
5780
31131
2.18
16.77
188n15
1483.5n16
490n17
3370n17
1258n16
8779n16
24.58
1081
3.49
110.9
3763
191.5
72.4
10.1n16
9.2
1.6
1
331.5n16
572.5n2
4568n16
41598n16
5085n3
26487n3
1199n3
6904n3
1186n15
6264n15
158.1
56365.5n2
152.9n7
181.1n2
215.5n12
169.35n2
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
Intel Xeon E-2176GCoffee Lake-ERCoffee Lake1.5MB + 12MB803700 ‑ 47006/1214x86yes1931UHD Graphics P630
~29.959%
11719
7369
39053
2.2
14.58
200
1324
8.31
467.9
4.52
132.1
6277
233.2
83.3
9.92
8
1.3
0.79
352
5157
37522
5297
21008
1225
6271
36458
Intel Core i7-9700Coffee Lake-RCoffee Lake2MB + 12MB653000 ‑ 47008/814x86yes1697UHD Graphics 630
~30.166%
7473
37381
2.25
14.44
199
1254
474
2892
8.31
460.7
4.79
155.8
6945
247.5
77.6
10.5
7.6
1.3
0.78
388.7
5186
33539
5777
27040
1300
7060
1312
7060
232
Intel Core i9-8950HKCoffee Lake-HCoffee Lake1.5MB + 12MB452900 ‑ 48006/1214x86yes2113UHD Graphics 630
~33.870%
11055n7
7149n5
36591n5
2.24n7
13.22n7
195n14
1223.5n14
442.5n2
2651.5n2
8.41n2
466.45n2
8.08
245.4
6420.5n2
224.9n2
77.9n2
8.84
7.2n2
1.2n2
0.74n2
410.8
5080
4567n3
23881n3
5665.5n4
24399.5n4
1097
5205
173.85n2
40726n6
115
Intel Xeon E-2186MCoffee Lake-HCoffee Lake1.5MB + 12MB452900 ‑ 48006/1214x86yes2115UHD Graphics 630
~237%
1098
1248
5239
Intel Xeon E-2276MCoffee Lake-HCoffee Lake1.5MB + 12MB452800 ‑ 47006/1214x86yes1689UHD Graphics P630
~40.134%
195n2
1242.5n2
484
2782.5n2
9.68
384
5214
33994
5218
24150
1303
6595
56114
164.1
220
Intel Xeon W-2145Skylake-WXeon8MB + 11MB1403700 ‑ 45008/1614x86yes2299UHD Graphics 750
~45.118%
177
1682n2
4996
34132
1192
9146
90.9
46837
Intel Core i7-10850HComet Lake-HComet Lake1.5MB + 12MB452700 ‑ 51006/1214x86yes1352UHD Graphics 630
~3048%
9471
7653
34586
2.25
12.22
203
1232
494
2636
7.7
431.6
5519
8.37
7.8
1.3
0.81
425
5241
30988
1305
5753
Intel Xeon W-10855MComet Lake-HComet Lake1.5MB + 12MB452800 ‑ 51006/1214x86yes1311UHD Graphics P630
~32.95%
1296
6231
Intel Core i7-10750HComet Lake-HComet Lake1.5MB + 12MB452600 ‑ 50006/1214x86yes1352UHD Graphics 630
~29.780%
11307n3
7376.5n2
37154n2
2.2n2
13.92n2
197n45
1303.5n50
472n43
2941n43
1217n16
7463.5n16
8.3
466.6
5.56
142.7
6287n2
221.2n2
78.3n2
9.89n43
7.6n2
1.3n2
0.77n2
371n43
5120n43
35346n43
5600.5n8
24897n8
1253n8
6338.5n8
1270n43
6308n43
53724.5n6
152.65n8
136.9n3
225n39
AMD Ryzen 7 4800URenoir-U (Zen 2)Renoir (Ryzen 4000 APU)4MB + 8MB151800 ‑ 42008/167x86yes1438Vega 8
~28.977%
10227
5690
33649
2.15
17.84
183n3
1411n3
480n4
3230.5n4
1235n3
8376n3
9.73
585
3.63
99.5
3881
196.1
88.5
10.4n3
10.2
1.5
1.1
340n3
4436n3
40117n3
4963n2
27286.5n2
1162
7298
1156.5n4
6136.5n4
36619
133.45n2
208n3
Intel Core i7-8700Coffee Lake-SCoffee Lake1.5MB + 12MB653200 ‑ 46006/1214x86yes2535UHD Graphics 630
~33.859%
11193n3
7171n3
35384n3
2.17n2
12.97n2
192n3
1199n3
8.36n3
472.2n3
6.77n2
198.4n2
6332n3
234.6n3
75.2n3
9.53
7.7n3
1.3n3
0.8n3
388.2
4486n2
23061.5n2
5565
23220
1170
6250
64.5
Intel Core i5-10500HComet Lake-HComet Lake + 12MB452500 ‑ 45006/1214x86yes1352UHD Graphics 630
~27.973%
11157
7109
37125
2.1
13.84
186.25n2
1249n2
448n2
2919n2
1159.5n2
7103.5n2
8.59
485.6
9.13
281
6194
227.5
77.8
9.52n2
4.1
0.94
0.58
385.5n2
4885.5n2
33445n2
5501
25696
1200
6233
1205.5n4
6332n4
223.5n2
Intel Core i5-9600KCoffee Lake-RCoffee Lake1.5MB + 9MB953700 ‑ 46006/614x86yes1894UHD Graphics 630
~2752%
10974
7205
33950
2.24
10.98
193
1094
7.74
421.1
6.03
176.2
5903
250
68.8
8.02
5.6
0.63
0.43
444.4
5916
23810
1217
5855
AMD Ryzen 5 5600HSCezanne-HS (Zen 3)Cezanne (Zen 3, Ryzen 5000)3MB + 16MB353000 ‑ 42006/127x86yes1072Vega 7
AMD Ryzen 5 4600HRenoir-H (Zen 2)Renoir (Ryzen 4000 APU)3MB + 8MB453000 ‑ 40006/127x86yes1438Vega 6
~32.775%
5365
32756
2.04
16.25
176n9
1425n10
449.5n8
3229.5n8
1142.5n4
8072n4
10.5
607
4380
197
82.9
9.8n5
5
1.4
0.81
352n6
631
4397n6
37642.5n6
4964
25247
1117n7
6080n7
1525
6631
47137.5n2
134.35n2
127.75n2
207n4
Intel Core i7-9850HCoffee Lake-HCoffee Lake1.5MB + 12MB452600 ‑ 46006/1214x86yes1690UHD Graphics 630
~26.870%
10056n2
7169
31938
2.13
12.47
193n3
1230n3
439.5n2
2114n2
8.15
467.6
8.3
278
5621
201.3
68.3
9n3
7.4
1.2
0.76
415n3
5086n3
31087n3
5594n3
23715n3
1169n2
5619.5n2
1150
5270
39091n3
71.6
Intel Core i7-9750HCoffee Lake-HCoffee Lake + 12MB452600 ‑ 45006/1214x86yes1690UHD Graphics 630
~31.380%
10791.5n10
6970n13
34445n13
2.12n10
13.11n10
185.5n82
1188n85
442n55
2599n55
8.35n4
467.3n4
4.93
154.4
6395.5n2
214.8n2
70.25n2
8.83n21
7.35n2
1.25n2
0.73n2
435.2n21
4865n21
33303n21
4252.5n8
22711.5n8
5266n27
22951n27
1171n15
5635n15
1204n13
5813n13
84.05n4
36178n47
59.8n3
208.5n10
Intel Core i9-9900TCoffee Lake-RCoffee Lake2MB + 16MB352100 ‑ 44008/1614x86yes1894UHD Graphics 630
~26.268%
10259
6758
31357
2.09
12.38
185
1112
440
2626
8.77
481
5.88
162.1
6109
173.4
70.3
5.5
4.6
0.83
0.54
422
4894
35084
5381
23223
1193
5875
1206
5888
197
AMD Ryzen 7 2700Zen+Ryzen 74MB + 16MB653200 ‑ 41008/1612x86yes2073UHD Graphics 750
~26.252%
9475
4505
31385
1.78
16.71
161
1551
11.08
597
5.14
130.5
4440
195.7
89.7
9.51
9
1.4
0.9
308.3
4681
22776
1000
6560
AMD Ryzen 7 1800XZenRyzen 74MB + 16MB953600 ‑ 40008/1614x86yes2479UHD Graphics 750
~30.886%
9585n3
5062
32833
1.79
18
160.8n4
1618n4
398.5n2
3610.5n2
939
8891
12.7
613
4.6n2
103.5n2
3967n2
179n2
84n2
9.76n2
9.7n2
1.5n2
0.95
294.75n2
4062n2
40776n2
20615
4014
30389
4488.5n2
26147n2
1006.5n2
7036n2
1023n3
6545n3
107.7
31263
53.1
186.5n2
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
AMD Ryzen 7 1700XZenRyzen 74MB + 16MB953400 ‑ 38008/1614x86yes2479UHD Graphics 750
~26.864%
9076n2
4662
31950
1.73n2
16.95n2
154n3
1537n3
335
3280
10.83
576
4.89n2
109.4n2
3728n2
180n2
90.05n2
8.88
8.95n2
1.4n2
0.9n2
327.1
3746
39624
19631n2
4277
24555
932
6275
Intel Core i5-11260HTiger Lake-HTiger Lake7.5MB + 12MB452600 ‑ 44006/1210x86yes948UHD Graphics Xe 16EUs (Tiger Lake-H)
~22.39%
3831
8990
1428
6358
Apple M2Apple M220MB + 8MB202424 ‑ 34808/85ARMyes553M2 10-Core GPU
~5539%
223n5
1215n5
381n5
2324n5
1585n5
8667n5
597n5
619.5n4
1917n7
8961n7
2621.5n2
10063.5n2
74614n7
226.8n7
392n7
377n7
226.5n6
AMD Ryzen 5 4600HSRenoir-HS (Zen 2)Renoir (Ryzen 4000 APU)3MB + 8MB353000 ‑ 40006/127x86yes1438Vega 6
~31.89%
4630
20170
1100
6345
Intel Xeon E-2176MCoffee Lake-HCoffee Lake1.5MB + 12MB452700 ‑ 44006/1214x86yes2115UHD Graphics 630
~29.252%
9757n3
6973n3
32132n3
2.04n3
12.29n3
187n3
1095n3
8.6n2
477n2
5.34n2
163.3n2
4624.5n2
203.55n2
63.05n2
8.72
6.85n2
1.1n2
0.68n2
509.9n2
4660n2
20689.5n2
76.2
36101.5n2
Intel Core i7-11390HTiger Lake-H35Tiger Lake5MB + 12MB353400 ‑ 50004/810x86yes835Iris Xe G7 96EUs
~35.984%
10150.5n2
9604
29456
2.78
10.68
232n3
953n3
614n3
2284n3
1602n3
5917n3
6.77n2
349.8n2
6.52
196.91
6374.5n2
232.3n2
58.55n2
7.61n3
6.05n2
0.91n2
0.56n2
513n3
1101n2
5682n3
25876n3
7125.5n2
22986n2
1655
5025
1615.5n4
5235.5n4
2194n2
5630n2
117.6
266.5n2
204
Intel Core i7-11375HTiger Lake-H35Tiger Lake5MB + 12MB353300 ‑ 50004/810x86yes1068Iris Xe G7 96EUs
~39.439%
230
929
606
2569
1578
6663
8.54
473
5565
28441
6891
22937
1631
5975
1648
6098
249
AMD Ryzen 7 PRO 4750URenoir-U PRO (Zen 2)Renoir (Ryzen 4000 APU)4MB + 8MB151700 ‑ 41008/167x86yes1317Vega 7
~28.680%
11008
8378.5n2
29573.5n2
2.12n2
15.78n2
181n5
1410n5
469n5
3203n5
1215n3
8359n3
10.04n2
673n2
3.95
108.9
4227n2
201.9
79.9
9.54n5
7.05n2
1.25n2
0.86n2
352n5
4438n5
39649n5
4995
25564
1167
6811
1149n5
6153n5
49781n4
139.8n4
133.5n2
205n5
Apple M1Apple M-Series16MB + 8MB2064 ‑ 32208/85ARMyes1130M1 8-Core GPU
~49.945%
208n3
1072n4
402.5n4
2093.5n4
1514.5n6
7800.5n6
561n2
964
5441
34614
1730n9
7578n9
2363
8622
76.4n3
62589.5n8
178.55n8
214n8
280.5n8
189
Intel Core i7-1195G7Tiger Lake-UP3Tiger Lake5MB + 12MB282900 ‑ 50004/810x86yes929Iris Xe G7 96EUs
~35.180%
9989
2.7
10.59
222n8
940n9
559n9
1932n9
1455n9
5337n9
6.75
354.2
8.17
281.4
6334
6.64n9
6.4
0.99
0.63
597.5n10
1105n2
5386n9
24669n9
6894n2
20629.5n2
1605.5n2
5066n2
1536n7
4734n7
2064n2
7644n2
118.3
69945
194.5n3
213
261n9
Intel Core i7-11370HTiger Lake-H35Tiger Lake5MB + 12MB353300 ‑ 48004/810x86yes1068Iris Xe G7 96EUs
~41.348%
10019
229n15
960n17
589n11
2199n11
1507n11
5712.5n12
7.7n11
491n11
783
5307n11
26791n11
1380
4911
1556.5n10
5388n10
68903n3
193.5n3
199n3
263n11
205
Intel Core i5-1250PAlder Lake-PAlder Lake-P10MB + 12MB281200 ‑ 440012/1610x86yes710Iris Xe G7 80EUs
~31.773%
11842
7918
38277
2.74
9.71
201
1528
536
2334
1521
7282
8.43
461.49
9.58
339.99
5561
201.07
79.64
6.77
9.5
1.9
1
511
3532
24625
7072
35532
1583
8778
1622
7672
254
Intel Core i5-1340PRaptor Lake-PRaptor Lake-P9MB + 12MB281400 ‑ 460012/1610x86yes710Iris Xe G7 80EUs
~39.975%
11552
1.86
19.9
240.5n2
1756n2
655n2
4114n3
1710n2
10920.5n2
13.15
731.21
3503
228.93
95.23
12.4n2
9.3
1.6
0.88
299.5n2
570n2
5317n2
44767n3
4246n4
29296n4
967n2
7117n2
1721.5n2
10020.5n2
85504
258.95
298
241.5n2
215.25n2
Intel Core i5-1240PAlder Lake-PAlder Lake-P10MB + 12MB281200 ‑ 440012/1610x86yes710Iris Xe G7 80EUs
~4080%
8205
42275
2.85
22.09
225n16
1592n17
597.5n14
3173.5n14
1600n15
8337n17
8.3
438.9
10.1
329.9
17276
9.3n14
6.6
1.5
0.81
413.5n14
839.5n10
4738n14
33826n14
7106n3
34828n3
1543n2
8275.5n2
1588n13
7848n13
106n2
77844.5n6
236.09n5
245n4
261n13
228n8
Intel Core i5-1345URaptor Lake-URaptor Lake-U9.5MB + 12MB151200 ‑ 470010/1210x86yes710Iris Xe G7 80EUs
~46.745%
240n3
1311n3
660n3
2951n3
1724n3
7724n3
8.78n3
415n3
813n3
5296n3
34915n3
7318n2
30701.5n2
1656n3
7692n3
1653n3
7738n3
256.37n2
277.5n2
242.5n2
Intel Core i7-1255UAlder Lake-UAlder Lake-M9.5MB + 12MB151200 ‑ 470010/1210x86yes710Iris Xe G7 96EUs
~49.548%
238.5n10
1400n9
638n9
3131n9
1656n9
8332n9
9.72n9
383n9
723n8
5256n9
36825n9
1610.5n4
7294.5n4
1650.5n10
7989.5n10
97.3
82948n5
242.27n7
264n5
275n10
232n9
AMD Ryzen 5 PRO 6650URembrandt-U PRO (Zen 3+)Rembrandt (Zen 3+)3MB + 16MB282900 ‑ 45006/126x86yes604Radeon 660M
~34.884%
11322
6062
32262
2.79
16.19
232.5n4
1459.5n4
570n4
3427.5n4
1463n4
8854n4
7.94
712.15
7.74
243.3
5343
224.34
86.33
9.84n4
5.5
0.96
0.61
397n5
712.5n4
5228.5n4
37856.5n4
5910
28857
1417
7218
1452.5n4
6488.5n4
72306
230.7
226
233.5n4
185.35n4
AMD Ryzen 5 7535URembrandt RRembrandt (Zen 3+)3MB + 16MB282900 ‑ 45506/126x86yes344Radeon 660M
AMD Ryzen 5 6600URembrandt-U (Zen 3+)Rembrandt (Zen 3+)3MB + 16MB282900 ‑ 45006/126x86yes710Radeon 660M
~35.882%
9908n2
6242
32097
2.73
17.15
233n2
1493n2
570n2
3623n2
1456.5n2
9159.5n2
8.12
692.42
4.69
146.55
6937
212
71.45
11.7
9.3
1.3
0.86
415
488.5n2
5486
44320
6382.5n2
33338n2
1481n2
8602.5n2
1483n3
7529n3
1977
8310
274
217
Intel Core i3-1220PAlder Lake-PAlder Lake-P9.5MB + 12MB281100 ‑ 440010/1210x86yes710UHD Graphics 64EUs
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
Intel Core i5-1245UAlder Lake-UAlder Lake-M9.5MB + 12MB151200 ‑ 440010/1210x86yes710Iris Xe G7 80EUs
~37.277%
12162
8303
37663
2.92
16.2
242
1311
649
3153
1690
8199
8.39
442.77
5.44
229.1
6154
263
78.35
9.47
9.2
1.5
0.87
388
712
5097
35918
7065
33040
1585
8911
1675
9065
271
240
Intel Core i5-1335URaptor Lake-URaptor Lake-U9.5MB + 12MB15900 ‑ 460010/1210x86yes710Iris Xe G7 80EUs
~41.491%
12286
9351
40266
2.97
18.94
236n9
1472n9
643n9
3319n9
1684n9
7783n9
7.37
423.06
8.03
507.82
5178
256.95
81.84
9.2n9
9.5
1.7
0.87
414n9
804n9
5149n9
34186n9
7007
30532
1641.5n2
8225n2
1672n9
7865n9
2312n5
8649n6
64.5
83996n3
259.02n6
306n3
260n8
232n6
Intel Core i5-1334URaptor Lake-URaptor Lake-U9.5MB + 12MB15900 ‑ 460010/1210x86yes710Iris Xe G7 80EUs
Intel Core i7-1185G7Tiger Lake-UP3Tiger Lake5MB + 12MB283000 ‑ 48004/810x86yes1199Iris Xe G7 96EUs
~3284%
9108
8872n2
27024.5n2
2.54n2
9.33n2
217n27
866n32
558.5n28
2090n28
1455.5n24
5383.5n24
7.12
380.38
5.78n4
240.41
6045
198.8
46.6
6.64n27
5.8
0.81
0.5
578.5n28
1102.5n2
5153n27
23471n27
6437n7
22175n7
1531.5n8
5578.5n8
1529n21
5550n21
61608n4
172.8n15
166.5n4
253n27
189.9n2
Intel Core i7-8850HCoffee Lake-HCoffee Lake1.5MB + 9MB452600 ‑ 43006/1214x86yes2113UHD Graphics 630
~30.475%
10516n3
6766n4
34216.5n4
2.04n4
13.85n5
181.5n10
1090n15
441n3
2522n3
1096
5742
8.7
483
5922
216.1n2
71.35n2
7.61n3
7.4
1.2
0.73
490.1n3
4689n3
30851n3
5261n4
22631.5n4
1006
4860
1121
4908
76.1
35232n6
108.1n2
194
Intel Core i5-8600KCoffee Lake-SCoffee Lake1.5MB + 9MB953600 ‑ 43006/614x86yes2535UHD Graphics 630
~28.145%
9078
6875
32863
2.07
10.76
181n2
989.5n2
8.76n2
496.45n2
5.69
188.8
4583
232.65n2
63.35n2
5.4
0.89
0.53
4217
18970
68.1
Intel Core i5-8500Coffee Lake-SCoffee Lake1.5MB + 9MB653000 ‑ 41006/614x86yes2083UHD Graphics 630
~25.945%
9903
8606
40829
1.96
10.21
172
950
9.22
541
26.52
848
4219
206.5
7.86
5
0.87
0.52
494.8
4513
23200
Intel Core i7-8750HCoffee Lake-HCoffee Lake1.5MB + 9MB452200 ‑ 41006/1214x86yes2113UHD Graphics 630
~3175%
10294.5n22
6471n25
33595n25
1.98n40
12.33n41
173n86
1116n93
412.5n6
2336.5n6
9.33n8
524n7
5.48n6
156.8n6
5310
200.3n2
67.2n2
7.8n5
7
1.2
0.72
469.25n6
4629n5
31144n5
4008n13
21920n13
5040n17
21648n17
1050
4820
83n6
34163n47
64.5
213
AMD Ryzen 7 4700URenoir-U (Zen 2)Renoir (Ryzen 4000 APU)4MB + 8MB152000 ‑ 41008/87x86yes1438Vega 7
~31.791%
8629n2
5524n2
24770.5n2
2.1
12.56
180n11
1094.5n12
466n9
2647n9
1220.5n2
7378n3
10.01
599
7.89
265.7
3963n2
191.3
57.4
8.43n8
5.25n2
1.01n2
0.64n2
477.5n8
858
4361.5n8
30954n8
16771
4351
20656
4841n3
21001n3
1128n3
5018n3
1131n8
5656n8
90.4
43380.5n4
147n2
134.3n3
203n8
AMD Ryzen 5 7530UBarcelo-U RefreshCezanne (Zen 3, Ryzen 5000)3MB + 16MB152000 ‑ 45006/127x86yes344Vega 7
~44.250%
230.5n8
1457.5n8
565n8
3288n8
1443n8
8418.5n8
10.7n7
362n7
674n7
5339n7
37983n7
1376.5n2
6396.5n2
1479n7
6390n7
1941n2
6500n2
72262
229.15n3
252
264n6
209n6
AMD Ryzen 5 PRO 7530UBarcelo-U RefreshCezanne (Zen 3, Ryzen 5000)3MB + 16MB152000 ‑ 45006/127x86yes344Vega 7
~40.15%
1904
5548
Intel Core i7-1165G7Tiger Lake-UP3Tiger Lake5MB + 12MB282800 ‑ 47004/810x86yes1200Iris Xe G7 96EUs
~33.686%
7454n5
8645n4
22636n4
2.49n5
7.94n5
218n77
850n85
564n80
1996.5n80
1457.5n58
5216n63
7.21n4
395.21n4
8.36n2
288.14n2
5717n3
197.95n2
46.3n2
6.45n79
5.7n3
0.82n3
0.46n3
587n79
1150
5217n79
23460n79
6560.5n24
21250.5n24
1533n24
5200n24
1532.5n76
5174.5n76
135.1n2
64672n20
173.7n29
178.45n8
253n72
199.4
Apple A17 ProColl APL1V02Apple A-Series2110 ‑ 37806/63ARMyes99A17 Pro GPU
~55.620%
2138
5305
2915n2
7222n2
13067
87691n2
302.57n2
420.5n2
302.5n2
Intel Core i5-1155G7Tiger Lake-UP3Tiger Lake5MB + 8MB282500 ‑ 45004/810x86yes929Iris Xe G7 80EUs
~43.343%
211n3
890n3
550n3
2173n3
1419n3
5612n3
7.49n3
540n3
1011n2
4941n3
24992n3
6305.5n2
22182n2
1473n3
5761n3
205.85n2
233
244n3
190.05n2
Intel Core i7-10810UComet Lake-UComet Lake1MB + 12MB151100 ‑ 49006/1214x86yes1311UHD Graphics 620
~26.982%
6842.5n2
6926.5n2
19286.5n2
1.95
6.98
182n5
754n4
424n5
1713n5
1118.5n2
4310.5n2
7.98n2
510.87n2
5.9n2
236.33n2
4837n2
147.65n2
39.43n2
5.2n5
5.7n2
0.98n2
0.6n2
694n5
1346
4498n5
21925n5
5203n3
22485n3
1233n3
5168n3
1226n5
3934n5
1563
4090
206n5
161.3
Intel Core i7-10710UComet Lake-UComet Lake1MB + 12MB151100 ‑ 47006/1214x86yes1566UHD Graphics 620
~26.177%
10451
6972n2
31643.5n2
2.18n3
11.81n3
176n8
1059n8
460n4
2303n5
863
4079
8.19n3
507n3
5.24n2
174.25n2
4656.5n2
204n3
60.5n3
5.81n4
6.4n3
1.2n3
0.71n3
618n4
4642n4
24493n4
4615n2
17420n2
1043n2
4258n2
1227n2
5207n2
37343.5n2
150.3
219
AMD Ryzen 7 1700ZenRyzen 74MB + 16MB653000 ‑ 37008/1614x86yes2479UHD Graphics 750
~27.855%
8335n2
4419n3
29330n3
1.66n3
15.7n3
147n3
1414n4
11.75n2
635.5n2
6
120
3447n2
153.85n2
74.4n2
7.2n2
1.3n2
0.83n2
18461
3343
23920
3884
18457
84.6
32176
AMD Ryzen 5 2600XZen+Ryzen 54MB + 16MB953600 ‑ 42006/1212x86yes2073UHD Graphics 750
~26.166%
4958
29954
1.81
14.56
163
1341
421
2688
11.35
616
4.62
133.8
4599
207.4
80.5
8.3
8
1.2
0.78
351.95n2
4293
33222
4641.5n2
22301n2
1067
5939
1144.5n2
6094n2
186
Intel Core i5-8400Coffee Lake-SCoffee Lake1.5MB + 9MB652800 ‑ 40006/614x86yes2535UHD Graphics 630
~25.145%
9474
6363.5n2
30789.5n2
1.9
10.99
169.5n2
941n3
9.5
526
6.2
191.8
5173
223.8
61.4
5
0.83
0.5
488
5104
20500
Intel Core i5-1235UAlder Lake-UAlder Lake-M9.5MB + 12MB15900 ‑ 440010/1210x86yes710Iris Xe G7 80EUs
~47.752%
214n7
1086n7
620n7
2797n7
1610n7
5902n7
9.18n7
448n7
859n6
5083n7
31892n7
1592n5
7643n5
1572n9
6220n9
2208
7046
99.6
80117n4
232.37n6
265n4
261n10
231n9
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
AMD Ryzen 5 5625UBarcelo-U (Zen 3)Cezanne (Zen 3, Ryzen 5000)3MB + 16MB152300 ‑ 43006/127x86yes710Vega 7
~35.986%
11440n3
5806
29724
2.64
15.89
223n7
1447n7
544n7
3224n7
1379n7
8290n7
9.84n2
519.24n2
6.46n2
206.52n2
6340.5n2
229.1
82.1
10.3n7
6.15n2
1n2
0.65n2
365n7
653n5
5246n7
37708n7
5812
24531
1384
6032
1417n7
5947n7
105.8
69094.5n2
220.57n2
215.55n2
260n5
203n6
AMD Ryzen 5 5625CBarcelo (Zen 3)Cezanne (Zen 3, Ryzen 5000)3MB + 16MB252300 ‑ 43006/127x86yes589Vega 7
AMD Ryzen 5 5600UCezanne-U (Zen 3)Cezanne (Zen 3, Ryzen 5000)3MB + 16MB252300 ‑ 42006/127x86yes1072Vega 7
~33.384%
11308n3
2866.25n2
28347n2
2.63n3
14.78n3
223n6
1321n6
534n7
3067n7
1371n5
7792.5n6
8.66n3
454.57n3
5.38n3
156.33n3
6858n3
235n2
78.48n2
9.84n6
7.7n3
1.1n3
0.78n3
412.5n6
798n2
5204.5n6
37815.5n6
5854n3
24495n3
1371n3
6117n3
1391n5
5773n5
65343n3
197.3n3
185.9
255.5n6
200n3
AMD Ryzen 5 PRO 5675UBarcelo-U PRO (Zen 3)Cezanne (Zen 3, Ryzen 5000)3MB + 16MB152300 ‑ 43006/127x86yes1072Vega 7
~44.152%
215.5n2
1326n2
537n2
2991.5n2
1387.5n2
7866.5n2
9.45n2
390.5n2
716n2
5093.5n2
35208.5n2
5814n3
23357n3
1341n2
5207n2
1363.5n2
5227n2
109.2
66431.5n2
210.98n2
212.5n2
241n2
192.55n2
AMD Ryzen 5 PRO 5650UCezanne-U PRO (Zen 3)Cezanne (Zen 3, Ryzen 5000)3MB + 16MB152300 ‑ 42006/127x86yes1072Vega 7
~28.675%
11124
2.24
12.47
2.6
14.19
218n3
1207n3
531n3
2488n3
1363n3
6429n3
8.61
475.8
8.21
270.4
5905
216.1
70.6
8.39n3
7.9
1.1
0.76
443.1n3
5031n3
35235n3
5726
24383
1341
5874
1353n3
5736n3
65444
246n6
AMD Ryzen 5 5560UCezanne-U (Zen 3)Cezanne (Zen 3, Ryzen 5000)3MB + 16MB252300 ‑ 40006/127x86yes1072Vega 6
~43.541%
202
1280
498
3019
1260
7667
10
392
677
4740
38281
1318
5955
1765
6723
239.48
250
192.4
Intel Core i7-1260UAlder Lake-UAlder Lake-M9.5MB + 12MB9800 ‑ 470010/1210x86yes710Iris Xe G7 96EUs
~42.341%
222
1117
588
2838
1538
7444
8.54
431
801
4746
32008
1555
7077
1560
7072
224.23
236
213
Intel Core i7-1250UAlder Lake-UAlder Lake-M9.5MB + 12MB9800 ‑ 470010/1210x86yes710Iris Xe G7 96EUs
~45.145%
226n2
1222n3
611.5n2
2874n2
1567.5n2
7402n2
8.55n2
454.5n2
840n2
4780n2
31380n2
1547
7072
1627n2
7019.5n2
81256
226.25n2
255
268.5n2
230n2
AMD Ryzen 5 4680URenoir-U (Zen 2)Renoir (Ryzen 4000 APU)3MB + 8MB152200 ‑ 40006/127x86yes976Vega 7
~27.264%
5301
31826
2
15.63
170
1291
451
2478
1163
7073
10.5
581
8.2
248.6
3576
7.66
8.3
1.4
1.2
458
4077
32745
1078
5785
47184
133.8
123.5
198
AMD Ryzen 5 2600Pinnacle Riege (Zen+)Ryzen 53MB + 16MB653400 ‑ 39006/1212yes2072UHD Graphics 750
~25.268%
9290
4726
28173
1.76
13.71
157.3n3
1248n3
380
2793
11.17
615
5.5
140.9
4517
205.3
75
7.81n2
7.5
1
0.73
374.95n2
4020
30898
5109n2
23018n2
1020
5885
1118.5n2
6069.5n2
179
Intel Core i5-11400TRocket LakeRocket Lake3MB + 12MB351300 ‑ 37006/1214x86yes1004UHD Graphics 730
~22.273%
7263
6122
20362
1.79
7.3
153
642
378
1500
972
3891
10.09
543.45
7.8
261.3
4409
154.5
40
5.24
4.2
0.65
0.41
704
4157
19699
4855
17082
1130
3495
1146
3510
208
AMD Ryzen 5 5500ULucienne-U (Zen 2)Lucienne (Zen 2, Ryzen 5000)3MB + 8MB252100 ‑ 40006/127x86yes1072Vega 7
~28.184%
9184.5n2
5313
27437
1.99
11.41
177n16
1247n18
457n18
2698n19
1172n17
7186n18
10.46
574
6.22
181.3
3945
162.3
45.31
8.48n18
4.3
0.82
0.54
416.5n18
748.5n4
4324n18
33768n17
4798n5
21901n5
1119.5n8
5515n8
1108n18
5438.5n18
50330n5
149.45n4
153.9n3
206n11
156.3
AMD Ryzen 5 4600URenoir-U (Zen 2)Renoir (Ryzen 4000 APU)3MB + 8MB152100 ‑ 40006/127x86yes1438Vega 6
~36.125%
175.5n2
1089n2
447n3
2544n3
8.8
402
4247
34854
1105
5591
199
AMD Ryzen 5 PRO 4650URenoir-U PRO (Zen 2)Renoir (Ryzen 4000 APU)3MB + 8MB152100 ‑ 40006/127x86yes1317Vega 6
~30.166%
10182
5289
27559
2.02
12.94
175n4
1161n4
453.5n4
2599n4
7.2
366
3795
7.9n4
5.4
1.2
0.81
428.5n4
4223n4
31980n4
4010
22199
4475
19220
1071n4
4648.5n4
44814.5n2
124.3n2
124.9
186n3
Intel Core i5-11320HTiger Lake-H35Tiger Lake5MB + 8MB353200 ‑ 45004/810x86yes835Iris Xe G7 96EUs
~32.977%
10886
8767
32576
2.51
10.78
214n4
905.5n4
560.5n4
2267.5n4
1460.5n4
5852n4
7.51
389.7
5.9
191.4
5481
7.57n4
6.1
0.92
0.53
528.5n4
995n3
5025n4
24760n4
6238
22045
1493.5n4
5259n4
1505n4
5308n4
67714
204.59n3
260.5n4
206n3
Qualcomm Snapdragon 8 Gen 3Cortex-X4 / A720 / A720 / A520 (Kryo)Snapdragon + 8MB2300 ‑ 33008/84ARM v9yes57Adreno 750
~46.720%
1687
6439
2303.5n2
7188n2
54365
202n2
226n2
254n2
181
Intel Core i5-11300HTiger Lake-H35Tiger Lake5MB + 8MB353100 ‑ 44004/810x86yes1068Iris Xe G7 80EUs
~34.273%
10250
8663
30491
2.48
10.97
187n8
961n11
529n11
2247.5n10
1378n11
5702n10
7.98
404.7
4926
215.6
58.9
7.32n10
5.3
0.78
0.45
530n10
4930.5n10
24688.5n10
6019
18976
1415n10
4749n10
163.2
62911n3
183.8n3
188n2
238n11
Intel Core i5-1240UAlder Lake-UAlder Lake-M9.5MB + 12MB9800 ‑ 440010/1210x86yes710Iris Xe G7 80EUs
~43.241%
226
1242
596
2990
1559
7902
9.13
407
744
4446
31097
1547
7029
1596
7066
235.82
266
221
Intel Core i5-1230UAlder Lake-UAlder Lake-M9.5MB + 12MB9700 ‑ 440010/1210x86yes710Iris Xe G7 80EUs
~31.768%
6641
7290
17243
186.8n3
514n3
469n3
1653n3
1310n3
4402n3
7
365
14
576
4985
152.65
41.8
5.96n2
754n2
1458.5n2
3969n3
20092n3
5120
21447
1471.5n2
5505.5n2
1529n3
6755n3
193.59n2
233.5n2
204.2n2
Intel Core i3-1315URaptor Lake-URaptor Lake-U5MB + 10MB15900 ‑ 45006/810x86yes346UHD Graphics 64EUs
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
Intel Core i3-1215UAlder Lake-UAlder Lake-M5MB + 10MB15900 ‑ 44006/810x86yes710UHD Graphics 64EUs
~36.386%
7879
19430
2.79
10.99
217.5n2
809n2
581.5n2
1966n2
1511.5n2
5181.5n2
7.27
372.38
3.41
98.31
7944
199.3
50.05
5.32n2
11.6
1.7
1.1
664.5n2
1249.5n2
5031.5n2
22883n2
6801
23138
1501
6005
1539n2
5258.5n2
2082
5213
78716
254.6
281
312n2
237.5n2
Intel Core i5-10400HComet Lake-HComet Lake1MB + 8MB452600 ‑ 46004/814x86yes1352UHD Graphics 630
~25.657%
9578
7403
25731
2.18
9.62
192
796
471
1924
8.14
484.5
24.93
801
4115
191.4
49.05
6.14
5.3
0.95
0.55
565
4766
23136
1245
4332
Intel Core i3-10320Comet Lake-SComet Lake1MB + 7.9MB653800 ‑ 46004/814x86yes1304UHD Graphics 630
~3264%
9911
7164
28383
2.1
10.5
188
949
458
2320
1185
5986
9.73
516
218
58.8
8.16
5.3
0.91
0.53
469
4899
25864
1217
4846
160
149.4
168
224
Intel Core i5-1145G7Tiger Lake-UP3Tiger Lake5MB + 8MB282600 ‑ 44004/810x86yes1200Iris Xe G7 80EUs
~29.777%
8922.5n2
8274.5n2
25545n2
2.31n2
9.27n2
202.5n2
791.5n2
531n2
1841.5n2
1374.5n2
4880n2
7.51n2
389.85n2
8.35n2
281.14n2
4706.5n2
192
46.3
6.03n2
5.6n2
0.76n2
0.45n2
641n2
1116
4802n2
21844n2
6226
20787
1423
5351
1428.5n2
5261n2
238.5n2
177.4
Intel Core i5-1135G7Tiger Lake-UP3Tiger Lake5MB + 8MB282400 ‑ 42004/810x86yes1200Iris Xe G7 80EUs
~31.786%
8274n2
8116n3
25271n3
2.33n3
9.29n3
198n61
822n65
515n62
1859n62
1345n53
4894n55
8.08n3
412.7n3
6.66n2
259.07n2
5283n3
182.53n2
41.4n2
5.97n57
5.2n3
0.76n3
0.45n3
649.5n60
1254n5
4723.5n62
21892.5n62
5911n13
18889n13
1379n14
4761.5n14
1384n58
4688n58
143.3n3
58147n21
168.8n22
182.3n13
226.5n52
180.4n6
AMD Ryzen 3 7440UPhoenix-U (Zen 4 + Zen 4c)Phoenix (Zen 4, Ryzen 7040)4MB + 8MB283000 ‑ 47004/84x86yes206Radeon 740M
Intel Core i5-10300HComet Lake-HComet Lake1MB + 8MB452500 ‑ 45004/814x86yes1352UHD Graphics 630
~25.880%
9744n2
7130n3
27692n3
2.16n3
10.06n3
186n17
892n17
455.5n14
2113.5n14
1121n2
4863.5n2
8.72
516
7.12
215.2
4825
190.2
53.3
7.27n13
3.1
0.69
0.39
514n13
4903n13
24259n13
5199n4
17278n4
1172.5n4
4365n4
1205n15
4399n15
48896n5
140.6
131.8
210.5n12
AMD Ryzen 3 8440UHawk Point-U (Zen 4 + Zen 4c)Hawk Point (Zen 4/4c, Ryzen 8040)4MB + 8MB283000 ‑ 47004/84x86yes17Radeon 740M
AMD Ryzen 5 4500URenoir-U (Zen 2)Renoir (Ryzen 4000 APU)3MB + 8MB152300 ‑ 40006/67x86yes1438Vega 6
~28.889%
8933.5n2
5337n2
24155.5n2
2.03n2
10.91n2
174n13
892n18
447.5n12
2219n13
1152
5920
10.25n2
622n2
8.3n3
171.9n2
3493n2
210
59.3
6.93n10
4.9n2
0.89n2
0.53n2
584n11
4288n11
24101n11
14964
3960
18690
4624n2
18561n2
1074
4282
1097n10
4632n10
99
48506n3
139.5n3
94.1n2
197n8
Intel Core i7-8809GKaby Lake-GCore i71MB + 8MB1003100 ‑ 42004/814x86yes2165Vega M GH
~27.661%
8837
6668
25809
1.99
9.41
179n2
865n2
404
2005
9.78
484.9
6.57n2
190.85n2
5984
200.3
53.4
7.1
4.8
0.82
0.48
537
4101
19347
5268
17183
78.6
34543
Intel Core i5-8500TCoffee Lake-SCoffee Lake1.5MB + 9MB352100 ‑ 35006/614x86yes2023UHD Graphics 630
~21.748%
8062
5493
25971
1.65
8.6
145
843
10.71
567
8.03
235.1
4331
196
51.8
6.3
3.4
0.63
0.36
561
4626
18335
Intel Core i5-9400HCoffee Lake-HCoffee Lake1MB + 8MB452500 ‑ 43004/814x86yes1690UHD Graphics 630
~8.75%
9.44
823
AMD Ryzen 5 1600ZenRyzen 53MB + 16MB653200 ‑ 36006/1214x86yes2439UHD Graphics 750
~27.184%
8244n2
4538n3
25970n3
1.65n3
12.57n3
147n5
1129n5
349n2
2578n2
915
6468
11.98n3
650n3
6.85n3
149n3
3430n4
177n3
68.7n3
7.21n2
6.4n4
1n4
0.66n4
404.1n2
3834n2
30143.5n2
16217n2
3189
19391
3841n3
18788n3
914.5n2
5402.5n2
950n2
5424.5n2
89
30668
180
AMD Ryzen 3 3300XMatisse (Zen 2)Matisse (Ryzen 3000 Desktop)2MB + 16MB653800 ‑ 43004/87x86yes1317UHD Graphics 750
~27.866%
5856
25416
2.28
11.82
195
1071
500
2430
9.51
531
6.04
164.5
7177
233.5
61.8
8.28
5.9
0.97
0.57
449.4
5329
30353
5753
20529
1299
5406
1296
5311
233
Intel Core i5-10200HComet Lake-HComet Lake1MB + 8MB452400 ‑ 41004/814x86yes1200UHD Graphics 610
~32.730%
171.6
842
419
2082
1089
5372
6.48
515
4497
21148
1094n2
3845n2
187.3
Intel Core i5-1038NG7Ice Lake-UIce Lake2MB + 6MB282000 ‑ 38004/810x86yes1320Iris Plus Graphics G7 (Ice Lake 64 EU)
~26.952%
7844
6743
23609
2.03
7.47
169
768
438
1998
9.45
756
11.2
355
5.99
4.2
4161
19485
1265
4564
45151
142.9
115
180
Intel Core i7-8709GKaby Lake-GCore i71MB + 8MB1003100 ‑ 41004/814x86yes2165Vega M GH
~28.59%
158
791
4436
14863
Intel Core i7-8706GKaby Lake-GCore i71MB + 8MB653100 ‑ 41004/814x86yes2168Vega M GL / 870
~2348%
6549
24130
1.99
8.44
172
781
9.48
505
6.64
199.6
5047
182.6
50
6.35
2.4
0.7
0.42
624
5011
16256
28486
Intel Core i7-8705GKaby Lake-GCore i71MB + 8MB653100 ‑ 41004/814x86yes2168Vega M GL / 870
~23.259%
6436
23794
1.93n2
7.62n2
174n3
746n3
414n2
1883n2
9.25
504
6.67
197.6
4969
181.2
50.1
4.6
0.77
0.45
5009
16066
1066
4029
1059
4047
82.9
32262n3
Intel Core i7-1068G7Ice Lake UIce Lake2MB + 8MB282300 ‑ 41004/810x86yes1597Iris Plus Graphics G7 (Ice Lake 64 EU)
~28.75%
1173
4449
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
Intel Core i5-9300HFCoffee Lake-HCoffee Lake1MB + 8MB452400 ‑ 41004/814x86yes1690UHD Graphics 750
~28.79%
4447
14512
1090
4370
Intel Core i5-9300HCoffee Lake-HCoffee Lake1MB + 8MB452400 ‑ 41004/814x86yes1690UHD Graphics 630
~29.366%
8107n3
6572n5
24623n5
172n11
790n11
419n9
1737n9
9.1
496
5663
193.7
49.4
6n3
4.7
0.84
0.5
602n3
4609n3
22133n3
3854.5n4
15527.5n4
4901n7
16541n7
1123n3
4146n3
86.6
33646n7
63.6
222
Intel Core i5-8400HCoffee Lake-HCoffee Lake1MB + 8MB452500 ‑ 42004/814x86yes2113UHD Graphics 630
~27.477%
6659
21711
170.4n2
761.5n2
393
1793
1128
4657
8.97
498.29
7.2
230.75
5391
185.2
45.25
6.49
4.6
0.78
0.47
596
1151
4553
22023
1118
4211
1127
4352
1493
4963
49389
168
195
209
155.3
Intel Core i7-8559UCoffee Lake-UCoffee Lake1MB + 8MB282700 ‑ 45004/814x86yes2082Iris Plus Graphics 655
~24.468%
8313
7249
23215
2.17
7.32
188
798
466
1691
8.33
464.1
6.54
234.6
6656
191.4
45.59
5.71n2
5
0.81
0.47
666n2
5498.5n2
26301.5n2
13909
5383.5n2
18095n2
1150
4440
723
3660
Intel Core i5-8300HCoffee Lake-HCoffee Lake1MB + 8MB452300 ‑ 40004/814x86yes2113UHD Graphics 630
~26.352%
6463.5n4
22266.5n4
1.9n7
7.84n7
170n17
812n17
9.36n4
548.5n4
7.66n4
265.3n4
169n3
40.15n3
3.9
0.6
0.39
3740
15050
4770
14790
990
3270
88.5
33251n10
AMD Ryzen 5 1500XZenRyzen 52MB + 16MB653500 ‑ 37004/814x86yes2439UHD Graphics 750
~24.580%
7403
4573
20186
1.73
8.95
154n3
805n3
360n2
1783n2
947n2
4597n2
10.95
640
6.9
210.6
3910
177
49.5
5.11n2
4.9
0.74
0.47
586n2
3865n3
21842n3
13198
4282n2
15134n2
915
4035
918.5n2
4603.5n2
74.8
36017
177.5n2
Intel Core i7-1180G7Tiger Lake-UP4Tiger Lake5MB + 12MB152200 ‑ 46004/810x86yes1199Iris Xe G7 96EUs
~34.241%
188
549
492
1301
1280
3434
4.7
844
5108
19703
6260
19898
1530
5254
1525
5304
157.1
242
Intel Core i5-9400FCoffee Lake-RCoffee Lake1.5MB + 9MB652900 ‑ 41006/614x86yes1803UHD Graphics 750
~26.266%
6490
31523
1.95
11.27
173
984
416
2378
9.3
499.8
6.76
198.7
5794
234
64
9.07
5.2
0.86
0.51
468.5
4678
25639
5347
21830
1132
5698
1139
5715
211
AMD Ryzen 3 3100Matisse (Zen 2)Matisse (Ryzen 3000 Desktop)2MB + 16MB653600 ‑ 39004/87x86yes1317UHD Graphics 750
~25.266%
5181
23406
1.99
10.93
178
991
446
2282
10.64
594
6.58
177.6
4848
202.5
58.6
7.58
5.4
0.91
0.52
486.4
4602
27541
5162
18756
1138
5023
1135
5005
209
AMD Ryzen 3 PRO 4450URenoir PRO (Zen 2)Renoir (Ryzen 4000 APU)2MB + 4MB152500 ‑ 37004/87x86yes1317Vega 5
~25.15%
1033
3657
Intel Core i3-10100Comet Lake-SComet Lake1MB + 6MB653600 ‑ 43004/814x86yes1324UHD Graphics 750
~25.866%
6863
26903
2.05
9.93
181
895
436
2181
8.93
481.8
6.34
194.1
6124
212.5
55.8
7.74n2
5
0.86
0.5
493.65n2
4853n2
24355.5n2
5563n2
18692n2
1183.5n2
4748n2
1187.5n2
4758n2
207.5n2
Intel Core i3-10100FComet LakeComet Lake1MB + 6MB653600 ‑ 43004/814x86yes1159UHD Graphics 750
~25.95%
1072
3650
Intel Core i3-9100FCoffee Lake-RCoffee Lake1MB + 6MB653600 ‑ 42004/414x86yes1697UHD Graphics 750
~23.566%
6509
18118
1.95
5.38
171
634
414
1175
9.31
495.5
11.81
345.9
4052
218
44.35
6.12
3
0.5
0.32
687
4682
17150
5301
15937
1146
4060
1152
4074
204
AMD Ryzen 5 2400GZenRaven Ridge (Ryzen 2000 APU)2MB + 4MB653600 ‑ 39004/814x86yes2165Vega 11
~21.768%
6672
4805
21024
1.77
9.46
155.65n4
846.5n4
382.5n2
1849.5n2
11.27
624
6.9
198
3846
171.6
47.95
5.09n3
5.2
0.81
0.5
550.5n2
3909n3
19885n3
4268n3
13653n3
990n3
3825n3
1001n5
3885n5
170n3
Intel Core i5-8305GKaby Lake-GCore i51MB + 6MB652800 ‑ 38004/814x86yes2168Vega M GL / 870
~21.443%
7755
5844
21845
1.79
7.47
157
710
10.81
565
7.13
215.8
4459
166.2
45.87
4.1
0.71
0.41
89.5
30273
Intel Core i7-8557UCoffee Lake-UCoffee Lake1MB + 8MB281700 ‑ 45004/814x86yes1613Iris Plus Graphics 645
~26.55%
1079
4119
Intel Core i5-8269UCoffee Lake-UCoffee Lake1MB + 6MB282600 ‑ 42004/814x86yes2082Iris Plus Graphics 655
Intel Core i5-8279UCoffee Lake-UCoffee Lake1MB + 6MB282400 ‑ 41004/814x86yes1717Iris Plus Graphics 655
~25.957%
8830
6551
24096
1.93
8.29
167.5n2
750n2
421
1717
9.2
512
8.55
266.1
5862
190
45.7
6
627
4276
22683
4850
17643
44259
137.5
110
Intel Core i7-1160G7Tiger Lake-UP4Tiger Lake5MB + 12MB152100 ‑ 44004/810x86yes1199Iris Xe G7 96EUs
~27.664%
8212
26247
2.39
9.64
200.5n4
816n4
514.5n4
1699n4
1266n3
3896n4
8.08
422.6
10.13
327.8
4779
4.05n4
4.9
0.73
0.41
910.5n4
4596n3
17006n4
1437n4
4917n4
55945n3
155n3
151.1n2
231.5n4
Intel Core i7-1065G7Ice Lake-UIce Lake2MB + 8MB151300 ‑ 39004/810x86yes1661Iris Plus Graphics G7 (Ice Lake 64 EU)
~28.386%
9208.5n2
7270.5n4
22401.5n4
2.11n4
7.22n4
178.1n35
662.5n36
449n31
1543n31
1131n2
3437n3
11.68n2
481n2
7.7n3
255.6n3
4956n3
184.9n2
45.05n2
4.48n22
5n3
0.76n3
0.46n3
836n23
4393n24
17254.5n24
3863
14396
5637.5n6
18459.5n6
1310n6
4648n6
1316n18
4406.5n18
88.9
36670n17
148.2n3
132.8n2
201.5n18
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
Apple A16 BionicCreteApple A-Series20MB + 24MB2020 ‑ 34606/64ARMyes464A16 GPU 5-Core
~5525%
1883n4
5433n4
2597.5n4
6680.5n4
10812
56.2n2
73142.5n4
269.34n4
373n4
287.5n4
201.5n2
Apple A15 BionicApple A-Series16MB + 32MB2020 ‑ 32306/65ARMyes822A15 GPU 5-Core
~47.625%
1734n9
4788n9
2332
5661
10410.5n2
77
64026.5n8
181.7n8
242.5n8
250n8
188n3
Qualcomm Snapdragon 8 Gen 2 for GalaxyCortex-X3 / A715 / A710 / A510 (Kryo)Snapdragon + 8MB2000 ‑ 33608/84ARM v9yes399Adreno 740
~44.125%
8380n3
21209n3
1556n7
4989n7
2059.5n6
5443.5n6
60115n8
169.81n8
170.5n6
231n3
165n8
AMD Ryzen 7 3780UPicasso-U (Zen+)Picasso (Ryzen 3000 APU)2MB + 4MB152300 ‑ 40004/812x86yes1804Vega 11
~18.818%
166
788
290
1580
890
3380
940
3050
Qualcomm Snapdragon 8 Gen 2Cortex-X3 / A715 / A710 / A510 (Kryo)Snapdragon + 8MB2000 ‑ 32008/84ARM v9yes399Adreno 740
~39.525%
8169n5
21216n5
1493n15
5005n15
2006n7
5198n7
43632n17
140.57n16
112n14
211n9
139n15
AMD Ryzen 5 1400ZenRyzen 52MB + 8MB653200 ‑ 34004/814x86yes2439UHD Graphics 750
~19.173%
6436.5n2
4204.5n2
17556.5n2
1.53n2
7.78n2
133.75n2
688n3
329
1537
832
3985
13.88n2
732.5n2
7.8n2
237.15n2
2758n2
146.9n2
43n2
4.41
4.1n2
0.62n2
0.41n2
682
3370
19219
10513
3715
12846
817
3410
831n2
3037.5n2
Intel Core i5-8259UCoffee Lake-UCoffee Lake1MB + 6MB282300 ‑ 38004/814x86yes2082Iris Plus Graphics 655
~23.880%
7916
5706
21869
1.67
7.07
148.65n6
615n7
381n5
1471n5
976.5n4
3728n5
11.12
589.33
7.48
248.62
5348
165.13n2
39.5n2
5.36n6
4.1
0.75
0.45
729.5n6
1331
3975.5n6
19104.5n6
4211n3
13961n3
948n3
3567n3
951n3
3607n3
121n3
176n5
140.3
Intel Core i5-8257UCoffee Lake-UCoffee Lake1MB + 6MB151400 ‑ 39004/814x86yes1619Iris Plus Graphics 645
~28.345%
157.65n2
633.5n2
393n2
1519.5n2
1003
4033
5.28
714
4083
19620
4608
16580
989
4181
948
3858
39387.5n2
129.8n2
107.5n2
210
Intel Core i7-10610UComet Lake-UComet Lake1MB + 8MB151800 ‑ 49004/814x86yes1311UHD Graphics 620
~25.668%
8163
7163
17253
2.08
7.46
178n6
604.5n6
446n6
1477n6
1207n2
4048.5n2
7.78
467.3
6.67
295.5
4786
183.1
43.9
4.57n6
5
0.86
0.52
791n6
4666.5n6
18717.5n6
1243.5n6
4123.5n6
51613
149.2
211n6
Intel Core i7-10510UComet Lake-UComet Lake1MB + 8MB151800 ‑ 49004/814x86yes1566UHD Graphics 620
~31.561%
6125n3
7268n3
25882n3
1.95
6.69
182n42
678n45
441n37
1422n38
1152n3
3734n3
4.6n31
797n31
4678n31
17318n31
4427n2
16790n2
5368n14
17109n14
1214n12
3669.5n12
1212n31
3663n31
38295n17
138.5n5
70.9n3
210n26
AMD Ryzen 3 1300XZenRyzen 32MB + 8MB653500 ‑ 37004/414x86yes2331UHD Graphics 750
~23.873%
6310
4676
16094
1.72
6.37
152
558
345
1336
947
3486
10.97
619
10.8
334.8
2677
181.6
38.4
4.13
3
0.46
0.29
870
3772
13712
4327
12230
920
5210
81
35289
171
Intel Core i5-1035G7Ice Lake-UIce Lake2MB + 6MB151200 ‑ 37004/810x86yes1661Iris Plus Graphics G7 (Ice Lake 64 EU)
~23.170%
8736
6449.5n2
19601n2
1.91n2
6.41n2
170n3
712n3
427n3
1233n3
9.17
456.5
7.75
265
4513
167.5
38.1
4.67n2
4.7
0.75
0.43
794n3
4205n3
18342n3
5439n3
17322n3
1135n2
3488n2
1163
2713
33114n2
186
Intel Core i5-1035G4Ice Lake-UIce Lake2MB + 6MB151100 ‑ 37004/810x86yes1661Iris Plus Graphics G4 (Ice Lake 48 EU)
~23.375%
7425.5n2
6829
22252
2.04
7.35
169n5
602.5n6
426n6
1304.5n6
1119
3800
9.19
458.3
7.4
307.8
4526
154.1
35.8
3.97n6
4.7
0.76
0.43
958n6
4086.5n6
13057n6
5376
17202
1197
4206
1235n5
3986n5
35435
176n5
AMD Ryzen 7 3750HPicasso (Zen+)Picasso (Ryzen 3000 APU)2MB + 4MB352300 ‑ 40004/812x86yes1804Vega 10
~22.582%
7431n4
4770n3
20687n3
1.64
9.21
144n7
734n7
364.5n4
1713n4
971
3897
10.95
650
7.44
197.1
2866
139.4
48.58
4.35n3
5
0.69
0.47
633n3
3659n3
18689n3
3768n2
14748.5n2
4166n4
13403.5n4
884n4
3571.5n4
874
3537
30626n4
112.7
153
Qualcomm Snapdragon 8cx Gen 3Cortex-X1 / A78Snapdragon6MB + 8MB72400 ‑ 29958/85ARMyes743Adreno 690
~22.677%
3876
2481
13940
1.38
9.23
119.05n2
748.5n2
205n3
1248n3
598n3
3567n3
17.47
847.99
8.67
305.27
4046
146.9
33.2
2.52n3
1080n3
1625.5n2
3915n3
23989n3
3460
15240
665n2
3796.5n2
1588n2
5989.5n2
49893
166.42n3
150
90.45n2
67.2n3
AMD Ryzen 7 3700UPicasso-U (Zen+)Picasso (Ryzen 3000 APU)2MB + 4MB152300 ‑ 40004/812x86yes1804Vega 10
~2373%
4595
4410.5n2
15461n2
1.59n4
7.6n4
139n7
672n7
343n5
1499n5
12.58
748
13.48
450.4
2392
104.8
27.1
3.3n4
3.8
0.63
0.39
703n3
3492.5n4
15386.5n4
10025
3003
10238
3843.5n4
10542n4
147.3
27490n5
35.3
154n2
AMD Ryzen 7 PRO 3700UZen+Picasso (Ryzen 3000 APU)2MB + 4MB152300 ‑ 40004/812x86yes1712Vega 10
~24.432%
149
658
3.6
785
3680
16735
3928
11249
839
3091
808
3018
27979
39
AMD Ryzen 3 7335URembrandt RRembrandt (Zen 3+)2MB + 8MB283000 ‑ 43004/86x86yes344Radeon 660M
Intel Core i5-10310UComet Lake-UComet Lake1MB + 6MB151700 ‑ 44004/814x86yes1311UHD Graphics 620
~32.745%
170n5
546n5
438n5
1327n5
1051
3094
4.09n5
864n5
4274n5
16475n5
4814.5n2
12621n2
1040
2931
1122n6
3717.5n6
202.3
46029n3
124.85n4
195n7
Intel Core i5-1035G1Ice Lake-UIce Lake2MB + 6MB151000 ‑ 36004/810x86yes1661UHD Graphics G1 (Ice Lake 32 EU)
~22.973%
6869.5n2
21298.5n2
1.97
5.81
167.5n8
606n11
428n7
1311n7
1016
4027
25.5
789
10.8
454.1
3800
4.2n8
4.2
0.65
0.39
863n9
4159n8
15156n8
5183n4
15042.5n4
1136n3
3505n3
1219n7
3858n7
35437.5n2
132.4
58.1
178n5
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
Intel Core i7-8665UWhiskey Lake-UCore i71MB + 8MB151900 ‑ 48004/814x86yes1704UHD Graphics 620
~2582%
6365n2
6872n2
18426.5n2
1.67
4.88
180n7
670n7
427n5
1346n5
988
2729
8
521
9.98
429.3
3418
139
32
4.5n5
2.6
0.45
0.27
754.5n4
4705.5n4
18298n5
3887
14277
5342.5n4
16347n4
1196
3453
1039
2671
235
34548n4
63.1
Intel Core i7-8650UKaby Lake RefreshKaby Lake Refresh1MB + 8MB151900 ‑ 42004/814x86yes2307UHD Graphics 620
~23.245%
6936n5
6629n4
18635n4
1.92n9
6.82n9
169n17
605n19
8.84n6
508n6
9.94n3
302.8n3
4319n4
169.6n4
39.75n4
4.3n4
0.72n4
0.44n4
74.4n6
33906n9
227
Intel Core i5-10210UComet Lake-UComet Lake1MB + 6MB151600 ‑ 42004/814x86yes1566UHD Graphics 620
~25.289%
6363n3
6412n3
16072n3
1.89n4
7.5n4
166n35
616n35
415n30
1242n30
1062n3
3794n3
8.96n2
516.5n2
6.78
217.8
4213
169.5n3
43.85n3
4.31n24
4.65n2
0.8n2
0.49n2
829n24
4261n24
16742n24
3457n2
12114n2
4696.5n10
14139n10
1067.5n10
3467.5n10
1079n27
3689n27
4130
245.45n2
34153n17
127.45n4
116.5n4
191n21
Intel Core i7-8565UWhiskey Lake-UCore i71MB + 8MB151800 ‑ 46004/814x86yes1942UHD Graphics 620
~26.182%
6158n15
6644n16
16760n16
1.93n11
6.8n11
173n51
608.5n52
411.5n20
1181.5n20
8.36n7
508n7
9.55n7
360.2n7
4291.5n8
140.9n7
33.71n7
4.71n22
4n8
0.72n8
0.44n8
806.5n22
4737n23
18860n23
10600n2
3851n12
12302.5n12
5142.5n30
13888n30
1197n5
3176n5
1135.5n2
3073.5n2
152.7n4
34884.5n42
59.7n5
202n5
Intel Core i7-1060NG7Ice Lake YIce Lake2MB + 8MB101200 ‑ 38004/810x86yes1365Iris Plus Graphics G7 (Ice Lake 64 EU)
~275%
1153
2940
Intel Core i7-1060G7Ice Lake YIce Lake2MB + 8MB91000 ‑ 38004/810x86yes1597Iris Plus Graphics G7 (Ice Lake 64 EU)
~26.75%
1167
2322
Intel Core i5-1034G1Ice Lake UIce Lake2MB + 6MB15800 ‑ 36004/810x86yes1661UHD Graphics G1 (Ice Lake 32 EU)
~35.25%
5090n2
16969n2
Intel Core i5-8365UWhiskey Lake-UCore i51MB + 6MB151600 ‑ 41004/814x86yes1704UHD Graphics 620
~22.559%
6330
6557
16518
1.91
5.74
166n4
579n4
421n3
1408n3
9.15
546
7.72
296.7
3173
153
35.9
4.49n3
4.6
0.8
0.46
825n3
4346n3
17293n3
4822.5n2
15472n2
32878n3
AMD Ryzen 3 7330UBarcelo (Zen 3)Cezanne (Zen 3, Ryzen 5000)2MB + 8MB152300 ‑ 43004/87x86yes344Vega 6
AMD Ryzen 5 7520UMendocino-U (Zen 2)Mendocino (Zen 2, Ryzen 7020)2MB + 4MB152800 ‑ 43004/86x86yes451Radeon 610M
~36.634%
168.8
834
350.5n2
1632.5n2
1171
5149
6.3
588
1044
4167
24219
1066
3821
191.3
155.3
AMD Ryzen 5 7520CMendocino (Zen 2)Mendocino (Zen 2, Ryzen 7020)2MB + 4MB152800 ‑ 43004/86x86yes206Radeon 610M
AMD Ryzen 3 7320UMendocino-U (Zen 2)Mendocino (Zen 2, Ryzen 7020)2MB + 4MB152400 ‑ 41004/86x86yes451Radeon 610M
AMD Ryzen 3 7320CMendocino (Zen 2)Mendocino (Zen 2, Ryzen 7020)2MB + 4MB152400 ‑ 41004/86x86yes451Radeon 610M
AMD Ryzen 3 5425UBarcelo-U (Zen 3)Cezanne (Zen 3, Ryzen 5000)2MB + 8MB152700 ‑ 41004/87x86yes710Vega 6
AMD Ryzen 3 5425CBarcelo (Zen 3)Cezanne (Zen 3, Ryzen 5000)2MB + 8MB252700 ‑ 41004/87x86yes589Vega 6
AMD Ryzen 3 5400UCezanne-U (Zen 3)Cezanne (Zen 3, Ryzen 5000)2MB + 8MB252600 ‑ 40004/87x86yes1072Vega 6
~27.55%
1170
3095
AMD Ryzen 3 PRO 5475UBarcelo-U PRO (Zen 3)Cezanne (Zen 3, Ryzen 5000)2MB + 8MB152700 ‑ 41004/87x86yes633Vega 6
AMD Ryzen 3 PRO 5450UCezanne-U PRO (Zen 3)Cezanne (Zen 3, Ryzen 5000)2MB + 8MB152600 ‑ 40004/87x86yes1072Vega 6
Intel Core i5-8265UWhiskey Lake-UCore i51MB + 6MB151600 ‑ 39004/814x86yes1942UHD Graphics 620
~2793%
6316n5
6082n9
19418n9
1.78n6
5.74n6
159n35
601.5n38
397n16
1285.5n16
1008
3500
9.78n3
552n3
11.02n2
402.35n2
3988n3
156n3
39.1n3
4.2n15
4.4n3
0.79n3
0.46n3
861n15
1565
4084n15
16245n15
11639n2
3678.5n6
14002n6
4514n19
13295n19
1017n6
3365n6
1041.5n4
3624.5n4
95.6n4
32120n23
119.7
54.45n4
187n2
145.3
Intel Core i5-1140G7Tiger Lake-UP4Tiger Lake5MB + 8MB151800 ‑ 42004/810x86yes1199Iris Xe G7 80EUs
~26.982%
7524
7771
19199
2.25
7.06
179
630
438
1126
1246
2611
8.32
434.9
10.99
410.7
4632
145.9
32.13
3.82
3.1
0.55
0.31
993
4201
15167
5937
15462
1355
3904
1353
3921
160.1
57983
169
130.9
216
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
AMD Ryzen 7 2800HRaven Ridge (Zen)Raven Ridge (Ryzen 2000 APU)2MB + 4MB453300 ‑ 38004/814x86yes1915Vega 11
AMD Ryzen 5 3550HPicasso-U (Zen+)Picasso (Ryzen 3000 APU)2MB + 4MB352100 ‑ 37004/812x86yes1804Vega 8
~25.391%
7174n3
4592n4
19520.5n4
1.65
8.55
144n11
742n11
359n8
1621n8
886n2
3929.5n2
11.91
695
7.67
209.2
2929
146.8
44.3
4.04n5
4.7
0.67
0.47
659n6
1297
3547.5n6
17978n6
3353n3
14437n3
3807n7
11926n7
902n5
3250n5
899n5
3281n5
117.8
28811.5n4
122.1
42.8n2
162n5
124.3
AMD Ryzen 7 2700UZenRaven Ridge (Ryzen 2000 APU)2MB + 4MB152200 ‑ 38004/814x86yes2165Vega 10
~24.770%
6072n3
4515n3
13729n3
1.65n2
7.53n3
143.5n12
644n12
356n3
1422n3
886
3603
11.8
698
8.55n2
269.1n2
128
36.4
3.96
713
3592
17317
3248.5n2
11433.5n2
3495n3
8582n3
813
2969
217.4
26482n6
36.9
142
AMD Ryzen 7 PRO 2700UZenRaven Ridge (Ryzen 2000 APU)2MB + 4MB152200 ‑ 38004/814x86yes2165Vega 10
~21.55%
882
3183
AMD Ryzen 3 5300ULucienne-U (Zen 2)Lucienne (Zen 2, Ryzen 5000)2MB + 4MB252600 ‑ 38004/87x86yes1072Vega 6
~29.580%
7931
5118
22139
1.89
9.29
170n3
906n3
436n4
2067n4
1115n3
5341n3
7
366
2551
6.54n3
5.1
0.93
0.55
544n3
1069n2
3960n3
21971n3
4096
16771
4560
16261
1062.5n2
4106.5n2
1070n3
4008n3
52372
156.69n2
176
187.4n3
147.3n2
AMD Ryzen 3 2200GZenRaven Ridge (Ryzen 2000 APU)2MB + 4MB653500 ‑ 37004/414x86yes2168Vega 8
~22.870%
6636
4625
16684
1.68
6.66
145.55n4
577n4
363
1446
11.7
651
10.8
333
3229
184
39.7
4.29
3.1
0.48
0.3
826n2
3948
14790
4249n2
11896.5n2
959
3431
1086.5n2
4881.5n2
92.7
34670
AMD Ryzen 5 3500UPicasso-U (Zen+)Picasso (Ryzen 3000 APU)2MB + 4MB152100 ‑ 37004/812x86yes1804Vega 8
~23.284%
5950.5n2
4557.5n4
17230.5n4
1.65
7.62
143n18
650n19
364n15
1477n15
12
697
12.88
368.2
2455
134.8
39.2
4.02n10
4.4
0.67
0.44
694n10
3538n10
17024.5n10
11917
3442.5n4
13040n4
3893n11
11783n11
896n8
3118.5n8
898.5n8
3155.5n8
128.8
27809n11
89.4
40.4n3
148n7
AMD Ryzen 5 PRO 3500UZen+Picasso (Ryzen 3000 APU)2MB + 4MB152100 ‑ 37004/812x86yes1712Vega 8
~25.936%
142n2
624n2
361.5n2
1338.5n2
3.48n2
795.5n2
3474n2
16220.5n2
3820
10419
863
2824
27437n2
89.7
41.3
142
Intel Core i5-1130G7Tiger Lake-UP4Tiger Lake5MB + 8MB151800 ‑ 40004/810x86yes1199Iris Xe G7 80EUs
~25.280%
5569
7813
25385
2.18
7.64
179n3
616.5n4
448n2
1060.5n2
1151.5n2
2738.5n2
8.58
464.2
10.56
474.9
4785
145.5
30.2
3.04
2.6
0.64
0.33
1189.5n2
4175n2
14726n2
5724
18742
1307
4791
1321.5n2
4802n2
57829
174
179
219.5n2
AMD Ryzen 5 3450UPicasso-U (Zen+)Picasso (Ryzen 3000 APU)2MB + 4MB152100 ‑ 35004/812x86yes1323Vega 8
~23.641%
137.5n2
566.5n2
321.5n2
1168n2
875n2
2926.5n2
3.03n3
946n3
3359n3
15878n3
3486
10200
853
2630
839n5
2972n5
115.4
145.5n2
AMD Ryzen 3 4300URenoir-U (Zen 2)Renoir (Ryzen 4000 APU)2MB + 4MB152700 ‑ 37004/47x86yes1438Vega 5
~30.473%
6068
163.9n2
562.5n2
422n3
1571n3
1074
3571
2397
172.3
35
4.87n2
3.2
0.59
0.34
887.5n2
1413.5n2
4063.5n2
15824n2
11281
4042
13134
4517
13503
1036
3358
1046.5n2
3438.5n2
102.5
33152
51.2
194n2
152.3
AMD Ryzen 5 3580UPicasso-U (Zen+)Picasso (Ryzen 3000 APU)2MB + 4MB152100 ‑ 37004/812x86yes1804Vega 9
~19.559%
5545
4525
18307
1.65
7.82
139
693
352
1549
12.04
694
7.17
274.7
2924
135.3
40.1
4.09
3.5
0.61
0.4
710
3572
15209
900
2990
28517
Intel Core i3-1125G4Tiger Lake-UP3Tiger Lake5MB + 8MB282000 ‑ 37004/810x86yes1200UHD Graphics Xe G4 48EUs
~28.65%
1198
3738
Intel Core i3-1305URaptor Lake-URaptor Lake-U3.5MB + 10MB151200 ‑ 45005/610x86yes710UHD Graphics 64EUs
Intel Processor U300Raptor Lake-URaptor Lake-U3.5MB + 8MB15900 ‑ 44005/610x86yes346UHD Graphics Xe G4 48EUs
Intel Pentium 8505Alder Lake-UAlder Lake-M3.5MB + 8MB15900 ‑ 44005/610x86yes710UHD Graphics Xe G4 48EUs
Intel Core i3-1210UAlder Lake-UAlder Lake-M5MB + 10MB9700 ‑ 44006/810x86yes710UHD Graphics 64EUs
Intel Pentium 8500Alder Lake-UAlder Lake-M3.5MB + 8MB9700 ‑ 44005/610x86yes710UHD Graphics Xe G4 48EUs
Intel Core i7-8550UKaby Lake RefreshKaby Lake Refresh1MB + 8MB151800 ‑ 40004/814x86yes2307UHD Graphics 620
~25.680%
5845n15
6423n30
17321.5n30
1.89n31
6.11n31
163n75
553n77
388.5n2
1128n2
1021
2914
9.28n11
536n11
9.9n10
366.7n10
4374n7
147.9n6
33.15n6
3.88n3
4.3n6
0.73n6
0.43n6
913n3
4337
15613
3770n12
12327.5n12
4900n11
15117n11
1081
3141
71.3n11
33496n39
121.8
182
Qualcomm Snapdragon 8cx Gen 2 5GCortex-A76 / A55 (Kryo 495)Snapdragon + 2MB731508/87ARMyes1198Adreno 680
~19.918%
2355
7502
797n2
3115.5n2
32979
85.4
68.8
132
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
MediaTek Dimensity 9200+Cortex-X3 / A715 / A5102000 ‑ 33508/84ARMyes393Immortalis-G715 MP11
~35.825%
7167
19785
1541n2
4936.5n2
1805.5n2
4658.5n2
36482
136.74
176
143
95
MediaTek Dimensity 9200Cortex-X3 / A715 / A5101800 ‑ 30508/84ARMyes393Immortalis-G715 MP11
~22.425%
6247
13625
1668
4233
1384
4232
21648
67.65
60.2
82
66
AMD Ryzen 5 2600HZenRaven Ridge (Ryzen 2000 APU)2MB + 4MB453200 ‑ 36004/814x86yes1870Vega 8
~13.19%
819
2741
812
3226
Intel Core i5-8260UCoffee LakeCoffee Lake1MB + 6MB151600 ‑ 39004/814x86yes1577UHD Graphics 620
~27.336%
156.9
627
400
1494
629
3028
1.8
726
1402
4056
18874
552
1464
639
1817
148.27
Intel Core i5-1030NG7Ice Lake YIce Lake2MB + 6MB101100 ‑ 35004/810x86yes1365Iris Plus Graphics G7 (Ice Lake 64 EU)
~21.177%
3828
4250
9432
1.21
3.37
140
448
352.5n2
875.5n2
11.4
653
15.2
687
3878
77.4
16.9
2.95
3.1
0.48
0.3
1310
3472
10924
4996
12112
1020
2572
1088.5n2
2710n2
132
42305
122.5
97.9
158.5n2
Intel Core i3-N305Alder Lake-NAlder Lake-N4MB + 6MB151800 ‑ 38008/810x86yes354UHD Graphics Xe 32EUs (Tiger Lake-H)
Intel Core i5-1030G7Ice Lake-YIce Lake2MB + 6MB9800 ‑ 35004/810x86yes1597Iris Plus Graphics G7 (Ice Lake 64 EU)
Intel Core i5-1030G4Ice Lake-YIce Lake2MB + 6MB9700 ‑ 35004/810x86yes1597Iris Plus Graphics G4 (Ice Lake 48 EU)
Intel Core i3-1115G4Tiger Lake-UP3Tiger Lake2.5MB + 6MB283000 ‑ 41002/410x86yes1200UHD Graphics Xe G4 48EUs
~28.780%
6331
8018
16265
190n6
480.5n6
504.5n6
1114n6
1312n5
3125n6
8.24
434.8
11.76
412.8
141.6
26.2
3.74n6
2.8
0.41
0.23
1021.5n6
2408
4599.5n6
12919.5n6
5601
9945
1328
2399
1311.5n8
2605n8
145.8
58151n3
164.05n2
179.5n2
204.5n6
152.3
Intel Core i3-1120G4Tiger Lake-UP4Tiger Lake5MB + 8MB151500 ‑ 35004/810x86yes1199UHD Graphics Xe G4 48EUs
Intel Core i3-1005G1Ice Lake-UIce Lake1MB + 4MB151200 ‑ 34002/410x86yes1661UHD Graphics G1 (Ice Lake 32 EU)
~23.382%
5501
6573
14323
1.88
4.58
157n6
405n6
403n7
859n7
1055.5n4
2221n4
10.02
487.1
13.92
439.8
2624
135.2
25.22
3.12n7
2.4
0.38
0.22
1264n7
4004n7
10896n7
4817.5n2
9211n2
1129.5n2
2231.5n2
1159.5n6
2425.5n6
191.4
46698n3
131.95n2
127.2n2
179.5n6
Intel Core i3-10110UComet Lake-UComet Lake1MB + 4MB152100 ‑ 41002/414x86yes1566UHD Graphics 620
~22.784%
6349n2
11204.5n2
1.87
3.59
162n5
321n5
401n3
753n3
1032.5n2
2142n2
9.43n2
538.5n2
15.77n2
533n2
2156n2
110.05n2
20.63n2
2.92n2
2.05n2
0.37n2
0.22n2
1279.5n2
4153.5n2
10291.5n2
7706
3470
7335
4455
8289
1002
2034
987n2
2025.5n2
95.3
29833
47
164n2
Intel Core i3-8109UCoffee Lake-UCoffee Lake512KB + 4MB283000 ‑ 36002/414x86yes2082Iris Plus Graphics 655
~25.936%
138.65n2
352.5n2
351
772
906
2004
2.85
1328
3752
9489
4540
8974
888
1880
90.07
131.3
Intel Core i5-8350UKaby Lake RefreshKaby Lake Refresh1MB + 6MB151700 ‑ 36004/814x86yes2307UHD Graphics 620
~25.961%
5925n3
5460.5n2
17931n2
1.69n3
5.95n3
150.5n8
569n8
10.94n2
637n2
9.7n2
330.45n2
2961n2
152.85n2
37.28n2
4.05n2
0.69n2
0.41n2
705
3439
12270
4225n3
13605n3
156.45n4
31171n5
94.7n2
98.65n2
183.5n2
AMD Ryzen 3 1200Summit Ridge (Zen)Ryzen 32MB + 8MB653100 ‑ 34004/414x86yes2331UHD Graphics 750
~19.666%
5419
4178
13961
1.53
5.5
135
480
337
1192
834
3013
12.39
12.5
390.1
2481
160
33.34
3.47n2
2.6
0.4
0.25
1002
3391
11980
3955
10851
834
2882
151
Intel Core i5-8250UKaby Lake RefreshKaby Lake Refresh1MB + 6MB151600 ‑ 34004/814x86yes2307UHD Graphics 620
~23.184%
6348n14
5533n42
17987n42
1.64n35
5.94n35
143n97
562n101
353n5
1171n5
873.5n2
3108n2
11.06n11
613n11
8.06n13
306.2n13
3991n2
137.5n4
31.96n4
4.34n8
3.5n5
0.68n5
0.41n5
899.5n8
3706n6
15365.5n6
3242n18
12742n18
4095n25
12751n25
927n2
3298n2
925n5
3427n5
91n15
29871n54
48.7
167.5n4
AMD Ryzen 5 2500UZenRaven Ridge (Ryzen 2000 APU)2MB + 4MB152000 ‑ 36004/814x86yes2165Vega 8
~23.177%
4828n3
4410.5n6
15683.5n6
1.59n4
6.64n4
137n15
609n16
354.5n4
1298.5n4
12.29n3
697n3
10.23n2
313.5n2
2425.5n2
121n2
34.7n2
3.67n2
3.3n3
0.56n3
0.37n3
770.5n2
3441n3
16251n3
10616
3383n5
11301n5
3703n8
9952n8
831
2515
116.95n4
26534.5n10
38.55n2
160
Intel Core i3-N300Alder Lake-NAlder Lake-N + 6MB7 ‑ 38008/810x86yes351UHD Graphics Xe 750 32EUs
AMD Ryzen 5 PRO 2500UZenRaven Ridge (Ryzen 2000 APU)2MB + 4MB152000 ‑ 36004/814x86yes2165Vega 8
~23.268%
5635n3
4349n3
14336n3
1.55n3
6.08n3
134n3
553n3
12.7n2
728.5n2
12.36n2
386.55n2
2699.5n2
97.7n2
33.91n2
3
3.4n2
0.6n2
0.39n2
1007n2
4102
2794
11156n2
3326n2
12421.5n2
3492n3
9343n3
887
3135
138.1
24308n2
AMD Ryzen Embedded V1605BZenRaven Ridge (Ryzen 2000 APU)2MB + 4MB152000 ‑ 36004/814x86yes2123Vega 8
~23.841%
128
654
334
1235
841
3160
3.64
791
3374
16708
3800
12100
846
3264
819
3184
92.6
149
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
Intel Core i3-8100HCoffee Lake-HCoffee Lake1MB + 8MB4530004/414x86yes1991UHD Graphics 630
MediaTek Dimensity 9000+Cortex-X2 / A710 / A510 + 14MB1800 ‑ 32008/84ARMyes462Mali-G710 MP10
~28.123%
3705.5n2
8482n2
1391.5n2
4606.5n2
8591
51846
134
116
152
128
MediaTek Dimensity 9000Cortex-X2 / A710 / A510 + 14MB1800 ‑ 30508/84ARMyes1059Mali-G710 MP10
~3127%
5713
15310
1248n5
4051n5
1608n3
4482n3
9111
50429n3
148.12n3
119n3
121
153n3
Apple A12Z BionicVortex, TempestApple A-Series8MB ‑ 24908/87ARMyes1367A12Z Bionic GPU
~39.316%
1122n2
4709.5n2
125
42425n3
126.1n3
144.5n2
141n3
Apple A12X BionicVortex, TempestApple A-Series8MB ‑ 24908/87ARMyes1872A12X Bionic GPU
~38.830%
4993n2
17866n2
1114
4661
1120
4620
1313
4660
758432n2
114
45079.5n2
131.9
177n2
Apple A14 BionicFirestorm / IcestormApple A-Series12MB + 16MB1800 ‑ 31006/65ARMyes1186A14 Bionic GPU
~42.820%
1588.5n6
4093.5n6
44785
85.85n2
58528n6
159.95n6
194.5n6
193.5n6
147
Qualcomm Snapdragon 8+ Gen 1Cortex-X2 / A710 / A510 (Kryo) WaipioSnapdragon + 6MB1800 ‑ 32008/84ARM v9yes574Adreno 730
~38.827%
7202.5n10
17569.5n10
1321n23
4162n23
1741n5
4584n5
190.4
39564n22
111.45n21
103n16
156.5n14
101n19
Google Tensor G3Zuma - Cortex X3 / A715 / A510 + 4MB1700 ‑ 29109/94ARMyes77Mali-G715 MP7
~37.627%
6074n2
14268n2
1267n2
3509.5n2
1711n2
4381.5n2
197
48641n2
104.71n2
147n2
122n2
98.5n2
Qualcomm Snapdragon 8 Gen 1Cortex-X2 / A710 / A510 (Kryo) WaipioSnapdragon + 6MB1800 ‑ 29958/84ARM v9yes750Adreno 730
~36.130%
8654
6668n6
15021n6
1236n21
3581n21
1610
3860
302.5
45945n17
108.4n16
109.5n16
151n15
92.5n4
Microsoft SQ1Cortex-A76 / A55 (Kryo 495)Snapdragon + 2MB30008/87ARMyes1535Adreno 685
~10.236%
537
4276
21.2
1095
14.2
429.3
830
2597
728
2785
739
2875
31099
76.7
61.8
116
Qualcomm Snapdragon 7+ Gen 2Cortex-X2 / A710 / A510Snapdragon1800 ‑ 29108/84ARMyes281Adreno 725
~32.125%
6584
16748
1224.5n2
3959n2
1687
4378
37823
126.39
108
134
107
Intel Core i3-1110G4Tiger Lake-UP4Tiger Lake2.5MB + 6MB152500 ‑ 39002/410x86yes1199UHD Graphics Xe G4 48EUs
~19.673%
5008
6972
13139
2.02
4.31
160.4
382
422
732
877
1868
9.39
474.59
12.44
519.97
2728
115.6
21.4
2.47
2.4
0.36
0.21
1560
3935
8714
5397
10233
1212
2478
772
1894
188.4
Qualcomm Snapdragon 8cxCortex-A76 / A55 (Kryo 495)Snapdragon + 2MB728408/87ARMyes1835Adreno 680
~12.632%
591
4187
10.9
564
14.6
442.1
3313
11047
700
2760
29364
73.5
59.3
116
Qualcomm Snapdragon 888 Plus 5GCortex-X1 / A78 / A55 (Kryo 680)Snapdragon + 3MB51800 ‑ 30008/85ARMyes900Adreno 660
~28.132%
10821
4973n2
13552.5n2
1164
3699
1157n6
3628.5n6
4771
342.5
37604n4
96.2n4
80.6n3
147n3
104
Qualcomm Snapdragon 888 5GCortex-X1 / A78 / A55 (Kryo 680)Snapdragon + 3MB51800 ‑ 28408/85ARMyes1108Adreno 660
~28.425%
11578
5087n5
14326n5
1129n27
3598n27
1480
3595
35487.5n20
106.1n13
85.75n12
148n18
Qualcomm Snapdragon 888 4GCortex-X1 / A78 / A55 (Kryo 680)Snapdragon + 3MB51800 ‑ 28408/85ARMyes1108Adreno 660
~27.114%
5083
13553
1107n3
3334n3
22851n3
108n2
Samsung Exynos 2200Exynos X2 / Cortex-A710 / A510Exynos1820 ‑ 28008/84ARMyes696Xclipse 920
~3720%
5788
15310
1145n3
3560n3
281.5
38992n3
96.8n3
108n3
149n3
Apple A13 BionicLightning and ThunderApple A-Series12MB ‑ 26606/67ARMyes1552A13 Bionic GPU
~34.220%
1343n3
3463n3
1332n4
3378.5n4
683897n3
48991n5
132.9n5
157n5
183n5
Intel Processor N200Alder Lake-NAlder Lake-N + 6MB61000 ‑ 37004/410x86yes351UHD Graphics Xe 750 32EUs
Intel Core i3-8145UWhiskey Lake-UCore i31MB + 4MB152100 ‑ 39002/414x86yes1942UHD Graphics 620
~18.966%
5158
5939n2
12432n2
1.77
4.01
148.5n4
351.5n4
296
657
10.52
638
13.1
463.9
1889
117.6
22.6
2.64
2.2
0.39
0.23
7459
3360n3
7420n3
4118n3
7859n3
995
2096
104.85n2
28828.5n2
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
AMD Ryzen 3 3350UZen+Picasso (Ryzen 3000 APU)2MB + 4MB152100 ‑ 35004/412x86yes1804Vega 6
~20.45%
864
2455
AMD Ryzen 3 3300UZen+Picasso (Ryzen 3000 APU)2MB + 4MB152100 ‑ 35004/412x86yes1804Vega 6
~21.477%
4332
4280
12357
134
471
337
921
12.82
709
11.94
404.6
2398
132.1
26.2
2.81
2.7
0.43
0.28
1212
3340
12118
9508
3469
10170
3861
10787
843
2722
824
2578
136.9
27764
39.8
153.5n2
AMD Ryzen 3 PRO 3300UZen+Picasso (Ryzen 3000 APU)2MB + 4MB152100 ‑ 35004/412x86yes1712Vega 6
~20.99%
1.43
5.52
126
481
AMD Ryzen 3 2300UZenRaven Ridge (Ryzen 2000 APU)2MB + 4MB152000 ‑ 34004/414x86yes2168Vega 6
~14.914%
0.79
4.46
79
422.5
783
2360
AMD Ryzen 3 PRO 2300UZenRaven Ridge (Ryzen 2000 APU)2MB + 4MB152000 ‑ 34004/414x86yes2168Vega 6
~19.69%
3387
8655
727
2156
Intel Processor N97Alder Lake-NAlder Lake-N + 6MB12 ‑ 36004/410x86yes351UHD Graphics 24EUs (Alder Lake-N)
Intel Processor N95Alder Lake-NAlder Lake-N + 6MB15 ‑ 34004/410x86yes351UHD Graphics Xe 16EUs (Tiger Lake-H)
~21.982%
5952n5
4783n5
13854n5
1.83n5
5.55n5
151n5
445n5
350n5
1030n5
914n5
2769n5
19.42n5
824.72n5
17.04n4
537.32n4
2319.5n4
162.15n4
32.4n4
3.18n5
2.7n5
0.5n5
0.24n5
1113n5
2186.5n4
3803n5
12177n5
4450n5
10228n5
993n5
2531n5
999n5
2566n5
1227n3
2961n3
178.3n5
126.75n4
Intel Processor N100Alder Lake-NAlder Lake-N + 6MB61000 ‑ 34004/410x86yes351UHD Graphics 24EUs (Alder Lake-N)
~22.984%
6438n2
5024n2
15271.5n2
1.85n2
5.59n2
153.9n3
477n3
357n3
1138n3
931n3
2983n3
19.31n2
818.56n2
15.85n2
489.22n2
2401.5n2
172.78n2
34.28n2
3.47n3
2.9n2
0.54n2
0.26n2
1038n3
2028n3
3908n3
13255n3
4492.5n2
11101n2
1000.5n2
2807.5n2
1006n4
2865.5n4
1232n3
3236n3
161.56
181.4n3
136.2
Intel Core i3-8130UKaby Lake RefreshKaby Lake Refresh1MB + 4MB152200 ‑ 34002/414x86yes2129UHD Graphics 620
~2064%
4720
5447.5n2
12157n2
1.63
3.77
139n3
338n3
348
774
11.09
661
14.3
485.5
2168
116.6
22.2
2
0.36
0.21
7131
3288n2
7168.5n2
4000.5n2
7890.5n2
187n2
27142.5n4
43.6
153
Intel Core i3-1000NG4Ice Lake YIce Lake1MB + 4MB91100 ‑ 32002/410x86yes1365Iris Plus Graphics G4 (Ice Lake 48 EU)
~2064%
3151
5771
9257
1.49
2.72
141
333
348
587
10.64
550
16.2
691
2468
2.23
1814
3438
7921
4748
9090
1074
2035
1096
2028
39043
118.2
98.8
162
Intel Core i3-1000G4Ice Lake-YIce Lake1MB + 4MB91100 ‑ 32002/410x86yes1597Iris Plus Graphics G4 (Ice Lake 48 EU)
Intel Core i3-1000G1Ice Lake-YIce Lake1MB + 4MB91100 ‑ 32002/410x86yes1597UHD Graphics G1 (Ice Lake 32 EU)
Intel Core i3-8121UCannon-LakeCore i3512KB + 4MB152200 ‑ 31002/410x86yes2039UHD Graphics 750
~20.511%
4314
133
317.6
4195
7985
HiSilicon Kirin 9000Cortex-A77/-A552050 ‑ 31308/85ARMyes1149Mali-G78 MP24
~21.79%
26597
79.6
84.6
147
HiSilicon Kirin 9000ECortex-A77/-A552050 ‑ 31308/85ARMyes1149UHD Graphics 750
~17.79%
24616
72.8
72.1
97
Intel Core i7-10510YComet Lake-YComet Lake512KB + 8MB71200 ‑ 45004/814x86yes1566UHD Graphics 617
~19.39%
250
845
1005
2728
Intel Core i5-10310YAmber Lake-YAmber Lake512KB + 6MB71100 ‑ 41004/814x86yes1566UHD Graphics 615
Intel Core i5-10210YAmber Lake-YAmber Lake512KB + 6MB71000 ‑ 40004/814x86yes1566UHD Graphics 615
~185%
738
2735
Intel Core i5-L16G7LakefieldLakefield71400 ‑ 30005/510x86yes1296UHD Graphics G7 (Lakefield GT2 64 EU)
~18.455%
4079
9003
1.42
3.18
89.5n2
255n2
282.5n2
647.5n2
710
1810
11.7
622
28.6
879
1.46n2
2026.5n2
3211n2
7586.5n2
826.5n2
1633.5n2
32455n2
85.8n2
76.1n2
124.5n2
AMD Athlon Gold 7220UMendocino (Zen 2)Mendocino (Zen 2, Ryzen 7020)1MB + 4MB152400 ‑ 37002/46x86yes451Radeon 610M
~21.65%
932
2159
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
AMD Athlon Gold 7220CMendocino (Zen 2)Mendocino (Zen 2, Ryzen 7020)1MB + 4MB152400 ‑ 37002/46x86yes206Radeon 610M
Samsung Exynos 2100 5GExynos X1 / Cortex-A78 / A55Exynos2200 ‑ 29008/85ARMyes1066UHD Graphics 750
~32.723%
13062
4970
14476
1100n3
3364n3
313.2
27275n3
66.3n3
84.1n3
114n3
Qualcomm Snapdragon 870 5GCortex-A77 / A55 (Kryo 585)Snapdragon1.8MB + 7MB52420 ‑ 32008/87ARMyes1472Adreno 650
~28.430%
4411n3
11658n3
992.5n16
3188n16
1299
3357
5196
312.9
33694n13
92.45n12
70.42n12
127n13
83n4
Qualcomm Snapdragon 865+ (Plus)Cortex-A77 / A55 (Kryo 585)Snapdragon1.8MB + 4MB52420 ‑ 31008/87ARMyes1472Adreno 650
~2318%
4493
13066
980n6
3250.5n6
26700.5n4
72.15n4
71.1n4
119.5n4
Qualcomm Snapdragon 865Cortex-A77 / A55 (Kryo 585)Snapdragon1.8MB + 4MB52420 ‑ 28408/87ARMyes1472Adreno 650
~2627%
10921n3
4278n5
13356n5
932
3450
910n23
3309n23
312.5
23734n23
66.45n20
67.7n19
104n23
MediaTek Dimensity 1300Cortex-A78 / A552000 ‑ 30008/86ARMyes646Mali-G77 MP9
~14.518%
9050
415
2700
7485
33879
66.96
59.7
65
MediaTek Dimensity 8100Cortex-A78 / A552000 ‑ 28508/86ARMyes654Mali-G610 MP6
~20.230%
11358
4422.5n2
15985.5n2
925
3743
907n3
3720n3
8158n2
33238n3
81.17n3
72.4n3
106n3
86.5n2
MediaTek Dimensity 8050Cortex-A78 / A552000 ‑ 30008/86ARMyes215Mali-G77 MP9
~20.527%
4348
11466
867.5n2
2852n2
1036n2
3173n2
6101n2
31904n2
88n2
76.2n2
89
76n2
MediaTek Dimensity 1200Cortex-A78 / A552000 ‑ 30008/86ARMyes1059Mali-G77 MP9
~16.827%
11256
4294
13528
850
3023
833n2
2689.5n2
5166
28059.5n2
51.45n2
52.15n2
69.5n2
MediaTek Kompanio 1300TCortex-A78 / A552000 ‑ 26008/86ARMyes646Mali-G77 MP9
~17.216%
773
2669
28601
64.89
48.9
75
63
Intel Core i7-8500YAmber Lake-YAmber Lake512KB + 4MB51500 ‑ 42002/414x86yes1933UHD Graphics 615
~17.668%
3056n2
5027n2
8706n2
1.45n2
2.49n2
130.5n4
246.5n4
312n2
587.5n2
9.34
657
15.51
673
2483
83.3
14.07
2.12
2.2
0.36
0.22
1965.5n2
4367.5n2
10709n2
3245
5614
4397.5n2
7224n2
858
1504
24631.5n4
Intel Core i3-10110YAmber Lake-YAmber Lake512KB + 4MB71000 ‑ 40002/414x86yes1566UHD Graphics 615
~22.55%
996
1633
Intel Core i5-8210YAmber Lake-YAmber Lake512KB + 4MB71600 ‑ 36002/414x86yes1872UHD Graphics 617
~21.536%
3544
129.5n2
269.5n2
312
601
2.26
1680
3405
7936
4162
7474
660
1433
33003n2
96.3
82.6
Intel Core i5-8200YAmber Lake-YAmber Lake512KB + 4MB51300 ‑ 39002/414x86yes1933UHD Graphics 615
~24.29%
4600
7913
900
1934
Intel Core i3-10100YAmber Lake-YAmber Lake512KB + 4MB51300 ‑ 39002/414x86yes1933UHD Graphics 615
~18.568%
5292
9659
1.39
2.53
122
220
303
536
788
1375
10.7
667
15.98
632
1683
2.01
1.8
0.34
0.2
1825
3535
8262
4359
7643
986
1889
34086
98.9
97.9
148
AMD Athlon Silver 7120UMendocino (Zen 2)Mendocino (Zen 2, Ryzen 7020)1MB + 2MB152400 ‑ 35002/26x86yes451Radeon 610M
AMD Athlon Silver 7120CMendocino (Zen 2)Mendocino (Zen 2, Ryzen 7020)1MB + 2MB152400 ‑ 35002/26x86yes451Radeon 610M
Intel Core i3-L13G4LakefieldLakefield1.5MB + 4MB10800 ‑ 28005/510x86yes1283UHD Graphics G4 (Lakefield GT1 48 EU)
~18.45%
816
1349
AMD Ryzen 3 3250UZenPicasso (Ryzen 3000 APU)1MB + 4MB152600 ‑ 35002/414x86yes1439Vega 3
~20.686%
3966
4088
10251
1.46
3.95
121.6n3
353n3
300n3
783n3
776n3
2010n3
12.72
668
14.5
457.3
1710
101
21.1
2.16n3
1.9
0.32
0.23
1399n3
2541n2
3291n3
9063n3
3829
7396
868
1838
824n4
1662n4
313.8
35541
100.6
97.2
140.15n2
105.2
AMD Ryzen Embedded R1606GZenRaven Ridge (Ryzen 2000 APU)1MB + 4MB152600 ‑ 35002/414x86yes1735Vega 3
~25.830%
139
317
350
710
888
1842
2
1456
3528
8969
877
1903
148
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
AMD Ryzen 3 3200UPicasso-U (Zen)Picasso (Ryzen 3000 APU)1MB + 4MB152600 ‑ 35002/414x86yes1804Vega 3
~19.482%
3755
4258
9284
129n3
334n3
301n5
690n5
765n3
1786n3
12.52
730
14.03
483.5
1613
97.8
19.5
1.96n4
2.2
0.36
0.23
1485n3
3372n4
9081.5n4
7816
3282
6922
3562n2
7143n2
826.5n2
1649n2
796.5n4
1651.5n4
130.3
23991
36.1
139n4
AMD Ryzen 3 2200UZenRaven Ridge (Ryzen 2000 APU)1MB + 4MB152500 ‑ 34002/414x86yes2168Vega 3
~17.359%
3386.5n2
3977.5n2
7775.5n2
1.15n2
2.99n2
117n4
312n4
12.98n2
756.5n2
14.27
459.3
1545n2
92
17.8
2.1n2
0.32n2
0.21n2
7422
2925n2
6826.5n2
3583
6937
667
1267
115.9
22930n2
AMD Ryzen 3 PRO 2200UZenRaven Ridge (Ryzen 2000 APU)1MB + 4MB152500 ‑ 34002/414x86yes2168Vega 3
AMD Ryzen 3 5125CBarcelo (Zen 3)Cezanne (Zen 3, Ryzen 5000)1MB + 8MB1530002/47x86yes589Vega 3
AMD Athlon Gold 3150UDali (Zen)Picasso (Ryzen 3000 APU)1MB + 4MB152400 ‑ 33002/414x86yes1438Vega 3
~16.157%
4189
3639
7566
1.36
3.99
117
352
303
795
13.86
727
40.13
1280
1631
106.6
22.47
2.03
2.2
0.35
0.22
1348
3065
8752
751
1847
AMD Ryzen Embedded R1505GZenRaven Ridge (Ryzen 2000 APU)2MB + 4MB102400 ‑ 33002/414x86yes1703Vega 3
~18.234%
97.3
264
243
596
0.65
1725
2505
6931
2667
5478
616
1370
612
1353
106n2
Intel Pentium Gold 6405UComet Lake-UComet Lake1MB + 2MB1524002/414x86yes1506UHD Graphics 610
~13.75%
595
1320
Intel Celeron 7305Alder Lake-UAlder Lake-M3.5MB + 8MB15900 ‑ 11005/510x86yes715UHD Graphics Xe G4 48EUs
Intel Celeron 6305Tiger Lake-UTiger Lake2.5MB + 4MB1518002/210x86yes1200UHD Graphics Xe G4 48EUs
~15.280%
3465
6611
0.99
1.93
83.95n2
161.05n2
217n2
416n2
566.5n2
1071.5n2
18.83
904.72
39.12
1231.05
1210
61.9
11.25
1.7n2
0.92
0.13
0.07
2834n2
2237.5n2
4262.5n2
2824.5n2
4949.5n2
628.5n2
1183.5n2
638n2
1198n2
326.7
21416
72.43
72.43
100.7n2
Intel Celeron 7300Alder Lake-UAlder Lake-M3.5MB + 8MB9700 ‑ 10005/510x86yes715UHD Graphics Xe G4 48EUs
AMD Athlon PRO 300UZen+Raven Ridge (Ryzen 2000 APU)1MB + 4MB152400 ‑ 33002/412x86yes1711Vega 3
AMD Athlon 300UZenRaven Ridge (Ryzen 2000 APU)1MB + 4MB152400 ‑ 33002/412x86yes1804Vega 3
~16.668%
3968
8724
119
308
308
637
14.09
807
15.44
510
1623
88.6
18.5
1.77
1.9
0.29
0.21
6868
2919
6134
3287
6053
765
1552
867
1840
133.6
22253
33.51
143
AMD Athlon Silver 3050UDali (Zen)Picasso (Ryzen 3000 APU)1MB + 4MB152300 ‑ 32002/214x86yes1438Vega 2
~175%
743
1429
Intel Celeron 6205Tiger Lake UTiger Lake2.5MB + 4MB152/210x86yes1200UHD Graphics Xe G4 48EUs
Apple A12 BionicApple A-Series8MB ‑ 24906/67ARMyes1920A12 Bionic GPU
~2825%
4774n5
11480n5
1118
2910
1117.5n2
2814.5n2
486197n3
42333.5n6
109.75n4
123.5n4
159.5n6
Qualcomm Snapdragon 7 Gen 1Cortex-A710 / A510Snapdragon1800 ‑ 24008/84ARMyes574Adreno 644
~17.932%
3646n3
11669n3
802
2970
786n4
2912.5n4
1057.5n4
3017n4
6056
30021n5
86.23n5
67.2n5
110n2
79n5
Qualcomm Snapdragon 780G 5GKryo 670 (Cortex-A78/A55)Snapdragon1900 ‑ 24008/85ARMyes995Adreno 642
~21.220%
9815
3674
11965
809
2998
26943
75.8
70.8
106
Google Tensor G2Cortex X1 / A76 / A55 + 4MB1800 ‑ 28508/85ARMyes435Mali-G710 MP7
~29.832%
4782n4
12839.5n4
1069n2
3276.5n2
1049n4
3217n4
1450n4
3600n4
300.65n2
44948n5
104.66n5
125n5
98n3
98n5
Google TensorExynos X1 / Cortex-A76 / A55 + 4MB1800 ‑ 28008/85ARMyes774Mali-G78 MP20
~25.720%
4815
11589
1041n3
2940n3
43376n3
90.1n3
104n3
105n3
72
HiSilicon Kirin 990 5GCortex-A76/-A55 ‑ 28608/87ARMyes1561Mali-G76 MP16
~24.827%
11668.5n2
3925n2
12549n2
769
3083
772.5n4
3076.5n4
345.4
22343n4
62.7n4
67.45n4
98n3
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
MediaTek Dimensity 8200-UltraCortex-A78 / A55 + 4MB2000 ‑ 31008/84ARMyes206Mali-G610 MP6
~24.930%
4858
16050
998
3889
1018
3833
1252
4034
42222
96.18
112
123
107
HiSilicon Kirin 990Cortex-A76/-A55 ‑ 28608/87ARMyes1561Mali-G76 MP16
~19.627%
11581
3881.5n2
12082.5n2
783
3059
770n2
2977.5n2
261357
21726.5n2
60.5n2
69n2
108n2
Samsung Exynos 990Exynos M5 / Cortex A-76 / Cortex-A55Exynos2000 ‑ 27308/87ARMyes1757UHD Graphics 750
~2923%
10510
4878n2
12559n2
940n5
2787n5
478.8
19122n5
53.9n5
63.25n4
97n5
MediaTek Dimensity 8020Cortex-A78 / A552000 ‑ 26008/86ARMyes654Mali-G77 MP9
~19.330%
3906
12596
836
3280
835
3310
1120
3617
28282
67.26
69.9
87
78
MediaTek Dimensity 1100Cortex-A78 / A552000 ‑ 26008/86ARMyes1059Mali-G77 MP9
~16.15%
655
2500
Qualcomm Snapdragon 860Cortex-A76 / A55 (Kryo 485)Snapdragon1.8MB + 5MB5 ‑ 29608/87ARMyes1625Adreno 640
~17.825%
3398
10570
756n2
2712.5n2
1037
3038
3913
26179n2
67.5n2
60.15n2
93n2
Qualcomm Snapdragon 7c Gen 2Cortex-A76 / A55 (Kryo 468)Snapdragon725508/88ARMyes943Adreno 618
~12.352%
755
511
3053
0.32
1.88
116.8
347
307
992
22.82
1132
1226
0.61
3620
2046
7703
1580
3667
1046.5n2
3483.5n2
20737
62.9
95
Qualcomm Snapdragon 855+ / 855 PlusCortex-A76 / A55 (Kryo 485)Snapdragon1.8MB + 5MB5 ‑ 29608/87ARMyes1625Adreno 640
~18.727%
9887
3654n2
10546.5n2
787.5n4
2846.5n4
751n2
2658.5n2
249792n2
24571n5
65.3n5
64.45n4
98n5
Qualcomm Snapdragon 7cCortex-A76 / A55 (Kryo 468)Snapdragon724008/88ARMyes943Adreno 618
~13.968%
1381
3518
0.75
2.4
114
323
321
830
29.56
1436
36.68
906
1000
47.9
8.4
0.63
3895
2059
7459
1579
3470
305
845
620n3
1725n3
384.75n2
22523n3
62.1n3
44.57n2
83.5n2
Qualcomm Snapdragon 855Cortex-A76 / A55 (Kryo 485)Snapdragon1.8MB + 5MB528408/87ARMyes1836Adreno 640
~25.239%
8574.5n2
2891
9555
3491n14
10987.5n14
742n8
2589.5n8
744n7
2666n7
1008
2757
246456n3
384.2
24044n21
59.15n16
64.2n15
106.5n20
Apple A11 BionicMonsoon / MistralApple A-Series8MB ‑ 23906/610ARMyes2285A11 Bionic GPU
~30.327%
4263n3
10380n3
935
2510
927
2339
453409n3
149
35209n3
96.7
91.5
130
Qualcomm QCM6490Kryo 670 (Cortex-A78/A55)Snapdragon1960 ‑ 27108/86ARMyes855Adreno 643
~25.625%
3822
11172
870
2944
1129
2999
38966
115.42
93.9
151
116
Qualcomm Snapdragon 778G+ 5GKryo 670 (Cortex-A78/A55)Snapdragon1900 ‑ 25008/86ARMyes562Adreno 642L
~20.323%
3760n2
11342n2
824n3
2929n3
6514n2
32109n3
90.28n3
63.69n3
116n3
93n3
Qualcomm Snapdragon 778G 5GKryo 670 (Cortex-A78/A55)Snapdragon1800 ‑ 24008/86ARMyes940Adreno 642L
~17.923%
3500n3
11003n3
787n11
2889n11
4438.5n2
25445n11
74.4n11
55n9
105.5n10
73.5n4
Qualcomm Snapdragon 778G 4GKryo 670 (Cortex-A78/A55)Snapdragon1800 ‑ 24008/86ARMyes940Adreno 642L
~18.727%
3557.5n2
11874n2
788n2
3019.5n2
1008
2418
6336
25361n2
74.88
56.6
109
79
Samsung Exynos 1380ARM Cortex-A55 / A78Exynos2000 ‑ 24008/85ARMyes281Mali-G68 MP5
~3330%
3555.5n2
11160n2
778n3
2728n3
1017n2
2878.5n2
591842
187
34739n3
102.6n3
75.3n2
124.5n2
107n3
MediaTek Dimensity 1000+Cortex-A77 / A552000 ‑ 26008/87ARMyes1306Mali-G77 MP9
~1920%
10598
3688
11987
796
2762
21933
48.35
50.9
73
Apple A10X FusionCyclone 4?Apple A-Series23906/310ARMyes2382A10X Fusion GPU
~21.514%
3928.5n2
9325.5n2
850
2324
82837.5n2
30760.5n2
MediaTek Dimensity 7050Cortex-A78 / A552000 ‑ 26008/86ARMyes228Mali-G68 MP4
~16.932%
3737n2
9132.5n2
762
1960
833n3
2318n3
957n3
2407n3
5412
31801n3
82.97n2
77.75n2
90n2
72n2
MediaTek Dimensity 1080Cortex-A78 / A552000 ‑ 26008/86ARMyes856Mali-G68 MP4
~16.632%
3754.5n2
8894n2
786
2342
765n3
2041n3
954
2229
5411
31662n3
71.87n3
62.9n3
102n3
74n3
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
MediaTek Dimensity 7030Cortex-A78 / A552000 ‑ 25008/86ARMyes113Mali-G610 MP3
~20.427%
3505
8625
789
2197
893
2214
5405
34140
102.38
91.6
121
106
MediaTek Dimensity 920Cortex-A78 / A552000 ‑ 25008/86ARMyes856Mali-G68 MP4
~14.223%
3440
8397
775.5n2
2097.5n2
5110
18244
48.56n2
46.05n2
58
46
MediaTek Dimensity 930Cortex-A78 / A552000 ‑ 22008/86ARMyes571IMG BXM-8-256
~14.427%
3272
8224
705
1919
669.5n2
1848n2
4563
23554n2
70.9n2
51.27n2
101.5n2
77.5n2
MediaTek Dimensity 7020Cortex-A78 / A552000 ‑ 25008/86ARMyes113IMG BXM-8-256
~17.930%
3264
8148
703
1908
697
1903
916
2315
28919
85.94
76.5
120
97
MediaTek MT8188JCortex-A78 / A552000 ‑ 22008/812ARMyes289Mali-G57 MP2
~1730%
3315
7741
711
2065
702
2070
949
2363
24222
74.31
65.6
122
75
MediaTek Dimensity 900Cortex-A78 / A552000 ‑ 24008/86ARMyes1306Mali-G68 MP4
~18.323%
3502.5n2
9026n2
734n5
2161n5
219220
25580n5
53.76n4
49.6n3
68.5n4
54
MediaTek Dimensity 820Cortex-A76 / A552000 ‑ 26008/87ARMyes1306Mali-G57 MP5
~1620%
7836n2
3022
10658
652
2678
18974
44.97
47.6
65
Intel Core m3-7Y32Kaby LakeKaby Lake512KB + 4MB4.51000 ‑ 30002/414x86yes2429HD Graphics 615
~18.418%
120
265
637
1293
3774
6736
773
1576
Intel Core m3-8100YAmber Lake-YAmber Lake512KB + 4MB51100 ‑ 34002/414x86yes1933UHD Graphics 615
~18.175%
3850
6055
96.6n4
179.5n4
243n3
413n3
11.43
818
18.57
906
1646
58.3
11.2
1.69n2
1.7
0.29
0.17
2206n2
2982.5n2
6245.5n2
6113
2702
5446
4159
6934
765
1279
845.5n2
1396.5n2
211n2
20267n3
56.75n2
135.5n4
Intel Pentium Gold 6500YAmber Lake-YAmber Lake512KB + 4MB51100 ‑ 34002/414x86yes1019UHD Graphics 615
~21.85%
3647
5963
Intel Processor N50Alder Lake-NAlder Lake-N + 6MB61000 ‑ 34002/210x86yes351UHD Graphics Xe 16EUs (Tiger Lake-H)
~21.19%
891
1339
1185
2024
Intel Pentium Gold 5405UWhiskey Lake-UPentium512KB + 2MB1523002/414x86yes1787UHD Graphics 610
~15.182%
3224n2
3560.5n2
7885.5n2
1.06n2
2.62n2
92.55n2
233n2
206n2
524n2
539
1390
16.96n2
878.75n2
22.53n2
711.01n2
1904n2
82.15n2
15.6n2
1.37n2
1.35n2
0.24n2
0.14n2
2179.5n2
2528n2
6501.5n2
5080
2810n2
5418.5n2
588n2
1323.5n2
585n2
1324n2
175
16762
18.15
102.6n2
Intel Pentium Gold 4415UKaby LakeKaby Lake512KB + 2MB1523002/414x86yes2480HD Graphics 610
~18.284%
3249
3587
8169
1.01
2.71
94n2
239.5n2
181.3
356
529
1366
16.66
846
20.86
659
2003
85.7
16
1.56
1.4
0.25
0.14
2188
3786
2575
6602
5719
2510
5270
2943
5630
599
1374
119.1
21322
110.2
82.2
AMD A10-9620PBristol RidgeBristol Ridge2MB152500 ‑ 34004/428x86yes2539Radeon R5 (Bristol Ridge)
~8.330%
2277
7420
0.81
2.66
72
230
18.24
977
14.41
470.9
1329n2
76.6
16.3
Intel Celeron 3965UKaby LakeKaby Lake512KB + 2MB1522002/214x86yes2480HD Graphics 610
Intel Pentium Gold 4417UKaby Lake RefreshKaby Lake Refresh1MB + 2MB1523002/414x86yes1764HD Graphics 610
~14.864%
3204
3570
8012
1.08
2.57
89
228
203
472
17.25
922
21.15
665
1792
81.1
15.54
1.4
0.24
0.14
5280
2254
4882
2695
5248
165.1
16702
26
102
Intel Celeron 5205UComet Lake-UComet Lake1519002/214x86yes1506UHD Graphics 610
~10.95%
480
912
Intel Pentium Silver N6005Jasper LakeJasper Lake1.5MB + 4MB102000 ‑ 33004/410x86yes1068UHD Graphics (Jasper Lake 32 EU)
~17.977%
5451n2
3970n2
12496n2
1.48n2
4.85n2
121n3
319n3
262n3
720n3
694n3
1833n3
17.57n2
880.65n2
16.55n2
554.13n2
1674.5n2
118.75n2
25.18n2
1.83n3
2.75n2
0.4n2
0.22n2
1805n3
2464
3465n3
9964n3
2764n3
5399n3
680n3
1537n3
695n3
1673n3
146n3
104.2
Intel Pentium Silver N6000Jasper LakeJasper Lake1.5MB + 4MB61100 ‑ 33004/410x86yes1068UHD Graphics (Jasper Lake 32 EU)
~19.686%
3985
4131.5n2
9642.5n2
1.41n2
3.59n2
113.65n4
291n4
255n4
650.5n4
672.5n4
1699n4
17.53
895
16.92
727
1330
93.4
18.4
1.61n5
2.8
0.41
0.22
1935n5
3786
3305n5
9212n5
3188
8341
724.5n2
1911.5n2
727n5
1915n5
293.2
34145.5n4
107.6n3
82.45n2
146n3
104.2
Intel Celeron N5095Jasper LakeJasper Lake1.5MB + 4MB152000 ‑ 29004/410x86yes1068UHD Graphics (Jasper Lake 16 EU)
~17.180%
5272n2
3544.5n2
12283n2
1.27n2
4.71n2
106n5
364n6
234n5
827n5
611n5
2164n5
20.51
1038.95
19.49n2
611.35n2
1705.5n2
116.5n2
25n2
2.01n5
2.5n2
0.37n2
0.2n2
1547n5
2936
3100n5
11013n5
2900n3
7842n3
646.5n4
2030.5n4
650.5n4
2028n4
89.8
125.3n6
95.2n2
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
Intel Celeron N5105Jasper LakeJasper Lake1.5MB + 4MB102000 ‑ 29004/410x86yes1068UHD Graphics (Jasper Lake 24 EU)
~22.741%
108.1
368
235
826
618
2175
2.01
1573
2940
3108
11153
649
2069
653
2080
102.15
134.2
96.2
Intel Celeron N5100Jasper LakeJasper Lake1.5MB + 4MB61100 ‑ 28004/410x86yes1068UHD Graphics (Jasper Lake 24 EU)
~14.95%
631
1788
Intel Pentium Silver J5040Gemini Lake RefreshGemini Lake4MB102000 ‑ 32004/414x86yes1502UHD Graphics 605
~13.475%
4296
2688
8279
1.09
3.49
91
279
202
630
519
1634
21.32
1083.02
15.29
515.52
1391
89.1
19.2
1.66
2
0.29
0.2
2060
2833
8946
2333
6359
535
1664
538
1672
108.2
80.2
AMD Athlon Silver 3050eDali (Zen)Raven Ridge (Ryzen 2000 APU)1MB + 4MB61400 ‑ 28002/414x86yes1292Vega 3
~15.877%
3339
6780
1.18
2.51
102
226.5n2
224.5n2
419.5n2
576n2
1174.5n2
41.6
1302
18.99
595
1403
70.1
13.8
1.27n2
1.3
0.24
0.16
2298.5n2
2524.5n2
6641.5n2
2948
5000
662
1224
594.5n2
1172n2
454.6
22479
55.6
98.6n2
AMD 3020eDali (Zen)Raven Ridge (Ryzen 2000 APU)1MB + 4MB61200 ‑ 26002/214x86yes1228Vega 3
~12.966%
92
196
236
369
603
943
16.95
879
29
903
1232
65.3
12.8
1.15
1.1
0.16
0.11
2964
2597
4963
2809
4803
646
1195
638
1188
20692
59.5
105
Intel Pentium Silver N5030Gemini Lake RefreshGemini Lake4MB61100 ‑ 31004/414x86yes1502UHD Graphics 605
~15.275%
3895
2498
7724
1.02
3.09
80.9n2
225.95n2
182.5n2
425.5n2
430
911
24.86
1247
14.65
526
1163
84
17.58
0.71
3449.5n2
2645n2
7238n2
2176
5662
356
1177
512n3
1221n3
355.8
21899n2
65.1n2
59.3n2
95.4n3
Intel Celeron J4125Gemini Lake RefreshGemini Lake4MB102000 ‑ 27004/414x86yes1502UHD Graphics 600
~11.480%
3740n3
2112n3
7128n3
0.85n3
3.06n3
75.3n5
243n5
170n5
430n5
438n3
1186n3
24.65n3
1845n3
17.37n3
603n3
1048n3
61.35n3
13.05n3
1.46n5
1.8n3
0.26n3
0.18n3
2391n5
7856
2369n5
7494n5
1924n3
5468n3
453n3
1482n3
455n5
1394n5
64.65n2
88.7n4
68.2
Intel Celeron J4105Gemini LakeGemini Lake4MB101500 ‑ 25004/414x86yes2195UHD Graphics 600
~11.85%
73
270
Intel Pentium Silver N5000Gemini LakeGemini Lake4MB61100 ‑ 27004/414x86yes2195UHD Graphics 605
~14.684%
3320n2
2295n6
6688n6
0.94
2.8
78n12
236.5n12
170n3
484n3
438
1232
24.17
1319
16.83
645
1245
76.3
15.4
1.31
1.9
0.27
0.19
2707
2431
7320
4819
1777.5n6
5547.5n6
2027n7
5790n7
421
1582
194.6
13121n4
33.94
20.1
89.1n2
Intel Celeron J4005Gemini LakeGemini Lake4MB102000 ‑ 27002/214x86yes2195UHD Graphics 600
~10.545%
2085
3500
0.85
1.39
77
144
16.34
1245
33.07
1042
798
49.92
9.96
0.88
0.96
0.13
0.09
4124
1997
3491
Intel Celeron N6211Elkhart LakeElkhart Lake1.5MB6.51200 ‑ 30002/210x86yes516UHD Graphics (Jasper Lake 16 EU)
~11.773%
2696
4693
0.97
1.65
76
128
174
285
439
735
21.98
1070.14
49.66
1561.18
731
45.25
10
0.88
0.98
0.14
0.07
3767
2593
3974
2585
3606
559
857
556
844
89.2
63.2
Intel Celeron 4205UWhiskey Lake-UCeleron512KB + 2MB1518002/214x86yes1787HD Graphics 610
~0.92%
136
Intel Celeron 3867UKaby LakeKaby Lake512KB + 2MB1518002/214x86yes1750HD Graphics 610
~8.114%
134
159
2285
3830
434
873
Intel Celeron 3865UKaby LakeKaby Lake512KB + 2MB1518002/214x86yes2480HD Graphics 610
~13.652%
2853
5425
0.86
1.66
72
142
21.38
1120
39.36
1213
1108
54.4
10.8
0.81
0.13
0.08
3627
1843
3224
2240
3719
176.6
13961
Samsung Exynos 9825Exynos M3 / Cortex-A55Exynos1900 ‑ 27308/87ARMyes1757Mali-G76 MP12
~18.227%
8839
4550n2
10425.5n2
813.5n2
2184n2
834
2331
215665
19021.5n2
45.33n2
59.7
107.5n2
Samsung Exynos 9820Exynos M3 / Cortex-A55Exynos1900 ‑ 27008/88ARMyes1757Mali-G76 MP12
~17.425%
8492.5n2
4505.5n4
10374n4
836
2306
825
2259
20469.5n4
44.24n2
56n3
115n2
HiSilicon Kirin 820Cortex-A76/-A551840 ‑ 23608/87ARMyes1354Mali-G57 MP6
~19.423%
9969
3113
9860
642
2434
238069
19727
54.8
49.5
115
MediaTek Dimensity 810Cortex-A76 / A552000 ‑ 24008/86ARMyes856Mali-G57 MP2
~19.327%
7956
2846
7135
605
1788
598n2
1791.5n2
619
16718.5n2
43.83
39.8
62
MediaTek Dimensity 800Cortex-A76 / A5520008/87ARMyes1306Mali-G57 MP4
~11.520%
2524
8649
523
2143
23814
14751
36.83
37.9
56
HiSilicon Kirin 820eCortex-A76/-A551840 ‑ 22208/87ARMyes1354Mali-G57 MP6
~13.723%
2820
7841
566
1853
3553
18755
56.22
34.1
86
64
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
HiSilicon Kirin 810Cortex-A76/-A551880 ‑ 22708/87ARMyes1658Mali-G52 MP6
~16.220%
2836
7891
598n2
1919.5n2
217082
16604n3
47.86n3
48.3n3
83n3
HiSilicon Kirin 980Cortex-A76/-A55 ‑ 26008/87ARMyes2297Mali-G76 MP10
~17.427%
9587.5n2
3314n9
9854n9
695.5n4
2500n4
707n2
2558n2
246733n2
21603.5n10
50.18n6
59.05n6
99n10
Qualcomm Snapdragon 695 5GKryo 660 Gold (2x Cortex-A78) / Silver (6x Cortex-A55)Snapdragon1700 ‑ 22008/86ARMyes780Adreno 619
~15.727%
3084n5
7355n5
672.5n22
1922n22
903.5n6
2075n6
4737
22285n19
64.22n17
45.45n14
94n11
65n16
Samsung Exynos 1280Exynos2000 ‑ 24008/85ARMyes635Mali-G68 MP4
~15.420%
3376n2
7738.5n2
737n3
1878n3
4737
24340n2
64.76n2
49.62n2
75.5n2
Samsung Exynos 9810Exynos M3 / Cortex-A55Exynos ‑ 29008/810ARMyes2172Mali-G72 MP18
~13.423%
6098.5n2
3698n3
8874n3
679
2033
154312n2
14711.5n4
32.26
39
68n4
Qualcomm Snapdragon 850Cortex-A75 / A55 (Kryo 385)Snapdragon1.5MB + 2MB2750 ‑ 29608/810ARMyes2132Adreno 630
~9.634%
1166
2284
34
1678
37
1456
4745
28
4.9
2269
7118
488
1923
13947
58.8
Qualcomm Snapdragon 845Cortex-A75 / A55 (Kryo 385)Snapdragon + 2MB28008/810ARMyes2132Adreno 630
~21.230%
10839.5n2
2429n27
8849n27
501
1986
466
2012
244932n2
451
16369.5n28
46.61n4
51.05n4
97n17
Qualcomm Snapdragon 765GKryo 475 Gold / SilverSnapdragon1800 ‑ 24008/87ARMyes1470Adreno 620
~16.723%
7961
2863n3
7665n3
606n17
1810n17
208510
18551n14
50.5n12
49.8n9
76n13
Qualcomm Snapdragon 765Kryo 475 Gold / SilverSnapdragon1800 ‑ 23008/87ARMyes1470Adreno 620
~12.820%
2785
7832
592.5n2
1911.5n2
17028
17001n2
48.46n2
36n2
75n2
Qualcomm Snapdragon 4 Gen 12x Cortex-A78 / 6x Cortex-A55Snapdragon1804 ‑ 20168/86ARMyes435Adreno 619
~15.516%
642
1954
19867
58.04
48.5
91
68
Qualcomm Snapdragon 750G 5GKryo 570 (Cortex-A77/A55)Snapdragon1800 ‑ 22008/88ARMyes1179Adreno 619
~14.725%
7402
3054
7945
643n9
1878n9
8058
17823n7
54.7n7
44.27n6
79n6
63
AMD 3015ePollock (Zen)Raven Ridge (Ryzen 2000 APU)1MB + 4MB61200 ‑ 23002/414x86yes1228Vega 3
~10.65%
464
860
AMD 3015CePollock (Zen)Raven Ridge (Ryzen 2000 APU)1MB + 4MB61200 ‑ 23002/414x86yes1228Vega 3
~2816%
564
1135
344.3
23395
75.3
67.7
118
Intel Celeron N4120Gemini Lake RefreshGemini Lake4MB61100 ‑ 26004/414x86yes1502UHD Graphics 600
~14.473%
3403
2159
6432
0.88
2.68
73.2n3
224n3
165n3
490n3
416.5n2
1230n3
25.57
17.56
661
1.31n3
1.8
0.25
0.18
2570.5n2
2279n3
7184n3
1876n3
5668n3
435.5n2
1503n2
439n3
1509n3
520
17701n2
54.4n2
46n2
86.2n4
Qualcomm Snapdragon 690 5GKryo 560 Gold (Cortex-A77) / Silver (Cortex-A55)Snapdragon1700 ‑ 20008/88ARMyes1276Adreno 619L
~25.225%
7298
2739.5n2
6837n2
600n2
1794.5n2
515836
481.5
10630.5n2
30.89n2
27.25n2
51.5n2
MediaTek Dimensity 800UCortex-A76 / A552000 ‑ 24008/87ARMyes1306Mali-G57 MP3
~11.118%
8035
599n4
1779.5n4
12938.5n2
16629n3
33.82n2
32.05n2
47n3
MediaTek Dimensity 6020Cortex-A76 / A552000 ‑ 22008/87ARMyes289Mali-G57 MP2
~1223%
539
1813
709
1781
4668
16765
56.65
45.2
66
52
UNISOC T820Cortex-A76 / A552100 ‑ 27008/86ARMyes470Mali-G57 MP4
~17.39%
2857
8410
639
2283
UNISOC Tangula T770Cortex-A76 / A552000 ‑ 25008/86ARMyes1444Mali-G57 MP4
~16.89%
2763
8087
622
2226
UNISOC Tangula T760Cortex-A76 / A55 + 3MB2000 ‑ 20008/86ARMyes1452Mali-G57 MP4
~13.35%
541
2155
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
Qualcomm Snapdragon 732GKryo 470 Gold / SilverSnapdragon23008/88ARMyes1209Adreno 618
~22.423%
6709
2616n2
7036.5n2
565n3
1787n3
430
17398n3
52.6n3
43.2n3
72n3
Qualcomm Snapdragon 730GKryo 470 Gold / SilverSnapdragon22008/88ARMyes1719Adreno 618
~12.825%
2556
6987
543n2
1726n2
547n6
1744.5n6
199813
16602.5n6
46.87n6
43.3n6
69n6
Mediatek Helio G99Cortex-A76 / A55Mediatek2000 ‑ 22008/86ARMyes486Mali-G57 MP2
~1330%
2672n3
7896n3
555
1921
543.5n8
1803.5n8
721n2
1957.5n2
18447.5n8
55.89n4
34.55n4
86n4
56.5n4
MediaTek Dimensity 700Cortex-A76 / A552000 ‑ 22008/87ARMyes1014Mali-G57 MP2
~18.630%
2531
6853
547n9
1700n9
711
1919
3167
592
16871n9
44.7n8
37n6
56n4
54n4
Qualcomm Snapdragon 730Kryo 470 Gold / SilverSnapdragon22008/87ARMyes1719Adreno 618
~1523%
7184
2481.5n2
6848.5n2
545n2
1713.5n2
199625
16378.5n4
43.58n4
40.1n4
73n4
Qualcomm Snapdragon 720GCortex-A76 / A55Snapdragon23008/88ARMyes1719Adreno 618
~12.320%
2620
6263
567n7
1694n7
18494
17265n5
48.22n4
41n4
69n5
Mediatek Helio G96Cortex-A76 / A55Mediatek2000 ‑ 20508/812ARMyes920Mali-G57 MP2
~11.432%
2522n2
7630n2
531
1873
528n3
1755n3
680
1688
4433.5n2
18633.5n2
52.37n2
43.55n2
66n2
50n2
Mediatek Helio G95Cortex-A76 / A55Mediatek2000 ‑ 20508/812ARMyes1605Mali-G76 MP4
~10.923%
2476
6436
510.5n6
1680n6
12299
15551.5n4
36.93n5
33.65n4
53n5
40
Mediatek Helio G90TCortex-A76 / A55Mediatek20508/812ARMyes1605Mali-G76 MP4
~11.227%
6843n2
2424.5n4
6836.5n4
391
1612
503n3
1593n3
107245n2
15619n4
35.74n4
33.95n4
54n4
UNISOC T765Cortex-A76 / A552100 ‑ 23008/86ARMyes4Mali-G57 MP2
~15.35%
750
1935
Qualcomm Snapdragon 480 Plus 5GCortex-A76 / 55Snapdragon1800 ‑ 22008/88ARMyes1080Adreno 619
~14.227%
2531
6819
554n3
1643n3
746
1917
4242n2
20689n3
65.69n3
47.6n3
85.5n2
70n2
Qualcomm Snapdragon 480 5GCortex-A76 / 55Snapdragon1800 ‑ 20008/88ARMyes1080Adreno 619
~14.220%
2478
6917
510n9
1663n9
187431
16018n6
46.44n5
38.4n5
70n5
MediaTek Dimensity 720Cortex-A76 / A5520008/87ARMyes1245Mali-G57 MP3
~13.627%
2329.5n2
6174n2
499.5n4
1603.5n4
660
1856
176204
16261.5n4
37.29n4
37.7n3
51n3
62
Mediatek Helio P90Cortex-A75 / A55Mediatek22008/812ARMyes1468PowerVR GM9446
~14.223%
7696
1994
6162
408n3
1524n3
195354
14607
43.53
41.5
91
HiSilicon Kirin 970Cortex-A73/-A5324008/810ARMyes2300Mali-G72 MP12
~11.323%
6877.5n2
1901n8
6714.5n8
386n2
1711.5n2
202050
11085n8
25.88n3
27.9n3
69n3
HiSilicon Kirin 960Cortex-A73/-A5324008/816ARMyes2603Mali-G71 MP8
~13.316%
1869n7
6445n7
264076n2
10236n7
23.46n2
20.85n2
70n2
HiSilicon Kirin 960sCortex-A73/-A5321008/816ARMyes2603Mali-G71 MP8
~11.69%
6502
1634
5809
6802
AMD A9-9420eStoney RidgeBristol Ridge1MB ‑ 25002/228x86yes2028Radeon R5 (Stoney Ridge)
~0.62%
97
Intel Pentium Gold 4425YKaby LakeKaby Lake512KB + 2MB617002/414x86yes2434UHD Graphics 615
~13.35%
2160
4330
Intel Pentium Gold 4415YKaby LakeKaby Lake512KB + 2MB616002/414x86yes2434HD Graphics 615
~6.741%
2521
5586
0.75
1.8
65
164
16.34
1240
31.07
982
1455
58.3
11
1.09
0.1
11875
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
Apple A9XCyclone 322602/214ARMyes3024A9X / PowerVR GT7xxx
~30.414%
3097
5284
59226n2
181
19736.5n2
101
Qualcomm Snapdragon 678Kryo 460 Gold (Cortex-A76) / Silver (Cortex-A55)Snapdragon1700 ‑ 22008/811ARMyes1100Adreno 612
~14.727%
7022
2219
5674
2483
6570
531
1541
2743
15828
47.39
41.17
71
Qualcomm Snapdragon 675Kryo 460 Gold (Cortex-A76) / Silver (Cortex-A55)Snapdragon1600 ‑ 20008/811ARMyes1914Adreno 612
~12.427%
6668
2323n2
6222n2
504n3
1610n3
486
924
190355
15702.5n2
44.17n2
41.4
76n2
Samsung Exynos 8895 OctaMongoose / Cortex-A53Exynos23008/810ARMyes2457Mali-G71 MP20
~17.611%
6325
2015n3
6711n3
238041
13265n3
Qualcomm Snapdragon 685 4GKryo 265 Gold (Cortex-A73) / Silver (Cortex-A53)Snapdragon1900 ‑ 28008/86ARMyes1100Adreno 610
~11.923%
2055
7087
442
1787
4077
15695
58.95
50.9
74
58
Qualcomm Snapdragon 680 4GKryo 265 Gold (Cortex-A73) / Silver (Cortex-A53)Snapdragon1800 ‑ 24008/86ARMyes1100Adreno 610
~10.525%
1818.5n4
5636n4
377.5n12
1604n12
425.5n2
1157.5n2
12386n9
42.03n7
39.64n7
63.5n6
45.5n4
Qualcomm Snapdragon 835 (8998)Kryo 280Snapdragon24508/810ARMyes2464Adreno 540
~15.343%
664
3198
0.27
1.59
7226n2
1155n2
4100n2
1920n18
6517n18
388
1714
386
1669
266992
298.5n2
11484n20
36.4n2
41.7n2
77n2
UNISOC T750Cortex-A76 / A55 + 3MB1800 ‑ 20008/86ARMyes249Mali-G57 MP2
~11.25%
470
1432
UNISOC Tangula T740Cortex-A75 / A55 Tangula + 2MB1800 ‑ 18008/812ARMyes1449PowerVR GM9446
~9.35%
367
1727
Qualcomm Snapdragon 712Kryo 360Snapdragon23008/810ARMyes1777Adreno 616
~11.223%
6973
1875
5975
317
1491
185962
11945n2
37.21
37.5
59.5n2
Apple A10 FusionAPL1021 Hurricane / ZephyrApple A-Series23404/216ARMyes2659A10 Fusion GPU
~14.625%
3499n3
5922n3
771n2
1429n2
777n3
1421n3
49329n2
26053n5
65.2n2
65.95n2
95n2
Samsung Exynos 8890 OctaMongoose / Cortex-A53Exynos26008/814ARMyes2850Mali-T880 MP12
~3211%
1810
5354
207417n3
321
12915.5n4
Samsung Exynos 9611Exynos 7 SeriesExynos1700 ‑ 23008/810ARMyes1486Mali-G72 MP3
~8.220%
347n3
1299n3
347.5n4
1323.5n4
150124
9810n7
27.68n7
29.2n7
55n7
Samsung Exynos 9610Exynos 7 SeriesExynos1700 ‑ 23008/810ARMyes1714Mali-G72 MP3
~12.414%
1721
5605
172805
10322
33.07
62
HiSilicon Kirin 955Cortex-A72/-A5325008/816ARMyes2814Mali-T880 MP4
~14.616%
8222
1744
5260
253465
11920.5n2
32.26
36
Intel Celeron J4115Gemini LakeGemini Lake4MB101800 ‑ 25004/414x86yes1507UHD Graphics 600
~11.859%
3683
2087
7426
0.83
3.2
70.6n2
244n2
156.5n2
546.5n2
27.38
1472
19.09
564
1203
76.3
17.5
1.42n2
1.7
0.25
0.17
2515n2
2199.5n2
7613.5n2
399n2
1420.5n2
81.65n2
Intel Celeron N4100Gemini LakeGemini Lake4MB61100 ‑ 24004/414x86yes2200UHD Graphics 600
~13.482%
2805n4
2013n5
5904n5
0.83n3
2.18n3
68.6n12
198n12
152n7
391n7
386.5n2
960.5n2
28.5n3
1474n3
19.41n3
790n3
1139n3
58.2n3
11.8n3
1.18n6
1.7n3
0.23n3
0.16n3
3176n7
2158n7
6608n7
1629n2
5041.5n2
1795n7
5259n7
408n4
1232n4
405n7
1271n7
233
11328n5
75.2n5
Intel Pentium Gold 4410YKaby LakeKaby Lake512KB + 2MB615002/414x86yes2434HD Graphics 615
Intel Celeron 3965YKaby LakeKaby Lake512KB + 2MB615002/214x86yes2434HD Graphics 615
HiSilicon Kirin 950Cortex-A72/-A5323008/816ARMyes2946Mali-T880 MP4
~32.811%
1683
5283
270825
460.6
11329n3
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
Samsung Exynos 9609Exynos 7 SeriesExynos1600 ‑ 22008/810ARMyes1714Mali-G72 MP3
~12.823%
6123
1478
5223
1603n2
5324n2
131830
9808n2
31.18n2
29.9
63n2
AMD A6-9220CStoney RidgeBristol Ridge1MB61800 ‑ 27002/228x86yes1784Radeon R5 (Stoney Ridge)
Intel Celeron N4505Jasper LakeJasper Lake1.5MB + 4MB102000 ‑ 29002/210x86yes1073UHD Graphics (Jasper Lake 16 EU)
~16.786%
3214n2
3621.5n2
6860.5n2
1.28n2
2.49n2
106n2
197.5n2
230n2
441.5n2
603.5n2
1148.5n2
20.92n2
1003.47n2
35.84n2
1131.72n2
1061.5n2
72.3n2
13.65n2
1.19n2
1.3n2
0.19n2
0.1n2
2899n2
5741.5n2
3046.5n2
6003.5n2
2945.5n2
5082n2
648n2
1214.5n2
653.5n2
1232n2
353.4
24502
89.8n2
71.7
114.15n2
80.25n2
Intel Celeron J4025Gemini Lake RefreshGemini Lake4MB102000 ‑ 29002/214x86yes1507UHD Graphics 600
~1177%
2575
2337
4556
0.96
1.81
77
148
178
293
461
857
23.08
1175.7
31.07
983.3
783
53.1
10.6
0.98
1
0.15
0.1
3792
7396
2636
4955
2170
3847
497
919
500
927
89.2
67.1
Intel Celeron N4500Jasper LakeJasper Lake1.5MB + 4MB61100 ‑ 28002/210x86yes1073UHD Graphics (Jasper Lake 16 EU)
~15.675%
2053
1.04
2.1
82
171
188
332
452
709
22.82
1132
50.2
1270
1076
60.6
12.02
0.74
1.1
0.18
0.1
4249
2853
5394
594n3
1018n3
457
662
197.1
24838
82.5
71.5
94.75n2
91.2
Intel Celeron N4020Gemini Lake RefreshGemini Lake4MB61100 ‑ 28002/214x86yes1507UHD Graphics 600
~10.973%
2495
2184
4427
0.94
1.71
73.75n2
127.1n2
162.4n2
279n2
308
616
24.17
1220
29.66
932
766
50.1
9.97
0.83n2
0.95
0.13
0.09
4064
2456
4498
2004n2
3433n2
462n3
836n3
49.9
80.2n2
55.25n2
MediaTek Kompanio 5202x Cortex-A76 / 6x A55MediaTek Kompanio 50020008/87ARMyes408Mali-G52 MP2
~2718%
510
1532
172.6
23443
75.55
40.9n2
121
80.5n2
Mediatek Helio P70Cortex-A73 / A53Mediatek21008/812ARMyes1707Mali-G72 MP3
~9.127%
6339
1479n4
5124n4
298n3
1399n3
295n7
1443n7
171015
9097n8
23.72n4
32.04
47.5n8
Mediatek Helio P65Cortex-A75 / A55Mediatek20008/812ARMyes1633Mali-G52 MP2
~7.927%
6229
1711
5097
357
1211
354n2
1239.5n2
6412
10460.5n2
33.29n2
27.9n2
51.5n2
MediaTek Helio X27 MT6797XMediatek Helio 20260010/10ARMyes1997Mali-T880 MP4
~12.29%
1690n4
4781.5n4
159874
6031.5n4
Qualcomm Snapdragon 710Kryo 360Snapdragon22008/810ARMyes1853Adreno 616
~12.732%
6539n2
1863
5589
1821n4
5850.5n4
394
1515
393n2
1478n2
180127n3
12364.5n6
36.48n3
36.7n3
69.5n6
Qualcomm Snapdragon 670Kryo 360 Gold / SilverSnapdragon20168/810ARMyes1960Adreno 616
~1027%
6467n2
1624n3
5172n3
344
1322
349n3
1343n3
171622n2
10950n4
33.13n4
32.5n3
62n3
Qualcomm Snapdragon 665Kryo 260Snapdragon22008/811ARMyes1716Adreno 610
~9.327%
6117
1495n3
5366n3
314n3
1379n3
310.5n8
1371.5n8
172978
9260n9
30.59n6
29.12n6
51n9
Qualcomm Snapdragon 662Kryo 260Snapdragon1800 ‑ 20008/811ARMyes1716Adreno 610
~7.720%
1472
4938
314n11
1381n11
16222
9385n12
31.63n10
28.5n9
52n11
Qualcomm Snapdragon 660Kryo 260Snapdragon22008/814ARMyes2416Adreno 512
~16.330%
6141n2
1617n11
5850n11
321.5n2
1305n2
330.5n4
1440.5n4
186416n3
630
10070n14
30.82n3
32.3
59n9
Qualcomm Snapdragon 821 MSM8996 ProKryoSnapdragon1.5MB24004/414ARMyes2636Adreno 530
~11.714%
1834.5n4
4356n4
215105
9493n10
26.42
22.4
Samsung Exynos 7885Cortex-A73/-A53Exynos22008/814ARMyes2179Mali-G71 MP2
~10.811%
5054
1525.5n2
4430n2
9257.5n2
57
UNISOC T619Cortex-A75 / A55 + 1MB1800 ‑ 22008/812ARMyes1484Mali-G57 MP1
~9.85%
403
1489
UNISOC T618Cortex-A75 / A55 + 1MB2000 ‑ 20008/812ARMyes1484Mali-G52 MP2
~11.520%
1911
5744
382n6
1325.5n6
12356.5n6
42.61n4
33.33n4
74.5n6
58
UNISOC T616Cortex-A75 / A55 + 1MB1800 ‑ 20008/812ARMyes1484Mali-G57 MP1
~10.427%
1734n2
5377.5n2
355n6
1428n6
428n3
1548n3
3122.5n2
14081n4
50.52n4
38.3n4
80n3
57n3
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
UNISOC T612Cortex-A75 / A55 + 1MB1800 ‑ 20008/812ARMyes598Mali-G52 MP1
~9.118%
346n5
1323n5
2969
12581
45.17n2
31.65n2
73
46
UNISOC T610Cortex-A75 / A55 + 1MB1800 ‑ 20008/812ARMyes1484Mali-G52 MP2
~8.416%
348.5n4
1298.5n4
1942
11952
44.18n2
33.43n2
53
UNISOC T606Cortex-A75 / A55 + 1MB16008/812ARMyes1484Mali-G57 MP1
~8.220%
310n10
1185.5n10
375n2
1442.5n2
1218
10858n5
48.46n3
35.13n2
51.5n2
UNISOC Tangula T700Cortex-A75 / A551800 ‑ 18008/812ARMyes999Mali-G52 MP2
~7.616%
351.5n2
1342n2
2078
10382
35.89
29.9
65
Mediatek Helio G88Cortex-A75 / A55Mediatek1800 ‑ 20008/812ARMyes1360Mali-G52 MP2
~7.632%
1785.5n2
5838.5n2
363
1257
375n5
1284n5
436n4
1262.5n4
3345
9404n5
28.58n3
24.4n3
48n3
34.5n2
Mediatek Helio G85Cortex-A75 / A55Mediatek1800 ‑ 20008/812ARMyes1360Mali-G52 MP2
~9.720%
5907
1662
5301
353n11
1305n11
12107n9
30.77n5
27.85n4
45n5
Mediatek Helio G80Cortex-A75 / A55Mediatek20008/812ARMyes1707Mali-G52 MP2
~9.430%
5821
1702.5n2
5424.5n2
363.5n12
1337.5n12
413
1384
7818n2
11782n9
33.32n8
28.65n8
49n7
44.5n2
Mediatek Helio G70Cortex-A75 / A55Mediatek20008/812ARMyes1707Mali-G52 MP2
~9.423%
6725
1832
5734
387.5n2
1307.5n2
13756
10648
29.08
31.2
44
HiSilicon Kirin 710Cortex-A73/-A5322008/812ARMyes1918Mali-G51 MP4
~9.827%
5856.5n2
1550n11
5430n11
327n2
1339n2
330.5n2
1338n2
184162n2
9695n13
31.56n8
31.55n6
62n11
HiSilicon Kirin 710ACortex-A73/-A5320008/814ARMyes1317Mali-G51 MP4
~9.220%
6201
1440n2
5231.5n2
297n3
1312n3
9453.5n2
30.19n2
26.37n2
55n2
Mediatek Helio P60TCortex-A73 / A53Mediatek20008/812ARMyes2179Mali-G72 MP3
~17.520%
258.5n2
1091.5n2
6791
716
10523.5n2
37.36n2
30.44n2
69.5n2
48
Mediatek Helio P60Cortex-A73 / A53Mediatek20008/812ARMyes2179Mali-G72 MP3
~10.223%
6391n2
1479.5n2
5648.5n2
293n3
1422n3
142690n2
8778n7
26.19
33
51n4
Mediatek MT8788Cortex-A73 / A53Mediatek20008/812ARMyes1724Mali-G72 MP3
~7.420%
971
4983
291n2
1383n2
329
1284
10152.5n2
36.44
25.3
Mediatek MT8183Cortex-A73/-A53Mediatek MT820008/812ARMyes1478Mali-G72 MP3
~1027%
6072
1430.5n2
5376.5n2
300n5
1293n5
323
1214
175006
9822n5
25.62n3
26.7n4
55.5n4
Samsung Exynos 7420 OctaCortex-A57/-A53Exynos21008/814ARMyes3216Mali-T760 MP8
~28.914%
6201
1237.5n2
4958n2
169794n4
546n5
8518n5
Mediatek Helio X25 MTK6797TCortex-A72 / A53Mediatek Helio 20250010/1020ARMyes2850Mali-T880 MP4
~9.67%
1791
4554
6089
Qualcomm Snapdragon 820 MSM8996KryoSnapdragon1.5MB22004/414ARMyes2926Adreno 530
~10.114%
1662n5
4021n5
170521n3
8987n10
24.59
21
Nvidia Tegra X1Erista (Cortex-A57 + A53)Tegra2.5MB20008/820ARMyes3271Tegra X1 Maxwell GPU
~27.311%
1510
4264
129085
715n2
8031.5n2
Apple A9Cyclone 318002/214ARMyes3024A9 / PowerVR GT7600
~24.916%
2556
4459
531n2
970n2
48849n4
223n2
16375n4
AMD A4-9120Stoney RidgeBristol Ridge1MB10-152200 ‑ 25002/228x86yes2393Radeon R2 (Stoney Ridge)
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
AMD A4-9120CStoney RidgeBristol Ridge1MB61600 ‑ 24002/228x86yes1809Radeon R4 (Stoney Ridge)
Qualcomm Snapdragon 810 MSM8994Cortex-A57/-A53Snapdragon20008/820ARMyes3544Adreno 430
~17.723%
3012.5n2
1093.5n6
3218n6
1350
3440
117831n6
579n11
7924.5n14
18.08
22.4
Samsung Exynos 850Cortex-A55 ‑ 20008/88ARMyes1314Mali-G52 MP1
~5.323%
987
4986
178n7
1042n7
10533
5454.5n6
20.2n6
15.7n6
36.5n6
25
Qualcomm Snapdragon 652 MSM8976Cortex-A72/-A53Snapdragon18008/828ARMyes3227Adreno 510
~14.19%
1454
4612
215365
9071.5n4
Qualcomm Snapdragon 808 MSM8992Cortex-A53/A57Snapdragon20006/620ARMyes3544Adreno 418
~20.318%
3773
1022
2952
1124
2798
97824n2
651n6
7948.5n8
Qualcomm Snapdragon 650 MSM8956Cortex-A72/-A53Snapdragon18006/628ARMyes3227Adreno 510
~8.57%
1458
2869
8368.5n4
Apple A8XCyclone 22MB + 4MB15003/320ARMyes3352UHD Graphics 750
~20.920%
1812
4477
1821
4357
381
1060
73235
291.1
10512
Nvidia Tegra K1 (Denver)DenverTegra2MB23002/228ARMyes3353GeForce ULP K1 (Tegra K1 Kepler GPU)
~21.818%
4055
1811n2
3029n2
1729
2776
35765
919
8210
Mediatek Helio X20 MT6797Cortex-A72 / A53Mediatek Helio 20230010/1020ARMyes2850Mali-T880 MP4
~9.57%
1599
4468
7999.5n4
Mediatek MT8176Cortex-A72/-A53Mediatek21006/628ARMyes2689PowerVR GX6250
~9.37%
1582.5n2
3232.5n2
8897n3
Mediatek Helio P25Cortex-A53Mediatek Helio 2026008/816ARMyes2872Mali-T880 MP2
~6.520%
4348
836.5n4
3860.5n4
177
891
177
891
135249
4582.5n4
Mediatek MT8173Cortex-A72/-A53Mediatek24004/428ARMyes3216PowerVR GX6250
~7.97%
1204
3305
8570
MediaTek MT8169ACortex-A55Mediatek MT820006/612ARMyes350Mali-G52 MP2
~5.711%
5843n2
23.54n2
15.76n2
38.5n2
25n2
Mediatek Helio G37Cortex-A53Mediatek Helio G1800 ‑ 23008/812ARMyes1268PowerVR GE8320
~523%
800
3716
161n4
706n4
193
845
6000n2
21.16
15.01
37
Mediatek Helio G35Cortex-A53Mediatek Helio G23008/812ARMyes1268PowerVR GE8320
~4.320%
783
3585
170n5
881n5
1727
5369.5n2
17.96
13.3
34
Mediatek Helio G36Cortex-A53Mediatek Helio G22008/812ARMyes325PowerVR GE8320
~4.618%
139
512
1003
5207
23.11
16.9
43
27
Mediatek MT8173CCortex-A72/-A53Mediatek21004/428ARMyes3216PowerVR GX6250
~51.55%
590n3
10319n3
Mediatek MT6595 TurboCortex-A7/-A17Mediatek2MB25008/828ARM3599PowerVR G6200
Mediatek MT8768Cortex-A53Mediatek MT81500 ‑ 20008/8ARMyes1416PowerVR GE8320
~4.518%
789
3745
152n3
780n3
4142.5n2
15.5n2
13.34
31n3
Samsung Exynos 5433 OctaCortex-A57/-A53Exynos19008/820ARMyes3395Mali-T760 MP6
~28.39%
1359
3969
1023.5n2
6991n2
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
Apple A8Cyclone 21MB + 4MB14002/220ARMyes3389PowerVR GX6450
~19.920%
1614.5n4
2881.5n4
1591
2759
328
627
44118n2
347.2n4
7377n4
Mediatek Helio G25Cortex-A53Mediatek Helio G20008/812ARMyes1268PowerVR GE8320
~4.520%
3256
711
3574
141n6
650n6
3974n2
14.37n2
12.65n2
24
Mediatek Helio A25Cortex-A53Mediatek Helio 2018008/812ARMyes1416PowerVR GE8320
~4.816%
138.5n4
860n4
99375
3779.5n2
13.05n2
13.6
23n2
Nvidia Tegra K1Logan (Cortex-A15 "r3" + Kepler-GPU)Tegra2MB23004/428ARM3635GeForce ULP K1 (Tegra K1 Kepler GPU)
~19.718%
4743
1090.5n2
3278.5n2
1085
2949
22985
525n3
6810n2
Qualcomm Snapdragon 805 APQ8084Krait 450Snapdragon2MB27004/428ARM3682Adreno 420
~18.818%
4469
1073n5
3141n5
1008
2576
18314n3
784n5
5379n5
Qualcomm Snapdragon 636Kryo 260Snapdragon18008/814ARMyes2255Adreno 509
~825%
5063
1337n11
4941n11
278
1256
157981n2
9121
8559n12
26.2n2
26.45n2
54n9
Samsung Exynos 7904Cortex-A73/-A53Exynos18008/814ARMyes1794Mali-G71 MP2
~7.427%
4275
1320n3
4096n3
273
1010
239
596
133094n2
8372n4
22.61n4
22.29n4
52n4
Qualcomm Snapdragon 632Kryo 250Snapdragon18008/814ARMyes2003Adreno 506
~7.718%
1247n5
4515n5
271
1233
8268.5n6
26.9
27.44
58n3
Qualcomm Snapdragon 460Cortex-A73 / 53Snapdragon18008/814ARMyes2366Adreno 610
~14.425%
5371
1290.5n2
4970n2
254n5
1155n5
13985
1219
7240.5n4
25.98n3
22.55n4
42.5n4
Intel Atom Z3735EBay Trail-TAtom2MB<41330 ‑ 18304/422x86yes3512HD Graphics (Bay Trail)
Intel Atom Z3735FBay Trail-TAtom2MB<41330 ‑ 18304/422x86yes3512HD Graphics (Bay Trail)
~9.745%
1164n2
945n16
2885.5n16
0.31n3
0.87n3
27.45n3
1566n3
35.66n3
1100n3
1635n2
35.9n3
6.83n3
0.62n3
0.14n3
0.09n3
2238.5n2
786n8
2191.5n8
511n16
3524n13
Intel Atom Z3735GBay Trail-TAtom2MB<41330 ‑ 18304/422x86yes3512HD Graphics (Bay Trail)
~13.439%
1526
946n7
2891n7
156.3
6113
37.53
1171
1397n2
31.8
6.55
0.62
0.14
0.09
724n4
2110n4
512n11
3381n7
AMD A6-9220eStoney RidgeBristol Ridge1MB61600 ‑ 24002/228x86yes2393Radeon R4 (Stoney Ridge)
~9.661%
1056
1741
31
86
73
110
66.4
2732
35.2
1517
519
14.7
2.65
0.34
0.07
3192
1247
1929
1260
1571
260
293
357.7
9070
12.6
64
Qualcomm Snapdragon 630Cortex-A53Snapdragon22008/814ARMyes2417Adreno 508
~6.714%
4256
865n13
4172n13
5011n13
16.25
38n5
Qualcomm Snapdragon 626Cortex-A53Snapdragon22008/814ARMyes2869Adreno 506
~5.318%
4557
928.5n4
4496.5n4
187
1098
4705.5n4
17.94
19.78
Qualcomm Snapdragon 801 MSM8974ACKrait 400Snapdragon2MB24504/428ARM3836Adreno 330
~1818%
3594n5
965.5n8
2709n8
1024n2
2658n2
18438n5
826n9
4549.5n8
Samsung Exynos 5430 OctaCortex-A7/-A15Exynos512KB18008/820ARM3415Mali-T628 MP6
~22.514%
951
3209
782
2457
445.7
5640
UNISOC SC9863ACortex-A55 + 512KB1200 ‑ 16008/828ARMyes1849GE8322 / IMG8322
~4.927%
3189
827
3526
155n2
808.5n2
138n6
629n6
92404
4018n3
14.69
13.26
30.5n2
Mediatek Helio P23 MT6763TCortex-A53Mediatek Helio 202300 ‑ 25008/816ARMyes2305Mali-G71 MP2
~6.714%
2632n2
829n5
3678n5
103595
3913.5n8
15.99
Mediatek Helio P23 MT6763VCortex-A53Mediatek Helio 2020008/816ARMyes2305Mali-G71 MP2
~5.220%
804n5
3691n5
154.5n2
854.5n2
150n3
875n3
100256
4274n5
29
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
Mediatek MT6595Cortex-A7/-A17Mediatek2MB22008/828ARM3599PowerVR G6200
Qualcomm Snapdragon 801 APQ8074ABKrait 400Snapdragon2MB23604/428ARM3671Adreno 330
~24.911%
3982
915
2327
1047
4127
Qualcomm Snapdragon 801 MSM8974ABKrait 400Snapdragon2MB23604/428ARM3836Adreno 330
~21.514%
3717
919n5
2619n5
17428n2
772.5n6
3131n7
Nvidia Tegra 4Wayne (Cortex A15)Tegra18004/428ARM3998GeForce Tegra 4
~15.623%
3887n6
922n3
2513n3
909
2382
16687n7
599.5n8
4901n7
18.8
40
Mediatek MT6595MCortex-A7/-A17Mediatek2MB20008/828ARM3599PowerVR G6200
Qualcomm Snapdragon 801 MSM8974AAKrait 400Snapdragon2MB22604/428ARM3428Adreno 330
~27.59%
913
2570
1509
4529.5n2
Qualcomm Snapdragon 625Cortex-A53Snapdragon20008/814ARMyes2869Adreno 506
~7.525%
925
4792
872.5n12
4319.5n12
171
1023
156240
4502n17
15.99n3
17.17n3
36.5n2
UNISOC Tiger T3101800 ‑ 20004/412ARMyes1694PowerVR GE8300
~8.823%
1687
2969
376
756
1653
11986
39.15
28.2
63
45
Qualcomm Snapdragon 439Cortex-A53Snapdragon20008/812ARMyes2002Adreno 505
~5.527%
3684
877.5n4
3154n4
177n3
812n3
176
823
105520
4755.5n6
16.3n5
18.23n5
35.5n6
JLQ JR510Cortex-A531500 ‑ 20008/811ARMyes2002Mali-G52 MP1
~5.120%
934
2671
164
818
1033
5975
14.9
46
25
HiSilicon Kirin 925Cortex-A15 / Cortex-A718008/828ARM3394Mali-T628 MP6
~21.914%
896.5n2
3214n2
767
1899
704.5n2
6461n2
Qualcomm Snapdragon 800 MSM8974Krait 400Snapdragon2MB23004/428ARM3836Adreno 330
~17.818%
3845n13
908n17
2641n17
991
2330
15263.5n14
739n19
4089.5n12
Mediatek Helio P20 (LP4) MT6757Cortex-A53Mediatek Helio 2023008/816ARMyes2857Mali-T880 MP2
~8.49%
845n4
3580n4
130988
4376.5n4
Samsung Exynos 5420 OctaCortex-A7/-A15Exynos512KB18008/828ARM3738UHD Graphics 750
~17.218%
3589n3
927.5n4
2751n4
818
2145
18111n4
1067n3
4297n4
HiSilicon Kirin 920Cortex-A15 / Cortex-A717008/828ARM3394Mali-T628 MP4
~18.916%
858
3102
738
1752
18892
725
6363
Samsung Exynos 7880A53Exynos19008/814ARMyes2544Mali-T830 MP3
~5.77%
773
4104
5256
HiSilicon Kirin 935Cortex-A5322008/828ARMyes3213Mali-T628 MP4
~26.19%
800
2912
992n2
4376n2
HiSilicon Kirin 659Cortex-A5323608/816ARMyes2469Mali-T830 MP2
~16.320%
3897
926.5n8
3680.5n8
127602n2
1173
4980n8
16.77
16.42
40n3
Samsung Exynos 7884BCortex-A73/-A53Exynos15608/814ARMyes2179Mali-G71 MP2
~7.416%
3886
1212n3
3714n3
7065n3
22.46n3
21.63n3
48n3
HiSilicon Kirin 658Cortex-A5323508/816ARMyes2469Mali-T830 MP2
~5.87%
913
3460
4589
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
Mediatek Helio X10 MT6795Cortex-A53Mediatek22008/828ARMyes3445PowerVR G6200
~5.15%
789
2041
Samsung Exynos 7870 OctaA53Exynos16008/814ARMyes2862Mali-T830 MP2
~4.414%
732n5
3710n5
3880n8
12.04n3
13n3
31.5n2
HiSilicon Kirin 655Cortex-A5321008/816ARMyes2636Mali-T830 MP2
~12.75%
162396
4414.5n2
HiSilicon Kirin 650Cortex-A5320008/816ARMyes2819Mali-T830 MP2
~11.45%
142543
4472n2
HiSilicon Kirin 930Cortex-A5320008/828ARMyes3213Mali-T628 MP4
~25.811%
760.5n2
3211.5n2
125047
1092.5n2
4084n3
Mediatek Helio P35 MT6765Cortex-A53Mediatek1800 ‑ 23008/816ARMyes1845PowerVR GE8320
~4.825%
4143
855n3
3973n3
173n3
1002n3
168.5n6
934.5n6
4643n5
15.83n4
14.59n4
31.5n4
Mediatek Helio P22T MT8768TCortex-A53Mediatek23008/816ARMyes2059PowerVR GE8320
~425%
842
3870
173
920
166n2
936n2
5163
5080n2
18.53
13.9
35
Mediatek Helio P22 MT6762Cortex-A53Mediatek Helio 2020008/816ARMyes2148PowerVR GE8320
~4.318%
773.5n10
3505.5n10
137n9
805n9
4257n9
13.68n3
14.7
29n7
Mediatek Helio P10 MT6755Cortex-A53Mediatek20008/828ARMyes3445Mali-T860 MP2
~18.616%
3064
720.5n2
2926.5n2
102616n2
1107
3964.5n12
31
Apple A7Cyclone1MB + 4MB13002/228ARMyes3753UHD Graphics 750
~21.316%
1383n4
2495.5n4
276
502
35725.5n4
399.3n4
5180n3
MediaTek MT8168Cortex-A53Mediatek MT820004/412ARMyes1315Mali-G52 MP1
~5.120%
2538
835n2
2469.5n2
144n3
500n3
70655
4168.5n2
12.2
30n2
Qualcomm Snapdragon 450Cortex-A53Snapdragon18008/814ARMyes2366Adreno 506
~5.723%
3783.5n2
758n13
3907n13
131n3
498n3
101906
3997n14
15.76n4
12.45n4
31.5n8
Samsung Exynos 5410 OctaCortex-A7/-A15Exynos512KB16008/828ARM3933UHD Graphics 750
~4.45%
683
1696
Intel Atom x3-C3440SoFIA LTEAtom1MB1200 ‑ 14004/428yes3215UHD Graphics 750
Samsung Exynos 5260 HexaCortex-A15Exynos17006/628ARM3581UHD Graphics 750
~20.614%
2957
884
2156
15547
999
4316
Qualcomm Snapdragon 429Cortex-A53Snapdragon20004/412ARMyes1999Adreno 504
~4.425%
860
2485
168
552
168
566
70208
4344.5n2
15.33n2
14.54n2
34n2
Mediatek Helio A22 MT6762MCortex-A53Mediatek Helio 2020004/416ARMyes2148PowerVR GE8320
~4.518%
825
2471
161
538
66909
4355n2
15.49
32n2
Mediatek Helio A22 MT6761Cortex-A53Mediatek Helio 2020004/416ARMyes2148PowerVR GE8300
~530%
2414n2
835.5n2
2395n2
140n3
488n3
189
491
67423n3
4538.5n8
15.4n6
14.71n5
34n6
24
Mediatek MT8766BCortex-A53Mediatek MT820004/412ARMyes1267PowerVR GE8300
~1223%
2227
783
2217
133
455
1609
3920
15.01
12.6
27
Mediatek Helio A20 MT6761DCortex-A53Mediatek Helio 2018004/412ARMyes1267PowerVR GE8300
~4.216%
143.5n2
477n2
61213
3938n2
14.28
12.8
26.5n2
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
Mediatek MT8135Cortex-A7/-A15Mediatek17004/428ARM3796PowerVR G6200
~20.214%
2797.5n2
765.5n4
1492.5n4
11615.5n2
992n4
5864.5n2
Rockchip RK3566ARM Cortex-A55 ‑ 20004/422ARMyes1449Mali-G52 MP2
~4.525%
745
1418
143
312
203
493
5022
19.86
15.75
36
21
Samsung Exynos 5250 DualCortex A15Exynos1MB17002/232ARM4055UHD Graphics 750
~34.57%
2591
720.5n2
4943
Mediatek MT8752Cortex-A53Mediatek17008/828ARMyes3336Mali-T760 MP2
Mediatek MT6752Cortex-A53Mediatek17008/828ARMyes3445Mali-T760 MP2
~23.511%
740.5n2
3766.5n2
30455
1049n3
4139n3
Samsung Exynos 7580 OctaCortex-A53Exynos16008/828ARMyes3063Mali-T720 MP2
~28.99%
721n3
3607n3
735
3627n3
Qualcomm Snapdragon 617 MSM8952Cortex-A53Snapdragon15008/828ARMyes3018Adreno 405
~44.95%
1228
3527n5
Qualcomm Snapdragon 616 MSM8939v2Cortex-A53Snapdragon17008/828ARMyes3586Adreno 405
~33.87%
96167
1299n3
3155n5
Qualcomm Snapdragon 615 MSM8939Cortex-A53Snapdragon17008/828ARMyes3586Adreno 405
~19.214%
2579
638n5
2370n5
12996.5n2
1213n9
3411n10
HiSilicon Kirin 620Cortex-A5312008/828ARMyes3306Mali-450 MP4
~41.85%
1679.5n2
2170n2
Rockchip RK328818004/428ARM3428Mali-T760 MP4
~29.49%
778.5n2
2182.5n2
745.5n2
7107n3
Mediatek MT6753Cortex-A53Mediatek15008/828ARMyes3216Mali-T720 MP4
~18.216%
612.5n2
2483n2
653
2505
120120
1562n2
2855n13
Mediatek MT6750SCortex-A53Mediatek15008/828ARMyes2179Mali-T860 MP2
~4.39%
646n2
2466.5n2
3448n2
22n2
Mediatek MT6750NCortex-A53Mediatek15008/828ARMyes2179Mali-T860 MP2
~4.27%
665
2645
3274
Mediatek MT6750Cortex-A53Mediatek15008/828ARMyes2697Mali-T860 MP2
~13.518%
612n18
2617n18
75778n2
2042
3200n19
11.3
12.5
19
Mediatek MT6750TCortex-A53Mediatek15008/828ARMyes2697Mali-T860 MP2
~4.27%
658.5n2
2680n2
3192.5n2
Qualcomm Snapdragon W5+ Gen 1ARM Cortex-A5317004/44157UHD Graphics 750
~30.57%
1251.7
3710
11
Qualcomm Snapdragon W5 Gen 1ARM Cortex-A5317004/44157UHD Graphics 750
Qualcomm Snapdragon 610 MSM8936Cortex-A53Snapdragon17004/428ARMyes3586Adreno 405
MediaTek MT8163 V/A 1.5 GHzCortex-A5315004/428ARM3063Mali-T720 MP2
~2.611%
636n2
1781n2
134
375
3261n2
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
Mediatek MT6592Cortex-A7Mediatek1MB17008/828ARM3682Mali-450 MP4
~18.714%
2561
445n8
2390n8
25313.5n6
1182n8
2563.5n8
Qualcomm Snapdragon 600 APQ8064TKrait-300Snapdragon2MB17004/428ARM3998Adreno 320
~19.114%
2721n4
637n3
1900n3
11659n5
1089n5
1988
Samsung Exynos 7578Cortex-A53Exynos15004/4ARMyes2850Mali-T720 MP2
~26.49%
703
2201
1413
3566
HiSilicon Kirin 910TCortex-A918004/428ARM3520UHD Graphics 750
~21.511%
599
1796
12178
1043
2775
MediaTek MT8163 V/B 1.3 GHzCortex-A5313004/428ARM3063Mali-T720 MP2
~3.611%
640n4
1767n4
2853.5n6
11.11n2
23n3
MediaTek MT8161Cortex-A5313004/428ARM3275Mali-T720 MP2
~29.87%
43768
1713
2510
Intel Atom x3-C3230RKSoFIA 3G-RAtom11004/428yes3215Mali-450 MP4
~45%
334
860
Qualcomm Snapdragon 435Cortex-A53Snapdragon14008/828ARMyes2869Adreno 505
~17.914%
666n10
2582n10
81667
1979
3209n11
27
Qualcomm Snapdragon 430 (MSM8937)Cortex-A53Snapdragon14008/828ARMyes2869Adreno 505
~4.211%
658.5n16
2552.5n16
3293.5n18
10.99
29n3
Qualcomm Snapdragon 415 MSM8929Cortex-A53Snapdragon14008/828ARMyes3227Adreno 405
Qualcomm Snapdragon S4 Pro APQ8064AARMv7Snapdragon2MB15004/428ARM4314Adreno 320
~17.714%
2026n10
498n2
1473n2
10517.5n4
1337n5
2223
Mediatek MT8732Cortex-A53Mediatek15004/428ARMyes3336Mali-T760 MP2
Mediatek MT8165Cortex-A53Mediatek15004/428ARMyes3336Mali-T760 MP2
~22.711%
686
2031
59688
1358
4116
Mediatek MT6739Cortex-A53Mediatek15004/428ARMyes2274PowerVR GE8100
~3.811%
653n14
1779n14
3126n15
10.64n2
25n2
Mediatek MT6739WWCortex-A53Mediatek15004/428ARMyes2274PowerVR GE8100
~4.216%
1788
589
1718
49040
3213
10.24
27
Mediatek MT6732Cortex-A53Mediatek15004/428ARMyes3397Mali-T760 MP2
~27.59%
711n2
2078n2
979
3489n2
Mediatek MT6735Cortex-A53Mediatek15004/428ARMyes3353Mali-T720
~15.316%
505.5n6
1443.5n6
519n2
1430n2
34641n5
1750n9
2657n25
Qualcomm Snapdragon 425 (MSM8917)Cortex-A53Snapdragon14004/428ARMyes2862Adreno 308
~3.514%
660.5n18
1849n18
3052n17
9.13
10.8n2
26n5
Mediatek MT8735Cortex-A53Mediatek13004/428ARMyes3353Mali-T720
~3.67%
617.5n2
1765n2
2718n3
Mediatek MT6737TCortex-A53Mediatek15004/428ARMyes2767Mali-T720 MP2
~16.214%
672n6
1876.5n6
2040
1861
3266n9
27
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
Mediatek MT6737Cortex-A53Mediatek12504/428ARMyes2767Mali-T720 MP2
~12.818%
1573
537n11
1504n11
58
291
45882n4
1825n2
2392n17
Rockchip RK3188Cortex-A918004/428ARM4005Mali-400 MP4
~17.714%
1182n3
504n3
1421n3
10965n4
1240n4
3093.5n2
Samsung Exynos 7570 QuadCortex-A53Exynos14004/414ARMyes2393Mali-T720 MP2
~3.77%
631.5n2
1856.5n2
3027n2
Qualcomm Snapdragon 410 MSM8916Cortex-A53Snapdragon14004/428ARMyes3663Adreno 306
~13.618%
476n15
1426n15
516n2
1322n2
9857n3
1380n18
2737.5n28
9.03
Qualcomm Snapdragon 410 APQ8016Cortex-A53Snapdragon12004/428ARMyes3663Adreno 306
~24.89%
482n3
1443n3
1415n3
2968.5n4
Apple S9 SiPThunder18002/24ARMyes99UHD Graphics 750
~48.55%
902.3
38.9
Samsung Exynos W930ARM Cortex-A5514002/25yes146Mali-G68 MP2
~29.37%
1464.05n2
2581n2
8.55n2
HiSilicon Kirin 910Cortex-A916004/428ARM3520UHD Graphics 750
~17.614%
1938
509n2
1547.5n2
11258
1360.5n2
1535n2
Intel Atom Z2760CloverviewAtom1MB1.7 / 318002/432x864101SGX545
~1139%
945n9
601.5n12
1696.5n12
0.18
0.53n2
84.6n9
4233n7
58.1n7
1892n6
713n3
17.75n2
3.28n2
0.06n4
0.07n4
0.06n4
1397.5n12
812.5n2
Qualcomm Snapdragon 400 MSM8928ARMv7Snapdragon16004/428ARM3824Adreno 305
~19.611%
398.5n4
1338n4
7929n2
1404.5n4
2335n4
Qualcomm Snapdragon 215Cortex-A53Snapdragon 20013004/428ARMyes1625Adreno 308
~3.27%
606
1556
1986
Qualcomm Snapdragon 400 APQ8028ARMv7Snapdragon16004/428ARM3824Adreno 305
~1814%
1596
435
1489
9698
958
1759
Mediatek MT6735PCortex-A53Mediatek10004/428ARMyes3353Mali-T720
~1.95%
14483
2089.5n2
Mediatek MT6735MCortex-A53Mediatek10004/428ARMyes3185Mali-T720
~1.95%
14977
1929
Marvell Armada PXA1908Cortex-A5312004/428ARMyes3336GC7000UL
~4.49%
575
1717
10868
2059
Apple S8Thunder18002/27ARMyes1562UHD Graphics 750
~28.17%
1867.3
838
22.6
Apple S7Thunder18002/2yes1562UHD Graphics 750
~28.37%
1785
810
21.74
Apple S6Thunder18002/2yes1562UHD Graphics 750
~80.22%
1807
Qualcomm Snapdragon Wear 4100+ARM Cortex-A53 ‑ 17005/512ARM1268Adreno 504
~28.67%
1702
2752
11.6
Qualcomm Snapdragon Wear 4100ARM Cortex-A53 ‑ 17004/412ARM1268Adreno 504
~31.57%
1019n4
3444n4
14.13
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
Apple A6x1400232ARM4075UHD Graphics 750
~7.57%
1768
781
1424
Intel Atom Z2580CloverviewAtom1MB31300 ‑ 20002/432x864359SGX544MP2
~18.614%
1479
552n2
1302.5n2
11276
847n2
2822
Qualcomm Snapdragon S4 Pro MSM8960DTKrait 300Snapdragon1MB17002/228ARM3824Adreno 320
~22.511%
682
1263
6979
622
3187
Qualcomm Snapdragon S4 Pro MSM8960TARMv7Snapdragon1MB17002/228ARM4280Adreno 320
~17.614%
1848n2
583.5n2
1098n2
7065
1421.5n2
2018n2
Qualcomm Snapdragon 400 8930ABARMv7Snapdragon1MB17002/228ARM4005Adreno 305
~31.27%
1907n3
7051n3
1117.5n4
Qualcomm Snapdragon S4 Plus APQ8060AARMv7Snapdragon1MB15002/228ARM4314Adreno 225
~3.92%
1473
Qualcomm Snapdragon S4 Plus MSM8960ARMv7Snapdragon1MB15002/228ARM4314Adreno 225
~31.27%
1626.5n4
5589
1045.5n6
Qualcomm Snapdragon S4 Plus MSM8260AARMv7Snapdragon1MB17002/228ARM4314Adreno 225
~42%
1525n3
Intel Atom Z2560CloverviewAtom1MB3933 ‑ 16002/432x864359SGX544MP2
~17.614%
1221n2
451n3
1056n3
9263n4
1100.5n4
3081
AMD Z-60HondoZ-Series1MB4.510002/240x86yes4057Radeon HD 6250
~8.827%
669
1249
0.2
0.37
75
1566
114
3574
348
11.24
1.95
1075
AMD Z-01DesnaZ-Series1MB5.910002/240x86yes4585UHD Graphics 750
Apple A61000232ARM4116UHD Graphics 750
~23.111%
1648
705.5n2
1273
24996
722n2
Intel Atom x3-C3130SoFIA 3GAtom512KB10002/228x86yes3215Mali-400 MP2
Samsung Exynos 4412 QuadCortex A9Exynos14004/432ARM4219UHD Graphics 750
~31.47%
1886.5n8
10466
1109
NVIDIA Tegra 3Kal-ElTegra1200 ‑ 13004/440ARM4424GeForce ULP (Tegra 3)
~16.914%
1455.5n20
354.5n2
1084n2
8638n3
1257n3
1741
Apple S52/2yes1562UHD Graphics 750
~77.82%
2022n2
Mediatek MT8127Cortex-A7Mediatek512KB15004/428ARM3489Mali-450 MP4
~16.514%
383.5n2
1274n2
448
1216
1713.5n2
2358n3
Mediatek MT6589TCortex-A7Mediatek2MB15004/428ARM3824SGX544
Mediatek MT8389Cortex-A7Mediatek1MB12004/428ARM3857SGX544
~16.314%
1301n3
325n2
1069n2
8323n3
1464n3
1355
Mediatek MT8125Cortex-A7Mediatek1MB12004/428ARM3857SGX544
~16.714%
1315.5n4
325.5n4
1110n4
8406n4
1341.5n4
1915
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
Spreadtrum SC9830ACortex-A7Spreadtrum15004/428ARM2910Mali-400 MP2
~4.37%
405
1280
2842
Samsung Exynos 3470 QuadCortex-A7Exynos14004/428ARM3459Mali-400 MP4
~17.214%
1207
369
1113
8008
1119
2019
Samsung Exynos 3475 QuadCortex-A7Exynos13004/428ARM3094UHD Graphics 750
~3.77%
350
1171
2323
Mediatek MT8321Cortex-A7Mediatek1MB13004/428ARM2728Mali-400 MP2
~2.211%
430n2
1116.5n2
1715n2
5.68
13
Mediatek MT8121Cortex-A7Mediatek1MB13004/428ARM3824SGX544
~16.614%
1298
351n2
1140.5n2
9761n2
1453n2
2085
Mediatek MT6582Cortex-A7Mediatek512KB13004/428ARM3732Mali-400 MP2
~16.414%
1416n2
353n14
1169.5n14
9807n7
1578.5n14
2105n14
Mediatek MT6582MCortex-A7Mediatek512KB13004/428ARM3640Mali-400 MP2
~16.714%
1424
350n3
1179n3
9264n3
1441.5n2
2172n3
Mediatek MT6580MCortex-A7Mediatek512KB13004/428ARM2910Mali-400 MP2
~2.816%
356n4
1170.5n4
426n6
1161.5n6
63
248
2138.5n10
Spreadtrum SC7731Cortex-A7Spreadtrum13004/428ARM3275Mali-400 MP2
~3.67%
351
1075
2300
Qualcomm Snapdragon 212 APQ8009Cortex-A7Snapdragon 20013004/428ARM3094Adreno 304
~3.211%
331
1075
423
1118
2152n3
Qualcomm Snapdragon 400 MSM8926ARMv7Snapdragon12004/428ARM3852Adreno 305
~16.214%
1378n2
340n6
1123n6
7511.5n4
1607.5n8
1838n6
Qualcomm Snapdragon 400 MSM8226ARMv7Snapdragon12004/428ARM4032Adreno 305
~16.814%
1279n4
341n9
1147n9
7300.5n8
1243n13
1449n12
Qualcomm Snapdragon 400 APQ8026ARMv7Snapdragon12004/428ARM3824Adreno 305
~1714%
1279
327
1075
6717
1137
1810
Mediatek MT6589Cortex-A7Mediatek12004/428ARM4025SGX544
~16.414%
1347n7
327n6
1097n6
8336n8
1451n9
1449n3
Qualcomm Snapdragon 200 MSM8212Cortex-A7Snapdragon 20012004/428ARM3824Adreno 302
~23.79%
329
1113
1331n4
1233n3
Qualcomm Snapdragon 210 MSM8909Cortex-A7Snapdragon 20011004/428ARM3094Adreno 304
~15.114%
302n3
1019n3
430.5n2
1117n2
2255n2
1949n7
Marvell PXA1088Cortex-A712004/440ARM3956UHD Graphics 750
~15.814%
1277
312n2
990n2
5776.5n2
1651n2
1091n2
Qualcomm Snapdragon Wear 3100ARM Cortex-A7 ‑ 12004/428ARM1927Adreno 304
~34.45%
2997n3
1730n3
Qualcomm Snapdragon Wear 2500ARM Cortex-A7 ‑ 12004/428ARM1927UHD Graphics 750
Qualcomm Snapdragon Wear 2100ARM Cortex-A7 ‑ 12004/428ARM1927UHD Graphics 750
~30.15%
3744
1374
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
Qualcomm Snapdragon S4 Plus MSM8930ARMv7Snapdragon1MB12002/228ARM4097Adreno 305
~20.111%
1276.5n2
432
788
3464
1189n2
Qualcomm Snapdragon S4 Plus MSM8230ARMv7Snapdragon1MB12002/228ARM4097Adreno 305
~18.611%
1082
454
457
4294n2
1811.5n2
Qualcomm 205Cortex-A7Snapdragon11002/228ARM2466Adreno 304
Intel Atom Z2480PenwellAtom512KB20001/232x864359SGX540
~2.62%
995
Intel Atom Z2460PenwellAtom512KB4?1300 ‑ 16001/232x864359SGX540
~2.22%
853
Qualcomm Snapdragon S4 Plus MSM8227ARMv7Snapdragon1MB10002/228ARM4314Adreno 305
~18.511%
963
349
619
3632
1669.5n2
Samsung Exynos 4212 1.5 GHzCortex A9Exynos1MB15002/232ARM4466UHD Graphics 750
~30.57%
1240.5n2
4814.5n2
1128n2
Texas Instruments OMAP 4470Cortex A915002/245ARM4493UHD Graphics 750
~3.62%
1381n2
HiSilicon k3v2 Hi362012004/440ARM4315UHD Graphics 750
~19.211%
1557n7
327
1094
8678n5
1610n5
Rockchip RK3066 1.5 GHz512KB15002/240ARM4280Mali-400 MP4
~27.37%
1007.5n16
5852
1959
Qualcomm Snapdragon S4 Play MSM8625QCortex-A5Snapdragon12004/445ARM4102Adreno 203
~36.95%
2697
2430
Qualcomm Snapdragon 200 8225QCortex-A5Snapdragon 20014004/445ARM4102Adreno 203
~27.67%
1010
6062
1876
Qualcomm Snapdragon S4 Play MSM8225QCortex-A5Snapdragon12004/445ARM4102Adreno 203
~37.45%
6341
2379
MediaTek MT8312Mediatek13002/228ARM3640Mali-400 MP
~16.114%
809
343
646
4457
1390
1477
Renesas MP5232Cortex-A915002/2ARM4334UHD Graphics 750
~18.711%
373
654
4557
1525
1547
Broadcom BCM21664TCortex-A912002/2ARM4036UHD Graphics 750
~19.211%
353
658
4230
1316
2121
Marvell PXA986Cortex-A912002/245ARM4145UHD Graphics 750
~15.914%
1034.5n2
379.5n2
646.5n2
3976n3
1624n3
1448
Amlogic AML8726-MX512KB15002/245ARM4080UHD Graphics 750
~2.72%
1020.5n2
Qualcomm Snapdragon S3 MSM8660ARMv7Snapdragon1MB17002/245ARM4314Adreno 220
Qualcomm Snapdragon S3 MSM8260ARMv7Snapdragon1MB15002/245ARM4314Adreno 220
~2.62%
994
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
Samsung Exynos 4210 1.4 GHzCortex A9Exynos1MB14002/245ARM4695UHD Graphics 750
Texas Instruments OMAP 4460Cortex A90.612002/245ARM4493UHD Graphics 750
~20.411%
1243.5n2
427
796
5787
1096
Rockchip RK316812002/228ARM4005SGX540
Samsung Exynos 4210 1.2 GHzCortex A9Exynos1MB12002/245ARM4695UHD Graphics 750
MediaTek MT8377Cortex-A9Mediatek1MB12002/240ARM4005SGX531
~2.62%
993
Broadcom BCM28155Cortex A912002/240ARM4371UHD Graphics 750
~1.82%
679n2
Texas Instruments OMAP 4430Cortex A90.610002/245ARM4677UHD Graphics 750
~1.12%
424
MediaTek MT6572Cortex-A7Mediatek1MB12002/228ARM3880Mali-400 MP
~15.314%
614
314n5
575n5
3679.5n2
1723n4
1587.5n2
Spreadtrum SC8830Cortex-A7Spreadtrum512KB12004/428ARM3275Mali-400 MP2
~22.49%
329n2
829n2
1863.5n2
2408
Apple A5xCortex A91000232ARM4306UHD Graphics 750
~1911%
759
262
496
11087
1307
Qualcomm Snapdragon S4 Play MSM8225Cortex-A5Snapdragon15002/245ARM4371Adreno 203
~267%
545.5n4
3040
2178
Intel Atom Z2420SaltwellAtom512KB12001/232x86yes3999SGX540
~1.52%
559.5n2
Apple A5Cortex A91000240ARM4676UHD Graphics 750
~22%
750n3
Nvidia Tegra 2 (250)T20 HarmonyTegra1MB110002/240ARM5101GeForce ULP (Tegra 2)
~2.32%
894n3
Qualcomm Snapdragon 200 8210Cortex-A7Snapdragon 20012002/228ARM3824Adreno 302
~19.211%
324.5n6
604n6
3466n5
1246n4
1746n3
MediaTek MT8317TCortex-A9Mediatek12002/2ARM4005SGX531
~29.47%
869n2
4319
1347
MediaTek MT6577Cortex-A9Mediatek10002/2ARM4193SGX531
~15.914%
868.5n8
314
575
3671n3
1497n3
1993
Samsung Exynos W920ARM Cortex-A5511802/25ARMyes827Mali-G68 MP2
~24.27%
2804n3
2023n3
7.66
Samsung Exynos 9110ARM Cortex-A5311502/210ARMyes1491Mali-T720
~35.75%
2782n2
2076n2
ST-Ericsson NovaThor U8500ARMv710002/245ARM4585UHD Graphics 750
~22%
758n3
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
ST-Ericsson NovaThor U8420ARMv710002/245ARM4585UHD Graphics 750
MediaTek MT6575Cortex-A9Mediatek10001/140ARM4323SGX531
~1.52%
582
NXP i.MX 6SLLCortex-A9256KB10001/140ARM4736UHD Graphics 750
~25.82%
6771
Qualcomm Snapdragon S2 MSM8255ScorpionSnapdragon15001/145ARM4981Adreno 205
~1.72%
660
Rockchip RK2918 1.2 GHz12001/155ARM4736GC800
AllWinner A10Cortex A812001/155ARM5101UHD Graphics 750
~0.92%
339
ARM Cortex A8 1.2 GHz12001/1ARM6197UHD Graphics 750
Apple A4S5L893010001/140ARM4950UHD Graphics 750
~1.22%
470
AllWinner A13Cortex A810001/155ARM5101UHD Graphics 750
~0.82%
316
WonderMedia PRIZM WM8950Cortex-A910001/1ARM4367Mali-400 MP
Samsung Hummingbird S5PC110 / Exynos 3110Cortex A810001/145ARM5291UHD Graphics 750
~1.97%
290
239
228
Qualcomm Snapdragon S1 MSM7227ACortex A5Snapdragon256KB10001/145ARM4463Adreno 200
~21.17%
442n5
1262
3459
Qualcomm Snapdragon S1 MSM7225ACortex A5Snapdragon256KB10001/145ARM4371Adreno 200
~12%
373
Texas Instruments OMAP 3630 1GHzARM Cortex A810001/145ARM5101UHD Graphics 750
Texas Instruments OMAP 3622Cortex A810001/145ARM5101UHD Graphics 750
Rockchip RK2918Cortex-A810001/155ARM4736GC800
Telechips TCC8803 1GHz10001/165ARM4736UHD Graphics 750
ZiiLABS ZMS-08Cortex A810001/1ARM5154UHD Graphics 750
ARM Cortex A8 1GHzARM10001/1ARM5832UHD Graphics 750
Actions ACT-ATM7029Cortex-A510004/4ARM4036UHD Graphics 750
~1.22%
474
PosModelCodenameSeriesL2 Cache + L3 CacheFSB / QPITDP WattMHz - TurboCores / Threads -
 
-
 
-
 
-
 
Graphics CardPerf. Rating3DMark06 CPUCinebench R10 32Bit SingleCinebench R10 32Bit MultiCinebench R11.5 CPU Single 64BitCinebench R11.5 64BitCinebench R15 CPU Single 64BitCinebench R15 CPU Multi 64BitCinebench R20 SingleCinebench R20Cinebench R23 Single CoreCinebench R23 Multi CoreSuperPI 1M*SuperPI 32M*wPrime 32wPrime 1024WinRAR 4.0x264 Pass 1x264 Pass 2x265TrueCrypt AESTrueCrypt TwofishTrueCrypt SerpentBlender(-)Blender v3.3 Classroom CPU(-)7-Zip Single7-ZipGeekbench 2Geekbench 3 32 Bit Single-Core ScoreGeekbench 3 32 Bit Multi-Core ScoreGeekbench 4.4 64 Bit Single-Core ScoreGeekbench 4.4 64 Bit Multi-Core ScoreGeekbench 5.0 5.0 Single-CoreGeekbench 5.0 5.0 Multi-CoreGeekbench 5.5 Single-CoreGeekbench 5.5 Multi-CoreGeekbench 6.2 Single-CoreGeekbench 6.2 Multi-CorePassMark PerformanceTest Mobile V1 CPU TestsSunspider 1.0 Total Score(-)Octane V2 Total ScoreJetstream 2SpeedometerWebXPRT 3WebXPRT 4 Overall
Qualcomm Snapdragon S1 QSD8250ARMv7Snapdragon10001/165ARM5588Adreno 200
Loongson 2F 900MHz512KB49001/1MIPSyes5832UHD Graphics 750
Qualcomm Snapdragon S1 MSM7227ARM1136EJ-SSnapdragon6001/165ARM5435Adreno 200
~0.25%
120
462
CSR86708023275UHD Graphics 750
Huawei Kirin A1ARM Cortex-M72001/1ARM1553UHD Graphics 750
ARM Cortex-M419711UHD Graphics 750
Dialog DA14697Cortex M33F, Cortex M0+96ARM1640UHD Graphics 750
HiSilicon Hi626219711UHD Graphics 750
ST STM32L4R9ARM Cortex-M4801/190ARM2971UHD Graphics 750
Cypress PSoC6 MCUCortex-M4 / M0+1502/2ARM1224UHD Graphics 750
ST32Cortex-M3ARM5729UHD Graphics 750
Ambiq Apollo 3.5Cortex-M4F1/140ARM1814UHD Graphics 750
Ambiq Apollo 3Cortex-M4F961/140ARM2026UHD Graphics 750
NXP MK26FN2M0CAC18RARM Cortex-M01801/119711UHD Graphics 750
DK3.5+ST21181UHD Graphics 750
Intel Pentium Gold 7505Tiger Lake-UTiger Lake2.5MB + 4MB152000 ‑ 35002/410x86yes1159UHD Graphics Xe G4 48EUs
~25.686%
4890
6773
14093
1.93
4.48
165n2
400n2
429n2
1017n2
1112.5n2
2600n2
9.79
522.83
14.48
454.1
2522
131.1
24.9
3.43n2
2.4
0.34
0.2
1150n2
2129.5n2
4062n2
10755.5n2
4998.5n2
9426n2
1157.5n2
2305n2
1129n3
2326n3
152.9
49676
143.03
151
184.4n2
142.8n2
Archived (old): AMD Ryzen Threadripper 2970WX (ZEN), AMD Ryzen Threadripper 2950X (ZEN+), AMD Ryzen Threadripper 2920X (ZEN+), Intel Core i9-7900X (Skylake-X), Intel Core i9-10880H (Comet Lake-H), Intel Core i7-6950X (Broadwell-E), Intel Xeon E5-2680 v4 (Broadwell-EP), Intel Xeon E5-2697 v2 (Ivy Bridge-EP), Intel Core i7-7740X (Kaby Lake-X), Intel Core i7-7700K (Kaby Lake), Intel Core i7-5960X (Haswell-E), Intel Core i7-4960X (Ivy Bridge-E), Intel Core i7-7700 (Kaby Lake), Intel Core i7-6700K (Skylake), Intel Xeon E5-2680 (Sandy Bridge-EP), Intel Core i7-3960X (Sandy Bridge-E), Intel Core i7-4790K (Haswell), Intel Xeon E3-1280 v5 (Skylake), Intel Core i7-6700 (Skylake), Intel Xeon E3-1535M v6 (Kaby Lake), Intel Core i7-7920HQ (Kaby Lake), Intel Core i7-4790 (Haswell), Intel Core i7-7700T (Kaby Lake), Intel Core i5-7600K (Kaby Lake), Intel Core i7-5775C (Broadwell), Intel Core i7-4770K (Haswell), Intel Core i7-4790S (Haswell), Intel Xeon E3-1505M v6 (Kaby Lake), Intel Xeon E3-1575M v5 (Skylake), Intel Core i7-4940MX (Haswell), Intel Core i7-7820HQ (Kaby Lake), Intel Core i7-7820HK (Kaby Lake), Intel Core i7-6920HQ (Skylake), Intel Core i7-990X EE (Gulftown), Intel Core i7-980X EE (Gulftown), Intel Xeon E3-1545M v5 (Skylake), Intel Core i7-5950HQ (Broadwell), Intel Core i7-4930MX (Haswell), Intel Xeon E3-1535M v5 (Skylake), Intel Core i7-6970HQ (Skylake), Intel Core i7-7700HQ (Kaby Lake), Intel Core i5-7500 (Kaby Lake), Intel Xeon E3-1515M v5 (Skylake), Intel Xeon E3-1505M v5 (Skylake), Intel Core i7-6870HQ (Skylake), Intel Core i7-4980HQ (Haswell), Intel Core i7-4910MQ (Haswell), Intel Xeon E3-1231 v3 (Haswell), Intel Xeon E3-1230 v3 (Haswell), Intel Core i7-5850HQ (Broadwell), Intel Core i5-6600K (Skylake), Intel Core i7-3770K (Ivy Bridge), Intel Core i7-3940XM (Ivy Bridge), Intel Core i7-4790T (Haswell), Intel Core i7-5700HQ (Broadwell), Intel Core i7-5750HQ (Broadwell), Intel Core i7-6820HK (Skylake), Intel Core i7-6820HQ (Skylake), Intel Core i7-6770HQ (Skylake), Intel Core i7-6700T (Skylake), Intel Core i7-4900MQ (Haswell), Intel Core i7-4960HQ (Haswell), Intel Core i7-6700HQ (Skylake), Intel Core i7-4810MQ (Haswell), Intel Core i7-4870HQ (Haswell), Intel Core i7-3920XM (Ivy Bridge), Intel Core i7-4800MQ (Haswell), Intel Core i7-4950HQ (Haswell), Intel Core i7-2700K (Sandy Bridge), Intel Core i7-4860HQ (Haswell), Intel Core i7-4720HQ (Haswell), Intel Core i7-3840QM (Ivy Bridge), Intel Core i7-4850HQ (Haswell), Intel Core i7-4710HQ (Haswell), Intel Core i7-4710MQ (Haswell), Intel Core i7-4770HQ (Haswell), Intel Core i7-3820QM (Ivy Bridge), Intel Core i7-2600K (Sandy Bridge), Intel Core i5-7440HQ (Kaby Lake), Intel Core i7-3740QM (Ivy Bridge), Intel Xeon X5670 (Westmere-EP), Intel Core i7-3720QM (Ivy Bridge), Intel Core i7-4700HQ (Haswell), Intel Core i7-4700MQ (Haswell), Intel Core i7-4760HQ (Haswell), Intel Core i7-4722HQ (Haswell), Intel Xeon E3-1226 v3 (Haswell), Intel Core i5-4590 (Haswell), Intel Core i7-2960XM (Sandy Bridge), Intel Core i5-3570K (Ivy Bridge), Intel Core i5-6500 (Skylake), Intel Core i7-7567U (Kaby Lake), Intel Core i7-7660U (Kaby Lake), Intel Core i7-7600U (Kaby Lake), Intel Core i7-4712HQ (Haswell), Intel Core i7-4712MQ (Haswell), Intel Core i7-4750HQ (Haswell), Intel Core i7-3635QM (Ivy Bridge), Intel Core i7-3630QM (Ivy Bridge), Intel Core i5-3550 (Ivy Bridge), Intel Core i7-4702HQ (Haswell), Intel Core i7-4702MQ (Haswell), Intel Core i7-2860QM (Sandy Bridge), Intel Core i7-2920XM (Sandy Bridge), Intel Core i5-3470 (Ivy Bridge), Intel Core i7-3615QM (Ivy Bridge), Intel Core i7-3610QM (Ivy Bridge), AMD FX-8350 (Vishera), Intel Core i7-975 (Bloomfield), Intel Core i5-2500K (Sandy Bridge), Intel Core i5-6600T (Skylake), Intel Core i5-7300HQ (Kaby Lake), Intel Core i5-6440HQ (Skylake), Intel Core i5-4460 (Haswell), Intel Core i7-3632QM (Ivy Bridge), Intel Core i5-6350HQ (Skylake), Intel Core i5-6300HQ (Skylake), Intel Core i5-7500T (Kaby Lake), Intel Core i5-4430 (Haswell), Intel Core i7-2760QM (Sandy Bridge), Intel Core i5-7287U (Kaby Lake), Intel Core i7-7560U (Kaby Lake), Intel Core i5-6400 (Skylake), Intel Core i5-6500T (Skylake), Intel Core i5-2400 (Sandy Bridge), Intel Core i7-960 (Bloomfield), Intel Core i7-950 (Bloomfield), Intel Core i7-2820QM (Sandy Bridge), Intel Core i7-3612QM (Ivy Bridge), Intel Core i7-2720QM (Sandy Bridge), Intel Core i7-2675QM (Sandy Bridge), Intel Core i7-2670QM (Sandy Bridge), Intel Core i5-6400T (Skylake), Intel Core i5-7267U (Kaby Lake), Intel Core i7-6567U (Skylake), Intel Core i5-7360U (Kaby Lake), Intel Core i7-7500U (Kaby Lake), Intel Core i5-5350H (Broadwell), Intel Core i5-7300U (Kaby Lake), Intel Core i5-7260U (Kaby Lake), Intel Core i7-940 (Bloomfield), Intel Core i7-920 (Bloomfield), Intel Core i7-2635QM (Sandy Bridge), Intel Core i7-2630QM (Sandy Bridge), Intel Core i5-750 (Lynnfield), Intel Core i5-6287U (Skylake), Intel Core i7-5557U (Broadwell), Intel Core i7-4610M (Haswell), Intel Core i7-940XM (Clarksfield), Intel Core i5-6267U (Skylake), Intel Core i5-5287U (Broadwell), Intel Core i7-4600M (Haswell), Intel Core i5-4340M (Haswell), Intel Core i7-4578U (Haswell), Intel Core i5-4210H (Haswell), Intel Core 2 Extreme (Desktop) QX6850 (Kentsfield), Intel Core i7-920XM (Clarksfield), Intel Core i5-4330M (Haswell), Intel Core i7-3540M (Ivy Bridge), Intel Core i5-4200H (Haswell), Intel Core i7-4558U (Haswell), Intel Core i5-5257U (Broadwell), Intel Core i5-4308U (Haswell), AMD A10-6800K (Richland), Intel Core 2 Quad (Desktop) Q9550 (Penryn), Intel Core i5-4310M (Haswell), AMD A10-7850K (Kaveri), Intel Core i7-6600U (Skylake), Intel Core i7-6650U (Skylake), Intel Core i7-6560U (Skylake), Intel Core i5-7200U (Kaby Lake), Intel Core i5-4400E (Haswell), Intel Core i5-4300M (Haswell), Intel Core i3-7100H (Kaby Lake), Intel Core i7-3520M (Ivy Bridge), Intel Core i7-6500U (Skylake), Intel Core i7-5600U (Broadwell), Intel Core i7-5650U (Broadwell), Intel Core i5-6360U (Skylake), Intel Core i5-4210M (Haswell), Intel Core i5-6300U (Skylake), Intel Core i5-4288U (Haswell), Intel Core i5-4278U (Haswell), Intel Core i5-3380M (Ivy Bridge), Intel Core i5-3360M (Ivy Bridge), AMD A10-7700K (Kaveri), AMD A8-7650K (Kaveri), Intel Core i3-3220 (Ivy Bridge), Intel Core i5-4200M (Haswell), Intel Core i5-3340M (Ivy Bridge), Intel Core i7-2640M (Sandy Bridge), Intel Core i7-5500U (Broadwell), Intel Core i7-5550U (Broadwell), Intel Core i5-6260U (Skylake), Intel Core i5-3320M (Ivy Bridge), Intel Core i5-4258U (Haswell), AMD A8-6600K (Richland), AMD A10-5800K (Trinity), Intel Core i7-840QM (Clarksfield), Intel Core i5-3230M (Ivy Bridge), AMD A8-5600K (Trinity), Intel Core i7-2620M (Sandy Bridge), Intel Core i7-4600U (Haswell), Intel Core i7-4650U (Haswell), Intel Core i3-7167U (Kaby Lake), Intel Core i5-6198DU (Skylake), Intel Core i5-6200U (Skylake), Intel Core i3-7130U (Kaby Lake-U), Intel Core i3-6167U (Skylake), Intel Core i3-6100H (Skylake), Intel Core i5-5300U (Broadwell), Intel Core i7-3687U (Ivy Bridge), Intel Core i5-5350U (Broadwell), AMD A8-3850 (Llano), Intel Core i7-4510U (Haswell), Intel Core i5-3210M (Ivy Bridge), Intel Core i7-640M (Arrandale), Intel Core i7-820QM (Clarksfield), Intel Core 2 Extreme QX9300 (Penryn), Intel Core 2 Extreme (Desktop) QX6700 (Kentsfield), Intel Core i5-2540M (Sandy Bridge), Intel Core i7-3667U (Ivy Bridge), Intel Core i7-4500U (Haswell), Intel Core i7-4550U (Haswell), Intel Core i7-7Y75 (Kaby Lake), Intel Core i7-740QM (Clarksfield), Intel Core i5-4310U (Haswell), Intel Core i5-4360U (Haswell), AMD FX-9830P (Bristol Ridge), Intel Core i7-3537U (Ivy Bridge), Intel Pentium G4500T (Skylake), Intel Core i5-5200U (Broadwell), Intel Core i5-5250U (Broadwell), Intel Core i5-4300U (Haswell), Intel Core i5-4350U (Haswell), AMD PRO A12-9830B (Bristol Ridge), Intel Core i5-2520M (Sandy Bridge), Intel Core i3-5157U (Broadwell), Intel Core i5-7Y57 (Kaby Lake), Intel Core i5-7Y54 (Kaby Lake), Intel Core i3-6157U (Skylake), Intel Core i3-7100U (Kaby Lake), Intel Core i3-6100U (Skylake), Intel Core i3-4110M (Haswell), AMD FX-9800P (Bristol Ridge), AMD PRO A12-9800B (Bristol Ridge), Intel Core i5-2450M (Sandy Bridge), Intel Core i7-3517U (Ivy Bridge), AMD Phenom II X4 905e (Daneb), Intel Core i7-620M (Arrandale), Intel Core i3-4100M (Haswell), Intel Core i5-580M (Arrandale), Intel Core i5-2435M (Sandy Bridge), Intel Core i5-2430M (Sandy Bridge), Intel Core i3-4000M (Haswell), Intel Core i3-4100E (Haswell), Intel Core i3-3130M (Ivy Bridge), Intel Core i5-2415M (Sandy Bridge), Intel Core i5-2410M (Sandy Bridge), Intel Core m3-7Y30 (Kaby Lake), Intel Core i5-3437U (Ivy Bridge), Intel Core i5-560M (Arrandale), Intel Core i7-720QM (Clarksfield), AMD A12-9720P (Bristol Ridge), AMD A12-9700P (Bristol Ridge), AMD FX-8800P (Carrizo), AMD Pro A12-8800B (Carrizo), Intel Core i5-4210U (Haswell), Intel Core i5-4260U (Haswell), Intel Core i3-3120M (Ivy Bridge), Intel Core i5-3427U (Ivy Bridge), Intel Core i5-4402E (Haswell), Intel Core m7-6Y75 (Skylake), Intel Pentium G860 (Sandy Bridge), Intel Core 2 Extreme X9100 (Penryn), Intel Core i5-4200U (Haswell), Intel Core i5-4250U (Haswell), Intel Core i3-5020U (Broadwell), Intel Core i3-7020U (Kaby Lake), Intel Core i5-3337U (Ivy Bridge), AMD A10-9600P (Bristol Ridge), AMD PRO A8-9600B (Bristol Ridge), Intel Core i3-3110M (Ivy Bridge), Intel Core 2 Duo T9900 (Penryn), Intel Core 2 Duo T9800 (Penryn), AMD FX-7600P (Kaveri), Intel Pentium 4405U (Skylake), Intel Core i5-480M (Arrandale), Intel Core i7-2649M (Sandy Bridge), Intel Core i5-540M (Arrandale), Intel Core i5-460M (Arrandale), Intel Core i3-5010U (Broadwell), Intel Core i3-5015U (Broadwell), Intel Core i3-6006U (Skylake), Intel Core i3-2370M (Sandy Bridge), Intel Core i3-390M (Arrandale), Intel Core i3-5005U (Broadwell), Intel Core i3-2350M (Sandy Bridge), Intel Core i3-2348M (Sandy Bridge), Intel Core 2 Duo P9700 (Penryn), Intel Core m5-6Y57 (Skylake), Intel Core m5-6Y54 (Skylake), AMD A10-8700P (Carrizo), AMD Pro A10-8700B (Carrizo), Intel Core 2 Duo T9600 (Penryn), Intel Core 2 Extreme X9000 (Penryn), Intel Core 2 Duo (Desktop) E6850 (Conroe), Intel Core i7-4610Y (Haswell), Intel Core i5-520M (Arrandale), Intel Core 2 Extreme (Desktop) X6800 (Conroe), Intel Core i7-2629M (Sandy Bridge), Intel Core i5-450M (Arrandale), Intel Core i3-380M (Arrandale), Intel Core i7-2677M (Sandy Bridge), AMD A10-7400P (Kaveri), Intel Pentium 3560M (Haswell), Intel Core i3-2330M (Sandy Bridge), Intel Core i3-2328M (Sandy Bridge), Intel Pentium 2030M (Ivy Bridge), Intel Pentium 3550M (Haswell), Intel Core i7-660LM (Arrandale), Intel Core 2 Extreme X7900 (Merom), Intel Core 2 Quad (Desktop) Q6600 (Kentsfield), Intel Core 2 Quad Q9100 (Penryn), Intel Core i5-3317U (Ivy Bridge), AMD A8-8600P (Carrizo), AMD Pro A8-8600B (Carrizo), AMD A8-7200P (Kaveri), Intel Core 2 Duo P9600 (Penryn), Intel Core 2 Duo T9550 (Penryn), Intel Core 2 Duo T9500 (Penryn), Intel Core i5-430M (Arrandale), AMD A10-5750M (Richland), AMD A10-5757M (Richland), Intel Core i7-2637M (Sandy Bridge), Intel Core M-5Y71 (Broadwell), AMD Phenom II X2 X640 BE (Champlain), AMD Phenom II X4 X940 BE (Champlain), Intel Core i7-2657M (Sandy Bridge), Intel Core i7-3689Y (Ivy Bridge), Intel Pentium 2020M (Ivy Bridge), AMD Phenom II X2 X620 BE (Champlain), Intel Core i3-4158U (Haswell), Intel Pentium 3825U (Broadwell), Intel Core i3-4120U (Haswell), Intel Core i3-370M (Arrandale), Intel Celeron 2970M (Haswell), Intel Core i5-4300Y (Haswell), Intel Core i5-4302Y (Haswell), Intel Pentium B980 (Sandy Bridge), Intel Core i3-4030U (Haswell), Intel Core i3-4025U (Haswell), AMD A10-4600M (Trinity), AMD A10-4657M (Trinity), Intel Core i3-2312M (Sandy Bridge), Intel Core i3-2310M (Sandy Bridge), Intel Core i3-2308M (Sandy Bridge), Intel Core i5-2557M (Sandy Bridge), AMD A10-5745M (Richland), AMD A8-5550M (Richland), AMD A8-5557M (Richland), Intel Core m3-6Y30 (Skylake), Intel Core M-5Y51 (Broadwell), Intel Core M-5Y70 (Broadwell), AMD FX-7500 (Kaveri), AMD A10 Pro-7350B (Kaveri), Intel Celeron 1020E (Ivy Bridge), Intel Core M-5Y31 (Broadwell), Intel Core M-5Y10c (Broadwell), Intel Core M-5Y10a (Broadwell), AMD Phenom II X4 X920 BE (Champlain), Intel Core M-5Y10 (Broadwell), Intel Core 2 Quad Q9000 (Penryn), Intel Core i7-2617M (Sandy Bridge), Intel Core i5-3439Y (Ivy Bridge), AMD A9-9425 (Stoney Ridge), AMD A9-9420 (Stoney Ridge), Intel Core i5-4202Y (Haswell), Intel Core i5-4220Y (Haswell), Intel Core i7-640LM (Arrandale), Intel Core i7-620LM (Arrandale), Intel Core i3-4100U (Haswell), Intel Core i3-3227U (Ivy Bridge), AMD A6-6400K (Richland), AMD A9-9410 (Stoney Ridge), Intel Core i5-4210Y (Haswell), Intel Core i5-2467M (Sandy Bridge), Intel Core i5-3339Y (Ivy Bridge), Intel Core i3-4010U (Haswell), Intel Core i3-4005U (Haswell), Intel Core i3-3217U (Ivy Bridge), AMD A10-7300 (Kaveri), AMD A8 Pro-7150B (Kaveri), Intel Pentium 4405Y (Skylake), AMD Phenom II X4 N970 (Champlain), Intel Core 2 Duo (Desktop) E6700 (Conroe), Intel Core 2 Duo SP9600 (Penryn), Intel Core 2 Duo P9500 (Penryn), Intel Core 2 Duo T9400 (Penryn), Intel Core i5-4200Y (Haswell), Intel Pentium B970 (Sandy Bridge), Intel Celeron 3765U (Broadwell), Intel Pentium N4200 (Apollo Lake), Intel Celeron 2950M (Haswell), AMD A8-7410 (Carrizo-L), AMD A8-7100 (Kaveri), Intel Core i3-4102E (Haswell), Intel Core i3-4030Y (Haswell), AMD A8-3550MX (Llano), Intel Core 2 Duo P8800 (Penryn), AMD A4-5300 (Trinity), Intel Core 2 Duo T9300 (Penryn), AMD Phenom II X2 N660 (Champlain), Intel Celeron 1020M (Ivy Bridge), Intel Core i3-350M (Arrandale), Intel Pentium B960 (Sandy Bridge), Intel Pentium 3805U (Broadwell), AMD Phenom II X2 N640 (Champlain), Intel Core 2 Extreme X7800 (Merom XE), Intel Core 2 Duo T7800 (Merom), Intel Core 2 Duo P8700 (Penryn), Intel Core i3-4020Y (Haswell), Intel Core i3-4012Y (Haswell), Intel Core 2 Duo SP9400 (Penryn), Intel Core 2 Duo (Desktop) E6600 (Conroe), AMD A8-6410 (Beema), AMD A6-7310 (Carrizo-L), AMD A6-6310 (Beema), Intel Celeron 3755U (Broadwell), Intel Celeron 3215U (Broadwell), Intel Core i3-330M (Arrandale), Intel Core i7-680UM (Arrandale), AMD Phenom II X2 P650 (Champlain), AMD Phenom II X2 N620 (Champlain), Intel Pentium B950 (Sandy Bridge), AMD Athlon 64 (Desktop) FX-62 (Windsor), Intel Core 2 Duo P8600 (Penryn), AMD Phenom II X3 N870 (Champlain), AMD A8-3530MX (Llano), Intel Core 2 Duo T8300 (Penryn), Intel Core i5-2537M (Sandy Bridge), Intel Pentium P6300 (Arrandale), Intel Core 2 Duo T7700 (Merom), AMD Phenom II X4 N950 (Champlain), AMD Phenom II X4 N930 (Champlain), AMD Phenom II X3 N850 (Champlain), AMD A8-3510MX (Llano), Intel Pentium 2127U (Ivy Bridge), Intel Pentium B940 (Sandy Bridge), Intel Celeron 1005M (Ivy Bridge), AMD A4-7210 (Carrizo-L), AMD A6-3430MX (Llano), Intel Pentium 3558U (Haswell), AMD A6-9225 (Stoney Ridge), AMD A6-9220 (Stoney Ridge), Intel Pentium 3556U (Haswell), Intel Pentium 2117U (Ivy Bridge), Intel Celeron 1000M (Ivy Bridge), Intel Celeron 1037U (Ivy Bridge), Intel Celeron 2981U (Haswell), Intel Celeron 2980U (Haswell), AMD Phenom II X3 N830 (Champlain), Intel Core 2 Duo SP9300 (Penryn), Intel Core i7-660UM (Arrandale), AMD A8-3520M (Llano), AMD A6-9210 (Stoney Ridge), AMD A10-4655M (Trinity), AMD A8-4500M (Trinity), AMD A8-4557M (Trinity), Intel Core 2 Duo P8400 (Penryn), AMD Phenom II X4 P960 (Champlain), AMD A6-3410MX (Llano), AMD A8-3500M (Llano), AMD A6-3420M (Llano), Intel Core 2 Duo P7570 (Penryn), Intel Core 2 Duo P7550 (Penryn), Intel Core 2 Duo T7600 (Merom), Intel Pentium P6200 (Arrandale), Intel Core 2 Duo T6770 (Penryn), AMD A8-5545M (Richland), AMD A6-3400M (Llano), AMD Phenom II X3 P860 (Champlain), AMD Phenom II X4 P940 (Champlain), AMD Turion II N570 (Champlain), AMD Turion II Ultra M660 (Caspian), Intel Core i5-560UM (Arrandale), Intel Core i7-640UM (Arrandale), Intel Pentium Dual Core T4500 (Penryn), Intel Core 2 Duo T7500 (Merom), AMD Athlon 64 X2 (Desktop) FX-60 (Toledo), Intel Core 2 Duo SL9600 (Penryn), Intel Core 2 Duo P7450 (Penryn), AMD Phenom II X3 P840 (Champlain), AMD Phenom II X4 P920 (Champlain), AMD Turion II N550 (Champlain), AMD Turion II Ultra M640 (Caspian), Intel Core 2 Duo T7400 (Merom), Intel Core 2 Duo T6670 (Penryn), Intel Core 2 Duo T6600 (Penryn), AMD Turion II P560 (Champlain), AMD Turion II N530 (Champlain), Intel Core 2 Duo T8100 (Penryn), AMD Phenom II X3 P820 (Champlain), AMD A8-4555M (Trinity), Intel Core 2 Duo T5900 (Merom), AMD Turion II Ultra M620 (Caspian), Intel Core 2 Duo P7370 (Penryn), Intel Core Duo T2700 (Yonah), Intel Pentium Dual Core T4400 (Penryn), Intel Celeron B840 (Sandy Bridge), Intel Pentium P6100 (Arrandale), Intel Celeron M P4600 (Arrandale), AMD A6-5350M (Richland), AMD A6-5357M (Richland), Intel Celeron N4000 (Gemini Lake), Intel Pentium N3540 (Bay Trail-M), Intel Celeron J3455 (Apollo Lake), AMD A6-5200 (Kabini), Intel Celeron N3450 (Apollo Lake), Intel Pentium N3710 (Braswell), Intel Atom x7-Z8750 (Cherry Trail), AMD Turion II M560 (Caspian), AMD Athlon II N370 (Champlain), AMD Athlon 64 X2 (Desktop) 4800+ (Windsor), Intel Pentium P6000 (Arrandale), Intel Celeron B830 (Sandy Bridge), Intel Celeron M P4500 (Arrandale), Intel Core 2 Duo P7350 (Penryn), Intel Core 2 Duo T7300 (Merom), Intel Core 2 Duo T6570 (Penryn), Intel Core 2 Duo T6500 (Penryn), Intel Core 2 Duo T5850 (Merom), AMD A4-3330MX (Llano), AMD A4-5150M (Richland), AMD A6-4400M (Trinity), Intel Pentium J2900 (Bay Trail-D), AMD A4-4300M (Trinity), Intel Pentium N3530 (Bay Trail-M), Intel Celeron 1017U (Ivy Bridge), Intel Celeron 3205U (Broadwell), Intel Celeron B820 (Sandy Bridge), Intel Pentium N3700 (Braswell), AMD Turion II P540 (Champlain), AMD Turion II Ultra M600 (Caspian), Intel Pentium J2850 (Bay Trail-D), Intel Pentium N3520 (Bay Trail-M), Intel Celeron J1900 (Bay Trail-D), Intel Atom x7-Z8700 (Cherry Trail), Intel Core i3-4010Y (Haswell), AMD E2-9010 (Stoney Ridge), AMD E2-7110 (Carrizo-L), AMD A4-6210 (Beema), AMD A6-8500P (Carrizo), AMD Pro A6-8500B (Carrizo), Intel Atom x5-Z8550 (Cherry Trail), Intel Atom Z3795 (Bay Trail-T), Intel Atom Z3785 (Bay Trail-T), Intel Atom Z3775 (Bay Trail-T), Intel Atom Z3775D (Bay Trail-T), Intel Atom Z3770 (Bay Trail-T), Intel Atom Z3770D (Bay Trail-T), Intel Atom x7-E3950 (Apollo Lake), Intel Atom x5-Z8500 (Cherry Trail), Intel Celeron N2940 (Bay Trail-M), Intel Celeron N3160 (Braswell), Intel Celeron 2957U (Haswell), Intel Celeron 2955U (Haswell), Intel Celeron J3355 (Apollo Lake), Intel Celeron N3350 (Apollo Lake), Intel Celeron 1007U (Ivy Bridge), Intel Celeron N3150 (Braswell), Intel Celeron N2930 (Bay Trail-M), Intel Pentium Dual Core T4300 (Penryn), Intel Celeron J1850 (Bay Trail-D), Intel Pentium N3510 (Bay Trail-M), Intel Celeron Dual-Core T3500 (Penryn), Intel Celeron B815 (Sandy Bridge), Intel Celeron B810 (Sandy Bridge), AMD Athlon II N350 (Champlain), AMD Turion II M540 (Caspian), AMD Turion II P520 (Champlain), Intel Celeron N2920 (Bay Trail-M), Intel Core Duo T2600 (Yonah), Intel Core 2 Duo SL9400 (Penryn), Intel Core 2 Duo SL9380 (Penryn), Intel Pentium Dual Core T3400 (Merom), Intel Core 2 Duo T6400 (Penryn), Intel Core 2 Duo T5870 (Merom), Intel Core i3-3229Y (Ivy Bridge-Y), AMD Turion X2 Ultra ZM-86 (Griffin), Intel Core 2 Duo T7200 (Merom), Intel Core 2 Duo T5800 (Merom), Intel Core 2 Duo T7250 (Merom), AMD Athlon II N330 (Champlain), AMD Athlon II P360 (Champlain), AMD Turion II M520 (Caspian), AMD Athlon II M360 (Caspian), Intel Core 2 Duo T5750 (Merom), Intel Pentium Dual Core T4200 (Penryn), Intel Celeron Dual-Core T3300 (Penryn), Intel Core i7-620UM (Arrandale), Intel Core i3-2377M (Sandy Bridge), Intel Core i3-2375M (Sandy Bridge), AMD Turion II M500 (Caspian), AMD Athlon II P340 (Champlain), AMD Athlon II M340 (Caspian), Intel Core i3-2367M (Sandy Bridge), Intel Core i3-2365M (Sandy Bridge), AMD A4-5100 (Kabini), AMD A4-5050 (Kabini), Intel Core i5-470UM (Arrandale), AMD A4-5000 (Kabini), AMD E2-6110 (Beema), Intel Atom E3845 (Bay Trail), AMD Athlon 64 X2 (Desktop) 4600+ (Windsor), Intel Core 2 Duo L7700 (Merom), Intel Core 2 Duo SP7700 (Merom), Intel Celeron Dual-Core T3100 (Penryn), AMD A10 Micro-6700T (Mullins), AMD A4-3310MX (Llano), AMD A4-3320M (Llano), Intel Atom Z3580 (Moorefield), Intel Atom Z3736F (Bay Trail-T), Intel Atom Z3736G (Bay Trail-T), Intel Atom x5-Z8350 (Cherry Trail), Intel Atom x5-Z8300 (Cherry Trail), AMD Turion X2 Ultra ZM-85 (Puma), AMD Turion X2 Ultra ZM-84 (Puma), Intel Pentium Dual Core T3200 (Merom), Intel Pentium Dual Core T2410 (Merom), Intel Pentium 997 (Sandy Bridge), Intel Atom Z3745 (Bay Trail-T), Intel Atom Z3745D (Bay Trail-T), Intel Atom Z3740 (Bay Trail-T), Intel Atom Z3740D (Bay Trail-T), Intel Atom Z3735D (Bay Trail-T), AMD Athlon II P320 (Champlain), Intel Celeron 1047UE (Ivy Bridge), AMD E2-3800 (Kabini), AMD E2-3000M (Llano), AMD Athlon II M320 (Caspian), Intel Pentium 987 (Sandy Bridge), Intel Celeron 887 (Sandy Bridge), Intel Celeron B800 (Sandy Bridge), Intel Core i3-2357M (Sandy Bridge), AMD A4-3300M (Llano), Intel Core 2 Duo T7100 (Merom), AMD A4-3305M (Llano), Intel Core 2 Duo T5670 (Merom-2M), AMD Turion 64 X2 TL-68 (Tyler), AMD Turion X2 Ultra ZM-82 (Puma), AMD Athlon 64 X2 (Desktop) 4400+ (Windsor), AMD Turion X2 RM-77 (Griffin), AMD Turion X2 RM-76 (Griffin), AMD A6 Pro-7050B (Kaveri), AMD E2-9000 (Stoney Ridge), AMD A6-7000 (Kaveri), AMD Turion 64 X2 TL-66 (Brisbane), Intel Core Duo T2500 (Yonah), Intel Celeron Dual-Core T3000 (Penryn-1M), AMD A6-5345M (Richland), Intel Core i5-540UM (Arrandale), Intel Celeron J1800 (Bay Trail-D), AMD Athlon X2 QL-67 (Lion), AMD Turion X2 RM-75 (Lion), AMD Athlon X2 QL-66 (Lion), AMD Turion X2 RM-74 (Lion), AMD Turion 64 X2 TL-64 (Trinidad), Intel Core 2 Duo SL9300 (Penryn), Intel Core 2 Duo T5600 (Merom), AMD Athlon II M300 (Caspian), AMD Turion X2 Ultra ZM-80 (Puma), Intel Core i5-520UM (Arrandale), Intel Celeron N2840 (Bay Trail-M), Intel Celeron J1750 (Bay Trail-D), Intel Celeron N3060 (Braswell), AMD Athlon X2 QL-65 (Lion), AMD Athlon X2 QL-64 (Lion), Intel Celeron N2910 (Bay Trail-M), Intel Atom x5-E8000 (Cherry Trail), AMD A6-1450 (Temash), AMD Turion X2 RM-72 (Puma), AMD A4 Micro-6400T (Mullins), Intel Core Duo T2450 (Yonah), Intel Core 2 Duo T5550 (Merom), Intel Core Duo T2400 (Yonah), Intel Celeron Dual-Core T1700 (Merom), AMD Turion 64 X2 TL-62 (Tyler), Intel Pentium Dual Core T2390 (Merom), Intel Pentium Dual Core T2130 (Yonah), Intel Core i3-380UM (Arrandale), AMD Turion X2 RM-70 (Puma), AMD Athlon X2 QL-62 (Lion), AMD Turion 64 X2 TL-60 (Trinidad/Tyler), AMD Athlon X2 QL-60 (Lion), Intel Pentium D 820 (Smithfield), Intel Core 2 Duo T5500 (Merom), Intel Core i5-430UM (Arrandale), AMD A6-4455M (Trinity), AMD A4-5145M (Richland), AMD A4-4355M (Trinity), Intel Celeron N2830 (Bay Trail-M), Intel Celeron N2820 (Bay Trail-M), Intel Celeron N3050 (Braswell), Intel Celeron N2815 (Bay Trail-M), Intel Celeron N3000 (Braswell), Intel Celeron N2810 (Bay Trail-M), Intel Atom Z3680 (Bay Trail-T), Intel Atom Z3680D (Bay Trail-T), Intel Core 2 Duo T5470 (Merom-2048), Intel Core 2 Duo T5450 (Merom-2048), Intel Core 2 Duo T5300 (Merom), Intel Core Duo L2500 (Yonah), Intel Core Duo T2350 (Yonah), Intel Core 2 Duo SP7500 (Merom), Intel Core 2 Duo SU9600 (Penryn), Intel Core 2 Duo T5200 (Merom), Intel Core Duo T2250 (Yonah), Intel Core Duo T2300 (Yonah), Intel Core Duo T2300E (Yonah), Intel Core 2 Duo L7500 (Merom), Intel Core Duo L2400 (Yonah), Intel Pentium Dual Core T2370 (Merom), Intel Pentium Dual Core T2080 (Yonah), Intel Core 2 Duo T5270 (Merom-2048), Intel Core 2 Duo T5250 (Merom-2048), Intel Core Duo L2300 (Yonah), Intel Core 2 Duo L7300 (Merom), AMD Turion II Neo K685 (Geneva), VIA Nano QuadCore L4700 (CNQ), Intel Pentium 3561Y (Haswell), Intel Pentium 3560Y (Haswell), Intel Celeron 2961Y (Haswell), Intel Pentium 2129Y (Ivy Bridge), Intel Core 2 Duo SU9400 (Penryn), AMD Turion 64 X2 TL-58 (Tyler), AMD Turion 64 X2 TL-56 (Trinidad / Tyler), Intel Celeron Dual-Core T1600 (Merom), Intel Celeron Dual-Core T1500 (Merom), Intel Pentium 977 (Sandy Bridge), Intel Celeron 877 (Sandy Bridge), Intel Atom Z3570 (Moorefield), AMD Athlon 64 X2 TK-57 (Hawk-256), Intel Core Duo T2050 (Yonah), Intel Celeron Dual-Core T1400 (Merom-2M), AMD Turion II Neo K665 (Geneva), Intel Core i3-330UM (Arrandale), Intel Pentium Dual Core T2330 (Merom), Intel Pentium Dual Core T2060 (Yonah), Intel Pentium 967 (Sandy Bridge), Intel Celeron 867 (Sandy Bridge), Intel Atom Z3560 (Moorefield), AMD E2-3000 (Kabini), Intel Pentium U5600 (Arrandale), Intel Pentium 957 (Sandy Bridge), AMD E1-7010 (Carrizo-L), Intel Atom Z3480 (Merrifield), AMD Athlon 64 X2 TK-55 (Taylor / Hawk-256), AMD Turion II Neo K645 (Geneva), Intel Celeron B730 (Sandy Bridge), AMD Athlon 64 X2 TK-42 (Tyler), AMD Turion 64 X2 TL-53 (Tyler), AMD Athlon 64 X2 TK-53 (Hawk-256), AMD Athlon Neo X2 L325 (Congo), AMD Turion 64 X2 TL-52 (Trinidad), Intel Core 2 Duo SU7300 (Penryn), AMD Turion Neo X2 L625 (Congo), Intel Pentium U5400 (Arrandale), Intel Celeron 1019Y (Ivy Bridge), AMD Turion 64 X2 L510 (Congo), Intel Pentium Dual Core T2310 (Merom), Intel Pentium Dual Core SU4100 (Penryn), Intel Celeron M U3600 (Arrandale), AMD Turion II Neo K625 (Geneva), AMD Turion 64 X2 TL-50 (Taylor), AMD E1-2500 (Kabini), AMD E1 Micro-6200T (Mullins), AMD E1-6010 (Beema), AMD Mobile Sempron X2 NI-52 (Sable), AMD Athlon Neo X2 L335 (Congo), Intel Atom Z3530 (Moorefield), Intel Celeron 847 (Sandy Bridge), Intel Celeron M 925 (Penryn), Intel Celeron 807 (Sandy Bridge), AMD V-Series V160 (Champlain), AMD Athlon II Neo K345 (Champlain), Intel Celeron B720 (Sandy Bridge), Intel Atom D2700 (Cedarview), Intel Core 2 Duo SU9300 (Penryn), Intel Core 2 Duo U7700 (Merom-2048), Intel Core 2 Duo L7100 (Merom), Intel Celeron M 900 (Penryn), AMD V-Series V140 (Champlain), Intel Core 2 Duo U7600 (Merom-2048), Intel Celeron Dual-Core SU2300 (Penryn), Intel Celeron M U3400 (Arrandale), AMD Athlon II Neo K325 (Geneva), AMD E2-2000 (Zacate), Intel Celeron N2808 (Bay Trail-M), AMD E2-1800 (Zacate), AMD E-450 (Zacate), AMD E-350 (Zacate), AMD A4-1350 (Temash), Intel Celeron 927UE (Ivy Bridge), Intel Celeron N2807 (Bay Trail-M), Intel Core Duo U2500 (Yonah), Intel Core 2 Duo U7500 (Merom-2048), Intel Core Duo U2400 (Yonah), Intel Celeron N2806 (Bay Trail-M), Intel Atom E3827 (Bay Trail), Intel Atom N2850 (Cedarview-M), Intel Atom Z3460 (Merrifield), AMD Mobile Athlon 64 4000+ (Newark), Intel Pentium M 780 (Dothan), AMD Turion 64 ML-44 (Lancaster), AMD Turion 64 ML-42 (Lancaster), Intel Pentium M 770 (Dothan), Intel Pentium M 765 (Dothan), Intel Pentium M 760 (Dothan), AMD V-Series V120 (Champlain), AMD Mobile Sempron M140 (Caspian), Intel Celeron B710 (Sandy Bridge), AMD Athlon X2 L310 (Conesus), AMD E1-1500 (Zacate), AMD Turion 64 ML-40 (Lancaster), AMD E1-1200 (Zacate), AMD Turion 64 MT-40 (Lancaster), Intel Pentium M 755 (Dothan), Intel Celeron M 570 (Merom), Intel Celeron M 585 (Merom), AMD Mobile Sempron M120 (Caspian), AMD E-300 (Zacate), Intel Celeron M 560 (Merom), Intel Pentium 4 660 (Prescott 2M), Intel Pentium 4 560 (Prescott), AMD Mobile Sempron M100 (Caspian), AMD Turion 64 MK-38 (Richmond), AMD Turion 64 MT-37 (Lancaster), AMD Turion 64 ML-37 (Lancaster), Intel Core Solo T1400 (Yonah), Intel Celeron M 575 (Merom), Intel Celeron M 550 (Merom), Intel Celeron M 450 (Yonah), Intel Pentium M 750 (Dothan), Intel Pentium M 745 (Dothan), Intel Core Solo T1350 (Yonah), Intel Celeron 797 (Sandy Bridge), Intel Celeron M 540 (Merom), Intel Pentium M 740 (Dothan), Intel Celeron M 440 (Yonah), Intel Pentium M 735 (Dothan), Intel Pentium M 730 (Dothan), Intel Celeron 220 (Conroe), AMD Mobile Athlon 64 3700+ (Clawhammer), AMD Mobile Athlon 64 3400+ (Clawhammer), AMD Turion 64 MK-36 (Richmond), AMD Mobile Sempron 4000+ (Sherman), AMD Mobile Athlon 64 3200+ (Newark), Intel Mobile Pentium 4 552 (Prescott), Intel Mobile Pentium 4 538 (Prescott), AMD Mobile Sempron 3800+ (Sherman), AMD Mobile Sempron SI-42 (Sable), AMD Athlon II Neo K145 (Nile), AMD Mobile Sempron SI-40 (Sable), AMD Mobile Athlon 64 3000+ (Oakville), AMD Athlon II Neo K125 (Geneva), AMD Turion 64 MT-34 (Lancaster), AMD Turion 64 ML-34 (Lancaster), Intel Pentium 4 630 (Prescott 2M), Intel Atom D2560 (Cedarview), Intel Pentium 4-M 548 (Prescott), Intel Mobile Pentium 4 532 (Prescott), Intel Atom D2550 (Cedarview), Intel Atom N2800 (Cedarview-M), AMD E1-2200 (Kabini), Intel Atom E3826 (Bay Trail), Intel Celeron N2805 (Bay Trail-M), AMD A4-1250 (Temash), AMD E1-2100 (Kabini), AMD A4-1200 (Temash), AMD GX-210JA (Temash), Intel Atom D525 (Pinetrail), Intel Atom N2650 (Cedarview-M), Intel Atom E3825 (Bay Trail), Intel Atom E3805 (Bay Trail), AMD Turion 64 MT-32 (Lancaster), AMD Turion 64 ML-32 (Lancaster), AMD Mobile Sempron 3600+ (Sherman), AMD Mobile Athlon 64 2800+ (Oakville), AMD Mobile Athlon 64 2700+ (Clawhammer), AMD Mobile Sempron 3500+ (Keene), AMD Mobile Sempron 3400+ (Albany), AMD Mobile Sempron 3300+ (Roma), AMD Athlon Neo MV-40 (Huron), Intel Atom N570 (Pineview), Intel Atom N2600 (Cedarview-M), Intel Atom 330 (Diamondville), AMD Mobile Sempron 3200+ (Keene), AMD Mobile Sempron 3100+ (Georgetown), AMD Mobile Sempron 3000+ (Paris), Intel Core Solo T1300 (Yonah), Intel Pentium M 725 (Dothan), Intel Celeron M 530 (Merom), Intel Celeron M 430 (Yonah), Intel Celeron M 390 (Dothan), Intel Atom N550 (Pineview), Intel Atom D2500 (Cedarview), Intel Core 2 Solo SU3500 (Penryn), Intel Pentium 4 P4 3.0 (Northwood), AMD Turion 64 MT-30 (Lancaster), AMD Turion 64 ML-30 (Lancaster), Intel Pentium SU2700 (Penryn), Intel Mobile Pentium 4 520 (Northwood), Intel Mobile Pentium 4 518 (Prescott), VIA Nano L2100 (Isaiah), Intel Core Solo U1500 (Yonah), Intel Core 2 Solo SU3300 (Penryn), Intel Celeron M 763 (Penryn), Intel Pentium M 715 (Dothan), Intel Celeron M 520 (Merom), Intel Celeron M 420 (Yonah), Intel Pentium M 778 (Dothan), Intel Celeron M 380 (Dothan), Intel Core Solo T1200 (Yonah), AMD Athlon 64 TF-20 (Sherman), AMD Turion 64 MT-28 (Lancaster), AMD Turion 64 ML-28 (Lancaster), AMD Mobile Sempron 2800+ (Georgetown), Intel Celeron M 410 (Yonah), AMD Mobile Sempron 2700+ (Georgetown), AMD Mobile Sempron 2600+ (Dublin), Intel Celeron M 743 (Penryn), Intel Pentium 4 2.4 GHz (Northwood), Intel Pentium M 710 (Dothan), Intel Celeron M 330 (Banias), Intel Pentium M 758 (Dothan), Intel Pentium M 705 (Banias), Intel Celeron M 370 (Dothan), Motorola PowerPC G4 G4A 1.5 (7447A), Intel Pentium M 718 (Banias), Intel Pentium M 773 (Dothan), Intel Celeron M 320 (Banias), Intel Pentium M 1300 (Banias), Intel Core 2 Solo U2200 (Merom-L), Intel Core Solo U1400 (Yonah), AMD V-Series V105, AMD C-70 (Ontario), AMD C-60 (Ontario), Intel Pentium M 738 (Dothan), Intel Celeron M 360 (Dothan), AMD Mobile Sempron 210U, Intel Celeron M 340 (Banias), AMD C-50 (Ontario), Intel Atom Z560 (Silverthorne), Intel Celeron M 350 (Dothan), VIA C7-M C7-M-2000 (Esther), Intel Atom Z550 (Silverthorne), AMD E-240 (Zacate), Intel Pentium M 753 (Dothan), Intel Celeron M 723 (Penryn), Intel Atom E3815 (Bay Trail), Intel Atom N475 (Pineview), Intel Atom N470 (Pineview), Intel Atom Z540 (Silverthorne), Motorola PowerPC G4 G4 1.3 (7447), VIA Nano U2250 (Isaiah), Intel Atom N455 (Pinetrail), Intel Atom N450 (Pinetrail), Intel Atom N280 (DiamondVille), Intel Atom 230 (Silverthorne), Intel Atom Z530 (Silverthorne), Intel Atom N270 (DiamondVille), Intel Atom Z670 (Lincroft), Intel Celeron M 310 (Banias), AMD Athlon 64 L110, AMD C-30 (Ontario), Intel Pentium M 733 (Dothan), Intel Pentium M 733J (Dothan), Intel Pentium M 713 (Banias), VIA C7-M C7-M-1867 (Esther), Intel Pentium 4-M P4-M 1,7 (Northwood), Intel Mobile Pentium III-M P3M-1200 (Tualatin), Intel Core Solo U1300 (Yonah), Intel Core 2 Solo U2100 (Merom-L), Intel Pentium M 723 (Dothan), Intel Celeron M 722 (Penryn), Intel Celeron M 423 (Yonah), Intel Celeron M 383 (Dothan), Intel Celeron M 373 (Dothan), Intel Celeron M 523 (Merom-L), Intel Pentium M ULV 900 (Banias), Intel Atom N435 (Pinetrail), Intel Atom Z520 (Silverthorne), Intel Mobile A A110 (Stealey), AMD Mobile Sempron 200U (Huron), Intel Celeron 2.8 GHz (Northwood), Motorola PowerPC G4 G4 1.0 (7447), Intel Celeron M 353 (Dothan), Intel Celeron M 333 (Banias), VIA C7-M C7-M-1600 (Esther), VIA Nano U2500 (Isaiah), Intel Atom Z510 (Silverthorne), Intel Atom Z2000 (Penwell), VIA C7-M C7-M-1500 ULV (Esther), Intel Mobile A A100 (Stealey), VIA C3-M C3-M-1500 (Nehemiah), VIA C7-M C7-M-1000 (Esther), Intel Pentium M P-M 600 (Dothan), Intel Celeron M 630 MHz, Intel Atom Z500 (Silverthorne), Transmeta Crusoe TM-5800 (Crusoe), VIA C7-M C7-M-1200 (Esther), VIA C3-M C3-M-1200 (Nehemiah), AMD Geode LX 800 (Castle), AMD Geode LX 700 (Castle), unknown
-
(-) * Smaller values are better. / n123 Number of benchmarks for this median value / * Approximate position
- - -
-

TDP ... Thermal Design Power =  expected maximum power from each of its components while running realistic, worst case applications

-
Please share our article, every link counts!
-
-
-
-
Redaktion, 2023-12-12 (Update: 2023-12-12)
-
-
-
-
-
-
- -
- - - \ No newline at end of file diff --git a/PCData/data/notebookcheck/mobile-gpu.csv b/PCData/data/notebookcheck/mobile-gpu.csv deleted file mode 100644 index cb9feb9..0000000 --- a/PCData/data/notebookcheck/mobile-gpu.csv +++ /dev/null @@ -1,815 +0,0 @@ -Model,Codename,Architecture,Core speed,Boost / Turbo,Memory Speed,Memory Bus,Memory Type,Max. Memory,DirectX,OpenGL,Process (nm),Days old,Perf. Rating,3DMark Ice Storm GPU,3DMark Cloud Gate Standard Score,3DMark Cloud Gate GPU,3DMark11 P,3DMark11 P GPU,3DMark Fire Strike Score,3DMark Fire Strike Graphics,3DMark Time Spy Score,3DMark Time Spy Graphics,3DMark Vantage P,3DMark06,3DMark01,GFXBench,GFXBench 3.0 1080p Manhattan Offscreen,GFXBench 3.1 Manhattan ES 3.1 Offscreen,Basemark GPU 1.2 Vulkan Medium Offscreen,Basemark X 1.1 Medium Quality,Basemark X 1.1 High Quality,"Unigine Heaven 3.0 DX 11, Normal Tessellation, High Shaders",Unigine Valley 1.0 Extreme HD DirectX,Cinebench R15 OpenGL 64Bit,Cinebench R10 32Bit OpenGL,"ComputeMark v2.1 Normal, Score",LuxMark v2.0 64Bit Sala GPUs-only -NVIDIA GeForce RTX 4090 Laptop GPU,GN21-X11,Ada Lovelace,,2040,20000,256,GDDR6,16384,12 Ultimate,4.6,5,334,~72.6,554375,64860,142552,45723,64848.5,35217.5,46386,20085,21279,113387,64691.5,,4088,1057,993,1746,,,,232,281,16004,49892,19891.5 -NVIDIA RTX 5000 Ada Generation Laptop GPU,,Ada Lovelace,930,1680,20000,256,GDDR6,16384,12 Ultimate,4.6,4,257,~58.1,,,,39552,53052.5,27801,33145,15316.5,15539.5,,,,,,,742.3,,,,,367.5,,, -AMD Radeon RX 7900M,Navi 31,RDNA 3,1825,2090,18000,256,GDDR6,16384,12_2,4.6,5,45,~68,,,,41670,59943,40123,50241,18114,19434,,,,,,,104.6,,,,,369,,, -NVIDIA GeForce RTX 4080 Laptop GPU,GN21-X9,Ada Lovelace,1860,2280,20000,192,GDDR6X,12288,12 Ultimate,4.6,5,334,~64.9,,61168,132657,42156.5,57598,32343.5,40687,17218,17879.5,111294,58651.5,,,,,104.6,,,,,270,24367,38663,14841.5 -NVIDIA RTX 4000 Ada Generation Laptop GPU,,Ada Lovelace,,,16000,192,GDDR6,12288,12 Ultimate,4.6,5,257,,,,,,,,,,,,,,,,,,,,,,,,, -NVIDIA RTX 3500 Ada Generation Laptop GPU,,Ada Lovelace,,,16000,192,GDDR6,12288,12 Ultimate,4.6,5,257,,,,,,,,,,,,,,,,,,,,,,,,, -NVIDIA GeForce RTX 4070 Laptop GPU,GN21-X6,Ada Lovelace,,2175,16000,128,GDDR6,8192,12 Ultimate,4.6,5,334,~51.7,603749,63781,162423,34455,41011,26013,29860,12062,11955,97153.5,55349.5,,2674,990,743,229.5,,,,115.05,225,19835,25731,10800 -NVIDIA RTX 3000 Ada Generation Laptop GPU,,Ada Lovelace,,,16000,128,GDDR6,8192,12 Ultimate,4.6,5,257,~38.1,,,,27083,29411,18847,20908,8811,8351,,,,,,,900,,,,,288,,, -NVIDIA GeForce RTX 3080 Ti Laptop GPU,GN20-E8,Ampere,975,1590,14000,256,GDDR6,16384,12_2,4.6,8,698,~53.7,648870,60593,152074,33697,42275,26549,31033,12267,12269,94760,56967,,2363.08,,,174.3,,,,,206,17110,30717,10333 -NVIDIA RTX A5500 Laptop GPU,GA103S,Ampere,,,16000,256,GDDR6,16384,12_2,4.6,8,625,~47.7,,54323,104565,30135,35376,24046,26260,9872,9568,,,,,,,1099,,,,,366,,, -NVIDIA GeForce RTX 3080 Laptop GPU,GN20-E7 GA104,Ampere,780 - 1100,1245 - 1710,14000,256,GDDR6,16384,12_2,4.6,8,1067,~47.4,541176,49246,111181,29192,38087,22706,27266,10472.5,10773.5,75159,44856,,,,,245,,,,129.2,182.3,6842,23340,11251 -AMD Radeon RX 6850M XT,Navi 22,RDNA 2,,2463,18000,192,GDDR6,12288,12,4.6,7,710,~57.6,,61794,172972,30854.5,42015.5,27931,33900.5,11649.5,11837,,,,,,,,,,,,200.8,,, -NVIDIA GeForce RTX 3070 Ti Laptop GPU,GN20-E6,Ampere,915,1480,14000,256,GDDR6,8192,12_2,4.6,8,710,~52.2,581927,58464,141689,30737,36969.5,24043,27776,10673,10462,81895,50062,,,,,,,,,,201.5,17947,22796,8022 -NVIDIA RTX A4500 Laptop GPU,GA104,Ampere,930,1500,16000,256,GDDR6,16384,12_2,4.6,8,625,,,,,,,,,,,,,,,,,,,,,,,,, -NVIDIA RTX A5000 Laptop GPU,GA104,Ampere,1215,1770,14000,256,GDDR6,16384,12_2,4.6,8,942,~38.5,,33688.5,50153.5,28454,36163.5,22819,27271,10157,10307,,,,2032,654,597,,,,,,291,,24031,9147 -NVIDIA GeForce RTX 4060 Laptop GPU,GN21-X4,Ada Lovelace,,2370,16000,128,GDDR6,8192,12 Ultimate,4.6,5,334,~46.3,598142,60481,152642,30793,35653,23393,26233,10534.5,10301.5,90275,49745.5,,2508.2,844.7,663.4,104.6,,,,,214.51,16072,20014, -NVIDIA RTX 2000 Ada Generation Laptop GPU,,Ada Lovelace,,,16000,128,GDDR6,8192,12 Ultimate,4.6,5,269,~30.3,,,,26717,28615,19082,21189.5,8331,7921.5,37844,53707,,599.3,304.1,193.4,196.8,,,,34.1,259,,14884,6323 -NVIDIA Quadro RTX 6000 (Laptop),TU102,Turing,1275,1455,14000,384,GDDR6,24576,12_1,4.6,12,1528,~50.3,,,,,,,,11084,,,,,,,,,,,,,,,, -AMD Radeon RX 6800M,Navi 22,RDNA 2,2116,2300,16000,192,GDDR6,12288,12,4.6,7,892,~54.6,482999,58796,160859,28826.5,40390.5,26613,34199,10627,11256.5,77244,46433.5,,,,,,,,,117.45,197.97,16581,21425,14770 -NVIDIA GeForce RTX 2080 Super Mobile,N18E-G3 TU104,Turing,1365,1560,14000,256,GDDR6,8192,12_1,4.6,12,1317,~48.6,,54828,141486,28467,34875.5,21377.5,24960,10465.5,10313,69838,41873,,,,,,,,,,166,,17233,8244 -NVIDIA GeForce RTX 3070 Laptop GPU,GN20-E5 GA104,Ampere,780 - 1100,1290 - 1620,14000,256,GDDR6,8192,12_2,4.6,8,1075,~48,510435,49493,136558,26152,33996,21167,25477.5,9681,9619,77147.5,47262,,,,,985,,,,126.25,175.65,6836,24877,9606 -NVIDIA RTX A4000 Laptop GPU,GA104,Ampere,780,1680,12000,256,GDDR6,8192,12_2,4.6,8,942,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Radeon RX 6800S,Navi 23,RDNA 2,1800,1975,16000,128,GDDR6,8192,12,4.6,7,892,~49.2,,61531.5,163510,28793,36101,23465.5,26511,9220,9033,82247,51423,,,,,,,,,,190,18164,17442,8018 -AMD Radeon RX 7600M XT,Navi 33,RDNA 3,,2300,18000,128,GDDR6,8192,12,4.6,6,344,~49,418181,57801,152903,27492,36365,25367,28256,9803,9261,95780,22993,,,,,104.6,,,,96.5,,,21251,6255 -AMD Radeon RX 7700S,Navi 33,RDNA 3,,2200,18000,128,GDDR6,8192,12,4.6,6,332,,,,,,,,,,,,,,,,,,,,,,,,, -NVIDIA GeForce RTX 3080 Max-Q,GN20-E7 GA104,Ampere,780,1245,6000,256,GDDR6,16384,12_2,4.6,8,1040,,,,,,,,,,,,,,,,,,,,,,,,, -Apple M3 Max 40-Core GPU,,,,,,,LPDDR5-6400,,,,5,45,~37.1,,,,,,,,,,,,,2941.5,1573,1178,,,,,,137.38,,, -Apple M2 Max 38-Core GPU,,,,,,,LPDDR5-6400,,,,5,332,~40.3,,,,,,,,,,,,,3185,1707.7,1294.4,,,,,,147.5,,, -NVIDIA GeForce RTX 2080 Mobile,N18E-G3 TU104,Turing,1380,1590,14000,256,GDDR6,8192,12_1,4.6,12,1792,~45,458810,44306.5,139346,25504,34897,20746,25436,9617,9854,68525,41995,,,,,,,,,,144.85,11602.5,18239,7527 -AMD Radeon RX 6700M,R21M-E110-70,RDNA 2,,2300,16000,160,GDDR6,10240,12,4.6,7,1188,~44.7,,47472,91672,25735.5,33497,23986.5,27924,9038.5,8988.5,66973,46372,,,,,,,,,,186,15120,16389,12486 -Apple M3 Max 30-Core GPU,,,,,,,LPDDR5-6400,,,,5,45,,,,,,,,,,,,,,,,,,,,,,,,, -NVIDIA Quadro RTX 5000 (Laptop),N19E-Q5,Turing,1035 / 1350,1545 / 1770,14000,256,GDDR6,16384,12_1,4.6,12,1651,~42.5,501167,39398.5,117274,21068.5,24620,18943,23034.5,9012.5,9332,,45180,,1960,626,602,1195,,,302.1,125.5,209.5,19419,19614,7688 -AMD Radeon RX 7600M,Navi 33,RDNA 3,,2070,16000,128,GDDR6,8192,12,4.6,6,344,,,,,,,,,,,,,,,,,,,,,,,,, -NVIDIA GeForce RTX 3070 Max-Q,GN20-E5 GA104,Ampere,,1290,,256,GDDR6,8192,12_2,4.6,8,1063,,,,,,,,,,,,,,,,,,,,,,,,, -Apple M2 Max 30-Core GPU,,,,,,,LPDDR5-6400,,,,5,332,~8.5,,,,,,,,,,,,,,,,,,,,,145.7,,, -NVIDIA GeForce RTX 3060 Laptop GPU,GN20-E3 GA106,Ampere,817,1702,14000,192,GDDR6,6144,12_2,4.6,8,1075,~42,466087,45661,104826,23069,27419,18748.5,20609,8322,8222,57333,47118,,,,,,,,,97.4,187,14081,, -Apple M1 Max 32-Core GPU,,,1296,,,512,LPDDR5-6400,,,,5,1118,~28.7,,,,,,,,,,,,,2251.8,1227.24,920.95,,,,,,94.35,,, -AMD Radeon RX 7600S,Navi 33,RDNA 3,,1865,16000,128,GDDR6,8192,12,4.6,6,344,~48.9,,61238,155806,28571,34217.5,23167,25900,9372,9203,79339,51164,,,,,,,,,,209,15192,17320, -NVIDIA GeForce RTX 2070 Super Mobile,N18E-G2R,Turing,1140,1380,14002,256,GDDR6,8192,12_1,4.6,12,1340,~45.5,481195,46745,126287,24028.5,29092.5,18919.5,22016,8315.5,8272,70601,43041,,,,,,,,,,142.1,,15586, -NVIDIA GeForce RTX 2080 Super Max-Q,N18E-G3,Turing,975,1230,11000,256,GDDR6,8192,12_1,4.6,12,1340,~41.6,468363,44534,127741,24119,29636.5,18578.5,21902.5,8075,8331,60306,38265,,,,,,,,,,142,13620,16221, -NVIDIA RTX A3000 Laptop GPU,GA104,Ampere,1080,1560,14000,192,GDDR6,12288,12_2,4.6,8,965,~32.1,,24449,29996,23888,25990,18097,19710,7703,7320,71308,,,1777,680,500,,,,,,290,,18652,6178 -Apple M1 Max 24-Core GPU,,,1296,,,,LPDDR5-6400,,,,5,1118,~25.9,,,,,,,,,,,,,2027,1153,686,,,,,,94,,, -Intel Arc A770M,Alchemist,Xe HPG,1650,,16000,256,GDDR6,16384,12_2,4.6,6,625,~47.9,,53345,124487,29170,37375,22178.5,25563,10997,10783,77403,48471,,,,,,,,,75.2,216.53,18594,20027,10975 -AMD Radeon RX 6650M XT,,RDNA 2,,2162,18000,128,GDDR6,8192,12,4.6,7,710,,,,,,,,,,,,,,,,,,,,,,,,, -Apple M3 Pro 18-Core GPU,,,,,,,LPDDR5-6400,,,,5,45,~26.9,,,,,,,,,,,,,1480,936,670,,,,,,,,, -Apple M2 Pro 19-Core GPU,,,444,1398,,,LPDDR5-6400,,,,5,332,~26.5,,,,,,,,,,,,,1969.6,1131.2,748.2,,,,,,140.91,,, -AMD Radeon RX 6650M,,RDNA 2,,2222,18000,128,GDDR6,8192,12,4.6,7,710,~40.8,,,,26153,32846,22516,25739,8869,8700,,,,,,,,,,,,175.8,,, -AMD Radeon RX 6600M,R21M-E65-70,RDNA 2,2068,2177,14000,128,GDDR6,8192,12,4.6,7,1188,~42.1,479404,54130.5,144612,25585,31868,20855,23525,8094,7840,72685.5,45858.5,,,,,217,,,,93.1,179.6,14717,16123,5564 -AMD Radeon RX 6700S,,RDNA 2,1700,1890,14000,128,GDDR6,10240,12,4.6,7,710,~44,,59135,153853,26867,32662,21375,24135,8547,8316,75332,48289,,,,,,,,,,207,17573,15945,2530 -NVIDIA GeForce RTX 2070 Mobile,N18E-G2 TU106,Turing,1215,1440,14000,256,GDDR6,8192,12_1,4.6,12,1792,~39.2,444708,39206.5,123004,20935,26005,17762,20392,7499,7738,64151,42409.5,,,,,,,,,,133,13457,14446,6570 -NVIDIA Quadro RTX 5000 Max-Q,N19E-Q5 MAX-Q,Turing,600 - 930,1350 - 1455,14000,256,GDDR6,16384,12_1,4.6,12,1651,~34.6,433183,32096,64768,20890,26465,16600.5,19790,7282.5,7396,53221,40509.5,,1334.5,522,466.7,,,,236.6,94.6,210,6819,14178.5,4983 -NVIDIA GeForce RTX 2080 Max-Q,N18E-G3-A1 MAX-Q TU104,Turing,735-990,1095-1230,12000,256,GDDR6,8192,12_1,4.6,12,1792,~36.8,425550,34287,117764,21067,27973,17504,20703,7484,7923,51930,37613,,,,,,,,,,119.7,8197.5,14673,5110 -AMD Radeon RX 5700M,Navi 10 / R19M-E120,Navi / RDNA,1465,1720,12000,256,GDDR6,8192,12,4.6,7,1372,,,,,,,,,,,,,,,,,,,,,,,,, -NVIDIA GeForce GTX 1080 Mobile,N17E-G3,Pascal,1566,1733,10000,256,GDDR5X,8192,12_1,4.5,16,2665,~38.5,409018,32845,126690,20498.5,28526.5,17223,21394,6584.5,6917,48874,34697.5,,,,,,,,225.2,95.9,122.7,9778.5,16459,4525 -NVIDIA Quadro RTX 4000 (Laptop),N19E-Q3,Turing,1110,1560,14000,256,GDDR6,8192,12_1,4.6,12,1651,~32.8,445161,38830,119052,21595,25370.5,16903,18849,7362,7284,56250,,,1213,490.4,440.5,,,,,89.9,215.5,6824,13576,5927 -NVIDIA GeForce RTX 3060 Max-Q,GN20-E3 GA106,Ampere,,1283,,192,GDDR6,6192,12_2,4.6,8,1063,,,,,,,,,,,,,,,,,,,,,,,,, -Apple M3 Pro 14-Core GPU,,,,,,,LPDDR5-6400,,,,5,45,~19.4,,,,,,,,,,,,,1299,818,565,,,,,,129.85,,, -Apple M2 Pro 16-Core GPU,,,,,,,LPDDR5-6400,,,,5,332,~24,,,,,,,,,,,,,1815,1011,659,,,,,,141.9,,, -Apple M1 Pro 16-Core GPU,,,1296,,,,LPDDR5-6400,,,,5,1118,~20,,,,,,,,,,,,,1561,869,544,,,,,,85.5,,, -AMD Radeon PRO W6600M,,RDNA 2,,,14000,128,GDDR6,8192,12,4.6,7,908,,,,,,,,,,,,,,,,,,,,,,,,, -NVIDIA GeForce RTX 2070 Super Max-Q,N18E-G2R,Turing,930,1155,11000,256,GDDR6,8192,12_1,4.6,12,1340,~41,461648,47119,126747,23755.5,27724,18395,20872.5,7611.5,7373.5,65101,43406,,,,,,,,,,138,6835,14015, -NVIDIA Quadro RTX 4000 Max-Q,N19E-Q3 MAX-Q,Turing,780 - 960,1380 - 1485,14000,256,GDDR6,8192,12_1,4.6,12,1651,~28.3,,23809,35167,19888,23574,15010,17049,6724,6764,,,,,,,,,,,,210.5,,, -Apple M1 Pro 14-Core GPU,,,1296,,,,LPDDR5-6400,,,,5,1118,~18.8,,,,,,,,,,,,,1457,817,496,,,,,,91.8,,, -NVIDIA GeForce RTX 2070 Max-Q,N18E-G2 MAX-Q TU106,Turing,885-1080,1185-1305,12000,256,GDDR6,8192,12_1,4.6,12,1792,~33.5,413114,36551.5,106564,18964,22089,15494,17335,6571,6661,48510,35284,,,,,,,,,,119.95,8082.5,12103,5235 -AMD Radeon RX 6600S,,RDNA 2,,1881,16000,128,GDDR6,8192,12,4.6,7,710,,,,,,,,,,,,,,,,,,,,,,,,, -NVIDIA Quadro P5200,,Pascal,1316,1569,7216,256,GDDR5,16384,12_1,4.5,16,2517,~36.3,,43443.5,106328,21715,25100,16625.5,18467,6646.5,6422,65844,44390,,,,,,,,,,234.3,6833,15892,5183 -NVIDIA Quadro RTX 3000 (Laptop),N19E-Q1,Turing,945,1380,14000,192,GDDR6,6144,12_1,4.6,12,1651,~27,,36407,91394,17864,19878.5,13570,14841.5,5923,5589,50309,37304,,1010,407.8,384.8,,,,,58.3,204,6821,8716,5769 -NVIDIA GeForce RTX 2060 Mobile,N18E-G1 TU106,Turing,960,1200,14000,192,GDDR6,6144,12_1,4.6,12,1792,~33.4,411721,36017.5,99178.5,18110,21261.5,14690,16331,6192,6141,57644,38509,,,,,,,,,,120.4,9210,12241,5054 -NVIDIA Quadro RTX 3000 Max-Q,N19E-Q1 MAX-Q,Turing,600 - 870,1215 - 1380,14000,192,GDDR6,6144,12_1,4.6,12,1651,~24.2,,33281.5,66284,16577,17523,12642,13617,5357,5048,,,,,,,,,,,68,202,6821,10064,4392 -NVIDIA GeForce GTX 1080 Max-Q,N17E-G3 Max-Q,Pascal,1101 - 1290,1278 - 1468,10000,256,GDDR5X,8192,12_1,4.5,16,2378,~34.1,387951,28375,114542,16910.5,23540,14273.5,18191.5,5591.5,5868.5,39562,31555,69346,1365,432.5,414,,,,197,84.8,111.15,9138,13756,4618 -NVIDIA GeForce GTX 1070 Mobile,N17E-G2,Pascal,1443,1645,8000,256,GDDR5,8192,12_1,4.5,16,2649,~28.8,338057,27920,101041,16939.5,22575.5,13797.5,17236.5,5268,5485,34389,31045,,,298.5,,,,,,82.5,112.3,7504,12369.5,4097 -NVIDIA GeForce RTX 2060 Max-Q,N18E-G1 MAX-Q TU106,Turing,975,1185,11000,192,GDDR6,6144,12_1,4.6,12,1792,~27.7,308872,30659.5,58890,18065,19778.5,13716,14909.5,5844.5,5638.5,50957,37332,,1123,497.9,411.3,,,,,,137,11800,,5786 -NVIDIA Quadro P4200,,Pascal,1215,1480,7132,256,GDDR5,8192,12_1,4.5,16,2036,~28.9,,,,,,12485,,,,,,,,,,,,,,,,,, -NVIDIA GeForce RTX 4050 Laptop GPU,GN21-X2,Ada Lovelace,,2370,16000,96,GDDR6,6144,12 Ultimate,4.6,5,334,~41.9,552112,52615,139468,27315,30910,19925,22597.5,8647.5,8429.5,85660,50886,,2143.4,801,592,238,,,,,205,16035,16302,8036 -NVIDIA RTX A2000 Laptop GPU,GA107,Ampere,893,1687,14000,128,GDDR6,8192,12_2,4.6,8,965,~29.7,,40815,60336,17348,18058,12211,13157,5523,5016,63738,36019,,,,,,,,,,311,6839,13585,4554 -Intel Arc A730M,Alchemist,Xe HPG,1100,,14000,192,GDDR6,12288,12_2,4.6,6,625,~38.5,467230,45257,83396,24285.5,29144,18213.5,21294,8919.5,8813,63380,44798,,,,,104.6,,,,61,196.37,16778.5,14038.5,9344 -AMD Radeon Pro 5600M,Navi 10,Navi / RDNA,,1265,,2048,HBM2,8192,12,4.6,7,1266,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Radeon RX 5600M,Navi 10,Navi / RDNA,,1265,12000,192,GDDR6,6144,12,4.6,7,1426,~26.9,,36805,72335,20663.5,24213,15729,17652.5,6610,5933.5,18582,38139,,,,,,,,,,122.7,12922,2921,1082 -NVIDIA Quadro P5000,N17E-Q5,Pascal,1164,1506,6006,256,GDDR5,16384,12_1,4.5,16,2517,~26.7,401246,28999,86679,16450,20096,12363,14666,4836,3882.5,44689,33236,,1192,448.1,377.6,,,,,74.35,138.4,6830,11544,4323 -NVIDIA GeForce GTX 1660 Ti Mobile,N18E-G0,Turing,1455,1590,12000,192,GDDR6,6144,12_1,4.6,12,1685,~31.5,419800,35118.5,97517,17351,20118.5,13140,14818,5697,5659,49309,38153.5,,,,,,,,,,120.55,8212,10148,4827 -NVIDIA GeForce RTX 3050 Ti Laptop GPU,GN20-P1,Ampere,1222,1485,12000,128,GDDR6,4096,12_2,4.6,8,937,~28.2,422757,39980,72925,16439,18057,11894,13359.5,5341,5170,,45370,,1053,454,336,,,,,,166,13438.5,, -NVIDIA GeForce RTX 3050 6GB Laptop GPU,GN20-P0-R 6GB,Ampere,1237,1492,12000,96,GDDR6,6144,12_2,4.6,8,343,~20.5,,,,17223,18059,11330,12618,5182,4820,,,,,,,104.6,,,,,117.6,,, -Intel Arc A570M,Alchemist,Xe HPG,900,1300,14000,128,GDDR6,8192,12_2,4.6,6,137,,,,,,,,,,,,,,,,,,,,,,,,, -NVIDIA RTX A1000 Laptop GPU,GA107,Ampere,,,14000,128,GDDR6,4096,12_2,4.6,8,625,~25.5,,40266,70880,15198,14402,10123,10914,4558,4101,,,,,,,,,,,,294,,, -NVIDIA GeForce GTX 1070 Max-Q,N17E-G2 Max-Q,Pascal,1101 - 1215,1265 - 1379,8000,256,GDDR5,8192,12_1,4.5,16,2378,~28.3,334256,28582.5,99551.5,15409,18688,12598.5,14678.5,4616,4708,44090,30648.5,,,459,,,,,,,102.1,10777,10917,4937.5 -Intel Arc A550M,Alchemist,Xe HPG,900,2005,14000,128,GDDR6,8192,12_2,4.6,6,625,~27.7,,,,,,12900,14350,6320,5830,,,,,,,,,,,,,,, -NVIDIA Quadro P5000 Max-Q,N17E-Q5 Max-Q,Pascal,1101,1366,6006,256,GDDR5,16384,12_1,4.5,16,2517,,,,,,,,,,,,,,,,,,,,,,,,, -NVIDIA GeForce RTX 3050 4GB Laptop GPU,GN20-P0,Ampere,1238,1500,12000,128,GDDR6,4096,12_2,4.6,8,948,~27.5,480364,34692,65911,15134,15712,10953,12125,4877,4500,43216,39512,,,,,147,,,,,140.8,11506,10499,4713 -Intel Arc A530M,Alchemist,Xe HPG,900,1300,14000,128,GDDR6,8192,12_2,4.6,6,138,,,,,,,,,,,,,,,,,,,,,,,,, -NVIDIA GeForce GTX 1660 Ti Max-Q,N18E-G0,Turing,1140,1335,12000,192,GDDR6,6144,12_1,4.6,12,1685,~23.1,306910,33027,63086,15913,17439,11615,13355,5072,5084.5,31845,25211,,943,360.6,345.8,,,,,,96.9,8562.5,10027,4254 -NVIDIA RTX A500 Laptop GPU,GA107,Ampere,,,14000,64,GDDR6,4096,12_2,4.6,8,625,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Radeon RX 6550M,,RDNA 2,2000,2560,18000,64,GDDR6,4096,12_2,4.6,6,344,~22.4,,,,19932,20506,12994,14696,4955,4546,,,,,,,104.6,,,,,134.8,,, -AMD Radeon RX 6500M,,RDNA 2,,2191,18000,64,GDDR6,4096,12_2,4.6,6,711,~31.7,,92553,92553,17548,16290,12287,13980,4795,4434,51599,35958,,,,,,,,,,181,13701,8384,1717 -AMD Radeon RX 6550S,,RDNA 2,,2170,16000,64,GDDR6,4096,12_2,4.6,6,344,,,,,,,,,,,,,,,,,,,,,,,,, -NVIDIA GeForce GTX 980 (Laptop),N16E-GXX,Maxwell,1126,1228,3500,256,GDDR5,4096,12_1,4.5,28,3359,~26.6,347481,27629,76705,14925,17200.5,11096,13047,,,39702,32943,,,384.9,,,,,,,117.25,8278.5,9468,3098 -NVIDIA Quadro M5500,,Maxwell,1139,1140,6606,256,GDDR5,8192,12_1,4.5,28,2799,~17.4,,,,14413,,,,,,,,,,,,,,,,,106.7,,, -NVIDIA Quadro P4000,N17E-Q3,Pascal,1202,1228,6006,256,GDDR5,16384,12_1,4.5,16,2517,~21.4,369407,18726,53834,12346,15433,10158,12259,3825,3960,36260,29155,,1114,408.4,318,,,,,,107.2,6831,8609,3564 -NVIDIA Quadro T2000 (Laptop),N19P-Q3,Turing,1575,1785,8000,128,GDDR5,4096,12_1,4.6,12,1651,~18.9,,,,13271,13523.5,,,,,,,,,,,,,,,,203,,, -NVIDIA GeForce GTX 1060 Mobile,N17E-G1,Pascal,1404,1670,8000,192,GDDR5,6144,12_1,4.5,16,2663,~23.4,298378,24326.5,74604.5,12449,14693,9739,11558,3618,3580.5,34127,26152,,,,,,,,,81.7,102.1,6838,8538.5,3426.5 -NVIDIA GeForce GTX 1650 Ti Mobile,N18P-G62,Turing,1350,1485,12000,128,GDDR6,4096,12_1,4.6,12,1340,~27.5,410191,28177,65163,13072.5,13266,9222,9930,3851,3618,43517,39720,,,,,,,,,,126.65,6831.5,7120,10574 -Intel Arc A370M,Alchemist,Xe HPG,1550,,14000,64,GDDR6,4096,12_2,4.6,6,625,~18.5,,28128,35604,12520.5,12089.5,7717,8149,4255,3885,,,,,,,,,,,,129.1,,, -AMD Radeon RX 5500M,Navi 14 / R19M-E85,Navi / RDNA,1327,1645,14000,128,GDDR6,4096,12,4.6,7,1526,~21.8,210925,28923.5,50946,13344,16476,10568,12276,4174,4298,,25762.5,,,,,,,,,,103,8386,9581,3411 -AMD Radeon Pro 5500M,Navi 14,Navi / RDNA,,1300,12000,128,GDDR6,8192,12,4.6,7,1481,~27,364184,30690,65776,14097,14725,9196,10399,3629,3364,,34321,,,,,,,,,,169.3,,, -NVIDIA Quadro P4000 Max-Q,N17E-Q3 Max-Q,Pascal,1113,1240,6006,256,GDDR5,16384,12_1,4.5,16,2517,~24.8,297918,25528,74933,13482,15837,10473,12312,,,,28211,,,,,,,,,,105,12498,8605,4369 -NVIDIA Quadro P3200,N18E-Q1,Pascal,708 - 1202,1228,7008,192,GDDR5,6084,12_1,4.5,16,2470,~27.5,419543,34178,82506.5,15085.5,16619,11058,12554.5,4508.5,4356,45999,29206.5,,,,,,,,,59.9,172,6819,8791,4192 -AMD Radeon RX 580X (Laptop),Polaris,Polaris,,1340,8000,256,GDDR5,8192,12_0,,14,1788,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Radeon RX 580 (Laptop),Polaris,Polaris,1000,1077,8000,256,GDDR5,8192,12_0,4.6,14,2420,~21,290090,30938.5,69324.5,12973,15223,9754,11261,3707,3505,,28909,,,120.4,,,,,,,107.75,10620.5,8688,894 -AMD Radeon RX 6450M,,RDNA 2,2000,2220,18000,64,GDDR6,4096,12_2,4.6,6,344,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Radeon RX Vega Mobile,Vega Mobile,Vega,,,,2048,HBM2,4096,12_1,,14,2156,,,,,,,,,,,,,,,,,,,,,,,,, -NVIDIA GeForce RTX 2050 Mobile,GN20-S7,Ampere,,1477,14000,64,GDDR6,4096,12_1,4.6,8,728,~21.2,,25879,58068,11734,12195,7746,8815,3417.5,3186,46821,39263,,950,443.2,,,,,,,157.7,6856,9236.5,2690 -NVIDIA GeForce MX570,GN20-S5,Ampere,,1477,12000,64,GDDR6,2048,12_1,4.6,8,728,~16,,,,,,,,3625,3610,,,,,,,,,,,,,,, -AMD Radeon RX 6300M,,RDNA 2,,1512,18000,128,GDDR6,2048,12_2,4.6,6,710,,,,,,,,,,,,,,,,,,,,,,,,, -NVIDIA GeForce GTX 1650 Mobile,"N18P-G0, N18P-G61",Turing,1380,1560,12000,128,"GDDR5, GDDR6",4096,12_1,4.6,12,1685,~20.8,364872,25707,57365,11788,13131.5,8081,9313,3595.5,3488,31310.5,34484.5,,775,331,272.9,,,,100.6,40.4,103.55,6821,6931,2872.5 -AMD Radeon Pro 5300M,Navi 14,Navi / RDNA,,1250,12000,128,GDDR6,4096,12,4.6,7,1481,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Radeon RX 5300M,Navi 14 / E19M-E65,Navi / RDNA,1036,1445,14000,96,GDDR6,3072,12,4.6,7,1526,~23.7,,32417,55837,12818.5,14351,9093,10306,3866.5,3566.5,39264,36032,,,,,,,,,,111,,7843,3395 -NVIDIA Quadro P3000,N17E-Q1,Pascal,1088,1215,7008,192,GDDR5,16384,12_1,4.5,16,2517,~19.6,331998,24681,63331.5,11229,12105,8155.5,9255.5,2999,2864,33390,29440,,712,328.6,249.9,,,,,50.9,113.4,6835,6556,3351.5 -NVIDIA GeForce GTX 1060 Max-Q,N17P-G1 Max-Q,Pascal,1063 - 1265,1341 - 1480,8000,192,GDDR5,6,12_1,4.5,16,2378,~22.8,367999,24154.5,74101,11973,13333.5,9148.5,10430,3415,3324,,34189,,,398,,,,,,,110.55,6829.5,7653,2924 -NVIDIA Quadro P3000 Max-Q,N17E-Q1 Max-Q,Pascal,1075,1240,7008,192,GDDR5,16384,12_1,4.5,16,2284,,,,,,,,,,,,,,,,,,,,,,,,, -NVIDIA GeForce GTX 1650 Ti Max-Q,N18P-G62 Max-Q,Turing,1035,1200,10000,128,GDDR6,4096,12_1,4.6,12,1340,~25.3,421834,22895,47657,11398,11538,7700,8564,3235.5,3098,31116,30266,,,,,,,,,,140,,6297,10809 -NVIDIA Quadro T2000 Max-Q,N19P-Q3 MAX-Q,Turing,930 / 1200,1500 / 1620,8000,128,GDDR5,4096,12_1,4.6,12,1651,~17.6,75193,24991.5,41106,11907,11461,7543.5,8261.5,3352,3094,39269,36376,,622,255.2,234.9,,,,,,220,5840,6331,3050 -AMD Radeon RX 480 (Laptop),Polaris,Polaris,,,,256,GDDR5,,12,,14,2680,~11.9,,,,7200,,4070,,,,,,,,,,,,,,,,,, -AMD Radeon Pro WX 7100,Polaris 12,Polaris,,1243,7000,256,GDDR5,8192,12,Vulkan,14,2468,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Radeon RX 570X (Laptop),Polaris,Polaris,,1168,7000,256,GDDR5,8192,12,Vulkan,14,1788,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Radeon RX 570 (Laptop),Polaris 10 Pro,Polaris,926,1206,7000,256,GDDR5,8192,12,Vulkan,14,2523,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Radeon RX 470 (Laptop),Polaris 10 Pro,Polaris,926,1206,7000,256,GDDR5,8192,12,Vulkan,14,2677,~20.5,,,,,,8961,10715,,,,,,,,,,,,,,,,, -NVIDIA GeForce GTX 1650 Max-Q,N18P-G0 / N18P-G61,Turing,1020,1245,8000,128,"GDDR5, GDDR6",4096,12_1,4.6,12,1685,~20.2,373879,20883,45243.5,10471,11082.5,7004.5,7779,3070,3016,30957,32040.5,,,,,,,,,,108.05,5967.5,5833,3068 -NVIDIA T1200 Laptop GPU,,Turing,855,1425,10000,128,GDDR6,4096,12_1,4.6,12,965,~24,,29050,50827,13779,14387,9255,10134,3891,3595,44135,38139,,,,,,,,,,216.77,,7416,2370 -NVIDIA Quadro T1000 (Laptop),N19P-Q1,Turing,1395,1455,8000,128,GDDR5,4096,12_1,4.6,12,1651,~20.6,375510,25273,53628.5,11592,11377,7783,8727,3474,3261,31509,35033.5,,659.5,315.3,243.6,,,,110.3,39.3,185.7,6818,5965.5,2768 -NVIDIA Quadro T1000 Max-Q,N19P-Q1,Turing,795 / 1230,1455,8000,128,GDDR5,4096,12_1,4.6,12,1651,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Arc 8-Cores iGPU,Meteor Lake iGPU,Xe LPG,,2300,,,,,12_2,4.6,5,2,~18.2,,32084,44146,12973,12693,8211,8971,3693,3305,43185,,,817.4,,,296.5,,,,,151,17440,7627,2611 -Intel Arc A350M,Alchemist,Xe HPG,1150,,14000,64,GDDR6,4096,12_2,4.6,6,625,~16.4,,25146.5,36314.5,10766,10730,6009,7147,3397,3050,31023,31625,,640,309,194,,,,,19.5,149.27,,4447,2796 -Intel Arc 7-Cores iGPU,Meteor Lake iGPU,Xe LPG,,2200,,,,,12_2,4.6,5,2,,,,,,,,,,,,,,,,,,,,,,,,, -NVIDIA T600 Laptop GPU,,Turing,,1400,10000,128,GDDR6,4096,12_1,4.6,12,977,~21.5,,35278,53941,10973,10498,7475,7928,3075,2766,39112,43438,,585.11,,,,,,,,268,,5694,2200 -NVIDIA T550 Laptop GPU,TU117,Turing,1065,1665,12000,64,"GDDR5, GDDR6",4096,12_1,4.6,12,567,~14,,17614,33218.5,8160,8066.5,4581,4890,2066,1928,25155,31003,,449.9,229.9,172.6,,,,,,189.2,,5190, -AMD Radeon RX 490M,Polaris,Polaris,,,,,GDDR5,,12,,14,2692,,,,,,,,,,,,,,,,,,,,,,,,, -NVIDIA GeForce GTX 980M,,Maxwell,1038,1127,5000,256,GDDR5,8192,12_1,4.5,28,3356,~19.6,327632,22162,65241,11177,12517,8343,9682,2949,2805,31944,26811,,660,338,252,,,,110.6,40.1,101.3,6837,6552,2294.5 -AMD Radeon RX Vega M GH,Vega Kaby Lake-G,Vega,1063,1190,,,HBM2,4096,12_1,,14,2168,~22.2,357446,24988.5,59162,13212,14302,8506,10248,2999,2908,,33046,,,,,,,,,,143.95,13015,6661,2867 -NVIDIA Quadro M5000M,,Maxwell,962,1051,5000,256,GDDR5,8192,12_1,4.5,28,2996,~22.6,324161,23878.5,63738,11110,11845,8094.5,9227.5,,,,30962,,,,,,,,112.3,47.85,113.3,7675.5,6291,2173 -AMD Radeon Pro Vega 20,Vega Mobile,Vega,815,1283,,,HBM2,4096,,,14,1856,~17.8,278586,21984,62318,11934.5,12289,7558,9043.5,2794.5,2600.5,33590,32864,,578,111.3,117.8,,,,,35.1,129.5,12230,6431,2081 -AMD Radeon 780M,Phoenix,RDNA 3,1500,3000,,,,,12_2,4.6,4,344,~20.1,431550,34005,47301,11819,12032,6922,7627.5,2939,2639,40258,42241.5,,574,288,224,153.8,,,,22.2,185.1,15175.5,10102,1466 -Apple M3 10-Core GPU,,,,,,,LPDDR5-6400,,,,5,45,~13.9,,,,,,,,,,,,,864.2,563.5,393,,,,,,129.8,,, -NVIDIA GeForce MX550,GN18-S5,Turing,,1320,12000,64,GDDR6,,12_1,4.6,12,728,~19.2,,29680,40364,10319.5,10005,5869,6125.5,2800,2470,36560,42476,,,,,,,,,27.1,173.45,,6176,1058 -NVIDIA GeForce GTX 1050 Ti Mobile,N17P-G1,Pascal,1493,1620,7000,128,GDDR5,4096,12_1,4.5,14,2537,~18.4,299188,22393,50514,9117,9615.5,6703.5,7740.5,2450.5,2326,30690,27473,,,322.4,,,,,,,99.7,6756,5380,2646 -AMD Radeon 680M,RDNA 2 Rembrandt,RDNA 2,,2400,,,,,12_1,,6,710,~18.8,353317,30929,43275,10382,10419,6287,6865,2609,2323,33260,32341,,,,,263,,,,18.8,144.56,15245.5,5813,1277 -NVIDIA Quadro P2000,GP107GL,Pascal,1215,1468,6008,128,GDDR5,4096,12_1,4.5,14,2354,~19,350317,24335,43565.5,8699,8387,6160,6847,2259,2046,32964,33795,,,,,,,,,34.6,180.85,6782,4858.5,2691.5 -NVIDIA Quadro P2000 Max-Q,GP107GL,Pascal,1215,1468,6008,128,GDDR5,4096,12_1,4.5,14,2354,~17.8,326075,14996,28679,8363,8148,5958,6742,2206,2049,32724,31482,,,,,,,,,,137.9,6820,,2617 -NVIDIA Quadro M4000M,,Maxwell,975,1013,5012,256,GDDR5,4096,12_1,4.5,28,2996,~15.5,,17686,49204,9295.5,10259,6937,7723,,,,,,,,,,,,,,93.2,,5686, -NVIDIA GeForce GTX 970M,,Maxwell,924,1038,5000,192,GDDR5,6144,12_1,4.5,28,3356,~19.6,274626,20720,51247,9403,9877.5,6565,7463,,,28845,26468,,,,,,,,93,,90.5,6830,5137.5,2223 -NVIDIA T500 Laptop GPU,,Turing,1365,1695,10000,64,"GDDR5, GDDR6",4096,12_1,4.6,12,1663,~12.4,,15851,23453,8132,7995.5,3973.5,4224.5,1958,1787.5,,31133,,503,236,183,,,,,,173,,4734,1976 -NVIDIA GeForce MX450,N17S-G5 / GP107-670-A1,Turing,1395,1575,10000,64,"GDDR5, GDDR6",2048,12_1,4.6,12,1231,~12.6,335125,18399,27570,8068,8250,4306,4725,2099,1900,22831,,,411,209,156.9,235,,,57.2,20.5,130,,4104,986 -AMD Radeon R9 M395X,Amethyst XT,GCN 3,,909,5460,256,GDDR5,,12 (FL 12_0),,28,3347,~15.6,,,,,,7042,7921,,,,,,,,,,,,,,,,, -NVIDIA GeForce GTX 1050 Ti Max-Q,N17P-G1 Max-Q,Pascal,1151 – 1290,1290 – 1417,7000,128,GDDR5,4096,12_1,4.5,16,2172,~16.5,324705,24021,46952,9106,8752,6688,7324,2485,2261,29503.5,28797,,531,253.15,184.85,,,,,40.1,102,4972,4879,2221.5 -AMD Radeon Pro Vega 16,Vega Mobile,Vega,,,,,HBM2,4096,,,14,1856,~17.4,,29958,56273,10926,10569,6902,7745,2443,2198,,,,,,,,,,,,130.2,,, -AMD Radeon RX Vega M GL / 870,Vega Kaby Lake-G,Vega,931,1011,,,HBM2,4096,12_1,,14,2168,~13.6,299071,19473,38812,9380,9862,6225,7329,2225,2072,,16707,,502,182.5,132.5,,,,,,120.65,9791,956,2253 -AMD Radeon Pro WX Vega M GL,Vega Kaby Lake-G,Vega,931,1011,,,HBM2,4096,12_1,,14,2168,~12.2,,19765,38986,9731,10020,6253,7333,2213,2062,,,,,,,,,,,,132.5,9667,967,1567 -AMD Radeon R9 M485X,,GCN 3,,,5000,256,GDDR5,8,12 (FL 12_0),,28,2771,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Radeon R9 M295X,Tonga,GCN 3,,850,5448,256,GDDR5,,12 (FL 12_0),,28,3347,~17.2,,21221,38132,8729.5,8850.5,5941,6590.5,,,29972,35421,,393,179,,,,,,,108.7,,5205, -AMD Radeon R9 M390X,Amethyst (XT) / Tonga,GCN 3,,723,5000,256,GDDR5,4096,12 (FL 12_0),4.3 / Vulkan,28,3111,~15.5,,,,9082,9448,,,,,,,,,,,,,,,,,,, -NVIDIA Quadro M3000M,,Maxwell,1050,,5000,256,GDDR5,4096,12_1,4.5,28,2996,~16.8,,21407.5,44602.5,8539.5,8288.5,5971.5,6536.5,,,27405,27320.5,,,249.9,,,,,79.95,38.15,92.05,5649.5,4737,2261 -NVIDIA GeForce GTX 1050 Mobile,N17P-G0,Pascal,1354,1493,7000,128,GDDR5,4096,12_1,4.5,14,2537,~14.9,287287,18946,38041.5,7552,7678.5,5452,6066,1774,1610,26560,25817,,533,247,187.4,,,,78.3,,102.4,6831,4583,2008 -AMD FirePro W7170M,Tonga,GCN 3,723,,5000,256,GDDR5,4096,12 (FL 12_0),4.3 / Vulkan,28,2996,~16.5,,21612,43124,9580,9708,6180,6935,,,26345,28430,,,,,,,,76.9,30.7,102.8,9551,925,1412 -AMD Radeon R9 M395,,GCN,834,,5460,256,GDDR5,2048,12 (FL 12_0),4.3 / Vulkan,28,3111,~15.4,,16305,38490,8305,8656,5920,6819,,,,,,,,,,,,,,,,, -NVIDIA GeForce GTX 880M,N15E-GX-A2,Kepler,954,,5000,256,GDDR5,8192,12 (FL 11_0),4.3,28,3565,~16.8,268706,19151,39891,8319.5,8578,5482.5,6101,,,28022,29036.5,,65,,,,,,81.35,,101.4,10451,4916,899 -NVIDIA GeForce GTX 1050 Max-Q,N17P-G0 Max-Q,Pascal,999 - 1189,1139 - 1328,7000,128,GDDR5,4096,12_1,4.5,14,2172,~14,318811,18259.5,35392,7347.5,7153.5,5223,5649.5,1753.5,1615,26080.5,19690.5,,441.6,223,165.2,,,,70.2,30.8,109.5,6811,4342.5,1702 -Apple M3 8-Core GPU,,,,,,,LPDDR5-6400,,,,5,45,,,,,,,,,,,,,,,,,,,,,,,,, -Apple M2 10-Core GPU,,,,1398,,,LPDDR5-6400,,,,5,557,~13.4,,,,,,,,,,,,,911.5,535,339.5,,,,,,130.98,,, -AMD Radeon 760M,Phoenix,RDNA 3,1500,2800,,,,,12_2,4.6,4,345,~17.2,,28339,41767,9781.5,9603,5694,6141.5,2371.5,2115.5,32985,35337,,,,,196.8,,,,,189.25,14191,6922,981 -AMD Radeon 660M,RDNA 2 Rembrandt,RDNA 2,,1900,,,,,12_1,,6,710,~13.6,283076,21223,30129.5,7003.5,6651.5,4391.5,4734.5,1700,1523,23222,27876,,,,,124.5,,,,10.9,119.65,13243,3427.5,822 -NVIDIA GeForce GTX 780M,N14E-GTX,Kepler,823,,5000,256,GDDR5,4096,11,4.3,28,3851,~15.2,,18252,35965,7690.5,7776.5,4742,5244,,,26827,23381.5,,,,,,,,75.95,,90.5,6833,,749.5 -NVIDIA Quadro K5100M,N15E-Q5-A2,Kepler,771,,3600,256,GDDR5,8192,11,4.3,28,3797,~12.7,2197,17583,31015,7058,6880,4467,4793,,,24795,24910,,,,,,,,,,119.25,6539,,774 -NVIDIA GeForce GTX 680MX,,Kepler,720,,5000,256,GDDR5,2048,11,4.3,28,4070,~15.1,,,,6883,6736,,,,,25501,,,,,,,,,,,,,, -AMD Radeon Pro WX 4150,Polaris 11,Polaris,,1053,7000,128,GDDR5,4096,12,Vulkan,14,2480,,,,,,,,,,,,,,,,,,,,,,,,, -NVIDIA GeForce GTX 965M,"N16E-GS, N16E-GR",Maxwell,924 / 935,950 / 1151,5000,128,GDDR5,4096,12_1,4.5,28,3266,~13.8,259766,18013,34748,7896,7322,4851,5536,1952,1810,23562,24774,,446,213.5,160,,,,66.3,27.1,93.9,6840,4597,1779 -AMD Radeon RX 560X (Laptop),Polaris 11,Polaris,1172,1275,6000,128,GDDR5,4096,12,Vulkan,14,2535,~12.1,189597,13326,35511,7697,8211.5,5514,6329,1925,1789,19829,25527,,413.7,96.2,103.4,,,,,,86.3,6202.5,3450.5,1837.5 -AMD Radeon RX 560 (Laptop),Polaris 11,Polaris,1090,1292,6000,128,GDDR5,4096,12,Vulkan,14,2535,~12.3,,13138,36528,6955,8329,4899,5738,,,,,,,,,,,,,,98.55,,, -NVIDIA Quadro M2200,N17P-Q3,Maxwell,694,1038,5508,128,GDDR5,4096,12_1,4.5,28,2527,~14.2,289176,20644,37796,7581,7372,5252,5850,1903,1724,24622,28149.5,,432,219.1,163.7,,,,,27.9,103.9,6833,4332,2099 -NVIDIA GeForce GTX 870M,N15P-GT,Kepler,941,,5000,192,GDDR5,6144,12 (FL 11_0),4.3,28,3565,~15.4,,16787,31322,7120,7156,4294,4694,,,24035,25112,,,,,,,,64.7,,93.8,10324,, -AMD Radeon R9 M290X,Neptune,GCN,850,900,4800,256,GDDR5,4096,12 (FL 11_1),4.3,28,3629,~15.2,,17182,33147,6859,6817,4793,5294,,,23961,,,,,,,,,62,,,,, -AMD Radeon HD 8970M,Neptune,GCN,850,900,4800,256,GDDR5,4096,11.1,4.2,28,3866,~13.5,,12468.5,31027,5422,6818,4245.5,5038.5,,,18666.5,18211.5,,,,,,,,56.1,,,5919,, -AMD Radeon RX 460 (Laptop),Polaris 11 / Baffin XT,Polaris,,1180,6000,128,GDDR5,4096,12,Vulkan,14,2685,~9.7,96383,9968,31294,5488,7792.5,4089,5107.5,,,,,,,,,,,,,,57.2,6157,4404, -NVIDIA GeForce GTX 680M,N13E-GTX,Kepler,720,,3600,256,GDDR5,4096,11,,28,4211,~13.5,,15258.5,27684,5996.5,5897.5,3762.5,4049,,,21533.5,22760,,,,,,,,57.65,,,8846,,614 -NVIDIA GeForce GTX 775M,N13E-GTX-A2,Kepler,719,,3600,256,GDDR5,4096,11,,28,3734,~10.2,,,,6101,6071,,,,,,,,,,,,,,,,,,, -NVIDIA Quadro P1000,,Pascal,1493,1519,6008,128,GDDR5,4096,12_1,4.6,14,2508,~11.9,,20654,30721,6377,6001,4508,4787,1560,1395,24240,32223,,374.7,187.9,144.3,,,,,26,136.5,5759,3531,1260 -AMD Radeon R9 M390,Pitcairn,GCN,,958,5460,256,GDDR5,2048,12 (FL 11_2),,28,3111,~12.9,,,,6838,6819,,,,,,25800,,,,,,,,,,101.6,12092,4417,1287 -Intel Iris Xe MAX Graphics,iDG1LPDEV,Gen. 12 Xe,,1650,4266,128,LPDDR4x,4096,12.1,4.6,10,1140,~14.2,177442,20526.5,36993,8024,8214,5658,6333,1876,1743,,22466,,,,,,,,,18.8,105,11787,3898,3073 -AMD FirePro M6100,Bonaire,GCN,1100,,6000,128,GDDR5,2048,12 (FL 12_0),4.3,28,3727,~12,,14975,25342,5639,5369,3476,3837,,,19876,25004,,,101,,,,,56.2,,112.5,11116,3355,1084 -AMD Radeon HD 7970M,Wimbledon XT,GCN,850,,4800,256,GDDR5,,11.1,4.2,28,4245,~14.2,,16428,31869,5907,5645,4307,4694,,,21938,22370.5,,,,,,,,57.65,,,8985.5,,1218 -AMD Radeon Pro 560X,Polaris 21,Polaris,907,,5080,128,GDDR5,4096,12,Vulkan,14,2384,~13.4,255217,18251,32449,7910,7590,4961,5699,1775,1614,,,,,,,179.75,,,,,98.4,,, -AMD Radeon Pro 560,Polaris 21,Polaris,907,,5080,128,GDDR5,4096,12,Vulkan,14,2384,~10.4,198867,15047,23105,5718,5305,3576,3892,1519,1376,18982,24516,,283.6,70,76.8,,,,,18.2,86.8,9792,3756,1323 -AMD Radeon Pro 460,Polaris 11 / Baffin XT,Polaris,900,,5000,128,GDDR5,4096,12,Vulkan,14,2685,~11.4,,16824,27064,6963,6749,4104,4584,1374,,19234,27694,,320.9,92.9,,,,,,18.3,114.7,13571,3841,1192 -AMD Radeon Pro WX 4130,Polaris,Polaris,,1053,7000,128,GDDR5,4096,12,Vulkan,14,2480,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Iris Xe Graphics G7 96EUs,Tiger Lake Xe,Gen. 11 Ice Lake,400,1350,,,,,12_1,4.6,10,1217,~12.1,207909,18954,26820,6865,6518,4659.5,5116,1724,1552.5,24384,28231,,257.7,164.4,118.65,104.6,,,,15.05,97.85,15631.5,3402,2309.5 -NVIDIA GeForce MX350,N17S-G5 / GP107-670-A1,Pascal,1354,1468,7000,64,GDDR5,,12_1,4.6,14,1394,~12.7,285166,16226,24744,6376,6166,3985,4371,1491,1335.5,,23907,,,,,,,,,19.6,110,6839,3661,1582 -NVIDIA GeForce GTX 960M,N16P-GX,Maxwell,1096,1202,5000,128,GDDR5,4096,12 (FL 11_0),4.5,28,3200,~12.4,226308,16283,30085.5,5535.5,5278,3984,4318,1202,1148,,23733,,,,,,,,56.15,,81.4,6741,3337,1254 -NVIDIA Quadro M1200,N17P-Q1,Maxwell,991,1150,5000,128,GDDR5,4096,12 (FL 11_0),4.5,28,2527,~12.6,240298,13600,27557,5514.5,5310,3878,4141.5,1290,,,26109,,,,,,,,30.1,27.7,108.15,,388,1207 -NVIDIA Quadro P620,,Pascal,1177,1442,6000,128,GDDR5,4096,12_1,4.5,14,1663,~16.1,310112,23291.5,30409.5,6519,5909,4447.5,4672.5,1582.5,1388,25105,35092,,,,,,,,,,166.3,6822,3516,2058 -AMD Radeon RX 550X (Laptop),Polaris 12,Polaris,1176,,7000,128,GDDR5,4096,12,Vulkan,14,1800,~9,184578,11529.5,20039,5502.5,5344.5,3245,3688,1164.5,1050,14519.5,21444,,269,84.3,75.6,,,,35,12.4,79.55,9698,1822.5,805 -AMD Radeon RX 550 (Laptop),Polaris 12,Polaris,1287,1476,6000,128,GDDR5,4096,12,Vulkan,14,2460,~11.5,239256,13493,23049.5,5226,4559,3248.5,3645,1410,1280.5,,23308,,,,,,,,,,67.1,,921,1609 -AMD Radeon RX 640,Polaris 12,Polaris,1218,1218,6000,64,GDDR5,4096,12,Vulkan,14,1586,~7.7,,12879.5,19945.5,5411,5235,3119,3498.5,1116.5,1007.5,14141,20261,,258.1,80.2,73.5,,,,,,84.15,369,2934,719 -AMD Radeon Pro WX 3200,Polaris 12,Polaris,1082,,6000,128,GDDR5,4096,12,Vulkan,14,1541,~8.2,105833,11960,18866,4657,4337.5,2871,3156,1059,955.5,12538,16329,,,,,,,,,13.4,76.5,9857,649,921 -AMD Radeon Pro 555X,Polaris 21,Polaris,855,,5080,128,GDDR5,4096,12,Vulkan,14,2384,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Radeon Pro 555,Polaris 21,Polaris,855,,5080,128,GDDR5,2048,12,Vulkan,14,2384,~11.7,217690,15337,22624,5566,5185,3430,3721,1207,1078,,26389,,,,,,,,41.9,16,78.3,,2991,1001 -AMD Radeon Pro 455,Polaris 11,Polaris,855,,5000,128,GDDR5,2048,12,Vulkan,14,2605,~11,229045,15766,23434,5774,5388,3463,3759,1254,1118,16522,25873,,229,92.2,,,,,,16.4,100,12740,3049,918 -NVIDIA Quadro P600,,Pascal,1430,1620,5012,64,GDDR5,,12_1,4.5,14,2222,~12.4,243785,19090.5,28957,5137.5,4655,3824.5,4083,1312,1162,,22920,,,,,,,,,23.9,139.9,13234,2939,1144 -NVIDIA GeForce MX250,N17S-G2,Pascal,1518,1582,7000,64,GDDR5,4096,12_1,4.5,14,1759,~10.3,235421,13121,21545,4850,4633,3244.5,3660,1220.5,1103,16487.5,25428.5,,268.6,141.2,105.3,,,,43.6,17,99.55,6469,2806,1172.5 -NVIDIA GeForce MX330,N17S-LP / N17S-G3,Pascal,1531,1594,7000,64,GDDR5,,12_1,4.6,14,1394,~9.8,243721,15382,20729,5121.5,4834,3470,3762,1235.5,1160,,,,,,,,,,,18.1,98.2,,2890,1047 -NVIDIA GeForce MX150,N17S-G1,Pascal,1468,1532,6008,64,GDDR5,4096,12_1,4.5,14,2404,~10.8,223740,12943,19132,4576,4494,3104,3488,1132.5,1046,10991.5,19312.5,34443,207.9,123.85,90.9,140,,,41.8,15.7,94.1,6526.5,2581,773.5 -Intel Iris Xe Graphics G7 80EUs,Tiger Lake Xe,Gen. 11 Ice Lake,400,1350,,,,,12_1,4.6,10,1217,~10.6,166479,16291,21817.5,5598,5332,3649,4010,1333.5,1180,21729,25371,,254.95,159.2,88.8,104.6,,,43.8,15.95,86.18,13741.5,2903.5,2074 -Intel Graphics 4-Cores iGPU (Arc),Meteor Lake iGPU,Xe LPG,,1950,,,,,12_2,4.6,5,6,,,,,,,,,,,,,,,,,,,,,,,,, -NVIDIA Quadro M2000M,,Maxwell,1038,1197,5000,128,GDDR5,4096,12 (FL 11_0),4.5,28,2996,~11,,17603.5,29795,5456,5143,3859,4157,,,20567,25604,,310.7,163.9,122.9,,,,52.7,20.4,92.65,4616,3145,1426 -NVIDIA Quadro K5000M,N14E-Q5,Kepler,706,,3000,256,GDDR5,4096,11,4.1,28,4214,~12.2,,16890,23060.5,5152,4893,2735,2797.5,,,20139,24239,,,,,,,,47.45,,,6814,,219.5 -NVIDIA Quadro K4100M,N15E-Q3-A2,Kepler,706,,3200,256,GDDR5,4096,11,4.3,28,3797,~12.3,,16071.5,24685,5259.5,4957,3505,3654,,,19909,25559.5,,,,,,,,48.1,,115,6751,,476.5 -NVIDIA GeForce GTX 770M,N14E-GS,Kepler,811,,4000,192,GDDR5,3072,11,4.3,28,3851,~11.5,,14766,23513,5066,4889,3131,3347,,,19208,22486,,321,,,,,,48.5,,95.1,6804,, -AMD Radeon RX 540X,Polaris 12,GCN 4.0,,1219,6000,128,GDDR5,4096,12_0,4.6,14,2095,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Radeon Pro WX 2100,Polaris 12,Polaris,,1219,6000,128,GDDR5,2048,12,Vulkan,14,2095,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Radeon RX 540,Polaris 12,Polaris,,1219,6000,128,GDDR5,4096,12,Vulkan,14,2460,~8.6,138197,12853.5,24170,4664,4646,3059,3686,869,787,13719.5,15818,,,,46.12,,,,31.2,19.3,76.4,9285,998,858 -AMD Radeon Pro WX 3100,Polaris 12,Polaris,,,6000,128,GDDR5,4096,12,Vulkan,14,2460,~8.7,176357,11887.5,18522,4058,3690.5,2480.5,2671,918,820,11702,18186,,,,,,,,,10.1,75.35,8486.5,2414,921.5 -NVIDIA GeForce GTX 860M,N15P-GX,Maxwell,1029,,5000,128,GDDR5,4096,12 (FL 11_0),4.4,28,3565,~12.3,215144,15323.5,27960.5,5134,4902,3661,3904,,,19215.5,23220.5,,,41.1,,,,,49.5,,93.95,6718,3103.5,1081 -NVIDIA GeForce GTX 675MX,N13E-GSR,Kepler,600,,3600,256,GDDR5,,11,4.1,28,4092,~12.8,,13265,20325,4265.5,3978.5,2721,2831,,,18949.5,23190,,,,,,,,40.9,,,,, -NVIDIA GeForce GTX 950M,N16P-GT,Maxwell,914 - 993,1124,1800 - 5000,128,"DDR3, GDDR5",4096,12 (FL 11_0),4.5,28,3200,~9.4,198867,13966,21355.5,4574.5,4367,2837.5,3200,1094,971,15710,21645,,244.7,132.3,99.15,,,,42.1,17.8,50.36,6029,2747,1242.5 -AMD Radeon Pro 450,Polaris 11,Polaris,800,,5080,128,GDDR5,2048,12,Vulkan,14,2605,~10.9,200518,14305,21533,4914,4502,3027,3252,1074,952,14245,24189,,,,,,,,,,69.8,,2589,774 -AMD Radeon 630,,GCN 1.0,,1219,6000,64,GDDR5,4096,12,4.5,14,1586,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Radeon 540X,,GCN 4.0,,1219,6000,64,GDDR5,2048,12_0,4.6,14,1586,~6.6,,10652,15167,4199,4097,2435,2779,933.5,797,11545,16578,,210,77.5,61.4,,,,30.1,9.3,66.4,7557,2330,671 -AMD Radeon R9 M470X,,GCN 2,1100,,6000,128,GDDR5,4096,12 FL11_1,4.3,28,2771,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Radeon R9 M385X,Strato-XT-M3,GCN,1100,,6000,128,GDDR5,4096,12 FL11_1,4.3,28,3104,~8.5,,8982,22544,4456.5,5514.5,2930.5,3404.5,,,12453,14024,,,,,,,,,,44.8,5087,3559,1331 -NVIDIA Quadro P520,,Pascal,1303,1493,6000,64,GDDR5,2048,12_1,4.5,14,1663,~9.2,141330,14169.5,19041,4492.5,4185.5,2960.5,3217.5,1135,1010.5,15720,18941.5,,319,165.7,105.1,,,,,35,102.3,5684.5,2619,1448 -NVIDIA GeForce GTX 850M,N15P-GT,Maxwell,876,,2000 - 5000,128,"DDR3, GDDR5",4096,12 (FL 11_0),4.4,28,3565,~9.5,,12781,21873,4495,4385.5,2765.5,3085.5,,,15862.5,16135,,,,,,,,41.8,,78.8,6463,2678,999 -NVIDIA Quadro M1000M,,Maxwell,993,1072,5000,128,GDDR5,4096,12 (FL 11_0),4.5,28,2996,~10.7,,15948.5,23422,4660.5,4229.5,3323,3497.5,,,,24483,,,,,,,,44.9,18.8,95.9,6839,2676,1179.5 -NVIDIA Quadro M620,,Maxwell,1018,,5012,128,GDDR5,2048,12 (FL 11_0),4.5,28,2527,~8.4,,13620,22119.5,4140,3801,2989,3130,968,862,17237,24751,,232.3,133.5,97.8,,,,,16.5,95.25,6851,2530,1079 -AMD Radeon RX Vega 11,Vega Raven Ridge,Vega,,1240,,,,,12_1,,14,2241,~10.3,157382,14579,20847.5,5350,5483,3038.5,3494,1127,935.5,,20608,,,,,,,,,,80.1,11001,3425,1074 -AMD Radeon R9 M280X,Saturn XT,GCN,900,1000,5500,128,GDDR5,4096,12 (FL 12_0),4.4,28,3239,~7,,7236,23201,3823,4698,2974,3498,1041,1012,9222,11618,,,,,120,,,,,50.7,5889,2934,1322 -AMD Radeon HD 7950M,Wimbledon Pro,GCN,700,,4000,256,GDDR5,2048,11.1,4.1,28,4245,,,,,,,,,,,,,,,,,,,,,,,,, -NVIDIA GeForce 945M,,Maxwell,928,1045,2000,128,DDR3,4096,12 (FL 11_0),4.5,28,3200,~9.3,193684,9643,19405,3451,3309.5,2504.5,2850,,,13507,20209,,208.5,113.6,,,,,,,39.32,5899,,733 -Qualcomm Snapdragon X Elite Adreno GPU,,,,,,,,,,,4,50,,,,,,,,,,,,,,,,,,,,,,,,, -NVIDIA GeForce GTX 765M,N14-GE,Kepler,850,,4000,128,GDDR5,2048,11,4.3,28,3851,~8.5,,12408,17616,4083,4019,2362,2479,,,14870,19624,,266,,,,,,35.8,,88.3,6795.5,2400,517 -NVIDIA Quadro K4000M,N14E-Q3,Kepler,600,,2800,256,GDDR5,4096,11,4.1,28,4214,~9.7,,12751,19058,3777,3466,2192,2199,,,15362,20518,,,,,,,,36.5,,,6804,,221 -NVIDIA Quadro P500,,Pascal,1455,1519,5012,64,GDDR5,,12_1,4.5,14,2222,~5.2,,9301,12868,3338,3022,2118.5,2254.5,,,,,,,,,,,,,11.9,82.45,4374,,547 -Intel UHD Graphics 64EUs (Alder Lake 12th Gen),Alder Lake Xe,Gen. 12,,1400,,,,,12_1,4.6,10,710,~9.9,206410,18180,20306.5,4589,4077.5,3057.5,3252,1077.5,950,15907,23680,,320.3,234.9,130.9,120.3,,,,10.05,79.56,16251.5,1767,1394 -Intel Iris Plus Graphics G7 (Ice Lake 64 EU),Ice Lake G7 Gen. 11,Gen. 11 Ice Lake,300,1100,,,DDR4,,12_1,4.5,10,1662,~7.6,145594,12848.5,16713,4436,4187,2532,2717.5,892,791,14442,16163.5,,165.55,46.6,59.85,102,,,,,65.2,10554,2532,1321 -AMD Radeon RX Vega 10,Vega Raven Ridge,Vega,,1300,,,,,12_1,,14,2241,~6.3,113236,10318.5,14834.5,3449,3389,2028,2272,845,737,11391,14890,,149.35,46.3,43.15,,,,25.1,7,47.11,7856,2453,514 -Intel Iris Pro Graphics P580,Skylake GT4e,Gen. 9 Skylake,350,1100,,eDRAM + 64/128,eDRAM,128,12_1,4.4,14,2882,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Iris Pro Graphics 580,Skylake GT4e,Gen. 9 Skylake,350,1050,,eDRAM + 64/128,eDRAM,128,12_1,4.4,14,2882,~7.8,184880,11346,14594,3510,3220,1836,1903,,,,,,,,,,,,,,85.55,11355,2308,875 -NVIDIA GeForce GTX 675M,N13E-GS1,Fermi,620,,3000,256,GDDR5,2048,11,,40,4285,~10.3,,12533,18056,3531,3218,2182,2331,,,14756,20452.5,,,,,,,,34.7,,,6084,, -NVIDIA GeForce GTX 580M,N12E-GTX2,Fermi,620,,1500,256,GDDR5,2,11,,40,4553,~16.3,,,,3424,3116.5,,,,,14403.5,20550.5,27355,,,,,,,,,,6209.5,, -AMD Radeon HD 6990M,Blackcomb XTX,Terascale 2,715,,900,256,GDDR5,2048,11,,40,4539,~24.7,,,,3535,3227,,,,,15113,21082,59748,,,,,,,,,,8394.5,, -AMD Radeon R9 M470,Saturn,GCN 2,1000,,6000,128,GDDR5,4096,12 FL11_1,4.3,28,2771,~10,,15817,24365,,,3415,3655,,,,,,,,,,,,,,96.9,,, -AMD Radeon R9 M385,,GCN,,,6000,128,GDDR5,4096,11.1,4.3,28,3104,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Radeon R9 M380,Strato Pro GDDR5,GCN,1000,,6000,128,GDDR5,4096,11.1,4.3,28,3104,,,,,,,,,,,,,,,,,,,,,,,,, -NVIDIA GeForce GT 650M SLI,N13E-GE,Kepler,790,835,4000,2x 128,GDDR5,2,11,,28,4285,~10.7,,,,3621,3597,,,,,12811.5,16841.5,,,,,,,,35.8,,,5647,, -NVIDIA GeForce GTX 485M,N12E-GTX-A1,Fermi,575,,1500,256,GDDR5,,11,,40,5091,~11,,,,2942,2709,,,,,13536,19877.5,,,,,,,,,,,5859.5,, -NVIDIA Quadro K3100M,N15E-Q1-A2,Kepler,706,,3200,256,GDDR5,4096,11,4.3,28,3797,~9.9,,13554,18389,3901,3581,2666,2797,,,15120,22437.5,,,,,,,,35.9,,99,6828,,259.5 -AMD FirePro W5170M,,GCN,,925,4500,128,GDDR5,2048,12 (FL 12_0),4.3 / Vulkan,28,2996,~8.1,,14139,19095,4564,4197,2736,2909,,,,,,,,,,,,,,82.3,,, -AMD Radeon R9 M370X,Cape Verde,GCN 1.0,800,,4500,128,GDDR5,2048,12 (FL 11_1),4.3,28,3132,~8.4,188948,11445,15454.5,3991,3637.5,2283,2419,,,13155,18481,,219.8,62.3,66.3,,,,,,61.3,11288,2226,659 -NVIDIA GeForce GTX 670MX,N13E-GR,Kepler,600,,2800,192,GDDR5,,11,4.2,28,4092,~10.9,,,,3768,3587,2261,2371,,,14530,20268,,,,,,,,34.3,,,,, -NVIDIA Quadro 5010M,N12E-Q5,Fermi,450,,1300,256,GDDR5 ECC,4096,11,,40,4679,~10.8,,,,3066,2693,,,,,12991,19036,,,,,,,,,,,6620,, -NVIDIA GeForce GTX 760M,N14E-GL,Kepler,657,,4000,128,GDDR5,2048,11,4.3,28,3851,~8.9,,11727,15900,3554,3369,2172.5,2271,,,14006.5,19221,,,,,,,,32.75,,81.85,6802.5,2064, -AMD Radeon R9 M275,,GCN,925,,4500,128,GDDR5,4096,12 (FL 11_1),4.2,28,3423,~7.6,145646,5652,11459,3182,3261,1603,1885,,,,10378,,,,,,,,,,50.5,,, -NVIDIA GeForce GTX 670M,N13E-GS1-LP,Fermi,598,,3000,192,GDDR5,3072,11,,40,4285,~9.1,,11267,14940,2989,2698,1824,1950,,,12670,19451.5,,,,,,,,27.6,,,6283,, -AMD Radeon RX Vega 9,Vega Raven Ridge,Vega,,1300,,,,,12_1,,14,2241,~7.3,131922,13582,19255,4424,4380,2524,2789,974,872,12628,13365,,192,73.1,57.4,,,,,,55,6966,2806,588 -NVIDIA Maxwell GPU Surface Book,Surface Book,Maxwell,954,993,5012,64,GDDR5,1024,12 (FL 11_0),4.5,28,2997,~7.1,123411,7464.5,11380,2736,2577,1919,2075.5,,,,15111,,,,,,,,,,34.98,5703.5,1676,1065 -AMD FirePro W5130M,,GCN,,925,4000,128,GDDR5,2048,12 (FL 12_0),4.3 / Vulkan,28,2996,~7,,10835.5,14380.5,3383,3106,1997,2110,,,,15680,,,,,,,,,,62.4,9635,896,629 -AMD FirePro M8900,Blackcomb XT,Terascale 2,680,,900,256,GDDR5,2048,11,,40,4630,~24.6,,,,,,,,,,,16703,,,,,,,,,,,,, -AMD Radeon HD 6970M,Blackcomb XT,Terascale 2,680,,900,256,GDDR5,2048,11,,40,4726,~10.3,,,,3054,2818.5,,,,,11898,17447,,,,,,,,,,,7951.5,, -AMD Radeon R9 M270,,GCN,725,,4500,128,GDDR5,4096,12 (FL 11_1),4.2,28,3545,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Radeon HD 8870M,,GCN,725,,4500,128,"GDDR5, DDR3",2048,11.1,4.1,28,4014,~8.2,,11331.5,15738.5,3292,2986,2091,2168.5,,,11715,15675,,,,,,,,25.9,,,7769,,629 -AMD Radeon HD 7870M,Heathrow XT,GCN,800,,4000,128,GDDR5,,11.1,4.2,28,4252,~7.1,,,,3037,2702,,,,,13065,,,,,,,,,,,,,, -NVIDIA Quadro K3000M,N14E-Q1,Kepler,654,,2800,256,GDDR5,4096,11,4.1,28,4214,~9.8,,,,2767,2427,,,,,11902,17037.5,,,,,,,,,,,6817.5,, -NVIDIA GeForce GTX 570M,N12E-GT,Fermi,575,,1150,192,GDDR5,3,11,,40,4553,~9.4,,,,2640,2399,,,,,11060,17004.5,,,,,,,,,,,5353.5,, -Intel UHD Graphics Xe G4 48EUs,Tiger Lake Xe,Gen. 11 Ice Lake,350,1450,,,,,12_1,4.6,10,1217,~6.2,97415.5,9422,15992,3508,3510,1962,2321,888,798,10650,10779.5,,210,,85,89.15,,,,,63.8,10477,1863,905 -Intel UHD Graphics Xe 32EUs (Tiger Lake-H),Tiger Lake Xe,Gen. 12,350,1450,,,,,12_1,4.6,10,948,~8.4,112982,15699.5,16207.5,3661.5,3195,2356,2506,784,676.5,13730,19728,,,,,104.8,,,,8.8,82.67,16428,1422,1197 -Intel UHD Graphics 770,Alder Lake xG,Alder Lake,300,1550,,,,,,,10,710,~9.1,179804,17404,16443,4157,3563,2738,2834,926.5,795.5,15865,23428,,236.1,161.8,86.4,118.7,,,34.9,11,94.6,,1667,1293 -Intel UHD Graphics Xe 750 32EUs (Rocket Lake),Rocket Lake Xe,Gen. 12,350,1450,,,,,12_1,4.6,14,990,~6.7,,12450,11377,3276.5,2817.5,2110,2188,741,638,,17496.5,,,,,,,,,,31.05,,1348,1115 -AMD Radeon 740M,Phoenix,RDNA 3,1500,2500,,,,,12_2,4.6,4,206,,,,,,,,,,,,,,,,,,,,,,,,, -AMD FirePro M6000,,GCN,750,,4500,128,GDDR5,2048,11.1,4.1,28,4184,~10.2,,,,2726,2422,,,,,10744,17152,,,,,,,,,,,10283,, -AMD FirePro M5100,,GCN,725,775,4500,128,GDDR5,2048,12 (FL 11_1),4.3,28,3727,~8.3,,12602.5,16784.5,3333,2967,2225,2327.5,,,12308,18391,,,,,,,,27.5,,63.7,10516,2051,658 -NVIDIA GeForce MX230,N17S-G0,Pascal,1519,1531,7000,64,GDDR5,4096,12_1,4.5,14,1759,~7.5,183041,10529.5,15796.5,3621.5,3363.5,2298.5,2467.5,839.5,748,,18399,,176,91,65,,,,,,83.4,6353,2018,1069 -Apple M2 8-Core GPU,,,,1398,,,LPDDR5-6400,,,,5,557,~12.3,,,,,,,,,,,,,839.2,483.7,306.9,,,,,,128.62,,, -Apple M1 8-Core GPU,,,1278,,,,LPDDR4X-4266,,,,5,1130,~14.7,280200,,,,,,,,,,,,588,345,248.65,,,,,,89.4,,, -AMD Radeon RX Vega 8 (Ryzen 4000/5000),Vega,Vega,,2100,,,,,12_1,,7,1438,~13.2,299071,22794,27249.5,6085.5,5951,3441.5,3760,1328,1165.5,22428,25886,,,,,138.1,,,,13.8,80.1,15423,4019,1158.5 -NVIDIA Quadro K2100M,,Kepler,667,,3000,128,GDDR5,2048,11,4.3,28,3797,~6.5,,10047,11835,2626,2393.5,1553,1606,,,10648,15586,,,,,,,,23.2,,68.05,6821,1586,150 -AMD Radeon HD 6950M,Blackcomb Pro,Terascale 2,580,,900,256,GDDR5,2048,11,,40,4726,~9.4,,,,2643,2452,,,,,10122,13719,,,,,,,,,,,,, -NVIDIA GeForce GT 755M,N14P-,Kepler,980,,5400,128,GDDR5,4096,11,,28,3825,~8.6,,10459,14966.5,2987.5,2800.5,2031,2105.5,,,12711,15861,,,,,,,,27.8,,,6577,, -Apple M1 7-Core GPU,,,1278,,,,LPDDR4X-4266,,,,5,1130,~9.3,,,,,,,,,,,,,620,376,240,,,,,,90,,, -AMD Radeon RX Vega 7,Vega Raven Ridge,Vega,,1800,,,,,12_1,,7,1438,~11.6,194758,19080,24726,5422.5,5248.5,3042,3347.5,1167.5,1032,17714,22493,37469,234.7,90.1,70,104.6,,,34.8,11.8,68.1,11417,2987.5,910 -NVIDIA GeForce GTX 660M,N13E-GE,Kepler,835,,4000,128,GDDR5,2048,11,,28,4285,~12.4,,10200,12861,2543,2369,1703,1751,,,10971,14704,46020,,,,,,,,,,6317.5,566, -NVIDIA GeForce 845M,,Maxwell,1071,1150,2000 - 5000,64/128,"DDR3, GDDR5",2048,12 (FL 11_0),4.4,28,3565,~5.2,,7519,13754,3019,2973,2113,2362,,,,,,,,,,,,,,41.32,5924,, -AMD Radeon HD 8850M,,GCN,575,725,4500,128,"GDDR5, DDR3",2048,11.1,4.1,28,4014,~5.8,,6278,11387,2507,2349,1693,1845,,,8222.5,10281.5,,,,,,,,,,46.93,6957,, -AMD Radeon R9 M365X,,GCN,900,925,4500,128,GDDR5,4096,12,4.4,28,3145,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Radeon R9 M265X,Venus Pro,GCN,625,,4000,128,GDDR5,2048,12 (FL 11_1),,28,3629,~6.8,,9950,12510,2925.5,2633,1900,1997,,,10547,15426,,,,,,,,,,58.7,8596,688,801 -AMD Radeon HD 7850M,Heathrow Pro,GCN,675,,4000,128,GDDR5,,11.1,4.1,28,4252,~10.1,,,,2760,2467,,,,,12254,14111,,,,,,,,,,,,, -AMD Radeon R7 M465,Litho XT,GCN,825,960,4000,128,GDDR5,2048,11.1,,28,2539,~4.8,,,12250,,,,1740,,,,,,,,,,,,,,,,, -AMD Radeon HD 8790M,Mars XTX,GCN,850,,4500,128,GDDR5,2048,11.1,,28,4046,~7.2,,9478,12049,2513,2186.5,1648,1727,,,9835,13118,,,,,,,,,,,7734,, -AMD FirePro W4170M,Mars XTX?,GCN,850,900,4000,128,GDDR5,2048,11.2,,28,4046,~6.7,,10501,12506,2629,2315,1694,1766,,,,13622,,,,,,,,22.4,,54.7,9615,,462 -NVIDIA Quadro 4000M,Fermi,Fermi,475,,1200,256,GDDR5,2048,11,,40,4679,~9.6,,,,2334.5,2092,,,,,10722,17727,,,,,,,,,,,6638,, -NVIDIA GeForce GTX 470M,N11E-GT,Fermi,535,,1250,192,GDDR5,,11,,40,4792,~8.8,,,,2205.5,2002.5,,,,,9800.5,16562,,,,,,,,,,,5409,, -NVIDIA GeForce GTX 480M,N11E-GTX-A3,Fermi,425,,1200,256,GDDR5,2048,11,,40,4952,~16.5,,,,2387,2184.5,,,,,8872,15066.5,39907,,,,,,,,,,4919,, -NVIDIA GeForce GT 750M,N14P-GT,Kepler,967,,2000 - 5000,128,"DDR3, GDDR5",4096,11,,28,3910,~6.8,,8632,10822,2655,2543,1508,1574,,,9618,13670,,,,,,,,22.3,,64.2,6711,, -Intel Iris Pro Graphics 6200,Broadwell GT3e,Gen. 8 Broadwell,300,1150,,eDRAM + 64/128,,,12 (FL 11_1),4.3,14,3118,~6.5,,13058.5,15387.5,3094,2766,1685,1736.5,,,,,,,,,,,,,,,,, -NVIDIA GeForce MX130,N16S-GTR,Maxwell,1122,1242,,64,"DDR3, GDDR5",4096,12 (FL 11_0),4.5,28,2174,~7.2,170596,10635,13610,3112,2875,2203,2345,724.5,644.5,11968,18080,,182.3,95.6,73.5,,,,27.9,11.3,78.8,5682.5,1976,700.5 -NVIDIA GeForce 940MX,N16S-GTR-B/S,Maxwell,1122,1242,4000,64,"DDR3, GDDR5",4096,12 (FL 11_0),4.5,28,2836,~7.6,147706,7674,11513,2660.5,2556,1834,1996,710,626,8549,12843,28793,131.1,69.3,60.3,,,,25.2,6.65,64.5,6321.5,1928,799 -NVIDIA Quadro M520,,Maxwell,756,1019,,64,GDDR5,1024,12 (FL 11_0),4.5,28,2527,~6.9,166193,8544,13394,2884,2658,2139,2342,684,614,11278,17305,,178.5,95.4,74.3,,,,27.9,11.4,75.5,6813,2045,708 -NVIDIA Quadro K1100M,,Kepler,705,,2800,128,GDDR5,2048,11,4.3,28,3797,~5.4,,8005,9227.5,2018.5,1826.5,1299,1340.5,,,8992,12159,,,,,,,,17.5,,51.25,5843,,115 -AMD Radeon RX Vega 8 (Ryzen 2000/3000),Vega Raven Ridge,Vega,,1200,,,,,12_1,,14,2241,~6.2,113247,11149,15770,3676,3557,2142,2381,779,693,10294,12213.5,,146.5,34.85,41.7,,,,27.3,7.7,47.78,7779.5,2272,888 -NVIDIA GeForce 940M,N16S-GT-S/B,Maxwell,1072,1176,2000,64,DDR3,4096,12 (FL 11_0),4.5,28,3200,~5.5,123311,6342,8818.5,2485,2405.5,1422,1622,,,7530.5,11920,,127.5,64,55.1,,,,,,52.4,6088,1719,878 -Intel Iris Plus Graphics G4 (Ice Lake 48 EU),Ice Lake G4 Gen. 11,Gen. 11 Ice Lake,300,1100,,,DDR4,,12_1,4.5,10,1662,~6.4,82913.5,11495.5,14910,3461,3225,1988,2124,732,646,8812,13031,,210.6,130.1,78.1,,,,30.5,8.5,55.5,9931.5,1784,875 -NVIDIA GeForce 930MX,N16S-GMR,Maxwell,952,1020,2000,64,"GDDR5, DDR3",,12 (FL 11_0),4.5,28,2836,~5.3,135057,7025.5,9053,2339,2201.5,1427,1597,564,493,8062,12695,,124.1,66.8,52.6,,,,,,47.84,6810,1587.5,544 -NVIDIA Quadro M600M,,Maxwell,837,876,5012,128,GDDR5,2048,12 (FL 11_0),4.5,28,2996,~7.3,,13310,18491,3216,2911,2322,2430,719,631,12734,20563,,,104.3,75.7,,,,,,75.2,6832,1754,1016 -AMD FirePro W4190M,Mars XTX?,GCN,825,900,4000,128,GDDR5,2048,11.2,,28,2955,~5.7,,7894,12317,2570,2351,1663,1745,,,,12929,,,,,,,,,7.25,48.74,9490,902,984 -AMD Radeon R9 M375,,GCN,1015,,2200,128,DDR3,4096,12 (FL 11_1),4.3,28,3144,~5.3,,5932,8466,3269,3314,1514,1667,,,8275,11543,,,42.3,,,,,,,45.5,6544,657,931 -Intel Iris Plus Graphics 655,Kaby Lake GT3e,Gen. 9.5 Kaby Lake,300,1200,,,DDR3/DDR4,,12_1,4.5,14,2296,~12.4,137266,11622,14343,3180.5,2894,1850,1983,684,604.5,12287,17885,,6375.3,199.6,2387.05,,,,,8.2,74.01,10263,1712.5,1038 -AMD Radeon R7 M445,,GCN,920,,2000,64,GDDR5,4096,12,4.5,28,2770,~6,126481,7092,9617,2422,2208,1455,1579,530,471,6872,12657,,,,,,,,,6.6,45.91,7760,, -AMD Radeon R7 M380,,GCN,915,,2000,128,DDR3,4096,12 (FL 11_1),4.3,28,3144,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Radeon R7 M370,,GCN,875,,3600,128,GDDR5,2048,12,4.4,28,3145,~5.9,118746,7169,10364,2690,2524,1654,1760,,,8513,12983,,80.7,35.3,,,,,,,52.1,9537.5,507,475 -NVIDIA GeForce GT 650M,N13E-GE,Kepler,735,900,1800 - 4000,128,"DDR3, GDDR5",2048,11,,28,4285,~10.4,,6874,10647,2320,2111.5,1241,1420,,,9682,13514,44872,,,,,,,21.5,,,6483.5,1451,190 -NVIDIA Quadro K620M,,Maxwell,1029,1124,2000,64,DDR3,2048,11,4.3,28,3211,~5.2,,6591,9092,2526,2434,1424,1621,,,7880,10912,,,60.3,,,,,21.9,,60.6,5261,1737,508 -NVIDIA Quadro M500M,,Maxwell,1029,1124,4004,64,DDR3,2048,12 (FL 11_0),4.5,28,2922,~5.5,126522,6359,8348,2447,2364.5,1391.5,1594.5,,,7959,12377.5,,129.5,67.9,53.2,,,,21.35,6.3,40.69,6602,1741,850 -NVIDIA GeForce 840M,N15S-GT,Maxwell,1029,,2000,64,DDR3,4096,12 (FL 11_0),4.5,28,3565,~5.6,119888,5829,8723.5,2378,2340,1361,1573,,,7191,10332,,41,,,,,,22.5,,55.9,6070.5,1674,651 -NVIDIA GeForce GT 745M,N14P-LP/GS,Kepler,837,,1800,128,"DDR3, GDDR5",2048,11,,28,3910,~5.8,,8411,10147,2407,2249,1443,1531,,,9045,13462.5,,,,,,,,,,56.7,6788.5,1559,386 -AMD Radeon HD 7770M,Chelsea XT,GCN,675,,4000,128,GDDR5,,11.1,4.1,28,4252,~5.6,,,,2417,2110,,,,,10468,,,,,,,,,,,,,, -NVIDIA GeForce GTX 560M,N12E-GS,Fermi,775,,1250,192,GDDR5,1536,11,,40,4582,~16.8,,,,2031,1820,,,,,9300,15327,41315,,,,,,,,,,5407,, -Intel Iris Pro Graphics 5200,Haswell GT3e,Gen. 7.5 Haswell,200,1300,,eDRAM + 64/128,eDRAM,128,11.1,4.0,22,3845,~9.6,110085,9877,11930,2217,1923,1340,1380.5,,,8692,13123,41727,136,,,,,,20.8,,52.3,9744,1198,461 -NVIDIA GeForce GT 740M,"N14P-GV2, ...",Kepler,810,980,1600 - 1800,64/128,DDR3,2048,11,4.3,28,3941,~4.2,,5352,7403,1940,1848,1060.5,1150.5,,,6591,9700,3437,112,,,,,,14.4,,53.1,6522,509,455 -Intel Iris Plus Graphics 650,Kaby Lake GT3e,Gen. 9.5 Kaby Lake,300,1100,,64/128,DDR4,,12_1,4.4,14,2537,~7.1,161538,9149.5,13153,2924,2762,1655,1698,623,555,,15175,,,,,,,,,,59.11,8773,1730,813 -NVIDIA GeForce 930M,"N16S-GM-B/S, N16S-LP",Maxwell,928,941,1800,64,DDR3,2048,12 (FL 11_0),4.5,28,3200,~4.7,,6071,8309,2247,2153,1290.5,1460.5,,,7274,11760,,114.2,60.5,,,,,,,45.41,5853.5,1454,694 -Intel Iris Graphics 550,Skylake GT3e,Gen. 9 Skylake,300,1100,,eDRAM + 64/128,eDRAM,64,12_1,4.4,14,3027,~6.5,144742,8171,12986,2699,2533.5,1544,1638,620,554,9761,15910,,205.6,91.1,,78.5,,,,,60.8,10057,1692,819 -AMD Radeon 530,,GCN,1024,,2250,64,"DDR3, GDDR5",2048,12,4.5,28,2460,~4.6,107458,6371,9210,2508,2327,1386,1542,497,443,6337.5,11481,,116.05,45.2,34.85,,,,17,6.1,44.45,7731,895,386.5 -AMD Radeon 625,,GCN 1.0,,1024,2250,64,"DDR3, GDDR5",4096,12,4.5,28,1586,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Radeon RX Vega 6 (Ryzen 4000/5000),Vega Renoir,Vega,400,1500,,,,,12_1,4.6,7,1438,~7.6,182608,15286.5,21856.5,4446,4210,2537,2793,971.5,852,,14700,,166.2,,52.3,93.6,,,25.4,7.3,54.81,10195.5,2410.5,750 -Intel Iris Plus Graphics 645,Kaby Lake GT3e,Gen. 9.5 Coffee Lake,300,1150,,,"DDR3, DDR4",,12_1,4.5,14,1619,~3.6,,,,3238,2985,1736,1893,624,550,,,,198.3,101.8,69.6,,,,,,67.1,,, -NVIDIA GeForce 830M,N15?,Maxwell,1029,1150,1800,64,DDR3,2048,12 (FL 11_0),4.4,28,3565,~4.6,,6044,8104.5,2094,1961,1215,1386.5,,,6163,10222.5,,,,,,,,,,50.6,5855,1123,597 -NVIDIA GeForce MX110,N16V-GMR1,Maxwell,965,993,1800,64,"DDR3, GDDR5",,12,4.5,28,2174,~5.5,124036,9867,11266,2378,2121,1641,1714,515,450.5,9124,14612,,129.9,72.2,52.9,,,,21.8,9,57.8,4147,1214,468 -Intel Iris Plus Graphics 640,Kaby Lake GT3e,Gen. 9.5 Kaby Lake,300,1050,,64/128,DDR3/DDR4,64,12_1,4.4,14,2537,~5.4,145481,8067,11248,2561,2379,1310,1393.5,494.5,437,,14117.5,,171,31.2,56.1,,,,,6.5,56.2,9703,1677,778.5 -NVIDIA GeForce 920MX,N16V-GMR,Maxwell,965,993,1800,64,"DDR3, GDDR5",,12,4.5,28,3187,~4.7,110110,6545,9113.5,1983,1835,1336.5,1448,472,417,7407.5,12205.5,,115.2,62.85,47.4,,,,21.2,8.7,47.72,4366,1139,427 -Intel Iris Graphics 540,Skylake GT3e,Gen. 9 Skylake,300,1050,,eDRAM + 64/128,eDRAM,64,12_1,4.4,14,3027,~5.8,126078,7235,11327,2364,2211.5,1354,1448,,,8828,13568.5,,183,86,60.4,,,,,6.5,55.3,8277.5,1525.5,712.5 -Intel UHD Graphics 24EUs (Alder Lake-N),Alder Lake Xe,Gen. 12,450,750,,,,,12_1,4.6,10,346,~4,55681,7021,8303,1717,1490,1092,1172,364,317,5768,10126.5,,,,,54.05,,,,4.6,39.85,8288.5,644,504.5 -NVIDIA Quadro K2000M,N14P-Q3,Kepler,745,,1800,128,DDR3,2048,11,4.1,28,4214,~5.4,,8010,8766,1995,1798,1040,1046,,,7947,11991,,,,,,,,17,,,6749,,139.5 -NVIDIA GeForce GT 735M,N14M-LP,Kepler,575,889,1800 - 2000,64,DDR3,2048,11,,28,3910,~4.1,,4718.5,6757,1791,1713,933.5,1023.5,,,5687.5,8527,,,,,,,,,,49.24,6155,,255 -ATI Mobility Radeon HD 5870,Broadway-XT,Terascale 2,700,,1000,128,"DDR3, GDDR3, GDDR5",1024,11,,40,5090,~21,,,,,,,,,,7999,12830.5,36969,,,,,,,,,,6609,, -NVIDIA GeForce 825M,,Kepler,850,,1800,64,DDR3,2048,12 (FL 11_0),4.3,28,3609,~4.7,,5421,7416,1859.5,1756.5,1050,1150,,,6000,9290,,,,,,,,,,48.95,,, -NVIDIA Quadro 5000M,Fermi,Fermi,405,,1200,256,GDDR5,2048,11,,40,4889,~13,,,,,,,,,,7766.5,12967,,,,,,,,,,,,, -AMD FirePro M4000,Cape Verde GLM,GCN,600,,4500,128,GDDR5,2048,11,4.1,28,4184,~6.6,,7729,12587,2186,1981,1617,1713,,,8627.5,13930.5,,,,,,,,21.3,,,8477,,470 -ATI FirePro M7820,,Terascale 2,700,,1000,128,GDDR5,,11,,40,4976,~18.4,,,,,,,,,,,12531.5,,,,,,,,,,,,, -AMD Radeon HD 6870M,Granville-PRO,Terascale 2,675,,1000,128,"DDR3, GDDR3, GDDR5",1024,11,,40,4725,~21.2,,,,,,,,,,,14396,,,,,,,,,,,,, -AMD Radeon HD 8830M,,GCN,575,,2000,128,DDR3,2048,11.1,4.1,28,4014,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Radeon HD 8770M,,GCN,775,,4500,128,GDDR5,2048,11.1,,28,4046,~7.6,,,,2206,1934,,,,,8530,12680,,,,,,,,,,,7033,, -AMD Radeon R7 M260X,Mars,GCN,715,,4000,128,GDDR5,4096,12 (FL 11_1),4.3,28,3629,~5.1,98071,6619,9034,2114,1903,1336,1396,,,7640,11820,,129.1,37.9,,,,,,,36.37,6664,1212,399 -NVIDIA GeForce GTX 460M,N11E-GS,Fermi,675,,1250,192,GDDR5,1536,11,,40,4851,~14.3,,,,1805,1623,,,,,7507,12942,34874,,,,,,,,,,5312.5,, -NVIDIA GeForce GT 730M,,Kepler,725,,1800 - 2000,64/128,DDR3,4096,11,,28,4000,~4.8,86656,5782.5,7152,1886,1722,1001,1061,,,6788,10333,,48,,,,,,14.1,,47.57,6540,,276 -NVIDIA GeForce GT 645M,N13P-GS,Kepler,710,,1800,128,DDR3,2048,11,,28,4285,~5.6,,6537,8654.5,1962.5,1844.5,1146.5,1151.5,,,7356.5,11189,,,,,,,,17.65,,,5548,, -AMD Radeon HD 7750M,Lombok XL,GCN,575,,4000,128,GDDR5,,11.1,4.1,28,4252,~3.8,,,,2382,2085,,,,,,,,,,,,,,,,,,, -AMD FirePro M4100,,GCN,670,,4000,128,GDDR5,2048,12 (FL 11_1),4.3,28,3727,~4,,5125,6297,1921,1728,815,857,,,,9320,,,,,,,,10.9,,37.66,6578,,306 -AMD Radeon HD 8750M,Mars Pro,GCN,620,775,2000 - 4000,128,"GDDR5, DDR3",2048,11.1,,28,4046,~4.4,,5610,8524.5,1863.5,1698,1186,1276.5,,,6840,8901.5,,,,,,,,16.9,,40.25,6519,1217.5,372.5 -NVIDIA Quadro 3000M,Fermi,Fermi,450,,625,256,GDDR5,2048,11,,40,4679,~7.6,,,,1742,1539,,,,,7941,14220.5,,,,,,,,,,,6519,, -AMD Radeon R7 M270,Opal XT / Mars,GCN,825,,1800 - 2000,128,DDR3,4096,12 (FL 11_1),4.3,28,3629,~4,,4830.5,6364.5,2014,1857.5,1177,1258,,,6715,9791.5,,124.85,33.65,36.8,,,,23.9,,37.41,6141.5,1203,534.5 -AMD Radeon R7 M265,Opal XT / Mars,GCN,825,980,1800 - 2000,64/128,DDR3,4096,12 (FL 11_1),4.3,28,3629,~4.6,,5334.5,8401.5,2012,1882,1211,1336,,,6175,8876,,,,,,,,,,32.85,4563.5,, -NVIDIA Quadro FX 3800M,N10E-GLM4,G9x,675,,1000,256,GDDR3,1024,10,,55,5108,~19.7,,,,,,,,,,6779,12923,34790,,,,,,,,,,4928,, -NVIDIA GeForce GTX 285M,N10E-GTX1,G9x,576,,1020,256,GDDR3,1024,10,,55,5401,~9.5,,,,,,,,,,6498,12988.5,,,,,,,,,,,4941,, -ATI Mobility Radeon HD 4870,M98-XT,Terascale 1,550,,888,256,GDDR5,1024,10.1,,55,5453,~8.4,,,,,,,,,,6631,10655,,,,,,,,,,,5190,, -AMD Radeon R7 (Bristol Ridge),Bristol Ridge,GCN 1.2,,900,,64/128,,,12 (FL 12_0),4.4,28,2753,~3,52245.5,3942,5311,1794,1852,866,1013,358,347,5568,6644.5,,90,25.9,24.3,,,,13.9,3.5,23.16,4845,1450,362.5 -NVIDIA GeForce GT 640M,N13P-GS,Kepler,625,645,1800 - 4000,128,"DDR3, GDDR5",2048,11,,28,4285,~5.9,80836,5571,9024,1860.5,1728,1153,1225,,,7425,10625.5,12955,,,,,,,,,42.42,5635,1114,101 -AMD Radeon R7 (Carrizo),Carrizo,GCN 1.2/2.0,,800,,64/128,,,12 (FL 12_0),4.4,28,3116,~3.6,61071,4470,7431,1922,1792,1063,1137,,,5200,6528,,90.95,24.47,,,,,,,28.68,5071,1345,394 -AMD Radeon R7 (Kaveri),Kaveri,GCN 1.1,553,686,,64/128,,,12 (FL 12_0),,28,3481,~3.6,,4719.5,6544,1794.5,1734,1039,851,,,4483,7921.5,,,,,,,,,,31.18,4618,1112.5,460 -AMD Radeon R7 M460,,GCN,984,,2000,64,,,12,4.3,28,2854,~4.5,105142,4755,6081,2256.5,2139,1054,1177,,,5304,8587,,101.4,45.5,,,,,,,37.73,7777,1608,319 -AMD Radeon HD 7730M,Lombok GL,GCN,575,675,1800,128,DDR3,,11.1,4.1,28,4252,~5.9,,,,1684,1478,,,,,7056,9615,,,,,,,,,,,5154,, -AMD Radeon R7 M360,,GCN 2.0,1125,,2000,64,DDR3,4096,12,4.3,28,3145,~4,82837,4583,5746,2156,2029,1024,1146,463,410,5544,8273.5,,111.2,30.15,,,,,15.4,,34.29,7326,1523,313 -NVIDIA GeForce GTX 280M,N10E-GTX,G9x,585,,950,256,GDDR3,1024,10,,55,5401,~21,,,,,,,,,,6672,12551,38780,,,,,,,,,,5276.5,, -NVIDIA GeForce 920M,N16V-GM-S,Kepler,954,,1800,64,DDR3,4096,12 (FL 11_0),4.5,28,3244,~3.9,90619,5240.5,7242,1822,1718.5,1047.5,1161.5,363,329,5587,9003.5,,98.35,46.85,35.6,,,,,,44.28,5181.5,1323,586 -AMD Radeon HD 8690M,,GCN,775,,4500,64,GDDR5,1024,11.1,,28,4046,~4.7,,6093,7930,1790,1600,1151,1210,,,,9413,,,,,,,,,,40.98,7043,, -AMD Radeon 620,,GCN 1.0,,1024,2250,64,"DDR3, GDDR5",4096,12,4.5,28,1586,~3.3,,,,,,,1730,,,,,,,,,,,,,,,,, -AMD Radeon R7 M440,,GCN 1.0,1021,,2000,64,DDR3,,12,,28,2753,~4,87170.5,4783.5,6040,2305,2245,1079,1197.5,433,381,5584,8800,,112.1,27.1,,,,,,,33.01,8207,1516,289 -NVIDIA Quadro FX 3700M,NB9E-GLM3,G9x,550,,800,256,GDDR3,1024,10,,65,5601,~7.9,,,,,,,,,,5053,11000,,,,,,,,,,,4481,, -AMD Radeon R7 M260,Opal Pro / Mars,GCN,715,980,1800 - 2000,64/128,DDR3,4096,12 (FL 11_1),4.3,28,3629,~3.8,,4385,5603,1942.5,1897,946.5,1067,,,5424.5,7810,,,,,,,,14.2,,33.81,4919,1334,295 -AMD Radeon R7 M340,Meso Pro DDR3,GCN,1021,,2000,64,DDR3,,12,4.3,28,3104,~3.9,69098,5272.5,6153,2268,2148,1091.5,1208.5,,,5427,8982,,109.3,28.7,27.9,,,,,,33.47,6111.5,1455.5,274 -AMD Radeon 520,,GCN 1.0,1030,,2250,64,"DDR3, GDDR5",2048,12,4.5,28,2460,~3.8,77543,7240,8412.5,2232,2016.5,1232.5,1319,454.5,397,5266,6492,,114.1,52.9,35.4,,,,12,4.1,35.56,9124,929,325 -AMD Radeon 610,,GCN 1.0,,1030,2250,64,GDDR5,4096,12,4.5,28,1586,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Radeon 610M,RDNA 2,RDNA 2,400,2200,,,,,12_2,4.6,6,451,~4.6,,13194.5,13645.5,1931.5,1704,1154,1217,425.5,369.5,3575,7195,,,,,104.6,,,,,77.65,11925,517,142 -AMD Radeon RX Vega 6 (Ryzen 2000/3000),Vega Raven Ridge,Vega,,1100,,,,,12_1,,14,2168,~6.1,94451,10091,16787,3111,2991,2025,2245,617.5,551.5,8189,12132,,164.6,,,,,,,,46.42,7146,1790,558 -AMD Radeon RX Vega 5,Vega,Vega,,1400,,,,,12_1,,7,1438,~6.9,128628,12224,18282,3763,3535,2231.5,2438,825,733,11704,15564,,164.8,67.2,51.9,,,,26.2,7.3,62.25,,2134,678 -Intel UHD Graphics G1 (Ice Lake 32 EU),Ice Lake G1 Gen. 11,Gen. 11 Ice Lake,300,1100,,,DDR4,,12_1,4.5,10,1662,~5.1,94938,8380.5,11096.5,2329,2127,1444.5,1521,482,424.5,8750,10955,,157.8,84.4,52.7,,,,,,46.53,9382.5,1288,747 -Intel UHD Graphics 630,Kaby-Lake-H-GT2,Gen. 9.5,300,1150,,64/128,,,12_1,4.4,14,2266,~5.5,106362,9545,9798,2030,1789.5,1115,1211,479.5,414.5,7704,13216.5,,,,,105,,,18.9,6.05,54.5,8578,894,696 -Intel UHD Graphics P630,Coffee-Lake-GT2,Gen. 9.5,300,1200,,64/128,,,12_1,4.4,14,2266,,,,,,,,,,,,,,,,,,,,,,,,, -Intel UHD Graphics Xe 16EUs (Tiger Lake-H),Tiger Lake Xe,Gen. 12,350,1450,,,,,12_1,4.6,10,990,~4.4,64701,8223,7982,1933,1654,1151,1203,404,348,7190,12452,,123.6,77.3,41.9,52.8,,,,4.75,46.26,12011,745,601 -Intel HD Graphics 630,Kaby-Lake-H-GT2,Gen. 9.5 Kaby Lake,300,1150,,64/128,,,12_1,4.4,14,3054,~4.8,101178,9188,9715,1975,1729,985,1067,425,368,7685,12419,,139.8,47.2,47.2,,,,18.8,5.3,51.75,10479,962,647 -Intel HD Graphics P630,Kaby-Lake-H-GT2,Gen. 9.5 Kaby Lake,,,,64/128,,,12_1,4.4,14,3054,~4.4,,8280,,,,1040,,400,,,,,,,,,,,,,,,, -Intel UHD Graphics G7 (Lakefield GT2 64 EU),Lakefield GT2,Gen. 11 Ice Lake,200,500,,,DDR4,,12_1,4.5,10,1296,~3.6,87818,5835,8408.5,1873,1791.5,1190.5,1295.5,389,349,,,,,48.4,,,,,,,33.2,,1076,491 -Intel HD Graphics 530,Skylake GT2,Gen. 9 Skylake,350,1150,,64/128,,,12_1,4.4,14,3054,~4.7,80241.5,7652,7500,1579,1362,878,935,271,235,6831,11309,,,60.6,,,,,,,42.27,8926,868, -Intel HD Graphics P530,Skylake GT2,Gen. 9 Skylake,350,1050,,64/128,DDR3/DDR4,,12_1,4.4,14,3027,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Radeon R5 (Bristol Ridge),Bristol Ridge,GCN 1.2/2.0,,800,,64/128,,,12 (FL 12_0),4.4,28,2753,~3.6,58018,4980.5,8255.5,1874,1720,1053.5,1283.5,,,,6816.5,,107,31.6,,,,,,,30.01,5132.5,1127,331 -Intel UHD Graphics 620,Kaby-Lake-Refresh GT2,Gen. 9.5,300,1150,,,DDR3/DDR4,,12_1,4.4,14,2296,~6.4,88745.5,8139,9324,1935.5,1744,1071,1168,435.5,380,7330,10642,34467,119.1,58.9,39.8,51.6,,,19.2,4.7,48.84,8194,937,653 -Intel HD Graphics 620,Kaby-Lake GT2,Gen. 9.5 Kaby Lake,300,1050,,64/128,DDR3/DDR4,,12_1,4.4,14,2663,~9.6,79066.5,5993,7725,1645.5,1508.5,858,934,365,321,5803,8449,67477,,,,,,,,4.2,40.48,8162.5,875,564 -AMD Radeon R6 (Carrizo),Carrizo,GCN 1.2/2.0,,800,,64/128,,,12 (FL 12_0),4.4,28,3116,~2.9,53702.5,3524,4717,1550,1437.5,842,909,300,274,4830,6896,,88.4,29.4,,,,,,,22.48,4507,918,301.5 -Qualcomm Adreno 690,,,,,,,,,12,,5,1835,~5,,9818,16707.5,3077,2912,2834.5,2932.5,909,811,,,,,,,,,,,,13.7,558,, -Qualcomm Adreno 685,,,,,,,,,12,,7,1835,~2.4,,,,1968,1927,,,,,,,,167.7,31.7,,,,,,,,373,2292, -Qualcomm Adreno 680,,,,,,,,,12,,7,1835,~2.3,,,,1847,1935.5,,,,,,,,140.2,,,,,,,,,353,1890, -ATI Mobility Radeon HD 4860,M97-XT,Terascale 1,650,,1000,128,GDDR5,,10.1,,40,5400,,,,,,,,,,,,,,,,,,,,,,,,, -ATI FirePro M7740,RV740,Terascale 1,650,,1000,128,GDDR5,1024,10.1,,40,5246,~19.7,,,,,,,,,,6626,12109.5,34814,,,,,,,,,,6663.5,, -ATI Mobility Radeon HD 4850,M98,Terascale 1,500,,850,256,GDDR3,1024,10.1,,55,5453,~20.9,,,,,,,,,,5263.5,9784,41976,,,,,,,,,,5682,, -NVIDIA GeForce GTX 260M,N10E-GT,G9x,550,,950,256,GDDR3,1024,10,,55,5401,~17.8,,,,,,,,,,4901,10064,34304,,,,,,,,,,3917,, -NVIDIA GeForce 9800M GTX,NB9E-GTX,G9x,500,,800,256,GDDR3,1024,10,,65,5631,~18.4,,,,,,,,,,4825,10138,35460,,,,,,,,,,4491,, -NVIDIA Quadro FX 2800M,NB10-GLM3,G9x,600,,1000,256,GDDR3,1024,10,,55,5127,~24,,,,,,,,,,5783,11358.5,34844,,,,,,,,,,,, -AMD Radeon HD 7690M XT,Thames XTX,Terascale 2,725,,3600,128,GDDR5,,11,4.1,40,4574,~6.2,,,,1550.5,1346,,,,,7054.5,10919,,,,,,,,,,,5514,, -AMD FirePro M5950,Whistler-XT,Terascale 2,725,,900,128,GDDR5,1024,11,4.1,40,4629,~6.3,,,,1500,1350,,,,,6257,10592,,,,,,,,,,,7975,, -NVIDIA GeForce GT 640M LE,N13P-LP,Fermi / Kepler,500,,1800 - 4000,128,"DDR3, GDDR5",2048,11,,28,4285,~5.4,,,,1385,1259,,,,,5788,8858,,,,,,,,,,,5858,, -AMD Radeon R6 (Kaveri),Kaveri,GCN 1.1,533,654,,64/128,,,12 (FL 12_0),,28,3481,~2.7,,3442,5336,1306,1184,707.5,770.5,,,4114,5989,,85,,,,,,10.6,,21.42,3868,776.5,257.5 -AMD Radeon HD 8650M,,GCN,650,,4500,64,GDDR5,2048,11.1,,28,3994,~3.2,,4300,7500,,,920,1050,,,,,,,,,,,,,,,,, -AMD Radeon HD 8730M,,GCN,650,,2000,128,DDR3,2048,11.1,,28,4046,~4.8,,5206,8054,1507.5,1370.5,1073,1150,,,6310.5,8620,,,,,,,,15.7,,,,, -AMD Radeon HD 6770M,Whistler-XT,Terascale 2,675 / 725,,800,128,GDDR5,,11,4.0,40,4728,~16.5,,,,1475.5,1328,,,,,6106.5,10056,47877,,,,,,,,,,6907.5,, -NVIDIA GeForce GT 635M,N13E-GE2,Fermi,660,753,1800,128/192,"DDR3, GDDR5",2048,11,,40,4392,~5,,,,1223,1110,,,,,4995,8517.5,,,,,,,,,,,5707.5,, -NVIDIA GeForce GT 555M,N12E-GE-B,Fermi,525,753,785-900,"128, 192","DDR3,GDDR5",3072,11,,40,4726,~8.3,,,,1299,1146,,,,,5884,10568,14449,,,,,,,,,,5436,, -ATI Mobility Radeon HD 5850,Broadway-PRO,Terascale 2,625,,2000,128,"DDR3, GDDR3, GDDR5",1024,11,,40,5090,~18.5,,,,,,,,,,5591.5,9655,35281,,,,,,,,,,5573,, -AMD Radeon HD 6850M,Granville Pro/LP,Terascale 2,575 / 675,,800,128,"DDR3, GDDR5",,11,,40,4726,~14.3,,,,1644,1469.5,,,,,6245.5,9336,38862,,,,,,,,,,7291,, -NVIDIA Quadro 2000M,Fermi,Fermi,550,,900,128,DDR3,2048,11,,40,4679,~6.3,,,,1421,1261,,,,,6633.5,11656,,,,,,,,,,,5671,, -NVIDIA GeForce 9800M GT,NB9E-GT2,G9x,500,,800,256,GDDR3,512,10,,65,5631,~17.8,,,,,,,,,,4011,9258,35284.5,,,,,,,,,,4526.5,, -NVIDIA GeForce 8800M GTX,NB8E-GTX,G9x,500,,800,256,GDDR3,512,10,,65,5870,~17.6,,,,,,,,,,3422,9217,34985,,,,,,,,,,4464.5,, -NVIDIA Quadro FX 3600M,NB8E-GLM,G9x,500,,800,256,GDDR3,512,10,,65,5774,~25.4,,,,,,,,,,,8135.5,41502,,,,,,,,,,6193,, -NVIDIA GeForce GT 445M,N11E-GE,Fermi,590,,1250,192 / 128,"DDR3, GDDR5",,11,,40,4851,~5.4,,,,1291,1148,,,,,5249,10304,,,,,,,,,,,4100,, -NVIDIA GeForce GTS 360M,N11E-GS1,GT2xx,575,,1800,128,"DDR3, GDDR3, GDDR5",1024,10.1,,40,5090,~7.3,,,,,,,,,,5522,9865,,,,,,,,,,,3664.5,, -AMD Radeon HD 7690M,Thames XT / XTX,Terascale 2,600,725,3600/1800,128,GDDR5/DDR3,,11,4.1,40,4574,~5.8,,,,1306,1141,,,,,5883.5,9660,,,,,,,,,,,7618,, -Intel HD Graphics 5600,Broadwell GT2,Gen. 8 Broadwell,300,1050,,64/128,,,12 (FL 11_1),4.3,14,3118,~3.6,,7499,7757,1651,1431,944,991,,,,,,,,,,,,,,37.89,7445,, -AMD Radeon HD 8670M,,GCN,775,,2000,64,DDR3,1024,11.1,,28,4046,~3.2,,3977,4840,1513,1396,767,829,,,4077,4670,,,,,,,,9.4,,64.38,6007.5,,247 -AMD Radeon HD 6750M,Whistler-PRO,Terascale 2,600,,900,128,GDDR5,,11,,40,4728,~15.2,,,,1305.5,1158.5,,,,,5483,9361,43578,,,,,,,,,,7617,, -NVIDIA Quadro K1000M,N14P-Q1,Kepler,850,,1800,128,DDR3,2048,11.1,4.1,28,4214,~5.1,,,,1232,1102,,,,,5164.5,8340.5,,,,,,,,,,,6750,, -NVIDIA GeForce GT 550M,N12P-GT,Fermi,740,,900,128,"DDR3, GDDR5",1536,11,,40,4726,~11.9,,,,1099.5,973.5,,,,,4781.5,8776,32347,,,,,,,,,,5380,, -AMD Radeon HD 8590M,,GCN,620,,4500,64,GDDR5,,11.1,,28,4046,,,,,,,,,,,,,,,,,,,,,,,,, -NVIDIA GeForce GTS 260M,N10E-GS,GT2xx,550,,1800,128,"GDDR3, GDDR5",1024,10.1,,40,5296,,,,,,,,,,,,,,,,,,,,,,,,, -NVIDIA GeForce GTS 160M,N10E-GS1,G9x,600,,800,256,GDDR3,1024,10,,55,5401,~15.7,,,,,,,,,,3965,9327,30011,,,,,,,,,,3432,, -NVIDIA GeForce 9800M GTS,NB9E-GT,G9x,600,,800,256,GDDR3,1024,10,,65,5631,~23.6,,,,,,,,,,4060,9501.5,36940,,,,,,,,,,,, -AMD Radeon HD 6830M,Granville-LP,Terascale 2,575,,900,128,"DDR3, GDDR3",1024,11,,40,4725,,,,,,,,,,,,,,,,,,,,,,,,, -ATI Mobility Radeon HD 5830,Broadway,Terascale 2,500,,800,128,"DDR3, GDDR3",1024,11,,40,5090,~8,,,,,,,,,,4785,8050,,,,,,,,,,,,, -AMD Radeon HD 6730M,Whistler-XT,Terascale 2,725,,800,128,DDR3,,11,,40,4728,~5,,,,1269,1141,,,,,4438,7918,,,,,,,,,,,7282,, -NVIDIA GeForce 9800M GS,NB9E-GS1,G9x,530,,800,256,GDDR3,1024,10,,55,5522,~14.8,,,,,,,,,,3245,8449.5,28740.5,,,,,,,,,,3684,, -ATI Mobility Radeon HD 4830,M97,Terascale 1,550,,700,128,"GDDR3, DDR3",,10.1,,40,5400,~5.7,,,,,,,,,,3863,7155,,,,,,,,,,,4250,, -ATI Mobility Radeon HD 5770,Madison-XT,Terascale 2,650,,800,128,GDDR5,,11,,40,5090,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Radeon HD 6570M,Capilano,Terascale 2,650,,900,128,"DDR3, GDDR5",1024,11,,40,4767,~4.8,,,,1216,1067,,,,,4107,7553,,,,,,,,,,,7319,, -AMD Radeon HD 8650G,Richland,Terascale 3,533,720,,,,,11,4.2,32,3880,~3.5,71794,4180,6453,1479.5,1433,834,905,,,4689,6732.5,,100,,,,,,10.9,,33,5411,983,84 -AMD Radeon HD 7670M,Thames XT,Terascale 2,600,,1800,128,"DDR3, (GDDR5)",,11,4.1,40,4574,~5.4,,5267,6535,1186.5,1061.5,805,824,,,4995,8203,16914,,,,,,,,,,6696,771,206 -NVIDIA GeForce GT 630M,N13P-GL/GL2,Fermi,672,,1800,128,DDR3,,11,4.0,28,4392,~4.9,58812,4641,5577,1168,1035,674,719,,,4868.5,8610,14216.5,,,,,,,10,,,5865,588,122 -NVIDIA GeForce GTS 150M,N10E-GE1,G9x,400,,800,256,GDDR3,1024,10.0,,55,5401,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Radeon R5 M335,Exo XT DDR3,GCN 1.0,1070,,2200,64,DDR3,4096,12,4.3,28,3104,~3.4,70485,4167,4590,1889,1784,824,911,,,4772,5921,,73.1,21.5,19.4,,,,,,30.91,8555,1497,291 -AMD Radeon R5 M330,Exo Pro DDR3,GCN 1.0,1030,,2000,64,DDR3,,12,4.3,28,3144,~3.3,,4427,4897,1782,1689,843,922,,,,5972,,,,,,,,,,27.96,6386,690,597 -AMD Radeon R5 M430,Mars,GCN,955,,1746,64,DDR3,,12 (11_1),4.3,28,2784,~3.1,,4744,5493,1821.5,1689,899,1004,,,4697,6246,,77,23.5,21,,,,,,29.85,7430,1219,699 -AMD Radeon R5 M255,Topaz Pro / Sun,GCN,940,,1800 - 2000,64,DDR3,4096,12,4.3,28,3515,~3.6,,4859,6053,1907,1784,980,1080.5,,,5399,8935,,,16.9,,,,,,,34.68,5647.5,1073,292 -AMD Radeon RX Vega 3,Vega Raven Ridge,Vega,600,1200,,,,,12_1,,14,2168,~3.7,80755,6044,8536,1947,1723.5,1065.5,1171.5,441.5,393,5440.5,11103,,64.5,23,19.05,43,,,13.9,4.4,28.19,7401,1008,346 -NVIDIA Quadro 1000M,Fermi,Fermi,700,,900,128,DDR3,2048,11,,40,4679,~13.9,,,,1064,943,,,,,4566,8509,40779,,,,,,,,,,6771,, -NVIDIA GeForce 910M,N15V-GM,Kepler,641,,2000,64,DDR3,2048,12 (FL 11_0),,28,3027,~3,42738,3677,6636,1432,1413,913,1022,,,4325,6741,,78.7,42.6,30.9,,,,14.4,,23.99,2500,929,189 -NVIDIA GeForce 820M,N15V-GM,Fermi,775,,1800,64,DDR3,2048,12 (FL 11_0),,28,3629,~3.4,,4520.5,6073.5,1383,1266.5,829,897,,,5105.5,7518,,,,,,,,,,35.63,5557,718,379.5 -Intel HD Graphics 520,Skylake GT2,Gen. 9 Skylake,300,1050,,64/128,DDR3/DDR4,,12_1,4.4,14,3027,~5.1,73656,5357.5,6700.5,1435.5,1293.5,752,803.5,297,263,5722,8656,23728.5,87.15,39.4,26.4,,,,,,37,7578,852,474 -Intel Iris Graphics 6100,Broadwell GT3,Gen. 8 Broadwell,300,1100,,64/128,,,12 (FL 11_1),4.3,14,3266,~4.1,89341,6141,7798,1768,1694.5,864.5,874,425,377,6531,8764,,102.1,48.8,,,,,,,36.43,7832.5,1115,390 -Intel UHD Graphics G4 (Lakefield GT1 48 EU),Lakefield GT1,Gen. 11 Ice Lake,200,500,,,DDR4,,12_1,4.5,10,1296,,,,,,,,,,,,,,,,,,,,,,,,, -NVIDIA GeForce GT 720M,N14M-GE,Fermi,625,938,1800 - 2000,64,DDR3,2048,11,,28,3910,~4.6,59694,4522,5426,1321,1213,779,822,,,4584.5,7896,15036,50,,,,,,11.6,,36.01,5824,678.5,239 -NVIDIA GeForce 8800M GTS,NB8E-GT,G9x,500,,800,256,GDDR3,512,10,,65,5870,~14.4,,,,,,,,,,2552,8385,28301,,,,,,,,,,3164,, -AMD Radeon R5 M240,Jet XT / Sun,GCN,1030,,1800,64,DDR3,,11.2,,28,3392,~3.1,,4338.5,5500,1669,1588,871.5,949,,,5066,5698,,,23.5,,,,,,,26.89,4578,1152,411 -AMD Radeon R5 M320,Exo UL/ULT/ULP,GCN 2.0,855,,2000,64,DDR3,,12,4.3,28,3144,~3.7,45756,3695,4969,1660,1652,,,,,,,,,,,,,,,,,,, -AMD Radeon R5 M230,Jet / Sun,GCN,855,,1800 - 2000,64,DDR3,4096,12,4.3,28,3629,~3,,3899,4814,1302,1175,720,771,,,,5145,,,,,,,,,,23.67,6314,, -AMD Radeon R5 M315,Meso LE (DDR3),GCN,970,,1800,64,DDR3,2048,12,4.3,28,3104,~2.2,,,5040,,,,920,,,,,,,,,,,,,,,,, -AMD Radeon R5 M420,Jet,GCN,780,,2000,64,DDR3,4096,12,4.3,28,2753,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Radeon RX Vega 2,Vega Raven Ridge,Vega,,1100,,,,,12_1,,12,2168,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Radeon R5 (Stoney Ridge),Stoney Ridge,GCN 1.2/2.0,,800,,64,,,12 (FL 12_0),4.4,28,2753,~2.4,51382,2995,4755,1263,1264,712,772,281.5,254.5,3346,5174,,67.8,21.8,20.4,,,,13.7,,22.97,3773,597,124 -ATI Mobility Radeon HD 5750,Madison-XT,Terascale 2,550,,1600,128,"DDR, GDDR3, GDDR5",1024,11,,40,5090,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Radeon HD 8570M,,GCN,650,,1800 - 2000,64,DDR3,,11.1,,28,4046,~3,,3958,4867,1364,1255,732,790,,,4365,5650,,,,,,,,,,16.99,5829,,258 -Intel HD Graphics 6000,Broadwell GT3,Gen. 8 Broadwell,300,1000,,64/128,,,12 (FL 11_1),4.3,14,3266,~3.4,,5872,7660,1513.5,1395.5,903,951,374,334,6188,8091,,,39.46,,,,,,3.7,30.69,6527,1021,350 -NVIDIA Quadro K610M,,Kepler,954,,2600,64,GDDR5,1024,11,4.3,28,3797,~3.8,,6051.5,5837.5,1294.5,1143.5,712.5,755.5,,,5116,8157,,,,,,,,9.4,,,6823.5,,48 -AMD Radeon HD 8550M,,GCN,700,,1800,64,DDR3,,11.1,,28,4046,~3.6,,,,1242,1307,,,,,3705,4700,,,,,,,,11.2,,,,, -Intel Iris Graphics 5100,Haswell GT3,Gen. 7.5 Haswell,200,1200,,64/128,,,11.1,4.0,22,3845,~3.6,71489,4950,6943.5,1245.5,1151,823,878.5,,,5865,6928.5,,83.5,,,16.3,,,13.9,,21.4,6817.5,1062,419.5 -NVIDIA GeForce GT 540M,N12P-GS,Fermi,672,,900,128,"GDDR5, DDR3",1536,11,,40,4726,~11.7,,,,989,888,,,,,4355,7986,32969,,,,,,,,,,5441,, -AMD Radeon HD 6650M,Whistler-PRO,Terascale 2,600,,900,128,DDR3,,11,,40,4728,~13.6,,,,1158,1037,,,,,4050.5,7307,40671,,,,,,,,,,6775.5,, -Intel HD Graphics 4600,Haswell GT2,Gen. 7.5 Haswell,200,1350,,64/128,,,11.1,4.0,22,3849,~6.6,42242.5,5040.5,5613,1041,910.5,592.5,635.5,,,5203,7362,38441,78,,,,,,14.35,,18.8,7168.5,767,284.5 -ATI Mobility Radeon HD 5730,Madison,Terascale 2,650,,800,128,"DDR3, GDDR3",,11,,40,5090,~13,,,,,,,,,,3809,7265,23762,,,,,,,,,,5418.5,, -Intel HD Graphics 5500,Broadwell GT2,Gen. 8 Broadwell,300,950,,64/128,,,12 (FL 11_1),4.3,14,3266,~3,58776,4790.5,5544,1079.5,979,634.5,663,289,255,4798,6998,,70.9,30.6,,105,,,9.3,,25.35,5270.5,695,328 -Qualcomm Adreno 630,,,,,,,,,12,ES 3.2,10,2132,~3.1,81385.5,3108,6347,,,770,821,,,,,,150,75,58,,,,,,,257,, -Intel UHD Graphics (Jasper Lake 32 EU),Gen. 11,Gen. 11,350,900,,,,,12_1,4.5,10,1068,~3.4,72158,5531.5,6977,1652,1589,982,1016,372,330,6316.5,6074,,91.2,53.7,33.95,,,,12.6,4.55,31.59,6561,1012.5,387 -Intel UHD Graphics (Elkhart Lake 32 EU),Gen. 11,,400,850,,,,,12_1,4.5,10,1068,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Radeon R5 (Carrizo),Carrizo,GCN 1.2/2.0,,800,,64/128,,,12 (FL 12_0),4.4,28,3116,~2.8,,4365,5804,1686,1711,898,1001,,,,,,,,,,,,,,25.12,4880,, -Intel UHD Graphics 617,Kaby-Lake GT2,Gen. 9 Amber Lake,300,1150,,64/128,DDR3L/LPDDR3,,12_1,4.4,14,1872,~4.2,77156,4841,7231,1671.5,1540.5,889.5,997,337,300,,8662,,,,,,,,,,39.1,,, -Intel UHD Graphics 615,Kaby-Lake GT2,Gen. 9 Amber Lake,300,1000,,64/128,DDR3L/LPDDR3,,12_1,4.4,14,1933,~3,60419.5,4660,6602,1312.5,1221,751,842.5,275,242.5,3813,6601.5,,67.3,34.42,23.22,,,,,,35.49,6378,860,473 -Intel UHD Graphics (Jasper Lake 24 EU),Gen. 11,Gen. 11,350,800,,,,,12_1,4.5,10,1068,~2.9,,6659,8388,1654,1458,1043,1106,355,312,,,,,,,,,,,,36.9,,, -Intel HD Graphics 615,Kaby-Lake GT2,Gen. 9 Kaby Lake,300,1050,,64/128,DDR3L/LPDDR3,,12_1,4.4,14,2663,~13.5,70743,4893,6387,1362.5,1242.5,762,853,296.5,261,4102,7399,19381,76.3,,42.7,38.3,42892,33662,,,34.97,6470,693,369 -AMD Radeon R5 (Kaveri),Kaveri,GCN 1.1,514,626,,64/128,,,12 (FL 12_0),,28,3481,~2,,2594,3959,1020,901,527,572,,,3011,4317,,,14.4,,,,,,,18.03,3611,520,183 -ATI FirePro M5800,Madison,Terascale 2,650,,800,128,"DDR3, GDDR5",1024,11,,40,5037,~7,,,,,,,,,,3760,7237,,,,,,,,,,,,, -NVIDIA NVS 5400M,N13P-NS1,Fermi,660,,1800,128,DDR3,2048,11,4.0,40,4214,~5.3,,,,1260.5,1119,,,,,5197.5,9192.5,,,,,,,,,,,6012,, -NVIDIA GeForce 710M,N14M-GL,Fermi,775,800,1800,64,DDR3,2048,11,,28,3910,~5.4,,4389.5,5323,1226,1106.5,726,768.5,,,4641,7993,13110,,,,,,,,,,6193,, -AMD Radeon HD 7660G,Trinity,Terascale 3,497,686,,,,,11,4.2,32,4231,~5.6,65558,4190,6408.5,1147,1057,,,,,4523,7317,22817,93,,,,,,,4.5,30.3,5576.5,771,179 -NVIDIA GeForce GT 435M,N11P-GT,Fermi,650,,800,128,DDR3,,11,,40,4851,~11.9,,,,896.5,799,,,,,3869.5,7510.5,35402,,,,,,,,,,4567,, -Intel HD Graphics 5000,Haswell GT3,Gen. 7.5 Haswell,200,1100,,64/128,,,11.1,4.0,22,3845,~3.2,65904,4496.5,5693.5,1125.5,1033.5,651,715.5,,,4276.5,5940,,72.5,22.5,,,,,12.1,,27.4,6946.5,816.5,306 -NVIDIA Quadro K510M,,Kepler,846,,2400,64,GDDR5,1024,11,4.3,28,3797,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Radeon HD 6550M,Capilano-PRO,Terascale 2,600,,800,128,DDR3,1024,11,,40,4767,~11,,,,1100,993,,,,,3731,7143,31250.5,,,,,,,,,,5286,, -AMD Radeon HD 7590M,Thames XT,Terascale 2,600,,3200,64,,1024,11,,40,4359,,,,,,,,,,,,,,,,,,,,,,,,, -NVIDIA GeForce GTS 350M,n11e-ge1,GT2xx,500,,1600,128,"DDR3, GDDR3, GDDR5",1024,10.1,,40,5090,~12.2,,,,,,,,,,,8303.5,,,,,,,,,,,,, -NVIDIA GeForce GTS 250M,N10E-GE,GT2xx,500,,1600,128,"DDR3, GDDR3, GDDR5",1024,10.1,,40,5296,~16,,,,,,,,,,3659,7484,32373,,,,,,,,,,4451,, -AMD Radeon HD 6630M,Whistler-LP,Terascale 2,485,,800,128,DDR3,,11,,40,4728,~4.2,,,,990,877,,,,,3720,6934,,,,,,,,,,,5952,, -AMD Radeon HD 7650M,Thames-LP/Pro,Terascale 2,450,550,1800,128,DDR3,,11,,40,4360,~4.6,,,,1058.5,945.5,,,,,4562.5,7333,,,,,,,,,,,6705,, -AMD FirePro M2000,Turks GLM,Terascale 2,500,,3200,64,GDDR5,1024,11.1,4.2,40,4184,~4.3,,,,954,841,,,,,3956,6086,,,,,,,,,,,8471,, -AMD Radeon HD 7570M,Thames-Pro / XT,Terascale 2,450,650,3200 / 1800,64,GDDR5 / DDR3,,11,,40,4360,~3.1,,4329,4623,926,829,562,569,,,3727,5998.5,,,,,,,,8.5,,,8310.5,,155 -AMD Radeon HD 7630M,Thames-LP,Terascale 2,450,,1800,128,DDR3,,11,,40,4360,,,,,,,,,,,,,,,,,,,,,,,,, -NVIDIA Quadro FX 1800M,,GT2xx,560,,1100,128,"DDR3, GDDR5",1024,10.1,,40,5065,~7.1,,,,,,,,,,3451.5,7572.5,,,,,,,,,,,,, -ATI Mobility Radeon HD 5650,Madison Pro,Terascale 2,450,650,800,128,"GDDR3, DDR3",1024,11,,40,5090,~6.5,,4341,6036,955,855.5,706,730,,,3188,6469,26832,,,,,,,9.9,,,4846.5,, -AMD Radeon HD 8510G,Trinity,TeraScale 3,450,554,,,,,11,4.2,32,3858,~2.2,,,,1100,,,,,,,,,,,,,,,,,,,, -AMD Radeon HD 6530M,Capilano-LP,Terascale 2,500,,800,128,DDR3,1024,11,,40,4767,~6.7,,,,,,,,,,3334,7119.5,,,,,,,,,,,,, -AMD Radeon HD 8550G,Richland,Terascale 3,515,720,,,,,11,4.2,32,3930,~3.3,67801,4060,6107,1280,1179,746,792,,,4174,7314,,87,,,,,,10.8,,28.9,5224,575,132 -NVIDIA Quadro K500M,N14M-Q1,Kepler,850,,1800,64,DDR3 / GDDR5,2048,11,4.3,28,4214,,,,,,,,,,,,,,,,,,,,,,,,, -NVIDIA GeForce GT 625M,N13M-GS,Fermi,625,,1800,64,DDR3,1024,11,,28,4092,~1.7,,,,1037,921,,,,,,,,,,,,,,,,,,, -NVIDIA GeForce GT 620M,N13P-GLP / N13M-GS,Fermi,625,715,1800,64 / 128,DDR3,1024,11,,40,4285,~3.3,,4022.5,5269,1041.5,933.5,696,737.5,,,4219,7462,,,,,,,,,,,4989,521, -NVIDIA GeForce GT 525M,N12P-GE,Fermi,600,,900,128,"GDDR5, DDR3",1536,11,,40,4726,~9.5,,,,901,799,,,,,3839.5,7058.5,25685,,,,,,,,,,4531,, -AMD Radeon HD 7610M,Thames-LE,Terascale 2,450,,1600,128,DDR3,,11,,40,4360,~3.5,,4475,5242,849,749,592,605,,,3691,7100,,,,,,,,,,,6930,, -AMD Radeon HD 7620G,Trinity,Terascale 3,360,497,,,,,11,4.2,32,4231,~2.7,,3064,5378,1030,948,659,716,,,2399,5553,,,,,,,,,,,4088,578, -AMD Radeon HD 7640G,Trinity,Terascale 3,497,686,,,,,11,4.2,32,4231,~6.7,,,,704,655.5,,,,,2599,4173,18117,,,,,,,,,,4489.5,, -Intel HD Graphics 515,Skylake GT2,Gen. 9 Skylake,300,1000,,64/128,DDR3L/LPDDR3,,12_1,4.4,14,3027,~4.5,56787,3850.5,5467,1115,1014,623.5,691.5,,,4672,6446,20345,73.2,36.7,27.7,,,,,,29.4,6088,704,416 -Intel UHD Graphics 610,Kaby Lake GT1,Gen. 9 Kaby Lake,300,950,,64/128,DDR3/DDR4,,12_1,4.4,14,1809,~2.4,42712.5,4333.5,5276.5,1045.5,922.5,616,663.5,222,194,3996,6902,,71.9,33.1,23.1,25.5,,,10.2,3.35,28.37,5209.5,481.5,304.5 -Intel HD Graphics 610,Kaby Lake GT1,Gen. 9 Kaby Lake,300,950,,64/128,DDR3/DDR4,,12_1,4.4,14,2539,~2.5,41956.5,4300,5281,996,880,566,607.5,223,194.5,3715,6386.5,,72.4,32.3,23.8,,,,11.8,3.3,26.21,5084,484,291 -Intel HD Graphics 4400,Haswell GT2,Gen. 7.5 Haswell,200,1100,,64/128,,,11.1,4.0,22,3845,~4.1,37082,3940,4953,828,735.5,525,569,,,3583,5164,20486,60.5,16.2,,,,,8.2,,20.37,6130,575,234 -AMD Radeon HD 8610G,Richland,Terascale 3,533,626,,,,,11,4.2,32,3858,~1.8,,2463,2749,941,889,441,475,,,2203,3538,,,15.9,,,,,,,17,3972,612,361 -Intel HD Graphics 510,Skylake GT1,Gen. 9 Skylake,300,950,,64/128,DDR3/DDR4,,12_1,4.4,14,3027,~3,43274,4721,5664,985,847,570,621,,,3798,7253,,121.9,64.6,51.7,,,,9.3,,27.98,7348,500,302 -NVIDIA NVS 5200M,N13M-NS,Fermi,625,,1800,64,DDR3,1024,11,,28,4214,~3.3,,4352,4949,1136,1008,671,704,,,4268,7502.5,,,,,,,,9.8,,,6266.5,,54 -ATI Mobility Radeon HD 565v,,Terascale 1,675,,800,128,"GDDR3, DDR3, DDR2",,10.1,,55,4972,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Radeon HD 7550M,Thames-LP / Pro,Terascale 2,450,550,3200 / 1800,64,GDDR5 / DDR3,,11,,40,4360,~4.6,,3573,4081,843,756,545,569,,,2927,4932,16206,,,,,,,7.4,,,4935,, -ATI Mobility Radeon HD 4670,M96-XT,Terascale 1,675,,800,128,"GDDR3, DDR2, DDR3",,10.1,,55,5453,~13,,,,,,,,,,3004.5,6828,24975,,,,,,,,,,4567,, -NVIDIA GeForce GT 425M,N11P-GS,Fermi,560,,800,128,DDR3,1024,11,,40,4870,~10.4,,,,832,753,,,,,3380.5,6706.5,30484.5,,,,,,,,,,4098,, -NVIDIA GeForce 9700M GTS,NB9E-GS,G9x,530,,800,256,GDDR3,512,10,,65,5631,~14.6,,,,,,,,,,2825,7779,28921,,,,,,,,,,3843,, -NVIDIA Quadro FX 2700M,NB9E-GLM2,G9x,530,,800,256,GDDR3,1024,10,,65,5601,~17.3,,,,,,,,,,2799,7660,36280,,,,,,,,,,4394,, -NVIDIA GeForce GT 335M,N11P-GS1,GT200,450,,1066,128,"DDR3, GDDR3",1024,10.1,,40,5090,~10.5,,,,,,,,,,3106,6892,18184,,,,,,,,,,3790.5,, -AMD Radeon HD 7600G,Trinity,Terascale 3,320,424,,,,,11,4.2,32,4122,~2.3,,,,672,628,,,,,1639,3504,,,,,,,,,,,3637,, -ATI Mobility Radeon HD 3870,M88-XT,RV6xx,660,,850,256,GDDR3,,10.1,,55,5767,~12.3,,,,,,,,,,3458,8635.5,21439,,,,,,,,,,3290,, -ATI Mobility Radeon HD 5165,,Terascale 1,600,,900,128,(G)DDR3,1024,10.1,,55,5090,~11.3,,,,,,,,,,2789,6125,21269,,,,,,,,,,4367,, -ATI Mobility Radeon HD 560v,,Terascale 1,550,,800,128,"GDDR3, DDR3, DDR2",,10.1,,55,4972,~5.7,,,,,,,,,,2459.5,6224,,,,,,,,,,,,, -ATI Mobility Radeon HD 4650,M96,Terascale 1,550,,800,128,"GDDR3, DDR2, DDR3",,10.1,,55,5453,~13.4,,,,,,,,,,2412.5,6207,26779,,,,,,,,,,4973.5,, -NVIDIA GeForce GT 420M,N11P-GE,Fermi,500,,800,128,(G)DDR3,,11,,40,4851,~7.3,,,,775,685,,,,,3051,6148,18904,,,,,,,,,,3464,, -AMD Radeon HD 7530M,Thames-LP,Terascale 2,450,,1800,64,DDR3,,11,,40,4360,,,,,,,,,,,,,,,,,,,,,,,,, -ATI Mobility Radeon HD 3850,M88,RV6xx,580,,750,256,GDDR3,,10.1,,55,5858,~4.2,,,,,,,,,,1879.5,6095,,,,,,,,,,,2756,, -NVIDIA GeForce GT 330M,N11P-GE1,GT2xx,575,,1066,128,"GDDR2, GDDR3, DDR3",1024,10.1,,40,5087,~12.9,,,,,,,,,,2657.5,6232,26029.5,,,,,,,,,,3409,, -NVIDIA Quadro FX 880M,N10P-GLM,GT2xx,550,,790,128,"GDDR3, DDR3",1024,10.1,,40,5090,~15.8,,,,,,,,,,2638.5,6378,33331,,,,,,,,,,4846,, -NVIDIA Quadro NVS 5100M,N10P-NS,GT2xx,550,,800,128,DDR3,1024,10.1,,40,5090,~12.5,,,,,,,,,,2634,6325,24702,,,,,,,,,,3700,, -NVIDIA GeForce GT 240M,N10P-GS,GT2xx,550,,800,128,"DDR3, GDDR2, GDDR3",1024,10.1,,40,5296,~11.5,,,,,,,,,,2371.5,5952,22708,,,,,,,,,,3466.5,, -AMD Radeon HD 7490M,Seymour XTX,Terascale 2,800,,3800,64,GDDR5,512,11,,40,4391,,,,,,,,,,,,,,,,,,,,,,,,, -Intel UHD Graphics (Elkhart Lake 16 EU),Gen. 11,,250,850,,,,,12_1,4.5,10,1068,~1.7,30044,2873,3762,701,650,489,523,,,,,,,,,,,,,,14.24,4048,476,147 -Intel UHD Graphics (Jasper Lake 16 EU),Gen. 11,Gen. 11,350,800,,,,,12_1,4.5,10,1068,~2.4,43609.5,4596.5,4910.5,975.5,854,626,645,203,178,3411,6438,,56.25,30.7,16.45,,,,,3.5,26.24,5649.5,548,226 -Intel UHD Graphics 605,Gemini Lake,Gen. 9 Apollo Lake,300,750,,64/128,DDR4 / LPDDR4,,12_1,4.4,14,2195,~1.7,45008,3154,3359.5,748,648,419,454,129,113,2162,4171,,45.5,22.1,16.5,23.3,,,6.5,1.7,18.09,3773,490.5,142 -Intel HD Graphics 505,Apollo Lake,Gen. 9 Apollo Lake,300,750,,64/128,,,12_1,4.4,14,2661,~1.6,32480.5,2837.5,3413.5,679,620,383,408,107.5,94,2350.5,4302.5,,47.2,18.9,14.1,,,,,,16.63,3155,382,141.5 -Intel HD Graphics 5300,Broadwell GT2,Gen. 8 Broadwell,100,900,,64/128,,,12 (FL 11_1),4.3,14,3388,~2.4,59555,3041,3720,731,647,407,439,,,3104,4775,,55,30.1,,,,,7.6,,18.36,4018,518.5,210 -AMD Radeon HD 7510M,Thames-LE,Terascale 2,450,,1600,64,DDR3,,11,,40,4360,,,,,,,,,,,,,,,,,,,,,,,,, -NVIDIA GeForce Go 7950 GTX,G71M,G7x,575,,700,256,GDDR3,512,9c,,90,6273,~27.2,,,,,,,,,,,5659,32000,,,,,,,,,,,, -NVIDIA Quadro FX 3500M,G71GLM,G7x,575,,700,256,GDDR3,512,9c,,90,6133,~7.7,,,,,,,,,,,5254,,,,,,,,,,,,, -NVIDIA GeForce 9700M GT,NB9E-GE,G9x,625,,800,128,"GDDR2, GDDR3",512,10,,65,5672,~15.6,,,,,,,,,,1749.5,5908.5,25300,,,,,,,,,,,, -NVIDIA GeForce GT 230M,N10P-GE,GT2xx,500,,800,128,"GDDR2, GDDR3",1024,10.1,,40,5296,~10.9,,,,,,,,,,2363,5647,21595.5,,,,,,,,,,2819,, -ATI Mobility Radeon HD 550v,,Terascale 1,450,,600,128,"GDDR3, DDR3, DDR2",,10.1,,55,4972,~4.4,,,,,,,,,,2214,5260,,,,,,,,,,,4733,, -Intel HD Graphics 4000,Ivy Bridge,Gen. 7 Ivy Bridge,350,1350,,64/128,,,11,3.1,22,4650,~3.4,44323.5,3282.5,3768.5,603,523,444,480,,,2959,4412.5,15220,39,,,,,,7.35,,11.91,5157,537,66 -AMD Radeon HD 6620G,Llano,Terascale 2,400,,,,,,11,,32,4566,~5.6,,,,726.5,650,,,,,2442.5,3595.5,15023,,,,,,,,,,3379,, -AMD Radeon R4 (Stoney Ridge),Stoney Ridge,GCN 1.2/2.0,,600,,64,,,12 (FL 12_0),4.4,28,2753,~1.9,42677,2458,3416,1003.5,972.5,383,583,228,205,2542,4246.5,,57.2,18.5,22.65,,,,8.35,2.95,18.6,2881,612,180.5 -AMD Radeon R5 (Beema/Carrizo-L),Beema,GCN 1.1,,850,,64,,,12 (FL 12_0),,28,3517,~2.1,36807,2882,3317,831,764,510,539,,,2698,4956,,51,,,,,,,,17,2779,494.5,149 -AMD Radeon R4 (Beema),Beema,GCN 1.1,800,,,64,,,12 (FL 12_0),,28,3517,~2,29548,2825,3309,788,716,472,497,,,2506,4046,,,,,,,,,,16.04,3092.5,445,136.5 -AMD Radeon R4 (Kaveri),Kaveri,GCN 1.1,533,,,64/128,,,12 (FL 12_0),,28,3481,~1.6,26079,2034,3371.5,658,611,404.5,433.5,,,1958,3179,,36.2,14.4,,,,,,,12.71,3108,443,137 -AMD Radeon R3 (Mullins/Beema),Beema/Mullins,GCN 1.1,350,686,,64,,,12 (FL 12_0),,28,3517,~1.6,,2391,3049,686,620,396.5,419.5,,,1814.5,4010,,,11.7,,,,,,,14.36,2908,379,108 -AMD Radeon R2 (Stoney Ridge),Stoney Ridge,GCN 1.2/2.0,,600,,64,,,12 (FL 12_0),4.4,28,2753,~1.7,38046.5,2092.5,3321.5,774.5,730.5,463,511.5,,,2136,3809,,42.7,16.5,13.2,,,,7.7,2.8,15.07,3619,432,113 -Intel HD Graphics (Broadwell),Broadwell GT1,Gen. 8 Broadwell,100,850,,64/128,,,12 (FL 11_1),4.3,14,3266,~1.9,,3398,4015,729,641,428,463,,,2651,5077,,47.12,21.52,17.41,,,,,,17.78,4886,374,182 -Intel HD Graphics 4200,Haswell GT2,Gen. 7.5 Haswell,200,850,,64/128,,,11.1,4.0,22,3845,~2,41579,3027,3807,712,638,394.5,431.5,,,2537.5,3383,,37.5,,,,,,,,16.95,4514,486,176.5 -Intel HD Graphics (Skylake),Skylake GT1,Gen. 9 Skylake,300,800,,64/128,DDR3L/LPDDR3,,12_1,4.4,14,3027,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Radeon HD 7500G,Trinity,Terascale 3,327,424,,,,,11,4.2,32,4231,~2,,2080,4333,604.5,585,462,512,,,2404.5,4810,,,,,,,,,,,3876,389,95 -AMD Radeon HD 8450G,Richland,Terascale 3,533,720,,,,,11,4.2,32,3930,~2.1,55358,2345.5,3168.5,787,724,411,464.5,,,2114,3868,,65,,,,,,,,18.25,4494,423,94 -AMD Radeon HD 7470M,Seymour XT / XTX,Terascale 2,750 / 800,,3200 / 1800,64,DDR3/GDDR5,512,11,,40,4391,~1.8,,,,566,522,,,,,1739.5,3624.5,,,,,,,,,,,3773.5,390,92 -AMD Radeon HD 6490M,Seymour XT,Terascale 2,700 / 750 / 800,,800,64,DDR3/GDDR5,512,11,,40,4726,~10.9,,,,681,601,,,,,2511,5571,33338,,,,,,,,,,6754,, -AMD Radeon HD 8410G,Trinity,TeraScale 3,450,600,,,,,11,4.2,32,3858,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Radeon HD 8400,Kabini,GCN,600,,,,,,11.1,,28,3858,~1.8,36156,2633,2883,686.5,614,377,401,,,2013,3532,,36,,,,,,,,13.25,3010,363.5,107 -NVIDIA GeForce GT 520MX,N12P-GVR,Fermi,900,,900,64,DDR3,1024,11,,40,4582,~3.1,,,,666,596.5,,,,,2619.5,5296,,,,,,,,,,,4655,, -AMD Radeon HD 7520G,Trinity,Terascale 3,497,686,,,,,11,4.2,32,4214,~2.3,,2148,3185,608,559,,,,,2045,4332,,,,,,,,,,,5073,,70 -NVIDIA GeForce GT 325M,N11P-GV1,GT2xx,450,,1066,128,"GDDR2, GDDR3, DDR3",1024,10.1,,40,5087,~4.2,,,,,,,,,,2161,5373,,,,,,,,,,,3910,, -NVIDIA GeForce GT 130M,N10P-GE1,G9x,600,,1066,128,"GDDR2, GDDR3",1024,10,,55,5454,~12.2,,,,,,,,,,1629,4950,26293,,,,,,,,,,3292,, -NVIDIA NVS 4200M,,Fermi,810,,800,64,DDR3,1024,11,,40,4679,~3,,,,572,507,,,,,2298,4929,,,,,,,,,,,5185,, -NVIDIA GeForce Go 7900 GTX,G71M,G7x,500,,600,256,GDDR3,512,9c,,90,6450,~24.6,,,,,,,,,,,4503,29490,,,,,,,,,,,, -NVIDIA Quadro FX 2500M,G71glm,G7x,500,,600,256,GDDR3,512,9c,,90,6651,~23.4,,,,,,,,,,,4695,27600,,,,,,,,,,,, -AMD Radeon HD 8350G,Richland,Terascale 3,514,720,,,,,11,4.2,32,3930,~2.3,46807,1895,2942,691,624,369,388,,,2463,5139,,,,,,,,,,17.48,4647,,71 -AMD Radeon HD 8330,Kabini,GCN,500,,,,,,11.1,,28,3858,~1.3,,2160,2672,592,530,327,351,,,1812.5,3334.5,,37,,,,,,4.2,,11.96,2440.5,324.5,96 -Intel UHD Graphics 600,Gemini Lake,Gen. 9 Gemini Lake,300,700,,64/128,DDR4 / LPDDR4,,12_1,4.4,14,2195,~1.5,30149,3124,3435.5,647.5,578,401.5,433,125,109,2189,3960,,37.15,19,15,15.75,,,,1.1,16.41,3504,358,129 -Intel HD Graphics 500,Apollo Lake,Gen. 9 Apollo Lake,300,700,,64/128,,,12_1,4.4,14,2661,~1.4,24609,2116,3007,530,482,307,362.5,,,,3506,,42,20,15,16.3,,,,,13,2894,324,79 -NVIDIA GeForce 9650M GS,NB9P-GS1,G8x,625,,800,128,"GDDR2?, GDDR3",512,10,,80,5755,~10,,,,,,,,,,1786,4830,19924,,,,,,,,,,3761,, -NVIDIA GeForce 9650M GT,NB9P-GT,G9x,550,,800,128,"GDDR2, GDDR3",1024,10,,55,5596,~11.1,,,,,,,,,,1306,4880,23209,,,,,,,,,,3632,, -NVIDIA GeForce 8700M GT,NB8E-SE,G8x,625,,800,128,GDDR3,512,10,,80,6030,~11.9,,,,,,,,,,2026,4804,24971,,,,,,,,,,3586,, -NVIDIA Quadro FX 1700M,NB9P-GLM,G9x,625,,800,128,GDDR3,256,10,,65,5553,~21.7,,,,,,,,,,,6302,35734,,,,,,,,,,6159,, -NVIDIA Quadro FX 1600M,NB8P-GLM,G8x,625,,800,128,GDDR3,512,10,,80,6041,~20.5,,,,,,,,,,,4915.5,35198,,,,,,,,,,4885,, -NVIDIA GeForce Go 7800 GTX,G70M,G7x,440,,550,256,GDDR3,512,9c,,110,6651,~20.8,,,,,,,,,,,4000,24800,,,,,,,,,,,, -NVIDIA GeForce Go 7900 GS,G71M,G7x,375,,500,256,GDDR3,512,9c,,90,6450,~19.6,,,,,,,,,,,3519,23613.5,,,,,,,,,,,, -NVIDIA Quadro NVS 320M,G84M,G8x,575,,700,128,"GDDR3, GDDR2",512,10,,80,6033,~24.8,,,,,,,,,,,4769,29508,,,,,,,,,,,, -NVIDIA Quadro FX 1500M,G71GLM,G7x,375,,500,256,GDDR3,512,9c,,90,6450,~21.9,,,,,,,,,,,4074,26279,,,,,,,,,,,, -NVIDIA GeForce 9600M GT,NB9P-GS,G9x,500,,800,128,"GDDR2, GDDR3",1024,10,,65,5672,~12.5,,,,,,,,,,1459,5174,26648.5,,,,,,,,,,3535,, -NVIDIA GeForce GT 220M,G96M,GT2xx,500,,800,128,"GDDR2, GDDR3",1024,10,,65,5234,~9.1,,,,,,,,,,1378,4010,18684,,,,,,,,,,3065,, -NVIDIA Quadro FX 770M,NB9P-GLM,G9x,500,,800,128,GDDR2 / GDDR3,512,10,,65,5601,~20.8,,,,,,,,,,,5296.5,34871,,,,,,,,,,6180,, -NVIDIA GeForce GT 120M,N10P-GV1,G9x,500,,1000,128,"GDDR2, GDDR3",1024,10,,55,5420,~14.3,,,,,,,,,,,5225,22385,,,,,,,,,,4267,, -AMD Radeon HD 7450M,Seymour-PRO,Terascale 2,700,,1800,64,"DDR3, GDDR5",,11,,40,4328,~2.6,,,,652,581.5,,,,,2280.5,4346.5,,,,,,,,,,,3513,, -NVIDIA GeForce 610M,N13M-GE,Fermi,672,900,1800,64,DDR3,,11,4.0,40,4392,~2.8,,,,582,507.5,,,,,2210,4598,,,,,,,,,,,5053,, -NVIDIA GeForce 705M,,Fermi,775,,1800,64,DDR3,,11,4.0,40,3849,,,,,,,,,,,,,,,,,,,,,,,,, -Intel HD Graphics 405 (Braswell),Braswell,Gen. 8,320,700,,64/128,,,11.2,,14,2814,~1.3,23763,1933,2113,537,473,237.5,254.5,,,2081,2920,,41.3,20.3,20.3,,,,,,14.11,2753,390.5,102.5 -Intel HD Graphics (Braswell),Braswell,Gen. 8,320,700,,64/128,,,11.2,,14,3180,~0.9,,1529,2193,436,395,238,261,,,1479,1311,,33,16.1,12.5,,,,,,12.31,2284,306,80.5 -Intel HD Graphics 400 (Braswell),Braswell,Gen. 8,320,640,,64/128,,,11.2,,14,2814,~1.1,20277,1457,1841,397,349,188,218,,,,2474,,29,16,10.6,,,,,,11.32,2052.5,, -AMD Radeon HD 6470M,Seymour XT,Terascale 2,700 / 750,,800,64,DDR3,1024,11,,40,4726,~9,,,,595,535,,,,,1706,4502,27881.5,,,,,,,,,,5316,, -AMD FirePro M3900,Seymour XT,Terascale 2,700,750,900,64,DDR3,1024,11,4.1,40,4629,~4.3,,,,617,,,,,,,4997,,,,,,,,,,,,, -NVIDIA GeForce GT 520M,N12P-GP/LV,Fermi,740 / 600,,800 / 900,64 / 128,DDR3 (GDDR5),1536,11,,40,4727,~7.4,,,,568.5,502,,,,,2280,4742.5,20926,,,,,,,,,,4960,, -AMD Radeon HD 7420G,Trinity,Terascale 3,480,655,,,,,11,4.2,32,4214,~1.5,,1963,2717,501,453,332,343,,,1718,3751,,,,,,,,,,13.07,4220,332,67 -ATI Mobility Radeon HD 3670,M86XT,RV6xx,680,,800,128,DDR2/GDDR3/GDDR4,,10.1,,55,5821,~11.5,,,,,,,,,,1277,4389.5,24532,,,,,,,,,,4145,, -ATI Mobility FireGL V5725,M86GL,RV6xx,680,,800,128,,,10.1,,55,5461,,,,,,,,,,,,,,,,,,,,,,,,, -Intel HD Graphics (Haswell),Haswell GT1,Gen. 7.5 Haswell,200,1000,,64/128,,,11.1,,22,4092,~1.7,43493,2335.5,3278,544,484,314,362.5,,,2163,3357.5,,53.5,28.7,20.1,,,,,,13.92,4215.5,370,140 -AMD Radeon HD 6520G,Llano,Terascale 2,400,,,,,,11,,32,4566,~2.1,,,,549.5,492,,,,,1678,3322,,,,,,,,,,,3494,, -AMD Radeon HD 8310G,Trinity,TeraScale 3,424,554,,,,,11,4.2,32,3858,,,,,,,,,,,,,,,,,,,,,,,,, -NVIDIA GeForce 320M,MCP89,GT2xx,450,,,,,,10.1,,40,5006,~6.9,,,,,,,,,,1852,4229.5,16219,,,,,,,,,12.6,3206,, -NVIDIA GeForce GT 320M,,GT2xx,500,,790,128,DDR3,1024,10.1,,40,5076,~4,,,,,,,,,,1205,4706,,,,,,,,,,,,, -ATI Mobility Radeon HD 2600 XT,M76-XT,RV6xx,700,,750,128,"DDR2, GDDR3",256,10,,65,6059,~11.2,,,,,,,,,,1159,4179,24515,,,,,,,,,,3362,, -ATI Mobility Radeon X1900,M59,,400,,470,256,DDR1/DDR2/GDDR3,256,9c,,80,6182,~21.2,,,,,,,,,,,3460,25914,,,,,,,,,,,, -ATI Mobility Radeon X1800XT,"M58, R520",,550,,650,256,GDDR3,,9c,,90,6498,,,,,,,,,,,,,,,,,,,,,,,,, -ATI Mobility Radeon X1800,M58,,450,,500,256,GDDR3,,9c,,90,6498,~15.7,,,,,,,,,,,2681,19000,,,,,,,,,,,, -NVIDIA GeForce Go 6800 Ultra,NV41M,,450,,600,256,DDR3,256,9c,,130,6867,~19,,,,,,,,,,,2500,23800,,,,,,,,,,,, -NVIDIA GeForce Go 7800,G70M,G7x,400,,550,256,GDDR3,256,9c,,110,6498,~15.7,,,,,,,,,,,2200,19500,,,,,,,,,,,, -NVIDIA GeForce 9600M GS,NB9P-GE,G9x,430,,800,128,"GDDR2, GDDR3",1024,10,,65,5672,~11,,,,,,,,,,1135,4382.5,23837.5,,,,,,,,,,3076,, -NVIDIA GeForce 9500M GS,NB9P-GE1,G8x,475,,700,128,GDDR2 / GDDR3,512,10,,80,5796,~9.6,,,,,,,,,,863,3705.5,20861,,,,,,,,,,3161,, -AMD Radeon HD 7400G,Trinity,Terascale 3,327,423,,,,,11,4.2,32,4122,~1.5,,1586,2424,454,415,245,327,,,,2931,,,,,,,,,,,3866,316, -AMD Radeon HD 6480G,Llano,Terascale 2,444,,,,,,11,,32,4566,~1.8,,1646,,513,467,155,,,,1578,3497,,,,,,,,,,,3655,, -ATI Mobility Radeon HD 2700,M76-XT,RV6xx,700,,700,128,"DDR2, GDDR3",256,10,,65,5847,~18.7,,,,,,,,,,,4067.5,21740,,,,,,,,,,,, -NVIDIA GeForce GT 415M,N11P-GV,Fermi,500,,800,128,(G)DDR3,,11,,40,4851,~2.6,,,,433,379,,,,,,4193.5,,,,,,,,,,,3922,, -NVIDIA GeForce 410M,N12M-GS,Fermi,575,,800,64,DDR3,,11,,40,4726,~6.9,,,,477,415,,,,,1922.5,4035,20641,,,,,,,,,,3399,, -AMD Radeon HD 7370M,Robson XT,Terascale 2,750,,1600,64,DDR3,1024,11,,40,4360,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Radeon R2 (Mullins/Beema/Carrizo-L),Beema/Mullins,GCN 1.1,300,600,,64,,,12 (FL 12_0),,28,3517,~1.1,,1980.5,2650,434.5,397,350.5,373,,,1178,3242,,36,14,12.7,,,,,,9.53,1616,340.5,89 -AMD Radeon HD 6370M,Robson XT,Terascale 2,750,,800,64,DDR3,1024,11,,40,4767,~9.5,,,,,,,,,,1319,3999,19638,,,,,,,,,,3875,, -AMD Radeon HD 8280,Temash,GCN,450,,,,,,11.1,,28,3858,~1,,2054,2515,554,496,303,328,,,,,,,,,,,,,,11,1041,295, -ATI Mobility Radeon HD 5470,Park XT,Terascale 2,750,,1800,64,"DDR2, GDDR2, DDR3, GDDR3, GDDR5",,11,,40,5090,~9.8,,,,,,,,,,1269.5,3683.5,20743,,,,,,,,,,4042,, -AMD Radeon HD 6450M,Seymour-PRO,Terascale 2,600,,800,64,DDR3,,11,,40,4728,~2.5,,,,506.5,443,,,,,1394.5,3845.5,,,,,,,,,,,5804,, -AMD Radeon HD 7430M,Seymour-PRO,Terascale 2,600,,1800,64,DDR3,,11,,40,4358,,,,,,,,,,,,,,,,,,,,,,,,, -ATI Mobility Radeon HD 3650,M86,RV6xx,600,,700,128,DDR2/GDDR3/GDDR4,,10.1,,55,5821,~10.3,,,,,,,,,,855,3360,23042,,,,,,,,,,3291,, -ATI Mobility FireGL V5700,M86-GL,RV6xx,600,,700,128,DDR2/GDDR3/GDDR4,,10.1,,55,5821,~11.5,,,,,,,,,,1017,4270.5,24429,,,,,,,,,,5049,, -ATI Mobility Radeon HD 5145,,Terascale 1,720,,900,64,"DDR3, GDDR3",,10.1,,55,5090,~9,,,,,,,,,,1248,3661,18387.5,,,,,,,,,,4014.5,, -ATI Mobility Radeon HD 545v,,Terascale 1,720,,800,64,"GDDR3, DDR3, DDR2",,10.1,,55,4972,~9.3,,,,,,,,,,1215,3760,19162,,,,,,,,,,4297,, -AMD Radeon HD 8240,Temash,GCN,400,,,,,,11.1,,28,3858,~1.1,,1501,2273,458.5,427.5,265.5,292.5,,,1377,2636,,,,,,,,,,9.55,2198,272,32 -AMD Radeon R6 (Mullins),Mullins,GCN 1.1,500,,,64,,,12 (FL 12_0),,28,3517,~1.6,20511,1900,2258,582,,302,,,,,,,,,,,,,,,,,, -AMD Radeon HD 8250,Temash,GCN,300,400,,,,,11.1,,28,3849,~1.1,,1636,1965,468,422.5,234.5,253.5,,,1317,2570,,,,,,,,3.7,,,1895,275,54 -Intel HD Graphics (Cherry Trail),Cherry Trail,Gen. 8,200,600,,64/128,,,12 (FL 11_1),4.3,14,3210,~1,19303,1488,1783.5,343,298,248,225,,,,2595,,32,13.5,11,,,,,1.2,9.66,1973,277,89 -ATI Mobility Radeon HD 4570,M92-XT,Terascale 1,680,,800,64,"GDDR3, DDR2, DDR3",,10.1,,55,5453,~8.4,,,,,,,,,,1151,3633,17062,,,,,,,,,,3689,, -NVIDIA Quadro FX 570M,G64GLM,G8x,475,,700,128,GDDR3,256,10,,80,6041,~15.9,,,,,,,,,,,3800,26907.5,,,,,,,,,,4534,, -ATI Mobility Radeon HD 5450,Park Pro,Terascale 2,675,,800,64,DDR3,,11,,40,5090,~5.6,,,,,,,,,,,3775.5,,,,,,,,,,,,, -NVIDIA GeForce 8600M GT,G84M,G8x,475,,700,128,"GDDR3, GDDR2",512,10,,80,6033,~10,,,,,,,,,,1040,3277,22231.5,,,,,,,,,,3006.5,, -ATI Mobility Radeon HD 2600,M76,RV6xx,500,,600,128,"DDR2, GDDR3",256,10,,65,6059,~9.5,,,,,,,,,,,3177,15324,,,,,,,,,,2575,, -Intel HD Graphics 3000,Sandy Bridge,Gen. 6 Sandy Bridge,350,1350,,64/128,,,10.1,3.0,32,4700,~5.1,,2656.5,2502.5,,,,,,,1568,3286.5,11654,,,,,,,,,,4414,, -NVIDIA Quadro FX 380M,n10m-glm,GT2xx,625,,800,64,"GDDR3, DDR3",512,10.1,,40,5090,~5.4,,,,,,,,,,,3687,,,,,,,,,,,,, -NVIDIA GeForce 310M,N11M-GE1,GT2xx,606 / 625,,800,64,"GDDR3, DDR3",512,10.1,,40,5087,~7.6,,,,,,,,,,1123,3206,15456.5,,,,,,,,,,3175,, -NVIDIA GeForce G210M,N10M-GS,GT2xx,625,,800,64,"GDDR2, GDDR3",512,10.1,,40,5296,~5.1,,1536,1805,,,,,,,1021,3047,17585,,,,,,,,,7.53,2607.5,, -NVIDIA NVS 3100M,N10M-NS,GT2xx,600,,800,64,"GDDR3, DDR3",512,10.1,,40,5090,~10.5,,,,,,,,,,1120.5,3257,23455.5,,,,,,,,,,3374.5,, -NVIDIA GeForce 405M,,GT2xx,606,,1600,64,"GDDR3, DDR3",512,10.1,,40,4235,,,,,,,,,,,,,,,,,,,,,,,,, -NVIDIA GeForce 315M,N11M-GE,GT2xx,606,,790,64,"GDDR3, DDR3",512,10.1,,40,4762,~7.4,,,,,,,,,,1108.5,3267,14749,,,,,,,,,,3787,, -NVIDIA GeForce Go 7600 GT,G73M,,500,,600,128,"GDDR3, GDDR2, GDDR1",256,9c,,90,6345,~17.1,,,,,,,,,,,2833,20865,,,,,,,,,,,, -NVIDIA GeForce 9500M G,NB9P,G9x,500,,800,128,"GDDR2, GDDR3",1024,10,,65,5672,~8.9,,,,,,,,,,,3435,13926,,,,,,,,,,2220.5,, -NVIDIA GeForce 8600M GS,G84M,G8x,600,,700,128,"GDDR3, GDDR2",512,10,,80,6033,~10,,,,,,,,,,,3027.5,16193,,,,,,,,,,3131.5,, -NVIDIA NVS 2100M,,GT2xx,535,,800,64,"GDDR3, DDR3",512,10.1,,40,5090,~9.1,,,,,,,,,,992,2971,20085.5,,,,,,,,,,3084,, -NVIDIA GeForce Go 7700,G73M-B1,,450,,500,128,"GDDR3, GDDR2, GDDR1",512,9c,,80,6345,~18,,,,,,,,,,,2685.5,22170,,,,,,,,,,,, -NVIDIA GeForce Go 6800,NV42M,,300,,300,128 / 256,,256,9c,,130,6867,~18.6,,,,,,,,,,,1900,23800,,,,,,,,,,,, -NVIDIA Quadro FX Go 1400,NV41M,,330,,500,256,,256,9c,,130,6867,~1.9,,,,,,,,,,,1306,,,,,,,,,,,,, -ATI Mobility Radeon X800XT,M28Pro,,480,,550,256,,,9b,,130,6764,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Radeon HD 6430M,Seymour-LP,Terascale 2,480,,800,64,DDR3,,11,,40,4728,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Radeon HD 6380G,Llano,Terascale 2,400,,,,,,11,,32,4566,~3.1,,,,,,,,,,,2639,,,,,,,,,,,3318,, -ATI Mobility Radeon HD 5430,Park LP,Terascale 2,550,,800,64,"DDR3, GDDR5?",,11,,40,5090,~2.7,,,,,,,,,,962,3082,,,,,,,,,,,3702,, -AMD Radeon HD 8210,"Temash, Kabini",GCN,300,,,,,,11.1,,28,3858,~1,26764,1150,1904.5,370.5,343.5,209,227,,,984,2177.5,,25,,,,,,,,7.69,1691,241,45 -ATI Mobility Radeon HD 540v,,Terascale 1,550,,800,64,"GDDR3, DDR3, DDR2",512,10.1,,55,4972,~9,,,,,,,,,,1008,3494,18743,,,,,,,,,,4286.5,, -ATI Mobility Radeon HD 4550,M92,Terascale 1,550,,700,64,"GDDR3, DDR2, DDR3",,10.1,,55,5096,~8.8,,,,,,,,,,1051,3449,18299,,,,,,,,,,4230,, -Intel HD Graphics 2500,Ivy Bridge GT1,Gen. 7 Ivy Bridge,650,1150,,64/128,,,11.0,,22,4275,~4.1,,2817,2604.5,430,350.5,294.5,318,,,1930.5,3816,20814,,,,,,,,,,6037,286,50 -Intel HD Graphics (Ivy Bridge),Ivy Bridge GT1,Gen. 7 Ivy Bridge,350,1100,,64/128,,,11.0,,22,4092,~2.1,,1906.5,2286,370.5,315,254.5,285.5,,,1491,2930,9212,27,,,,,,,,,3382,275,44 -AMD Radeon HD 7350M,Robson Pro,Terascale 2,500,,1800,64,DDR3,1024,11,,40,4184,,,,,,,,,,,,,,,,,,,,,,,,, -AMD Radeon HD 6350M,Robson Pro,Terascale 2,500,,800-900,64,DDR3,1024,11,,40,4767,,,,,,,,,,,,,,,,,,,,,,,,, -ATI Mobility Radeon HD 4530,M92,Terascale 1,500,,700,64,"GDDR3, DDR2, DDR3",,10.1,,55,5453,~2.4,,,,,,,,,,708,2902,,,,,,,,,,,3441,, -ATI Mobility Radeon HD 4350,M92,Terascale 1,450,,600,64,"GDDR3, DDR2, DDR3",,10.1,,55,5453,~9.6,,,,,,,,,,,3130,14875,,,,,,,,,,3914,, -ATI Mobility Radeon HD 530v,M92,Terascale 1,450,,600,64,"GDDR3, DDR3, DDR2",,10.1,,55,4972,~4.3,,,,,,,,,,,2947,,,,,,,,,,,,, -NVIDIA GeForce 305M,n11m-lp1,GT2xx,525,,700,64,"GDDR2, GDDR3, DDR2, DDR3",512,10.1,,40,5087,~4.6,,,,,,,,,,,3101,,,,,,,,,,,,, -ATI Mobility Radeon X1700,M66-P,,475,,400,128,DDR/DDR2/GDDR3/GDDR4,256,9c,,90,6526,~15.9,,,,,,,,,,,2139,19877.5,,,,,,,,,,,, -ATI Mobility FireGL V5250,M56GL,,400,,330,128,DDR/DDR2/GDDR3/GDDR4,256,9c,,90,6192,~2.5,,,,,,,,,,,1672,,,,,,,,,,,,, -ATI Mobility Radeon X2500,M66,,460,,400,64 / 128,DDR2,256,9c,,80,6041,~11.6,,,,,,,,,,,2100,13972.5,,,,,,,,,,,, -NVIDIA GeForce Go 7600,G73M,,450,,350,128 / 64,"GDDR3, GDDR2, GDDR1",256,9c,,90,6498,~14.5,,,,,,,,,,,1900,18232,,,,,,,,,,,, -NVIDIA Quadro NVS 300M,G72GLM,,450,,500,128,GDDR3,,9b,,90,6414,,,,,,,,,,,,,,,,,,,,,,,,, -ATI Mobility Radeon X800,M28,,400,,350,128 / 256,"GDDR2, GDDR3",256,9b,,130,6767,~14.7,,,,,,,,,,,1300,19100,,,,,,,,,,,, -ATI Mobility Radeon X1600,M56,,450,,470,128,DDR/DDR2/GDDR3,256,9c,,90,6526,~13.2,,,,,,,,,,,1836,16479,,,,,,,,,,,, -ATI Mobility FireGL V5200,M56GL,,425,,475,128,DDR/DDR2/GDDR3,256,9c,,90,6526,~1.8,,,,,,,,,,,1203.5,,,,,,,,,,,,, -ATI Mobility Radeon 9800,M18,,350,,300,256,DDR2 / DDR3,256,9,,130,7106,~13.5,,,,,,,,,,,860,17800,,,,,,,,,,,, -NVIDIA GeForce Go 6600,NV43M,,375,,300,128,GDDR2,256,9c,,110,6651,~11.7,,,,,,,,,,,1150,15000,,,,,,,,,,,, -ATI Mobility Radeon X1450,M54,,550,,450,128,DDR1/DDR2/DDR3,256,9c,,90,6297,~7.9,,,,,,,,,,,1085,9900,,,,,,,,,,,, -ATI Mobility Radeon X700,M26,,350,,350,128,DDR/DDR2,256,9,,110,6903,~11.8,,,,,,,,,,,735,15675.5,,,,,,,,,,,, -ATI Mobility FireGL V5000,M26GL,,350,,350,128,GDDR3,128,9,,110,6889,~23.8,,,,,,,,,,,,16500,,,,,,,,,,,, -NVIDIA GeForce G 110M,N10M-GS1,G9x,400,,700,64,"GDDR2, GDDR3",1024,10,,55,5454,~3.6,,,,,,,,,,,2450,,,,,,,,,,,,, -AMD Radeon HD 6330M,Robson LP,Terascale 2,500,,800,64,DDR3,1024,11,,40,4767,,,,,,,,,,,,,,,,,,,,,,,,, -ATI Mobility Radeon HD 4330,M92-SE,Terascale 1,450,,600,64,"GDDR3, DDR2, DDR3",512,10.1,,55,5453,~6.8,,,,,,,,,,656,2352,14310,,,,,,,,,,3310.5,, -NVIDIA GeForce 8400M GT,G86M,,450,,600,128,GDDR3 / GDDR2,512,10,,80,6064,~1.5,,,,,,,,,,,1033,,,,,,,,,,,,, -NVIDIA Quadro NVS 140M,G84M,,400,,700,64,"GDDR3, GDDR2",256,10,,80,6064,~7.5,,,,,,,,,,,1410,13071.5,,,,,,,,,,2408,, -Intel HD Graphics 2000,Sandy Bridge,Gen. 6 Sandy Bridge,850/1100,1350,,64/128,,,10.1,,32,4700,~6.9,,,,,,,,,,895.5,2288,15201,,,,,,,,,,2298,, -NVIDIA GeForce G 107M,,G9x,,,,,,,10,,55,5218,,,,,,,,,,,,,,,,,,,,,,,,, -NVIDIA GeForce G 105M,N10M-GE1,G9x,640,,700,64,"GDDR2, GDDR3",512,10,,65,5454,~6.3,,,,,,,,,,788,2261,13616,,,,,,,,,,2416,, -NVIDIA GeForce G 103M,G98,G9x,640,,500,64,DDR2,512,10.0,,65,5218,~6.1,,,,,,,,,,366,1885,13833,,,,,,,,,,2131,, -NVIDIA GeForce 9500M GE,MCP79Mx + NB9M,,,,,64,"GDDR2, GDDR3",256,10.0,,65,5819,,,,,,,,,,,,,,,,,,,,,,,,, -NVIDIA GeForce G 102M,MCP75,G9x,450,,,,"DDR2, DDR3",512,10.0,,65,5400,~6.5,,,,,,,,,,,1409,10723,,,,,,,,,,2581.5,, -NVIDIA GeForce G 205M,MCP79MX,G9x,450,,,,,,10,,65,5096,~2.3,,,,,,,,,,,1589,,,,,,,,,,,,, -NVIDIA GeForce 9400M (G) / ION (LE),MCP79MX,,450,,,,,,10.0,,65,5540,~3.3,,,,,,,,,,607,1157,6427,,,,,,,,,,2326.5,, -Intel HD Graphics (Sandy Bridge),Sandy Bridge,Gen. 6 Sandy Bridge,350,1100,,64/128,,,10.1,,32,4611,~4.2,,1451.5,1404.5,,,,,,,976,2509,11429.5,,,,,,,,,,2577,, -Intel HD Graphics (Bay Trail),Bay Trail,Gen. 7 Ivy Bridge,311,896,,32/64/128,,,11,"4.0, ES 3.0",22,3747,~4.1,14748.5,1188,1228.5,216,186.5,147,149,,,637,1866,7727,16,8.75,5.2,,14509,8456,3.6,,5.52,1991.5,174,29 -VIA Chrome9HD,,,,,,,,,10.1,,0,6133,~3.1,,,,,,,,,,,2120,,,,,,,,,,,,, -AMD Radeon HD 7340,Zacate,Terascale 2,523,680,,,,,11,,40,4245,~2.1,,1385.5,1908,360.5,331.5,217.5,224,,,1070,2466.5,9548,,,,,,,,,,2121,258,63 -AMD Radeon HD 6320,Zacate,Terascale 2,500,600,,,,,11,,40,4777,~1.4,,,,332.5,302,,,,,891.5,2406.5,,,,,,,,,,,2056,, -AMD Radeon HD 7310,Zacate,Terascale 2,500,,,,,,11,,40,4245,~1.6,,1161,1593,286,260,200,192,,,639.5,1458.5,7452,,,,,,,,,,1796,162,28 -AMD Radeon HD 6310,Zacate,Terascale 2,500,,,,,,11,,40,4777,~3,,,,275,251,,,,,691,1984.5,8348,,,,,,,,,,1933,, -AMD Radeon HD 8180,Temash,GCN,225,,,,,,11.1,,28,3858,~0.7,,1021,1493,294,268,165,145,,,790,1723.5,,,,,,,,,,5.45,1469.5,216,30 -ATI Mobility Radeon HD 3470 Hybrid X2,M82-XT + RS780M,RV6xx,,,,,DDR2/GDDR3,,10.1,,55,5454,~6.8,,,,,,,,,,,2324,10748,,,,,,,,,,2098,, -NVIDIA GeForce 9400M GeForceBoost,,,,,,64,,,10,,65,5673,~7.1,,,,,,,,,,125,,9710,,,,,,,,,,,, -ATI Mobility Radeon HD 3470,M82-XT,RV6xx,680,,800,64,DDR2/GDDR3,,10.1,,55,6185,~7.4,,,,,,,,,,,1566,12640.5,,,,,,,,,,2245,, -NVIDIA GeForce 9300M G,NB9M-GS1,,400,,600,64,GDDR2 / GDDR3,256,10,,80,5796,~8.2,,,,,,,,,,,1775.5,13980,,,,,,,,,,2613,, -NVIDIA ION 2,"GT218-ION-A3, GT218-ILV-A3",GT2xx,405 / 475 / 535,,790,64,"DDR2, DDR3",512,10.1,,40,5087,~3.1,,,,,,,,,,724,1963,5539.5,,,,,,,,,,1027,, -NVIDIA GeForce 9300M GS,NB9M-GS,,550,,700,64,"GDDR2, GDDR3",256,10,,65,5672,~5.9,,,,,,,,,,267,1465,13583,,,,,,,,,,2561,, -NVIDIA Quadro FX 370M,NB9M-GLM,,580,,700,64,"GDDR2, GDDR3",256,10,,65,5600,~8,,,,,,,,,,,1595,13622,,,,,,,,,,3031,, -NVIDIA Quadro NVS 160M,,,580,,700,64,"GDDR2, GDDR3",256,10,,65,5600,~8.2,,,,,,,,,,,1841,13740,,,,,,,,,,2923,, -NVIDIA GeForce 9200M GS,NB9M-GE,,550,,700,64,"GDDR2, GDDR3",256,10,,65,5672,~6.3,,,,,,,,,,372.5,1817.5,14224,,,,,,,,,,2335,, -AMD Radeon HD 7290,Zacate,Terascale 2,280,400,,,,,11,,40,4550,~0.8,,,,226,206,,,,,534,1536,,,,,,,,,,,1342,188, -AMD Radeon HD 6290,Zacate,Terascale 2,280,400,,,,,11,,40,4550,~0.8,,,,200,179,,,,,497,1513,,,,,,,,,,,1174,, -ATI Mobility Radeon HD 3450,M82,RV6xx,500,,700,64,DDR2/GDDR3,,10.1,,55,6185,~5.9,,,,,,,,,,306.5,1911.5,12859,,,,,,,,,,2595,, -ATI Mobility Radeon HD 3430,M82-SE,RV6xx,450,,700,64,GDDR2,512,10.1,,55,5621,~7.2,,,,,,,,,,,1690,12163.5,,,,,,,,,,2129,, -ATI Mobility Radeon HD 3410,M82-MPE,RV6xx,400,,700,64,GDDR2,,10.1,,55,5621,~2.1,,,,,,,,,,,1450,,,,,,,,,,,,, -ATI Mobility Radeon HD 2400 XT,M74,RV6xx,600,,700,64,"DDR2, GDDR3",256,10,,65,6059,~6.2,,,,,,,,,,,1689,9962,,,,,,,,,,2653,, -ATI Radeon HD 4270,RS880M,RV6xx,590,,,,,512,10.1,,55,4976,~1.3,,,,,,,,,,230,1402,,,,,,,,,,,2220,, -ATI Radeon HD 4250,RS880M,RV6xx,500,,,,,512,10.1,,55,4976,~4.1,,,,,,,,,,227,1372,8689,,,,,,,,,,2117,, -ATI Radeon HD 4200,RV620,RV6xx,500,,,,,512,10.1,,55,5209,~3.6,,330,,,,,,,,236,1465,9370,,,,,,,,,,2229,, -Intel Graphics Media Accelerator (GMA) HD Graphics,GMA HD,Gen. 5 Arrandale,500,,,,,,10,,45,5087,~3.9,,,,,,,,,,297.5,1420,8301.5,,,,,,,,,,1790,, -AMD Radeon HD 6250,Zacate,Terascale 2,280,,,,,,11,,40,4777,~1.5,,793,1091,188.5,172,,,,,422,1446.5,6589.5,,,,,,,,,,1372,160,27 -NVIDIA Quadro NVS 150M,,,530,,700,64,"GDDR2, GDDR3",256,10,,65,5600,~8.2,,,,,,,,,,,1561,14211.5,,,,,,,,,,2515.5,, -NVIDIA Quadro FX 360M,NB8M-GLM,,400,,600,64,GDDR3,256,10,,80,6064,~8.7,,,,,,,,,,,1490,15053.5,,,,,,,,,,2985,, -ATI Mobility Radeon X1350,M52,,470,,350,128,DDR1/DDR2/GDDR3,256,9c,,90,6297,~9.6,,,,,,,,,,,1088,12234,,,,,,,,,,,, -ATI Mobility Radeon X1400,M54,,445,,250,128,DDR1/DDR2/GDDR3,256,9c,,90,6539,~11.2,,,,,,,,,,,1064,14404.5,,,,,,,,,,,, -NVIDIA GeForce 9100M G,MCP77MH MCP79MH,,450,,,,,,10,,65,5672,~1.8,,,,,,,,,,,1200,,,,,,,,,,,,, -NVIDIA GeForce 8400M GS,G86M,,400,,600,64,GDDR2 / GDDR3,256,10,,80,6064,~7.2,,,,,,,,,,,1343,12521.5,,,,,,,,,,2128.5,, -NVIDIA Quadro NVS 135M,G86M,,400,,600,64,"GDDR3, GDDR2",256,10,,80,6064,~8,,,,,,,,,,,965,10100,,,,,,,,,,,, -ATI Mobility Radeon HD 2400,M72,RV6xx,450,,500,64,"DDR2, GDDR3",256,10,,65,6059,~6,,,,,,,,,,,1215,10205,,,,,,,,,,2210,, -ATI Radeon HD 3200,RS780M,RV6xx,500,,,,,512,10,,55,5672,~2.8,,,,,,,,,,81.5,891,6020,,,,,,,,,,1511,, -ATI Radeon HD 4225,RS880M,RV6xx,380,,,,,512,10.1,,55,4976,~3.1,,,,,,,,,,140.5,1053,6695,,,,,,,,,,1665.5,, -ATI Radeon HD 4100,,RV6xx,350,,,,,512,10.1,,55,5157,,,,,,,,,,,,,,,,,,,,,,,,, -ATI Mobility Radeon HD 3400,,RV6xx,,,,,,,,,0,4884,,,,,,,,,,,,,,,,,,,,,,,,, -ATI Radeon HD 3100,RS780MC,RV6xx,350,,,,,512,10,,55,5614,~1.7,,,,,,,,,,,1164,,,,,,,,,,,,, -NVIDIA GeForce 8400M G,G86M,,400,,600,64,GDDR3 / GDDR2,256,10,,80,6064,~4.4,,,,,,,,,,,912,7560,,,,,,,,,,1443,, -NVIDIA Quadro NVS 130M,G86M,,,,700,64,"GDDR3, GDDR2",256,10,,80,6064,~1.6,,,,,,,,,,,1115,,,,,,,,,,,,, -NVIDIA GeForce 8200M G,MCP77MV MCP79MVL,,400,,,,,,10,,80,5672,~6.1,,,,,,,,,,,1250,7122,,,,,,,,,,,, -Intel Graphics Media Accelerator (GMA) 4700MHD,Montevina,Gen. 4.5,640,,,0,,0,10,,65,5553,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Graphics Media Accelerator (GMA) 4500MHD,Montevina,Gen. 4.5,533,,,0,,0,10,,65,5553,~1.5,,178,145,,,,,,,,623,5089.5,,,,,,,,,0.82,773,, -Intel Graphics Media Accelerator (GMA) 4500M,GL40,Gen. 4.5,400,,,,,0,10,,65,5553,~2.3,,,,,,,,,,,612.5,3882,,,,,,,,,,687,, -NVIDIA GeForce Go 7400,G72M,,450,,450,64 / 32,DDR3,128,9c,,90,6526,~9.8,,,,,,,,,,,801.5,12730.5,,,,,,,,,,,, -NVIDIA Quadro FX 350M,G72M,,450,,350,64,DDR-3,64,9c,,90,6468,~1,,,,,,,,,,,680,,,,,,,,,,,,, -NVIDIA Quadro NVS 120M,G72M,,450,,700,64,DDR-3,256,9c,,90,6406,~1,,,,,,,,,,,660,,,,,,,,,,,,, -NVIDIA GeForce Go 7300,G72M,,350,,700,64,DDR-3,64,9c,,90,6526,~8.7,,,,,,,,,,,712.5,11300,,,,,,,,,,,, -NVIDIA Quadro NVS 110M,G72M,,300,,600,64,DDR-3,64,9c,,90,6406,~8.4,,,,,,,,,,,600,11000,,,,,,,,,,,, -ATI Mobility Radeon X600,M24,,400,,250,128,DDR/DDR2,256,9,,130,7136,~7.5,,,,,,,,,,,280,10155.5,,,,,,,,,,,, -ATI Mobility FireGL V3200,M24GL,,400,,,128,DDR/DDR2,128,9,,130,7136,~17,,,,,,,,,,,,11800,,,,,,,,,,,, -ATI Mobility FireGL V3100,M22GL,,350,,200,128,DDR/DDR2,64,9,,110,7136,,,,,,,,,,,,,,,,,,,,,,,,, -ATI Mobility Radeon X2300,M64,,480,,400,128,DDR1/DDR2/GDDR3,256,9c,,90,6133,~4.9,,,,,,,,,,,892,8354.5,,,,,,,,,,1787,, -ATI Mobility Radeon HD 2300,M71,RV5xx,480,,400,128,DDR1/DDR2/GDDR3,,9c,,90,6133,~7.1,,,,,,,,,,,834.5,9000,,,,,,,,,,,, -ATI Mobility Radeon 9700,M11,,450,,275,128 / 64,DDR,256,9,,130,7136,~7.5,,,,,,,,,,,424,10000,,,,,,,,,,,, -ATI Mobility FireGL T2e,M11GL,,450,,260,128,,256,9,,130,7075,,,,,,,,,,,,,,,,,,,,,,,,, -ATI Mobility Radeon X1300,M52,,350,,250,128,DDR1/DDR2/GDDR3,256,9c,,90,6539,~7,,,,,,,,,,,725,9000,,,,,,,,,,,, -NVIDIA GeForce4 4200 Go,NV28M,,200,,200,128,DDR,128,8.1,,150,7700,~13.7,,,,,,,,,,,,9500,,,,,,,,,,,, -ATI Mobility Radeon 9600,M10,,300,,300,128 / 64,DDR,128,9,,130,7136,~12.2,,,,,,,,,,,,8490,,,,,,,,,,,, -ATI Mobility FireGL T2,M10GL,,300,,200,128,,256,9,,130,7349,~12.8,,,,,,,,,,,,8894,,,,,,,,,,,, -ATI Mobility Radeon 9550,M12,,210,,183,64,DDR,128,9,,130,7136,,,,,,,,,,,,,,,,,,,,,,,,, -NVIDIA GeForce Go 7200,G72M,,450,,350,32,DDR-3,64,9c,,90,6314,~5.9,,,,,,,,,,,674,7489,,,,,,,,,,,, -NVIDIA GeForce Go 6400,NV44M1,,400,,350,64,DDR,32,9c,,110,6526,~14.1,,,,,,,,,,,,9800,,,,,,,,,,,, -ATI Mobility Radeon X300,M22,,350,,250,64,DDR/DDR2,,9,,130,6764,~6.4,,,,,,,,,,,200,8646.5,,,,,,,,,,,, -NVIDIA GeForce Go 6250,NV44M1,,400,,350,64,DDR,32,9c,,110,6526,,,,,,,,,,,,,,,,,,,,,,,,, -NVIDIA GeForce Go 6200,NV44MV,,300,,300,64,DDR,32,9c,,110,6526,~13,,,,,,,,,,,,9000,,,,,,,,,,,, -NVIDIA GeForce FX Go 5700,NV36M,,450,,275,128,DDR,32,9,,130,7288,~15.9,,,,,,,,,,,,11000,,,,,,,,,,,, -NVIDIA Quadro FX Go 1000,,,,,,128,,,9,,130,7233,,,,,,,,,,,,,,,,,,,,,,,,, -NVIDIA GeForce FX Go 5600 / 5650,NV31M,,350,,300,128,DDR,32,9,,130,7594,~13.1,,,,,,,,,,,,9100,,,,,,,,,,,, -ATI Radeon Xpress X1270,M690T,,400,,,,,128,9,,80,6161,~2.8,,,,,,,,,,,327.5,5217,,,,,,,,,,559,, -ATI Radeon Xpress X1250,RS690M,,350,,,,,128,9,,80,6161,~3.7,,,,,,,,,,,387.5,6930,,,,,,,,,,880,, -ATI Radeon Xpress 1250,,,400,,,,,,9,,80,6316,~2.6,,,,,,,,,,,445,4576,,,,,,,,,,669,, -ATI Radeon Xpress X1200,RS690M,,350,,0,,,128,9,,80,6161,~3,,,,,,,,,,,278,3824,,,,,,,,,,,, -Intel Graphics Media Accelerator (GMA) X3100,Crestline,Gen. 4,500,,,0,,0,10,,90,6064,~2.3,,,,,,,,,,,430.5,4117,,,,,,,,,,665,, -Intel Graphics Media Accelerator (GMA) 3650,Cedar Trail,PowerVR SGX5,640,,,,,,9.1,,32,4427,~1.9,,,,,,,,,,,422,3207,,,,,,,,,,435,, -NVIDIA GeForce 7190M,,,,,,,shared Memory,,9c,,90,6526,,,,,,,,,,,,,,,,,,,,,,,,, -NVIDIA GeForce 7150M,C67,,425,,,,shared Memory,,9c,,90,6526,~3.5,,,,,,,,,,,315,4501,,,,,,,,,,,, -ATI Radeon Xpress 1150,RS482M,,400,,0,0,shared Memory,0,9b,,110,6406,~3.6,,,,,,,,,,,219,4712.5,,,,,,,,,,,, -NVIDIA GeForce Go 6150,C51MV,,425,,0,0,shared Memory,0,9c,,110,6526,~2.2,,,,,,,,,,,200,4000,,,,,,,,,,867,, -NVIDIA GeForce Go 6100,C51MV,,425,,0,0,shared Memory,0,9c,,110,6526,~3.8,,,,,,,,,,,173,5100,,,,,,,,,,,, -NVIDIA GeForce 7000M,C67,,350,,0,0,shared Memory,0,9c,,90,6526,~3.7,,,,,,,,,,,274,4860,,,,,,,,,,,, -Intel Graphics Media Accelerator (GMA) 3600,Cedar Trail,PowerVR SGX5,400,,,,,,9.1,,32,4427,~2,,,,,-1,,,,,,280.5,3514,,,,,,,,,,828,, -ATI Mobility Radeon 9200,M9,,250,,200,128,DDR,64,8.1,,150,7594,~11.1,,,,,,,,,,,,7670,,,,,,,,,,,, -ATI Mobility FireGL 9000,M9GL,,250,,200,128,DDR,64,8.1,,150,8018,~12.1,,,,,,,,,,,,8400,,,,,,,,,,,, -NVIDIA GeForce FX Go 5200,NV31M,,300,,300,128,DDR,32,9,,150,7594,~9.8,,,,,,,,,,,,6800,,,,,,,,,,,, -ATI Mobility Radeon 9000,M9,,240,,200,128,DDR,128,8.1,,150,7775,~8,,,,,,,,,,,,5565,,,,,,,,,,,, -NVIDIA GeForce 4 488 Go,NV17M,,275,,275,32,DDR,64,7,,150,7959,~7.8,,,,,,,,,,,,5400,,,,,,,,,,,, -NVIDIA GeForce 4 460 Go,NV17M,,250,,250,32,DDR,64,7,,150,7959,~7.9,,,,,,,,,,,,5500,,,,,,,,,,,, -NVIDIA GeForce 4 440 Go,NV17M,,220,,220,32,DDR,64,7,,150,7959,~7.2,,,,,,,,,,,,5000,,,,,,,,,,,, -NVIDIA GeForce 4 420 Go,NV17M,,190,,200,32,DDR,64,7,,150,7959,~6.2,,,,,,,,,,,,4300,,,,,,,,,,,, -Intel Graphics Media Accelerator (GMA) 3150,Pineview,Gen. 4,200,,,,,,9c,,45,5087,~1.3,,,,,,,,,,,144,2483.5,,,,,,,,,,287.5,, -Intel Graphics Media Accelerator (GMA) 950,GMA 950,Gen. 3,250,,0,0,,0,9c,,130,6863,~1.6,,,,,,,,,,,107,3009,,,,,,,,,,274,, -ATI Mobility Radeon 7500,RV200,,280,,200,64 / 128,DDR,64,7,,150,8144,~5.5,,,,,,,,,,,,3818.5,,,,,,,,,,,, -ATI Mobility FireGL 7800,,,280,,200,64 / 128,DDR,64,7,,180,6651,,,,,,,,,,,,,,,,,,,,,,,,, -Intel Graphics Media Accelerator (GMA) 900,GMA 900,Gen. 3,400,,0,0,,0,9c,,130,6863,~2,,,,,,,,,,,57,4000,,,,,,,,,,149,, -ATI Radeon Xpress 200M,,,350,,0,0,,0,9b,,130,6874,~2.3,,,,,,,,,,,202,4441,,,,,,,,,,194,, -ATI Radeon Xpress 1100,,,300,,,0,shared Memory,,9b,,110,6406,~3,,,,,,,,,,,97,4127,,,,,,,,,,,, -SIS Mirage 3+ 672MX,SISM672,,250,,,,,,9,,0,6192,~1.1,,,,,,,,,,,145,1395,,,,,,,,,,,, -SIS Mirage 3 671MX,671MX,,250,,,,,,8.1,,0,6406,~1.5,,,,,,,,,,,68,2061,,,,,,,,,,,, -Intel Graphics Media Accelerator (GMA) 600,GMA 600,PowerVR SGX5,400,,,,,,9.0c,,45,4976,~0.8,,,,,,,,,,,119,1562,,,,,,,,,,107,, -Intel Graphics Media Accelerator (GMA) 500,GMA 500,PowerVR SGX5,200,,,,,,10.1,,130,5522,~0.5,,,,,,,,,,,68,1016,,,,,,,,,,29,, -NVIDIA GeForce 3 Go,,,250,,,32 / 64 / 128,DDR,64,7,,150,7987,,,,,,,,,,,,,,,,,,,,,,,,, -NVIDIA GeForce 2 Go (200 / 100),NV11,,166,,143,32 / 64,DDR,64,7,,180,8324,~3.6,,,,,,,,,,,,2500,,,,,,,,,,,, -ATI Mobility Radeon 9100 IGP,RS350,,400,,,,,,8.1,,0,7480,~3.9,,,,,,,,,,,,2680,,,,,,,,,,,, -ATI Mobility Radeon 9000 IGP,RC350,,300,,0,0,,,8.1,,0,7533,~10.7,,,,,,,,,,,,7450,,,,,,,,,,,, -ATI Mobility Radeon M7,M7,,230,,183,64,DDR,32,7,,180,8049,~5,,,,,,,,,,,,3500,,,,,,,,,,,, -ATI Mobility Radeon M6,M6,,166,,166,32,DDR,16,7,,180,8049,~3.7,,,,,,,,,,,,2570,,,,,,,,,,,, -VIA Chrome9 HC,VN896,,250,,,,onboard,,9,,0,6133,~1.1,,,,,,,,,,,115,2029.5,,,,,,,,,,459,, -Intel Extreme Graphics 2,Montara,Gen. 2,133,,,0,,,8,,150,7317,~3.5,,,,,,,,,,,0,2457,,,,,,,,,,,, -ATI Mobility Radeon 7000 IGP,R100,,,,,0,,,7,,0,7594,~2.3,,,,,,,,,,,,1625,,,,,,,,,,,, -ATI Radeon IGP 340M,,,180,,,0,,,7,,0,7741,~1.8,,,,,,,,,,,,1235,,,,,,,,,,,, -ATI Radeon IGP 320M,,,160,,,0,,,7,,0,7741,~2.2,,,,,,,,,,,,1537,,,,,,,,,,,, -VIA S3G UniChrome Pro II,Zoetrope,,200,,,0,,,7,,0,6284,~1.5,,,,,,,,,,,,1018,,,,,,,,,,,, -VIA S3G UniChrome Pro,Zoetrope,,,,,0,,,7,,0,7106,~2.9,,,,,,,,,,,,2018,,,,,,,,,,,, -VIA Castle Rock,CLE266,,,,,,,,,,0,7653,,,,,,,,,,,,,,,,,,,,,,,,, -SIS Mirage 2 M760,M760,,200,,,,,,8.1,,0,7388,~2.2,,,,,,,,,,,,1514,,,,,,,,,,,, -SIS Mirage M661FX,,,133,,,,,,7,,0,7472,~1.9,,,,,,,,,,,,1300,,,,,,,,,,,, -VIA S3 Graphics ProSavage8,,,121,,,,,,,,0,8383,~0.9,,,,,,,,,,,,600,,,,,,,,,,,, -ATI Mobility 128 M3,M3,,105,,105,64,DDR,8,6,,0,8718,~0.6,,,,,,,,,,,,415,,,,,,,,,,,, -Silicon Motion SM502,,,,,,,,,,,0,6192,,,,,,,,,,,,,,,,,,,,,,,,, -unknown,,,,,,,,,,,0,19706,~1.6,,,,,,,,,,,,,74,62,35,35.64,,,,,,,, diff --git a/PCData/data/notebookcheck/mobile-gpu.html b/PCData/data/notebookcheck/mobile-gpu.html deleted file mode 100644 index 756611e..0000000 --- a/PCData/data/notebookcheck/mobile-gpu.html +++ /dev/null @@ -1,2818 +0,0 @@ - - - - - - - - - - - - - - -Mobile Graphics Cards - Benchmark List - NotebookCheck.net Tech - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- -Notebookcheck Logo - - - -
- -
-
-
-
-
-
-
-
-

Laptop Video Graphics Cards - Benchmark List

The table below can be used to sort through currently available mobile graphics cards by performance or specification. GPUs are ranked by approximate performance. 

-

Also refer to our Comparison of Graphic Cards for more information on the listed cards and the Gaming Performance List for gaming benchmarks.

-
Restrictions

(Manufacturer, Model, Series, Codename), Connect search words with   .

all, none

all, none

Permalink:

-

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
NVIDIA GeForce RTX 4090 Laptop GPUGN21-X11Ada Lovelace204020000256GDDR61638412 Ultimate4.65334
~72.683%
554375n3
64860n9
142552n9
45723n26
64848.5n26
35217.5n24
46386n25
20085n25
21279n25
113387
64691.5n4
4088
1057
993
1746n7
232
281n27
16004n5
49892n3
19891.5n2
NVIDIA RTX 5000 Ada Generation Laptop GPUAda Lovelace930168020000256GDDR61638412 Ultimate4.64257
~58.133%
39552n2
53052.5n2
27801n2
33145n2
15316.5n2
15539.5n2
742.3n2
367.5n2
AMD Radeon RX 7900MNavi 31RDNA 31825209018000256GDDR61638412_24.6545
~6833%
41670
59943
40123
50241
18114
19434
104.6
369
NVIDIA GeForce RTX 4080 Laptop GPUGN21-X9Ada Lovelace1860228020000192GDDR6X1228812 Ultimate4.65334
~64.963%
61168n8
132657n8
42156.5n16
57598n16
32343.5n14
40687n14
17218n14
17879.5n14
111294
58651.5n2
104.6n7
270n15
24367
38663
14841.5n2
NVIDIA RTX 4000 Ada Generation Laptop GPUAda Lovelace16000192GDDR61228812 Ultimate4.65257
NVIDIA RTX 3500 Ada Generation Laptop GPUAda Lovelace16000192GDDR61228812 Ultimate4.65257
NVIDIA GeForce RTX 4070 Laptop GPUGN21-X6Ada Lovelace217516000128GDDR6819212 Ultimate4.65334
~51.783%
603749
63781n17
162423n17
34455n34
41011n34
26013n33
29860n33
12062n33
11955n33
97153.5n2
55349.5n8
2674
990
743
229.5n16
115.05n2
225n33
19835
25731n2
10800
NVIDIA RTX 3000 Ada Generation Laptop GPUAda Lovelace16000128GDDR6819212 Ultimate4.65257
~38.133%
27083
29411
18847
20908
8811
8351
900
288
NVIDIA GeForce RTX 3080 Ti Laptop GPUGN20-E8Ampere975159014000256GDDR61638412_24.68698
~53.771%
648870n8
60593n26
152074n26
33697n45
42275n45
26549n43
31033n43
12267n42
12269n43
94760
56967n3
2363.08
174.3
206n42
17110n3
30717
10333
NVIDIA RTX A5500 Laptop GPUGA103SAmpere16000256GDDR61638412_24.68625
~47.742%
54323
104565
30135n3
35376n3
24046n3
26260n3
9872n3
9568n3
1099
366n3
NVIDIA GeForce RTX 3080 Laptop GPUGN20-E7 GA104Ampere780 - 11001245 - 171014000256GDDR61638412_24.681067
~47.471%
541176n11
49246n34
111181n34
29192n39
38087n39
22706n45
27266n45
10472.5n44
10773.5n44
75159n3
44856n3
245n3
129.2n3
182.3n35
6842n3
23340n5
11251n5
AMD Radeon RX 6850M XTNavi 22RDNA 2246318000192GDDR612288124.67710
~57.638%
61794n2
172972n2
30854.5n2
42015.5n2
27931n2
33900.5n2
11649.5n2
11837n2
200.8n2
NVIDIA GeForce RTX 3070 Ti Laptop GPUGN20-E6Ampere915148014000256GDDR6819212_24.68710
~52.263%
581927n5
58464n25
141689n25
30737n36
36969.5n36
24043n37
27776n37
10673n37
10462n37
81895
50062n4
201.5n38
17947n2
22796
8022
NVIDIA RTX A4500 Laptop GPUGA104Ampere930150016000256GDDR61638412_24.68625
NVIDIA RTX A5000 Laptop GPUGA104Ampere1215177014000256GDDR61638412_24.68942
~38.558%
33688.5n2
50153.5n2
28454n2
36163.5n2
22819n3
27271n3
10157n3
10307n3
2032
654
597
291n3
24031
9147
NVIDIA GeForce RTX 4060 Laptop GPUGN21-X4Ada Lovelace237016000128GDDR6819212 Ultimate4.65334
~46.375%
598142n3
60481n21
152642n21
30793n30
35653n30
23393n28
26233n28
10534.5n28
10301.5n28
90275
49745.5n6
2508.2
844.7
663.4
104.6n17
214.51n27
16072
20014
NVIDIA RTX 2000 Ada Generation Laptop GPUAda Lovelace16000128GDDR6819212 Ultimate4.65269
~30.367%
26717n2
28615n2
19082n2
21189.5n2
8331n2
7921.5n2
37844
53707
599.3
304.1
193.4
196.8n2
34.1
259n2
14884
6323
NVIDIA Quadro RTX 6000 (Laptop)TU102Turing1275145514000384GDDR62457612_14.6121528
~50.34%
11084
AMD Radeon RX 6800MNavi 22RDNA 22116230016000192GDDR612288124.67892
~54.667%
482999n3
58796n3
160859n3
28826.5n2
40390.5n2
26613n4
34199n3
10627n4
11256.5n4
77244
46433.5n2
117.45n2
197.97n2
16581n2
21425
14770
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
NVIDIA GeForce RTX 2080 Super MobileN18E-G3 TU104Turing1365156014000256GDDR6819212_14.6121317
~48.654%
54828n3
141486n3
28467n4
34875.5n4
21377.5n4
24960n4
10465.5n4
10313n4
69838
41873
166n4
17233
8244
NVIDIA GeForce RTX 3070 Laptop GPUGN20-E5 GA104Ampere780 - 11001290 - 162014000256GDDR6819212_24.681075
~4871%
510435n13
49493n33
136558n33
26152n54
33996n54
21167n54
25477.5n52
9681n54
9619n53
77147.5n2
47262n5
985
126.25n2
175.65n50
6836n3
24877n2
9606
NVIDIA RTX A4000 Laptop GPUGA104Ampere780168012000256GDDR6819212_24.68942
AMD Radeon RX 6800SNavi 23RDNA 21800197516000128GDDR68192124.67892
~49.258%
61531.5n2
163510n2
28793n2
36101n2
23465.5n2
26511n2
9220n2
9033n2
82247
51423
190n3
18164
17442
8018
AMD Radeon RX 7600M XTNavi 33RDNA 3230018000128GDDR68192124.66344
~4963%
418181n3
57801n3
152903n3
27492n3
36365n3
25367n3
28256n3
9803n3
9261n3
95780n2
22993n2
104.6n4
96.5n3
21251n3
6255n3
AMD Radeon RX 7700SNavi 33RDNA 3220018000128GDDR68192124.66332
NVIDIA GeForce RTX 3080 Max-QGN20-E7 GA104Ampere78012456000256GDDR61638412_24.681040
Apple M3 Max 40-Core GPULPDDR5-6400545
~37.117%
2941.5n2
1573n2
1178n2
137.38n2
Apple M2 Max 38-Core GPULPDDR5-64005332
~40.317%
3185
1707.7
1294.4
147.5
NVIDIA GeForce RTX 2080 MobileN18E-G3 TU104Turing1380159014000256GDDR6819212_14.6121792
~4563%
458810n4
44306.5n16
139346n16
25504n19
34897n17
20746n16
25436n16
9617n15
9854n15
68525
41995n4
144.85n12
11602.5n4
18239
7527
AMD Radeon RX 6700MR21M-E110-70RDNA 2230016000160GDDR610240124.671188
~44.758%
47472
91672
25735.5n2
33497
23986.5n2
27924n2
9038.5n2
8988.5n2
66973
46372
186
15120
16389
12486
Apple M3 Max 30-Core GPULPDDR5-6400545
NVIDIA Quadro RTX 5000 (Laptop)N19E-Q5Turing1035 / 13501545 / 177014000256GDDR61638412_14.6121651
~42.583%
501167
39398.5n2
117274n2
21068.5n4
24620n5
18943n2
23034.5n2
9012.5n2
9332n2
45180
1960
626
602
1195
302.1
125.5
209.5n4
19419
19614
7688
AMD Radeon RX 7600MNavi 33RDNA 3207016000128GDDR68192124.66344
NVIDIA GeForce RTX 3070 Max-QGN20-E5 GA104Ampere1290256GDDR6819212_24.681063
Apple M2 Max 30-Core GPULPDDR5-64005332
~8.54%
145.7
NVIDIA GeForce RTX 3060 Laptop GPUGN20-E3 GA106Ampere817170214000192GDDR6614412_24.681075
~4258%
466087n6
45661n39
104826n38
23069n44
27419n43
18748.5n50
20609n49
8322n50
8222n49
57333
47118n4
97.4
187n44
14081n3
Apple M1 Max 32-Core GPU1296512LPDDR5-640051118
~28.717%
2251.8n2
1227.24n2
920.95n2
94.35n2
AMD Radeon RX 7600SNavi 33RDNA 3186516000128GDDR68192124.66344
~48.954%
61238n3
155806n3
28571n4
34217.5n4
23167n3
25900n3
9372n3
9203n3
79339
51164n2
209n3
15192
17320
NVIDIA GeForce RTX 2070 Super MobileN18E-G2RTuring1140138014002256GDDR6819212_14.6121340
~45.554%
481195n3
46745n7
126287n7
24028.5n8
29092.5n8
18919.5n12
22016n12
8315.5n12
8272n12
70601
43041
142.1n9
15586
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
NVIDIA GeForce RTX 2080 Super Max-QN18E-G3Turing975123011000256GDDR6819212_14.6121340
~41.658%
468363n3
44534n7
127741n7
24119n10
29636.5n10
18578.5n10
21902.5n10
8075n11
8331n11
60306
38265
142n9
13620
16221
NVIDIA RTX A3000 Laptop GPUGA104Ampere1080156014000192GDDR61228812_24.68965
~32.163%
24449
29996
23888n3
25990n3
18097n3
19710n3
7703n3
7320n3
71308
1777
680
500
290n3
18652
6178
Apple M1 Max 24-Core GPU1296LPDDR5-640051118
~25.917%
2027
1153
686
94
Intel Arc A770MAlchemistXe HPG165016000256GDDR61638412_24.66625
~47.963%
53345
124487
29170
37375
22178.5n2
25563n2
10997
10783
77403
48471
75.2
216.53
18594
20027
10975
AMD Radeon RX 6650M XTRDNA 2216218000128GDDR68192124.67710
Apple M3 Pro 18-Core GPULPDDR5-6400545
~26.913%
1480
936
670
Apple M2 Pro 19-Core GPU4441398LPDDR5-64005332
~26.517%
1969.6n2
1131.2n2
748.2n2
140.91
AMD Radeon RX 6650MRDNA 2222218000128GDDR68192124.67710
~40.829%
26153
32846
22516
25739
8869
8700
175.8
AMD Radeon RX 6600MR21M-E65-70RDNA 22068217714000128GDDR68192124.671188
~42.171%
479404n5
54130.5n6
144612n6
25585n6
31868n6
20855n6
23525n7
8094n6
7840n7
72685.5n4
45858.5n4
217
93.1n4
179.6n10
14717n4
16123n3
5564
AMD Radeon RX 6700SRDNA 21700189014000128GDDR610240124.67710
~4458%
59135
153853
26867
32662
21375
24135
8547
8316
75332
48289
207
17573
15945
2530
NVIDIA GeForce RTX 2070 MobileN18E-G2 TU106Turing1215144014000256GDDR6819212_14.6121792
~39.263%
444708n4
39206.5n18
123004n18
20935n21
26005n21
17762n21
20392n19
7499n18
7738n18
64151
42409.5n4
133n18
13457n3
14446
6570
NVIDIA Quadro RTX 5000 Max-QN19E-Q5 MAX-QTuring600 - 9301350 - 145514000256GDDR61638412_14.6121651
~34.683%
433183n3
32096n7
64768n7
20890n9
26465n9
16600.5n10
19790n10
7282.5n10
7396n10
53221n2
40509.5n2
1334.5n2
522n2
466.7n2
236.6
94.6
210n9
6819n3
14178.5n2
4983n2
NVIDIA GeForce RTX 2080 Max-QN18E-G3-A1 MAX-Q TU104Turing735-9901095-123012000256GDDR6819212_14.6121792
~36.863%
425550n5
34287n17
117764n17
21067n20
27973n20
17504n21
20703n19
7484n19
7923n19
51930
37613n5
119.7n16
8197.5n4
14673
5110
AMD Radeon RX 5700MNavi 10 / R19M-E120Navi / RDNA1465172012000256GDDR68192124.671372
NVIDIA GeForce GTX 1080 MobileN17E-G3Pascal1566173310000256GDDR5X819212_14.5162665
~38.571%
409018n8
32845n24
126690n24
20498.5n26
28526.5n26
17223n24
21394n24
6584.5n8
6917n8
48874n2
34697.5n6
225.2
95.9
122.7n13
9778.5n10
16459n8
4525n2
NVIDIA Quadro RTX 4000 (Laptop)N19E-Q3Turing1110156014000256GDDR6819212_14.6121651
~32.875%
445161
38830
119052
21595n2
25370.5n2
16903n2
18849n2
7362n2
7284n2
56250
1213
490.4
440.5
89.9
215.5n2
6824
13576
5927
NVIDIA GeForce RTX 3060 Max-QGN20-E3 GA106Ampere1283192GDDR6619212_24.681063
Apple M3 Pro 14-Core GPULPDDR5-6400545
~19.417%
1299
818
565
129.85
Apple M2 Pro 16-Core GPULPDDR5-64005332
~2417%
1815
1011
659
141.9
Apple M1 Pro 16-Core GPU1296LPDDR5-640051118
~2017%
1561
869
544
85.5
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
AMD Radeon PRO W6600MRDNA 214000128GDDR68192124.67908
NVIDIA GeForce RTX 2070 Super Max-QN18E-G2RTuring930115511000256GDDR6819212_14.6121340
~4158%
461648n2
47119n7
126747n7
23755.5n10
27724n10
18395n10
20872.5n10
7611.5n10
7373.5n10
65101
43406
138n9
6835
14015
NVIDIA Quadro RTX 4000 Max-QN19E-Q3 MAX-QTuring780 - 9601380 - 148514000256GDDR6819212_14.6121651
~28.338%
23809
35167
19888n2
23574n2
15010
17049
6724
6764
210.5n2
Apple M1 Pro 14-Core GPU1296LPDDR5-640051118
~18.817%
1457
817
496
91.8
NVIDIA GeForce RTX 2070 Max-QN18E-G2 MAX-Q TU106Turing885-10801185-130512000256GDDR6819212_14.6121792
~33.563%
413114n10
36551.5n28
106564n28
18964n31
22089n31
15494n33
17335n31
6571n28
6661n28
48510
35284n6
119.95n26
8082.5n4
12103
5235
AMD Radeon RX 6600SRDNA 2188116000128GDDR68192124.67710
NVIDIA Quadro P5200Pascal131615697216256GDDR51638412_14.5162517
~36.358%
43443.5n2
106328n2
21715n2
25100n2
16625.5n2
18467n2
6646.5n2
6422n2
65844
44390
234.3n2
6833n2
15892
5183
NVIDIA Quadro RTX 3000 (Laptop)N19E-Q1Turing945138014000192GDDR6614412_14.6121651
~2775%
36407n3
91394n3
17864n4
19878.5n4
13570n3
14841.5n2
5923n3
5589n3
50309
37304
1010
407.8
384.8
58.3
204n4
6821
8716
5769
NVIDIA GeForce RTX 2060 MobileN18E-G1 TU106Turing960120014000192GDDR6614412_14.6121792
~33.463%
411721n12
36017.5n36
99178.5n36
18110n40
21261.5n40
14690n43
16331n43
6192n41
6141n41
57644
38509n5
120.4n40
9210n4
12241n3
5054
NVIDIA Quadro RTX 3000 Max-QN19E-Q1 MAX-QTuring600 - 8701215 - 138014000192GDDR6614412_14.6121651
~24.254%
33281.5n2
66284n2
16577n3
17523n3
12642n3
13617n3
5357n3
5048n3
68
202n3
6821
10064
4392
NVIDIA GeForce GTX 1080 Max-QN17E-G3 Max-QPascal1101 - 12901278 - 146810000256GDDR5X819212_14.5162378
~34.188%
387951
28375n3
114542n3
16910.5n6
23540n5
14273.5n6
18191.5n6
5591.5n2
5868.5n2
39562
31555
69346
1365
432.5n2
414
197
84.8
111.15n2
9138n2
13756n2
4618
NVIDIA GeForce GTX 1070 MobileN17E-G2Pascal144316458000256GDDR5819212_14.5162649
~28.871%
338057n17
27920n51
101041n51
16939.5n58
22575.5n58
13797.5n56
17236.5n56
5268n21
5485n21
34389
31045n15
298.5
82.5n2
112.3n37
7504n20
12369.5n10
4097n5
NVIDIA GeForce RTX 2060 Max-QN18E-G1 MAX-Q TU106Turing975118511000192GDDR6614412_14.6121792
~27.771%
308872
30659.5n4
58890n4
18065n4
19778.5n4
13716n4
14909.5n4
5844.5n4
5638.5n4
50957
37332
1123
497.9
411.3
137n4
11800
5786
NVIDIA Quadro P4200Pascal121514807132256GDDR5819212_14.5162036
~28.94%
12485n2
NVIDIA GeForce RTX 4050 Laptop GPUGN21-X2Ada Lovelace23701600096GDDR6614412 Ultimate4.65334
~41.979%
552112n2
52615n21
139468n21
27315n29
30910n30
19925n28
22597.5n28
8647.5n28
8429.5n28
85660
50886n7
2143.4
801
592
238n15
205n30
16035n3
16302
8036
NVIDIA RTX A2000 Laptop GPUGA107Ampere893168714000128GDDR6819212_24.68965
~29.758%
40815n7
60336n7
17348n8
18058n9
12211n9
13157n9
5523n9
5016n9
63738
36019
311n8
6839
13585
4554
Intel Arc A730MAlchemistXe HPG110014000192GDDR61228812_24.66625
~38.571%
467230
45257n4
83396n4
24285.5n4
29144n4
18213.5n4
21294n4
8919.5n4
8813n4
63380n2
44798n2
104.6
61
196.37n3
16778.5n2
14038.5n2
9344
AMD Radeon Pro 5600MNavi 10Navi / RDNA12652048HBM28192124.671266
AMD Radeon RX 5600MNavi 10Navi / RDNA126512000192GDDR66144124.671426
~26.958%
36805
72335
20663.5n2
24213n2
15729n2
17652.5n2
6610n3
5933.5n2
18582
38139
122.7n2
12922
2921
1082
NVIDIA Quadro P5000N17E-Q5Pascal116415066006256GDDR51638412_14.5162517
~26.779%
401246
28999n3
86679n3
16450n3
20096n3
12363n3
14666n3
4836n2
3882.5n2
44689
33236
1192
448.1
377.6
74.35n2
138.4n3
6830
11544n2
4323n3
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
NVIDIA GeForce GTX 1660 Ti MobileN18E-G0Turing1455159012000192GDDR6614412_14.6121685
~31.563%
419800n6
35118.5n18
97517n18
17351n23
20118.5n24
13140n23
14818n24
5697n21
5659n22
49309
38153.5n4
120.55n18
8212n5
10148
4827
NVIDIA GeForce RTX 3050 Ti Laptop GPUGN20-P1Ampere1222148512000128GDDR6409612_24.68937
~28.263%
422757n3
39980n23
72925n23
16439n27
18057n27
11894n27
13359.5n26
5341n26
5170n27
45370
1053
454
336
166n27
13438.5n2
NVIDIA GeForce RTX 3050 6GB Laptop GPUGN20-P0-R 6GBAmpere123714921200096GDDR6614412_24.68343
~20.533%
17223
18059
11330
12618
5182
4820
104.6
117.6
Intel Arc A570MAlchemistXe HPG900130014000128GDDR6819212_24.66137
NVIDIA RTX A1000 Laptop GPUGA107Ampere14000128GDDR6409612_24.68625
~25.538%
40266
70880
15198
14402
10123
10914
4558
4101
294
NVIDIA GeForce GTX 1070 Max-QN17E-G2 Max-QPascal1101 - 12151265 - 13798000256GDDR5819212_14.5162378
~28.367%
334256n7
28582.5n16
99551.5n16
15409n20
18688n18
12598.5n16
14678.5n16
4616n5
4708n5
44090
30648.5n4
459
102.1n11
10777n8
10917n5
4937.5n2
Intel Arc A550MAlchemistXe HPG900200514000128GDDR6819212_24.66625
~27.717%
12900
14350
6320
5830
NVIDIA Quadro P5000 Max-QN17E-Q5 Max-QPascal110113666006256GDDR51638412_14.5162517
NVIDIA GeForce RTX 3050 4GB Laptop GPUGN20-P0Ampere1238150012000128GDDR6409612_24.68948
~27.567%
480364n2
34692n17
65911n17
15134n21
15712n21
10953n19
12125n19
4877n19
4500n20
43216
39512n2
147
140.8n18
11506
10499
4713
Intel Arc A530MAlchemistXe HPG900130014000128GDDR6819212_24.66138
NVIDIA GeForce GTX 1660 Ti Max-QN18E-G0Turing1140133512000192GDDR6614412_14.6121685
~23.175%
306910n3
33027n7
63086n7
15913n7
17439n8
11615n7
13355n7
5072n7
5084.5n8
31845
25211n4
943
360.6
345.8
96.9n7
8562.5n4
10027
4254
NVIDIA RTX A500 Laptop GPUGA107Ampere1400064GDDR6409612_24.68625
AMD Radeon RX 6550MRDNA 2200025601800064GDDR6409612_24.66344
~22.433%
19932
20506
12994
14696
4955
4546
104.6
134.8
AMD Radeon RX 6500MRDNA 221911800064GDDR6409612_24.66711
~31.758%
92553
92553
17548
16290
12287
13980
4795
4434
51599
35958
181
13701
8384
1717
AMD Radeon RX 6550SRDNA 221701600064GDDR6409612_24.66344
NVIDIA GeForce GTX 980 (Laptop)N16E-GXXMaxwell112612283500256GDDR5409612_14.5283359
~26.658%
347481n3
27629n7
76705n7
14925n8
17200.5n8
11096n8
13047n8
39702n2
32943n3
384.9n2
117.25n6
8278.5n6
9468n5
3098n5
NVIDIA Quadro M5500Maxwell113911406606256GDDR5819212_14.5282799
~17.48%
14413
106.7
NVIDIA Quadro P4000N17E-Q3Pascal120212286006256GDDR51638412_14.5162517
~21.475%
369407
18726
53834
12346
15433
10158
12259
3825
3960
36260
29155
1114
408.4
318
107.2
6831
8609
3564
NVIDIA Quadro T2000 (Laptop)N19P-Q3Turing157517858000128GDDR5409612_14.6121651
~18.913%
13271n2
13523.5n2
203
NVIDIA GeForce GTX 1060 MobileN17E-G1Pascal140416708000192GDDR5614412_14.5162663
~23.467%
298378n28
24326.5n68
74604.5n68
12449n78
14693n77
9739n77
11558n77
3618n20
3580.5n20
34127n2
26152n10
81.7
102.1n51
6838n30
8538.5n20
3426.5n2
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
NVIDIA GeForce GTX 1650 Ti MobileN18P-G62Turing1350148512000128GDDR6409612_14.6121340
~27.563%
410191n3
28177n7
65163n7
13072.5n8
13266n8
9222n9
9930n9
3851n9
3618n9
43517
39720
126.65n8
6831.5n2
7120
10574
Intel Arc A370MAlchemistXe HPG15501400064GDDR6409612_24.66625
~18.538%
28128n3
35604n3
12520.5n4
12089.5n4
7717n3
8149n3
4255n3
3885n3
129.1n3
AMD Radeon RX 5500MNavi 14 / R19M-E85Navi / RDNA1327164514000128GDDR64096124.671526
~21.858%
210925n2
28923.5n4
50946n5
13344n7
16476n8
10568n6
12276n6
4174n5
4298n5
25762.5n2
103n5
8386
9581
3411n2
AMD Radeon Pro 5500MNavi 14Navi / RDNA130012000128GDDR68192124.671481
~2746%
364184
30690
65776
14097
14725
9196
10399
3629
3364
34321
169.3n2
NVIDIA Quadro P4000 Max-QN17E-Q3 Max-QPascal111312406006256GDDR51638412_14.5162517
~24.850%
297918
25528
74933
13482
15837
10473
12312
28211
105
12498
8605
4369
NVIDIA Quadro P3200N18E-Q1Pascal708 - 120212287008192GDDR5608412_14.5162470
~27.567%
419543
34178n5
82506.5n4
15085.5n4
16619n4
11058n5
12554.5n4
4508.5n4
4356n3
45999n2
29206.5n2
59.9n3
172n5
6819n3
8791n3
4192n5
AMD Radeon RX 580X (Laptop)PolarisPolaris13408000256GDDR5819212_0141788
AMD Radeon RX 580 (Laptop)PolarisPolaris100010778000256GDDR5819212_04.6142420
~2163%
290090
30938.5n2
69324.5n2
12973n2
15223n2
9754n2
11261n2
3707n2
3505n2
28909
120.4
107.75n2
10620.5n2
8688
894
AMD Radeon RX 6450MRDNA 2200022201800064GDDR6409612_24.66344
AMD Radeon RX Vega MobileVega MobileVega2048HBM2409612_1142156
NVIDIA GeForce RTX 2050 MobileGN20-S7Ampere14771400064GDDR6409612_14.68728
~21.267%
25879n7
58068n7
11734n7
12195n7
7746n7
8815n7
3417.5n8
3186n7
46821n2
39263n2
950
443.2
157.7n7
6856
9236.5n2
2690
NVIDIA GeForce MX570GN20-S5Ampere14771200064GDDR6204812_14.68728
~168%
3625
3610n2
AMD Radeon RX 6300MRDNA 2151218000128GDDR6204812_24.66710
NVIDIA GeForce GTX 1650 MobileN18P-G0, N18P-G61Turing1380156012000128GDDR5, GDDR6409612_14.6121685
~20.883%
364872n11
25707n21
57365n21
11788n29
13131.5n30
8081n31
9313n32
3595.5n30
3488n31
31310.5n2
34484.5n6
775
331
272.9
100.6
40.4
103.55n26
6821n7
6931n2
2872.5n2
AMD Radeon Pro 5300MNavi 14Navi / RDNA125012000128GDDR64096124.671481
AMD Radeon RX 5300MNavi 14 / E19M-E65Navi / RDNA103614451400096GDDR63072124.671526
~23.754%
32417
55837
12818.5n4
14351n4
9093n4
10306n3
3866.5n2
3566.5n2
39264
36032
111
7843
3395
NVIDIA Quadro P3000N17E-Q1Pascal108812157008192GDDR51638412_14.5162517
~19.679%
331998n2
24681n2
63331.5n2
11229n3
12105n3
8155.5n2
9255.5n2
2999
2864
33390
29440
712
328.6
249.9
50.9
113.4n3
6835n3
6556n2
3351.5n2
NVIDIA GeForce GTX 1060 Max-QN17P-G1 Max-QPascal1063 - 12651341 - 14808000192GDDR5612_14.5162378
~22.863%
367999n5
24154.5n10
74101n10
11973n10
13333.5n10
9148.5n10
10430n10
3415n2
3324n2
34189
398
110.55n10
6829.5n6
7653n5
2924
NVIDIA Quadro P3000 Max-QN17E-Q1 Max-QPascal107512407008192GDDR51638412_14.5162284
NVIDIA GeForce GTX 1650 Ti Max-QN18P-G62 Max-QTuring1035120010000128GDDR6409612_14.6121340
~25.358%
421834
22895n7
47657n7
11398n9
11538n9
7700n12
8564n11
3235.5n10
3098n9
31116
30266
140n9
6297
10809
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
NVIDIA Quadro T2000 Max-QN19P-Q3 MAX-QTuring930 / 12001500 / 16208000128GDDR5409612_14.6121651
~17.675%
75193
24991.5n2
41106n2
11907n2
11461n2
7543.5n2
8261.5n2
3352n2
3094n2
39269
36376
622
255.2
234.9
220n2
5840
6331
3050
AMD Radeon RX 480 (Laptop)PolarisPolaris256GDDR512142680
~11.98%
7200
4070
AMD Radeon Pro WX 7100Polaris 12Polaris12437000256GDDR5819212Vulkan142468
AMD Radeon RX 570X (Laptop)Polaris Polaris11687000256GDDR5819212Vulkan141788
AMD Radeon RX 570 (Laptop)Polaris 10 ProPolaris92612067000256GDDR5819212Vulkan142523
AMD Radeon RX 470 (Laptop)Polaris 10 ProPolaris92612067000256GDDR5819212Vulkan142677
~20.58%
8961
10715
NVIDIA GeForce GTX 1650 Max-QN18P-G0 / N18P-G61Turing102012458000128GDDR5, GDDR6409612_14.6121685
~20.263%
373879n4
20883n12
45243.5n12
10471n13
11082.5n14
7004.5n12
7779n12
3070n8
3016n10
30957
32040.5n2
108.05n12
5967.5n2
5833
3068
NVIDIA T1200 Laptop GPUTuring855142510000128GDDR6409612_14.612965
~2454%
29050n2
50827n2
13779n3
14387n3
9255n3
10134n3
3891n3
3595n3
44135
38139
216.77n3
7416
2370
NVIDIA Quadro T1000 (Laptop)N19P-Q1Turing139514558000128GDDR5409612_14.6121651
~20.683%
375510
25273n2
53628.5n2
11592n3
11377n3
7783n3
8727n3
3474n3
3261n3
31509
35033.5n2
659.5n2
315.3n2
243.6n2
110.3
39.3n2
185.7n3
6818
5965.5n2
2768n2
NVIDIA Quadro T1000 Max-QN19P-Q1Turing795 / 123014558000128GDDR5409612_14.6121651
Intel Arc 8-Cores iGPUMeteor Lake iGPUXe LPG230012_24.652
~18.263%
32084n2
44146n2
12973n2
12693n2
8211n3
8971n3
3693n3
3305n5
43185
817.4
296.5n2
151n3
17440
7627
2611
Intel Arc A350MAlchemistXe HPG11501400064GDDR6409612_24.66625
~16.471%
25146.5n2
36314.5n2
10766n2
10730n2
6009n3
7147n3
3397n3
3050n3
31023
31625
640
309
194
19.5
149.27n2
4447
2796
Intel Arc 7-Cores iGPUMeteor Lake iGPUXe LPG220012_24.652
NVIDIA T600 Laptop GPUTuring140010000128GDDR6409612_14.612977
~21.558%
35278
53941
10973
10498
7475
7928
3075
2766
39112
43438
585.11
268
5694
2200
NVIDIA T550 Laptop GPUTU117Turing106516651200064GDDR5, GDDR6409612_14.612567
~1463%
17614n2
33218.5n2
8160n2
8066.5n2
4581n3
4890n3
2066n3
1928n3
25155
31003
449.9
229.9
172.6
189.2n3
5190
AMD Radeon RX 490MPolarisPolarisGDDR512142692
NVIDIA GeForce GTX 980MMaxwell103811275000256GDDR5819212_14.5283356
~19.683%
327632n10
22162n33
65241n33
11177n35
12517n35
8343n38
9682n38
2949
2805
31944n5
26811n9
660
338
252
110.6n5
40.1
101.3n30
6837n22
6552n12
2294.5n8
AMD Radeon RX Vega M GHVega Kaby Lake-GVega10631190HBM2409612_1142168
~22.258%
357446
24988.5n2
59162
13212
14302
8506n3
10248
2999n2
2908
33046
143.95n2
13015
6661
2867
NVIDIA Quadro M5000MMaxwell96210515000256GDDR5819212_14.5282996
~22.658%
324161
23878.5n2
63738n2
11110n3
11845n3
8094.5n2
9227.5n2
30962n2
112.3n2
47.85n2
113.3n2
7675.5n2
6291
2173n2
AMD Radeon Pro Vega 20Vega MobileVega8151283HBM24096141856
~17.879%
278586
21984
62318
11934.5n2
12289n2
7558n3
9043.5n2
2794.5n2
2600.5n2
33590
32864
578
111.3
117.8
35.1
129.5n2
12230
6431
2081
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
AMD Radeon 780MPhoenixRDNA 31500300012_24.64344
~20.183%
431550n2
34005n7
47301n7
11819n19
12032n20
6922n19
7627.5n20
2939n19
2639n20
40258n4
42241.5n4
574
288
224
153.8n16
22.2n2
185.1n17
15175.5n4
10102n3
1466n2
Apple M3 10-Core GPULPDDR5-6400545
~13.917%
864.2
563.5
393
129.8
NVIDIA GeForce MX550GN18-S5Turing13201200064GDDR612_14.612728
~19.258%
29680
40364
10319.5n2
10005n2
5869n2
6125.5n2
2800n3
2470n3
36560
42476
27.1
173.45n2
6176
1058
NVIDIA GeForce GTX 1050 Ti MobileN17P-G1Pascal149316207000128GDDR5409612_14.5142537
~18.467%
299188n16
22393n37
50514n37
9117n36
9615.5n36
6703.5n38
7740.5n38
2450.5n16
2326n16
30690
27473n11
322.4
99.7n31
6756n12
5380n5
2646n5
AMD Radeon 680MRDNA 2 RembrandtRDNA 2240012_16710
~18.871%
353317n10
30929n23
43275n23
10382n30
10419n30
6287n31
6865n31
2609n31
2323n31
33260n10
32341n11
263n9
18.8n9
144.56n32
15245.5n14
5813n11
1277n8
NVIDIA Quadro P2000GP107GLPascal121514686008128GDDR5409612_14.5142354
~1967%
350317
24335n2
43565.5n2
8699n2
8387n2
6160n2
6847n2
2259
2046
32964
33795
34.6
180.85n2
6782
4858.5n2
2691.5n2
NVIDIA Quadro P2000 Max-QGP107GLPascal121514686008128GDDR5409612_14.5142354
~17.858%
326075
14996
28679
8363
8148
5958
6742
2206
2049
32724
31482
137.9
6820
2617
NVIDIA Quadro M4000MMaxwell97510135012256GDDR5409612_14.5282996
~15.533%
17686n2
49204
9295.5n2
10259
6937
7723
93.2
5686
NVIDIA GeForce GTX 970MMaxwell92410385000192GDDR5614412_14.5283356
~19.658%
274626n11
20720n36
51247n36
9403n36
9877.5n36
6565n37
7463n37
28845
26468n8
93n3
90.5n33
6830n27
5137.5n8
2223n10
NVIDIA T500 Laptop GPUTuring136516951000064GDDR5, GDDR6409612_14.6121663
~12.463%
15851n3
23453n3
8132n4
7995.5n4
3973.5n4
4224.5n4
1958n4
1787.5n4
31133
503
236
183
173n4
4734
1976
NVIDIA GeForce MX450N17S-G5 / GP107-670-A1Turing139515751000064GDDR5, GDDR6204812_14.6121231
~12.679%
335125n7
18399n13
27570n13
8068n15
8250n16
4306n18
4725n17
2099n16
1900n16
22831
411
209
156.9
235
57.2
20.5
130n19
4104
986
AMD Radeon R9 M395XAmethyst XTGCN 39095460256GDDR512 (FL 12_0)283347
~15.68%
7042
7921
NVIDIA GeForce GTX 1050 Ti Max-QN17P-G1 Max-QPascal1151 – 12901290 – 14177000128GDDR5409612_14.5162172
~16.579%
324705
24021n5
46952n5
9106n7
8752n7
6688n7
7324n7
2485n3
2261n3
29503.5n2
28797n2
531n2
253.15n2
184.85n2
40.1
102n7
4972n3
4879n2
2221.5n2
AMD Radeon Pro Vega 16Vega MobileVegaHBM24096141856
~17.438%
29958
56273
10926
10569
6902
7745
2443
2198
130.2
AMD Radeon RX Vega M GL / 870Vega Kaby Lake-GVega9311011HBM2409612_1142168
~13.671%
299071n3
19473n5
38812n5
9380n5
9862n5
6225n5
7329n5
2225n3
2072n3
16707
502
182.5
132.5
120.65n4
9791n2
956n3
2253n2
AMD Radeon Pro WX Vega M GLVega Kaby Lake-GVega9311011HBM2409612_1142168
~12.250%
19765
38986
9731
10020
6253
7333
2213
2062
132.5
9667
967
1567
AMD Radeon R9 M485XGCN 35000256GDDR5812 (FL 12_0)282771
AMD Radeon R9 M295XTongaGCN 38505448256GDDR512 (FL 12_0)283347
~17.250%
21221n3
38132n2
8729.5n2
8850.5n2
5941n3
6590.5n2
29972
35421
393
179
108.7n2
5205
AMD Radeon R9 M390XAmethyst (XT) / TongaGCN 37235000256GDDR5409612 (FL 12_0)4.3 / Vulkan283111
~15.58%
9082
9448
NVIDIA Quadro M3000MMaxwell10505000256GDDR5409612_14.5282996
~16.863%
21407.5n2
44602.5n2
8539.5n2
8288.5n2
5971.5n2
6536.5n2
27405
27320.5n2
249.9
79.95n2
38.15n2
92.05n2
5649.5n2
4737
2261n2
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
NVIDIA GeForce GTX 1050 MobileN17P-G0Pascal135414937000128GDDR5409612_14.5142537
~14.979%
287287n20
18946n40
38041.5n40
7552n42
7678.5n42
5452n43
6066n43
1774n11
1610n11
26560
25817n11
533
247
187.4
78.3
102.4n41
6831n23
4583n14
2008n4
AMD FirePro W7170MTongaGCN 37235000256GDDR5409612 (FL 12_0)4.3 / Vulkan282996
~16.558%
21612
43124
9580
9708
6180
6935
26345
28430
76.9
30.7
102.8
9551
925
1412
AMD Radeon R9 M395GCN8345460256GDDR5204812 (FL 12_0)4.3 / Vulkan283111
~15.425%
16305
38490
8305
8656
5920
6819
NVIDIA GeForce GTX 880MN15E-GX-A2Kepler9545000256GDDR5819212 (FL 11_0)4.3283565
~16.863%
268706
19151n10
39891n10
8319.5n10
8578n10
5482.5n10
6101n10
28022n5
29036.5n2
65
81.35n4
101.4n9
10451n3
4916
899
NVIDIA GeForce GTX 1050 Max-QN17P-G0 Max-QPascal999 - 11891139 - 13287000128GDDR5409612_14.5142172
~1483%
318811
18259.5n4
35392n4
7347.5n4
7153.5n4
5223n4
5649.5n4
1753.5n2
1615n2
26080.5n2
19690.5n2
441.6
223
165.2
70.2
30.8
109.5n4
6811n3
4342.5n2
1702n2
Apple M3 8-Core GPULPDDR5-6400545
Apple M2 10-Core GPU1398LPDDR5-64005557
~13.417%
911.5n6
535n6
339.5n6
130.98n4
AMD Radeon 760MPhoenixRDNA 31500280012_24.64345
~17.263%
28339n2
41767n2
9781.5n2
9603n2
5694n2
6141.5n2
2371.5n2
2115.5n2
32985
35337
196.8n2
189.25n2
14191
6922
981
AMD Radeon 660MRDNA 2 RembrandtRDNA 2190012_16710
~13.671%
283076
21223n6
30129.5n6
7003.5n6
6651.5n6
4391.5n6
4734.5n6
1700n7
1523n6
23222n2
27876n2
124.5
10.9
119.65n6
13243n2
3427.5n2
822n2
NVIDIA GeForce GTX 780MN14E-GTXKepler8235000256GDDR54096114.3283851
~15.250%
18252n7
35965n7
7690.5n8
7776.5n8
4742n7
5244n7
26827n9
23381.5n6
75.95n4
90.5
6833n3
749.5n2
NVIDIA Quadro K5100MN15E-Q5-A2Kepler7713600256GDDR58192114.3283797
~12.750%
2197
17583n3
31015n3
7058n4
6880n3
4467n3
4793n3
24795
24910n2
119.25n2
6539n3
774
NVIDIA GeForce GTX 680MXKepler7205000256GDDR52048114.3284070
~15.113%
6883
6736
25501
AMD Radeon Pro WX 4150Polaris 11Polaris10537000128GDDR5409612Vulkan142480
NVIDIA GeForce GTX 965MN16E-GS, N16E-GRMaxwell924 / 935950 / 11515000128GDDR5409612_14.5283266
~13.883%
259766n2
18013n13
34748n13
7896n15
7322n13
4851n13
5536n13
1952
1810
23562n3
24774n3
446
213.5n2
160
66.3
27.1
93.9n13
6840n3
4597n3
1779n4
AMD Radeon RX 560X (Laptop)Polaris 11Polaris117212756000128GDDR5409612Vulkan142535
~12.175%
189597
13326n3
35511n3
7697n6
8211.5n6
5514n4
6329n4
1925n3
1789n3
19829
25527n3
413.7
96.2
103.4
86.3n2
6202.5n2
3450.5n2
1837.5n2
AMD Radeon RX 560 (Laptop)Polaris 11Polaris109012926000128GDDR5409612Vulkan142535
~12.329%
13138n3
36528n3
6955n3
8329n3
4899n3
5738n3
98.55n2
NVIDIA Quadro M2200N17P-Q3Maxwell69410385508128GDDR5409612_14.5282527
~14.279%
289176n2
20644n3
37796n3
7581n2
7372n2
5252n3
5850n3
1903n3
1724n3
24622
28149.5n2
432
219.1
163.7
27.9n3
103.9n3
6833
4332
2099n3
NVIDIA GeForce GTX 870MN15P-GTKepler9415000192GDDR5614412 (FL 11_0)4.3283565
~15.446%
16787n5
31322n5
7120n6
7156n5
4294n7
4694n6
24035n3
25112
64.7n2
93.8n6
10324
AMD Radeon R9 M290XNeptuneGCN8509004800256GDDR5409612 (FL 11_1)4.3283629
~15.233%
17182
33147
6859
6817
4793
5294
23961
62
AMD Radeon HD 8970MNeptuneGCN8509004800256GDDR5409611.14.2283866
~13.542%
12468.5n2
31027n2
5422n3
6818n3
4245.5n2
5038.5n2
18666.5n2
18211.5n2
56.1n2
5919
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
AMD Radeon RX 460 (Laptop)Polaris 11 / Baffin XTPolaris11806000128GDDR5409612Vulkan142685
~9.742%
96383
9968
31294
5488n2
7792.5n2
4089n2
5107.5n2
57.2
6157
4404
NVIDIA GeForce GTX 680MN13E-GTXKepler7203600256GDDR5409611284211
~13.546%
15258.5n2
27684n2
5996.5n6
5897.5n6
3762.5n2
4049n2
21533.5n6
22760n6
57.65n2
8846n3
614
NVIDIA GeForce GTX 775MN13E-GTX-A2Kepler7193600256GDDR5409611283734
~10.28%
6101
6071
NVIDIA Quadro P1000Pascal149315196008128GDDR5409612_14.6142508
~11.975%
20654n3
30721n3
6377n3
6001n3
4508n3
4787n3
1560
1395
24240
32223
374.7
187.9
144.3
26n3
136.5n3
5759
3531
1260n3
AMD Radeon R9 M390PitcairnGCN9585460256GDDR5204812 (FL 11_2)283111
~12.929%
6838
6819
25800
101.6n2
12092
4417
1287
Intel Iris Xe MAX GraphicsiDG1LPDEVGen. 12 Xe16504266128LPDDR4x409612.14.6101140
~14.263%
177442n2
20526.5n2
36993n3
8024n3
8214n3
5658n4
6333n3
1876n4
1743n3
22466
18.8
105n3
11787
3898
3073
AMD FirePro M6100BonaireGCN11006000128GDDR5204812 (FL 12_0)4.3283727
~1258%
14975n2
25342n2
5639n3
5369n3
3476n2
3837n2
19876
25004
101
56.2
112.5
11116
3355
1084
AMD Radeon HD 7970MWimbledon XTGCN8504800256GDDR511.14.2284245
~14.246%
16428
31869
5907n7
5645n7
4307
4694
21938n8
22370.5n6
57.65n4
8985.5n2
1218
AMD Radeon Pro 560XPolaris 21Polaris9075080128GDDR5409612Vulkan142384
~13.446%
255217
18251
32449
7910
7590
4961
5699
1775
1614
179.75n2
98.4
AMD Radeon Pro 560Polaris 21Polaris9075080128GDDR5409612Vulkan142384
~10.479%
198867
15047
23105
5718
5305
3576
3892
1519
1376
18982
24516
283.6
70
76.8
18.2
86.8
9792
3756
1323
AMD Radeon Pro 460Polaris 11 / Baffin XTPolaris9005000128GDDR5409612Vulkan142685
~11.467%
16824
27064
6963
6749
4104
4584
1374
19234
27694
320.9
92.9
18.3
114.7
13571
3841
1192
AMD Radeon Pro WX 4130PolarisPolaris10537000128GDDR5409612Vulkan142480
Intel Iris Xe Graphics G7 96EUsTiger Lake XeGen. 11 Ice Lake400135012_14.6101217
~12.183%
207909n36
18954n166
26820n167
6865n188
6518n189
4659.5n198
5116n201
1724n195
1552.5n198
24384n16
28231n25
257.7n2
164.4n3
118.65n4
104.6n36
15.05n14
97.85n202
15631.5n24
3402n20
2309.5n16
NVIDIA GeForce MX350N17S-G5 / GP107-670-A1Pascal13541468700064GDDR512_14.6141394
~12.763%
285166n7
16226n9
24744n9
6376n13
6166n13
3985n14
4371n14
1491n12
1335.5n12
23907
19.6
110n11
6839
3661
1582
NVIDIA GeForce GTX 960MN16P-GXMaxwell109612025000128GDDR5409612 (FL 11_0)4.5283200
~12.463%
226308n16
16283n56
30085.5n54
5535.5n54
5278n54
3984n57
4318n55
1202n2
1148n2
23733n11
56.15n2
81.4n50
6741n43
3337n14
1254n11
NVIDIA Quadro M1200N17P-Q1Maxwell99111505000128GDDR5409612 (FL 11_0)4.5282527
~12.658%
240298
13600n3
27557n2
5514.5n2
5310n2
3878n3
4141.5n2
1290
26109
30.1
27.7
108.15n2
388
1207n2
NVIDIA Quadro P620Pascal117714426000128GDDR5409612_14.5141663
~16.163%
310112
23291.5n2
30409.5n2
6519n3
5909n3
4447.5n2
4672.5n2
1582.5n2
1388n2
25105
35092n2
166.3n3
6822
3516
2058
AMD Radeon RX 550X (Laptop)Polaris 12Polaris11767000128GDDR5409612Vulkan141800
~983%
184578n2
11529.5n2
20039n2
5502.5n2
5344.5n2
3245n2
3688n2
1164.5n2
1050n2
14519.5n2
21444n2
269
84.3
75.6
35
12.4
79.55n2
9698
1822.5n2
805
AMD Radeon RX 550 (Laptop)Polaris 12Polaris128714766000128GDDR5409612Vulkan142460
~11.554%
239256
13493n4
23049.5n4
5226n4
4559n5
3248.5n4
3645n4
1410n2
1280.5n2
23308
67.1n4
921
1609
AMD Radeon RX 640Polaris 12Polaris12181218600064GDDR5409612Vulkan141586
~7.771%
12879.5n2
19945.5n2
5411n2
5235n2
3119n2
3498.5n2
1116.5n2
1007.5n2
14141
20261
258.1
80.2
73.5
84.15n2
369
2934
719
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
AMD Radeon Pro WX 3200Polaris 12Polaris10826000128GDDR5409612Vulkan141541
~8.267%
105833n2
11960n2
18866n2
4657n2
4337.5n2
2871n2
3156n2
1059n2
955.5n2
12538
16329n2
13.4
76.5n2
9857
649
921
AMD Radeon Pro 555XPolaris 21Polaris8555080128GDDR5409612Vulkan142384
AMD Radeon Pro 555Polaris 21Polaris8555080128GDDR5204812Vulkan142384
~11.763%
217690
15337
22624
5566
5185
3430
3721
1207
1078
26389
41.9
16
78.3
2991
1001
AMD Radeon Pro 455Polaris 11Polaris8555000128GDDR5204812Vulkan142605
~1175%
229045
15766
23434
5774
5388
3463
3759
1254
1118
16522
25873
229
92.2
16.4
100
12740
3049
918
NVIDIA Quadro P600Pascal14301620501264GDDR512_14.5142222
~12.463%
243785
19090.5n2
28957n2
5137.5n2
4655n2
3824.5n2
4083n2
1312
1162
22920n2
23.9
139.9n2
13234
2939
1144
NVIDIA GeForce MX250N17S-G2Pascal15181582700064GDDR5409612_14.5141759
~10.383%
235421n8
13121n25
21545n25
4850n29
4633n29
3244.5n28
3660n29
1220.5n22
1103n22
16487.5n2
25428.5n2
268.6n2
141.2n2
105.3n2
43.6
17
99.55n30
6469n5
2806n2
1172.5n2
NVIDIA GeForce MX330N17S-LP / N17S-G3Pascal15311594700064GDDR512_14.6141394
~9.854%
243721n2
15382n3
20729n3
5121.5n4
4834n4
3470n3
3762n3
1235.5n2
1160n3
18.1
98.2n2
2890
1047
NVIDIA GeForce MX150N17S-G1Pascal14681532600864GDDR5409612_14.5142404
~10.892%
223740n19
12943n43
19132n43
4576n47
4494n47
3104n44
3488n44
1132.5n16
1046n16
10991.5n2
19312.5n12
34443
207.9n4
123.85n4
90.9n4
140
41.8
15.7n2
94.1n42
6526.5n22
2581n9
773.5n6
Intel Iris Xe Graphics G7 80EUsTiger Lake XeGen. 11 Ice Lake400135012_14.6101217
~10.688%
166479n15
16291n90
21817.5n90
5598n103
5332n103
3649n106
4010n105
1333.5n102
1180n102
21729n3
25371n7
254.95n2
159.2n2
88.8n2
104.6n13
43.8
15.95n4
86.18n108
13741.5n8
2903.5n8
2074n4
Intel Graphics 4-Cores iGPU (Arc)Meteor Lake iGPUXe LPG195012_24.656
NVIDIA Quadro M2000MMaxwell103811975000128GDDR5409612 (FL 11_0)4.5282996
~1171%
17603.5n10
29795n10
5456n9
5143n9
3859n10
4157n10
20567n3
25604n5
310.7
163.9
122.9
52.7n4
20.4n4
92.65n10
4616n5
3145n2
1426n5
NVIDIA Quadro K5000MN14E-Q5Kepler7063000256GDDR54096114.1284214
~12.246%
16890n2
23060.5n2
5152n5
4893n3
2735n2
2797.5n2
20139n5
24239n3
47.45n2
6814n2
219.5n2
NVIDIA Quadro K4100MN15E-Q3-A2Kepler7063200256GDDR54096114.3283797
~12.350%
16071.5n2
24685
5259.5n2
4957
3505n2
3654
19909
25559.5n2
48.1
115n2
6751
476.5n2
NVIDIA GeForce GTX 770MN14E-GSKepler8114000192GDDR53072114.3283851
~11.550%
14766n9
23513n9
5066n9
4889n9
3131n9
3347n9
19208n7
22486n5
321
48.5n4
95.1n2
6804n5
AMD Radeon RX 540XPolaris 12GCN 4.012196000128GDDR5409612_04.6142095
AMD Radeon Pro WX 2100Polaris 12Polaris12196000128GDDR5204812Vulkan142095
AMD Radeon RX 540Polaris 12Polaris12196000128GDDR5409612Vulkan142460
~8.675%
138197
12853.5n4
24170n4
4664n5
4646n5
3059n6
3686n4
869n2
787n2
13719.5n2
15818n3
46.12
31.2
19.3
76.4n5
9285n2
998n3
858n2
AMD Radeon Pro WX 3100Polaris 12Polaris6000128GDDR5409612Vulkan142460
~8.767%
176357
11887.5n2
18522n2
4058n2
3690.5n2
2480.5n2
2671n2
918
820
11702
18186
10.1n2
75.35n2
8486.5n2
2414
921.5n2
NVIDIA GeForce GTX 860MN15P-GXMaxwell10295000128GDDR5409612 (FL 11_0)4.4283565
~12.363%
215144
15323.5n24
27960.5n24
5134n25
4902n25
3661n24
3904n24
19215.5n10
23220.5n4
41.1
49.5n7
93.95n20
6718n11
3103.5n4
1081n5
NVIDIA GeForce GTX 675MXN13E-GSRKepler6003600256GDDR5114.1284092
~12.838%
13265
20325
4265.5n2
3978.5n2
2721
2831
18949.5n2
23190n2
40.9
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
NVIDIA GeForce GTX 950MN16P-GTMaxwell914 - 99311241800 - 5000128DDR3, GDDR5409612 (FL 11_0)4.5283200
~9.483%
198867n5
13966n28
21355.5n28
4574.5n28
4367n28
2837.5n28
3200n28
1094
971
15710n6
21645n13
244.7n2
132.3n2
99.15n2
42.1
17.8
50.36n24
6029n15
2747n5
1242.5n4
AMD Radeon Pro 450Polaris 11Polaris8005080128GDDR5204812Vulkan142605
~10.958%
200518
14305
21533
4914
4502
3027
3252
1074
952
14245n2
24189
69.8
2589
774
AMD Radeon 630GCN 1.01219600064GDDR54096124.5141586
AMD Radeon 540XGCN 4.01219600064GDDR5204812_04.6141586
~6.679%
10652
15167
4199
4097
2435
2779
933.5n2
797
11545
16578
210
77.5
61.4
30.1
9.3
66.4
7557
2330
671
AMD Radeon R9 M470XGCN 211006000128GDDR5409612 FL11_14.3282771
AMD Radeon R9 M385XStrato-XT-M3GCN11006000128GDDR5409612 FL11_14.3283104
~8.550%
8982n2
22544n2
4456.5n2
5514.5n2
2930.5n2
3404.5n2
12453
14024
44.8
5087
3559
1331
NVIDIA Quadro P520Pascal13031493600064GDDR5204812_14.5141663
~9.279%
141330n2
14169.5n4
19041n4
4492.5n6
4185.5n6
2960.5n6
3217.5n6
1135n6
1010.5n6
15720
18941.5n2
319
165.7
105.1
35
102.3n6
5684.5n2
2619
1448
NVIDIA GeForce GTX 850MN15P-GTMaxwell8762000 - 5000128DDR3, GDDR5409612 (FL 11_0)4.4283565
~9.554%
12781n23
21873n23
4495n21
4385.5n20
2765.5n22
3085.5n22
15862.5n4
16135n5
41.8n5
78.8n20
6463n13
2678
999n3
NVIDIA Quadro M1000MMaxwell99310725000128GDDR5409612 (FL 11_0)4.5282996
~10.754%
15948.5n2
23422n2
4660.5n2
4229.5n2
3323n2
3497.5n2
24483n2
44.9n2
18.8n2
95.9n2
6839n2
2676
1179.5n2
NVIDIA Quadro M620Maxwell10185012128GDDR5204812 (FL 11_0)4.5282527
~8.475%
13620n2
22119.5n2
4140n3
3801n3
2989n3
3130n3
968
862
17237
24751
232.3
133.5
97.8
16.5n2
95.25n2
6851
2530
1079n2
AMD Radeon RX Vega 11Vega Raven RidgeVega124012_1142241
~10.358%
157382n4
14579n4
20847.5n4
5350n6
5483n4
3038.5n6
3494n3
1127n3
935.5n2
20608
80.1n3
11001n2
3425n2
1074n2
AMD Radeon R9 M280XSaturn XTGCN90010005500128GDDR5409612 (FL 12_0)4.4283239
~763%
7236
23201
3823
4698
2974
3498
1041
1012
9222
11618
120
50.7
5889
2934
1322
AMD Radeon HD 7950MWimbledon ProGCN7004000256GDDR5204811.14.1284245
NVIDIA GeForce 945MMaxwell92810452000128DDR3409612 (FL 11_0)4.5283200
~9.358%
193684
9643n2
19405n2
3451n2
3309.5n2
2504.5n2
2850n2
13507
20209
208.5
113.6
39.32n2
5899n2
733
Qualcomm Snapdragon X Elite Adreno GPU 450
NVIDIA GeForce GTX 765MN14-GEKepler8504000128GDDR52048114.3283851
~8.558%
12408n12
17616n11
4083n13
4019n13
2362n13
2479n11
14870n13
19624n12
266n3
35.8n6
88.3n3
6795.5n8
2400
517n3
NVIDIA Quadro K4000MN14E-Q3Kepler6002800256GDDR54096114.1284214
~9.746%
12751
19058
3777n3
3466n2
2192
2199
15362
20518n3
36.5
6804
221
NVIDIA Quadro P500Pascal14551519501264GDDR512_14.5142222
~5.242%
9301
12868
3338
3022
2118.5n2
2254.5n2
11.9
82.45n2
4374
547
Intel UHD Graphics 64EUs (Alder Lake 12th Gen)Alder Lake XeGen. 12140012_14.610710
~9.983%
206410n5
18180n6
20306.5n6
4589n8
4077.5n8
3057.5n8
3252n8
1077.5n8
950n8
15907n5
23680n5
320.3
234.9
130.9
120.3n5
10.05n4
79.56n8
16251.5n6
1767n5
1394n4
Intel Iris Plus Graphics G7 (Ice Lake 64 EU)Ice Lake G7 Gen. 11Gen. 11 Ice Lake3001100DDR412_14.5101662
~7.679%
145594n14
12848.5n24
16713n24
4436n28
4187n28
2532n25
2717.5n26
892n23
791n23
14442
16163.5n4
165.55n2
46.6
59.85n2
102
65.2n30
10554n7
2532n5
1321n3
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
AMD Radeon RX Vega 10Vega Raven RidgeVega130012_1142241
~6.383%
113236n8
10318.5n16
14834.5n16
3449n17
3389n17
2028n17
2272n17
845n8
737n7
11391
14890n3
149.35n2
46.3n2
43.15n2
25.1
7
47.11n18
7856n5
2453n3
514n2
Intel Iris Pro Graphics P580Skylake GT4eGen. 9 Skylake3501100eDRAM + 64/128eDRAM12812_14.4142882
Intel Iris Pro Graphics 580Skylake GT4eGen. 9 Skylake3501050eDRAM + 64/128eDRAM12812_14.4142882
~7.846%
184880
11346
14594
3510
3220
1836
1903
85.55n2
11355
2308
875
NVIDIA GeForce GTX 675MN13E-GS1Fermi6203000256GDDR5204811404285
~10.342%
12533
18056
3531n6
3218n5
2182
2331
14756n5
20452.5n6
34.7
6084n4
NVIDIA GeForce GTX 580MN12E-GTX2Fermi6201500256GDDR5211404553
~16.325%
3424n4
3116.5n4
14403.5n2
20550.5n4
27355
6209.5n2
AMD Radeon HD 6990MBlackcomb XTXTerascale 2715900256GDDR5204811404539
~24.725%
3535n3
3227n3
15113n3
21082n3
59748
8394.5n2
AMD Radeon R9 M470SaturnGCN 210006000128GDDR5409612 FL11_14.3282771
~1021%
15817
24365
3415
3655
96.9
AMD Radeon R9 M385GCN6000128GDDR5409611.14.3283104
AMD Radeon R9 M380Strato Pro GDDR5GCN10006000128GDDR5409611.14.3283104
NVIDIA GeForce GT 650M SLIN13E-GEKepler79083540002x 128GDDR5211284285
~10.725%
3621n3
3597n3
12811.5n2
16841.5n2
35.8
5647
NVIDIA GeForce GTX 485MN12E-GTX-A1Fermi5751500256GDDR511405091
~1121%
2942n2
2709n2
13536n4
19877.5n4
5859.5n4
NVIDIA Quadro K3100MN15E-Q1-A2Kepler7063200256GDDR54096114.3283797
~9.950%
13554n3
18389n3
3901n3
3581n3
2666n3
2797n3
15120
22437.5n2
35.9n2
99n3
6828n3
259.5n2
AMD FirePro W5170MGCN9254500128GDDR5204812 (FL 12_0)4.3 / Vulkan282996
~8.129%
14139
19095
4564
4197
2736
2909
82.3
AMD Radeon R9 M370XCape VerdeGCN 1.08004500128GDDR5204812 (FL 11_1)4.3283132
~8.467%
188948
11445n2
15454.5n2
3991n2
3637.5n2
2283n2
2419n2
13155
18481
219.8n2
62.3n2
66.3
61.3n3
11288
2226
659
NVIDIA GeForce GTX 670MXN13E-GRKepler6002800192GDDR5114.2284092
~10.929%
3768n2
3587n2
2261
2371
14530n3
20268n3
34.3n3
NVIDIA Quadro 5010MN12E-Q5Fermi4501300256GDDR5 ECC409611404679
~10.821%
3066n2
2693
12991
19036n3
6620
NVIDIA GeForce GTX 760MN14E-GLKepler6574000128GDDR52048114.3283851
~8.950%
11727n7
15900n5
3554n7
3369n6
2172.5n6
2271n5
14006.5n6
19221n3
32.75n2
81.85n4
6802.5n4
2064
AMD Radeon R9 M275GCN9254500128GDDR5409612 (FL 11_1)4.2283423
~7.638%
145646
5652
11459
3182
3261
1603
1885
10378
50.5
NVIDIA GeForce GTX 670MN13E-GS1-LPFermi5983000192GDDR5307211404285
~9.142%
11267
14940
2989n9
2698n9
1824
1950
12670n9
19451.5n8
27.6
6283n7
AMD Radeon RX Vega 9Vega Raven RidgeVega130012_1142241
~7.375%
131922
13582
19255
4424
4380
2524
2789
974
872
12628
13365
192
73.1
57.4
55
6966
2806
588
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
NVIDIA Maxwell GPU Surface BookSurface BookMaxwell954993501264GDDR5102412 (FL 11_0)4.5282997
~7.150%
123411
7464.5n2
11380n2
2736n2
2577n2
1919n2
2075.5n2
15111
34.98n2
5703.5n2
1676
1065
AMD FirePro W5130MGCN9254000128GDDR5204812 (FL 12_0)4.3 / Vulkan282996
~746%
10835.5n2
14380.5n2
3383
3106
1997n2
2110n2
15680
62.4n2
9635
896
629
AMD FirePro M8900Blackcomb XTTerascale 2680900256GDDR5204811404630
~24.64%
16703
AMD Radeon HD 6970MBlackcomb XTTerascale 2680900256GDDR5204811404726
~10.321%
3054n5
2818.5n4
11898n8
17447n8
7951.5n4
AMD Radeon R9 M270GCN7254500128GDDR5409612 (FL 11_1)4.2283545
AMD Radeon HD 8870MGCN7254500128GDDR5, DDR3204811.14.1284014
~8.246%
11331.5n4
15738.5n4
3292n5
2986n5
2091n4
2168.5n4
11715n4
15675n3
25.9n4
7769n2
629
AMD Radeon HD 7870MHeathrow XTGCN8004000128GDDR511.14.2284252
~7.113%
3037
2702
13065
NVIDIA Quadro K3000MN14E-Q1Kepler6542800256GDDR54096114.1284214
~9.821%
2767n4
2427n2
11902n3
17037.5n2
6817.5n2
NVIDIA GeForce GTX 570MN12E-GTFermi5751150192GDDR5311404553
~9.421%
2640n5
2399n5
11060n5
17004.5n4
5353.5n4
Intel UHD Graphics Xe G4 48EUsTiger Lake XeGen. 11 Ice Lake350145012_14.6101217
~6.275%
97415.5n4
9422n11
15992n11
3508n11
3510n11
1962n11
2321n11
888n9
798n9
10650
10779.5n2
210
85
89.15n2
63.8n11
10477n3
1863
905
Intel UHD Graphics Xe 32EUs (Tiger Lake-H)Tiger Lake XeGen. 12350145012_14.610948
~8.471%
112982
15699.5n2
16207.5n2
3661.5n4
3195n4
2356n3
2506n4
784n2
676.5n2
13730
19728
104.8
8.8
82.67n4
16428
1422
1197
Intel UHD Graphics 770Alder Lake xGAlder Lake300155010710
~9.183%
179804
17404
16443
4157n2
3563n2
2738n2
2834n2
926.5n2
795.5n2
15865
23428
236.1
161.8
86.4
118.7
34.9
11
94.6
1667
1293
Intel UHD Graphics Xe 750 32EUs (Rocket Lake)Rocket Lake XeGen. 12350145012_14.614990
~6.750%
12450n3
11377n3
3276.5n2
2817.5n2
2110n3
2188n3
741n2
638n2
17496.5n2
31.05n2
1348
1115
AMD Radeon 740MPhoenixRDNA 31500250012_24.64206
AMD FirePro M6000GCN7504500128GDDR5204811.14.1284184
~10.221%
2726
2422
10744
17152
10283
AMD FirePro M5100GCN7257754500128GDDR5204812 (FL 11_1)4.3283727
~8.354%
12602.5n2
16784.5n2
3333
2967
2225n2
2327.5n2
12308
18391n2
27.5n2
63.7n2
10516n2
2051
658n2
NVIDIA GeForce MX230N17S-G0Pascal15191531700064GDDR5409612_14.5141759
~7.571%
183041n3
10529.5n6
15796.5n6
3621.5n6
3363.5n6
2298.5n6
2467.5n6
839.5n4
748n4
18399
176
91
65
83.4n6
6353n4
2018
1069
Apple M2 8-Core GPU1398LPDDR5-64005557
~12.317%
839.2
483.7
306.9
128.62
Apple M1 8-Core GPU1278LPDDR4X-426651130
~14.721%
280200
588n5
345n5
248.65n6
89.4n3
AMD Radeon RX Vega 8 (Ryzen 4000/5000)VegaVega210012_171438
~13.271%
299071n15
22794n44
27249.5n44
6085.5n52
5951n52
3441.5n52
3760n52
1328n53
1165.5n52
22428n8
25886n11
138.1n7
13.8n8
80.1n53
15423n13
4019n9
1158.5n8
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
NVIDIA Quadro K2100MKepler6673000128GDDR52048114.3283797
~6.554%
10047n7
11835n7
2626n4
2393.5n4
1553n7
1606n7
10648n2
15586n3
23.2n5
68.05n6
6821n7
1586
150n6
AMD Radeon HD 6950MBlackcomb ProTerascale 2580900256GDDR5204811404726
~9.417%
2643
2452
10122
13719
NVIDIA GeForce GT 755MN14P-Kepler9805400128GDDR5409611283825
~8.642%
10459n2
14966.5n2
2987.5n2
2800.5n2
2031n2
2105.5n2
12711
15861
27.8
6577
Apple M1 7-Core GPU1278LPDDR4X-426651130
~9.317%
620
376
240
90
AMD Radeon RX Vega 7Vega Raven RidgeVega180012_171438
~11.692%
194758n15
19080n43
24726n43
5422.5n58
5248.5n58
3042n61
3347.5n62
1167.5n58
1032n57
17714n5
22493n11
37469
234.7
90.1
70
104.6n10
34.8
11.8n4
68.1n59
11417n10
2987.5n6
910n5
NVIDIA GeForce GTX 660MN13E-GEKepler8354000128GDDR5204811284285
~12.446%
10200
12861
2543n11
2369n9
1703
1751
10971n11
14704n9
46020
6317.5n6
566
NVIDIA GeForce 845MMaxwell107111502000 - 500064/128DDR3, GDDR5204812 (FL 11_0)4.4283565
~5.233%
7519
13754
3019
2973
2113
2362
41.32
5924
AMD Radeon HD 8850MGCN5757254500128GDDR5, DDR3204811.14.1284014
~5.842%
6278n3
11387n3
2507n3
2349n3
1693n3
1845n3
8222.5n2
10281.5n2
46.93
6957n3
AMD Radeon R9 M365XGCN9009254500128GDDR54096124.4283145
AMD Radeon R9 M265XVenus ProGCN6254000128GDDR5204812 (FL 11_1)283629
~6.850%
9950n5
12510n5
2925.5n4
2633n4
1900n5
1997n5
10547n2
15426n3
58.7n5
8596n3
688
801
AMD Radeon HD 7850MHeathrow ProGCN6754000128GDDR511.14.1284252
~10.117%
2760n2
2467n2
12254
14111
AMD Radeon R7 M465Litho XTGCN8259604000128GDDR5204811.1282539
~4.88%
12250
1740
AMD Radeon HD 8790MMars XTXGCN8504500128GDDR5204811.1284046
~7.238%
9478
12049
2513n2
2186.5n2
1648
1727
9835
13118
7734
AMD FirePro W4170MMars XTX?GCN8509004000128GDDR5204811.2284046
~6.746%
10501
12506
2629
2315
1694
1766
13622
22.4
54.7
9615
462
NVIDIA Quadro 4000MFermiFermi4751200256GDDR5204811404679
~9.621%
2334.5n2
2092n2
10722
17727
6638
NVIDIA GeForce GTX 470MN11E-GTFermi5351250192GDDR511404792
~8.821%
2205.5n2
2002.5n2
9800.5n2
16562n3
5409n2
NVIDIA GeForce GTX 480MN11E-GTX-A3Fermi4251200256GDDR5204811404952
~16.525%
2387n2
2184.5n2
8872n2
15066.5n6
39907n2
4919
NVIDIA GeForce GT 750MN14P-GTKepler9672000 - 5000128DDR3, GDDR5409611283910
~6.846%
8632n13
10822n13
2655n12
2543n11
1508n13
1574n13
9618n9
13670n9
22.3
64.2n6
6711n8
Intel Iris Pro Graphics 6200Broadwell GT3eGen. 8 Broadwell3001150eDRAM + 64/12812 (FL 11_1)4.3143118
~6.525%
13058.5n2
15387.5n2
3094
2766
1685n2
1736.5n2
NVIDIA GeForce MX130N16S-GTRMaxwell1122124264DDR3, GDDR5409612 (FL 11_0)4.5282174
~7.283%
170596n3
10635n13
13610n13
3112n14
2875n14
2203n13
2345n13
724.5n4
644.5n4
11968
18080n3
182.3n3
95.6n3
73.5n3
27.9
11.3
78.8n13
5682.5n4
1976n3
700.5n2
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
NVIDIA GeForce 940MXN16S-GTR-B/SMaxwell11221242400064DDR3, GDDR5409612 (FL 11_0)4.5282836
~7.688%
147706n19
7674n37
11513n37
2660.5n50
2556n46
1834n37
1996n37
710n7
626n7
8549n4
12843n9
28793
131.1n3
69.3n3
60.3n2
25.2n2
6.65n2
64.5n39
6321.5n28
1928n4
799n2
NVIDIA Quadro M520Maxwell756101964GDDR5102412 (FL 11_0)4.5282527
~6.983%
166193
8544
13394
2884
2658
2139
2342
684
614
11278
17305
178.5
95.4
74.3
27.9
11.4
75.5
6813
2045
708
NVIDIA Quadro K1100MKepler7052800128GDDR52048114.3283797
~5.450%
8005n6
9227.5n6
2018.5n6
1826.5n6
1299n6
1340.5n6
8992
12159n4
17.5n4
51.25n6
5843n5
115n5
AMD Radeon RX Vega 8 (Ryzen 2000/3000)Vega Raven RidgeVega120012_1142241
~6.283%
113247n18
11149n37
15770n37
3676n44
3557n44
2142n41
2381n41
779n23
693n23
10294n2
12213.5n6
146.5n5
34.85n4
41.7n4
27.3
7.7
47.78n45
7779.5n12
2272n4
888
NVIDIA GeForce 940MN16S-GT-S/BMaxwell10721176200064DDR3409612 (FL 11_0)4.5283200
~5.567%
123311n4
6342n25
8818.5n24
2485n25
2405.5n24
1422n25
1622n24
7530.5n2
11920n6
127.5n3
64n3
55.1
52.4n23
6088n19
1719n2
878n3
Intel Iris Plus Graphics G4 (Ice Lake 48 EU)Ice Lake G4 Gen. 11Gen. 11 Ice Lake3001100DDR412_14.5101662
~6.483%
82913.5n2
11495.5n2
14910n2
3461n6
3225n6
1988n6
2124n6
732n3
646n3
8812n2
13031n3
210.6
130.1
78.1
30.5
8.5
55.5n6
9931.5n2
1784n3
875n3
NVIDIA GeForce 930MXN16S-GMRMaxwell9521020200064GDDR5, DDR312 (FL 11_0)4.5282836
~5.375%
135057
7025.5n6
9053n6
2339n8
2201.5n6
1427n6
1597n6
564
493
8062
12695n3
124.1
66.8
52.6
47.84n6
6810n3
1587.5n2
544n3
NVIDIA Quadro M600MMaxwell8378765012128GDDR5204812 (FL 11_0)4.5282996
~7.367%
13310
18491
3216
2911
2322
2430
719
631
12734
20563
104.3
75.7
75.2
6832
1754
1016
AMD FirePro W4190MMars XTX?GCN8259004000128GDDR5204811.2282955
~5.750%
7894n3
12317n3
2570n3
2351n3
1663n3
1745n3
12929
7.25n2
48.74n3
9490
902
984n3
AMD Radeon R9 M375GCN10152200128DDR3409612 (FL 11_1)4.3283144
~5.354%
5932
8466
3269
3314
1514
1667
8275
11543
42.3
45.5
6544
657
931
Intel Iris Plus Graphics 655Kaby Lake GT3eGen. 9.5 Kaby Lake3001200DDR3/DDR412_14.5142296
~12.479%
137266n4
11622n9
14343n9
3180.5n8
2894n8
1850n9
1983n9
684n10
604.5n10
12287n2
17885n2
6375.3n2
199.6
2387.05n2
8.2
74.01n11
10263n3
1712.5n2
1038n2
AMD Radeon R7 M445GCN920200064GDDR54096124.5282770
~658%
126481
7092
9617
2422
2208
1455
1579
530
471
6872
12657
6.6
45.91
7760
AMD Radeon R7 M380GCN9152000128DDR3409612 (FL 11_1)4.3283144
AMD Radeon R7 M370GCN8753600128GDDR52048124.4283145
~5.963%
118746
7169n3
10364n3
2690n3
2524n3
1654n3
1760n3
8513
12983
80.7
35.3
52.1n3
9537.5n2
507
475
NVIDIA GeForce GT 650MN13E-GEKepler7359001800 - 4000128DDR3, GDDR5204811284285
~10.454%
6874n5
10647n4
2320n26
2111.5n20
1241n5
1420n4
9682n21
13514n21
44872
21.5
6483.5n18
1451
190
NVIDIA Quadro K620MMaxwell10291124200064DDR32048114.3283211
~5.258%
6591
9092
2526
2434
1424
1621
7880
10912
60.3
21.9
60.6
5261
1737
508
NVIDIA Quadro M500MMaxwell10291124400464DDR3204812 (FL 11_0)4.5282922
~5.575%
126522
6359n4
8348n4
2447n4
2364.5n4
1391.5n4
1594.5n4
7959
12377.5n2
129.5
67.9
53.2
21.35n2
6.3n2
40.69n4
6602n3
1741n2
850n3
NVIDIA GeForce 840MN15S-GTMaxwell1029200064DDR3409612 (FL 11_0)4.5283565
~5.663%
119888
5829n30
8723.5n30
2378n28
2340n27
1361n31
1573n31
7191n5
10332n11
41
22.5
55.9n29
6070.5n18
1674n2
651n3
NVIDIA GeForce GT 745MN14P-LP/GSKepler8371800128DDR3, GDDR5204811283910
~5.850%
8411n5
10147n5
2407n5
2249n5
1443n5
1531n5
9045n3
13462.5n4
56.7n5
6788.5n4
1559
386
AMD Radeon HD 7770MChelsea XTGCN6754000128GDDR511.14.1284252
~5.613%
2417
2110
10468
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
NVIDIA GeForce GTX 560MN12E-GSFermi7751250192GDDR5153611404582
~16.825%
2031n11
1820n11
9300n11
15327n11
41315
5407n10
Intel Iris Pro Graphics 5200Haswell GT3eGen. 7.5 Haswell2001300eDRAM + 64/128eDRAM12811.14.0223845
~9.667%
110085
9877n4
11930n3
2217n5
1923n3
1340n5
1380.5n4
8692
13123n2
41727
136n3
20.8
52.3n3
9744
1198
461n2
NVIDIA GeForce GT 740MN14P-GV2, ...Kepler8109801600 - 180064/128DDR32048114.3283941
~4.263%
5352n29
7403n29
1940n29
1848n27
1060.5n28
1150.5n28
6591n19
9700n22
3437
112
14.4n3
53.1n12
6522n22
509
455
Intel Iris Plus Graphics 650Kaby Lake GT3eGen. 9.5 Kaby Lake300110064/128DDR412_14.4142537
~7.158%
161538
9149.5n2
13153
2924
2762
1655n2
1698
623
555
15175
59.11n2
8773
1730
813
NVIDIA GeForce 930MN16S-GM-B/S, N16S-LPMaxwell928941180064DDR3204812 (FL 11_0)4.5283200
~4.758%
6071n6
8309n6
2247n7
2153n7
1290.5n6
1460.5n6
7274
11760
114.2
60.5
45.41n6
5853.5n4
1454
694
Intel Iris Graphics 550Skylake GT3eGen. 9 Skylake3001100eDRAM + 64/128eDRAM6412_14.4143027
~6.575%
144742n4
8171n7
12986n7
2699n6
2533.5n6
1544n7
1638n7
620n3
554n3
9761
15910n3
205.6
91.1
78.5
60.8n8
10057n5
1692n3
819n2
AMD Radeon 530GCN1024225064DDR3, GDDR52048124.5282460
~4.683%
107458n4
6371n5
9210n5
2508n5
2327n5
1386n5
1542n5
497n3
443n3
6337.5n2
11481n3
116.05n2
45.2n2
34.85n2
17n2
6.1n2
44.45n5
7731n3
895n3
386.5n2
AMD Radeon 625GCN 1.01024225064DDR3, GDDR54096124.5281586
AMD Radeon RX Vega 6 (Ryzen 4000/5000)Vega RenoirVega400150012_14.671438
~7.679%
182608n5
15286.5n16
21856.5n16
4446n23
4210n23
2537n23
2793n23
971.5n24
852n22
14700n3
166.2
52.3
93.6n2
25.4
7.3
54.81n23
10195.5n4
2410.5n2
750n2
Intel Iris Plus Graphics 645Kaby Lake GT3eGen. 9.5 Coffee Lake3001150DDR3, DDR412_14.5141619
~3.642%
3238
2985
1736
1893
624
550
198.3
101.8
69.6
67.1n2
NVIDIA GeForce 830MN15?Maxwell10291150180064DDR3204812 (FL 11_0)4.4283565
~4.650%
6044n4
8104.5n4
2094n3
1961n3
1215n4
1386.5n4
6163
10222.5n2
50.6n3
5855n3
1123
597
NVIDIA GeForce MX110N16V-GMR1Maxwell965993180064DDR3, GDDR5124.5282174
~5.583%
124036n2
9867n3
11266n3
2378n3
2121n3
1641n3
1714n3
515n2
450.5n2
9124
14612
129.9
72.2
52.9
21.8
9
57.8n3
4147
1214
468
Intel Iris Plus Graphics 640Kaby Lake GT3eGen. 9.5 Kaby Lake300105064/128DDR3/DDR46412_14.4142537
~5.475%
145481n3
8067n5
11248n4
2561n5
2379n5
1310n5
1393.5n4
494.5n4
437n4
14117.5n2
171
31.2
56.1
6.5
56.2n4
9703n3
1677n2
778.5n2
NVIDIA GeForce 920MXN16V-GMRMaxwell965993180064DDR3, GDDR5124.5283187
~4.783%
110110n2
6545n2
9113.5n2
1983n5
1835n3
1336.5n2
1448n2
472
417
7407.5n2
12205.5n2
115.2n2
62.85n2
47.4n2
21.2
8.7
47.72n3
4366n3
1139n2
427n2
Intel Iris Graphics 540Skylake GT3eGen. 9 Skylake3001050eDRAM + 64/128eDRAM6412_14.4143027
~5.871%
126078n4
7235n6
11327n6
2364n6
2211.5n6
1354n5
1448n5
8828n2
13568.5n2
183
86
60.4
6.5
55.3n6
8277.5n4
1525.5n4
712.5n4
Intel UHD Graphics 24EUs (Alder Lake-N)Alder Lake XeGen. 1245075012_14.610346
~471%
55681n6
7021n7
8303n7
1717n7
1490n7
1092n7
1172n7
364n7
317n7
5768n6
10126.5n6
54.05n4
4.6n6
39.85n7
8288.5n6
644n6
504.5n4
NVIDIA Quadro K2000MN14P-Q3Kepler7451800128DDR32048114.1284214
~5.446%
8010n2
8766n2
1995n5
1798n4
1040
1046
7947n4
11991n5
17
6749n4
139.5n2
NVIDIA GeForce GT 735MN14M-LPKepler5758891800 - 200064DDR3204811283910
~4.146%
4718.5n4
6757n4
1791n4
1713n4
933.5n4
1023.5n4
5687.5n2
8527n2
49.24n2
6155n3
255
ATI Mobility Radeon HD 5870Broadway-XTTerascale 27001000128DDR3, GDDR3, GDDR5102411405090
~2117%
7999n10
12830.5n10
36969n3
6609n7
NVIDIA GeForce 825MKepler850180064DDR3204812 (FL 11_0)4.3283609
~4.738%
5421n2
7416n2
1859.5n2
1756.5n2
1050n2
1150n2
6000
9290
48.95
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
NVIDIA Quadro 5000MFermiFermi4051200256GDDR5204811404889
~138%
7766.5n2
12967
AMD FirePro M4000Cape Verde GLMGCN6004500128GDDR52048114.1284184
~6.646%
7729
12587
2186n2
1981n2
1617
1713
8627.5n2
13930.5n2
21.3
8477
470
ATI FirePro M7820Terascale 27001000128GDDR511404976
~18.44%
12531.5n2
AMD Radeon HD 6870MGranville-PROTerascale 26751000128DDR3, GDDR3, GDDR5102411404725
~21.24%
14396
AMD Radeon HD 8830MGCN5752000128DDR3204811.14.1284014
AMD Radeon HD 8770MGCN7754500128GDDR5204811.1284046
~7.621%
2206
1934
8530
12680
7033
AMD Radeon R7 M260XMarsGCN7154000128GDDR5409612 (FL 11_1)4.3283629
~5.163%
98071
6619
9034
2114
1903
1336
1396
7640
11820
129.1
37.9
36.37
6664
1212
399
NVIDIA GeForce GTX 460MN11E-GSFermi6751250192GDDR5153611404851
~14.325%
1805n7
1623n7
7507n12
12942n14
34874n2
5312.5n10
NVIDIA GeForce GT 730MKepler7251800 - 200064/128DDR3409611284000
~4.858%
86656
5782.5n8
7152n8
1886n7
1722n7
1001n9
1061n9
6788n6
10333n9
48
14.1
47.57n5
6540n7
276
NVIDIA GeForce GT 645MN13P-GSKepler7101800128DDR3204811284285
~5.642%
6537n2
8654.5n2
1962.5n4
1844.5n4
1146.5n2
1151.5n2
7356.5n4
11189n4
17.65n2
5548n2
AMD Radeon HD 7750MLombok XLGCN5754000128GDDR511.14.1284252
~3.88%
2382
2085
AMD FirePro M4100GCN6704000128GDDR5204812 (FL 11_1)4.3283727
~446%
5125
6297
1921
1728
815
857
9320
10.9
37.66
6578
306
AMD Radeon HD 8750MMars ProGCN6207752000 - 4000128GDDR5, DDR3204811.1284046
~4.454%
5610n9
8524.5n8
1863.5n10
1698n10
1186n9
1276.5n8
6840n7
8901.5n8
16.9
40.25n4
6519n8
1217.5n2
372.5n2
NVIDIA Quadro 3000MFermiFermi450625256GDDR5204811404679
~7.621%
1742
1539
7941
14220.5n2
6519
AMD Radeon R7 M270Opal XT / MarsGCN8251800 - 2000128DDR3409612 (FL 11_1)4.3283629
~467%
4830.5n2
6364.5n2
2014n2
1857.5n2
1177n2
1258n2
6715n2
9791.5n2
124.85n2
33.65n2
36.8
23.9
37.41n2
6141.5n2
1203n2
534.5n2
AMD Radeon R7 M265Opal XT / MarsGCN8259801800 - 200064/128DDR3409612 (FL 11_1)4.3283629
~4.642%
5334.5n6
8401.5n6
2012n5
1882n5
1211n5
1336n5
6175n2
8876n3
32.85n2
4563.5n2
NVIDIA Quadro FX 3800MN10E-GLM4G9x6751000256GDDR3102410555108
~19.717%
6779n3
12923n3
34790n2
4928n2
NVIDIA GeForce GTX 285MN10E-GTX1G9x5761020256GDDR3102410555401
~9.513%
6498n3
12988.5n2
4941
ATI Mobility Radeon HD 4870M98-XTTerascale 1550888256GDDR5102410.1555453
~8.413%
6631
10655n2
5190
AMD Radeon R7 (Bristol Ridge)Bristol RidgeGCN 1.290064/12812 (FL 12_0)4.4282753
~383%
52245.5n4
3942n5
5311n5
1794n5
1852n5
866n5
1013n5
358n3
347n3
5568
6644.5n2
90
25.9
24.3
13.9
3.5
23.16n5
4845n4
1450n3
362.5n2
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
NVIDIA GeForce GT 640MN13P-GSKepler6256451800 - 4000128DDR3, GDDR5204811284285
~5.958%
80836
5571
9024
1860.5n12
1728n12
1153
1225
7425n13
10625.5n14
12955
42.42
5635n11
1114
101
AMD Radeon R7 (Carrizo)CarrizoGCN 1.2/2.080064/12812 (FL 12_0)4.4283116
~3.663%
61071n2
4470n5
7431n5
1922n6
1792n4
1063n4
1137n4
5200n3
6528n4
90.95n2
24.47n2
28.68n4
5071n3
1345n3
394n3
AMD Radeon R7 (Kaveri)KaveriGCN 1.155368664/12812 (FL 12_0)283481
~3.650%
4719.5n2
6544
1794.5n4
1734n2
1039n2
851
4483
7921.5n2
31.18n2
4618n2
1112.5n2
460n2
AMD Radeon R7 M460GCN984200064124.3282854
~4.563%
105142
4755
6081
2256.5n2
2139n2
1054
1177
5304
8587
101.4
45.5
37.73n2
7777n2
1608
319
AMD Radeon HD 7730MLombok GLGCN5756751800128DDR311.14.1284252
~5.921%
1684n2
1478
7056n2
9615
5154
AMD Radeon R7 M360GCN 2.01125200064DDR34096124.3283145
~475%
82837n2
4583n5
5746n5
2156n5
2029n5
1024n5
1146n5
463
410
5544
8273.5n4
111.2
30.15
15.4
34.29n5
7326n5
1523
313
NVIDIA GeForce GTX 280MN10E-GTXG9x585950256GDDR3102410555401
~2117%
6672n5
12551n8
38780n3
5276.5n6
NVIDIA GeForce 920MN16V-GM-SKepler954180064DDR3409612 (FL 11_0)4.5283244
~3.975%
90619n3
5240.5n10
7242n10
1822n11
1718.5n10
1047.5n10
1161.5n10
363
329
5587n2
9003.5n4
98.35n2
46.85n2
35.6n2
44.28n11
5181.5n10
1323
586
AMD Radeon HD 8690MGCN775450064GDDR5102411.1284046
~4.738%
6093
7930
1790
1600
1151
1210
9413
40.98
7043
AMD Radeon 620GCN 1.01024225064DDR3, GDDR54096124.5281586
~3.34%
1730
AMD Radeon R7 M440GCN 1.01021200064DDR312282753
~471%
87170.5n2
4783.5n2
6040n2
2305n2
2245n2
1079n2
1197.5n2
433
381
5584n2
8800n2
112.1
27.1
33.01n2
8207
1516
289
NVIDIA Quadro FX 3700MNB9E-GLM3G9x550800256GDDR3102410655601
~7.913%
5053
11000n3
4481
AMD Radeon R7 M260Opal Pro / MarsGCN7159801800 - 200064/128DDR3409612 (FL 11_1)4.3283629
~3.854%
4385n8
5603n7
1942.5n8
1897n8
946.5n8
1067n7
5424.5n2
7810n3
14.2
33.81n7
4919n5
1334n2
295
AMD Radeon R7 M340Meso Pro DDR3GCN1021200064DDR3124.3283104
~3.967%
69098
5272.5n4
6153n4
2268n4
2148n4
1091.5n4
1208.5n4
5427
8982
109.3
28.7
27.9
33.47n4
6111.5n2
1455.5n2
274
AMD Radeon 520GCN 1.01030225064DDR3, GDDR52048124.5282460
~3.883%
77543
7240n2
8412.5n2
2232n2
2016.5n2
1232.5n2
1319n2
454.5n2
397n2
5266
6492
114.1
52.9
35.4
12
4.1
35.56n2
9124
929
325
AMD Radeon 610GCN 1.01030225064GDDR54096124.5281586
AMD Radeon 610MRDNA 2RDNA 2400220012_24.66451
~4.663%
13194.5n2
13645.5n2
1931.5n2
1704n2
1154n2
1217n2
425.5n2
369.5n2
3575
7195
104.6
77.65n2
11925
517
142
AMD Radeon RX Vega 6 (Ryzen 2000/3000)Vega Raven RidgeVega110012_1142168
~6.167%
94451
10091n3
16787n3
3111n3
2991n3
2025n3
2245n3
617.5n2
551.5n2
8189
12132
164.6
46.42n3
7146
1790
558
AMD Radeon RX Vega 5VegaVega140012_171438
~6.979%
128628
12224
18282
3763
3535
2231.5n2
2438
825
733
11704
15564
164.8
67.2
51.9
26.2
7.3
62.25n2
2134
678
Intel UHD Graphics G1 (Ice Lake 32 EU)Ice Lake G1 Gen. 11Gen. 11 Ice Lake3001100DDR412_14.5101662
~5.175%
94938n7
8380.5n14
11096.5n14
2329n15
2127n15
1444.5n14
1521n15
482n10
424.5n10
8750
10955n2
157.8
84.4
52.7
46.53n12
9382.5n2
1288n2
747n2
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
Intel UHD Graphics 630Kaby-Lake-H-GT2Gen. 9.5300115064/12812_14.4142266
~5.575%
106362n6
9545n9
9798n9
2030n12
1789.5n12
1115n11
1211n11
479.5n10
414.5n10
7704
13216.5n6
105
18.9
6.05n2
54.5n11
8578n7
894
696
Intel UHD Graphics P630Coffee-Lake-GT2Gen. 9.5300120064/12812_14.4142266
Intel UHD Graphics Xe 16EUs (Tiger Lake-H)Tiger Lake XeGen. 12350145012_14.610990
~4.483%
64701n3
8223n3
7982n3
1933n3
1654n3
1151n3
1203n3
404n3
348n3
7190n3
12452n3
123.6
77.3
41.9
52.8
4.75n2
46.26n3
12011n3
745n3
601
Intel HD Graphics 630Kaby-Lake-H-GT2Gen. 9.5 Kaby Lake300115064/12812_14.4143054
~4.883%
101178n3
9188n5
9715n5
1975n6
1729n6
985n5
1067n5
425
368
7685
12419n3
139.8
47.2
47.2
18.8
5.3
51.75n4
10479n2
962n3
647n2
Intel HD Graphics P630Kaby-Lake-H-GT2Gen. 9.5 Kaby Lake64/12812_14.4143054
~4.413%
8280
1040
400
Intel UHD Graphics G7 (Lakefield GT2 64 EU)Lakefield GT2Gen. 11 Ice Lake200500DDR412_14.5101296
~3.654%
87818
5835n2
8408.5n2
1873n2
1791.5n2
1190.5n2
1295.5n2
389
349
48.4
33.2n2
1076
491
Intel HD Graphics 530Skylake GT2Gen. 9 Skylake350115064/12812_14.4143054
~4.763%
80241.5n2
7652n11
7500n9
1579n9
1362n9
878n9
935n9
271
235
6831n3
11309n9
60.6
42.27n14
8926n11
868
Intel HD Graphics P530Skylake GT2Gen. 9 Skylake350105064/128DDR3/DDR412_14.4143027
AMD Radeon R5 (Bristol Ridge)Bristol RidgeGCN 1.2/2.080064/12812 (FL 12_0)4.4282753
~3.658%
58018n2
4980.5n2
8255.5n2
1874n3
1720n3
1053.5n2
1283.5n2
6816.5n2
107
31.6
30.01n2
5132.5n2
1127
331
Intel UHD Graphics 620Kaby-Lake-Refresh GT2Gen. 9.53001150DDR3/DDR412_14.4142296
~6.492%
88745.5n100
8139n225
9324n225
1935.5n244
1744n244
1071n213
1168n213
435.5n88
380n88
7330n2
10642n34
34467
119.1n5
58.9n6
39.8n6
51.6
19.2
4.7n3
48.84n245
8194n75
937n19
653n13
Intel HD Graphics 620Kaby-Lake GT2Gen. 9.5 Kaby Lake300105064/128DDR3/DDR412_14.4142663
~9.671%
79066.5n48
5993n118
7725n117
1645.5n132
1508.5n132
858n110
934n110
365n13
321n13
5803n7
8449n23
67477
4.2n2
40.48n127
8162.5n58
875n22
564n14
AMD Radeon R6 (Carrizo)CarrizoGCN 1.2/2.080064/12812 (FL 12_0)4.4283116
~2.971%
53702.5n4
3524n5
4717n5
1550n11
1437.5n8
842n7
909n6
300
274
4830n2
6896n3
88.4
29.4
22.48n5
4507n5
918n3
301.5n2
Qualcomm Adreno 6901251835
~542%
9818n2
16707.5n2
3077n3
2912n3
2834.5n2
2932.5n2
909
811
13.7n2
558
Qualcomm Adreno 6851271835
~2.425%
1968
1927
167.7
31.7
373
2292
Qualcomm Adreno 6801271835
~2.321%
1847n2
1935.5n2
140.2
353
1890
ATI Mobility Radeon HD 4860M97-XTTerascale 16501000128GDDR510.1405400
ATI FirePro M7740RV740Terascale 16501000128GDDR5102410.1405246
~19.717%
6626n2
12109.5n2
34814
6663.5n2
ATI Mobility Radeon HD 4850M98Terascale 1500850256GDDR3102410.1555453
~20.917%
5263.5n4
9784n5
41976
5682
NVIDIA GeForce GTX 260MN10E-GTG9x550950256GDDR3102410555401
~17.817%
4901n8
10064n9
34304n4
3917n8
NVIDIA GeForce 9800M GTXNB9E-GTXG9x500800256GDDR3102410655631
~18.417%
4825n3
10138n5
35460n3
4491n3
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
NVIDIA Quadro FX 2800MNB10-GLM3G9x6001000256GDDR3102410555127
~2413%
5783n2
11358.5n2
34844
AMD Radeon HD 7690M XTThames XTXTerascale 27253600128GDDR5114.1404574
~6.221%
1550.5n2
1346
7054.5n2
10919n2
5514
AMD FirePro M5950Whistler-XTTerascale 2725900128GDDR51024114.1404629
~6.321%
1500
1350
6257
10592
7975
NVIDIA GeForce GT 640M LEN13P-LPFermi / Kepler5001800 - 4000128DDR3, GDDR5204811284285
~5.421%
1385n5
1259n5
5788n5
8858n5
5858n4
AMD Radeon R6 (Kaveri)KaveriGCN 1.153365464/12812 (FL 12_0)283481
~2.758%
3442n4
5336n4
1306n5
1184n4
707.5n4
770.5n4
4114n3
5989n3
85
10.6
21.42n4
3868n3
776.5n2
257.5n2
AMD Radeon HD 8650MGCN650450064GDDR5204811.1283994
~3.217%
4300
7500
920
1050
AMD Radeon HD 8730MGCN6502000128DDR3204811.1284046
~4.838%
5206
8054
1507.5n2
1370.5n2
1073
1150
6310.5n2
8620n2
15.7n2
AMD Radeon HD 6770MWhistler-XTTerascale 2675 / 725800128GDDR5114.0404728
~16.525%
1475.5n10
1328n9
6106.5n8
10056n7
47877
6907.5n6
NVIDIA GeForce GT 635MN13E-GE2Fermi6607531800128/192DDR3, GDDR5204811404392
~521%
1223n7
1110n7
4995n6
8517.5n6
5707.5n6
NVIDIA GeForce GT 555MN12E-GE-BFermi525753785-900128, 192DDR3,GDDR5307211404726
~8.325%
1299n15
1146n13
5884n12
10568n13
14449n2
5436n13
ATI Mobility Radeon HD 5850Broadway-PROTerascale 26252000128DDR3, GDDR3, GDDR5102411405090
~18.517%
5591.5n12
9655n10
35281
5573n6
AMD Radeon HD 6850MGranville Pro/LPTerascale 2575 / 675800128DDR3, GDDR511404726
~14.325%
1644n2
1469.5n2
6245.5n2
9336
38862
7291n2
NVIDIA Quadro 2000MFermiFermi550900128DDR3204811404679
~6.321%
1421n3
1261n2
6633.5n2
11656n3
5671
NVIDIA GeForce 9800M GTNB9E-GT2G9x500800256GDDR351210655631
~17.817%
4011
9258n3
35284.5n2
4526.5n2
NVIDIA GeForce 8800M GTXNB8E-GTXG9x500800256GDDR351210655870
~17.617%
3422
9217n15
34985n14
4464.5n14
NVIDIA Quadro FX 3600MNB8E-GLMG9x500800256GDDR351210655774
~25.413%
8135.5n2
41502
6193
NVIDIA GeForce GT 445MN11E-GEFermi5901250192 / 128DDR3, GDDR511404851
~5.421%
1291
1148
5249n2
10304
4100
NVIDIA GeForce GTS 360MN11E-GS1GT2xx5751800128DDR3, GDDR3, GDDR5102410.1405090
~7.313%
5522n3
9865
3664.5n2
AMD Radeon HD 7690MThames XT / XTXTerascale 26007253600/1800128GDDR5/DDR3114.1404574
~5.821%
1306n2
1141
5883.5n2
9660
7618
Intel HD Graphics 5600Broadwell GT2Gen. 8 Broadwell300105064/12812 (FL 11_1)4.3143118
~3.633%
7499
7757
1651
1431
944
991
37.89
7445
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
AMD Radeon HD 8670MGCN775200064DDR3102411.1284046
~3.250%
3977n5
4840n5
1513n5
1396n5
767n5
829n5
4077n3
4670n3
9.4n2
64.38n2
6007.5n4
247n2
AMD Radeon HD 6750MWhistler-PROTerascale 2600900128GDDR511404728
~15.225%
1305.5n4
1158.5n4
5483n5
9361n5
43578
7617n3
NVIDIA Quadro K1000MN14P-Q1Kepler8501800128DDR3204811.14.1284214
~5.121%
1232n2
1102n2
5164.5n2
8340.5n2
6750n2
NVIDIA GeForce GT 550MN12P-GTFermi740900128DDR3, GDDR5153611404726
~11.925%
1099.5n6
973.5n6
4781.5n6
8776n3
32347
5380n5
AMD Radeon HD 8590MGCN620450064GDDR511.1284046
NVIDIA GeForce GTS 260MN10E-GSGT2xx5501800128GDDR3, GDDR5102410.1405296
NVIDIA GeForce GTS 160MN10E-GS1G9x600800256GDDR3102410555401
~15.717%
3965
9327
30011
3432
NVIDIA GeForce 9800M GTSNB9E-GTG9x600800256GDDR3102410655631
~23.613%
4060
9501.5n2
36940
AMD Radeon HD 6830MGranville-LPTerascale 2575900128DDR3, GDDR3102411404725
ATI Mobility Radeon HD 5830BroadwayTerascale 2500800128DDR3, GDDR3102411405090
~88%
4785n2
8050n3
AMD Radeon HD 6730MWhistler-XTTerascale 2725800128DDR311404728
~521%
1269
1141
4438
7918
7282
NVIDIA GeForce 9800M GSNB9E-GS1G9x530800256GDDR3102410555522
~14.817%
3245
8449.5n4
28740.5n2
3684n3
ATI Mobility Radeon HD 4830M97Terascale 1550700128GDDR3, DDR310.1405400
~5.713%
3863
7155
4250
ATI Mobility Radeon HD 5770Madison-XTTerascale 2650800128GDDR511405090
AMD Radeon HD 6570MCapilanoTerascale 2650900128DDR3, GDDR5102411404767
~4.821%
1216
1067
4107
7553
7319
AMD Radeon HD 8650GRichlandTerascale 3533720114.2323880
~3.563%
71794
4180n3
6453n3
1479.5n6
1433n5
834n3
905n3
4689n2
6732.5n2
100
10.9
33n3
5411
983
84
AMD Radeon HD 7670MThames XTTerascale 26001800128DDR3, (GDDR5)114.1404574
~5.450%
5267n3
6535n3
1186.5n14
1061.5n14
805n3
824n3
4995n14
8203n15
16914
6696n13
771
206
NVIDIA GeForce GT 630MN13P-GL/GL2Fermi6721800128DDR3114.0284392
~4.958%
58812
4641n4
5577n4
1168n27
1035n26
674n3
719n3
4868.5n22
8610n26
14216.5n2
10
5865n24
588n2
122
NVIDIA GeForce GTS 150MN10E-GE1G9x400800256GDDR3102410.0555401
AMD Radeon R5 M335Exo XT DDR3GCN 1.01070220064DDR34096124.3283104
~3.467%
70485
4167
4590
1889
1784
824
911
4772
5921
73.1
21.5
19.4
30.91
8555
1497
291
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
AMD Radeon R5 M330Exo Pro DDR3GCN 1.01030200064DDR3124.3283144
~3.346%
4427n7
4897n7
1782n7
1689n7
843n7
922n7
5972n2
27.96n7
6386n7
690
597
AMD Radeon R5 M430MarsGCN955174664DDR312 (11_1)4.3282784
~3.163%
4744
5493n2
1821.5n2
1689n2
899
1004n2
4697
6246
77
23.5
21
29.85n2
7430n2
1219
699
AMD Radeon R5 M255Topaz Pro / SunGCN9401800 - 200064DDR34096124.3283515
~3.654%
4859n5
6053n5
1907n5
1784n5
980n4
1080.5n4
5399
8935
16.9
34.68n5
5647.5n4
1073
292
AMD Radeon RX Vega 3Vega Raven RidgeVega600120012_1142168
~3.788%
80755n12
6044n16
8536n16
1947n15
1723.5n14
1065.5n16
1171.5n16
441.5n10
393n11
5440.5n2
11103n5
64.5n2
23n2
19.05n2
43
13.9
4.4
28.19n16
7401n7
1008n2
346n2
NVIDIA Quadro 1000MFermiFermi700900128DDR3204811404679
~13.925%
1064
943
4566
8509n3
40779
6771
NVIDIA GeForce 910MN15V-GMKepler641200064DDR3204812 (FL 11_0)283027
~371%
42738
3677
6636
1432
1413
913
1022
4325
6741
78.7
42.6
30.9
14.4
23.99
2500
929
189
NVIDIA GeForce 820MN15V-GMFermi775180064DDR3204812 (FL 11_0)283629
~3.450%
4520.5n10
6073.5n10
1383n11
1266.5n10
829n9
897n9
5105.5n4
7518n5
35.63n12
5557n8
718n2
379.5n2
Intel HD Graphics 520Skylake GT2Gen. 9 Skylake300105064/128DDR3/DDR412_14.4143027
~5.179%
73656n21
5357.5n114
6700.5n114
1435.5n130
1293.5n130
752n98
803.5n98
297
263
5722n5
8656n27
23728.5n2
87.15n4
39.4n4
26.4n2
37n118
7578n68
852n10
474n4
Intel Iris Graphics 6100Broadwell GT3Gen. 8 Broadwell300110064/12812 (FL 11_1)4.3143266
~4.171%
89341
6141n5
7798n4
1768n5
1694.5n4
864.5n4
874n3
425
377
6531
8764n3
102.1
48.8
36.43n5
7832.5n4
1115
390
Intel UHD Graphics G4 (Lakefield GT1 48 EU)Lakefield GT1Gen. 11 Ice Lake200500DDR412_14.5101296
NVIDIA GeForce GT 720MN14M-GEFermi6259381800 - 200064DDR3204811283910
~4.667%
59694
4522n6
5426n6
1321n5
1213n5
779n5
822n5
4584.5n4
7896n5
15036
50
11.6
36.01n4
5824n5
678.5n2
239n2
NVIDIA GeForce 8800M GTSNB8E-GTG9x500800256GDDR351210655870
~14.417%
2552
8385n3
28301n2
3164
AMD Radeon R5 M240Jet XT / SunGCN1030180064DDR311.2283392
~3.154%
4338.5n2
5500n2
1669n2
1588n2
871.5n2
949n2
5066
5698n2
23.5
26.89n2
4578n2
1152
411
AMD Radeon R5 M320Exo UL/ULT/ULPGCN 2.0855200064DDR3124.3283144
~3.721%
45756
3695
4969
1660
1652
AMD Radeon R5 M230Jet / SunGCN8551800 - 200064DDR34096124.3283629
~338%
3899n3
4814n3
1302n3
1175n3
720n3
771n3
5145
23.67
6314n2
AMD Radeon R5 M315Meso LE (DDR3)GCN970180064DDR32048124.3283104
~2.28%
5040
920
AMD Radeon R5 M420JetGCN780200064DDR34096124.3282753
AMD Radeon RX Vega 2Vega Raven RidgeVega110012_1122168
AMD Radeon R5 (Stoney Ridge)Stoney RidgeGCN 1.2/2.08006412 (FL 12_0)4.4282753
~2.479%
51382n3
2995n3
4755n3
1263n4
1264n4
712n3
772n3
281.5n2
254.5n2
3346
5174n2
67.8
21.8
20.4
13.7
22.97n4
3773n4
597n2
124
ATI Mobility Radeon HD 5750Madison-XTTerascale 25501600128DDR, GDDR3, GDDR5102411405090
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
AMD Radeon HD 8570MGCN6501800 - 200064DDR311.1284046
~346%
3958n3
4867n3
1364n3
1255n3
732n3
790n3
4365
5650n2
16.99
5829n3
258
Intel HD Graphics 6000Broadwell GT3Gen. 8 Broadwell300100064/12812 (FL 11_1)4.3143266
~3.467%
5872n5
7660n4
1513.5n4
1395.5n4
903n3
951n3
374
334
6188n3
8091n3
39.46n2
3.7
30.69n6
6527n3
1021n3
350n3
NVIDIA Quadro K610MKepler954260064GDDR51024114.3283797
~3.846%
6051.5n2
5837.5n2
1294.5n2
1143.5n2
712.5n2
755.5n2
5116n2
8157
9.4
6823.5n2
48
AMD Radeon HD 8550MGCN700180064DDR311.1284046
~3.621%
1242
1307
3705
4700
11.2
Intel Iris Graphics 5100Haswell GT3Gen. 7.5 Haswell200120064/12811.14.0223845
~3.667%
71489
4950n4
6943.5n4
1245.5n4
1151n4
823n4
878.5n4
5865
6928.5n4
83.5n2
16.3
13.9
21.4n3
6817.5n4
1062n2
419.5n2
NVIDIA GeForce GT 540MN12P-GSFermi672900128GDDR5, DDR3153611404726
~11.725%
989n37
888n35
4355n43
7986n41
32969n4
5441n45
AMD Radeon HD 6650MWhistler-PROTerascale 2600900128DDR311404728
~13.625%
1158n7
1037n7
4050.5n6
7307n5
40671
6775.5n6
Intel HD Graphics 4600Haswell GT2Gen. 7.5 Haswell200135064/12811.14.0223849
~6.667%
42242.5n2
5040.5n28
5613n28
1041n26
910.5n26
592.5n24
635.5n24
5203n15
7362n14
38441
78
14.35n2
18.8n17
7168.5n22
767n5
284.5n4
ATI Mobility Radeon HD 5730MadisonTerascale 2650800128DDR3, GDDR311405090
~1317%
3809n5
7265n3
23762n3
5418.5n8
Intel HD Graphics 5500Broadwell GT2Gen. 8 Broadwell30095064/12812 (FL 11_1)4.3143266
~379%
58776n8
4790.5n72
5544n61
1079.5n72
979n65
634.5n62
663n53
289
255
4798n13
6998n22
70.9n5
30.6n5
105
9.3
25.35n64
5270.5n52
695n11
328n13
Qualcomm Adreno 63012ES 3.2102132
~3.138%
81385.5n28
3108
6347
770
821
150n28
75n27
58n28
257
Intel UHD Graphics (Jasper Lake 32 EU)Gen. 11Gen. 1135090012_14.5101068
~3.483%
72158n4
5531.5n6
6977n5
1652n5
1589n5
982n7
1016n6
372n5
330n5
6316.5n2
6074n3
91.2n2
53.7n2
33.95n2
12.6
4.55n2
31.59n7
6561n4
1012.5n4
387n4
Intel UHD Graphics (Elkhart Lake 32 EU)Gen. 1140085012_14.5101068
AMD Radeon R5 (Carrizo)CarrizoGCN 1.2/2.080064/12812 (FL 12_0)4.4283116
~2.833%
4365
5804
1686
1711
898
1001
25.12
4880
Intel UHD Graphics 617Kaby-Lake GT2Gen. 9 Amber Lake300115064/128DDR3L/LPDDR312_14.4141872
~4.246%
77156
4841
7231
1671.5n2
1540.5n2
889.5n2
997n2
337n3
300n3
8662
39.1n2
Intel UHD Graphics 615Kaby-Lake GT2Gen. 9 Amber Lake300100064/128DDR3L/LPDDR312_14.4141933
~375%
60419.5n6
4660n9
6602n9
1312.5n10
1221n10
751n10
842.5n10
275n6
242.5n6
3813
6601.5n2
67.3n2
34.42n2
23.22n2
35.49n10
6378n4
860
473
Intel UHD Graphics (Jasper Lake 24 EU)Gen. 11Gen. 1135080012_14.5101068
~2.938%
6659
8388
1654
1458
1043
1106
355
312
36.9
Intel HD Graphics 615Kaby-Lake GT2Gen. 9 Kaby Lake300105064/128DDR3L/LPDDR312_14.4142663
~13.588%
70743n11
4893n13
6387n13
1362.5n14
1242.5n14
762n11
853n11
296.5n6
261n6
4102n2
7399n5
19381
76.3
42.7
38.3
42892
33662
34.97n13
6470n7
693n4
369n3
AMD Radeon R5 (Kaveri)KaveriGCN 1.151462664/12812 (FL 12_0)283481
~254%
2594
3959
1020n2
901
527
572
3011
4317
14.4
18.03
3611
520
183
ATI FirePro M5800MadisonTerascale 2650800128DDR3, GDDR5102411405037
~78%
3760
7237n3
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
NVIDIA NVS 5400MN13P-NS1Fermi6601800128DDR32048114.0404214
~5.321%
1260.5n2
1119n2
5197.5n2
9192.5n2
6012n2
NVIDIA GeForce 710MN14M-GLFermi775800180064DDR3204811283910
~5.442%
4389.5n2
5323n2
1226n2
1106.5n2
726n2
768.5n2
4641n2
7993n2
13110
6193n2
AMD Radeon HD 7660GTrinityTerascale 3497686114.2324231
~5.658%
65558
4190n2
6408.5n2
1147n3
1057n2
4523n2
7317n2
22817
93
4.5
30.3n4
5576.5n2
771
179
NVIDIA GeForce GT 435MN11P-GTFermi650800128DDR311404851
~11.925%
896.5n2
799n2
3869.5n2
7510.5n2
35402
4567n3
Intel HD Graphics 5000Haswell GT3Gen. 7.5 Haswell200110064/12811.14.0223845
~3.267%
65904
4496.5n8
5693.5n8
1125.5n10
1033.5n10
651n6
715.5n6
4276.5n6
5940n6
72.5n2
22.5
12.1
27.4n2
6946.5n8
816.5n2
306n3
NVIDIA Quadro K510MKepler846240064GDDR51024114.3283797
AMD Radeon HD 6550MCapilano-PROTerascale 2600800128DDR3102411404767
~1125%
1100n3
993n3
3731n2
7143n2
31250.5n2
5286n3
AMD Radeon HD 7590MThames XTTerascale 2600320064102411404359
NVIDIA GeForce GTS 350Mn11e-ge1GT2xx5001600128DDR3, GDDR3, GDDR5102410.1405090
~12.24%
8303.5n2
NVIDIA GeForce GTS 250MN10E-GEGT2xx5001600128DDR3, GDDR3, GDDR5102410.1405296
~1617%
3659n6
7484n5
32373
4451n5
AMD Radeon HD 6630MWhistler-LPTerascale 2485800128DDR311404728
~4.221%
990n12
877n11
3720n13
6934n11
5952n11
AMD Radeon HD 7650MThames-LP/ProTerascale 24505501800128DDR311404360
~4.621%
1058.5n6
945.5n6
4562.5n6
7333n6
6705n6
AMD FirePro M2000Turks GLMTerascale 2500320064GDDR5102411.14.2404184
~4.321%
954
841
3956
6086
8471
AMD Radeon HD 7570MThames-Pro / XTTerascale 24506503200 / 180064GDDR5 / DDR311404360
~3.146%
4329
4623
926n7
829n7
562
569
3727n6
5998.5n6
8.5
8310.5n6
155
AMD Radeon HD 7630MThames-LPTerascale 24501800128DDR311404360
NVIDIA Quadro FX 1800MGT2xx5601100128DDR3, GDDR5102410.1405065
~7.18%
3451.5n2
7572.5n2
ATI Mobility Radeon HD 5650Madison ProTerascale 2450650800128GDDR3, DDR3102411405090
~6.546%
4341
6036
955n2
855.5n2
706
730
3188n29
6469n25
26832n12
9.9
4846.5n30
AMD Radeon HD 8510GTrinityTeraScale 3450554114.2323858
~2.24%
1100
AMD Radeon HD 6530MCapilano-LPTerascale 2500800128DDR3102411404767
~6.78%
3334
7119.5n2
AMD Radeon HD 8550GRichlandTerascale 3515720114.2323930
~3.363%
67801
4060
6107
1280
1179
746
792
4174
7314
87
10.8
28.9
5224
575
132
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
NVIDIA Quadro K500MN14M-Q1Kepler850180064DDR3 / GDDR52048114.3284214
NVIDIA GeForce GT 625MN13M-GSFermi625180064DDR3102411284092
~1.78%
1037
921
NVIDIA GeForce GT 620MN13P-GLP / N13M-GSFermi625715180064 / 128DDR3102411404285
~3.342%
4022.5n2
5269n2
1041.5n10
933.5n10
696n2
737.5n2
4219n8
7462n10
4989n9
521
NVIDIA GeForce GT 525MN12P-GEFermi600900128GDDR5, DDR3153611404726
~9.525%
901n11
799n11
3839.5n8
7058.5n8
25685
4531n8
AMD Radeon HD 7610MThames-LETerascale 24501600128DDR311404360
~3.538%
4475
5242
849n3
749n3
592
605
3691n3
7100n3
6930n3
AMD Radeon HD 7620GTrinityTerascale 3360497114.2324231
~2.742%
3064
5378
1030
948
659
716
2399
5553n2
4088
578
AMD Radeon HD 7640GTrinityTerascale 3497686114.2324231
~6.725%
704n2
655.5n2
2599n2
4173n2
18117
4489.5n2
Intel HD Graphics 515Skylake GT2Gen. 9 Skylake300100064/128DDR3L/LPDDR312_14.4143027
~4.571%
56787n6
3850.5n26
5467n26
1115n29
1014n29
623.5n22
691.5n22
4672
6446n14
20345
73.2n5
36.7n5
27.7n2
29.4n31
6088n15
704n5
416n4
Intel UHD Graphics 610Kaby Lake GT1Gen. 9 Kaby Lake30095064/128DDR3/DDR412_14.4141809
~2.488%
42712.5n2
4333.5n2
5276.5n2
1045.5n2
922.5n2
616n2
663.5n2
222
194
3996
6902n2
71.9
33.1
23.1
25.5
10.2
3.35n2
28.37n2
5209.5n2
481.5n2
304.5n2
Intel HD Graphics 610Kaby Lake GT1Gen. 9 Kaby Lake30095064/128DDR3/DDR412_14.4142539
~2.583%
41956.5n4
4300n4
5281n4
996n5
880n5
566n5
607.5n4
223n2
194.5n2
3715
6386.5n2
72.4
32.3
23.8
11.8
3.3
26.21n4
5084n3
484
291
Intel HD Graphics 4400Haswell GT2Gen. 7.5 Haswell200110064/12811.14.0223845
~4.171%
37082
3940n94
4953n91
828n97
735.5n94
525n84
569n81
3583n43
5164n54
20486
60.5n2
16.2
8.2n3
20.37n58
6130n65
575n7
234n15
AMD Radeon HD 8610GRichlandTerascale 3533626114.2323858
~1.854%
2463
2749
941
889
441
475
2203
3538
15.9
17
3972
612
361
Intel HD Graphics 510Skylake GT1Gen. 9 Skylake30095064/128DDR3/DDR412_14.4143027
~371%
43274
4721
5664
985
847
570
621
3798
7253
121.9
64.6
51.7
9.3
27.98
7348
500
302
NVIDIA NVS 5200MN13M-NSFermi625180064DDR3102411284214
~3.346%
4352n3
4949n3
1136n5
1008n5
671n3
704n3
4268n3
7502.5n4
9.8
6266.5n4
54
ATI Mobility Radeon HD 565vTerascale 1675800128GDDR3, DDR3, DDR210.1554972
AMD Radeon HD 7550MThames-LP / ProTerascale 24505503200 / 180064GDDR5 / DDR311404360
~4.646%
3573
4081
843n3
756n3
545
569
2927n3
4932n3
16206
7.4
4935
ATI Mobility Radeon HD 4670M96-XTTerascale 1675800128GDDR3, DDR2, DDR310.1555453
~1317%
3004.5n2
6828n3
24975n2
4567n4
NVIDIA GeForce GT 425MN11P-GSFermi560800128DDR3102411404870
~10.425%
832n3
753n3
3380.5n8
6706.5n8
30484.5n4
4098n10
NVIDIA GeForce 9700M GTSNB9E-GSG9x530800256GDDR351210655631
~14.617%
2825n3
7779n2
28921
3843
NVIDIA Quadro FX 2700MNB9E-GLM2G9x530800256GDDR3102410655601
~17.317%
2799
7660
36280
4394
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
NVIDIA GeForce GT 335MN11P-GS1GT2004501066128DDR3, GDDR3102410.1405090
~10.517%
3106n5
6892n5
18184n2
3790.5n4
AMD Radeon HD 7600GTrinityTerascale 3320424114.2324122
~2.321%
672n3
628n3
1639
3504n3
3637n3
ATI Mobility Radeon HD 3870M88-XTRV6xx660850256GDDR310.1555767
~12.317%
3458
8635.5n2
21439
3290
ATI Mobility Radeon HD 5165Terascale 1600900128(G)DDR3102410.1555090
~11.317%
2789
6125
21269n2
4367n2
ATI Mobility Radeon HD 560vTerascale 1550800128GDDR3, DDR3, DDR210.1554972
~5.78%
2459.5n2
6224
ATI Mobility Radeon HD 4650M96Terascale 1550800128GDDR3, DDR2, DDR310.1555453
~13.417%
2412.5n6
6207n10
26779n14
4973.5n14
NVIDIA GeForce GT 420MN11P-GEFermi500800128(G)DDR311404851
~7.325%
775
685
3051n2
6148n3
18904n2
3464n4
AMD Radeon HD 7530MThames-LPTerascale 2450180064DDR311404360
ATI Mobility Radeon HD 3850M88RV6xx580750256GDDR310.1555858
~4.213%
1879.5n2
6095n2
2756
NVIDIA GeForce GT 330MN11P-GE1GT2xx5751066128GDDR2, GDDR3, DDR3102410.1405087
~12.917%
2657.5n18
6232n21
26029.5n14
3409n25
NVIDIA Quadro FX 880MN10P-GLMGT2xx550790128GDDR3, DDR3102410.1405090
~15.817%
2638.5n4
6378n5
33331n4
4846n3
NVIDIA Quadro NVS 5100MN10P-NSGT2xx550800128DDR3102410.1405090
~12.517%
2634
6325
24702
3700n2
NVIDIA GeForce GT 240MN10P-GSGT2xx550800128DDR3, GDDR2, GDDR3102410.1405296
~11.517%
2371.5n4
5952n5
22708n10
3466.5n10
AMD Radeon HD 7490MSeymour XTXTerascale 2800380064GDDR551211404391
Intel UHD Graphics (Elkhart Lake 16 EU)Gen. 1125085012_14.5101068
~1.746%
30044
2873
3762
701
650
489
523
14.24
4048
476
147
Intel UHD Graphics (Jasper Lake 16 EU)Gen. 11Gen. 1135080012_14.5101068
~2.479%
43609.5n4
4596.5n8
4910.5n8
975.5n8
854n8
626n8
645n8
203n5
178n5
3411
6438n4
56.25n2
30.7n2
16.45n2
3.5n2
26.24n8
5649.5n4
548n4
226n3
Intel UHD Graphics 605Gemini LakeGen. 9 Apollo Lake30075064/128DDR4 / LPDDR412_14.4142195
~1.788%
45008n9
3154n11
3359.5n10
748n14
648n13
419n11
454n10
129
113
2162
4171n3
45.5n3
22.1n3
16.5n3
23.3
6.5
1.7
18.09n14
3773n7
490.5n2
142n2
Intel HD Graphics 505Apollo LakeGen. 9 Apollo Lake30075064/12812_14.4142661
~1.675%
32480.5n6
2837.5n8
3413.5n8
679n16
620n16
383n7
408n7
107.5n4
94n4
2350.5n2
4302.5n2
47.2
18.9
14.1
16.63n16
3155n9
382
141.5n2
Intel HD Graphics 5300Broadwell GT2Gen. 8 Broadwell10090064/12812 (FL 11_1)4.3143388
~2.467%
59555n4
3041n20
3720n20
731n21
647n21
407n19
439n19
3104n2
4775n8
55n5
30.1n3
7.6
18.36n22
4018n17
518.5n2
210n3
AMD Radeon HD 7510MThames-LETerascale 2450160064DDR311404360
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
NVIDIA GeForce Go 7950 GTXG71MG7x575700256GDDR35129c906273
~27.28%
5659n2
32000
NVIDIA Quadro FX 3500MG71GLMG7x575700256GDDR35129c906133
~7.74%
5254
NVIDIA GeForce 9700M GTNB9E-GEG9x625800128GDDR2, GDDR351210655672
~15.613%
1749.5n2
5908.5n2
25300
NVIDIA GeForce GT 230MN10P-GEGT2xx500800128GDDR2, GDDR3102410.1405296
~10.917%
2363
5647
21595.5n2
2819n2
ATI Mobility Radeon HD 550vTerascale 1450600128GDDR3, DDR3, DDR210.1554972
~4.413%
2214
5260
4733
Intel HD Graphics 4000Ivy BridgeGen. 7 Ivy Bridge350135064/128113.1224650
~3.467%
44323.5n2
3282.5n56
3768.5n56
603n125
523n121
444n45
480n46
2959n122
4412.5n140
15220n8
39n7
7.35n4
11.91n2
5157n121
537n19
66n13
AMD Radeon HD 6620GLlanoTerascale 240011324566
~5.625%
726.5n4
650n2
2442.5n4
3595.5n2
15023
3379n3
AMD Radeon R4 (Stoney Ridge)Stoney RidgeGCN 1.2/2.06006412 (FL 12_0)4.4282753
~1.983%
42677n3
2458n3
3416n3
1003.5n4
972.5n4
383n3
583n3
228n2
205n2
2542
4246.5n2
57.2n2
18.5n2
22.65n2
8.35n2
2.95n2
18.6n4
2881n3
612n2
180.5n2
AMD Radeon R5 (Beema/Carrizo-L)BeemaGCN 1.18506412 (FL 12_0)283517
~2.158%
36807
2882n7
3317n7
831n9
764n9
510n7
539n7
2698
4956n2
51
17n9
2779n7
494.5n2
149
AMD Radeon R4 (Beema)BeemaGCN 1.18006412 (FL 12_0)283517
~254%
29548
2825n7
3309n7
788n8
716n7
472n7
497n7
2506
4046
16.04n7
3092.5n6
445
136.5n2
AMD Radeon R4 (Kaveri)KaveriGCN 1.153364/12812 (FL 12_0)283481
~1.663%
26079
2034n2
3371.5n2
658n3
611n2
404.5n2
433.5n2
1958
3179
36.2
14.4
12.71n2
3108n2
443
137
AMD Radeon R3 (Mullins/Beema)Beema/MullinsGCN 1.13506866412 (FL 12_0)283517
~1.654%
2391n4
3049n4
686n6
620n4
396.5n4
419.5n4
1814.5n2
4010n3
11.7n3
14.36n4
2908n4
379n3
108n3
AMD Radeon R2 (Stoney Ridge)Stoney RidgeGCN 1.2/2.06006412 (FL 12_0)4.4282753
~1.775%
38046.5n2
2092.5n2
3321.5n2
774.5n2
730.5n2
463n2
511.5n2
2136
3809
42.7
16.5
13.2
7.7
2.8
15.07n2
3619n2
432
113
Intel HD Graphics (Broadwell)Broadwell GT1Gen. 8 Broadwell10085064/12812 (FL 11_1)4.3143266
~1.963%
3398
4015
729
641
428
463
2651
5077
47.12
21.52
17.41
17.78
4886
374
182
Intel HD Graphics 4200Haswell GT2Gen. 7.5 Haswell20085064/12811.14.0223845
~258%
41579
3027n13
3807n13
712n12
638n13
394.5n12
431.5n12
2537.5n2
3383n7
37.5n4
16.95n7
4514n9
486n2
176.5n2
Intel HD Graphics (Skylake)Skylake GT1Gen. 9 Skylake30080064/128DDR3L/LPDDR312_14.4143027
AMD Radeon HD 7500GTrinityTerascale 3327424114.2324231
~246%
2080
4333
604.5n4
585
462
512
2404.5n2
4810n2
3876n2
389
95
AMD Radeon HD 8450GRichlandTerascale 3533720114.2323930
~2.158%
55358
2345.5n4
3168.5n4
787n3
724n3
411n4
464.5n4
2114n2
3868n2
65
18.25n2
4494n3
423
94
AMD Radeon HD 7470MSeymour XT / XTXTerascale 2750 / 8003200 / 180064DDR3/GDDR551211404391
~1.829%
566n2
522n2
1739.5n2
3624.5n2
3773.5n2
390
92
AMD Radeon HD 6490MSeymour XTTerascale 2700 / 750 / 80080064DDR3/GDDR551211404726
~10.925%
681n4
601n3
2511n4
5571n4
33338
6754n11
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
AMD Radeon HD 8410GTrinityTeraScale 3450600114.2323858
AMD Radeon HD 8400KabiniGCN60011.1283858
~1.858%
36156
2633n5
2883n5
686.5n4
614n4
377n4
401n4
2013
3532n2
36n2
13.25n4
3010n3
363.5n2
107
NVIDIA GeForce GT 520MXN12P-GVRFermi90090064DDR3102411404582
~3.121%
666n2
596.5n2
2619.5n2
5296n2
4655n2
AMD Radeon HD 7520GTrinityTerascale 3497686114.2324214
~2.333%
2148
3185
608n3
559n3
2045n3
4332n3
5073n3
70
NVIDIA GeForce GT 325MN11P-GV1GT2xx4501066128GDDR2, GDDR3, DDR3102410.1405087
~4.213%
2161n3
5373n3
3910n4
NVIDIA GeForce GT 130MN10P-GE1G9x6001066128GDDR2, GDDR3102410555454
~12.217%
1629n3
4950n4
26293n5
3292n7
NVIDIA NVS 4200MFermi81080064DDR3102411404679
~321%
572n7
507n7
2298n7
4929n8
5185n8
NVIDIA GeForce Go 7900 GTXG71MG7x500600256GDDR35129c906450
~24.68%
4503n2
29490n2
NVIDIA Quadro FX 2500MG71glmG7x500600256GDDR35129c906651
~23.48%
4695n2
27600
AMD Radeon HD 8350GRichlandTerascale 3514720114.2323930
~2.350%
46807
1895
2942
691
624
369
388
2463
5139
17.48n2
4647
71
AMD Radeon HD 8330KabiniGCN50011.1283858
~1.358%
2160n11
2672n11
592n9
530n9
327n11
351n11
1812.5n8
3334.5n8
37
4.2
11.96n7
2440.5n12
324.5n2
96
Intel UHD Graphics 600Gemini LakeGen. 9 Gemini Lake30070064/128DDR4 / LPDDR412_14.4142195
~1.583%
30149n9
3124n20
3435.5n20
647.5n28
578n27
401.5n22
433n21
125n12
109n12
2189n2
3960n9
37.15n2
19n3
15n3
15.75n2
1.1
16.41n28
3504n13
358n4
129n3
Intel HD Graphics 500Apollo LakeGen. 9 Apollo Lake30070064/12812_14.4142661
~1.467%
24609n8
2116n8
3007n8
530n11
482n11
307n8
362.5n8
3506n3
42
20
15
16.3
13n16
2894n8
324n4
79
NVIDIA GeForce 9650M GSNB9P-GS1G8x625800128GDDR2?, GDDR351210805755
~1017%
1786
4830
19924
3761
NVIDIA GeForce 9650M GTNB9P-GTG9x550800128GDDR2, GDDR3102410555596
~11.117%
1306
4880n5
23209n5
3632n5
NVIDIA GeForce 8700M GTNB8E-SEG8x625800128GDDR351210806030
~11.917%
2026
4804n4
24971n3
3586
NVIDIA Quadro FX 1700MNB9P-GLMG9x625800128GDDR325610655553
~21.713%
6302
35734
6159
NVIDIA Quadro FX 1600MNB8P-GLMG8x625800128GDDR351210806041
~20.513%
4915.5n2
35198n3
4885n3
NVIDIA GeForce Go 7800 GTXG70MG7x440550256GDDR35129c1106651
~20.88%
4000
24800
NVIDIA GeForce Go 7900 GSG71MG7x375500256GDDR35129c906450
~19.68%
3519n2
23613.5n4
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
NVIDIA Quadro NVS 320MG84MG8x575700128GDDR3, GDDR251210806033
~24.88%
4769
29508n2
NVIDIA Quadro FX 1500MG71GLMG7x375500256GDDR35129c906450
~21.98%
4074
26279
NVIDIA GeForce 9600M GTNB9P-GSG9x500800128GDDR2, GDDR3102410655672
~12.517%
1459n5
5174n10
26648.5n14
3535n19
NVIDIA GeForce GT 220MG96MGT2xx500800128GDDR2, GDDR3102410655234
~9.117%
1378
4010
18684n3
3065n2
NVIDIA Quadro FX 770MNB9P-GLMG9x500800128GDDR2 / GDDR351210655601
~20.813%
5296.5n2
34871
6180
NVIDIA GeForce GT 120MN10P-GV1G9x5001000128GDDR2, GDDR3102410555420
~14.313%
5225n3
22385
4267
AMD Radeon HD 7450MSeymour-PROTerascale 2700180064DDR3, GDDR511404328
~2.621%
652n2
581.5n2
2280.5n2
4346.5n2
3513
NVIDIA GeForce 610MN13M-GEFermi672900180064DDR3114.0404392
~2.821%
582n4
507.5n4
2210n4
4598n4
5053n4
NVIDIA GeForce 705MFermi775180064DDR3114.0403849
Intel HD Graphics 405 (Braswell)BraswellGen. 832070064/12811.2142814
~1.367%
23763n2
1933n4
2113n4
537n7
473n7
237.5n2
254.5n2
2081
2920n2
41.3
20.3
20.3
14.11n7
2753n4
390.5n2
102.5n2
Intel HD Graphics (Braswell)BraswellGen. 832070064/12811.2143180
~0.963%
1529n15
2193n15
436n17
395n17
238n13
261n13
1479
1311
33
16.1
12.5
12.31n17
2284n15
306
80.5n2
Intel HD Graphics 400 (Braswell)BraswellGen. 832064064/12811.2142814
~1.154%
20277n6
1457n7
1841n7
397n11
349n11
188n2
218n2
2474
29n2
16n2
10.6n2
11.32n11
2052.5n6
AMD Radeon HD 6470MSeymour XTTerascale 2700 / 75080064DDR3102411404726
~925%
595n16
535n15
1706n11
4502n11
27881.5n4
5316n13
AMD FirePro M3900Seymour XTTerascale 270075090064DDR31024114.1404629
~4.38%
617
4997
NVIDIA GeForce GT 520MN12P-GP/LVFermi740 / 600800 / 90064 / 128DDR3 (GDDR5)153611404727
~7.425%
568.5n12
502n12
2280n11
4742.5n8
20926n3
4960n12
AMD Radeon HD 7420GTrinityTerascale 3480655114.2324214
~1.550%
1963
2717
501
453
332
343
1718
3751n2
13.07
4220n2
332
67
ATI Mobility Radeon HD 3670M86XTRV6xx680800128DDR2/GDDR3/GDDR410.1555821
~11.517%
1277
4389.5n4
24532n2
4145n2
ATI Mobility FireGL V5725M86GLRV6xx68080012810.1555461
Intel HD Graphics (Haswell)Haswell GT1Gen. 7.5 Haswell200100064/12811.1224092
~1.767%
43493
2335.5n6
3278n6
544n7
484n7
314n6
362.5n6
2163n2
3357.5n4
53.5
28.7
20.1
13.92n4
4215.5n4
370n2
140n2
AMD Radeon HD 6520GLlanoTerascale 240011324566
~2.121%
549.5n2
492
1678n5
3322n3
3494n3
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
AMD Radeon HD 8310GTrinityTeraScale 3424554114.2323858
NVIDIA GeForce 320MMCP89GT2xx45010.1405006
~6.921%
1852n5
4229.5n4
16219n2
12.6
3206n4
NVIDIA GeForce GT 320MGT2xx500790128DDR3102410.1405076
~48%
1205
4706
ATI Mobility Radeon HD 2600 XTM76-XTRV6xx700750128DDR2, GDDR325610656059
~11.217%
1159
4179n2
24515
3362n2
ATI Mobility Radeon X1900M59400470256DDR1/DDR2/GDDR32569c806182
~21.28%
3460n3
25914
ATI Mobility Radeon X1800XTM58, R520550650256GDDR39c906498
ATI Mobility Radeon X1800M58450500256GDDR39c906498
~15.78%
2681
19000
NVIDIA GeForce Go 6800 UltraNV41M450600256DDR32569c1306867
~198%
2500
23800
NVIDIA GeForce Go 7800G70MG7x400550256GDDR32569c1106498
~15.78%
2200
19500
NVIDIA GeForce 9600M GSNB9P-GEG9x430800128GDDR2, GDDR3102410655672
~1117%
1135
4382.5n2
23837.5n4
3076n3
NVIDIA GeForce 9500M GSNB9P-GE1G8x475700128GDDR2 / GDDR351210805796
~9.617%
863
3705.5n4
20861n5
3161n3
AMD Radeon HD 7400GTrinityTerascale 3327423114.2324122
~1.538%
1586
2424
454
415
245
327
2931
3866
316
AMD Radeon HD 6480GLlanoTerascale 244411324566
~1.829%
1646
513n3
467n2
155
1578n4
3497n3
3655n3
ATI Mobility Radeon HD 2700M76-XTRV6xx700700128DDR2, GDDR325610655847
~18.78%
4067.5n2
21740
NVIDIA GeForce GT 415MN11P-GVFermi500800128(G)DDR311404851
~2.617%
433
379
4193.5n2
3922
NVIDIA GeForce 410MN12M-GSFermi57580064DDR311404726
~6.925%
477n5
415n4
1922.5n2
4035n4
20641
3399n5
AMD Radeon HD 7370MRobson XTTerascale 2750160064DDR3102411404360
AMD Radeon R2 (Mullins/Beema/Carrizo-L)Beema/MullinsGCN 1.13006006412 (FL 12_0)283517
~1.163%
1980.5n2
2650n2
434.5n6
397n3
350.5n2
373n2
1178
3242n2
36n2
14
12.7
9.53n3
1616n3
340.5n2
89n2
AMD Radeon HD 6370MRobson XTTerascale 275080064DDR3102411404767
~9.517%
1319
3999
19638
3875
AMD Radeon HD 8280TemashGCN45011.1283858
~138%
2054
2515
554
496
303
328
11
1041
295
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
ATI Mobility Radeon HD 5470Park XTTerascale 2750180064DDR2, GDDR2, DDR3, GDDR3, GDDR511405090
~9.817%
1269.5n16
3683.5n16
20743n10
4042n16
AMD Radeon HD 6450MSeymour-PROTerascale 260080064DDR311404728
~2.521%
506.5n2
443
1394.5n2
3845.5n2
5804
AMD Radeon HD 7430MSeymour-PROTerascale 2600180064DDR311404358
ATI Mobility Radeon HD 3650M86RV6xx600700128DDR2/GDDR3/GDDR410.1555821
~10.317%
855n3
3360n7
23042n10
3291n8
ATI Mobility FireGL V5700M86-GLRV6xx600700128DDR2/GDDR3/GDDR410.1555821
~11.517%
1017
4270.5n2
24429
5049
ATI Mobility Radeon HD 5145Terascale 172090064DDR3, GDDR310.1555090
~917%
1248n3
3661n3
18387.5n4
4014.5n4
ATI Mobility Radeon HD 545vTerascale 172080064GDDR3, DDR3, DDR210.1554972
~9.317%
1215n2
3760n2
19162n3
4297n3
AMD Radeon HD 8240TemashGCN40011.1283858
~1.150%
1501
2273
458.5n2
427.5n2
265.5n2
292.5n2
1377
2636
9.55
2198
272
32
AMD Radeon R6 (Mullins)MullinsGCN 1.15006412 (FL 12_0)283517
~1.621%
20511
1900
2258
582
302
AMD Radeon HD 8250TemashGCN30040011.1283849
~1.150%
1636n2
1965n2
468n2
422.5n2
234.5n2
253.5n2
1317n2
2570n2
3.7
1895n2
275
54
Intel HD Graphics (Cherry Trail)Cherry TrailGen. 820060064/12812 (FL 11_1)4.3143210
~167%
19303n7
1488n7
1783.5n8
343n23
298n22
248n5
225n3
2595n5
32n7
13.5n6
11n6
1.2
9.66n17
1973n16
277
89n3
ATI Mobility Radeon HD 4570M92-XTTerascale 168080064GDDR3, DDR2, DDR310.1555453
~8.417%
1151n6
3633n7
17062n10
3689n13
NVIDIA Quadro FX 570MG64GLMG8x475700128GDDR325610806041
~15.913%
3800
26907.5n2
4534
ATI Mobility Radeon HD 5450Park ProTerascale 267580064DDR311405090
~5.64%
3775.5n2
NVIDIA GeForce 8600M GTG84MG8x475700128GDDR3, GDDR251210806033
~1017%
1040
3277n10
22231.5n22
3006.5n14
ATI Mobility Radeon HD 2600M76RV6xx500600128DDR2, GDDR325610656059
~9.513%
3177
15324n5
2575n3
Intel HD Graphics 3000Sandy BridgeGen. 6 Sandy Bridge350135064/12810.13.0324700
~5.125%
2656.5n4
2502.5n4
1568n91
3286.5n112
11654n17
4414n114
NVIDIA Quadro FX 380Mn10m-glmGT2xx62580064GDDR3, DDR351210.1405090
~5.44%
3687
NVIDIA GeForce 310MN11M-GE1GT2xx606 / 62580064GDDR3, DDR351210.1405087
~7.617%
1123n15
3206n17
15456.5n14
3175n26
NVIDIA GeForce G210MN10M-GSGT2xx62580064GDDR2, GDDR351210.1405296
~5.129%
1536
1805
1021n3
3047
17585n3
7.53
2607.5n4
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
NVIDIA NVS 3100MN10M-NSGT2xx60080064GDDR3, DDR351210.1405090
~10.517%
1120.5n6
3257n7
23455.5n4
3374.5n10
NVIDIA GeForce 405MGT2xx606160064GDDR3, DDR351210.1404235
NVIDIA GeForce 315MN11M-GEGT2xx60679064GDDR3, DDR351210.1404762
~7.417%
1108.5n2
3267n2
14749
3787n2
NVIDIA GeForce Go 7600 GTG73M500600128GDDR3, GDDR2, GDDR12569c906345
~17.18%
2833
20865n2
NVIDIA GeForce 9500M GNB9PG9x500800128GDDR2, GDDR3102410655672
~8.913%
3435n2
13926n2
2220.5n2
NVIDIA GeForce 8600M GSG84MG8x600700128GDDR3, GDDR251210806033
~1013%
3027.5n2
16193n8
3131.5n2
NVIDIA NVS 2100MGT2xx53580064GDDR3, DDR351210.1405090
~9.117%
992
2971
20085.5n2
3084n2
NVIDIA GeForce Go 7700G73M-B1450500128GDDR3, GDDR2, GDDR15129c806345
~188%
2685.5n4
22170
NVIDIA GeForce Go 6800NV42M300300128 / 2562569c1306867
~18.68%
1900
23800
NVIDIA Quadro FX Go 1400NV41M3305002562569c1306867
~1.94%
1306
ATI Mobility Radeon X800XTM28Pro4805502569b1306764
AMD Radeon HD 6430MSeymour-LPTerascale 248080064DDR311404728
AMD Radeon HD 6380GLlanoTerascale 240011324566
~3.18%
2639
3318
ATI Mobility Radeon HD 5430Park LPTerascale 255080064DDR3, GDDR5?11405090
~2.713%
962
3082
3702
AMD Radeon HD 8210Temash, KabiniGCN30011.1283858
~158%
26764
1150n6
1904.5n6
370.5n4
343.5n4
209n5
227n5
984n3
2177.5n4
25
7.69n7
1691n7
241
45n2
ATI Mobility Radeon HD 540vTerascale 155080064GDDR3, DDR3, DDR251210.1554972
~917%
1008
3494
18743
4286.5n2
ATI Mobility Radeon HD 4550M92Terascale 155070064GDDR3, DDR2, DDR310.1555096
~8.817%
1051n3
3449n3
18299n3
4230n4
Intel HD Graphics 2500Ivy Bridge GT1Gen. 7 Ivy Bridge650115064/12811.0224275
~4.150%
2817n4
2604.5n4
430n5
350.5n4
294.5n4
318n4
1930.5n6
3816n5
20814
6037n4
286n3
50n3
Intel HD Graphics (Ivy Bridge)Ivy Bridge GT1Gen. 7 Ivy Bridge350110064/12811.0224092
~2.154%
1906.5n12
2286n12
370.5n12
315n12
254.5n10
285.5n10
1491n11
2930n12
9212n2
27
3382n13
275n8
44
AMD Radeon HD 7350MRobson ProTerascale 2500180064DDR3102411404184
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
AMD Radeon HD 6350MRobson ProTerascale 2500800-90064DDR3102411404767
ATI Mobility Radeon HD 4530M92Terascale 150070064GDDR3, DDR2, DDR310.1555453
~2.413%
708
2902
3441n3
ATI Mobility Radeon HD 4350M92Terascale 145060064GDDR3, DDR2, DDR310.1555453
~9.613%
3130n4
14875
3914n2
ATI Mobility Radeon HD 530vM92Terascale 145060064GDDR3, DDR3, DDR210.1554972
~4.34%
2947
NVIDIA GeForce 305Mn11m-lp1GT2xx52570064GDDR2, GDDR3, DDR2, DDR351210.1405087
~4.64%
3101
ATI Mobility Radeon X1700M66-P475400128DDR/DDR2/GDDR3/GDDR42569c906526
~15.98%
2139n5
19877.5n4
ATI Mobility FireGL V5250M56GL400330128DDR/DDR2/GDDR3/GDDR42569c906192
~2.54%
1672
ATI Mobility Radeon X2500M6646040064 / 128DDR22569c806041
~11.68%
2100
13972.5n2
NVIDIA GeForce Go 7600G73M450350128 / 64GDDR3, GDDR2, GDDR12569c906498
~14.58%
1900n15
18232n12
NVIDIA Quadro NVS 300MG72GLM450500128GDDR39b906414
ATI Mobility Radeon X800M28400350128 / 256GDDR2, GDDR32569b1306767
~14.78%
1300
19100
ATI Mobility Radeon X1600M56450470128DDR/DDR2/GDDR32569c906526
~13.28%
1836n13
16479n12
ATI Mobility FireGL V5200M56GL425475128DDR/DDR2/GDDR32569c906526
~1.84%
1203.5n2
ATI Mobility Radeon 9800M18350300256DDR2 / DDR325691307106
~13.58%
860
17800
NVIDIA GeForce Go 6600NV43M375300128GDDR22569c1106651
~11.78%
1150
15000
ATI Mobility Radeon X1450M54550450128DDR1/DDR2/DDR32569c906297
~7.98%
1085n2
9900
ATI Mobility Radeon X700M26350350128DDR/DDR225691106903
~11.88%
735n2
15675.5n2
ATI Mobility FireGL V5000M26GL350350128GDDR312891106889
~23.84%
16500
NVIDIA GeForce G 110MN10M-GS1G9x40070064GDDR2, GDDR3102410555454
~3.64%
2450n2
AMD Radeon HD 6330MRobson LPTerascale 250080064DDR3102411404767
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
ATI Mobility Radeon HD 4330M92-SETerascale 145060064GDDR3, DDR2, DDR351210.1555453
~6.817%
656
2352n2
14310n5
3310.5n6
NVIDIA GeForce 8400M GTG86M450600128GDDR3 / GDDR251210806064
~1.54%
1033
NVIDIA Quadro NVS 140MG84M40070064GDDR3, GDDR225610806064
~7.513%
1410
13071.5n6
2408
Intel HD Graphics 2000Sandy BridgeGen. 6 Sandy Bridge850/1100135064/12810.1324700
~6.917%
895.5n2
2288n3
15201
2298n2
NVIDIA GeForce G 107MG9x10555218
NVIDIA GeForce G 105MN10M-GE1G9x64070064GDDR2, GDDR351210655454
~6.317%
788
2261n7
13616n7
2416n6
NVIDIA GeForce G 103MG98G9x64050064DDR251210.0655218
~6.117%
366
1885
13833
2131
NVIDIA GeForce 9500M GEMCP79Mx + NB9M64GDDR2, GDDR325610.0655819
NVIDIA GeForce G 102MMCP75G9x450DDR2, DDR351210.0655400
~6.513%
1409
10723n2
2581.5n2
NVIDIA GeForce G 205MMCP79MXG9x45010655096
~2.34%
1589
NVIDIA GeForce 9400M (G) / ION (LE)MCP79MX45010.0655540
~3.317%
607
1157n5
6427n7
2326.5n12
Intel HD Graphics (Sandy Bridge)Sandy BridgeGen. 6 Sandy Bridge350110064/12810.1324611
~4.225%
1451.5n2
1404.5n2
976n18
2509n19
11429.5n4
2577n18
Intel HD Graphics (Bay Trail)Bay TrailGen. 7 Ivy Bridge31189632/64/128114.0, ES 3.0223747
~4.183%
14748.5n20
1188n74
1228.5n72
216n88
186.5n86
147n7
149n11
637n12
1866n27
7727
16n15
8.75n10
5.2
14509n4
8456n3
3.6
5.52n42
1991.5n84
174n12
29n6
VIA Chrome9HD10.106133
~3.14%
2120
AMD Radeon HD 7340ZacateTerascale 252368011404245
~2.150%
1385.5n2
1908n2
360.5n8
331.5n8
217.5n2
224n2
1070n7
2466.5n8
9548
2121n5
258
63
AMD Radeon HD 6320ZacateTerascale 250060011404777
~1.421%
332.5n6
302n6
891.5n8
2406.5n8
2056n7
AMD Radeon HD 7310ZacateTerascale 250011404245
~1.650%
1161
1593
286n3
260n3
200
192
639.5n4
1458.5n4
7452n2
1796n3
162
28
AMD Radeon HD 6310ZacateTerascale 250011404777
~325%
275n5
251n5
691n6
1984.5n10
8348n7
1933n12
AMD Radeon HD 8180TemashGCN22511.1283858
~0.750%
1021n3
1493n3
294
268
165
145n2
790
1723.5n2
5.45n2
1469.5n4
216
30
ATI Mobility Radeon HD 3470 Hybrid X2M82-XT + RS780MRV6xxDDR2/GDDR310.1555454
~6.813%
2324
10748
2098
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
NVIDIA GeForce 9400M GeForceBoost6410655673
~7.18%
125
9710
ATI Mobility Radeon HD 3470M82-XTRV6xx68080064DDR2/GDDR310.1556185
~7.413%
1566n3
12640.5n4
2245n3
NVIDIA GeForce 9300M GNB9M-GS140060064GDDR2 / GDDR325610805796
~8.213%
1775.5n2
13980n3
2613n2
NVIDIA ION 2GT218-ION-A3, GT218-ILV-A3GT2xx405 / 475 / 53579064DDR2, DDR351210.1405087
~3.117%
724n3
1963n5
5539.5n4
1027n5
NVIDIA GeForce 9300M GSNB9M-GS55070064GDDR2, GDDR325610655672
~5.917%
267
1465
13583n8
2561n7
NVIDIA Quadro FX 370MNB9M-GLM58070064GDDR2, GDDR325610655600
~813%
1595
13622
3031
NVIDIA Quadro NVS 160M58070064GDDR2, GDDR325610655600
~8.213%
1841n3
13740
2923n3
NVIDIA GeForce 9200M GSNB9M-GE55070064GDDR2, GDDR325610655672
~6.317%
372.5n2
1817.5n2
14224n6
2335n3
AMD Radeon HD 7290ZacateTerascale 228040011404550
~0.825%
226
206
534
1536
1342
188
AMD Radeon HD 6290ZacateTerascale 228040011404550
~0.821%
200
179
497n2
1513n2
1174n2
ATI Mobility Radeon HD 3450M82RV6xx50070064DDR2/GDDR310.1556185
~5.917%
306.5n2
1911.5n4
12859n3
2595n2
ATI Mobility Radeon HD 3430M82-SERV6xx45070064GDDR251210.1555621
~7.213%
1690n3
12163.5n2
2129
ATI Mobility Radeon HD 3410M82-MPERV6xx40070064GDDR210.1555621
~2.14%
1450
ATI Mobility Radeon HD 2400 XTM74RV6xx60070064DDR2, GDDR325610656059
~6.213%
1689n2
9962n2
2653
ATI Radeon HD 4270RS880MRV6xx59051210.1554976
~1.313%
230
1402
2220
ATI Radeon HD 4250RS880MRV6xx50051210.1554976
~4.117%
227n2
1372n5
8689n3
2117n6
ATI Radeon HD 4200RV620RV6xx50051210.1555209
~3.621%
330
236n2
1465
9370n3
2229n2
Intel Graphics Media Accelerator (GMA) HD GraphicsGMA HDGen. 5 Arrandale50010455087
~3.917%
297.5n20
1420n54
8301.5n22
1790n74
AMD Radeon HD 6250ZacateTerascale 228011404777
~1.542%
793
1091
188.5n6
172n5
422n7
1446.5n6
6589.5n6
1372n9
160
27
NVIDIA Quadro NVS 150M53070064GDDR2, GDDR325610655600
~8.213%
1561
14211.5n2
2515.5n2
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
NVIDIA Quadro FX 360MNB8M-GLM40060064GDDR325610806064
~8.713%
1490
15053.5n2
2985
ATI Mobility Radeon X1350M52470350128DDR1/DDR2/GDDR32569c906297
~9.68%
1088
12234
ATI Mobility Radeon X1400M54445250128DDR1/DDR2/GDDR32569c906539
~11.28%
1064n2
14404.5n2
NVIDIA GeForce 9100M GMCP77MH MCP79MH45010655672
~1.84%
1200
NVIDIA GeForce 8400M GSG86M40060064GDDR2 / GDDR325610806064
~7.213%
1343n5
12521.5n14
2128.5n6
NVIDIA Quadro NVS 135MG86M40060064GDDR3, GDDR225610806064
~88%
965
10100
ATI Mobility Radeon HD 2400M72RV6xx45050064DDR2, GDDR325610656059
~613%
1215
10205n4
2210n2
ATI Radeon HD 3200RS780MRV6xx50051210555672
~2.817%
81.5n2
891n7
6020n14
1511n13
ATI Radeon HD 4225RS880MRV6xx38051210.1554976
~3.117%
140.5n4
1053n8
6695n4
1665.5n8
ATI Radeon HD 4100RV6xx35051210.1555157
ATI Mobility Radeon HD 3400RV6xx04884
ATI Radeon HD 3100RS780MCRV6xx35051210555614
~1.74%
1164n3
NVIDIA GeForce 8400M GG86M40060064GDDR3 / GDDR225610806064
~4.413%
912
7560n5
1443
NVIDIA Quadro NVS 130MG86M70064GDDR3, GDDR225610806064
~1.64%
1115
NVIDIA GeForce 8200M GMCP77MV MCP79MVL40010805672
~6.18%
1250
7122n3
Intel Graphics Media Accelerator (GMA) 4700MHDMontevinaGen. 4.56400010655553
Intel Graphics Media Accelerator (GMA) 4500MHDMontevinaGen. 4.55330010655553
~1.525%
178
145
623n28
5089.5n52
0.82
773n68
Intel Graphics Media Accelerator (GMA) 4500MGL40Gen. 4.5400010655553
~2.313%
612.5n4
3882n7
687n13
NVIDIA GeForce Go 7400G72M45045064 / 32DDR31289c906526
~9.88%
801.5n4
12730.5n4
NVIDIA Quadro FX 350MG72M45035064DDR-3649c906468
~14%
680
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
NVIDIA Quadro NVS 120MG72M45070064DDR-32569c906406
~14%
660
NVIDIA GeForce Go 7300G72M35070064DDR-3649c906526
~8.78%
712.5n4
11300n3
NVIDIA Quadro NVS 110MG72M30060064DDR-3649c906406
~8.48%
600
11000
ATI Mobility Radeon X600M24400250128DDR/DDR225691307136
~7.58%
280
10155.5n2
ATI Mobility FireGL V3200M24GL400128DDR/DDR212891307136
~174%
11800
ATI Mobility FireGL V3100M22GL350200128DDR/DDR26491107136
ATI Mobility Radeon X2300M64480400128DDR1/DDR2/GDDR32569c906133
~4.913%
892n2
8354.5n2
1787
ATI Mobility Radeon HD 2300M71RV5xx480400128DDR1/DDR2/GDDR39c906133
~7.18%
834.5n2
9000
ATI Mobility Radeon 9700M11450275128 / 64DDR25691307136
~7.58%
424
10000
ATI Mobility FireGL T2eM11GL45026012825691307075
ATI Mobility Radeon X1300M52350250128DDR1/DDR2/GDDR32569c906539
~78%
725
9000
NVIDIA GeForce4 4200 GoNV28M200200128DDR1288.11507700
~13.74%
9500
ATI Mobility Radeon 9600M10300300128 / 64DDR12891307136
~12.24%
8490n2
ATI Mobility FireGL T2M10GL30020012825691307349
~12.84%
8894
ATI Mobility Radeon 9550M1221018364DDR12891307136
NVIDIA GeForce Go 7200G72M45035032DDR-3649c906314
~5.98%
674
7489
NVIDIA GeForce Go 6400NV44M140035064DDR329c1106526
~14.14%
9800
ATI Mobility Radeon X300M2235025064DDR/DDR291306764
~6.48%
200
8646.5n2
NVIDIA GeForce Go 6250NV44M140035064DDR329c1106526
NVIDIA GeForce Go 6200NV44MV30030064DDR329c1106526
~134%
9000
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
NVIDIA GeForce FX Go 5700NV36M450275128DDR3291307288
~15.94%
11000
NVIDIA Quadro FX Go 100012891307233
NVIDIA GeForce FX Go 5600 / 5650NV31M350300128DDR3291307594
~13.14%
9100
ATI Radeon Xpress X1270M690T4001289806161
~2.813%
327.5n2
5217n7
559n3
ATI Radeon Xpress X1250RS690M3501289806161
~3.713%
387.5n2
6930n5
880n3
ATI Radeon Xpress 12504009806316
~2.613%
445
4576n3
669
ATI Radeon Xpress X1200RS690M35001289806161
~38%
278n3
3824n2
Intel Graphics Media Accelerator (GMA) X3100CrestlineGen. 45000010906064
~2.313%
430.5n8
4117n31
665n25
Intel Graphics Media Accelerator (GMA) 3650Cedar TrailPowerVR SGX56409.1324427
~1.913%
422
3207
435n3
NVIDIA GeForce 7190Mshared Memory9c906526
NVIDIA GeForce 7150MC67425shared Memory9c906526
~3.58%
315n3
4501
ATI Radeon Xpress 1150RS482M40000shared Memory09b1106406
~3.68%
219
4712.5n4
NVIDIA GeForce Go 6150C51MV42500shared Memory09c1106526
~2.213%
200
4000n3
867
NVIDIA GeForce Go 6100C51MV42500shared Memory09c1106526
~3.88%
173n2
5100
NVIDIA GeForce 7000MC6735000shared Memory09c906526
~3.78%
274n2
4860n3
Intel Graphics Media Accelerator (GMA) 3600Cedar TrailPowerVR SGX54009.1324427
~213%
-1
280.5n2
3514
828n3
ATI Mobility Radeon 9200M9250200128DDR648.11507594
~11.14%
7670
ATI Mobility FireGL 9000M9GL250200128DDR648.11508018
~12.14%
8400
NVIDIA GeForce FX Go 5200NV31M300300128DDR3291507594
~9.84%
6800
ATI Mobility Radeon 9000M9240200128DDR1288.11507775
~84%
5565
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
NVIDIA GeForce 4 488 GoNV17M27527532DDR6471507959
~7.84%
5400
NVIDIA GeForce 4 460 GoNV17M25025032DDR6471507959
~7.94%
5500
NVIDIA GeForce 4 440 GoNV17M22022032DDR6471507959
~7.24%
5000
NVIDIA GeForce 4 420 GoNV17M19020032DDR6471507959
~6.24%
4300
Intel Graphics Media Accelerator (GMA) 3150PineviewGen. 42009c455087
~1.313%
144n35
2483.5n36
287.5n42
Intel Graphics Media Accelerator (GMA) 950GMA 950Gen. 32500009c1306863
~1.613%
107n3
3009n61
274n36
ATI Mobility Radeon 7500RV20028020064 / 128DDR6471508144
~5.54%
3818.5n2
ATI Mobility FireGL 780028020064 / 128DDR6471806651
Intel Graphics Media Accelerator (GMA) 900GMA 900Gen. 34000009c1306863
~213%
57n2
4000n3
149
ATI Radeon Xpress 200M3500009b1306874
~2.313%
202
4441n3
194
ATI Radeon Xpress 11003000shared Memory9b1106406
~38%
97n2
4127
SIS Mirage 3+ 672MXSISM672250906192
~1.18%
145n2
1395
SIS Mirage 3 671MX671MX2508.106406
~1.58%
68
2061n3
Intel Graphics Media Accelerator (GMA) 600GMA 600PowerVR SGX54009.0c454976
~0.813%
119
1562n2
107n3
Intel Graphics Media Accelerator (GMA) 500GMA 500PowerVR SGX520010.11305522
~0.513%
68
1016n11
29n13
NVIDIA GeForce 3 Go25032 / 64 / 128DDR6471507987
NVIDIA GeForce 2 Go (200 / 100)NV1116614332 / 64DDR6471808324
~3.64%
2500
ATI Mobility Radeon 9100 IGPRS3504008.107480
~3.94%
2680n2
ATI Mobility Radeon 9000 IGPRC350300008.107533
~10.74%
7450
ATI Mobility Radeon M7M723018364DDR3271808049
~54%
3500
PosModelCodename -
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
-
 
Perf. Rating3DMark Ice Storm GPU3DMark Cloud Gate Standard Score3DMark Cloud Gate GPU3DMark11 P3DMark11 P GPU3DMark Fire Strike Score3DMark Fire Strike Graphics3DMark Time Spy Score3DMark Time Spy Graphics3DMark Vantage P3DMark063DMark01GFXBenchGFXBench 3.0 1080p Manhattan OffscreenGFXBench 3.1 Manhattan ES 3.1 OffscreenBasemark GPU 1.2 Vulkan Medium Offscreen Basemark X 1.1 Medium QualityBasemark X 1.1 High QualityUnigine Heaven 3.0 DX 11, Normal Tessellation, High ShadersUnigine Valley 1.0 Extreme HD DirectXCinebench R15 OpenGL 64BitCinebench R10 32Bit OpenGLComputeMark v2.1 Normal, ScoreLuxMark v2.0 64Bit Sala GPUs-only
ATI Mobility Radeon M6M616616632DDR1671808049
~3.74%
2570
VIA Chrome9 HCVN896250onboard906133
~1.113%
115n3
2029.5n4
459n3
Intel Extreme Graphics 2MontaraGen. 2133081507317
~3.54%
0n2
2457n2
ATI Mobility Radeon 7000 IGPR1000707594
~2.34%
1625n2
ATI Radeon IGP 340M1800707741
~1.84%
1235
ATI Radeon IGP 320M1600707741
~2.24%
1537
VIA S3G UniChrome Pro IIZoetrope2000706284
~1.54%
1018
VIA S3G UniChrome ProZoetrope0707106
~2.94%
2018n3
VIA Castle RockCLE26607653
SIS Mirage 2 M760M7602008.107388
~2.24%
1514n2
SIS Mirage M661FX 133707472
~1.94%
1300
VIA S3 Graphics ProSavage812108383
~0.94%
600
ATI Mobility 128 M3M310510564DDR8608718
~0.64%
415
Silicon Motion SM50206192
unknown019706
~1.617%
74
62
35
35.64
-
(-) * Smaller values are better. / n123 Number of benchmarks for this median value / * Approximate position
- - -
-
-
Please share our article, every link counts!
-
-
-
-
Klaus Hinum, 2023-12-12 (Update: 2023-12-12)
-
-
-
-
-
-
- -
- - - \ No newline at end of file diff --git a/PCData/data/passmark/cpu.csv b/PCData/data/passmark/cpu.csv deleted file mode 100644 index 1a060be..0000000 --- a/PCData/data/passmark/cpu.csv +++ /dev/null @@ -1,4539 +0,0 @@ -id,name,passmark -4017,AArch64 rev 2 (aarch64),2320 -3916,AArch64 rev 4 (aarch64),1804 -3980,AC8257V/WAB,728 -5410,Allwinner A133,744 -5651,Allwinner A523,1940 -5591,Allwinner A527,2297 -5549,Allwinner H618,604 -4455,AMD 3015Ce,2094 -3774,AMD 3015e,2708 -3758,AMD 3020e,2458 -4309,AMD 4700S,18076 -2520,AMD A10 Micro-6700T APU,1426 -2271,AMD A10 PRO-7350B APU,1937 -2407,AMD A10 PRO-7800B APU,3370 -2416,AMD A10 PRO-7850B APU,3453 -10,AMD A10-4600M APU,1922 -11,AMD A10-4655M APU,1655 -1906,AMD A10-4657M APU,1759 -12,AMD A10-5700 APU,2704 -1962,AMD A10-5745M APU,1766 -1920,AMD A10-5750M APU,1997 -1992,AMD A10-5757M APU,1923 -1990,AMD A10-5800B APU,3021 -1446,AMD A10-5800K APU,2964 -1936,AMD A10-6700 APU,3115 -2254,AMD A10-6700T APU,2299 -2117,AMD A10-6790K APU,3082 -2155,AMD A10-6800B APU,3088 -1935,AMD A10-6800K APU,3209 -2287,AMD A10-7300 APU,1737 -2451,AMD A10-7400P,2078 -2146,AMD A10-7700K APU,3193 -2262,AMD A10-7800 APU,3191 -2133,AMD A10-7850K APU,3430 -2722,AMD A10-7860K,3286 -2531,AMD A10-7870K,3420 -2744,AMD A10-7890K,3542 -2542,AMD A10-8700P,2217 -2603,AMD A10-8750,3172 -2776,AMD A10-8850,3438 -2793,AMD A10-9600P,2329 -3060,AMD A10-9620P,2580 -2857,AMD A10-9630P,2929 -2900,AMD A10-9700,3534 -3133,AMD A10-9700E,3171 -2848,AMD A12-9700P,2440 -3043,AMD A12-9720P,2646 -3040,AMD A12-9730P,3216 -2861,AMD A12-9800,3567 -3083,AMD A12-9800E,3471 -2413,AMD A4 Micro-6400T APU,1004 -2653,AMD A4 PRO-3340B,1645 -2439,AMD A4 PRO-7300B APU,1477 -2450,AMD A4 PRO-7350B,1544 -2049,AMD A4-1200 APU,369 -1970,AMD A4-1250 APU,411 -13,AMD A4-3300 APU,967 -14,AMD A4-3300M APU,711 -15,AMD A4-3305M APU,729 -16,AMD A4-3310MX APU,782 -17,AMD A4-3320M APU,668 -1871,AMD A4-3330MX APU,752 -18,AMD A4-3400 APU,1078 -19,AMD A4-3420 APU,1054 -1913,AMD A4-4000 APU,1172 -2305,AMD A4-4020 APU,1268 -1813,AMD A4-4300M APU,1000 -1820,AMD A4-4355M APU,806 -2005,AMD A4-5000 APU,1303 -3009,AMD A4-5050 APU,1328 -2547,AMD A4-5100 APU,1346 -1974,AMD A4-5150M APU,765 -1447,AMD A4-5300 APU,1367 -1810,AMD A4-5300B APU,1248 -2307,AMD A4-6210 APU,1494 -2454,AMD A4-6250J APU,1656 -2083,AMD A4-6300 APU,1432 -2112,AMD A4-6300B APU,1328 -2212,AMD A4-6320 APU,1530 -2549,AMD A4-7210 APU,1660 -2357,AMD A4-7300 APU,1528 -3093,AMD A4-9120,1223 -3531,AMD A4-9120C,825 -3464,AMD A4-9120e,835 -3362,AMD A4-9125,1211 -2698,AMD A6 Micro-6500T APU,1146 -2353,AMD A6 PRO-7050B APU,1009 -2436,AMD A6 PRO-7400B,1654 -1908,AMD A6-1450 APU,1045 -20,AMD A6-3400M APU,1186 -21,AMD A6-3410MX APU,1263 -22,AMD A6-3420M APU,1291 -23,AMD A6-3430MX APU,1448 -24,AMD A6-3500 APU,1395 -25,AMD A6-3600 APU,1645 -26,AMD A6-3620 APU,1844 -27,AMD A6-3650 APU,2049 -28,AMD A6-3670 APU,2165 -29,AMD A6-4400M APU,1006 -30,AMD A6-4455M APU,792 -1975,AMD A6-5200 APU,1666 -2198,AMD A6-5345M APU,1122 -1987,AMD A6-5350M APU,1176 -2048,AMD A6-5357M APU,1165 -2085,AMD A6-5400B APU,1457 -1494,AMD A6-5400K APU,1264 -2290,AMD A6-6310 APU,1661 -2157,AMD A6-6400B APU,1616 -1960,AMD A6-6400K APU,1469 -2433,AMD A6-6420B APU,1550 -2372,AMD A6-6420K APU,1576 -2488,AMD A6-7000,1010 -2535,AMD A6-7310 APU,1719 -2392,AMD A6-7400K APU,1616 -2771,AMD A6-7470K,1799 -3436,AMD A6-7480,1843 -2781,AMD A6-8500P,1445 -2657,AMD A6-8550,1604 -3221,AMD A6-9200,1117 -2825,AMD A6-9210,1238 -3072,AMD A6-9220,1265 -3455,AMD A6-9220C,1053 -3198,AMD A6-9220e,1000 -3315,AMD A6-9225,1323 -3063,AMD A6-9230,1303 -3609,AMD A6-9400,2717 -2903,AMD A6-9500,1872 -3330,AMD A6-9500E,1756 -2289,AMD A8 PRO-7150B APU,1531 -2352,AMD A8 PRO-7600B APU,2935 -31,AMD A8-3500M APU,1412 -32,AMD A8-3510MX APU,1605 -33,AMD A8-3520M APU,1448 -34,AMD A8-3530MX APU,1572 -35,AMD A8-3550MX APU,1579 -36,AMD A8-3800 APU,2005 -37,AMD A8-3820 APU,2170 -38,AMD A8-3850 APU,2365 -39,AMD A8-3870K APU,2302 -40,AMD A8-4500M APU,1675 -1448,AMD A8-4555M APU,1302 -41,AMD A8-5500 APU,2590 -1868,AMD A8-5500B APU,2643 -1971,AMD A8-5545M APU,1575 -1976,AMD A8-5550M APU,1859 -1986,AMD A8-5557M APU,1801 -1449,AMD A8-5600K APU,2821 -2266,AMD A8-6410 APU,1764 -1998,AMD A8-6500 APU,2811 -2210,AMD A8-6500B APU,2855 -2179,AMD A8-6500T APU,1929 -1946,AMD A8-6600K APU,3011 -2688,AMD A8-7050,1170 -2318,AMD A8-7100 APU,1641 -2550,AMD A8-7200P,2154 -2537,AMD A8-7410 APU,1814 -2817,AMD A8-7500,3640 -2311,AMD A8-7600 APU,3227 -2489,AMD A8-7650K,3101 -2595,AMD A8-7670K,3182 -3384,AMD A8-7680,3518 -5490,AMD A8-7690K,2157 -2580,AMD A8-8600P,2240 -2649,AMD A8-8650,2996 -3004,AMD A8-9600,3304 -2901,AMD A9-9400,1346 -2841,AMD A9-9410,1526 -3059,AMD A9-9420,1504 -3226,AMD A9-9420e,1124 -3278,AMD A9-9425,1508 -3143,AMD A9-9430,1658 -4265,AMD A9-9820,3870 -1496,AMD Athlon 1500+,191 -183,AMD Athlon 1640B,412 -3325,AMD Athlon 200GE,4111 -3416,AMD Athlon 220GE,4429 -3394,AMD Athlon 240GE,4534 -184,AMD Athlon 2650e,274 -53,AMD Athlon 2800+,291 -185,AMD Athlon 2850e,333 -3614,AMD Athlon 3000G,4485 -3629,AMD Athlon 300GE,4277 -3503,AMD Athlon 300U,3942 -4521,AMD Athlon 320GE,4388 -55,AMD Athlon 5000 Dual-Core,872 -2208,AMD Athlon 5150 APU,1388 -56,AMD Athlon 5200 Dual-Core,869 -2195,AMD Athlon 5350 APU,1777 -2763,AMD Athlon 5370 APU,1867 -2096,AMD Athlon 64 2000+,154 -2097,AMD Athlon 64 2600+,243 -65,AMD Athlon 64 2800+,295 -66,AMD Athlon 64 3000+,334 -2481,AMD Athlon 64 3100+,484 -67,AMD Athlon 64 3200+,305 -68,AMD Athlon 64 3300+,375 -69,AMD Athlon 64 3400+,317 -70,AMD Athlon 64 3500+,396 -71,AMD Athlon 64 3700+,394 -72,AMD Athlon 64 3800+,292 -73,AMD Athlon 64 4000+,340 -59,AMD Athlon 64 FX-55,404 -60,AMD Athlon 64 FX-57,517 -1902,AMD Athlon 64 FX-59,465 -61,AMD Athlon 64 FX-60 Dual Core,709 -62,AMD Athlon 64 FX-62 Dual Core,993 -64,AMD Athlon 64 FX-74,972 -1511,AMD Athlon 64 X2 3800+,566 -75,AMD Athlon 64 X2 Dual Core 3400+,531 -76,AMD Athlon 64 X2 Dual Core 3600+,610 -77,AMD Athlon 64 X2 Dual Core 3800+,636 -78,AMD Athlon 64 X2 Dual Core 4000+,662 -79,AMD Athlon 64 X2 Dual Core 4200+,689 -80,AMD Athlon 64 X2 Dual Core 4400+,678 -81,AMD Athlon 64 X2 Dual Core 4600+,720 -82,AMD Athlon 64 X2 Dual Core 4800+,679 -83,AMD Athlon 64 X2 Dual Core 5000+,775 -84,AMD Athlon 64 X2 Dual Core 5200+,839 -85,AMD Athlon 64 X2 Dual Core 5400+,907 -86,AMD Athlon 64 X2 Dual Core 5600+,912 -87,AMD Athlon 64 X2 Dual Core 5800+,797 -88,AMD Athlon 64 X2 Dual Core 6000+,940 -89,AMD Athlon 64 X2 Dual Core 6400+,998 -90,AMD Athlon 64 X2 Dual Core BE-2300,594 -91,AMD Athlon 64 X2 Dual Core BE-2350,573 -93,AMD Athlon 64 X2 Dual-Core TK-42,577 -94,AMD Athlon 64 X2 Dual-Core TK-53,558 -95,AMD Athlon 64 X2 Dual-Core TK-55,518 -96,AMD Athlon 64 X2 Dual-Core TK-57,620 -43,AMD Athlon 64 X2 QL-60,547 -44,AMD Athlon 64 X2 QL-62,525 -45,AMD Athlon 64 X2 QL-64,617 -46,AMD Athlon 64 X2 QL-65,622 -240,AMD Athlon 64 X2 QL-66,641 -210,AMD Athlon 64 X2 QL-67,582 -98,AMD Athlon 7450 Dual-Core,789 -99,AMD Athlon 7550 Dual-Core,900 -100,AMD Athlon 7750 Dual-Core,968 -101,AMD Athlon 7850 Dual-Core,1058 -102,AMD Athlon Dual Core 4050e,674 -103,AMD Athlon Dual Core 4450B,719 -104,AMD Athlon Dual Core 4450e,705 -105,AMD Athlon Dual Core 4850B,727 -106,AMD Athlon Dual Core 4850e,783 -107,AMD Athlon Dual Core 5000B,856 -108,AMD Athlon Dual Core 5050e,809 -109,AMD Athlon Dual Core 5200B,823 -110,AMD Athlon Dual Core 5400B,914 -111,AMD Athlon Dual Core 5600B,737 -4924,AMD Athlon Gold 3150C,3292 -4704,AMD Athlon Gold 3150G,7112 -3777,AMD Athlon Gold 3150U,4015 -5316,AMD Athlon Gold 7220U,4748 -3800,AMD Athlon Gold PRO 3150G,7702 -3803,AMD Athlon Gold PRO 3150GE,7006 -4969,AMD Athlon Gold PRO 4150GE,8259 -112,AMD Athlon II 160u,358 -113,AMD Athlon II 170u,340 -114,AMD Athlon II Dual-Core M300,670 -115,AMD Athlon II Dual-Core M320,726 -116,AMD Athlon II Dual-Core M340,807 -117,AMD Athlon II N330 Dual-Core,665 -118,AMD Athlon II N350 Dual-Core,767 -119,AMD Athlon II N370 Dual-Core,899 -120,AMD Athlon II Neo K125,302 -121,AMD Athlon II Neo K145,298 -122,AMD Athlon II Neo K325 Dual-Core,417 -123,AMD Athlon II Neo K345 Dual-Core,527 -124,AMD Athlon II Neo N36L Dual-Core,487 -125,AMD Athlon II P320 Dual-Core,694 -126,AMD Athlon II P340 Dual-Core,691 -127,AMD Athlon II P360 Dual-Core,734 -1450,AMD Athlon II X2 210e,1105 -128,AMD Athlon II X2 215,957 -129,AMD Athlon II X2 220,1016 -131,AMD Athlon II X2 235e,1095 -132,AMD Athlon II X2 240,1032 -133,AMD Athlon II X2 240e,1002 -134,AMD Athlon II X2 245,1093 -135,AMD Athlon II X2 245e,1171 -136,AMD Athlon II X2 250,1132 -137,AMD Athlon II X2 250e,1155 -138,AMD Athlon II X2 250u,597 -139,AMD Athlon II X2 255,1170 -140,AMD Athlon II X2 260,1141 -141,AMD Athlon II X2 260u,713 -142,AMD Athlon II X2 265,1265 -143,AMD Athlon II X2 270,1277 -144,AMD Athlon II X2 270u,675 -1887,AMD Athlon II X2 280,1355 -145,AMD Athlon II X2 4300e,990 -146,AMD Athlon II X2 4400e,978 -147,AMD Athlon II X2 4450e,867 -148,AMD Athlon II X2 B22,1053 -149,AMD Athlon II X2 B24,1120 -150,AMD Athlon II X2 B26,1193 -151,AMD Athlon II X2 B28,1274 -152,AMD Athlon II X3 400e,1320 -153,AMD Athlon II X3 405e,1331 -154,AMD Athlon II X3 415e,1441 -1517,AMD Athlon II X3 420e,1557 -155,AMD Athlon II X3 425,1570 -156,AMD Athlon II X3 435,1687 -157,AMD Athlon II X3 440,1712 -158,AMD Athlon II X3 445,1816 -159,AMD Athlon II X3 450,1813 -160,AMD Athlon II X3 455,1848 -161,AMD Athlon II X3 460,1985 -1518,AMD Athlon II X4 553,2418 -1519,AMD Athlon II X4 555,2498 -4447,AMD Athlon II X4 557,2567 -2024,AMD Athlon II X4 559,2602 -162,AMD Athlon II X4 600e,1711 -163,AMD Athlon II X4 605e,1973 -164,AMD Athlon II X4 610e,1882 -165,AMD Athlon II X4 615e,2000 -166,AMD Athlon II X4 620,1995 -168,AMD Athlon II X4 630,2137 -169,AMD Athlon II X4 631 Quad-Core,2150 -170,AMD Athlon II X4 635,2189 -2508,AMD Athlon II X4 638 Quad-Core,2250 -171,AMD Athlon II X4 640,2228 -173,AMD Athlon II X4 641 Quad-Core,2313 -174,AMD Athlon II X4 645,2321 -175,AMD Athlon II X4 650,2409 -176,AMD Athlon II X4 651 Quad-Core,2494 -2127,AMD Athlon II X4 655,2078 -186,AMD Athlon L110,197 -187,AMD Athlon LE-1600,412 -188,AMD Athlon LE-1620,421 -189,AMD Athlon LE-1640,430 -190,AMD Athlon LE-1660,416 -179,AMD Athlon Neo MV-40,270 -180,AMD Athlon Neo X2 Dual Core 6850e,456 -181,AMD Athlon Neo X2 Dual Core L325,556 -182,AMD Athlon Neo X2 Dual Core L335,529 -3269,AMD Athlon PRO 200GE,3926 -3571,AMD Athlon PRO 300GE,4398 -5245,AMD Athlon PRO 300U,4080 -5200,AMD Athlon PRO 3045B,2618 -4933,AMD Athlon Silver 3050C,2879 -3876,AMD Athlon Silver 3050e,3043 -4093,AMD Athlon Silver 3050GE,4545 -3720,AMD Athlon Silver 3050U,3000 -5529,AMD Athlon Silver 7120U,3013 -3801,AMD Athlon Silver PRO 3125GE,4633 -191,AMD Athlon TF-20,265 -192,AMD Athlon TF-36,338 -195,AMD Athlon X2 215,996 -196,AMD Athlon X2 240,921 -1526,AMD Athlon X2 240e,1015 -198,AMD Athlon X2 250,855 -1527,AMD Athlon X2 255,938 -2177,AMD Athlon X2 280,1327 -1994,AMD Athlon X2 340 Dual Core,1301 -2076,AMD Athlon X2 370K Dual Core,1504 -4948,AMD Athlon X2 450,1295 -200,AMD Athlon X2 Dual Core 3250e,357 -1529,AMD Athlon X2 Dual Core 6850e,564 -201,AMD Athlon X2 Dual Core BE-2300,570 -202,AMD Athlon X2 Dual Core BE-2350,591 -203,AMD Athlon X2 Dual Core BE-2400,674 -204,AMD Athlon X2 Dual Core L310,309 -1531,AMD Athlon X3 425,1516 -211,AMD Athlon X3 435,1781 -1532,AMD Athlon X3 440,1438 -1533,AMD Athlon X3 445,1626 -1453,AMD Athlon X3 455,1783 -4200,AMD Athlon X4 530,1786 -212,AMD Athlon X4 620,1810 -215,AMD Athlon X4 640,2115 -4748,AMD Athlon X4 730,2278 -1789,AMD Athlon X4 740 Quad Core,2642 -2500,AMD Athlon X4 750 Quad Core,2625 -1801,AMD Athlon X4 750K Quad Core,2842 -1997,AMD Athlon X4 760K Quad Core,2948 -3190,AMD Athlon X4 830,2901 -2463,AMD Athlon X4 840,3315 -2721,AMD Athlon X4 845,3806 -5331,AMD Athlon X4 850,3366 -2362,AMD Athlon X4 860K,3406 -2724,AMD Athlon X4 870K,3399 -2747,AMD Athlon X4 880K,3652 -3078,AMD Athlon X4 950,3580 -5714,AMD Athlon X4 970,3850 -218,AMD Athlon XP 1500+,167 -219,AMD Athlon XP 1600+,174 -49,AMD Athlon XP 1700+,176 -221,AMD Athlon XP 1800+,195 -222,AMD Athlon XP 1900+,203 -223,AMD Athlon XP 2000+,195 -224,AMD Athlon XP 2100+,210 -225,AMD Athlon XP 2200+,214 -226,AMD Athlon XP 2400+,234 -227,AMD Athlon XP 2500+,231 -228,AMD Athlon XP 2600+,242 -229,AMD Athlon XP 2700+,256 -230,AMD Athlon XP 2800+,260 -1539,AMD Athlon XP 2900+,276 -231,AMD Athlon XP 3000+,262 -232,AMD Athlon XP 3100+,282 -233,AMD Athlon XP 3200+,281 -234,AMD Athlon XP1600+,183 -1549,AMD Athlon XP2400+,243 -1551,AMD Athlon64 X2 Dual Core 4600+,803 -241,AMD C-30,178 -242,AMD C-50,265 -243,AMD C-60,290 -244,AMD C-60 APU,312 -1817,AMD C-70 APU,315 -247,AMD E-240,195 -248,AMD E-300 APU,338 -249,AMD E-350,420 -1777,AMD E-350 APU,423 -1869,AMD E-350D APU,486 -250,AMD E-450 APU,433 -2379,AMD E1 Micro-6200T APU,600 -1427,AMD E1-1200 APU,378 -1885,AMD E1-1500 APU,402 -1968,AMD E1-2100 APU,404 -2391,AMD E1-2200 APU,474 -2019,AMD E1-2500 APU,594 -2308,AMD E1-6010 APU,534 -2552,AMD E1-6015 APU,585 -2736,AMD E1-6050J APU,1385 -2820,AMD E1-7010 APU,594 -251,AMD E2-1800 APU,444 -1867,AMD E2-2000 APU,492 -2159,AMD E2-3000 APU,726 -252,AMD E2-3000M APU,668 -253,AMD E2-3200 APU,953 -2160,AMD E2-3800 APU,1132 -2373,AMD E2-6110 APU,1088 -3868,AMD E2-7015,572 -3669,AMD E2-7015 APU,662 -2628,AMD E2-7110 APU,1511 -3018,AMD E2-9000,945 -3048,AMD E2-9000e,887 -2915,AMD E2-9010,991 -3390,AMD E2-9030,983 -3076,AMD Embedded G-Series GX-215JJ Radeon R2E,1057 -3125,AMD Embedded G-Series GX-224IJ Radeon R4E,1271 -3077,AMD Embedded G-Series GX-420GI Radeon R7E,1570 -3022,AMD Embedded R-Series RX-216GD,1628 -3218,AMD Embedded R-Series RX-418GD Radeon R6,3426 -2655,AMD Embedded R-Series RX-421BD,3302 -4894,AMD Embedded R-Series RX-421ND,3575 -4653,AMD EPYC 3101 4-Core,6050 -5233,AMD EPYC 3151,8329 -3480,AMD EPYC 3201,8545 -3583,AMD EPYC 3251,13912 -5369,AMD EPYC 3451,19532 -3718,AMD EPYC 7232P,17017 -3196,AMD EPYC 7251,14935 -4366,AMD EPYC 7252,19411 -3636,AMD EPYC 7262,20795 -3731,AMD EPYC 7272,25568 -3130,AMD EPYC 7281,21981 -3625,AMD EPYC 7282,29496 -4641,AMD EPYC 72F3,27252 -3427,AMD EPYC 7301,14991 -3650,AMD EPYC 7302,33002 -3610,AMD EPYC 7302P,32612 -4443,AMD EPYC 7313,40075 -4407,AMD EPYC 7313P,42032 -4388,AMD EPYC 7343,44189 -3411,AMD EPYC 7351,23566 -3124,AMD EPYC 7351P,25706 -4500,AMD EPYC 7352,40096 -3387,AMD EPYC 7371,31094 -4403,AMD EPYC 73F3,46085 -3118,AMD EPYC 7401P,28591 -3713,AMD EPYC 7402,47554 -3591,AMD EPYC 7402P,42899 -4346,AMD EPYC 7413,50223 -4708,AMD EPYC 7443,55525 -4391,AMD EPYC 7443P,57325 -3164,AMD EPYC 7451,20471 -3600,AMD EPYC 7452,47746 -4663,AMD EPYC 7453,50575 -5013,AMD EPYC 7473X,59280 -4560,AMD EPYC 74F3,60666 -3153,AMD EPYC 7501,24925 -3880,AMD EPYC 7502,45839 -3538,AMD EPYC 7502P,50193 -4383,AMD EPYC 7513,59988 -4482,AMD EPYC 7532,53162 -3604,AMD EPYC 7542,49437 -4404,AMD EPYC 7543,60132 -4508,AMD EPYC 7543P,66608 -3089,AMD EPYC 7551,21600 -3215,AMD EPYC 7551P,39018 -3822,AMD EPYC 7552,51104 -3543,AMD EPYC 7571,27445 -4959,AMD EPYC 7573X,70868 -4416,AMD EPYC 75F3,68505 -3142,AMD EPYC 7601,34079 -4336,AMD EPYC 7642,58177 -4205,AMD EPYC 7643,76455 -4251,AMD EPYC 7662,73321 -3719,AMD EPYC 7702,69872 -3555,AMD EPYC 7702P,62670 -4206,AMD EPYC 7713,83473 -4714,AMD EPYC 7713P,80373 -3547,AMD EPYC 7742,69183 -4207,AMD EPYC 7763,86143 -4884,AMD EPYC 7773X,91491 -4398,AMD EPYC 7B12,65658 -4535,AMD EPYC 7B13,77460 -5042,AMD EPYC 7D12,42762 -3852,AMD EPYC 7F32,23453 -3753,AMD EPYC 7F52,40957 -3618,AMD EPYC 7H12,69633 -4300,AMD EPYC 7J13,85683 -4859,AMD EPYC 7K62,49104 -5254,AMD EPYC 7R12,48934 -3894,AMD EPYC 7R32,64727 -4828,AMD EPYC 7T83,81757 -4365,AMD EPYC 7V13,82878 -5451,AMD EPYC 9124,43698 -5381,AMD EPYC 9174F,55485 -5500,AMD EPYC 9254,70006 -5513,AMD EPYC 9274F,73463 -5519,AMD EPYC 9334,65279 -5173,AMD EPYC 9354P,78796 -5596,AMD EPYC 9454P,96088 -5297,AMD EPYC 9474F,104894 -5557,AMD EPYC 9534,88716 -5599,AMD EPYC 9554P,109858 -5088,AMD EPYC 9654,126045 -5575,AMD EPYC 9654P,113949 -5752,AMD EPYC 9754,81404 -4908,AMD EPYC Embedded 7292P,30542 -2849,AMD FirePro A320 APU,2153 -255,AMD FX-4100 Quad-Core,2592 -1807,AMD FX-4130 Quad-Core,2663 -2108,AMD FX-4150 Quad-Core,3327 -256,AMD FX-4170 Quad-Core,3023 -2118,AMD FX-4200 Quad-Core,3109 -1814,AMD FX-4300 Quad-Core,2987 -2687,AMD FX-4320,3072 -2665,AMD FX-4330,3098 -1929,AMD FX-4350 Quad-Core,3290 -257,AMD FX-6100 Six-Core,3673 -258,AMD FX-6120 Six-Core,3887 -1886,AMD FX-6130 Six-Core,4353 -259,AMD FX-6200 Six-Core,4096 -1781,AMD FX-6300 Six-Core,4201 -2896,AMD FX-6330 Six-Core,4418 -1910,AMD FX-6350 Six-Core,4537 -2199,AMD FX-670K Quad-Core,2980 -2375,AMD FX-7500 APU,1920 -2475,AMD FX-7600P,2611 -2402,AMD FX-7600P APU,2856 -2438,AMD FX-770K Quad-Core,2915 -260,AMD FX-8100 Eight-Core,3930 -261,AMD FX-8120 Eight-Core,4639 -262,AMD FX-8140 Eight-Core,4860 -263,AMD FX-8150 Eight-Core,5247 -1825,AMD FX-8300 Eight-Core,5298 -2393,AMD FX-8310 Eight-Core,5128 -1782,AMD FX-8320 Eight-Core,5435 -2374,AMD FX-8320E Eight-Core,5087 -1780,AMD FX-8350 Eight-Core,6047 -2347,AMD FX-8370 Eight-Core,6207 -2367,AMD FX-8370E Eight-Core,5303 -2858,AMD FX-870K Quad Core,3183 -2567,AMD FX-8800P,2844 -1989,AMD FX-9370 Eight-Core,6114 -2014,AMD FX-9590 Eight-Core,6761 -2823,AMD FX-9800P,2554 -2911,AMD FX-9830P,3311 -1843,AMD FX-B4150 Quad-Core,3369 -264,AMD G-T40E,289 -265,AMD G-T40N,299 -3328,AMD G-T40R,120 -266,AMD G-T44R,130 -1999,AMD G-T48E,429 -267,AMD G-T52R,177 -1965,AMD G-T56E,442 -268,AMD G-T56N,484 -2859,AMD Geode NX 2400+,400 -2536,AMD GX-210JA SOC,248 -2288,AMD GX-212JC SOC,634 -2138,AMD GX-217GA SOC,784 -2976,AMD GX-218GL SOC,754 -2837,AMD GX-222GC SOC,1044 -2473,AMD GX-412HC,1090 -5050,AMD GX-412TC SOC,638 -2081,AMD GX-415GA SOC,1405 -5146,AMD GX-416RA SOC,1604 -2121,AMD GX-420CA SOC,1794 -3760,AMD GX-420MC SOC,1796 -2291,AMD GX-424CC SOC,1777 -526,AMD Opteron 1212,593 -527,AMD Opteron 1212 HE,771 -528,AMD Opteron 1214,696 -2644,AMD Opteron 1214 HE,806 -529,AMD Opteron 1216,781 -530,AMD Opteron 1216 HE,727 -531,AMD Opteron 1218,910 -532,AMD Opteron 1218 HE,979 -533,AMD Opteron 1220,1036 -534,AMD Opteron 1222,1089 -1403,AMD Opteron 1352,1547 -1404,AMD Opteron 1354,1449 -1405,AMD Opteron 1356,1703 -1406,AMD Opteron 1381,1797 -2315,AMD Opteron 1385,1898 -2149,AMD Opteron 1389,2079 -1562,AMD Opteron 144,316 -270,AMD Opteron 146,346 -271,AMD Opteron 148,392 -1563,AMD Opteron 150,393 -272,AMD Opteron 152,428 -273,AMD Opteron 154,457 -516,AMD Opteron 165,531 -517,AMD Opteron 170,648 -518,AMD Opteron 175,682 -519,AMD Opteron 180,746 -520,AMD Opteron 185,695 -537,AMD Opteron 2218,1036 -1616,AMD Opteron 2220,1106 -1460,AMD Opteron 2220 SE,909 -1911,AMD Opteron 2222,1198 -2031,AMD Opteron 2354,1509 -1746,AMD Opteron 2356,1733 -3187,AMD Opteron 2373 EE,1744 -1407,AMD Opteron 2378,1864 -1750,AMD Opteron 2384,2074 -1894,AMD Opteron 2393 SE,1317 -2322,AMD Opteron 2419 EE,1902 -1408,AMD Opteron 2427,1995 -1753,AMD Opteron 2431,2936 -1875,AMD Opteron 2435,3061 -1806,AMD Opteron 254,451 -1436,AMD Opteron 270,736 -521,AMD Opteron 275,839 -522,AMD Opteron 280,765 -523,AMD Opteron 285,956 -524,AMD Opteron 290,952 -3445,AMD Opteron 3250 HE,2061 -1795,AMD Opteron 3260 HE,2283 -276,AMD Opteron 3280,3723 -2791,AMD Opteron 3320 EE,1918 -1931,AMD Opteron 3350 HE,2825 -2426,AMD Opteron 3365,4091 -1892,AMD Opteron 3380,4134 -2782,AMD Opteron 4130,2347 -2477,AMD Opteron 4162 EE,2058 -1565,AMD Opteron 4170 HE,2382 -5511,AMD Opteron 4174 HE,2986 -278,AMD Opteron 4184,2872 -1882,AMD Opteron 4226,3400 -279,AMD Opteron 4274 HE,5776 -2148,AMD Opteron 4280,4504 -1862,AMD Opteron 4284,4665 -2593,AMD Opteron 4332 HE,3906 -2733,AMD Opteron 4334,3949 -2991,AMD Opteron 4365 EE,3485 -2264,AMD Opteron 4386,4378 -280,AMD Opteron 6128,2826 -2525,AMD Opteron 6128 HE,2932 -1941,AMD Opteron 6136,3381 -1948,AMD Opteron 6164 HE,3478 -282,AMD Opteron 6172,2615 -1916,AMD Opteron 6174,3697 -1568,AMD Opteron 6176 SE,3564 -1905,AMD Opteron 6212,4007 -1980,AMD Opteron 6220,4753 -283,AMD Opteron 6234,4072 -2445,AMD Opteron 6238,5625 -1569,AMD Opteron 6272,5240 -284,AMD Opteron 6274,5643 -1880,AMD Opteron 6276,6245 -3419,AMD Opteron 6281,7279 -1846,AMD Opteron 6282 SE,6385 -2469,AMD Opteron 6287 SE,6925 -1982,AMD Opteron 6328,5306 -1978,AMD Opteron 6344,6069 -1903,AMD Opteron 6348,7850 -2204,AMD Opteron 6366 HE,5613 -2000,AMD Opteron 6376,5572 -2482,AMD Opteron 6378,5889 -2498,AMD Opteron 6380,6738 -2294,AMD Opteron 6386 SE,8291 -1851,AMD Opteron 8439 SE,2479 -3321,AMD Opteron X2170 APU,1911 -3069,AMD Opteron X3216 APU,1475 -3422,AMD Opteron X3418 APU,3043 -3026,AMD Opteron X3421 APU,3375 -285,AMD Phenom 8250 Triple-Core,1114 -286,AMD Phenom 8250e Triple-Core,1084 -287,AMD Phenom 8400 Triple-Core,1164 -288,AMD Phenom 8450 Triple-Core,1216 -289,AMD Phenom 8450e Triple-Core,1225 -291,AMD Phenom 8600 Triple-Core,1210 -292,AMD Phenom 8600B Triple-Core,1461 -293,AMD Phenom 8650 Triple-Core,1237 -294,AMD Phenom 8750 Triple-Core,1427 -295,AMD Phenom 8750B Triple-Core,1188 -1572,AMD Phenom 8850 Triple-Core,1142 -296,AMD Phenom 8850B Triple-Core,1281 -297,AMD Phenom 9100e Quad-Core,1279 -298,AMD Phenom 9150e Quad-Core,1414 -299,AMD Phenom 9350e Quad-Core,1501 -300,AMD Phenom 9450e Quad-Core,1455 -301,AMD Phenom 9500 Quad-Core,1549 -302,AMD Phenom 9550 Quad-Core,1656 -303,AMD Phenom 9600 Quad-Core,1566 -304,AMD Phenom 9600B Quad-Core,1822 -305,AMD Phenom 9650 Quad-Core,1713 -306,AMD Phenom 9750 Quad-Core,1844 -1573,AMD Phenom 9750B Quad-Core,1520 -307,AMD Phenom 9850 Quad-Core,1710 -1574,AMD Phenom 9850B Quad-Core,1946 -308,AMD Phenom 9950 Quad-Core,1884 -309,AMD Phenom FX-5000 Quad-Core,1599 -310,AMD Phenom FX-5200 Quad-Core,1699 -313,AMD Phenom II N620 Dual-Core,1014 -314,AMD Phenom II N640 Dual-Core,965 -315,AMD Phenom II N660 Dual-Core,1063 -2320,AMD Phenom II N830 3+1,1768 -316,AMD Phenom II N830 Triple-Core,1233 -317,AMD Phenom II N850 Triple-Core,1166 -318,AMD Phenom II N870 Triple-Core,1281 -319,AMD Phenom II N930 Quad-Core,1584 -320,AMD Phenom II N950 Quad-Core,1558 -321,AMD Phenom II N970 Quad-Core,1662 -322,AMD Phenom II P650 Dual-Core,933 -323,AMD Phenom II P820 Triple-Core,1068 -324,AMD Phenom II P840 Triple-Core,1116 -325,AMD Phenom II P860 Triple-Core,1225 -326,AMD Phenom II P920 Quad-Core,1006 -327,AMD Phenom II P940 Quad-Core,1319 -328,AMD Phenom II P960 Quad-Core,1386 -329,AMD Phenom II X2 511,1265 -330,AMD Phenom II X2 521,1374 -331,AMD Phenom II X2 545,1218 -332,AMD Phenom II X2 550,1158 -333,AMD Phenom II X2 555,1318 -334,AMD Phenom II X2 560,1375 -335,AMD Phenom II X2 565,1442 -2675,AMD Phenom II X2 570,1360 -336,AMD Phenom II X2 B53,1137 -337,AMD Phenom II X2 B55,1183 -1575,AMD Phenom II X2 B57,1099 -338,AMD Phenom II X2 B59,1431 -339,AMD Phenom II X3 700e,1451 -340,AMD Phenom II X3 705e,1222 -341,AMD Phenom II X3 710,1551 -343,AMD Phenom II X3 720,1554 -344,AMD Phenom II X3 740,1424 -345,AMD Phenom II X3 B73,1538 -346,AMD Phenom II X3 B75,1619 -347,AMD Phenom II X3 B77,1844 -353,AMD Phenom II X4 805,1931 -354,AMD Phenom II X4 810,1937 -355,AMD Phenom II X4 820,2065 -356,AMD Phenom II X4 830,2134 -357,AMD Phenom II X4 840,2385 -358,AMD Phenom II X4 840T,2305 -359,AMD Phenom II X4 850,2361 -361,AMD Phenom II X4 900e,1505 -362,AMD Phenom II X4 905e,2004 -363,AMD Phenom II X4 910,1776 -364,AMD Phenom II X4 910e,2108 -365,AMD Phenom II X4 920,2209 -366,AMD Phenom II X4 925,2243 -367,AMD Phenom II X4 940,2311 -7,AMD Phenom II X4 945,2368 -368,AMD Phenom II X4 955,2492 -369,AMD Phenom II X4 960T,2334 -370,AMD Phenom II X4 965,2608 -371,AMD Phenom II X4 970,2715 -372,AMD Phenom II X4 973,2204 -373,AMD Phenom II X4 975,2486 -1808,AMD Phenom II X4 977,2377 -374,AMD Phenom II X4 980,2839 -1456,AMD Phenom II X4 B05e,1906 -375,AMD Phenom II X4 B15e,1825 -376,AMD Phenom II X4 B25,2108 -377,AMD Phenom II X4 B35,2341 -378,AMD Phenom II X4 B40,2238 -379,AMD Phenom II X4 B45,2258 -380,AMD Phenom II X4 B50,2369 -381,AMD Phenom II X4 B55,2483 -382,AMD Phenom II X4 B60,2546 -383,AMD Phenom II X4 B65,2690 -2803,AMD Phenom II X4 B70,2303 -384,AMD Phenom II X4 B93,2159 -385,AMD Phenom II X4 B95,2401 -386,AMD Phenom II X4 B97,2539 -387,AMD Phenom II X4 B99,2536 -388,AMD Phenom II X6 1035T,2962 -389,AMD Phenom II X6 1045T,3157 -390,AMD Phenom II X6 1055T,3299 -391,AMD Phenom II X6 1065T,3385 -392,AMD Phenom II X6 1075T,3375 -393,AMD Phenom II X6 1090T,3752 -394,AMD Phenom II X6 1100T,3827 -3165,AMD Phenom II X6 1405T,3335 -1852,AMD Phenom II X620 Dual-Core,1262 -395,AMD Phenom II X640 Dual-Core,1165 -396,AMD Phenom II X920 Quad-Core,1669 -2324,AMD Phenom II X940 Quad-Core,1797 -2844,AMD Phenom X2 Dual-Core GE-5060,1566 -1812,AMD Phenom X2 Dual-Core GE-6060,1722 -1877,AMD Phenom X2 Dual-Core GE-7060,1010 -397,AMD Phenom X2 Dual-Core GP-7730,884 -290,AMD Phenom X3 8550,1079 -1580,AMD Phenom X4 Quad-Core GP-9500,1297 -2878,AMD Phenom X4 Quad-Core GP-9530,1228 -1581,AMD Phenom X4 Quad-Core GP-9600,1649 -2862,AMD Phenom X4 Quad-Core GP-9730,1784 -2559,AMD Phenom X4 Quad-Core GS-6560,1063 -2648,AMD PRO A10-8700B,2217 -2909,AMD PRO A10-8730B,2403 -2647,AMD PRO A10-8750B,2879 -2945,AMD PRO A10-8770,3538 -2946,AMD PRO A10-8770E,3030 -2694,AMD PRO A10-8850B,3752 -2883,AMD PRO A10-9700,3659 -3168,AMD PRO A10-9700B,2585 -2824,AMD PRO A10-9700E,3049 -2610,AMD PRO A12-8800B,2580 -3088,AMD PRO A12-8830B,2499 -2937,AMD PRO A12-8870,3962 -2882,AMD PRO A12-8870E,3043 -2939,AMD PRO A12-9800,3666 -2840,AMD PRO A12-9800B,2691 -2944,AMD PRO A12-9800E,3181 -2802,AMD PRO A4-3350B APU,1784 -3597,AMD PRO A4-4350B,1109 -2714,AMD PRO A4-8350B,1635 -3210,AMD PRO A6-7350B,1407 -2695,AMD PRO A6-8500B,1594 -2947,AMD PRO A6-8530B,1069 -2821,AMD PRO A6-8550B,1882 -2949,AMD PRO A6-8570,1908 -2926,AMD PRO A6-8570E,1621 -2942,AMD PRO A6-9500,1770 -2981,AMD PRO A6-9500B,1371 -2950,AMD PRO A6-9500E,1662 -2652,AMD PRO A8-8600B,2192 -2650,AMD PRO A8-8650B,3225 -3071,AMD PRO A8-8670E,2989 -2860,AMD PRO A8-9600,3337 -2940,AMD PRO A8-9600B,2385 -2529,AMD QC-4000,1155 -2927,AMD R-260H APU,954 -3616,AMD R-272F APU,1215 -2486,AMD R-460L APU,1183 -1438,AMD R-464L APU,1773 -5567,AMD RX-225FB,892 -4280,AMD RX-425BB,2724 -2496,AMD RX-427BB,2778 -3029,AMD Ryzen 3 1200,6317 -3057,AMD Ryzen 3 1300X,6981 -3186,AMD Ryzen 3 2200G,6770 -3301,AMD Ryzen 3 2200GE,6062 -3152,AMD Ryzen 3 2200U,3712 -3290,AMD Ryzen 3 2300U,5484 -3395,AMD Ryzen 3 2300X,7519 -3715,AMD Ryzen 3 3100,11629 -3497,AMD Ryzen 3 3200G,7148 -3779,AMD Ryzen 3 3200GE,7309 -3431,AMD Ryzen 3 3200U,3828 -4605,AMD Ryzen 3 3250C,3208 -3722,AMD Ryzen 3 3250U,3855 -3520,AMD Ryzen 3 3300U,5715 -3716,AMD Ryzen 3 3300X,12662 -4395,AMD Ryzen 3 3350U,5853 -4832,AMD Ryzen 3 4100,11077 -3808,AMD Ryzen 3 4300G,10954 -3865,AMD Ryzen 3 4300GE,11207 -3664,AMD Ryzen 3 4300U,7489 -4392,AMD Ryzen 3 5300G,12878 -4389,AMD Ryzen 3 5300GE,13321 -4288,AMD Ryzen 3 5300U,9716 -4178,AMD Ryzen 3 5400U,11524 -4715,AMD Ryzen 3 5425U,11471 -5608,AMD Ryzen 3 7320C,8686 -5188,AMD Ryzen 3 7320U,9066 -5197,AMD Ryzen 3 7330U,11325 -3073,AMD Ryzen 3 PRO 1200,6100 -3074,AMD Ryzen 3 PRO 1300,7234 -3452,AMD Ryzen 3 PRO 2100GE,4062 -3216,AMD Ryzen 3 PRO 2200G,6787 -3267,AMD Ryzen 3 PRO 2200GE,6330 -3263,AMD Ryzen 3 PRO 2300U,5842 -3570,AMD Ryzen 3 PRO 3200G,6981 -3496,AMD Ryzen 3 PRO 3200GE,6858 -3450,AMD Ryzen 3 PRO 3300U,5972 -4088,AMD Ryzen 3 PRO 4200G,11315 -3874,AMD Ryzen 3 PRO 4200GE,10930 -3794,AMD Ryzen 3 PRO 4350G,10971 -3791,AMD Ryzen 3 PRO 4350GE,10989 -5423,AMD Ryzen 3 PRO 4355GE,10559 -3816,AMD Ryzen 3 PRO 4450U,10083 -4382,AMD Ryzen 3 PRO 5350G,13877 -4384,AMD Ryzen 3 PRO 5350GE,13448 -4408,AMD Ryzen 3 PRO 5450U,11075 -4851,AMD Ryzen 3 PRO 5475U,11272 -5278,AMD Ryzen 3 PRO 7330U,12846 -2992,AMD Ryzen 5 1400,7773 -3001,AMD Ryzen 5 1500X,9089 -2984,AMD Ryzen 5 1600,12295 -3000,AMD Ryzen 5 1600X,13074 -3183,AMD Ryzen 5 2400G,8734 -3284,AMD Ryzen 5 2400GE,7478 -3123,AMD Ryzen 5 2500U,6528 -3410,AMD Ryzen 5 2500X,9521 -3243,AMD Ryzen 5 2600,13215 -3415,AMD Ryzen 5 2600H,7834 -3235,AMD Ryzen 5 2600X,13945 -3879,AMD Ryzen 5 3350G,9041 -3804,AMD Ryzen 5 3350GE,9343 -3498,AMD Ryzen 5 3400G,9282 -3690,AMD Ryzen 5 3400GE,8901 -3881,AMD Ryzen 5 3450U,6734 -3588,AMD Ryzen 5 3500,12784 -4376,AMD Ryzen 5 3500C,5564 -3421,AMD Ryzen 5 3500U,6976 -3592,AMD Ryzen 5 3500X,13202 -3403,AMD Ryzen 5 3550H,7821 -3776,AMD Ryzen 5 3550U,7681 -3577,AMD Ryzen 5 3580U,7197 -3481,AMD Ryzen 5 3600,17778 -3494,AMD Ryzen 5 3600X,18231 -3781,AMD Ryzen 5 3600XT,18681 -5441,AMD Ryzen 5 4400G,17160 -4816,AMD Ryzen 5 4500,16172 -3702,AMD Ryzen 5 4500U,10999 -3807,AMD Ryzen 5 4600G,15997 -3835,AMD Ryzen 5 4600GE,15641 -3708,AMD Ryzen 5 4600H,14525 -3787,AMD Ryzen 5 4600HS,14322 -3725,AMD Ryzen 5 4600U,13467 -4807,AMD Ryzen 5 5500,19519 -5759,AMD Ryzen 5 5500H,11263 -4141,AMD Ryzen 5 5500U,13144 -4883,AMD Ryzen 5 5560U,15070 -4811,AMD Ryzen 5 5600,21593 -4325,AMD Ryzen 5 5600G,19906 -4390,AMD Ryzen 5 5600GE,18729 -4274,AMD Ryzen 5 5600H,17093 -4284,AMD Ryzen 5 5600U,15496 -3859,AMD Ryzen 5 5600X,21929 -5573,AMD Ryzen 5 5600X3D,22105 -4760,AMD Ryzen 5 5625U,15078 -4943,AMD Ryzen 5 6600H,19012 -5024,AMD Ryzen 5 6600HS Creator Edition,18610 -4949,AMD Ryzen 5 6600U,17139 -5648,AMD Ryzen 5 7500F,26877 -5216,AMD Ryzen 5 7520U,9475 -5126,AMD Ryzen 5 7530U,16507 -5403,AMD Ryzen 5 7535HS,18445 -5415,AMD Ryzen 5 7535U,17286 -5539,AMD Ryzen 5 7540U,19087 -5172,AMD Ryzen 5 7600,27434 -5033,AMD Ryzen 5 7600X,28694 -5594,AMD Ryzen 5 7640HS,23390 -5639,AMD Ryzen 5 7640U,21424 -3049,AMD Ryzen 5 PRO 1500,9297 -3079,AMD Ryzen 5 PRO 1600,10861 -3265,AMD Ryzen 5 PRO 2400G,8462 -3266,AMD Ryzen 5 PRO 2400GE,7567 -3262,AMD Ryzen 5 PRO 2500U,6611 -3306,AMD Ryzen 5 PRO 2600,13480 -3769,AMD Ryzen 5 PRO 3350G,9319 -3802,AMD Ryzen 5 PRO 3350GE,9643 -3569,AMD Ryzen 5 PRO 3400G,9166 -3565,AMD Ryzen 5 PRO 3400GE,8291 -3500,AMD Ryzen 5 PRO 3500U,6987 -3495,AMD Ryzen 5 PRO 3600,17720 -3828,AMD Ryzen 5 PRO 4400G,16354 -3873,AMD Ryzen 5 PRO 4400GE,14795 -3743,AMD Ryzen 5 PRO 4500U,12117 -3795,AMD Ryzen 5 PRO 4650G,16247 -3843,AMD Ryzen 5 PRO 4650GE,15601 -3766,AMD Ryzen 5 PRO 4650U,12745 -5442,AMD Ryzen 5 PRO 4655G,16355 -5642,AMD Ryzen 5 PRO 4655GE,14436 -5005,AMD Ryzen 5 PRO 5645,21904 -4381,AMD Ryzen 5 PRO 5650G,20827 -4385,AMD Ryzen 5 PRO 5650GE,18441 -4341,AMD Ryzen 5 PRO 5650U,14922 -4831,AMD Ryzen 5 PRO 5675U,14513 -4979,AMD Ryzen 5 PRO 6650H,19907 -4827,AMD Ryzen 5 PRO 6650U,16752 -5471,AMD Ryzen 5 PRO 7530U,15333 -5629,AMD Ryzen 5 PRO 7540U,17868 -5700,AMD Ryzen 5 PRO 7640HS,22977 -5503,AMD Ryzen 5 PRO 7645,27734 -2970,AMD Ryzen 7 1700,14812 -2969,AMD Ryzen 7 1700X,15672 -2966,AMD Ryzen 7 1800X,16412 -3240,AMD Ryzen 7 2700,15732 -3548,AMD Ryzen 7 2700E,14657 -3140,AMD Ryzen 7 2700U,6941 -3238,AMD Ryzen 7 2700X,17557 -3383,AMD Ryzen 7 2800H,8013 -4790,AMD Ryzen 7 3700C,7145 -3426,AMD Ryzen 7 3700U,7187 -3485,AMD Ryzen 7 3700X,22603 -3441,AMD Ryzen 7 3750H,8178 -3587,AMD Ryzen 7 3780U,6910 -3499,AMD Ryzen 7 3800X,23196 -3797,AMD Ryzen 7 3800XT,23697 -3836,AMD Ryzen 7 4700G,20207 -3847,AMD Ryzen 7 4700GE,19831 -3699,AMD Ryzen 7 4700U,13446 -3676,AMD Ryzen 7 4800H,18653 -3697,AMD Ryzen 7 4800HS,18528 -3721,AMD Ryzen 7 4800U,16795 -4761,AMD Ryzen 7 4850U Mobile,15920 -5001,AMD Ryzen 7 4980U Microsoft Surface Edition,17469 -4968,AMD Ryzen 7 5700,24346 -4323,AMD Ryzen 7 5700G,24642 -4387,AMD Ryzen 7 5700GE,22196 -4156,AMD Ryzen 7 5700U,15854 -4814,AMD Ryzen 7 5700X,26734 -4188,AMD Ryzen 7 5800,25823 -3907,AMD Ryzen 7 5800H,21130 -4170,AMD Ryzen 7 5800HS,20347 -4633,AMD Ryzen 7 5800HS Creator Edition,21166 -4102,AMD Ryzen 7 5800U,18591 -3869,AMD Ryzen 7 5800X,27969 -4823,AMD Ryzen 7 5800X3D,28267 -4788,AMD Ryzen 7 5825U,18458 -4749,AMD Ryzen 7 6800H,23654 -4843,AMD Ryzen 7 6800HS,22947 -4935,AMD Ryzen 7 6800HS Creator Edition,22520 -4923,AMD Ryzen 7 6800U,20634 -5169,AMD Ryzen 7 7700,34798 -5036,AMD Ryzen 7 7700X,36143 -5215,AMD Ryzen 7 7730U,18824 -5241,AMD Ryzen 7 7735H,24284 -5138,AMD Ryzen 7 7735HS,24264 -5373,AMD Ryzen 7 7735U,21350 -5182,AMD Ryzen 7 7736U,22560 -5437,AMD Ryzen 7 7745HX,32909 -5299,AMD Ryzen 7 7800X3D,34480 -5558,AMD Ryzen 7 7840H,29372 -5258,AMD Ryzen 7 7840HS,28887 -5638,AMD Ryzen 7 7840S,25347 -5322,AMD Ryzen 7 7840U,25438 -3790,AMD Ryzen 7 Extreme Edition,16903 -3075,AMD Ryzen 7 PRO 1700,14677 -3033,AMD Ryzen 7 PRO 1700X,15587 -3307,AMD Ryzen 7 PRO 2700,15273 -3258,AMD Ryzen 7 PRO 2700U,7271 -3292,AMD Ryzen 7 PRO 2700X,16846 -3564,AMD Ryzen 7 PRO 3700,22954 -3433,AMD Ryzen 7 PRO 3700U,7414 -3813,AMD Ryzen 7 PRO 4700G,20848 -3789,AMD Ryzen 7 PRO 4750G,20473 -3842,AMD Ryzen 7 PRO 4750GE,18413 -3740,AMD Ryzen 7 PRO 4750U,15226 -4380,AMD Ryzen 7 PRO 5750G,24409 -4386,AMD Ryzen 7 PRO 5750GE,22038 -5006,AMD Ryzen 7 PRO 5845,26162 -4198,AMD Ryzen 7 PRO 5850U,17165 -4791,AMD Ryzen 7 PRO 5875U,16282 -4930,AMD Ryzen 7 PRO 6850H,23001 -4880,AMD Ryzen 7 PRO 6850HS,21998 -4826,AMD Ryzen 7 PRO 6850U,20851 -4921,AMD Ryzen 7 PRO 6860Z,20895 -5078,AMD Ryzen 7 PRO 7730U,20254 -5504,AMD Ryzen 7 PRO 7745,34492 -5470,AMD Ryzen 7 PRO 7840HS,26364 -5319,AMD Ryzen 7 PRO 7840U,24556 -3575,AMD Ryzen 9 3900,30841 -3493,AMD Ryzen 9 3900X,32685 -3778,AMD Ryzen 9 3900XT,32740 -3598,AMD Ryzen 9 3950X,38850 -3756,AMD Ryzen 9 4900H,19198 -3694,AMD Ryzen 9 4900HS,19101 -4272,AMD Ryzen 9 5900,34445 -4664,AMD Ryzen 9 5900H,20960 -3905,AMD Ryzen 9 5900HS,21810 -4647,AMD Ryzen 9 5900HS Creator Edition,22138 -3903,AMD Ryzen 9 5900HX,22678 -3870,AMD Ryzen 9 5900X,39216 -3862,AMD Ryzen 9 5950X,45786 -4163,AMD Ryzen 9 5980HS,21232 -4602,AMD Ryzen 9 5980HX,23626 -4751,AMD Ryzen 9 6900HS,23901 -4961,AMD Ryzen 9 6900HS Creator Edition,22240 -4867,AMD Ryzen 9 6900HX,24887 -5196,AMD Ryzen 9 7845HX,46536 -5167,AMD Ryzen 9 7900,49069 -5027,AMD Ryzen 9 7900X,52083 -5240,AMD Ryzen 9 7900X3D,50589 -5453,AMD Ryzen 9 7940H,30873 -5454,AMD Ryzen 9 7940HS,30594 -5232,AMD Ryzen 9 7945HX,55503 -5799,AMD Ryzen 9 7945HX3D,57174 -5031,AMD Ryzen 9 7950X,63159 -5234,AMD Ryzen 9 7950X3D,62563 -3563,AMD Ryzen 9 PRO 3900,31600 -5000,AMD Ryzen 9 PRO 5945,34730 -4964,AMD Ryzen 9 PRO 6950H,22448 -4905,AMD Ryzen 9 PRO 6950HS,23036 -5560,AMD Ryzen 9 PRO 7940HS,27909 -5505,AMD Ryzen 9 PRO 7945,49660 -3886,AMD Ryzen Embedded R1305G,2980 -3486,AMD Ryzen Embedded R1505G,3909 -5117,AMD Ryzen Embedded R1600,3281 -3659,AMD Ryzen Embedded R1606G,4160 -4897,AMD Ryzen Embedded R2312,3720 -4665,AMD Ryzen Embedded R2314,6584 -5630,AMD Ryzen Embedded R2514,6998 -5644,AMD Ryzen Embedded R2544,8486 -3339,AMD Ryzen Embedded V1202B,3532 -3661,AMD Ryzen Embedded V1404I,6007 -4304,AMD Ryzen Embedded V1500B,4584 -4624,AMD Ryzen Embedded V1500B Quad-core @ 2.20GHz,5417 -3331,AMD Ryzen Embedded V1605B,6735 -3574,AMD Ryzen Embedded V1756B,8291 -3310,AMD Ryzen Embedded V1807B,8588 -5627,AMD Ryzen Embedded V1807F,7775 -4861,AMD Ryzen Embedded V2516,13016 -4228,AMD Ryzen Embedded V2718,16525 -4319,AMD Ryzen Embedded V2748,16706 -5613,AMD Ryzen Embedded V3C18I,15541 -5118,AMD Ryzen Embedded V3C48,18361 -3086,AMD Ryzen Threadripper 1900X,16789 -4497,AMD Ryzen Threadripper 1920,22066 -3062,AMD Ryzen Threadripper 1920X,23026 -3058,AMD Ryzen Threadripper 1950X,27622 -3354,AMD Ryzen Threadripper 2920X,25069 -3316,AMD Ryzen Threadripper 2950X,29409 -3345,AMD Ryzen Threadripper 2970WX,29988 -3309,AMD Ryzen Threadripper 2990WX,32395 -3332,AMD Ryzen Threadripper 2990X,27606 -3617,AMD Ryzen Threadripper 3960X,54949 -3623,AMD Ryzen Threadripper 3970X,63275 -3674,AMD Ryzen Threadripper 3990X,80894 -5792,AMD Ryzen Threadripper 7960X,82862 -5811,AMD Ryzen Threadripper 7970X 32-Cores,102288 -5764,AMD Ryzen Threadripper 7980X,137775 -3845,AMD Ryzen Threadripper PRO 3945WX,33504 -3846,AMD Ryzen Threadripper PRO 3955WX,40373 -3851,AMD Ryzen Threadripper PRO 3975WX,62848 -3837,AMD Ryzen Threadripper PRO 3995WX,83562 -4770,AMD Ryzen Threadripper PRO 5945WX,40595 -4767,AMD Ryzen Threadripper PRO 5955WX,50245 -4768,AMD Ryzen Threadripper PRO 5965WX,66117 -4776,AMD Ryzen Threadripper PRO 5975WX,76045 -4764,AMD Ryzen Threadripper PRO 5995WX,94808 -5733,AMD Ryzen Threadripper PRO 7945WX,50835 -5730,AMD Ryzen Threadripper PRO 7955WX,61073 -5731,AMD Ryzen Threadripper PRO 7965WX,84785 -5729,AMD Ryzen Threadripper PRO 7975WX,99930 -5732,AMD Ryzen Threadripper PRO 7985WX,136854 -5726,AMD Ryzen Threadripper PRO 7995WX,153096 -5756,AMD Ryzen Z1,17107 -5508,AMD Ryzen Z1 Extreme,25703 -401,AMD Sempron 130,511 -402,AMD Sempron 140,486 -403,AMD Sempron 145,506 -404,AMD Sempron 150,597 -1588,AMD Sempron 200U,125 -419,AMD Sempron 210U,267 -405,AMD Sempron 2200+,184 -406,AMD Sempron 2300+,207 -3327,AMD Sempron 240,1278 -407,AMD Sempron 2400+,205 -408,AMD Sempron 2500+,207 -409,AMD Sempron 2600+,253 -2214,AMD Sempron 2650 APU,561 -410,AMD Sempron 2800+,243 -411,AMD Sempron 3000+,286 -420,AMD Sempron 3100+,298 -412,AMD Sempron 3200+,251 -413,AMD Sempron 3300+,315 -421,AMD Sempron 3400+,292 -422,AMD Sempron 3500+,232 -423,AMD Sempron 3600+,364 -424,AMD Sempron 3800+,360 -2209,AMD Sempron 3850 APU,1142 -414,AMD Sempron Dual Core 2100,533 -415,AMD Sempron Dual Core 2200,563 -416,AMD Sempron Dual Core 2300,555 -425,AMD Sempron LE-1100,315 -426,AMD Sempron LE-1150,251 -427,AMD Sempron LE-1200,349 -428,AMD Sempron LE-1250,301 -429,AMD Sempron LE-1300,417 -417,AMD Sempron M100,338 -418,AMD Sempron M120,247 -431,AMD Sempron SI-40,288 -432,AMD Sempron SI-42,245 -433,AMD Sempron X2 180,826 -434,AMD Sempron X2 190,879 -2528,AMD Sempron X2 198 Dual-Core,930 -447,AMD Turion 64 Mobile MK-36,334 -448,AMD Turion 64 Mobile MK-38,362 -443,AMD Turion 64 Mobile ML-28,254 -444,AMD Turion 64 Mobile ML-30,277 -445,AMD Turion 64 Mobile ML-32,285 -449,AMD Turion 64 Mobile ML-34,319 -450,AMD Turion 64 Mobile ML-37,334 -446,AMD Turion 64 Mobile ML-40,336 -451,AMD Turion 64 Mobile ML-42,400 -452,AMD Turion 64 Mobile ML-44,384 -453,AMD Turion 64 Mobile MT-30,246 -454,AMD Turion 64 Mobile MT-32,286 -455,AMD Turion 64 Mobile MT-34,279 -1594,AMD Turion 64 Mobile MT-37,315 -458,AMD Turion 64 X2 Mobile TL-50,474 -459,AMD Turion 64 X2 Mobile TL-52,534 -460,AMD Turion 64 X2 Mobile TL-56,487 -461,AMD Turion 64 X2 Mobile TL-58,436 -462,AMD Turion 64 X2 Mobile TL-60,639 -463,AMD Turion 64 X2 Mobile TL-62,649 -464,AMD Turion 64 X2 Mobile TL-64,675 -465,AMD Turion 64 X2 Mobile TL-66,696 -466,AMD Turion 64 X2 Mobile TL-68,866 -436,AMD Turion Dual-Core RM-70,561 -437,AMD Turion Dual-Core RM-72,649 -2147,AMD Turion Dual-Core RM-74,588 -438,AMD Turion Dual-Core RM-75,659 -470,AMD Turion II Dual-Core Mobile M500,756 -471,AMD Turion II Dual-Core Mobile M520,843 -472,AMD Turion II Dual-Core Mobile M540,912 -473,AMD Turion II N530 Dual-Core,855 -1596,AMD Turion II N550 Dual-Core,877 -474,AMD Turion II Neo K625 Dual-Core,565 -475,AMD Turion II Neo K685 Dual-Core,684 -476,AMD Turion II Neo N40L Dual-Core,602 -477,AMD Turion II Neo N54L Dual-Core,853 -478,AMD Turion II P520 Dual-Core,801 -479,AMD Turion II P540 Dual-Core,960 -480,AMD Turion II P560 Dual-Core,978 -481,AMD Turion II Ultra Dual-Core Mobile M600,955 -482,AMD Turion II Ultra Dual-Core Mobile M620,814 -483,AMD Turion II Ultra Dual-Core Mobile M640,1034 -1597,AMD Turion II Ultra Dual-Core Mobile M660,1011 -484,AMD Turion Neo X2 Dual Core L625,432 -1599,AMD Turion X2 Dual Core L510,603 -1459,AMD Turion X2 Dual Core Mobile RM-70,497 -499,AMD Turion X2 Dual Core Mobile RM-76,691 -485,AMD Turion X2 Dual-Core Mobile RM-70,612 -486,AMD Turion X2 Dual-Core Mobile RM-72,653 -487,AMD Turion X2 Dual-Core Mobile RM-74,655 -488,AMD Turion X2 Dual-Core Mobile RM-75,708 -5794,AMD Turion X2 Dual-Core Mobile RM-76,799 -489,AMD Turion X2 Dual-Core Mobile RM-77,635 -490,AMD Turion X2 Ultra Dual-Core Mobile ZM-80,506 -491,AMD Turion X2 Ultra Dual-Core Mobile ZM-82,733 -492,AMD Turion X2 Ultra Dual-Core Mobile ZM-84,802 -493,AMD Turion X2 Ultra Dual-Core Mobile ZM-85,828 -494,AMD Turion X2 Ultra Dual-Core Mobile ZM-86,695 -495,AMD Turion X2 Ultra Dual-Core Mobile ZM-87,689 -496,AMD TurionX2 Dual Core Mobile RM-70,536 -497,AMD TurionX2 Dual Core Mobile RM-72,471 -2151,AMD TurionX2 Ultra DualCore Mobile ZM-85,841 -4711,AMD TurionX2 Ultra DualCore Mobile ZM-87,599 -502,AMD V105,184 -503,AMD V120,352 -504,AMD V140,397 -505,AMD V160,337 -506,AMD Z-01,305 -1870,AMD Z-60 APU,262 -3999,Amlogic,617 -4034,Apple A11 Bionic,4397 -4066,Apple A12 Bionic,4919 -4062,Apple A12X Bionic,10978 -4063,Apple A12Z Bionic,9365 -4065,Apple A13 Bionic,5616 -4061,Apple A14 Bionic,8538 -4536,Apple A15 Bionic,9889 -5016,Apple A16 Bionic,11123 -5683,Apple A17 Pro,12251 -4114,Apple A8,1538 -4069,Apple A8X,2368 -4073,Apple A9,2057 -4072,Apple A9X,2518 -4104,Apple M1 8 Core 3200 MHz,14191 -4585,Apple M1 Max 10 Core 3200 MHz,22029 -4580,Apple M1 Pro 10 Core 3200 MHz,21796 -4584,Apple M1 Pro 8 Core 3200 MHz,17141 -4782,Apple M1 Ultra 20 Core,40889 -4922,Apple M2 8 Core 3500 MHz,15398 -5183,Apple M2 Max 12 Core 3680 MHz,26232 -5186,Apple M2 Pro 10 Core 3480 MHz,21544 -5189,Apple M2 Pro 12 Core 3480 MHz,26245 -5533,Apple M2 Ultra 24 Core,48716 -5749,Apple M3 8 Core,18877 -5757,Apple M3 Max 14 Core,35380 -5748,Apple M3 Max 16 Core,39998 -5751,Apple M3 Pro 11 Core,23805 -5750,Apple M3 Pro 12 Core,26883 -5798,ARM - 32 Core 2911 MHz,8132 -5810,ARM - 32 Core 3300 MHz,8732 -5037,ARM - 8 Core 1766 MHz,4080 -5277,ARM - 8 Core 2424 MHz,8610 -5735,ARM ARMv7 rev 1 (v7l) 4 Core 1800 MHz,843 -4614,ARM ARMv7 rev 3 (v7l) 4 Core 2065 MHz,984 -3921,ARM ARMv7 rev 4 (v7l) 4 Core 1200 MHz,396 -4839,ARM ARMv7 rev 4 (v7l) 4 Core 1400 MHz,399 -5445,ARM ARMv8 rev 1 (v8l) 6 Core 1510 MHz,2572 -5517,ARM Cortex-A15 4 Core 1400 MHz,1227 -5507,ARM Cortex-A15 4 Core 1500 MHz,1304 -5261,ARM Cortex-A15 4 Core 2000 MHz,923 -5046,ARM Cortex-A15 8 Core 1400 MHz,1160 -4559,ARM Cortex-A17 4 Core 1800 MHz,732 -5048,ARM Cortex-A35 4 Core 1200 MHz,329 -4678,ARM Cortex-A35 4 Core 1296 MHz,334 -5100,ARM Cortex-A53 4 Core 1000 MHz,248 -5694,ARM Cortex-A53 4 Core 1008 MHz,308 -4121,ARM Cortex-A53 4 Core 1152 MHz,344 -5428,ARM Cortex-A53 4 Core 1199 MHz,407 -4129,ARM Cortex-A53 4 Core 1200 MHz,300 -4151,ARM Cortex-A53 4 Core 1296 MHz,426 -5744,ARM Cortex-A53 4 Core 1300 MHz,464 -5443,ARM Cortex-A53 4 Core 1333 MHz,207 -5148,ARM Cortex-A53 4 Core 1368 MHz,322 -4600,ARM Cortex-A53 4 Core 1392 MHz,417 -4143,ARM Cortex-A53 4 Core 1400 MHz,300 -4984,ARM Cortex-A53 4 Core 1500 MHz,457 -4221,ARM Cortex-A53 4 Core 1512 MHz,469 -4314,ARM Cortex-A53 4 Core 1536 MHz,208 -4698,ARM Cortex-A53 4 Core 1600 MHz,453 -5030,ARM Cortex-A53 4 Core 1704 MHz,556 -4128,ARM Cortex-A53 4 Core 1800 MHz,508 -4976,ARM Cortex-A53 4 Core 1908 MHz,638 -5705,ARM Cortex-A53 4 Core 2016 MHz,500 -5584,ARM Cortex-A53 4 Core 600 MHz,220 -4011,ARM Cortex-A53 6 Core 1896 MHz,1851 -4150,ARM Cortex-A53 8 Core 1512 MHz,648 -5755,ARM Cortex-A55 4 Core 1416 MHz,500 -4863,ARM Cortex-A55 4 Core 1800 MHz,632 -4735,ARM Cortex-A55 4 Core 1992 MHz,704 -4555,ARM Cortex-A55 4 Core 2100 MHz,707 -4756,ARM Cortex-A55 4 Core 2124 MHz,742 -5646,ARM Cortex-A57 2 Core 1479 MHz,318 -3914,ARM Cortex-A57 4 Core 1479 MHz,960 -4630,ARM Cortex-A57 4 Core 1734 MHz,1170 -5314,ARM Cortex-A57 4 Core 1912 MHz,1007 -4212,ARM Cortex-A57 4 Core 2014 MHz,1216 -4809,ARM Cortex-A57 4 Core 2091 MHz,1307 -4140,ARM Cortex-A57 8 Core 1500 MHz,1022 -5082,ARM Cortex-A57 8 Core 1766 MHz,3766 -4337,ARM Cortex-A7 2 Core 1080 MHz,142 -4183,ARM Cortex-A7 2 Core 960 MHz,106 -5207,ARM Cortex-A7 2 Core 996 MHz,133 -5074,ARM Cortex-A7 4 Core 1008 MHz,269 -4197,ARM Cortex-A7 4 Core 1200 MHz,270 -5746,ARM Cortex-A7 4 Core 1296 MHz,225 -4769,ARM Cortex-A7 4 Core 1300 MHz,341 -4269,ARM Cortex-A7 4 Core 1368 MHz,353 -4211,ARM Cortex-A7 4 Core 900 MHz,239 -5152,ARM Cortex-A72 16 Core 2200 MHz,5470 -5262,ARM Cortex-A72 4 Core 1000 MHz,608 -4956,ARM Cortex-A72 4 Core 1200 MHz,174 -5620,ARM Cortex-A72 4 Core 1416 MHz,927 -3917,ARM Cortex-A72 4 Core 1500 MHz,644 -4940,ARM Cortex-A72 4 Core 1600 MHz,667 -5259,ARM Cortex-A72 4 Core 1700 MHz,574 -4490,ARM Cortex-A72 4 Core 1750 MHz,335 -4078,ARM Cortex-A72 4 Core 1800 MHz,722 -4491,ARM Cortex-A72 4 Core 1850 MHz,199 -4983,ARM Cortex-A72 4 Core 1900 MHz,763 -4077,ARM Cortex-A72 4 Core 2000 MHz,767 -4468,ARM Cortex-A72 4 Core 2100 MHz,674 -4134,ARM Cortex-A72 4 Core 2200 MHz,839 -4538,ARM Cortex-A72 4 Core 2300 MHz,880 -4973,ARM Cortex-A72 4 Core 2394 MHz,1254 -4945,ARM Cortex-A72 4 Core 2400 MHz,1295 -5766,ARM Cortex-A72 4 Core 2800 MHz,314 -4939,ARM Cortex-A72 4 Core 800 MHz,279 -5610,ARM Cortex-A72 6 Core 1008 MHz,712 -4487,ARM Cortex-A72 6 Core 1416 MHz,1059 -4679,ARM Cortex-A72 6 Core 1512 MHz,1183 -4567,ARM Cortex-A73 6 Core 1992 MHz,1311 -4941,ARM Cortex-A73 6 Core 2016 MHz,1428 -5743,ARM Cortex-A76 4 Core 2400 MHz,2153 -5758,ARM Cortex-A76 4 Core 2800 MHz,2439 -5780,ARM Cortex-A76 4 Core 2900 MHz,2490 -5739,ARM Cortex-A76 4 Core 3000 MHz,2538 -5769,ARM Cortex-A76 4 Core 3300 MHz,2493 -5770,ARM Cortex-A76 4 Core 3400 MHz,2580 -5476,ARM Cortex-A78 4 Core 2000 MHz,3089 -4825,ARM D2000/8 8 Core 2300 MHz,2674 -5014,ARM Falkor V1/Kryo 8 Core 1900 MHz,1652 -5727,ARM Firestorm 4 Core 2064 MHz,7804 -5401,ARM Firestorm 8 Core 2064 MHz,6775 -4742,ARM FT-2000/4 4 Core 2200 MHz,881 -5386,ARM Kryo-4XX-Gold 8 Core 1804 MHz,2531 -5256,ARM Neoverse-N1 128 Core 2800 MHz,43111 -5009,ARM Neoverse-N1 128 Core 3000 MHz,46480 -5562,ARM Neoverse-N1 32 Core 1700 MHz,11820 -4167,ARM Neoverse-N1 64 Core 0 MHz,28064 -5631,ARM Neoverse-N1 64 Core 2200 MHz,18652 -4820,ARM Neoverse-N1 80 Core 2600 MHz,18823 -5333,ARM Neoverse-N1 80 Core 2800 MHz,11755 -4504,ARM Neoverse-N1 80 Core 3000 MHz,36435 -4002,ARM phytium FT1500a 4 Core 2000 MHz,1579 -5421,"ARM Phytium,D2000/8 8 Core 2000 MHz",2409 -5225,"ARM Phytium,D2000/8 8 Core 2300 MHz",2705 -4862,"ARM Phytium,D2000/8 E8C 8 Core 2300 MHz",2156 -5044,"ARM Phytium,FT-2000/4 8 Core 2300 MHz",2720 -5115,ARM X-Gene 32 Core 3000 MHz,8202 -4635,ARM X-Gene 32 Core 3300 MHz,8684 -4682,ASUS Tinker Board 2/2S,1771 -2224,Athlon 64 Dual Core 3800+,736 -509,Athlon 64 Dual Core 5000+,850 -1607,Athlon 64 Dual Core 5600+,875 -510,Athlon Dual Core 4050e,670 -511,Athlon Dual Core 4450e,681 -1608,Athlon Dual Core 4850e,769 -4297,BCM2711,852 -4671,BCM2835,1239 -5370,Broadcom STB (Flattened Device Tree),646 -512,Celeron Dual-Core T3000 @ 1.80GHz,687 -513,Celeron Dual-Core T3100 @ 1.90GHz,599 -514,Celeron Dual-Core T3300 @ 2.00GHz,620 -515,Celeron Dual-Core T3500 @ 2.10GHz,766 -5667,CentaurHauls @2000MHz,6549 -4879,CentaurHauls @2500MHz,8046 -4693,DG1301SML87HY,3624 -4357,DO-Regular,1010 -2856,Dual-Core AMD Opteron 1220 SE,748 -4275,Generic DT based system,600 -5518,Giada JHS558 (Android),2022 -5364,Google GS201,7377 -5324,Google R11 BtWifi Evt1.1,187 -5349,Google Tensor,6759 -5699,Google Tensor G3,7983 -5767,Grandstream GXV3480 Video Phone,1078 -4841,Hardkernel ODROID-N2Plus,2115 -4271,"Haydn based on Qualcomm Technologies, Inc SM8350",5359 -4448,hi6210sft,796 -5147,High Performance Datacenter v,1501 -5267,HiSilicon Kirin,6283 -4310,HiSilicon Kirin 659,1893 -4021,Hisilicon Kirin 930,1415 -4812,Hisilicon Kirin 935,1291 -4353,HiSilicon Kirin 950,2457 -4885,Hisilicon Kirin 955,2936 -4056,HiSilicon Kirin 960,2809 -4292,HiSilicon Kirin 970,2908 -3969,Hisilicon Kirin 990,3855 -3951,Hisilicon Kirin710,2428 -4160,Hisilicon Kirin810,2945 -4446,Hisilicon Kirin820,3893 -4152,Hisilicon Kirin9000,5083 -3943,Hisilicon Kirin970,2675 -3958,Hisilicon Kirin980,4357 -4149,Hisilicon Kirin985,4162 -2415,HP Hexa-Core 2.0GHz,1741 -5096,Hygon C86 3185 8-core,9627 -5291,Hygon C86 3250 8-core,11114 -4658,Hygon C86 7255 16-core,18831 -3474,Intel 2.80GHz,341 -603,Intel Atom 230 @ 1.60GHz,169 -604,Intel Atom 330 @ 1.60GHz,363 -5808,Intel Atom C1110,3170 -2381,Intel Atom C2338 @ 1.74GHz,584 -4645,Intel Atom C2350 @ 1.74GHz,520 -2822,Intel Atom C2358 @ 1.74GHz,578 -3252,Intel Atom C2538 @ 2.40GHz,960 -2331,Intel Atom C2550 @ 2.40GHz,1422 -2557,Intel Atom C2558 @ 2.40GHz,1424 -2185,Intel Atom C2750 @ 2.40GHz,2767 -2534,Intel Atom C2750 @ 2.41GHz,2174 -2564,Intel Atom C2758 @ 2.40GHz,2258 -4290,Intel Atom C3338 @ 1.50GHz,1028 -3253,Intel Atom C3538 @ 2.10GHz,1960 -3129,Intel Atom C3558 @ 2.20GHz,2417 -3696,Intel Atom C3758 @ 2.20GHz,4614 -3287,Intel Atom C3858 @ 2.00GHz,4707 -3526,Intel Atom C3958 @ 2.00GHz,4281 -5091,Intel Atom C5125,8631 -605,Intel Atom D2500 @ 1.86GHz,233 -606,Intel Atom D2550 @ 1.86GHz,434 -2113,Intel Atom D2560 @ 2.00GHz,433 -607,Intel Atom D2700 @ 2.13GHz,467 -1918,Intel Atom D2701 @ 2.13GHz,511 -608,Intel Atom D410 @ 1.66GHz,180 -609,Intel Atom D425 @ 1.80GHz,199 -610,Intel Atom D510 @ 1.66GHz,406 -611,Intel Atom D525 @ 1.80GHz,398 -4947,Intel Atom E3805 @ 1.33GHz,406 -2233,Intel Atom E3815 @ 1.46GHz,184 -2256,Intel Atom E3825 @ 1.33GHz,378 -2809,Intel Atom E3826 @ 1.46GHz,304 -2716,Intel Atom E3827 @ 1.74GHz,463 -2124,Intel Atom E3840 @ 1.91GHz,704 -2225,Intel Atom E3845 @ 1.91GHz,1058 -2943,Intel Atom E3900 @ 1.60GHz,1953 -3259,Intel Atom E3940 @ 1.60GHz,1973 -2893,Intel Atom E3950 @ 1.60GHz,2124 -1465,Intel Atom N2100 @ 1.60GHz,188 -613,Intel Atom N2600 @ 1.60GHz,323 -614,Intel Atom N270 @ 1.60GHz,175 -615,Intel Atom N280 @ 1.66GHz,175 -616,Intel Atom N2800 @ 1.86GHz,444 -617,Intel Atom N435 @ 1.33GHz,153 -618,Intel Atom N450 @ 1.66GHz,203 -619,Intel Atom N455 @ 1.66GHz,188 -620,Intel Atom N470 @ 1.83GHz,224 -621,Intel Atom N475 @ 1.83GHz,179 -622,Intel Atom N550 @ 1.50GHz,283 -623,Intel Atom N570 @ 1.66GHz,341 -1915,Intel Atom S1260 @ 2.00GHz,526 -3293,Intel Atom T5700 @ 1.70GHz,2363 -2967,Intel Atom x5-E3930 @ 1.30GHz,928 -2740,Intel Atom x5-E8000 @ 1.04GHz,1008 -2585,Intel Atom x5-Z8300 @ 1.44GHz,807 -2851,Intel Atom x5-Z8330 @ 1.44GHz,806 -2774,Intel Atom x5-Z8350 @ 1.44GHz,896 -2581,Intel Atom x5-Z8500 @ 1.44GHz,1237 -2839,Intel Atom x5-Z8550 @ 1.44GHz,1160 -4347,Intel Atom x6211E @ 1.20GHz,1695 -5023,Intel Atom x6211E @ 1.30GHz,1833 -5556,Intel Atom x6214RE @ 1.40GHz,1109 -4644,Intel Atom x6413E @ 1.50GHz,3864 -5420,Intel Atom x6414RE @ 1.50GHz,1544 -4753,Intel Atom x6425E @ 2.00GHz,4044 -4763,Intel Atom x6425RE @ 1.90GHz,2987 -5662,Intel Atom x6427FE @ 1.90GHz,3196 -2506,Intel Atom x7-Z8700 @ 1.60GHz,1334 -2968,Intel Atom x7-Z8750 @ 1.60GHz,1325 -5783,Intel Atom x7425E,5777 -1466,Intel Atom Z2760 @ 1.80GHz,298 -4920,Intel Atom Z3530 @ 1.33GHz,565 -4842,Intel Atom Z3560 @ 1.00GHz,749 -4577,Intel Atom Z3560 @ 1.83GHz,690 -2548,Intel Atom Z3580 @ 1.33GHz,802 -2270,Intel Atom Z3735D @ 1.33GHz,761 -2272,Intel Atom Z3735E @ 1.33GHz,557 -2326,Intel Atom Z3735F @ 1.33GHz,539 -2377,Intel Atom Z3735G @ 1.33GHz,772 -2400,Intel Atom Z3736F @ 1.33GHz,503 -2059,Intel Atom Z3740 @ 1.33GHz,634 -2079,Intel Atom Z3740D @ 1.33GHz,614 -2164,Intel Atom Z3745 @ 1.33GHz,621 -2394,Intel Atom Z3745D @ 1.33GHz,599 -2115,Intel Atom Z3770 @ 1.46GHz,736 -2229,Intel Atom Z3770D @ 1.49GHz,488 -2301,Intel Atom Z3775 @ 1.46GHz,703 -2455,Intel Atom Z3775D @ 1.49GHz,794 -2273,Intel Atom Z3795 @ 1.60GHz,1188 -625,Intel Atom Z520 @ 1.33GHz,122 -626,Intel Atom Z530 @ 1.60GHz,183 -630,Intel Atom Z670 @ 1.50GHz,158 -3785,Intel CC150 @ 3.50GHz,11745 -631,Intel Celeron 1.70GHz,101 -632,Intel Celeron 1.80GHz,96 -1866,Intel Celeron 1000M @ 1.80GHz,1074 -1648,Intel Celeron 1000MHz,139 -1959,Intel Celeron 1005M @ 1.90GHz,1104 -1847,Intel Celeron 1007U @ 1.50GHz,835 -1991,Intel Celeron 1017U @ 1.60GHz,888 -2237,Intel Celeron 1019Y @ 1.00GHz,576 -2295,Intel Celeron 1020E @ 2.20GHz,1406 -3638,Intel Celeron 1020M @ 2.10GHz,1275 -1988,Intel Celeron 1037U @ 1.80GHz,978 -2166,Intel Celeron 1047UE @ 1.40GHz,748 -716,Intel Celeron 1100MHz,113 -717,Intel Celeron 1200MHz,159 -633,Intel Celeron 2.00GHz,125 -635,Intel Celeron 2.13GHz,166 -636,Intel Celeron 2.20GHz,139 -637,Intel Celeron 2.26GHz,182 -1467,Intel Celeron 2.30GHz,148 -638,Intel Celeron 2.40GHz,143 -639,Intel Celeron 2.50GHz,164 -640,Intel Celeron 2.53GHz,222 -641,Intel Celeron 2.60GHz,143 -642,Intel Celeron 2.66GHz,154 -643,Intel Celeron 2.70GHz,159 -644,Intel Celeron 2.80GHz,190 -645,Intel Celeron 2.93GHz,230 -2918,Intel Celeron 2000E @ 2.20GHz,1607 -3347,Intel Celeron 2002E @ 1.50GHz,1091 -1636,Intel Celeron 215 @ 1.33GHz,174 -646,Intel Celeron 220 @ 1.20GHz,209 -2203,Intel Celeron 2950M @ 2.00GHz,1212 -2073,Intel Celeron 2955U @ 1.40GHz,870 -2200,Intel Celeron 2957U @ 1.40GHz,858 -2485,Intel Celeron 2961Y @ 1.10GHz,684 -2249,Intel Celeron 2970M @ 2.20GHz,1501 -2369,Intel Celeron 2980U @ 1.60GHz,1056 -2891,Intel Celeron 2981U @ 1.60GHz,991 -647,Intel Celeron 3.06GHz,307 -648,Intel Celeron 3.20GHz,267 -649,Intel Celeron 3.33GHz,263 -2509,Intel Celeron 3205U @ 1.50GHz,946 -2723,Intel Celeron 3215U @ 1.70GHz,1117 -2476,Intel Celeron 3755U @ 1.70GHz,1182 -2816,Intel Celeron 3765U @ 1.90GHz,1252 -2735,Intel Celeron 3855U @ 1.60GHz,1274 -3034,Intel Celeron 3865U @ 1.80GHz,1307 -3442,Intel Celeron 3867U @ 1.80GHz,1483 -2705,Intel Celeron 3955U @ 2.00GHz,1507 -3145,Intel Celeron 3965U @ 2.20GHz,1743 -3234,Intel Celeron 3965Y @ 1.50GHz,1194 -650,Intel Celeron 420 @ 1.60GHz,235 -3460,Intel Celeron 4205U @ 1.80GHz,1358 -651,Intel Celeron 430 @ 1.80GHz,280 -4277,Intel Celeron 4305U @ 2.20GHz,1807 -3628,Intel Celeron 4305UE @ 2.00GHz,1699 -652,Intel Celeron 440 @ 2.00GHz,368 -653,Intel Celeron 450 @ 2.20GHz,415 -3688,Intel Celeron 5205U @ 1.90GHz,1458 -654,Intel Celeron 530 @ 1.73GHz,268 -655,Intel Celeron 540 @ 1.86GHz,305 -656,Intel Celeron 550 @ 2.00GHz,319 -657,Intel Celeron 560 @ 2.13GHz,339 -658,Intel Celeron 570 @ 2.26GHz,344 -3898,Intel Celeron 6305 @ 1.80GHz,2089 -4496,Intel Celeron 6305E @ 1.80GHz,1981 -5318,Intel Celeron 6600HE @ 2.60GHz,3286 -659,Intel Celeron 723 @ 1.20GHz,213 -4762,Intel Celeron 7305,2385 -5793,Intel Celeron 7305E,2665 -660,Intel Celeron 743 @ 1.30GHz,275 -2446,Intel Celeron 807 @ 1.50GHz,392 -1836,Intel Celeron 807UE @ 1.00GHz,241 -1637,Intel Celeron 827E @ 1.40GHz,371 -661,Intel Celeron 847 @ 1.10GHz,486 -1468,Intel Celeron 847E @ 1.10GHz,584 -662,Intel Celeron 857 @ 1.20GHz,569 -663,Intel Celeron 867 @ 1.30GHz,562 -664,Intel Celeron 877 @ 1.40GHz,675 -1469,Intel Celeron 887 @ 1.50GHz,754 -665,Intel Celeron 900 @ 2.20GHz,395 -666,Intel Celeron 925 @ 2.30GHz,477 -2002,Intel Celeron @ 1.30GHz,572 -2574,Intel Celeron B710 @ 1.60GHz,106 -668,Intel Celeron B800 @ 1.50GHz,645 -669,Intel Celeron B810 @ 1.60GHz,775 -670,Intel Celeron B815 @ 1.60GHz,723 -671,Intel Celeron B820 @ 1.70GHz,810 -1803,Intel Celeron B830 @ 1.80GHz,843 -672,Intel Celeron B840 @ 1.90GHz,1015 -693,Intel Celeron D 347 @ 3.06GHz,232 -694,Intel Celeron D 352 @ 3.20GHz,274 -695,Intel Celeron D 356 @ 3.33GHz,251 -696,Intel Celeron D 360 @ 3.46GHz,372 -698,Intel Celeron D 420 @ 1.60GHz,313 -673,Intel Celeron E1200 @ 1.60GHz,551 -674,Intel Celeron E1400 @ 2.00GHz,735 -675,Intel Celeron E1500 @ 2.20GHz,626 -1638,Intel Celeron E1600 @ 2.40GHz,840 -676,Intel Celeron E3200 @ 2.40GHz,839 -677,Intel Celeron E3300 @ 2.50GHz,839 -678,Intel Celeron E3400 @ 2.60GHz,844 -679,Intel Celeron E3500 @ 2.70GHz,935 -680,Intel Celeron G1101 @ 2.27GHz,1086 -1819,Intel Celeron G1610 @ 2.60GHz,1526 -2075,Intel Celeron G1610T @ 2.30GHz,1379 -1848,Intel Celeron G1620 @ 2.70GHz,1550 -2197,Intel Celeron G1620T @ 2.40GHz,1541 -2064,Intel Celeron G1630 @ 2.80GHz,1707 -2129,Intel Celeron G1820 @ 2.70GHz,1703 -2169,Intel Celeron G1820T @ 2.40GHz,1631 -2404,Intel Celeron G1820TE @ 2.20GHz,1020 -2165,Intel Celeron G1830 @ 2.80GHz,1560 -2268,Intel Celeron G1840 @ 2.80GHz,1763 -2512,Intel Celeron G1840T @ 2.50GHz,1576 -2240,Intel Celeron G1850 @ 2.90GHz,1899 -2706,Intel Celeron G3900 @ 2.80GHz,2172 -2998,Intel Celeron G3900E @ 2.40GHz,2034 -2760,Intel Celeron G3900T @ 2.60GHz,2089 -3296,Intel Celeron G3900TE @ 2.30GHz,1850 -2807,Intel Celeron G3920 @ 2.90GHz,2358 -2957,Intel Celeron G3930 @ 2.90GHz,2233 -3353,Intel Celeron G3930T @ 2.70GHz,2053 -3522,Intel Celeron G3930TE @ 2.70GHz,2218 -2973,Intel Celeron G3950 @ 3.00GHz,2322 -681,Intel Celeron G440 @ 1.60GHz,425 -682,Intel Celeron G460 @ 1.80GHz,469 -1804,Intel Celeron G465 @ 1.90GHz,547 -2180,Intel Celeron G470 @ 2.00GHz,568 -3275,Intel Celeron G4900 @ 3.10GHz,2434 -3214,Intel Celeron G4900T @ 2.90GHz,2254 -3305,Intel Celeron G4920 @ 3.20GHz,2500 -3557,Intel Celeron G4930 @ 3.20GHz,2577 -3788,Intel Celeron G4930T @ 3.00GHz,2297 -4210,Intel Celeron G4950 @ 3.30GHz,2714 -683,Intel Celeron G530 @ 2.40GHz,1117 -1860,Intel Celeron G530T @ 2.00GHz,1056 -684,Intel Celeron G540 @ 2.50GHz,1172 -685,Intel Celeron G540T @ 2.10GHz,1137 -686,Intel Celeron G550 @ 2.60GHz,1250 -2328,Intel Celeron G550T @ 2.20GHz,1102 -1791,Intel Celeron G555 @ 2.70GHz,1388 -3761,Intel Celeron G5900 @ 3.40GHz,2696 -4557,Intel Celeron G5900T @ 3.20GHz,2620 -3848,Intel Celeron G5905 @ 3.50GHz,2809 -4335,Intel Celeron G5905T @ 3.30GHz,2070 -3887,Intel Celeron G5920 @ 3.50GHz,2482 -4421,Intel Celeron G5925 @ 3.60GHz,2809 -4709,Intel Celeron G6900,4588 -4927,Intel Celeron G6900T,4003 -5789,Intel Celeron G6900TE,2373 -2215,Intel Celeron J1750 @ 2.41GHz,595 -2167,Intel Celeron J1800 @ 2.41GHz,591 -2060,Intel Celeron J1850 @ 1.99GHz,942 -2131,Intel Celeron J1900 @ 1.99GHz,1151 -2852,Intel Celeron J3060 @ 1.60GHz,665 -2772,Intel Celeron J3160 @ 1.60GHz,1258 -2960,Intel Celeron J3355 @ 2.00GHz,1197 -2875,Intel Celeron J3455 @ 1.50GHz,2254 -3833,Intel Celeron J3455E @ 1.50GHz,2193 -3200,Intel Celeron J4005 @ 2.00GHz,1585 -3668,Intel Celeron J4025 @ 2.00GHz,1707 -3159,Intel Celeron J4105 @ 1.50GHz,2912 -3679,Intel Celeron J4115 @ 1.80GHz,2687 -3667,Intel Celeron J4125 @ 2.00GHz,2963 -4474,Intel Celeron J6412 @ 2.00GHz,3846 -4115,Intel Celeron J6413 @ 1.80GHz,4378 -706,Intel Celeron M 1.00GHz,149 -707,Intel Celeron M 1.30GHz,205 -709,Intel Celeron M 1.50GHz,216 -710,Intel Celeron M 1.60GHz,190 -711,Intel Celeron M 1.70GHz,252 -712,Intel Celeron M 1300MHz,197 -714,Intel Celeron M 1500MHz,217 -708,Intel Celeron M 360 1.40GHz,221 -699,Intel Celeron M 410 @ 1.46GHz,123 -700,Intel Celeron M 420 @ 1.60GHz,139 -701,Intel Celeron M 430 @ 1.73GHz,169 -702,Intel Celeron M 440 @ 1.86GHz,169 -1641,Intel Celeron M 443 @ 1.20GHz,125 -703,Intel Celeron M 450 @ 2.00GHz,230 -704,Intel Celeron M 520 @ 1.60GHz,215 -705,Intel Celeron M 530 @ 1.73GHz,291 -1643,Intel Celeron M 723 @ 1.20GHz,267 -715,Intel Celeron M 900MHz,123 -2099,Intel Celeron N2805 @ 1.46GHz,335 -2171,Intel Celeron N2806 @ 1.60GHz,485 -2263,Intel Celeron N2807 @ 1.58GHz,500 -2505,Intel Celeron N2808 @ 1.58GHz,510 -2109,Intel Celeron N2810 @ 2.00GHz,420 -2158,Intel Celeron N2815 @ 1.86GHz,495 -2145,Intel Celeron N2820 @ 2.13GHz,502 -2213,Intel Celeron N2830 @ 2.16GHz,550 -2388,Intel Celeron N2840 @ 2.16GHz,591 -2093,Intel Celeron N2910 @ 1.60GHz,773 -2134,Intel Celeron N2920 @ 1.86GHz,948 -2255,Intel Celeron N2930 @ 1.83GHz,1009 -2356,Intel Celeron N2940 @ 1.83GHz,1050 -2583,Intel Celeron N3000 @ 1.04GHz,616 -2884,Intel Celeron N3010 @ 1.04GHz,612 -2541,Intel Celeron N3050 @ 1.60GHz,592 -2762,Intel Celeron N3060 @ 1.60GHz,658 -2546,Intel Celeron N3150 @ 1.60GHz,1201 -2812,Intel Celeron N3160 @ 1.60GHz,1180 -2895,Intel Celeron N3350 @ 1.10GHz,1109 -2907,Intel Celeron N3450 @ 1.10GHz,1988 -3239,Intel Celeron N4000 @ 1.10GHz,1417 -3635,Intel Celeron N4000C @ 1.10GHz,1397 -3683,Intel Celeron N4020 @ 1.10GHz,1556 -4928,Intel Celeron N4020C @ 1.10GHz,1572 -3270,Intel Celeron N4100 @ 1.10GHz,2425 -3651,Intel Celeron N4120 @ 1.10GHz,2527 -4227,Intel Celeron N4500 @ 1.10GHz,2003 -4717,Intel Celeron N4505 @ 2.00GHz,2241 -4472,Intel Celeron N5095 @ 2.00GHz,4106 -4777,Intel Celeron N5095A @ 2.00GHz,4119 -4331,Intel Celeron N5100 @ 1.10GHz,3310 -4412,Intel Celeron N5105 @ 2.00GHz,4061 -5039,Intel Celeron N6210 @ 1.20GHz,1900 -4286,Intel Celeron N6211 @ 1.20GHz,2245 -687,Intel Celeron P4500 @ 1.87GHz,848 -688,Intel Celeron P4505 @ 1.87GHz,689 -689,Intel Celeron P4600 @ 2.00GHz,870 -595,Intel Celeron SU2300 @ 1.20GHz,460 -582,Intel Celeron T1600 @ 1.66GHz,562 -2592,Intel Celeron U1900 @ 1.99GHz,1028 -690,Intel Celeron U3400 @ 1.07GHz,516 -691,Intel Celeron U3600 @ 1.20GHz,579 -1470,Intel Core 860 @ 2.80GHz,2754 -575,Intel Core Duo L2300 @ 1.50GHz,387 -725,Intel Core Duo L2400 @ 1.66GHz,348 -726,Intel Core Duo L2500 @ 1.83GHz,404 -584,Intel Core Duo T2050 @ 1.60GHz,320 -727,Intel Core Duo T2250 @ 1.73GHz,350 -728,Intel Core Duo T2300 @ 1.66GHz,326 -729,Intel Core Duo T2350 @ 1.86GHz,385 -730,Intel Core Duo T2400 @ 1.83GHz,361 -731,Intel Core Duo T2450 @ 2.00GHz,411 -732,Intel Core Duo T2500 @ 2.00GHz,408 -733,Intel Core Duo T2600 @ 2.16GHz,450 -734,Intel Core Duo T2700 @ 2.33GHz,498 -735,Intel Core Duo U2400 @ 1.06GHz,255 -736,Intel Core Duo U2500 @ 1.20GHz,220 -3714,Intel Core i3-1000NG4 @ 1.10GHz,3655 -3560,Intel Core i3-1005G1 @ 1.20GHz,4982 -3717,Intel Core i3-10100 @ 3.60GHz,8690 -4623,Intel Core i3-10100E @ 3.20GHz,8365 -3863,Intel Core i3-10100F @ 3.60GHz,8778 -3796,Intel Core i3-10100T @ 3.00GHz,7319 -5041,Intel Core i3-10100TE @ 2.30GHz,6237 -4566,Intel Core i3-10100Y @ 1.30GHz,2935 -4259,Intel Core i3-10105 @ 3.70GHz,8637 -4175,Intel Core i3-10105F @ 3.70GHz,9008 -4401,Intel Core i3-10105T @ 3.00GHz,8016 -3573,Intel Core i3-10110U @ 2.10GHz,3920 -3707,Intel Core i3-10110Y @ 1.00GHz,3269 -3765,Intel Core i3-10300 @ 3.70GHz,9290 -3838,Intel Core i3-10300T @ 3.00GHz,8036 -4369,Intel Core i3-10305 @ 3.80GHz,9108 -4375,Intel Core i3-10305T @ 3.00GHz,8136 -3890,Intel Core i3-10320 @ 3.80GHz,10052 -4685,Intel Core i3-10325 @ 3.90GHz,10268 -4637,Intel Core i3-11100B @ 3.60GHz,11357 -5579,Intel Core i3-11100HE @ 2.40GHz,11289 -4730,Intel Core i3-1110G4 @ 1.80GHz,4390 -3877,Intel Core i3-1115G4 @ 3.00GHz,6132 -4739,Intel Core i3-1115G4E @ 3.00GHz,5826 -4696,Intel Core i3-1115GRE @ 3.00GHz,4220 -3995,Intel Core i3-1125G4 @ 2.00GHz,9737 -4687,Intel Core i3-12100,13506 -5576,Intel Core i3-12100E,14250 -4670,Intel Core i3-12100F,14203 -4802,Intel Core i3-12100T,12675 -4955,Intel Core i3-12100TE,12961 -4886,Intel Core i3-1210U,10641 -4754,Intel Core i3-1215U,11032 -5105,Intel Core i3-1215UE,9643 -5704,Intel Core i3-1215UL,6161 -4819,Intel Core i3-1220P,14412 -5692,Intel Core i3-1220PE,16146 -4746,Intel Core i3-12300,14720 -5109,Intel Core i3-12300T,13251 -5524,Intel Core i3-1305U,9491 -5170,Intel Core i3-13100,14709 -5641,Intel Core i3-13100E,11650 -5156,Intel Core i3-13100F,14631 -5295,Intel Core i3-13100T,13210 -5300,Intel Core i3-1315U,13004 -5762,Intel Core i3-1315UE,8294 -749,Intel Core i3-2100 @ 3.10GHz,1851 -750,Intel Core i3-2100T @ 2.50GHz,1488 -2728,Intel Core i3-2102 @ 3.10GHz,2029 -751,Intel Core i3-2105 @ 3.10GHz,1883 -3438,Intel Core i3-21050 @ 3.10GHz,2193 -752,Intel Core i3-2120 @ 3.30GHz,1960 -753,Intel Core i3-2120T @ 2.60GHz,1520 -754,Intel Core i3-2125 @ 3.30GHz,2085 -755,Intel Core i3-2130 @ 3.40GHz,2035 -1863,Intel Core i3-2140 @ 3.50GHz,2307 -1433,Intel Core i3-2310E @ 2.10GHz,1845 -756,Intel Core i3-2310M @ 2.10GHz,1222 -1658,Intel Core i3-2312M @ 2.10GHz,1120 -1471,Intel Core i3-2328M @ 2.20GHz,1235 -2206,Intel Core i3-2330E @ 2.20GHz,1823 -757,Intel Core i3-2330M @ 2.20GHz,1226 -2176,Intel Core i3-2332M @ 2.20GHz,1353 -2265,Intel Core i3-2340UE @ 1.30GHz,976 -1878,Intel Core i3-2348M @ 2.30GHz,1268 -758,Intel Core i3-2350M @ 2.30GHz,1254 -759,Intel Core i3-2357M @ 1.30GHz,788 -1821,Intel Core i3-2365M @ 1.40GHz,828 -760,Intel Core i3-2367M @ 1.40GHz,833 -761,Intel Core i3-2370M @ 2.40GHz,1364 -1879,Intel Core i3-2375M @ 1.50GHz,900 -762,Intel Core i3-2377M @ 1.50GHz,834 -763,Intel Core i3-3110M @ 2.40GHz,1639 -1442,Intel Core i3-3120M @ 2.50GHz,1689 -1829,Intel Core i3-3130M @ 2.60GHz,1900 -1865,Intel Core i3-3210 @ 3.20GHz,2223 -764,Intel Core i3-3217U @ 1.80GHz,1218 -2143,Intel Core i3-3217UE @ 1.60GHz,1362 -1472,Intel Core i3-3220 @ 3.30GHz,2263 -1473,Intel Core i3-3220T @ 2.80GHz,1933 -1474,Intel Core i3-3225 @ 3.30GHz,2239 -1861,Intel Core i3-3227U @ 1.90GHz,1286 -1950,Intel Core i3-3229Y @ 1.40GHz,1004 -765,Intel Core i3-3240 @ 3.40GHz,2315 -1793,Intel Core i3-3240T @ 2.90GHz,2044 -1934,Intel Core i3-3245 @ 3.40GHz,2337 -2034,Intel Core i3-3250 @ 3.50GHz,2431 -2732,Intel Core i3-3250T @ 3.00GHz,2650 -741,Intel Core i3-330E @ 2.13GHz,1260 -742,Intel Core i3-330M @ 2.13GHz,1015 -747,Intel Core i3-330UM @ 1.20GHz,515 -743,Intel Core i3-350M @ 2.27GHz,1078 -744,Intel Core i3-370M @ 2.40GHz,1144 -745,Intel Core i3-380M @ 2.53GHz,1203 -748,Intel Core i3-380UM @ 1.33GHz,734 -746,Intel Core i3-390M @ 2.67GHz,1237 -2072,Intel Core i3-4000M @ 2.40GHz,1778 -2193,Intel Core i3-4005U @ 1.70GHz,1656 -2012,Intel Core i3-4010U @ 1.70GHz,1655 -2106,Intel Core i3-4010Y @ 1.30GHz,1358 -2257,Intel Core i3-4012Y @ 1.50GHz,1260 -2128,Intel Core i3-4020Y @ 1.50GHz,1456 -2321,Intel Core i3-4025U @ 1.90GHz,1959 -2277,Intel Core i3-4030U @ 1.90GHz,1876 -2434,Intel Core i3-4030Y @ 1.60GHz,1654 -4636,Intel Core i3-4100E @ 2.40GHz,1848 -2410,Intel Core i3-4100M @ 2.50GHz,2504 -2453,Intel Core i3-4110M @ 2.60GHz,2678 -2569,Intel Core i3-4110U @ 1.90GHz,1860 -2769,Intel Core i3-4120U @ 2.00GHz,1948 -2015,Intel Core i3-4130 @ 3.40GHz,3323 -2035,Intel Core i3-4130T @ 2.90GHz,2877 -2252,Intel Core i3-4150 @ 3.50GHz,3386 -2296,Intel Core i3-4150T @ 3.00GHz,2929 -2443,Intel Core i3-4158U @ 2.00GHz,1718 -2317,Intel Core i3-4160 @ 3.60GHz,3506 -2380,Intel Core i3-4160T @ 3.10GHz,3122 -2522,Intel Core i3-4170 @ 3.70GHz,3588 -2624,Intel Core i3-4170T @ 3.20GHz,3201 -2025,Intel Core i3-4330 @ 3.50GHz,3554 -2161,Intel Core i3-4330T @ 3.00GHz,3105 -2139,Intel Core i3-4330TE @ 2.40GHz,2022 -2029,Intel Core i3-4340 @ 3.60GHz,3545 -2283,Intel Core i3-4350 @ 3.60GHz,3501 -2544,Intel Core i3-4350T @ 3.10GHz,3142 -2244,Intel Core i3-4360 @ 3.70GHz,3623 -2330,Intel Core i3-4360T @ 3.20GHz,3265 -2351,Intel Core i3-4370 @ 3.80GHz,3845 -3117,Intel Core i3-4370T @ 3.30GHz,3361 -2174,Intel Core i3-4570T @ 2.90GHz,3244 -2484,Intel Core i3-5005U @ 2.00GHz,2016 -2467,Intel Core i3-5010U @ 2.10GHz,2192 -2551,Intel Core i3-5015U @ 2.10GHz,1842 -2597,Intel Core i3-5020U @ 2.20GHz,2173 -2602,Intel Core i3-5157U @ 2.50GHz,2593 -737,Intel Core i3-530 @ 2.93GHz,1486 -738,Intel Core i3-540 @ 3.07GHz,1531 -739,Intel Core i3-550 @ 3.20GHz,1604 -740,Intel Core i3-560 @ 3.33GHz,1665 -2912,Intel Core i3-6006U @ 2.00GHz,2283 -2708,Intel Core i3-6098P @ 3.60GHz,4048 -2617,Intel Core i3-6100 @ 3.70GHz,4156 -2789,Intel Core i3-6100E @ 2.70GHz,3315 -2645,Intel Core i3-6100H @ 2.70GHz,3041 -2639,Intel Core i3-6100T @ 3.20GHz,3668 -2673,Intel Core i3-6100TE @ 2.70GHz,3152 -2623,Intel Core i3-6100U @ 2.30GHz,2638 -3528,Intel Core i3-6102E @ 1.90GHz,2349 -2871,Intel Core i3-6157U @ 2.40GHz,2753 -5179,Intel Core i3-6167U @ 2.70GHz,3255 -2621,Intel Core i3-6300 @ 3.80GHz,4349 -2626,Intel Core i3-6300T @ 3.30GHz,3999 -2625,Intel Core i3-6320 @ 3.90GHz,4506 -3255,Intel Core i3-7020U @ 2.30GHz,2573 -2924,Intel Core i3-7100 @ 3.90GHz,4347 -3114,Intel Core i3-7100H @ 3.00GHz,3430 -2953,Intel Core i3-7100T @ 3.40GHz,3786 -2879,Intel Core i3-7100U @ 2.40GHz,2720 -3655,Intel Core i3-7101E @ 3.90GHz,4430 -3105,Intel Core i3-7101TE @ 3.40GHz,3949 -3469,Intel Core i3-7102E @ 2.10GHz,2521 -3120,Intel Core i3-7130U @ 2.70GHz,3022 -3370,Intel Core i3-7167U @ 2.80GHz,3368 -2923,Intel Core i3-7300 @ 4.00GHz,4530 -3021,Intel Core i3-7300T @ 3.50GHz,4211 -2941,Intel Core i3-7320 @ 4.10GHz,4844 -2930,Intel Core i3-7350K @ 4.20GHz,4943 -3103,Intel Core i3-8100 @ 3.60GHz,6139 -3406,Intel Core i3-8100B @ 3.60GHz,6045 -3304,Intel Core i3-8100T @ 3.10GHz,5298 -3333,Intel Core i3-8109U @ 3.00GHz,4245 -3368,Intel Core i3-8121U @ 2.20GHz,4388 -3225,Intel Core i3-8130U @ 2.20GHz,3591 -4680,Intel Core i3-8140U @ 2.10GHz,4227 -3349,Intel Core i3-8145U @ 2.10GHz,3806 -3825,Intel Core i3-8145UE @ 2.20GHz,4099 -3280,Intel Core i3-8300 @ 3.70GHz,6343 -3285,Intel Core i3-8300T @ 3.20GHz,5733 -3102,Intel Core i3-8350K @ 4.00GHz,6882 -3479,Intel Core i3-9100 @ 3.60GHz,6621 -5712,Intel Core i3-9100E @ 3.10GHz,6868 -3461,Intel Core i3-9100F @ 3.60GHz,6746 -5774,Intel Core i3-9100HL @ 1.60GHz,3065 -3488,Intel Core i3-9100T @ 3.10GHz,5577 -3893,Intel Core i3-9100TE @ 2.20GHz,4501 -3510,Intel Core i3-9300 @ 3.70GHz,7171 -3509,Intel Core i3-9300T @ 3.20GHz,6164 -3539,Intel Core i3-9320 @ 3.70GHz,7358 -3709,Intel Core i3-9350K @ 4.00GHz,7700 -3459,Intel Core i3-9350KF @ 4.00GHz,7552 -5602,Intel Core i3-N300,8475 -5213,Intel Core i3-N305,9978 -1659,Intel Core i5 750S @ 2.40GHz,1326 -2007,Intel Core i5 E 520 @ 2.40GHz,1619 -3867,Intel Core i5-10200H @ 2.40GHz,8172 -3542,Intel Core i5-10210U @ 1.60GHz,6228 -3643,Intel Core i5-10210Y @ 1.00GHz,4514 -3646,Intel Core i5-10300H @ 2.50GHz,8474 -3695,Intel Core i5-1030NG7 @ 1.10GHz,5775 -3698,Intel Core i5-10310U @ 1.70GHz,6436 -3558,Intel Core i5-1035G1 @ 1.00GHz,7460 -3581,Intel Core i5-1035G4 @ 1.10GHz,7985 -3582,Intel Core i5-1035G7 @ 1.20GHz,8307 -3723,Intel Core i5-1038NG7 @ 2.00GHz,9121 -3737,Intel Core i5-10400 @ 2.90GHz,12166 -3767,Intel Core i5-10400F @ 2.90GHz,12224 -3775,Intel Core i5-10400H @ 2.60GHz,8553 -3826,Intel Core i5-10400T @ 2.00GHz,9947 -3749,Intel Core i5-10500 @ 3.10GHz,12773 -4874,Intel Core i5-10500E @ 3.10GHz,10827 -4158,Intel Core i5-10500H @ 2.50GHz,11287 -3768,Intel Core i5-10500T @ 2.30GHz,10073 -4849,Intel Core i5-10500TE @ 2.30GHz,8449 -4372,Intel Core i5-10505 @ 3.20GHz,12241 -3750,Intel Core i5-10600 @ 3.30GHz,13676 -3735,Intel Core i5-10600K @ 4.10GHz,14353 -3810,Intel Core i5-10600KF @ 4.10GHz,14350 -3834,Intel Core i5-10600T @ 2.40GHz,11234 -4477,Intel Core i5-11260H @ 2.60GHz,15822 -4279,Intel Core i5-11300H @ 3.10GHz,10985 -4049,Intel Core i5-1130G7 @ 1.10GHz,8641 -4593,Intel Core i5-11320H @ 3.20GHz,10961 -3830,Intel Core i5-1135G7 @ 2.40GHz,9891 -4233,Intel Core i5-11400 @ 2.60GHz,17094 -4226,Intel Core i5-11400F @ 2.60GHz,17113 -4457,Intel Core i5-11400H @ 2.70GHz,15822 -4406,Intel Core i5-11400T @ 1.30GHz,13644 -4144,Intel Core i5-1140G7 @ 1.10GHz,9606 -3922,Intel Core i5-1145G7 @ 2.60GHz,9970 -4396,Intel Core i5-1145G7E @ 2.60GHz,9908 -4741,Intel Core i5-1145GRE @ 2.60GHz,9428 -4238,Intel Core i5-11500 @ 2.70GHz,17455 -4632,Intel Core i5-11500B @ 3.30GHz,17860 -4399,Intel Core i5-11500H @ 2.90GHz,16211 -4526,Intel Core i5-11500T @ 1.50GHz,13075 -4582,Intel Core i5-1155G7 @ 2.50GHz,10278 -4306,Intel Core i5-11600 @ 2.80GHz,18115 -4236,Intel Core i5-11600K @ 3.90GHz,19667 -4261,Intel Core i5-11600KF @ 3.90GHz,19680 -4607,Intel Core i5-11600T @ 1.70GHz,14713 -4890,Intel Core i5-1230U,10779 -4765,Intel Core i5-1235U,13546 -4677,Intel Core i5-12400,19455 -4681,Intel Core i5-12400F,19559 -4980,Intel Core i5-12400T,16226 -4759,Intel Core i5-1240P,17320 -5089,Intel Core i5-1240U,14323 -4727,Intel Core i5-12450H,17456 -5785,Intel Core i5-12450HX,19032 -4733,Intel Core i5-1245U,13481 -5035,Intel Core i5-1245UE,9283 -4903,Intel Core i5-12490F,20600 -4675,Intel Core i5-12500,19979 -5224,Intel Core i5-12500E,20699 -4750,Intel Core i5-12500H,21521 -4804,Intel Core i5-12500T,16682 -4957,Intel Core i5-12500TE,14501 -4719,Intel Core i5-1250P,20536 -5339,Intel Core i5-1250PE,17738 -4688,Intel Core i5-12600,21384 -4835,Intel Core i5-12600H,23062 -5536,Intel Core i5-12600HE,24599 -4912,Intel Core i5-12600HX,24039 -4603,Intel Core i5-12600K,27789 -4625,Intel Core i5-12600KF,27440 -4784,Intel Core i5-12600T,17547 -5496,Intel Core i5-1334U,12802 -5294,Intel Core i5-1335U,16929 -4994,Intel Core i5-13400,25210 -5166,Intel Core i5-13400F,25414 -5328,Intel Core i5-13400T,21493 -5237,Intel Core i5-1340P,20204 -5434,Intel Core i5-13420H,18861 -5483,Intel Core i5-13450HX,25568 -5276,Intel Core i5-1345U,15348 -5412,Intel Core i5-13490F,27783 -4993,Intel Core i5-13500,32260 -5151,Intel Core i5-13500H,23289 -5484,Intel Core i5-13500HX,28197 -5239,Intel Core i5-13500T,24298 -5417,Intel Core i5-1350P,20843 -5159,Intel Core i5-13600,32745 -5376,Intel Core i5-13600H,25569 -5382,Intel Core i5-13600HX,29621 -5008,Intel Core i5-13600K,38253 -5059,Intel Core i5-13600KF,38076 -5175,Intel Core i5-13600T,26876 -5720,Intel Core i5-14600K,39428 -5722,Intel Core i5-14600KF,38982 -788,Intel Core i5-2300 @ 2.80GHz,3416 -789,Intel Core i5-2310 @ 2.90GHz,3642 -790,Intel Core i5-2320 @ 3.00GHz,3652 -791,Intel Core i5-2380P @ 3.10GHz,3797 -792,Intel Core i5-2390T @ 2.70GHz,2410 -793,Intel Core i5-2400 @ 3.10GHz,3859 -794,Intel Core i5-2400S @ 2.50GHz,3149 -1958,Intel Core i5-24050S @ 2.50GHz,3061 -795,Intel Core i5-2405S @ 2.50GHz,3157 -796,Intel Core i5-2410M @ 2.30GHz,1937 -797,Intel Core i5-2415M @ 2.30GHz,2012 -798,Intel Core i5-2430M @ 2.40GHz,2001 -799,Intel Core i5-2435M @ 2.40GHz,2059 -800,Intel Core i5-2450M @ 2.50GHz,2069 -801,Intel Core i5-2450P @ 3.20GHz,4203 -802,Intel Core i5-2467M @ 1.60GHz,1446 -803,Intel Core i5-2500 @ 3.30GHz,4122 -804,Intel Core i5-2500K @ 3.30GHz,4118 -805,Intel Core i5-2500S @ 2.70GHz,3380 -806,Intel Core i5-2500T @ 2.30GHz,2929 -807,Intel Core i5-2510E @ 2.50GHz,1889 -808,Intel Core i5-2515E @ 2.50GHz,1882 -809,Intel Core i5-2520M @ 2.50GHz,2230 -810,Intel Core i5-2537M @ 1.40GHz,1202 -812,Intel Core i5-2540M @ 2.60GHz,2352 -813,Intel Core i5-2550K @ 3.40GHz,4099 -814,Intel Core i5-2557M @ 1.70GHz,1713 -2282,Intel Core i5-2560M @ 2.70GHz,2397 -2242,Intel Core i5-3170K @ 3.20GHz,8882 -815,Intel Core i5-3210M @ 2.50GHz,2471 -1849,Intel Core i5-3230M @ 2.60GHz,2553 -816,Intel Core i5-3317U @ 1.70GHz,2010 -817,Intel Core i5-3320M @ 2.60GHz,2660 -1475,Intel Core i5-3330 @ 3.00GHz,4087 -1794,Intel Core i5-3330S @ 2.70GHz,3870 -1811,Intel Core i5-3335S @ 2.70GHz,4074 -1850,Intel Core i5-3337U @ 1.80GHz,2100 -1984,Intel Core i5-3339Y @ 1.50GHz,1589 -2071,Intel Core i5-3340 @ 3.10GHz,4249 -1889,Intel Core i5-3340M @ 2.70GHz,2695 -2090,Intel Core i5-3340S @ 2.80GHz,3914 -1476,Intel Core i5-3350P @ 3.10GHz,4263 -818,Intel Core i5-3360M @ 2.80GHz,2883 -1973,Intel Core i5-3380M @ 2.90GHz,2933 -819,Intel Core i5-3427U @ 1.80GHz,2247 -1828,Intel Core i5-3437U @ 1.90GHz,2330 -2050,Intel Core i5-3439Y @ 1.50GHz,1907 -820,Intel Core i5-3450 @ 3.10GHz,4491 -821,Intel Core i5-3450S @ 2.80GHz,4375 -822,Intel Core i5-3470 @ 3.20GHz,4674 -823,Intel Core i5-3470S @ 2.90GHz,4395 -824,Intel Core i5-3470T @ 2.90GHz,2983 -1775,Intel Core i5-3475S @ 2.90GHz,4250 -825,Intel Core i5-3550 @ 3.30GHz,4795 -826,Intel Core i5-3550S @ 3.00GHz,4475 -827,Intel Core i5-3570 @ 3.40GHz,4917 -828,Intel Core i5-3570K @ 3.40GHz,4956 -829,Intel Core i5-3570S @ 3.10GHz,4630 -1477,Intel Core i5-3570T @ 2.30GHz,4107 -1859,Intel Core i5-3610ME @ 2.70GHz,2666 -2142,Intel Core i5-4200H @ 2.80GHz,3108 -2016,Intel Core i5-4200M @ 2.50GHz,2810 -1947,Intel Core i5-4200U @ 1.60GHz,2187 -2101,Intel Core i5-4200Y @ 1.40GHz,1558 -2162,Intel Core i5-4202Y @ 1.60GHz,1498 -2348,Intel Core i5-4210H @ 2.90GHz,3044 -2245,Intel Core i5-4210M @ 2.60GHz,2882 -2259,Intel Core i5-4210U @ 1.70GHz,2304 -2032,Intel Core i5-4210Y @ 1.50GHz,1577 -2532,Intel Core i5-4220Y @ 1.60GHz,1591 -3171,Intel Core i5-4230U @ 1.90GHz,1853 -1944,Intel Core i5-4250U @ 1.30GHz,2163 -2069,Intel Core i5-4258U @ 2.40GHz,2591 -2238,Intel Core i5-4260U @ 1.40GHz,2327 -2312,Intel Core i5-4278U @ 2.60GHz,2830 -2074,Intel Core i5-4288U @ 2.60GHz,2654 -2095,Intel Core i5-4300M @ 2.60GHz,2991 -2054,Intel Core i5-4300U @ 1.90GHz,2499 -2089,Intel Core i5-4300Y @ 1.60GHz,1466 -2144,Intel Core i5-4302Y @ 1.60GHz,2028 -2428,Intel Core i5-4308U @ 2.80GHz,3005 -775,Intel Core i5-430M @ 2.27GHz,1197 -783,Intel Core i5-430UM @ 1.20GHz,627 -2235,Intel Core i5-4310M @ 2.70GHz,3123 -2207,Intel Core i5-4310U @ 2.00GHz,2542 -2055,Intel Core i5-4330M @ 2.80GHz,3203 -2274,Intel Core i5-4340M @ 2.90GHz,3471 -2010,Intel Core i5-4350U @ 1.40GHz,2425 -2188,Intel Core i5-4400E @ 2.70GHz,3251 -2697,Intel Core i5-4402E @ 1.60GHz,2681 -3138,Intel Core i5-4422E @ 1.80GHz,1907 -1924,Intel Core i5-4430 @ 3.00GHz,4657 -2111,Intel Core i5-4430S @ 2.70GHz,4304 -2017,Intel Core i5-4440 @ 3.10GHz,4756 -2119,Intel Core i5-4440S @ 2.80GHz,4375 -2230,Intel Core i5-4460 @ 3.20GHz,4878 -2232,Intel Core i5-4460S @ 2.90GHz,4573 -2370,Intel Core i5-4460T @ 1.90GHz,3640 -5049,Intel Core i5-4470 @ 3.30GHz,3971 -3840,Intel Core i5-4470S @ 3.00GHz,4742 -3,Intel Core i5-450M @ 2.40GHz,1233 -1896,Intel Core i5-4570 @ 3.20GHz,5222 -2065,Intel Core i5-4570R @ 2.70GHz,4578 -1925,Intel Core i5-4570S @ 2.90GHz,4995 -2041,Intel Core i5-4570T @ 2.90GHz,3207 -2338,Intel Core i5-4570TE @ 2.70GHz,3074 -2234,Intel Core i5-4590 @ 3.30GHz,5364 -2227,Intel Core i5-4590S @ 3.00GHz,5126 -2276,Intel Core i5-4590T @ 2.00GHz,4074 -776,Intel Core i5-460M @ 2.53GHz,1300 -1933,Intel Core i5-4670 @ 3.40GHz,5530 -1921,Intel Core i5-4670K @ 3.40GHz,5557 -2452,Intel Core i5-4670K CPT @ 3.40GHz,5034 -3294,Intel Core i5-4670R @ 3.00GHz,5233 -2004,Intel Core i5-4670S @ 3.10GHz,5130 -1966,Intel Core i5-4670T @ 2.30GHz,4428 -2236,Intel Core i5-4690 @ 3.50GHz,5577 -2284,Intel Core i5-4690K @ 3.50GHz,5686 -2241,Intel Core i5-4690S @ 3.20GHz,5504 -2437,Intel Core i5-4690T @ 2.50GHz,4667 -784,Intel Core i5-470UM @ 1.33GHz,778 -777,Intel Core i5-480M @ 2.67GHz,1325 -2440,Intel Core i5-5200U @ 2.20GHz,2502 -778,Intel Core i5-520M @ 2.40GHz,1722 -785,Intel Core i5-520UM @ 1.07GHz,908 -2478,Intel Core i5-5250U @ 1.60GHz,2466 -2504,Intel Core i5-5257U @ 2.70GHz,2861 -2575,Intel Core i5-5287U @ 2.90GHz,3101 -2459,Intel Core i5-5300U @ 2.30GHz,2736 -2530,Intel Core i5-5350U @ 1.80GHz,2584 -779,Intel Core i5-540M @ 2.53GHz,1792 -786,Intel Core i5-540UM @ 1.20GHz,1002 -2683,Intel Core i5-5575R @ 2.80GHz,5064 -780,Intel Core i5-560M @ 2.67GHz,1901 -787,Intel Core i5-560UM @ 1.33GHz,1015 -2563,Intel Core i5-5675C @ 3.10GHz,5546 -2813,Intel Core i5-5675R @ 3.10GHz,5492 -781,Intel Core i5-580M @ 2.67GHz,1931 -2854,Intel Core i5-6198DU @ 2.30GHz,3161 -2556,Intel Core i5-6200U @ 2.30GHz,2999 -2671,Intel Core i5-6260U @ 1.80GHz,3213 -2757,Intel Core i5-6267U @ 2.90GHz,3420 -3109,Intel Core i5-6287U @ 3.10GHz,3826 -2632,Intel Core i5-6300HQ @ 2.30GHz,4693 -2609,Intel Core i5-6300U @ 2.40GHz,3240 -4554,Intel Core i5-6350HQ @ 2.30GHz,4255 -2932,Intel Core i5-6360U @ 2.00GHz,3119 -2578,Intel Core i5-6400 @ 2.70GHz,5166 -2668,Intel Core i5-6400T @ 2.20GHz,4298 -2754,Intel Core i5-6402P @ 2.80GHz,5462 -2868,Intel Core i5-6440EQ @ 2.70GHz,5419 -2691,Intel Core i5-6440HQ @ 2.60GHz,5090 -3544,Intel Core i5-6442EQ @ 1.90GHz,4548 -767,Intel Core i5-650 @ 3.20GHz,2243 -2599,Intel Core i5-6500 @ 3.20GHz,5634 -2627,Intel Core i5-6500T @ 2.50GHz,4774 -2680,Intel Core i5-6500TE @ 2.30GHz,4724 -774,Intel Core i5-655K @ 3.20GHz,2017 -768,Intel Core i5-660 @ 3.33GHz,2382 -2594,Intel Core i5-6600 @ 3.30GHz,6039 -2570,Intel Core i5-6600K @ 3.50GHz,6328 -2613,Intel Core i5-6600T @ 2.70GHz,5674 -769,Intel Core i5-661 @ 3.33GHz,2459 -770,Intel Core i5-670 @ 3.47GHz,2533 -771,Intel Core i5-680 @ 3.60GHz,2618 -2865,Intel Core i5-7200U @ 2.50GHz,3395 -2993,Intel Core i5-7260U @ 2.20GHz,3976 -3051,Intel Core i5-7267U @ 3.10GHz,3644 -3272,Intel Core i5-7287U @ 3.30GHz,3854 -2922,Intel Core i5-7300HQ @ 2.50GHz,5096 -2955,Intel Core i5-7300U @ 2.60GHz,3680 -3036,Intel Core i5-7360U @ 2.30GHz,3892 -2929,Intel Core i5-7400 @ 3.00GHz,5488 -2889,Intel Core i5-7400T @ 2.40GHz,4722 -4013,Intel Core i5-7440EQ @ 2.90GHz,5711 -2962,Intel Core i5-7440HQ @ 2.80GHz,5542 -3392,Intel Core i5-7442EQ @ 2.10GHz,4834 -772,Intel Core i5-750 @ 2.67GHz,2521 -2910,Intel Core i5-7500 @ 3.40GHz,6027 -2917,Intel Core i5-7500T @ 2.70GHz,5252 -773,Intel Core i5-760 @ 2.80GHz,2608 -2920,Intel Core i5-7600 @ 3.50GHz,6564 -2919,Intel Core i5-7600K @ 3.80GHz,6806 -2928,Intel Core i5-7600T @ 2.80GHz,5882 -782,Intel Core i5-760S @ 2.53GHz,5440 -3045,Intel Core i5-7640X @ 4.00GHz,6844 -2873,Intel Core i5-7Y54 @ 1.20GHz,2734 -2956,Intel Core i5-7Y57 @ 1.20GHz,2609 -3372,Intel Core i5-8200Y @ 1.30GHz,2327 -3402,Intel Core i5-8210Y @ 1.60GHz,2786 -3042,Intel Core i5-8250U @ 1.60GHz,5897 -3605,Intel Core i5-8257U @ 1.40GHz,7605 -3299,Intel Core i5-8259U @ 2.30GHz,7937 -3724,Intel Core i5-8260U @ 1.60GHz,7727 -3323,Intel Core i5-8265U @ 1.60GHz,6023 -3449,Intel Core i5-8265UC @ 1.60GHz,5988 -4262,Intel Core i5-8269U @ 2.60GHz,8055 -3552,Intel Core i5-8279U @ 2.40GHz,7615 -3254,Intel Core i5-8300H @ 2.30GHz,7459 -3291,Intel Core i5-8305G @ 2.80GHz,6951 -3150,Intel Core i5-8350U @ 1.70GHz,6226 -3447,Intel Core i5-8365U @ 1.60GHz,6245 -3594,Intel Core i5-8365UE @ 1.60GHz,5711 -3097,Intel Core i5-8400 @ 2.80GHz,9242 -3286,Intel Core i5-8400H @ 2.50GHz,7731 -3260,Intel Core i5-8400T @ 1.70GHz,7444 -3223,Intel Core i5-8500 @ 3.00GHz,9588 -3382,Intel Core i5-8500B @ 3.00GHz,9009 -3231,Intel Core i5-8500T @ 2.10GHz,7744 -3251,Intel Core i5-8600 @ 3.10GHz,9978 -3100,Intel Core i5-8600K @ 3.60GHz,10202 -3241,Intel Core i5-8600T @ 2.30GHz,9299 -3448,Intel Core i5-9300H @ 2.40GHz,7648 -3706,Intel Core i5-9300HF @ 2.40GHz,7478 -3414,Intel Core i5-9400 @ 2.90GHz,9384 -3397,Intel Core i5-9400F @ 2.90GHz,9497 -3508,Intel Core i5-9400H @ 2.50GHz,7975 -3513,Intel Core i5-9400T @ 1.80GHz,8408 -3444,Intel Core i5-9500 @ 3.00GHz,9798 -3511,Intel Core i5-9500F @ 3.00GHz,10219 -3454,Intel Core i5-9500T @ 2.20GHz,8173 -3736,Intel Core i5-9500TE @ 2.20GHz,9848 -3554,Intel Core i5-9600 @ 3.10GHz,10304 -3337,Intel Core i5-9600K @ 3.70GHz,10715 -3443,Intel Core i5-9600KF @ 3.70GHz,10741 -3602,Intel Core i5-9600T @ 2.30GHz,9576 -3809,Intel Core i5-L16G7 @ 1.40GHz,3450 -3549,Intel Core i7-10510U @ 1.80GHz,6648 -3819,Intel Core i7-10510Y @ 1.20GHz,5100 -3727,Intel Core i7-1060NG7 @ 1.20GHz,6645 -3738,Intel Core i7-10610U @ 1.80GHz,6830 -3466,Intel Core i7-1065G7 @ 1.30GHz,8407 -3729,Intel Core i7-1068NG7 @ 2.30GHz,9582 -3747,Intel Core i7-10700 @ 2.90GHz,16552 -4652,Intel Core i7-10700E @ 2.90GHz,16418 -3806,Intel Core i7-10700F @ 2.90GHz,16555 -3733,Intel Core i7-10700K @ 3.80GHz,18916 -3757,Intel Core i7-10700KF @ 3.80GHz,18730 -3792,Intel Core i7-10700T @ 2.00GHz,12861 -4081,Intel Core i7-10700TE @ 2.00GHz,16332 -3567,Intel Core i7-10710U @ 1.10GHz,9717 -3657,Intel Core i7-10750H @ 2.60GHz,12012 -3741,Intel Core i7-10810U @ 1.10GHz,8276 -3734,Intel Core i7-10850H @ 2.70GHz,11877 -3856,Intel Core i7-10870H @ 2.20GHz,14597 -3726,Intel Core i7-10875H @ 2.30GHz,15018 -4048,Intel Core i7-11370H @ 3.30GHz,11760 -4157,Intel Core i7-11375H @ 3.30GHz,11975 -4619,Intel Core i7-11390H @ 3.40GHz,10329 -4629,Intel Core i7-11600H @ 2.90GHz,16162 -3911,Intel Core i7-1160G7 @ 1.20GHz,9173 -3814,Intel Core i7-1165G7 @ 2.80GHz,10347 -3947,Intel Core i7-11700 @ 2.50GHz,19982 -4601,Intel Core i7-11700B @ 3.20GHz,22851 -4264,Intel Core i7-11700F @ 2.50GHz,21114 -3896,Intel Core i7-11700K @ 3.60GHz,24673 -4234,Intel Core i7-11700KF @ 3.60GHz,24057 -4558,Intel Core i7-11700T @ 1.40GHz,16228 -4358,Intel Core i7-11800H @ 2.30GHz,20753 -4123,Intel Core i7-1180G7 @ 1.30GHz,8270 -4342,Intel Core i7-11850H @ 2.50GHz,20732 -5056,Intel Core i7-11850HE @ 2.60GHz,16409 -3793,Intel Core i7-1185G7 @ 3.00GHz,10553 -4298,Intel Core i7-1185G7E @ 2.80GHz,10444 -4305,Intel Core i7-1185GRE @ 2.80GHz,8203 -4514,Intel Core i7-1195G7 @ 2.90GHz,11034 -4977,Intel Core i7-1250U,12421 -4794,Intel Core i7-1255U,13772 -4707,Intel Core i7-1260P,17231 -4999,Intel Core i7-1260U,13707 -4771,Intel Core i7-12650H,23281 -4766,Intel Core i7-1265U,14042 -5093,Intel Core i7-1265UE,9195 -4669,Intel Core i7-12700,30876 -5018,Intel Core i7-12700E,29289 -4692,Intel Core i7-12700F,30873 -4721,Intel Core i7-12700H,26424 -4609,Intel Core i7-12700K,34709 -4608,Intel Core i7-12700KF,34464 -4830,Intel Core i7-12700T,21833 -4958,Intel Core i7-12700TE,15616 -4720,Intel Core i7-1270P,17546 -5580,Intel Core i7-1270PE,17960 -4778,Intel Core i7-12800H,24971 -5184,Intel Core i7-12800HE,29805 -4904,Intel Core i7-12800HX,32744 -4783,Intel Core i7-1280P,20450 -4913,Intel Core i7-12850HX,30459 -5317,Intel Core i7-1355U,15294 -5198,Intel Core i7-1360P,19309 -5283,Intel Core i7-13620H,26489 -5253,Intel Core i7-13650HX,32152 -5266,Intel Core i7-1365U,15451 -5807,Intel Core i7-1365URE,11181 -4992,Intel Core i7-13700,38321 -5163,Intel Core i7-13700F,39531 -5226,Intel Core i7-13700H,27890 -5238,Intel Core i7-13700HX,34110 -5060,Intel Core i7-13700K,46665 -5061,Intel Core i7-13700KF,46461 -5223,Intel Core i7-13700T,28664 -5640,Intel Core i7-13700TE,27933 -5538,Intel Core i7-13705H,23728 -5129,Intel Core i7-1370P,21088 -5611,Intel Core i7-13790F,46110 -5246,Intel Core i7-13800H,27476 -5288,Intel Core i7-13850HX,38563 -5697,Intel Core i7-14700HX,37546 -5719,Intel Core i7-14700K,53409 -5723,Intel Core i7-14700KF,53454 -1,Intel Core i7-2600 @ 3.40GHz,5331 -868,Intel Core i7-2600K @ 3.40GHz,5493 -869,Intel Core i7-2600S @ 2.80GHz,4628 -870,Intel Core i7-2610UE @ 1.50GHz,1409 -871,Intel Core i7-2617M @ 1.50GHz,1687 -872,Intel Core i7-2620M @ 2.70GHz,2443 -873,Intel Core i7-2630QM @ 2.00GHz,3557 -2013,Intel Core i7-2630UM @ 1.60GHz,400 -874,Intel Core i7-2635QM @ 2.00GHz,3323 -875,Intel Core i7-2637M @ 1.70GHz,1831 -876,Intel Core i7-2640M @ 2.80GHz,2495 -877,Intel Core i7-2655LE @ 2.20GHz,1999 -878,Intel Core i7-2670QM @ 2.20GHz,3769 -879,Intel Core i7-2675QM @ 2.20GHz,3885 -880,Intel Core i7-2677M @ 1.80GHz,1934 -881,Intel Core i7-2700K @ 3.50GHz,5750 -882,Intel Core i7-2710QE @ 2.10GHz,4044 -1478,Intel Core i7-2715QE @ 2.10GHz,3221 -883,Intel Core i7-2720QM @ 2.20GHz,4034 -884,Intel Core i7-2760QM @ 2.40GHz,4396 -885,Intel Core i7-2820QM @ 2.30GHz,4382 -1479,Intel Core i7-2840QM @ 2.40GHz,3842 -886,Intel Core i7-2860QM @ 2.50GHz,4558 -887,Intel Core i7-2920XM @ 2.50GHz,4384 -888,Intel Core i7-2960XM @ 2.70GHz,4760 -889,Intel Core i7-3517U @ 1.90GHz,2049 -1435,Intel Core i7-3517UE @ 1.70GHz,2320 -890,Intel Core i7-3520M @ 2.90GHz,2868 -1845,Intel Core i7-3537U @ 2.00GHz,2320 -1857,Intel Core i7-3540M @ 3.00GHz,2957 -1895,Intel Core i7-3555LE @ 2.50GHz,2238 -1792,Intel Core i7-3610QE @ 2.30GHz,5026 -891,Intel Core i7-3610QM @ 2.30GHz,5110 -1666,Intel Core i7-3612QE @ 2.10GHz,4929 -892,Intel Core i7-3612QM @ 2.10GHz,4649 -1888,Intel Core i7-3615QE @ 2.30GHz,5548 -893,Intel Core i7-3615QM @ 2.30GHz,5223 -1444,Intel Core i7-3630QM @ 2.40GHz,5121 -1480,Intel Core i7-3632QM @ 2.20GHz,4679 -1784,Intel Core i7-3635QM @ 2.40GHz,4726 -894,Intel Core i7-3667U @ 2.00GHz,2420 -1840,Intel Core i7-3687U @ 2.10GHz,2625 -2037,Intel Core i7-3689Y @ 1.50GHz,1967 -895,Intel Core i7-3720QM @ 2.60GHz,5659 -1481,Intel Core i7-3740QM @ 2.70GHz,5699 -896,Intel Core i7-3770 @ 3.40GHz,6403 -2,Intel Core i7-3770K @ 3.50GHz,6467 -897,Intel Core i7-3770S @ 3.10GHz,6183 -898,Intel Core i7-3770T @ 2.50GHz,5444 -8,Intel Core i7-3820 @ 3.60GHz,5749 -899,Intel Core i7-3820QM @ 2.70GHz,5696 -900,Intel Core i7-3840QM @ 2.80GHz,5900 -901,Intel Core i7-3920XM @ 2.90GHz,5651 -902,Intel Core i7-3930K @ 3.20GHz,8202 -1482,Intel Core i7-3940XM @ 3.00GHz,5742 -903,Intel Core i7-3960X @ 3.30GHz,8391 -1799,Intel Core i7-3970X @ 3.50GHz,8408 -1937,Intel Core i7-4500U @ 1.80GHz,2482 -2248,Intel Core i7-4510U @ 2.00GHz,2584 -2168,Intel Core i7-4550U @ 1.50GHz,2272 -2094,Intel Core i7-4558U @ 2.80GHz,3052 -2719,Intel Core i7-4560U @ 1.60GHz,2950 -2345,Intel Core i7-4578U @ 3.00GHz,3085 -2056,Intel Core i7-4600M @ 2.90GHz,3169 -2033,Intel Core i7-4600U @ 2.10GHz,2703 -2261,Intel Core i7-4610M @ 3.00GHz,3171 -2092,Intel Core i7-4610Y @ 1.70GHz,2446 -1955,Intel Core i7-4650U @ 1.70GHz,2392 -1897,Intel Core i7-4700EQ @ 2.40GHz,4941 -1949,Intel Core i7-4700HQ @ 2.40GHz,5641 -1923,Intel Core i7-4700MQ @ 2.40GHz,5368 -2046,Intel Core i7-4702HQ @ 2.20GHz,5334 -1939,Intel Core i7-4702MQ @ 2.20GHz,5198 -2243,Intel Core i7-4710HQ @ 2.50GHz,5516 -2219,Intel Core i7-4710MQ @ 2.50GHz,5832 -2281,Intel Core i7-4712HQ @ 2.30GHz,5354 -2228,Intel Core i7-4712MQ @ 2.30GHz,5279 -2448,Intel Core i7-4720HQ @ 2.60GHz,5762 -2562,Intel Core i7-4722HQ @ 2.40GHz,5620 -1957,Intel Core i7-4750HQ @ 2.00GHz,5631 -2378,Intel Core i7-4760HQ @ 2.10GHz,6300 -2067,Intel Core i7-4765T @ 2.00GHz,5111 -1907,Intel Core i7-4770 @ 3.40GHz,7050 -2399,Intel Core i7-4770HQ @ 2.20GHz,6089 -1919,Intel Core i7-4770K @ 3.50GHz,7127 -2137,Intel Core i7-4770R @ 3.20GHz,6620 -1884,Intel Core i7-4770S @ 3.10GHz,6776 -2006,Intel Core i7-4770T @ 2.50GHz,5917 -2561,Intel Core i7-4770TE @ 2.30GHz,4557 -2027,Intel Core i7-4771 @ 3.50GHz,7124 -2260,Intel Core i7-4785T @ 2.20GHz,5501 -2226,Intel Core i7-4790 @ 3.60GHz,7261 -2275,Intel Core i7-4790K @ 4.00GHz,8065 -2258,Intel Core i7-4790S @ 3.20GHz,7006 -2253,Intel Core i7-4790T @ 2.70GHz,6359 -1927,Intel Core i7-4800MQ @ 2.70GHz,5801 -2196,Intel Core i7-4810MQ @ 2.80GHz,6063 -2030,Intel Core i7-4820K @ 3.70GHz,6518 -2070,Intel Core i7-4850HQ @ 2.30GHz,6164 -2661,Intel Core i7-4860EQ @ 1.80GHz,5500 -2319,Intel Core i7-4860HQ @ 2.40GHz,6242 -2314,Intel Core i7-4870HQ @ 2.50GHz,6362 -1938,Intel Core i7-4900MQ @ 2.80GHz,6153 -2220,Intel Core i7-4910MQ @ 2.90GHz,6326 -2023,Intel Core i7-4930K @ 3.40GHz,9420 -1985,Intel Core i7-4930MX @ 3.00GHz,6491 -2186,Intel Core i7-4940MX @ 3.10GHz,7075 -2087,Intel Core i7-4960HQ @ 2.60GHz,6611 -2026,Intel Core i7-4960X @ 3.60GHz,10089 -2327,Intel Core i7-4980HQ @ 2.80GHz,6640 -2470,Intel Core i7-5500U @ 2.40GHz,2776 -2749,Intel Core i7-5550U @ 2.00GHz,2864 -2502,Intel Core i7-5557U @ 3.10GHz,3089 -2456,Intel Core i7-5600U @ 2.60GHz,3030 -2503,Intel Core i7-5650U @ 2.20GHz,3014 -2635,Intel Core i7-5675C @ 3.10GHz,6089 -2573,Intel Core i7-5700EQ @ 2.60GHz,5803 -2533,Intel Core i7-5700HQ @ 2.70GHz,6026 -2539,Intel Core i7-5775C @ 3.30GHz,7694 -2767,Intel Core i7-5775R @ 3.30GHz,7788 -2340,Intel Core i7-5820K @ 3.30GHz,9859 -3357,Intel Core i7-5850EQ @ 2.70GHz,7036 -2681,Intel Core i7-5850HQ @ 2.70GHz,6866 -2336,Intel Core i7-5930K @ 3.50GHz,10337 -2543,Intel Core i7-5950HQ @ 2.90GHz,7696 -2332,Intel Core i7-5960X @ 3.00GHz,12740 -845,Intel Core i7-610E @ 2.53GHz,1818 -847,Intel Core i7-620LM @ 2.00GHz,1440 -849,Intel Core i7-620M @ 2.67GHz,1985 -857,Intel Core i7-620UM @ 1.07GHz,1010 -848,Intel Core i7-640LM @ 2.13GHz,1495 -850,Intel Core i7-640M @ 2.80GHz,2064 -858,Intel Core i7-640UM @ 1.20GHz,1183 -2887,Intel Core i7-6498DU @ 2.50GHz,3454 -2607,Intel Core i7-6500U @ 2.50GHz,3275 -2710,Intel Core i7-6560U @ 2.20GHz,3337 -2713,Intel Core i7-6567U @ 3.30GHz,3750 -2608,Intel Core i7-6600U @ 2.60GHz,3445 -859,Intel Core i7-660UM @ 1.33GHz,1284 -2654,Intel Core i7-6650U @ 2.20GHz,3610 -3303,Intel Core i7-6660U @ 2.40GHz,3549 -2598,Intel Core i7-6700 @ 3.40GHz,8091 -2586,Intel Core i7-6700HQ @ 2.60GHz,6526 -2565,Intel Core i7-6700K @ 4.00GHz,8939 -2614,Intel Core i7-6700T @ 2.80GHz,7236 -2815,Intel Core i7-6700TE @ 2.40GHz,6801 -2759,Intel Core i7-6770HQ @ 2.60GHz,7101 -2785,Intel Core i7-6800K @ 3.40GHz,10754 -860,Intel Core i7-680UM @ 1.47GHz,1196 -2819,Intel Core i7-6820EQ @ 2.80GHz,7001 -2616,Intel Core i7-6820HK @ 2.70GHz,7038 -2659,Intel Core i7-6820HQ @ 2.70GHz,6830 -2709,Intel Core i7-6822EQ @ 2.00GHz,5241 -2800,Intel Core i7-6850K @ 3.60GHz,11454 -2794,Intel Core i7-6900K @ 3.20GHz,14583 -2699,Intel Core i7-6920HQ @ 2.90GHz,7303 -2792,Intel Core i7-6950X @ 3.00GHz,17496 -5678,Intel Core i7-6970HQ @ 2.80GHz,4632 -851,Intel Core i7-720QM @ 1.60GHz,1660 -852,Intel Core i7-740QM @ 1.73GHz,1820 -2863,Intel Core i7-7500U @ 2.70GHz,3652 -2974,Intel Core i7-7560U @ 2.40GHz,3761 -2990,Intel Core i7-7567U @ 3.50GHz,4139 -2936,Intel Core i7-7600U @ 2.80GHz,3720 -3016,Intel Core i7-7660U @ 2.50GHz,4107 -2905,Intel Core i7-7700 @ 3.60GHz,8659 -2906,Intel Core i7-7700HQ @ 2.80GHz,6926 -2874,Intel Core i7-7700K @ 4.20GHz,9657 -2951,Intel Core i7-7700T @ 2.90GHz,7565 -3041,Intel Core i7-7740X @ 4.30GHz,9868 -3037,Intel Core i7-7800X @ 3.50GHz,12836 -3470,Intel Core i7-7820EQ @ 3.00GHz,7453 -2938,Intel Core i7-7820HK @ 2.90GHz,7406 -2952,Intel Core i7-7820HQ @ 2.90GHz,7177 -3038,Intel Core i7-7820X @ 3.60GHz,17226 -3056,Intel Core i7-7900X @ 3.30GHz,21008 -3007,Intel Core i7-7920HQ @ 3.10GHz,7452 -2880,Intel Core i7-7Y75 @ 1.30GHz,2625 -3279,Intel Core i7-8086K @ 4.00GHz,14345 -853,Intel Core i7-820QM @ 1.73GHz,1774 -854,Intel Core i7-840QM @ 1.87GHz,1937 -3338,Intel Core i7-8500Y @ 1.50GHz,2484 -3064,Intel Core i7-8550U @ 1.80GHz,5929 -3641,Intel Core i7-8557U @ 1.70GHz,7565 -3302,Intel Core i7-8559U @ 2.70GHz,8488 -3308,Intel Core i7-8565U @ 1.80GHz,6136 -3705,Intel Core i7-8565UC @ 1.80GHz,6187 -3672,Intel Core i7-8569U @ 2.80GHz,8210 -6,Intel Core i7-860 @ 2.80GHz,2978 -855,Intel Core i7-860S @ 2.53GHz,2403 -3070,Intel Core i7-8650U @ 1.90GHz,6288 -3434,Intel Core i7-8665U @ 1.90GHz,6256 -3611,Intel Core i7-8665UE @ 1.70GHz,5170 -832,Intel Core i7-870 @ 2.93GHz,3123 -3099,Intel Core i7-8700 @ 3.20GHz,12897 -3388,Intel Core i7-8700B @ 3.20GHz,11982 -3098,Intel Core i7-8700K @ 3.70GHz,13685 -3213,Intel Core i7-8700T @ 2.40GHz,10228 -3201,Intel Core i7-8705G @ 3.10GHz,7700 -3288,Intel Core i7-8706G @ 3.10GHz,8095 -3355,Intel Core i7-8709G @ 3.10GHz,7926 -856,Intel Core i7-870S @ 2.67GHz,2786 -3237,Intel Core i7-8750H @ 2.20GHz,9947 -846,Intel Core i7-875K @ 2.93GHz,3057 -833,Intel Core i7-880 @ 3.07GHz,3105 -3209,Intel Core i7-8809G @ 3.10GHz,8554 -3247,Intel Core i7-8850H @ 2.60GHz,10302 -834,Intel Core i7-920 @ 2.67GHz,2817 -864,Intel Core i7-920XM @ 2.00GHz,1885 -835,Intel Core i7-930 @ 2.80GHz,2950 -836,Intel Core i7-940 @ 2.93GHz,2947 -865,Intel Core i7-940XM @ 2.13GHz,2248 -837,Intel Core i7-950 @ 3.07GHz,3200 -838,Intel Core i7-960 @ 3.20GHz,3316 -839,Intel Core i7-965 @ 3.20GHz,3424 -840,Intel Core i7-970 @ 3.20GHz,6568 -3477,Intel Core i7-9700 @ 3.00GHz,13261 -3875,Intel Core i7-9700E @ 2.60GHz,12881 -3465,Intel Core i7-9700F @ 3.00GHz,13270 -3335,Intel Core i7-9700K @ 3.60GHz,14510 -3428,Intel Core i7-9700KF @ 3.60GHz,14372 -3506,Intel Core i7-9700T @ 2.00GHz,10731 -3619,Intel Core i7-9700TE @ 1.80GHz,10280 -841,Intel Core i7-975 @ 3.33GHz,3459 -3425,Intel Core i7-9750H @ 2.60GHz,10935 -3653,Intel Core i7-9750HF @ 2.60GHz,10660 -842,Intel Core i7-980 @ 3.33GHz,6926 -3374,Intel Core i7-9800X @ 3.80GHz,18086 -866,Intel Core i7-980X @ 3.33GHz,6834 -2425,Intel Core i7-985 @ 3.47GHz,3928 -3478,Intel Core i7-9850H @ 2.60GHz,11197 -3621,Intel Core i7-9850HL @ 1.90GHz,9112 -867,Intel Core i7-990X @ 3.47GHz,7092 -1664,Intel Core i7-995X @ 3.60GHz,7862 -3824,Intel Core i9-10850K @ 3.60GHz,22548 -3783,Intel Core i9-10880H @ 2.30GHz,14736 -3782,Intel Core i9-10885H @ 2.40GHz,15251 -3745,Intel Core i9-10900 @ 2.80GHz,19958 -4621,Intel Core i9-10900E @ 2.80GHz,19595 -3798,Intel Core i9-10900F @ 2.80GHz,20185 -3730,Intel Core i9-10900K @ 3.70GHz,23063 -3754,Intel Core i9-10900KF @ 3.70GHz,22813 -3751,Intel Core i9-10900T @ 1.90GHz,15030 -4213,Intel Core i9-10900TE @ 1.80GHz,16914 -3633,Intel Core i9-10900X @ 3.70GHz,22470 -3832,Intel Core i9-10910 @ 3.60GHz,21683 -3632,Intel Core i9-10920X @ 3.50GHz,26290 -3639,Intel Core i9-10940X @ 3.30GHz,27854 -3700,Intel Core i9-10980HK @ 2.40GHz,15667 -3630,Intel Core i9-10980XE @ 3.00GHz,32863 -4245,Intel Core i9-11900 @ 2.50GHz,22980 -4267,Intel Core i9-11900F @ 2.50GHz,22665 -4436,Intel Core i9-11900H @ 2.50GHz,20886 -3904,Intel Core i9-11900K @ 3.50GHz,25382 -4444,Intel Core i9-11900KB @ 3.30GHz,22988 -4240,Intel Core i9-11900KF @ 3.50GHz,25283 -4360,Intel Core i9-11900T @ 1.50GHz,18968 -4400,Intel Core i9-11950H @ 2.60GHz,21445 -4355,Intel Core i9-11980HK @ 2.60GHz,22992 -4729,Intel Core i9-12900,34300 -5053,Intel Core i9-12900E,26055 -4694,Intel Core i9-12900F,37063 -4728,Intel Core i9-12900H,28524 -4702,Intel Core i9-12900HK,28085 -4895,Intel Core i9-12900HX,34937 -4597,Intel Core i9-12900K,41414 -4611,Intel Core i9-12900KF,41199 -4813,Intel Core i9-12900KS,44208 -4710,Intel Core i9-12900T,30315 -5663,Intel Core i9-12900TE,35057 -4860,Intel Core i9-12950HX,32933 -5176,Intel Core i9-13900,48167 -5587,Intel Core i9-13900E,35075 -5143,Intel Core i9-13900F,52286 -5210,Intel Core i9-13900H,29687 -5448,Intel Core i9-13900HK,32015 -5205,Intel Core i9-13900HX,44977 -5022,Intel Core i9-13900K,59519 -5055,Intel Core i9-13900KF,58810 -5160,Intel Core i9-13900KS,61862 -5154,Intel Core i9-13900T,44700 -5553,Intel Core i9-13905H,31603 -5214,Intel Core i9-13950HX,44931 -5201,Intel Core i9-13980HX,47994 -5717,Intel Core i9-14900K,61451 -5684,Intel Core i9-14900KF,60754 -3035,Intel Core i9-7900X @ 3.30GHz,21236 -3082,Intel Core i9-7920X @ 2.90GHz,23618 -3094,Intel Core i9-7940X @ 3.10GHz,26141 -3096,Intel Core i9-7960X @ 2.80GHz,28781 -3092,Intel Core i9-7980XE @ 2.60GHz,30303 -3246,Intel Core i9-8950HK @ 2.90GHz,10568 -3369,Intel Core i9-9820X @ 3.30GHz,19975 -3456,Intel Core i9-9880H @ 2.30GHz,13868 -3487,Intel Core i9-9900 @ 3.10GHz,16605 -3334,Intel Core i9-9900K @ 3.60GHz,18376 -3435,Intel Core i9-9900KF @ 3.60GHz,18373 -3593,Intel Core i9-9900KS @ 4.00GHz,19531 -3599,Intel Core i9-9900T @ 2.10GHz,13224 -3376,Intel Core i9-9900X @ 3.50GHz,21794 -3378,Intel Core i9-9920X @ 3.50GHz,25192 -3358,Intel Core i9-9940X @ 3.30GHz,28065 -3405,Intel Core i9-9960X @ 3.10GHz,30637 -3451,Intel Core i9-9980HK @ 2.40GHz,14260 -3373,Intel Core i9-9980XE @ 3.00GHz,32102 -3770,Intel Core i9-9990XE @ 4.00GHz,30162 -2316,Intel Core M-5Y10 @ 0.80GHz,1628 -2499,Intel Core M-5Y10a @ 0.80GHz,1905 -2464,Intel Core M-5Y10c @ 0.80GHz,1906 -2515,Intel Core M-5Y31 @ 0.90GHz,1929 -2517,Intel Core M-5Y51 @ 1.10GHz,2130 -2382,Intel Core M-5Y70 @ 1.10GHz,1823 -2465,Intel Core M-5Y71 @ 1.20GHz,2025 -2631,Intel Core m3-6Y30 @ 0.90GHz,2163 -2864,Intel Core m3-7Y30 @ 1.00GHz,2585 -3052,Intel Core m3-7Y32 @ 1.10GHz,2719 -3367,Intel Core m3-8100Y @ 1.10GHz,2877 -2664,Intel Core m5-6Y54 @ 1.10GHz,2307 -2670,Intel Core m5-6Y57 @ 1.10GHz,2349 -4618,Intel Core m5-7Y54 @ 1.20GHz,1475 -2641,Intel Core m7-6Y75 @ 1.20GHz,2302 -578,Intel Core Solo T1300 @ 1.66GHz,210 -579,Intel Core Solo T1350 @ 1.86GHz,194 -1632,Intel Core Solo T1400 @ 1.83GHz,253 -593,Intel Core Solo U1300 @ 1.06GHz,127 -904,Intel Core Solo U1400 @ 1.20GHz,130 -905,Intel Core Solo U1500 @ 1.33GHz,164 -5777,Intel Core Ultra 5 125H,20071 -5677,Intel Core Ultra 7 155H,22452 -1678,Intel Core2 Duo E4300 @ 1.80GHz,593 -935,Intel Core2 Duo E4400 @ 2.00GHz,660 -936,Intel Core2 Duo E4500 @ 2.20GHz,745 -937,Intel Core2 Duo E4600 @ 2.40GHz,860 -938,Intel Core2 Duo E4700 @ 2.60GHz,862 -908,Intel Core2 Duo E6300 @ 1.86GHz,623 -909,Intel Core2 Duo E6320 @ 1.86GHz,717 -939,Intel Core2 Duo E6400 @ 2.13GHz,767 -911,Intel Core2 Duo E6420 @ 2.13GHz,760 -940,Intel Core2 Duo E6540 @ 2.33GHz,808 -941,Intel Core2 Duo E6550 @ 2.33GHz,889 -912,Intel Core2 Duo E6600 @ 2.40GHz,939 -1668,Intel Core2 Duo E6700 @ 2.66GHz,990 -942,Intel Core2 Duo E6750 @ 2.66GHz,1009 -943,Intel Core2 Duo E6850 @ 3.00GHz,1118 -944,Intel Core2 Duo E7200 @ 2.53GHz,997 -945,Intel Core2 Duo E7300 @ 2.66GHz,962 -946,Intel Core2 Duo E7400 @ 2.80GHz,1017 -947,Intel Core2 Duo E7500 @ 2.93GHz,1127 -948,Intel Core2 Duo E7600 @ 3.06GHz,1154 -1483,Intel Core2 Duo E8135 @ 2.40GHz,973 -949,Intel Core2 Duo E8135 @ 2.66GHz,1112 -950,Intel Core2 Duo E8200 @ 2.66GHz,1107 -951,Intel Core2 Duo E8235 @ 2.80GHz,1020 -1790,Intel Core2 Duo E8290 @ 2.83GHz,1408 -952,Intel Core2 Duo E8300 @ 2.83GHz,997 -953,Intel Core2 Duo E8335 @ 2.66GHz,1057 -954,Intel Core2 Duo E8335 @ 2.93GHz,1004 -955,Intel Core2 Duo E8400 @ 3.00GHz,1196 -956,Intel Core2 Duo E8435 @ 3.06GHz,1057 -5,Intel Core2 Duo E8500 @ 3.16GHz,1253 -957,Intel Core2 Duo E8600 @ 3.33GHz,1368 -958,Intel Core2 Duo L7100 @ 1.20GHz,467 -959,Intel Core2 Duo L7300 @ 1.40GHz,513 -960,Intel Core2 Duo L7400 @ 1.50GHz,516 -961,Intel Core2 Duo L7500 @ 1.60GHz,641 -962,Intel Core2 Duo L7700 @ 1.80GHz,607 -1822,Intel Core2 Duo L7800 @ 2.00GHz,680 -963,Intel Core2 Duo L9300 @ 1.60GHz,690 -965,Intel Core2 Duo L9600 @ 2.13GHz,788 -966,Intel Core2 Duo P7350 @ 2.00GHz,766 -967,Intel Core2 Duo P7370 @ 2.00GHz,790 -968,Intel Core2 Duo P7450 @ 2.13GHz,788 -970,Intel Core2 Duo P7550 @ 2.26GHz,865 -971,Intel Core2 Duo P7570 @ 2.26GHz,804 -973,Intel Core2 Duo P8400 @ 2.26GHz,841 -974,Intel Core2 Duo P8600 @ 2.40GHz,849 -975,Intel Core2 Duo P8700 @ 2.53GHz,975 -976,Intel Core2 Duo P8800 @ 2.66GHz,949 -977,Intel Core2 Duo P9300 @ 2.26GHz,952 -979,Intel Core2 Duo P9500 @ 2.53GHz,993 -980,Intel Core2 Duo P9600 @ 2.53GHz,1040 -981,Intel Core2 Duo P9600 @ 2.66GHz,1086 -982,Intel Core2 Duo P9700 @ 2.80GHz,1131 -964,Intel Core2 Duo SL9400 @ 1.86GHz,763 -978,Intel Core2 Duo SP9400 @ 2.40GHz,866 -1019,Intel Core2 Duo SU9400 @ 1.40GHz,520 -920,Intel Core2 Duo T5200 @ 1.60GHz,459 -983,Intel Core2 Duo T5250 @ 1.50GHz,545 -984,Intel Core2 Duo T5270 @ 1.40GHz,427 -921,Intel Core2 Duo T5300 @ 1.73GHz,569 -985,Intel Core2 Duo T5450 @ 1.66GHz,564 -986,Intel Core2 Duo T5470 @ 1.60GHz,590 -922,Intel Core2 Duo T5500 @ 1.66GHz,516 -987,Intel Core2 Duo T5550 @ 1.83GHz,634 -923,Intel Core2 Duo T5600 @ 1.83GHz,657 -988,Intel Core2 Duo T5670 @ 1.80GHz,577 -989,Intel Core2 Duo T5750 @ 2.00GHz,681 -990,Intel Core2 Duo T5800 @ 2.00GHz,628 -991,Intel Core2 Duo T5850 @ 2.16GHz,687 -992,Intel Core2 Duo T5870 @ 2.00GHz,689 -993,Intel Core2 Duo T5900 @ 2.20GHz,652 -994,Intel Core2 Duo T6400 @ 2.00GHz,721 -995,Intel Core2 Duo T6500 @ 2.10GHz,739 -996,Intel Core2 Duo T6570 @ 2.10GHz,756 -997,Intel Core2 Duo T6600 @ 2.20GHz,778 -998,Intel Core2 Duo T6670 @ 2.20GHz,801 -999,Intel Core2 Duo T7100 @ 1.80GHz,604 -927,Intel Core2 Duo T7200 @ 2.00GHz,738 -1000,Intel Core2 Duo T7250 @ 2.00GHz,704 -1001,Intel Core2 Duo T7300 @ 2.00GHz,676 -1002,Intel Core2 Duo T7400 @ 2.16GHz,750 -1003,Intel Core2 Duo T7500 @ 2.20GHz,819 -929,Intel Core2 Duo T7600 @ 2.33GHz,801 -1004,Intel Core2 Duo T7700 @ 2.40GHz,945 -1005,Intel Core2 Duo T7800 @ 2.60GHz,976 -1006,Intel Core2 Duo T8100 @ 2.10GHz,746 -1007,Intel Core2 Duo T8300 @ 2.40GHz,879 -1008,Intel Core2 Duo T9300 @ 2.50GHz,978 -1009,Intel Core2 Duo T9400 @ 2.53GHz,989 -1010,Intel Core2 Duo T9500 @ 2.60GHz,1038 -1011,Intel Core2 Duo T9550 @ 2.66GHz,964 -1012,Intel Core2 Duo T9600 @ 2.80GHz,1071 -1013,Intel Core2 Duo T9800 @ 2.93GHz,1211 -1014,Intel Core2 Duo T9900 @ 3.06GHz,1180 -600,Intel Core2 Duo U7300 @ 1.30GHz,522 -1015,Intel Core2 Duo U7500 @ 1.06GHz,392 -1016,Intel Core2 Duo U7600 @ 1.20GHz,347 -1017,Intel Core2 Duo U7700 @ 1.33GHz,429 -1018,Intel Core2 Duo U9300 @ 1.20GHz,440 -1020,Intel Core2 Duo U9600 @ 1.60GHz,578 -1023,Intel Core2 Extreme Q6800 @ 2.93GHz,2145 -1024,Intel Core2 Extreme Q6850 @ 3.00GHz,2304 -3615,Intel Core2 Extreme Q9200 @ 2.40GHz,2011 -1025,Intel Core2 Extreme Q9300 @ 2.53GHz,1918 -933,Intel Core2 Extreme X6800 @ 2.93GHz,823 -1026,Intel Core2 Extreme X7800 @ 2.60GHz,1138 -1028,Intel Core2 Extreme X7900 @ 2.80GHz,1108 -1029,Intel Core2 Extreme X9000 @ 2.80GHz,1099 -1030,Intel Core2 Extreme X9100 @ 3.06GHz,1164 -1031,Intel Core2 Extreme X9650 @ 3.00GHz,2376 -1032,Intel Core2 Extreme X9750 @ 3.16GHz,2348 -1033,Intel Core2 Extreme X9770 @ 3.20GHz,2736 -1682,Intel Core2 Extreme X9775 @ 3.20GHz,2780 -1038,Intel Core2 Quad Q6600 @ 2.40GHz,1810 -1039,Intel Core2 Quad Q6700 @ 2.66GHz,2097 -1040,Intel Core2 Quad Q8200 @ 2.33GHz,1774 -9,Intel Core2 Quad Q8300 @ 2.50GHz,1883 -1041,Intel Core2 Quad Q8400 @ 2.66GHz,2074 -1042,Intel Core2 Quad Q9000 @ 2.00GHz,1579 -1043,Intel Core2 Quad Q9100 @ 2.26GHz,1764 -1044,Intel Core2 Quad Q9300 @ 2.50GHz,1965 -1045,Intel Core2 Quad Q9400 @ 2.66GHz,2109 -1046,Intel Core2 Quad Q9450 @ 2.66GHz,2178 -1047,Intel Core2 Quad Q9500 @ 2.83GHz,2215 -1048,Intel Core2 Quad Q9505 @ 2.83GHz,2084 -1049,Intel Core2 Quad Q9550 @ 2.83GHz,2331 -1050,Intel Core2 Quad Q9650 @ 3.00GHz,2456 -1051,Intel Core2 Solo U2100 @ 1.06GHz,233 -1052,Intel Core2 Solo U3500 @ 1.40GHz,252 -5157,Intel N100,5648 -5178,Intel N200,5457 -5632,Intel N50,2350 -5206,Intel N95,5419 -5337,Intel N97,5769 -1909,Intel Pentium 1403 @ 2.60GHz,1851 -3322,Intel Pentium 1403 v2 @ 2.60GHz,2284 -1855,Intel Pentium 2020M @ 2.40GHz,1376 -2062,Intel Pentium 2030M @ 2.50GHz,1413 -1872,Intel Pentium 2117U @ 1.80GHz,1018 -2008,Intel Pentium 2127U @ 1.90GHz,1062 -2125,Intel Pentium 2129Y @ 1.10GHz,587 -2175,Intel Pentium 3550M @ 2.30GHz,1325 -2104,Intel Pentium 3556U @ 1.70GHz,1055 -2293,Intel Pentium 3558U @ 1.70GHz,1035 -2458,Intel Pentium 3560M @ 2.40GHz,1499 -2078,Intel Pentium 3560Y @ 1.20GHz,849 -2483,Intel Pentium 3805U @ 1.90GHz,1180 -2579,Intel Pentium 3825U @ 1.90GHz,1360 -1053,Intel Pentium 4 1.50GHz,86 -1054,Intel Pentium 4 1.60GHz,84 -1055,Intel Pentium 4 1.70GHz,86 -1056,Intel Pentium 4 1.80GHz,115 -1057,Intel Pentium 4 1.90GHz,104 -1058,Intel Pentium 4 1300MHz,77 -1059,Intel Pentium 4 1400MHz,83 -1060,Intel Pentium 4 1500MHz,81 -1062,Intel Pentium 4 1700MHz,100 -1063,Intel Pentium 4 1800MHz,114 -1064,Intel Pentium 4 2.00GHz,133 -1065,Intel Pentium 4 2.20GHz,157 -1066,Intel Pentium 4 2.26GHz,151 -1067,Intel Pentium 4 2.40GHz,131 -1068,Intel Pentium 4 2.50GHz,160 -1069,Intel Pentium 4 2.53GHz,162 -1070,Intel Pentium 4 2.60GHz,215 -1071,Intel Pentium 4 2.66GHz,157 -1072,Intel Pentium 4 2.80GHz,237 -1073,Intel Pentium 4 2.93GHz,150 -1074,Intel Pentium 4 3.00GHz,318 -1075,Intel Pentium 4 3.06GHz,249 -1076,Intel Pentium 4 3.20GHz,330 -1077,Intel Pentium 4 3.40GHz,295 -1078,Intel Pentium 4 3.46GHz,295 -1079,Intel Pentium 4 3.60GHz,315 -1080,Intel Pentium 4 3.73GHz,385 -1081,Intel Pentium 4 3.80GHz,358 -3256,Intel Pentium 4 3.83GHz,154 -1084,Intel Pentium 4 Mobile 1.60GHz,116 -1086,Intel Pentium 4 Mobile 1.80GHz,114 -1692,Intel Pentium 4 Mobile 1.90GHz,136 -1087,Intel Pentium 4 Mobile 2.00GHz,132 -2666,Intel Pentium 4405U @ 2.10GHz,2093 -2775,Intel Pentium 4405Y @ 1.50GHz,1526 -3134,Intel Pentium 4410Y @ 1.50GHz,1444 -2977,Intel Pentium 4415U @ 2.30GHz,2227 -3300,Intel Pentium 4415Y @ 1.60GHz,1591 -3417,Intel Pentium 4417U @ 2.30GHz,2266 -3799,Intel Pentium 4425Y @ 1.70GHz,1696 -3437,Intel Pentium 5405U @ 2.30GHz,2271 -3712,Intel Pentium 6405U @ 2.40GHz,2346 -4431,Intel Pentium 6805 @ 1.10GHz,4424 -1089,Intel Pentium 957 @ 1.20GHz,622 -1090,Intel Pentium 967 @ 1.30GHz,643 -1092,Intel Pentium 987 @ 1.50GHz,655 -1798,Intel Pentium 997 @ 1.60GHz,809 -2323,Intel Pentium A1018 @ 2.10GHz,1193 -3666,Intel Pentium A1020 @ 2.41GHz,1249 -1093,Intel Pentium B940 @ 2.00GHz,852 -1094,Intel Pentium B950 @ 2.10GHz,996 -1095,Intel Pentium B960 @ 2.20GHz,961 -1096,Intel Pentium B970 @ 2.30GHz,1090 -1796,Intel Pentium B980 @ 2.40GHz,1073 -4997,Intel Pentium D 3.40GHz,736 -1125,Intel Pentium D 805 @ 2.66GHz,374 -1127,Intel Pentium D 830 @ 3.00GHz,562 -1126,Intel Pentium D 915 @ 2.80GHz,443 -1128,Intel Pentium D 940 @ 3.20GHz,540 -1129,Intel Pentium D 950 @ 3.40GHz,677 -1131,Intel Pentium D 960 @ 3.60GHz,743 -3141,Intel Pentium D1508 @ 2.20GHz,3240 -4963,Intel Pentium Dual T2390 @ 1.86GHz,745 -1133,Intel Pentium E2140 @ 1.60GHz,561 -1134,Intel Pentium E2160 @ 1.80GHz,644 -1135,Intel Pentium E2180 @ 2.00GHz,685 -1136,Intel Pentium E2200 @ 2.20GHz,718 -1387,Intel Pentium E2210 @ 2.20GHz,702 -1137,Intel Pentium E2220 @ 2.40GHz,826 -1097,Intel Pentium E5200 @ 2.50GHz,901 -1098,Intel Pentium E5300 @ 2.60GHz,925 -1099,Intel Pentium E5400 @ 2.70GHz,960 -1100,Intel Pentium E5500 @ 2.80GHz,1020 -1101,Intel Pentium E5700 @ 3.00GHz,1074 -1102,Intel Pentium E5800 @ 3.20GHz,1170 -1103,Intel Pentium E6300 @ 2.80GHz,1044 -1104,Intel Pentium E6500 @ 2.93GHz,1139 -1105,Intel Pentium E6600 @ 3.06GHz,1133 -1106,Intel Pentium E6700 @ 3.20GHz,1176 -1398,Intel Pentium E6800 @ 3.33GHz,1151 -1130,Intel Pentium Extreme Edition 955 @ 3.46GHz,469 -1132,Intel Pentium Extreme Edition 965 @ 3.73GHz,987 -1854,Intel Pentium G2010 @ 2.80GHz,1611 -1839,Intel Pentium G2020 @ 2.90GHz,1679 -1838,Intel Pentium G2020T @ 2.50GHz,1430 -1961,Intel Pentium G2030 @ 3.00GHz,1741 -2135,Intel Pentium G2030T @ 2.60GHz,1581 -2786,Intel Pentium G2100T @ 2.60GHz,1691 -1443,Intel Pentium G2120 @ 3.10GHz,1892 -3684,Intel Pentium G2120T @ 2.70GHz,1613 -1864,Intel Pentium G2130 @ 3.20GHz,1915 -2136,Intel Pentium G2140 @ 3.30GHz,2092 -2020,Intel Pentium G3220 @ 3.00GHz,1899 -2189,Intel Pentium G3220T @ 2.60GHz,1593 -2250,Intel Pentium G3240 @ 3.10GHz,1936 -2325,Intel Pentium G3240T @ 2.70GHz,1603 -2346,Intel Pentium G3250 @ 3.20GHz,1970 -2461,Intel Pentium G3250T @ 2.80GHz,1754 -2267,Intel Pentium G3258 @ 3.20GHz,2075 -2523,Intel Pentium G3260 @ 3.30GHz,2088 -2566,Intel Pentium G3260T @ 2.90GHz,1755 -2122,Intel Pentium G3320TE @ 2.30GHz,1570 -2028,Intel Pentium G3420 @ 3.20GHz,1926 -2350,Intel Pentium G3420T @ 2.70GHz,1912 -2063,Intel Pentium G3430 @ 3.30GHz,2127 -2286,Intel Pentium G3440 @ 3.30GHz,2224 -2421,Intel Pentium G3440T @ 2.80GHz,2107 -2299,Intel Pentium G3450 @ 3.40GHz,2167 -2611,Intel Pentium G3450T @ 2.90GHz,2016 -2361,Intel Pentium G3460 @ 3.50GHz,2216 -2521,Intel Pentium G3470 @ 3.60GHz,2428 -2634,Intel Pentium G4400 @ 3.30GHz,2582 -2633,Intel Pentium G4400T @ 2.90GHz,2335 -3283,Intel Pentium G4400TE @ 2.40GHz,2190 -2630,Intel Pentium G4500 @ 3.50GHz,2770 -2734,Intel Pentium G4500T @ 3.00GHz,2391 -2660,Intel Pentium G4520 @ 3.60GHz,2707 -2925,Intel Pentium G4560 @ 3.50GHz,3523 -2983,Intel Pentium G4560T @ 2.90GHz,2940 -2921,Intel Pentium G4600 @ 3.60GHz,3621 -3003,Intel Pentium G4600T @ 3.00GHz,3055 -2948,Intel Pentium G4620 @ 3.70GHz,3751 -1107,Intel Pentium G620 @ 2.60GHz,1221 -1108,Intel Pentium G620T @ 2.20GHz,896 -1109,Intel Pentium G630 @ 2.70GHz,1317 -1110,Intel Pentium G630T @ 2.30GHz,1090 -1111,Intel Pentium G640 @ 2.80GHz,1348 -2100,Intel Pentium G640T @ 2.40GHz,1139 -1797,Intel Pentium G645 @ 2.90GHz,1378 -1876,Intel Pentium G645T @ 2.50GHz,1228 -1112,Intel Pentium G6950 @ 2.80GHz,1238 -1113,Intel Pentium G6951 @ 2.80GHz,1383 -1114,Intel Pentium G6960 @ 2.93GHz,1293 -1115,Intel Pentium G840 @ 2.80GHz,1238 -1116,Intel Pentium G850 @ 2.90GHz,1424 -1117,Intel Pentium G860 @ 3.00GHz,1466 -1484,Intel Pentium G870 @ 3.10GHz,1523 -4587,Intel Pentium GOLD 6500Y @ 1.10GHz,3022 -3909,Intel Pentium Gold 7505 @ 2.00GHz,5197 -4775,Intel Pentium Gold 8505,9231 -3248,Intel Pentium Gold G5400 @ 3.70GHz,3724 -3329,Intel Pentium Gold G5400T @ 3.10GHz,3185 -3471,Intel Pentium Gold G5420 @ 3.80GHz,3691 -3589,Intel Pentium Gold G5420T @ 3.20GHz,3452 -3271,Intel Pentium Gold G5500 @ 3.80GHz,3840 -3264,Intel Pentium Gold G5500T @ 3.20GHz,3259 -3261,Intel Pentium Gold G5600 @ 3.90GHz,3825 -3568,Intel Pentium Gold G5600F @ 3.90GHz,4122 -4716,Intel Pentium Gold G5600T @ 3.30GHz,3601 -3626,Intel Pentium Gold G5620 @ 4.00GHz,4102 -3805,Intel Pentium Gold G6400 @ 4.00GHz,4132 -4308,Intel Pentium Gold G6400T @ 3.40GHz,3588 -4367,Intel Pentium Gold G6405 @ 4.10GHz,4254 -4368,Intel Pentium Gold G6405T @ 3.50GHz,3746 -3857,Intel Pentium Gold G6500 @ 4.10GHz,4145 -4182,Intel Pentium Gold G6500T @ 3.50GHz,4005 -4467,Intel Pentium Gold G6505 @ 4.20GHz,4378 -5120,Intel Pentium Gold G6505T @ 3.60GHz,3698 -4168,Intel Pentium Gold G6600 @ 4.20GHz,4258 -4461,Intel Pentium Gold G6605 @ 4.30GHz,4491 -4732,Intel Pentium Gold G7400,6757 -4882,Intel Pentium Gold G7400T,5688 -1695,Intel Pentium III 1400 @ 1400MHz,193 -1146,Intel Pentium III 1400S @ 1400MHz,194 -1698,Intel Pentium III Mobile 1066MHz,160 -1150,Intel Pentium III Mobile 1133MHz,164 -1151,Intel Pentium III Mobile 1200MHz,156 -1700,Intel Pentium III Mobile 800MHz,119 -1152,Intel Pentium III Mobile 866MHz,99 -2221,Intel Pentium J2850 @ 2.41GHz,1016 -2173,Intel Pentium J2900 @ 2.41GHz,1252 -2784,Intel Pentium J3710 @ 1.60GHz,1464 -2877,Intel Pentium J4205 @ 1.50GHz,2426 -4718,Intel Pentium J6426 @ 2.00GHz,4173 -1153,Intel Pentium M 1.10GHz,184 -1154,Intel Pentium M 1.20GHz,199 -1155,Intel Pentium M 1.30GHz,196 -1156,Intel Pentium M 1.40GHz,225 -1157,Intel Pentium M 1.50GHz,240 -1158,Intel Pentium M 1.60GHz,194 -1159,Intel Pentium M 1.70GHz,239 -1160,Intel Pentium M 1.73GHz,205 -1161,Intel Pentium M 1.80GHz,280 -1162,Intel Pentium M 1.86GHz,222 -1163,Intel Pentium M 1000MHz,156 -1165,Intel Pentium M 1200MHz,155 -1166,Intel Pentium M 1300MHz,197 -1167,Intel Pentium M 1400MHz,208 -1168,Intel Pentium M 1500MHz,188 -1169,Intel Pentium M 1600MHz,193 -1170,Intel Pentium M 1700MHz,237 -1171,Intel Pentium M 2.00GHz,270 -1172,Intel Pentium M 2.10GHz,292 -1173,Intel Pentium M 2.13GHz,271 -1174,Intel Pentium M 2.26GHz,227 -1175,Intel Pentium M 900MHz,141 -2107,Intel Pentium N3510 @ 1.99GHz,878 -2123,Intel Pentium N3520 @ 2.16GHz,1147 -2278,Intel Pentium N3530 @ 2.16GHz,1202 -2408,Intel Pentium N3540 @ 2.16GHz,1208 -2513,Intel Pentium N3700 @ 1.60GHz,1241 -2730,Intel Pentium N3710 @ 1.60GHz,1383 -2886,Intel Pentium N4200 @ 1.10GHz,2166 -4287,Intel Pentium N6415 @ 1.20GHz,3760 -1118,Intel Pentium P6000 @ 1.87GHz,787 -1119,Intel Pentium P6100 @ 2.00GHz,869 -1120,Intel Pentium P6200 @ 2.13GHz,907 -1121,Intel Pentium P6300 @ 2.27GHz,834 -3144,Intel Pentium Silver J5005 @ 1.50GHz,3094 -3665,Intel Pentium Silver J5040 @ 2.00GHz,3481 -3204,Intel Pentium Silver N5000 @ 1.10GHz,2597 -4598,Intel Pentium Silver N5020 @ 1.10GHz,3404 -3670,Intel Pentium Silver N5030 @ 1.10GHz,2621 -4177,Intel Pentium Silver N6000 @ 1.10GHz,3089 -4565,Intel Pentium Silver N6005 @ 2.00GHz,5379 -598,Intel Pentium SU2700 @ 1.30GHz,266 -599,Intel Pentium SU4100 @ 1.30GHz,485 -585,Intel Pentium T2060 @ 1.60GHz,330 -586,Intel Pentium T2080 @ 1.73GHz,339 -587,Intel Pentium T2130 @ 1.86GHz,382 -1138,Intel Pentium T2310 @ 1.46GHz,536 -1139,Intel Pentium T2330 @ 1.60GHz,538 -1140,Intel Pentium T2370 @ 1.73GHz,543 -1141,Intel Pentium T2390 @ 1.86GHz,568 -1142,Intel Pentium T2410 @ 2.00GHz,565 -1143,Intel Pentium T3200 @ 2.00GHz,623 -1144,Intel Pentium T3400 @ 2.16GHz,660 -1399,Intel Pentium T4200 @ 2.00GHz,718 -1400,Intel Pentium T4300 @ 2.10GHz,774 -1122,Intel Pentium T4400 @ 2.20GHz,765 -1402,Intel Pentium T4500 @ 2.30GHz,823 -1123,Intel Pentium U5400 @ 1.20GHz,538 -1124,Intel Pentium U5600 @ 1.33GHz,624 -580,Intel T1400 @ 1.73GHz,548 -581,Intel T1500 @ 1.86GHz,548 -1815,Intel T2050 @ 2.00GHz,516 -5569,Intel U300,9511 -5776,Intel U4100 @ 1.30GHz,610 -1315,Intel Xeon 2.00GHz,152 -1712,Intel XEON 2.20GHz,164 -1316,Intel Xeon 2.40GHz,180 -1317,Intel Xeon 2.80GHz,260 -1318,Intel Xeon 3.00GHz,425 -1320,Intel Xeon 3.20GHz,478 -1321,Intel Xeon 3.40GHz,375 -1322,Intel Xeon 3.60GHz,403 -1323,Intel Xeon 3.73GHz,901 -1324,Intel Xeon 3.80GHz,393 -1176,Intel Xeon 3040 @ 1.86GHz,790 -1177,Intel Xeon 3050 @ 2.13GHz,841 -1178,Intel Xeon 3060 @ 2.40GHz,983 -1179,Intel Xeon 3065 @ 2.33GHz,867 -1180,Intel Xeon 3070 @ 2.66GHz,1025 -1703,Intel Xeon 3075 @ 2.66GHz,1096 -2642,Intel Xeon 3085 @ 3.00GHz,1070 -1181,Intel Xeon 5110 @ 1.60GHz,600 -1182,Intel Xeon 5120 @ 1.86GHz,763 -1183,Intel Xeon 5130 @ 2.00GHz,795 -2098,Intel Xeon 5133 @ 2.20GHz,887 -1184,Intel Xeon 5140 @ 2.33GHz,857 -1185,Intel Xeon 5148 @ 2.33GHz,912 -1186,Intel Xeon 5150 @ 2.66GHz,924 -1187,Intel Xeon 5160 @ 3.00GHz,963 -3483,Intel Xeon @ 2.00GHz,7363 -3212,Intel Xeon @ 2.20GHz,1324 -3174,Intel Xeon Bronze 3104 @ 1.70GHz,4424 -3230,Intel Xeon Bronze 3106 @ 1.70GHz,5769 -3649,Intel Xeon Bronze 3204 @ 1.90GHz,4835 -2799,Intel Xeon D-1518 @ 2.20GHz,4854 -2662,Intel Xeon D-1520 @ 2.20GHz,4917 -2712,Intel Xeon D-1521 @ 2.40GHz,5921 -3784,Intel Xeon D-1527 @ 2.20GHz,5213 -2764,Intel Xeon D-1528 @ 1.90GHz,6638 -3107,Intel Xeon D-1531 @ 2.20GHz,7483 -3244,Intel Xeon D-1537 @ 1.70GHz,7444 -3537,Intel Xeon D-1539 @ 1.60GHz,7175 -2507,Intel Xeon D-1540 @ 2.00GHz,10061 -2718,Intel Xeon D-1541 @ 2.10GHz,10163 -3429,Intel Xeon D-1548 @ 2.00GHz,9075 -3519,Intel Xeon D-1557 @ 1.50GHz,9285 -3066,Intel Xeon D-1559 @ 1.50GHz,7353 -3006,Intel Xeon D-1567 @ 2.10GHz,10447 -3844,Intel Xeon D-1577 @ 1.30GHz,11645 -4626,Intel Xeon D-1581 @ 1.80GHz,13282 -2835,Intel Xeon D-1587 @ 1.70GHz,13019 -3889,Intel Xeon D-1602 @ 2.50GHz,2459 -4278,Intel Xeon D-1622 @ 2.60GHz,6205 -4836,Intel Xeon D-1715TER @ 2.40GHz,9104 -5084,Intel Xeon D-1718T @ 2.60GHz,9713 -5150,Intel Xeon D-1726 @ 2.90GHz,15511 -5085,Intel Xeon D-1732TE @ 1.90GHz,14254 -4854,Intel Xeon D-1733NT @ 2.00GHz,14849 -5052,Intel Xeon D-1736NT @ 2.70GHz,17826 -4971,Intel Xeon D-1747NTE @ 2.50GHz,20279 -3319,Intel Xeon D-2123IT @ 2.20GHz,6673 -3379,Intel Xeon D-2141I @ 2.20GHz,12117 -3312,Intel Xeon D-2143IT @ 2.20GHz,12461 -3530,Intel Xeon D-2146NT @ 2.30GHz,11736 -3644,Intel Xeon D-2166NT @ 2.00GHz,15105 -3268,Intel Xeon D-2183IT @ 2.20GHz,18385 -3663,Intel Xeon D-2187NT @ 2.00GHz,18070 -5187,Intel Xeon D-2712T @ 1.90GHz,7990 -4868,Intel Xeon D-2733NT @ 2.10GHz,16206 -5607,Intel Xeon D-2752TER @ 1.80GHz,19102 -5788,Intel Xeon D-2753NT @ 2.00GHz,20932 -5675,Intel Xeon D-2775TE @ 2.00GHz,27299 -5588,Intel Xeon D-2795NT @ 2.00GHz,28463 -5075,Intel Xeon D-2796TE @ 2.00GHz,26342 -4796,Intel Xeon D-2799 @ 2.40GHz,33792 -3342,Intel Xeon E-2104G @ 3.20GHz,5944 -3432,Intel Xeon E-2124 @ 3.30GHz,7033 -3364,Intel Xeon E-2124G @ 3.40GHz,7426 -3360,Intel Xeon E-2126G @ 3.30GHz,10545 -3391,Intel Xeon E-2134 @ 3.50GHz,9152 -3363,Intel Xeon E-2136 @ 3.30GHz,13449 -3399,Intel Xeon E-2144G @ 3.60GHz,9175 -3314,Intel Xeon E-2146G @ 3.50GHz,13260 -3320,Intel Xeon E-2174G @ 3.80GHz,9741 -3336,Intel Xeon E-2176G @ 3.70GHz,13551 -3242,Intel Xeon E-2176M @ 2.70GHz,10885 -3346,Intel Xeon E-2186G @ 3.80GHz,13955 -3232,Intel Xeon E-2186M @ 2.90GHz,11489 -3512,Intel Xeon E-2224 @ 3.40GHz,7285 -3490,Intel Xeon E-2224G @ 3.50GHz,7625 -3572,Intel Xeon E-2226G @ 3.40GHz,11073 -3853,Intel Xeon E-2234 @ 3.60GHz,9961 -3607,Intel Xeon E-2236 @ 3.40GHz,14169 -3580,Intel Xeon E-2244G @ 3.80GHz,9582 -3523,Intel Xeon E-2246G @ 3.60GHz,13887 -3622,Intel Xeon E-2254ML @ 1.70GHz,6333 -3584,Intel Xeon E-2274G @ 4.00GHz,9760 -3596,Intel Xeon E-2276G @ 3.80GHz,13873 -3489,Intel Xeon E-2276M @ 2.80GHz,11843 -4427,Intel Xeon E-2276ME @ 2.80GHz,8167 -5034,Intel Xeon E-2276ML @ 2.00GHz,6353 -3606,Intel Xeon E-2278G @ 3.40GHz,16964 -3763,Intel Xeon E-2278GE @ 3.30GHz,16401 -3595,Intel Xeon E-2278GEL @ 2.00GHz,12024 -3590,Intel Xeon E-2286G @ 4.00GHz,13938 -3491,Intel Xeon E-2286M @ 2.40GHz,15128 -3546,Intel Xeon E-2288G @ 3.70GHz,17373 -4676,Intel Xeon E-2314 @ 2.80GHz,8210 -5127,Intel Xeon E-2324G @ 3.10GHz,9771 -4792,Intel Xeon E-2334 @ 3.40GHz,12929 -4666,Intel Xeon E-2336 @ 2.90GHz,16621 -4701,Intel Xeon E-2356G @ 3.20GHz,18952 -4672,Intel Xeon E-2374G @ 3.70GHz,13607 -4668,Intel Xeon E-2378 @ 2.60GHz,17215 -4931,Intel Xeon E-2378G @ 2.80GHz,22302 -4896,Intel Xeon E-2386G @ 3.50GHz,19613 -4576,Intel Xeon E-2388G @ 3.20GHz,23700 -3656,Intel Xeon E3-1205 v6 @ 3.00GHz,5682 -1196,Intel Xeon E3-1220 @ 3.10GHz,3884 -1188,Intel Xeon E3-1220 V2 @ 3.10GHz,4669 -2022,Intel Xeon E3-1220 v3 @ 3.10GHz,5198 -2692,Intel Xeon E3-1220 v5 @ 3.00GHz,5798 -3131,Intel Xeon E3-1220 v6 @ 3.00GHz,5744 -1197,Intel Xeon E3-1220L @ 2.20GHz,2274 -2183,Intel Xeon E3-1220L V2 @ 2.30GHz,2234 -2251,Intel Xeon E3-1220L v3 @ 1.10GHz,1407 -1198,Intel Xeon E3-1225 @ 3.10GHz,3879 -1485,Intel Xeon E3-1225 V2 @ 3.20GHz,4741 -1993,Intel Xeon E3-1225 v3 @ 3.20GHz,5313 -2707,Intel Xeon E3-1225 v5 @ 3.30GHz,5975 -3019,Intel Xeon E3-1225 v6 @ 3.30GHz,6321 -2297,Intel Xeon E3-1226 v3 @ 3.30GHz,5546 -1199,Intel Xeon E3-1230 @ 3.20GHz,5075 -1189,Intel Xeon E3-1230 V2 @ 3.30GHz,6182 -1942,Intel Xeon E3-1230 v3 @ 3.30GHz,6787 -2693,Intel Xeon E3-1230 v5 @ 3.40GHz,8054 -3032,Intel Xeon E3-1230 v6 @ 3.50GHz,8172 -2116,Intel Xeon E3-1230L v3 @ 1.80GHz,5262 -2246,Intel Xeon E3-1231 v3 @ 3.40GHz,7032 -1200,Intel Xeon E3-1235 @ 3.20GHz,5030 -2985,Intel Xeon E3-1235L v5 @ 2.00GHz,5013 -1201,Intel Xeon E3-1240 @ 3.30GHz,5402 -1190,Intel Xeon E3-1240 V2 @ 3.40GHz,6346 -1952,Intel Xeon E3-1240 v3 @ 3.40GHz,7065 -2636,Intel Xeon E3-1240 v5 @ 3.50GHz,8278 -3053,Intel Xeon E3-1240 v6 @ 3.70GHz,8714 -2495,Intel Xeon E3-1240L v3 @ 2.00GHz,5598 -3087,Intel Xeon E3-1240L v5 @ 2.10GHz,6446 -2341,Intel Xeon E3-1241 v3 @ 3.50GHz,7131 -1202,Intel Xeon E3-1245 @ 3.30GHz,5335 -1191,Intel Xeon E3-1245 V2 @ 3.40GHz,6325 -1926,Intel Xeon E3-1245 v3 @ 3.40GHz,7017 -2674,Intel Xeon E3-1245 v5 @ 3.50GHz,8044 -3025,Intel Xeon E3-1245 v6 @ 3.70GHz,8768 -2279,Intel Xeon E3-1246 v3 @ 3.50GHz,7278 -1203,Intel Xeon E3-1260L @ 2.40GHz,4061 -2804,Intel Xeon E3-1260L v5 @ 2.90GHz,8226 -2558,Intel Xeon E3-1265L @ 2.40GHz,3411 -1486,Intel Xeon E3-1265L V2 @ 2.50GHz,5064 -2088,Intel Xeon E3-1265L v3 @ 2.50GHz,6156 -3289,Intel Xeon E3-1265L v4 @ 2.30GHz,6954 -2363,Intel Xeon E3-1268L v3 @ 2.30GHz,5726 -3202,Intel Xeon E3-1268L v5 @ 2.40GHz,6079 -1204,Intel Xeon E3-1270 @ 3.40GHz,5383 -1192,Intel Xeon E3-1270 V2 @ 3.50GHz,6466 -1969,Intel Xeon E3-1270 v3 @ 3.50GHz,7314 -2651,Intel Xeon E3-1270 v5 @ 3.60GHz,8355 -3014,Intel Xeon E3-1270 v6 @ 3.80GHz,8950 -3396,Intel Xeon E3-1270L v4 @ 3.00GHz,7662 -2334,Intel Xeon E3-1271 v3 @ 3.60GHz,7527 -1205,Intel Xeon E3-1275 @ 3.40GHz,5490 -1193,Intel Xeon E3-1275 V2 @ 3.50GHz,6586 -1979,Intel Xeon E3-1275 v3 @ 3.50GHz,7244 -2672,Intel Xeon E3-1275 v5 @ 3.60GHz,8451 -3015,Intel Xeon E3-1275 v6 @ 3.80GHz,9254 -2490,Intel Xeon E3-1275L v3 @ 2.70GHz,6248 -2269,Intel Xeon E3-1276 v3 @ 3.60GHz,7422 -1206,Intel Xeon E3-1280 @ 3.50GHz,5615 -1779,Intel Xeon E3-1280 V2 @ 3.60GHz,6545 -1964,Intel Xeon E3-1280 v3 @ 3.60GHz,7402 -2773,Intel Xeon E3-1280 v5 @ 3.70GHz,8377 -2988,Intel Xeon E3-1280 v6 @ 3.90GHz,9028 -2516,Intel Xeon E3-1281 v3 @ 3.70GHz,7408 -2894,Intel Xeon E3-1285 v3 @ 3.60GHz,6974 -3282,Intel Xeon E3-1285 v4 @ 3.50GHz,7770 -3158,Intel Xeon E3-1285 v6 @ 4.10GHz,8536 -2417,Intel Xeon E3-1285L v3 @ 3.10GHz,6819 -2743,Intel Xeon E3-1285L v4 @ 3.40GHz,8074 -2401,Intel Xeon E3-1286 v3 @ 3.70GHz,7418 -3177,Intel Xeon E3-1286L v3 @ 3.20GHz,6450 -1208,Intel Xeon E3-1290 @ 3.60GHz,5429 -1774,Intel Xeon E3-1290 V2 @ 3.70GHz,6529 -2980,Intel Xeon E3-1505L v5 @ 2.00GHz,5301 -3020,Intel Xeon E3-1505L v6 @ 2.20GHz,6088 -2637,Intel Xeon E3-1505M v5 @ 2.80GHz,6936 -2931,Intel Xeon E3-1505M v6 @ 3.00GHz,7466 -2954,Intel Xeon E3-1515M v5 @ 2.80GHz,7938 -2667,Intel Xeon E3-1535M v5 @ 2.90GHz,7507 -2999,Intel Xeon E3-1535M v6 @ 3.10GHz,8088 -2711,Intel Xeon E3-1545M v5 @ 2.90GHz,7849 -2801,Intel Xeon E3-1575M v5 @ 3.00GHz,7928 -3011,Intel Xeon E3-1585 v5 @ 3.50GHz,8408 -3277,Intel Xeon E3-1585L v5 @ 3.00GHz,8083 -1194,Intel Xeon E3110 @ 3.00GHz,1242 -2403,Intel Xeon E3113 @ 3.00GHz,1429 -1195,Intel Xeon E3120 @ 3.16GHz,1408 -1945,Intel Xeon E5-1410 @ 2.80GHz,4701 -2589,Intel Xeon E5-1410 v2 @ 2.80GHz,5436 -3556,Intel Xeon E5-1428L v2 @ 2.20GHz,6255 -1209,Intel Xeon E5-1603 @ 2.80GHz,3448 -2457,Intel Xeon E5-1603 v3 @ 2.80GHz,4422 -2959,Intel Xeon E5-1603 v4 @ 2.80GHz,4839 -1434,Intel Xeon E5-1607 @ 3.00GHz,3730 -2192,Intel Xeon E5-1607 v2 @ 3.00GHz,4184 -2493,Intel Xeon E5-1607 v3 @ 3.10GHz,4972 -2885,Intel Xeon E5-1607 v4 @ 3.10GHz,5237 -1210,Intel Xeon E5-1620 @ 3.60GHz,5854 -2047,Intel Xeon E5-1620 v2 @ 3.70GHz,6549 -2409,Intel Xeon E5-1620 v3 @ 3.50GHz,6992 -2777,Intel Xeon E5-1620 v4 @ 3.50GHz,7384 -2384,Intel Xeon E5-1630 v3 @ 3.70GHz,7409 -2827,Intel Xeon E5-1630 v4 @ 3.70GHz,7675 -1211,Intel Xeon E5-1650 @ 3.20GHz,8088 -2066,Intel Xeon E5-1650 v2 @ 3.50GHz,9353 -2389,Intel Xeon E5-1650 v3 @ 3.50GHz,10407 -2838,Intel Xeon E5-1650 v4 @ 3.60GHz,11461 -1212,Intel Xeon E5-1660 @ 3.30GHz,8394 -2120,Intel Xeon E5-1660 v2 @ 3.70GHz,10278 -2412,Intel Xeon E5-1660 v3 @ 3.00GHz,12544 -2866,Intel Xeon E5-1660 v4 @ 3.20GHz,13574 -2342,Intel Xeon E5-1680 v2 @ 3.00GHz,12751 -2497,Intel Xeon E5-1680 v3 @ 3.20GHz,13116 -2869,Intel Xeon E5-1680 v4 @ 3.40GHz,13986 -2755,Intel Xeon E5-1681 v3 @ 2.90GHz,14820 -1827,Intel Xeon E5-2403 @ 1.80GHz,2346 -2519,Intel Xeon E5-2403 v2 @ 1.80GHz,2873 -1856,Intel Xeon E5-2407 @ 2.20GHz,2658 -2354,Intel Xeon E5-2407 v2 @ 2.40GHz,3504 -2729,Intel Xeon E5-2418L @ 2.00GHz,3518 -5025,Intel Xeon E5-2418L v2 @ 2.00GHz,5380 -1213,Intel Xeon E5-2420 @ 1.90GHz,5023 -2217,Intel Xeon E5-2420 v2 @ 2.20GHz,6350 -1788,Intel Xeon E5-2430 @ 2.20GHz,5586 -2304,Intel Xeon E5-2430 v2 @ 2.50GHz,7039 -3139,Intel Xeon E5-2430L @ 2.00GHz,5539 -2494,Intel Xeon E5-2430L v2 @ 2.40GHz,6332 -2194,Intel Xeon E5-2440 @ 2.40GHz,6091 -2411,Intel Xeon E5-2440 v2 @ 1.90GHz,7655 -3208,Intel Xeon E5-2448L v2 @ 1.80GHz,6774 -2514,Intel Xeon E5-2450 @ 2.10GHz,7534 -3068,Intel Xeon E5-2450 v2 @ 2.50GHz,9292 -2572,Intel Xeon E5-2450L @ 1.80GHz,5880 -2003,Intel Xeon E5-2470 @ 2.30GHz,8295 -2715,Intel Xeon E5-2470 v2 @ 2.40GHz,10588 -1771,Intel Xeon E5-2603 @ 1.80GHz,2362 -2420,Intel Xeon E5-2603 v2 @ 1.80GHz,2751 -2468,Intel Xeon E5-2603 v3 @ 1.60GHz,3817 -2834,Intel Xeon E5-2603 v4 @ 1.70GHz,4695 -3173,Intel Xeon E5-2608L v3 @ 2.00GHz,6415 -5020,Intel Xeon E5-2608L v4 @ 1.60GHz,7447 -1429,Intel Xeon E5-2609 @ 2.40GHz,2860 -2202,Intel Xeon E5-2609 v2 @ 2.50GHz,3500 -2427,Intel Xeon E5-2609 v3 @ 1.90GHz,4444 -2850,Intel Xeon E5-2609 v4 @ 1.70GHz,5443 -2965,Intel Xeon E5-2618L v3 @ 2.30GHz,10881 -3101,Intel Xeon E5-2618L v4 @ 2.20GHz,12406 -1214,Intel Xeon E5-2620 @ 2.00GHz,5289 -2051,Intel Xeon E5-2620 v2 @ 2.10GHz,6239 -2418,Intel Xeon E5-2620 v3 @ 2.40GHz,7804 -2766,Intel Xeon E5-2620 v4 @ 2.10GHz,9162 -2492,Intel Xeon E5-2623 v3 @ 3.00GHz,6790 -2808,Intel Xeon E5-2623 v4 @ 2.60GHz,6940 -4519,Intel Xeon E5-2628 v3 @ 2.50GHz,8447 -2576,Intel Xeon E5-2628L v2 @ 1.90GHz,7181 -2560,Intel Xeon E5-2628L v3 @ 2.00GHz,9949 -2964,Intel Xeon E5-2628L v4 @ 1.90GHz,11079 -2867,Intel Xeon E5-2629 v3 @ 2.40GHz,9139 -1215,Intel Xeon E5-2630 @ 2.30GHz,6149 -2052,Intel Xeon E5-2630 v2 @ 2.60GHz,7480 -2386,Intel Xeon E5-2630 v3 @ 2.40GHz,10420 -2758,Intel Xeon E5-2630 v4 @ 2.20GHz,11709 -2222,Intel Xeon E5-2630L @ 2.00GHz,5305 -2435,Intel Xeon E5-2630L v2 @ 2.40GHz,6701 -2818,Intel Xeon E5-2630L v3 @ 1.80GHz,8811 -2914,Intel Xeon E5-2630L v4 @ 1.80GHz,10491 -3236,Intel Xeon E5-2637 @ 3.00GHz,2978 -2178,Intel Xeon E5-2637 v2 @ 3.50GHz,6413 -2383,Intel Xeon E5-2637 v3 @ 3.50GHz,7259 -2790,Intel Xeon E5-2637 v4 @ 3.50GHz,7385 -1216,Intel Xeon E5-2640 @ 2.50GHz,6321 -2153,Intel Xeon E5-2640 v2 @ 2.00GHz,7636 -2365,Intel Xeon E5-2640 v3 @ 2.60GHz,11178 -2752,Intel Xeon E5-2640 v4 @ 2.40GHz,12304 -1217,Intel Xeon E5-2643 @ 3.30GHz,5428 -2084,Intel Xeon E5-2643 v2 @ 3.50GHz,9134 -2479,Intel Xeon E5-2643 v3 @ 3.40GHz,10445 -2811,Intel Xeon E5-2643 v4 @ 3.40GHz,11128 -2605,Intel Xeon E5-2648L @ 1.80GHz,5262 -3157,Intel Xeon E5-2648L v2 @ 1.90GHz,8828 -2748,Intel Xeon E5-2648L v3 @ 1.80GHz,9847 -3044,Intel Xeon E5-2648L v4 @ 1.80GHz,11547 -3194,Intel Xeon E5-2649 v3 @ 2.30GHz,12399 -1218,Intel Xeon E5-2650 @ 2.00GHz,7418 -2042,Intel Xeon E5-2650 v2 @ 2.60GHz,9931 -2344,Intel Xeon E5-2650 v3 @ 2.30GHz,11982 -2797,Intel Xeon E5-2650 v4 @ 2.20GHz,13764 -1776,Intel Xeon E5-2650L @ 1.80GHz,6192 -2989,Intel Xeon E5-2650L v2 @ 1.70GHz,7586 -2588,Intel Xeon E5-2650L v3 @ 1.80GHz,11851 -3054,Intel Xeon E5-2650L v4 @ 1.70GHz,12646 -2739,Intel Xeon E5-2651 v2 @ 1.80GHz,9488 -1487,Intel Xeon E5-2658 @ 2.10GHz,6073 -2110,Intel Xeon E5-2658 v2 @ 2.40GHz,10559 -2619,Intel Xeon E5-2658 v3 @ 2.20GHz,13487 -2904,Intel Xeon E5-2658 v4 @ 2.30GHz,14434 -3501,Intel Xeon E5-2658A v3 @ 2.20GHz,14879 -1219,Intel Xeon E5-2660 @ 2.20GHz,8138 -2184,Intel Xeon E5-2660 v2 @ 2.20GHz,10582 -2359,Intel Xeon E5-2660 v3 @ 2.60GHz,13200 -2881,Intel Xeon E5-2660 v4 @ 2.00GHz,16060 -2677,Intel Xeon E5-2663 v3 @ 2.80GHz,11777 -1439,Intel Xeon E5-2665 @ 2.40GHz,8248 -2471,Intel Xeon E5-2666 v3 @ 2.90GHz,14352 -1488,Intel Xeon E5-2667 @ 2.90GHz,7511 -2154,Intel Xeon E5-2667 v2 @ 3.30GHz,12312 -2441,Intel Xeon E5-2667 v3 @ 3.20GHz,12556 -2830,Intel Xeon E5-2667 v4 @ 3.20GHz,13858 -2700,Intel Xeon E5-2669 v3 @ 2.30GHz,16107 -1220,Intel Xeon E5-2670 @ 2.60GHz,8937 -2152,Intel Xeon E5-2670 v2 @ 2.50GHz,11298 -2337,Intel Xeon E5-2670 v3 @ 2.30GHz,13691 -2741,Intel Xeon E5-2673 v2 @ 3.30GHz,12128 -2606,Intel Xeon E5-2673 v3 @ 2.40GHz,14360 -2888,Intel Xeon E5-2673 v4 @ 2.30GHz,21576 -2686,Intel Xeon E5-2675 v3 @ 1.80GHz,13180 -2643,Intel Xeon E5-2676 v3 @ 2.40GHz,14019 -3780,Intel Xeon E5-2676 v4 @ 2.40GHz,18978 -2584,Intel Xeon E5-2678 v3 @ 2.50GHz,14669 -2805,Intel Xeon E5-2679 v4 @ 2.50GHz,24131 -1221,Intel Xeon E5-2680 @ 2.70GHz,9394 -2061,Intel Xeon E5-2680 v2 @ 2.80GHz,12628 -2390,Intel Xeon E5-2680 v3 @ 2.50GHz,15337 -2779,Intel Xeon E5-2680 v4 @ 2.40GHz,17956 -3892,Intel Xeon E5-2680R v4 @ 2.40GHz,17487 -3081,Intel Xeon E5-2682 v4 @ 2.50GHz,19495 -2491,Intel Xeon E5-2683 v3 @ 2.00GHz,14923 -2908,Intel Xeon E5-2683 v4 @ 2.10GHz,17679 -2538,Intel Xeon E5-2685 v3 @ 2.60GHz,12944 -2568,Intel Xeon E5-2686 v3 @ 2.00GHz,18148 -2870,Intel Xeon E5-2686 v4 @ 2.30GHz,20956 -1222,Intel Xeon E5-2687W @ 3.10GHz,10005 -2045,Intel Xeon E5-2687W v2 @ 3.40GHz,12227 -2387,Intel Xeon E5-2687W v3 @ 3.10GHz,14669 -2765,Intel Xeon E5-2687W v4 @ 3.00GHz,18003 -1881,Intel Xeon E5-2689 @ 2.60GHz,9724 -2853,Intel Xeon E5-2689 v4 @ 3.10GHz,16677 -1223,Intel Xeon E5-2690 @ 2.90GHz,9748 -2057,Intel Xeon E5-2690 v2 @ 3.00GHz,13457 -2364,Intel Xeon E5-2690 v3 @ 2.60GHz,16443 -2780,Intel Xeon E5-2690 v4 @ 2.60GHz,19613 -2761,Intel Xeon E5-2692 v2 @ 2.20GHz,12119 -2114,Intel Xeon E5-2695 v2 @ 2.40GHz,13238 -2371,Intel Xeon E5-2695 v3 @ 2.30GHz,16734 -2846,Intel Xeon E5-2695 v4 @ 2.10GHz,19377 -2039,Intel Xeon E5-2696 v2 @ 2.50GHz,14079 -2526,Intel Xeon E5-2696 v3 @ 2.30GHz,22722 -2750,Intel Xeon E5-2696 v4 @ 2.20GHz,24764 -2009,Intel Xeon E5-2697 v2 @ 2.70GHz,14319 -2333,Intel Xeon E5-2697 v3 @ 2.60GHz,18879 -2783,Intel Xeon E5-2697 v4 @ 2.30GHz,20736 -2814,Intel Xeon E5-2697A v4 @ 2.60GHz,21772 -3910,Intel Xeon E5-2697R v4 @ 2.30GHz,20843 -2368,Intel Xeon E5-2698 v3 @ 2.30GHz,18853 -2806,Intel Xeon E5-2698 v4 @ 2.20GHz,23580 -2787,Intel Xeon E5-2698B v3 @ 2.00GHz,16633 -3924,Intel Xeon E5-2698R v4 @ 2.20GHz,25605 -2366,Intel Xeon E5-2699 v3 @ 2.30GHz,20499 -2753,Intel Xeon E5-2699 v4 @ 2.20GHz,25218 -3398,Intel Xeon E5-2699A v4 @ 2.40GHz,24208 -3067,Intel Xeon E5-2699C v4 @ 2.20GHz,22308 -2181,Intel Xeon E5-4603 @ 2.00GHz,3391 -2828,Intel Xeon E5-4607 v2 @ 2.60GHz,6986 -3348,Intel Xeon E5-4610 @ 2.40GHz,6460 -3527,Intel Xeon E5-4610 v3 @ 1.70GHz,7229 -2150,Intel Xeon E5-4617 @ 2.90GHz,6298 -2615,Intel Xeon E5-4620 @ 2.20GHz,6830 -2620,Intel Xeon E5-4620 v2 @ 2.60GHz,9540 -3640,Intel Xeon E5-4620 v3 @ 2.00GHz,10525 -2510,Intel Xeon E5-4627 v2 @ 3.30GHz,9320 -2913,Intel Xeon E5-4627 v3 @ 2.60GHz,11344 -3005,Intel Xeon E5-4627 v4 @ 2.60GHz,12969 -1224,Intel Xeon E5-4640 @ 2.40GHz,7012 -3031,Intel Xeon E5-4640 v3 @ 1.90GHz,10372 -3024,Intel Xeon E5-4648 v3 @ 1.70GHz,9061 -1225,Intel Xeon E5-4650 @ 2.70GHz,8630 -3386,Intel Xeon E5-4650 v2 @ 2.40GHz,11064 -3206,Intel Xeon E5-4650 v3 @ 2.10GHz,10838 -3039,Intel Xeon E5-4650L @ 2.60GHz,8533 -3250,Intel Xeon E5-4655 v3 @ 2.90GHz,9377 -2480,Intel Xeon E5-4657L v2 @ 2.40GHz,11613 -3010,Intel Xeon E5-4660 v3 @ 2.10GHz,14256 -3380,Intel Xeon E5-4660 v4 @ 2.20GHz,15375 -3163,Intel Xeon E5-4667 v3 @ 2.00GHz,15397 -3902,Intel Xeon E5-4667 v4 @ 2.20GHz,20319 -2678,Intel Xeon E5-4669 v3 @ 2.10GHz,17430 -2997,Intel Xeon E5-4669 v4 @ 2.20GHz,11523 -1226,Intel Xeon E5205 @ 1.86GHz,838 -1227,Intel Xeon E5240 @ 3.00GHz,1448 -1704,Intel Xeon E5310 @ 1.60GHz,1306 -1228,Intel Xeon E5320 @ 1.86GHz,1469 -1229,Intel Xeon E5335 @ 2.00GHz,1549 -1230,Intel Xeon E5345 @ 2.33GHz,1868 -1231,Intel Xeon E5405 @ 2.00GHz,1702 -1232,Intel Xeon E5410 @ 2.33GHz,1990 -1233,Intel Xeon E5420 @ 2.50GHz,2005 -1234,Intel Xeon E5430 @ 2.66GHz,2233 -1235,Intel Xeon E5440 @ 2.83GHz,2362 -1236,Intel Xeon E5450 @ 3.00GHz,2565 -1237,Intel Xeon E5462 @ 2.80GHz,2110 -1705,Intel Xeon E5472 @ 3.00GHz,2286 -1238,Intel Xeon E5502 @ 1.87GHz,837 -1239,Intel Xeon E5503 @ 2.00GHz,804 -1240,Intel Xeon E5504 @ 2.00GHz,1519 -1241,Intel Xeon E5506 @ 2.13GHz,1967 -1242,Intel Xeon E5507 @ 2.27GHz,1928 -1243,Intel Xeon E5520 @ 2.27GHz,2504 -1244,Intel Xeon E5530 @ 2.40GHz,2676 -1245,Intel Xeon E5540 @ 2.53GHz,2766 -1246,Intel Xeon E5603 @ 1.60GHz,1935 -1247,Intel Xeon E5606 @ 2.13GHz,2365 -1248,Intel Xeon E5607 @ 2.27GHz,2686 -1249,Intel Xeon E5620 @ 2.40GHz,3502 -1250,Intel Xeon E5630 @ 2.53GHz,3754 -1251,Intel Xeon E5640 @ 2.67GHz,3702 -1252,Intel Xeon E5645 @ 2.40GHz,4934 -1253,Intel Xeon E5649 @ 2.53GHz,5686 -3160,Intel Xeon E7- 2830 @ 2.13GHz,2027 -2831,Intel Xeon E7-8880 v3 @ 2.30GHz,18244 -5181,Intel Xeon E7-8891 v3 @ 2.80GHz,21615 -2726,Intel Xeon E7320 @ 2.13GHz,1469 -3185,Intel Xeon Gold 5115 @ 2.40GHz,14649 -3108,Intel Xeon Gold 5117 @ 2.00GHz,15816 -3148,Intel Xeon Gold 5118 @ 2.30GHz,16669 -3154,Intel Xeon Gold 5120 @ 2.20GHz,17686 -3229,Intel Xeon Gold 5120T @ 2.20GHz,18127 -3128,Intel Xeon Gold 5122 @ 3.60GHz,8857 -3620,Intel Xeon Gold 5215 @ 2.50GHz,15624 -3585,Intel Xeon Gold 5217 @ 3.00GHz,15429 -3536,Intel Xeon Gold 5218 @ 2.30GHz,21986 -4260,Intel Xeon Gold 5218R @ 2.10GHz,25650 -3439,Intel Xeon Gold 5218T @ 2.10GHz,21433 -3534,Intel Xeon Gold 5220 @ 2.20GHz,24154 -4217,Intel Xeon Gold 5220R @ 2.20GHz,33370 -3475,Intel Xeon Gold 5222 @ 3.80GHz,9489 -4492,Intel Xeon Gold 5315Y @ 3.20GHz,20724 -4326,Intel Xeon Gold 5317 @ 3.00GHz,27402 -4703,Intel Xeon Gold 5318Y @ 2.10GHz,33283 -4594,Intel Xeon Gold 5320 @ 2.20GHz,37558 -5754,Intel Xeon Gold 5412U,52092 -5292,Intel Xeon Gold 5415+,25012 -5306,Intel Xeon Gold 5416S,36579 -5307,Intel Xeon Gold 5420+,57593 -5067,Intel Xeon Gold 6122 @ 1.80GHz,23781 -3219,Intel Xeon Gold 6126 @ 2.60GHz,19223 -3104,Intel Xeon Gold 6128 @ 3.40GHz,13605 -3126,Intel Xeon Gold 6130 @ 2.10GHz,20362 -3855,Intel Xeon Gold 6130T @ 2.10GHz,21804 -3227,Intel Xeon Gold 6132 @ 2.60GHz,22110 -3008,Intel Xeon Gold 6134 @ 3.20GHz,16651 -3065,Intel Xeon Gold 6136 @ 3.00GHz,21413 -3381,Intel Xeon Gold 6137 @ 3.90GHz,19365 -3137,Intel Xeon Gold 6138 @ 2.00GHz,21592 -3703,Intel Xeon Gold 6138T @ 2.00GHz,20649 -3132,Intel Xeon Gold 6140 @ 2.30GHz,23016 -3273,Intel Xeon Gold 6142 @ 2.60GHz,27114 -3502,Intel Xeon Gold 6143 @ 2.80GHz,24786 -3110,Intel Xeon Gold 6144 @ 3.50GHz,19993 -3205,Intel Xeon Gold 6146 @ 3.20GHz,23296 -3176,Intel Xeon Gold 6148 @ 2.40GHz,28988 -3046,Intel Xeon Gold 6150 @ 2.70GHz,26905 -3169,Intel Xeon Gold 6152 @ 2.10GHz,24680 -3127,Intel Xeon Gold 6154 @ 3.00GHz,28632 -3742,Intel Xeon Gold 6208U @ 2.90GHz,27085 -3540,Intel Xeon Gold 6210U @ 2.50GHz,28915 -3608,Intel Xeon Gold 6212U @ 2.40GHz,27470 -3682,Intel Xeon Gold 6226 @ 2.70GHz,19810 -3728,Intel Xeon Gold 6226R @ 2.90GHz,26307 -3468,Intel Xeon Gold 6230 @ 2.10GHz,27069 -4070,Intel Xeon Gold 6230R @ 2.10GHz,34183 -3518,Intel Xeon Gold 6234 @ 3.30GHz,17752 -3631,Intel Xeon Gold 6238 @ 2.10GHz,27617 -4132,Intel Xeon Gold 6238R @ 2.20GHz,37511 -3739,Intel Xeon Gold 6240R @ 2.40GHz,33353 -3516,Intel Xeon Gold 6242 @ 2.80GHz,26288 -3861,Intel Xeon Gold 6242R @ 3.10GHz,34963 -3504,Intel Xeon Gold 6244 @ 3.60GHz,18980 -3521,Intel Xeon Gold 6246 @ 3.30GHz,24829 -3854,Intel Xeon Gold 6246R @ 3.40GHz,30468 -3517,Intel Xeon Gold 6248 @ 2.50GHz,29504 -3732,Intel Xeon Gold 6248R @ 3.00GHz,35626 -4586,Intel Xeon Gold 6250 @ 3.90GHz,20915 -3532,Intel Xeon Gold 6252 @ 2.10GHz,27148 -4539,Intel Xeon Gold 6253CL @ 3.10GHz,28549 -3482,Intel Xeon Gold 6254 @ 3.10GHz,30381 -5076,Intel Xeon Gold 6262V @ 1.90GHz,3155 -5609,Intel Xeon Gold 6268CL @ 2.80GHz,36878 -4424,Intel Xeon Gold 6278C @ 2.60GHz,32835 -4606,Intel Xeon Gold 6312U @ 2.40GHz,42124 -4950,Intel Xeon Gold 6314U @ 2.30GHz,48013 -4651,Intel Xeon Gold 6326 @ 2.90GHz,35224 -4513,Intel Xeon Gold 6330 @ 2.00GHz,43056 -4865,Intel Xeon Gold 6330N @ 2.20GHz,36360 -4488,Intel Xeon Gold 6334 @ 3.60GHz,21512 -4484,Intel Xeon Gold 6336Y @ 2.40GHz,45517 -4592,Intel Xeon Gold 6338 @ 2.00GHz,33814 -4656,Intel Xeon Gold 6338N @ 2.20GHz,42552 -4485,Intel Xeon Gold 6342 @ 2.80GHz,47320 -4657,Intel Xeon Gold 6346 @ 3.10GHz,37722 -4494,Intel Xeon Gold 6348 @ 2.60GHz,52276 -4627,Intel Xeon Gold 6354 @ 3.00GHz,41445 -5312,Intel Xeon Gold 6414U,57200 -5669,Intel Xeon Gold 6421N,60551 -5778,Intel Xeon Gold 6423N,57434 -5686,Intel Xeon Gold 6426Y,41447 -5666,Intel Xeon Gold 6438N,52789 -5313,Intel Xeon Gold 6448Y,60449 -2044,Intel Xeon L3110 @ 3.00GHz,1338 -1254,Intel Xeon L3360 @ 2.83GHz,2306 -1899,Intel Xeon L3406 @ 2.27GHz,928 -1255,Intel Xeon L3426 @ 1.87GHz,2590 -1257,Intel Xeon L5240 @ 3.00GHz,1337 -2778,Intel Xeon L5310 @ 1.60GHz,1385 -1258,Intel Xeon L5320 @ 1.86GHz,1118 -1977,Intel Xeon L5335 @ 2.00GHz,1678 -2231,Intel Xeon L5408 @ 2.13GHz,1769 -1706,Intel Xeon L5410 @ 2.33GHz,1921 -1259,Intel Xeon L5420 @ 2.50GHz,2116 -2170,Intel Xeon L5430 @ 2.66GHz,2260 -1260,Intel Xeon L5520 @ 2.27GHz,2274 -1261,Intel Xeon L5530 @ 2.40GHz,2522 -1883,Intel Xeon L5609 @ 1.87GHz,3298 -2086,Intel Xeon L5630 @ 2.13GHz,3018 -1262,Intel Xeon L5638 @ 2.00GHz,3707 -1983,Intel Xeon L5639 @ 2.13GHz,4419 -1263,Intel Xeon L5640 @ 2.27GHz,4606 -2431,Intel Xeon L7455 @ 2.13GHz,2494 -2524,Intel Xeon MV 3.20GHz,582 -5728,Intel Xeon Phi 7210 @ 1.30GHz,7306 -3352,Intel Xeon Platinum 8124M @ 3.00GHz,27336 -3458,Intel Xeon Platinum 8151 @ 3.40GHz,6591 -3085,Intel Xeon Platinum 8160 @ 2.10GHz,27968 -3389,Intel Xeon Platinum 8167M @ 2.00GHz,25396 -3111,Intel Xeon Platinum 8168 @ 2.70GHz,32549 -3220,Intel Xeon Platinum 8171M @ 2.60GHz,30632 -3182,Intel Xeon Platinum 8173M @ 2.00GHz,31837 -3311,Intel Xeon Platinum 8175M @ 2.50GHz,26659 -3473,Intel Xeon Platinum 8176 @ 2.10GHz,23179 -3207,Intel Xeon Platinum 8180 @ 2.50GHz,38259 -3671,Intel Xeon Platinum 8259CL @ 2.50GHz,30463 -3561,Intel Xeon Platinum 8260 @ 2.40GHz,29360 -3858,Intel Xeon Platinum 8260M @ 2.30GHz,33970 -3472,Intel Xeon Platinum 8268 @ 2.90GHz,31632 -5802,Intel Xeon Platinum 8270 @ 2.70GHz,29986 -3624,Intel Xeon Platinum 8275CL @ 3.00GHz,40794 -3662,Intel Xeon Platinum 8280 @ 2.70GHz,32781 -4785,Intel Xeon Platinum 8347C @ 2.10GHz,49386 -4493,Intel Xeon Platinum 8358 @ 2.60GHz,54416 -5698,Intel Xeon Platinum 8360Y @ 2.40GHz,54078 -4486,Intel Xeon Platinum 8375C @ 2.90GHz,55705 -4483,Intel Xeon Platinum 8380 @ 2.30GHz,62318 -5664,Intel Xeon Platinum 8461V,74982 -5693,Intel Xeon Platinum 8470 @2.00GHz,89850 -5203,Intel Xeon Platinum 8481C @ 2.70GHz,11641 -4620,Intel Xeon Platinum P-8124 @ 3.00GHz,22674 -3167,Intel Xeon Silver 4108 @ 1.80GHz,8871 -3228,Intel Xeon Silver 4109T @ 2.00GHz,10348 -3106,Intel Xeon Silver 4110 @ 2.10GHz,10131 -3199,Intel Xeon Silver 4112 @ 2.60GHz,6446 -3095,Intel Xeon Silver 4114 @ 2.20GHz,13082 -3179,Intel Xeon Silver 4116 @ 2.10GHz,15065 -4154,Intel Xeon Silver 4116T @ 2.10GHz,15187 -3189,Intel Xeon Silver 4123 @ 3.00GHz,14405 -3507,Intel Xeon Silver 4208 @ 2.10GHz,11384 -3440,Intel Xeon Silver 4209T @ 2.20GHz,11080 -3524,Intel Xeon Silver 4210 @ 2.20GHz,13340 -3752,Intel Xeon Silver 4210R @ 2.40GHz,15089 -3535,Intel Xeon Silver 4214 @ 2.20GHz,16190 -3711,Intel Xeon Silver 4214R @ 2.40GHz,18324 -3764,Intel Xeon Silver 4214Y @ 2.20GHz,16442 -3476,Intel Xeon Silver 4215 @ 2.50GHz,14439 -3864,Intel Xeon Silver 4215R @ 3.20GHz,15140 -3533,Intel Xeon Silver 4216 @ 2.10GHz,20613 -4462,Intel Xeon Silver 4309Y @ 2.80GHz,19227 -4322,Intel Xeon Silver 4310 @ 2.10GHz,22797 -4534,Intel Xeon Silver 4310T @ 2.30GHz,20973 -4489,Intel Xeon Silver 4314 @ 2.40GHz,29346 -4481,Intel Xeon Silver 4316 @ 2.30GHz,37264 -5407,Intel Xeon Silver 4410T,28859 -5321,Intel Xeon Silver 4410Y,24623 -5546,Intel Xeon Silver 4416+,45127 -3818,Intel Xeon W-10855M @ 2.80GHz,12857 -3762,Intel Xeon W-10885M @ 2.40GHz,15660 -5804,Intel Xeon W-11155MLE @ 1.80GHz,8502 -5081,Intel Xeon W-11555MLE @ 1.90GHz,12591 -5488,Intel Xeon W-11555MRE @ 2.60GHz,17484 -4417,Intel Xeon W-11855M @ 3.20GHz,18282 -4900,Intel Xeon W-11865MLE @ 1.50GHz,15958 -4901,Intel Xeon W-11865MRE @ 2.60GHz,23702 -4419,Intel Xeon W-11955M @ 2.60GHz,22782 -3827,Intel Xeon W-1250 @ 3.30GHz,13665 -4934,Intel Xeon W-1250E @ 3.50GHz,12212 -4362,Intel Xeon W-1250P @ 4.10GHz,14440 -3812,Intel Xeon W-1270 @ 3.40GHz,17519 -4700,Intel Xeon W-1270E @ 3.40GHz,18635 -3839,Intel Xeon W-1270P @ 3.80GHz,18553 -4568,Intel Xeon W-1270TE @ 2.00GHz,13553 -3815,Intel Xeon W-1290 @ 3.20GHz,20123 -4276,Intel Xeon W-1290E @ 3.50GHz,18786 -3831,Intel Xeon W-1290P @ 3.70GHz,22766 -3908,Intel Xeon W-1290T @ 1.90GHz,18409 -4425,Intel Xeon W-1350 @ 3.30GHz,19015 -4595,Intel Xeon W-1350P @ 4.00GHz,19853 -4547,Intel Xeon W-1370 @ 2.90GHz,23449 -4377,Intel Xeon W-1370P @ 3.60GHz,24540 -4596,Intel Xeon W-1390 @ 2.80GHz,23902 -4531,Intel Xeon W-1390P @ 3.50GHz,25451 -3276,Intel Xeon W-2102 @ 2.90GHz,5089 -3343,Intel Xeon W-2104 @ 3.20GHz,5729 -3136,Intel Xeon W-2123 @ 3.60GHz,8503 -3146,Intel Xeon W-2125 @ 4.00GHz,10027 -3084,Intel Xeon W-2133 @ 3.60GHz,12640 -3121,Intel Xeon W-2135 @ 3.70GHz,14406 -3172,Intel Xeon W-2140B @ 3.20GHz,17296 -3156,Intel Xeon W-2145 @ 3.70GHz,18142 -3162,Intel Xeon W-2150B @ 3.00GHz,20511 -3178,Intel Xeon W-2155 @ 3.30GHz,21019 -3324,Intel Xeon W-2170B @ 2.50GHz,24064 -3409,Intel Xeon W-2175 @ 2.50GHz,23398 -4420,Intel Xeon W-2191B @ 2.30GHz,28851 -3149,Intel Xeon W-2195 @ 2.30GHz,27897 -3692,Intel Xeon W-2223 @ 3.60GHz,8584 -3678,Intel Xeon W-2225 @ 4.10GHz,10594 -3821,Intel Xeon W-2235 @ 3.80GHz,14372 -3691,Intel Xeon W-2245 @ 3.90GHz,19474 -3689,Intel Xeon W-2255 @ 3.70GHz,22272 -3817,Intel Xeon W-2265 @ 3.50GHz,26014 -3891,Intel Xeon W-2275 @ 3.30GHz,27847 -3701,Intel Xeon W-2295 @ 3.00GHz,30590 -3420,Intel Xeon W-3175X @ 3.10GHz,37167 -3823,Intel Xeon W-3223 @ 3.50GHz,17290 -3601,Intel Xeon W-3235 @ 3.30GHz,25948 -3850,Intel Xeon W-3245 @ 3.20GHz,30505 -5017,Intel Xeon W-3245M @ 3.20GHz,26174 -3541,Intel Xeon W-3265 @ 2.70GHz,30105 -4551,Intel Xeon W-3265M @ 2.70GHz,32025 -5334,Intel Xeon W-3275 @ 2.50GHz,41554 -3642,Intel Xeon W-3275M @ 2.50GHz,38622 -4570,Intel Xeon W-3323 @ 3.50GHz,25875 -4822,Intel Xeon W-3335 @ 3.40GHz,39293 -4996,Intel Xeon W-3345 @ 3.00GHz,48261 -5193,Intel Xeon W-3365 @ 2.70GHz,59038 -4893,Intel Xeon W-3375 @ 2.50GHz,59069 -5464,Intel Xeon w3-2423,16505 -5469,Intel Xeon w3-2425,18504 -5501,Intel Xeon w3-2435,26943 -1264,Intel Xeon W3503 @ 2.40GHz,1085 -1265,Intel Xeon W3505 @ 2.53GHz,1161 -1266,Intel Xeon W3520 @ 2.67GHz,2934 -1267,Intel Xeon W3530 @ 2.80GHz,3063 -1268,Intel Xeon W3540 @ 2.93GHz,3070 -1269,Intel Xeon W3550 @ 3.07GHz,3220 -1270,Intel Xeon W3565 @ 3.20GHz,3364 -1271,Intel Xeon W3570 @ 3.20GHz,3185 -1272,Intel Xeon W3580 @ 3.33GHz,3612 -1273,Intel Xeon W3670 @ 3.20GHz,6400 -1274,Intel Xeon W3680 @ 3.33GHz,6971 -1275,Intel Xeon W3690 @ 3.47GHz,7251 -5452,Intel Xeon w5-2445,32607 -5604,Intel Xeon w5-2455X,37979 -5463,Intel Xeon w5-2465X,46674 -5773,Intel Xeon w5-3423,28986 -5598,Intel Xeon w5-3425,36404 -5486,Intel Xeon w5-3435X,46896 -1276,Intel Xeon W5580 @ 3.20GHz,3368 -1277,Intel Xeon W5590 @ 3.33GHz,3342 -5577,Intel Xeon w7-2475X,54246 -5326,Intel Xeon w7-2495X,59302 -5612,Intel Xeon w7-3445,41588 -5478,Intel Xeon w7-3465X,68771 -5315,Intel Xeon w9-3475X,67227 -5480,Intel Xeon w9-3495X,95089 -1278,Intel Xeon X3210 @ 2.13GHz,1293 -1279,Intel Xeon X3220 @ 2.40GHz,1945 -1280,Intel Xeon X3230 @ 2.66GHz,2052 -1281,Intel Xeon X3320 @ 2.50GHz,1986 -2280,Intel Xeon X3323 @ 2.50GHz,1837 -1282,Intel Xeon X3330 @ 2.66GHz,2111 -1283,Intel Xeon X3350 @ 2.66GHz,2263 -2211,Intel Xeon X3353 @ 2.66GHz,2229 -1284,Intel Xeon X3360 @ 2.83GHz,2369 -2068,Intel Xeon X3363 @ 2.83GHz,2324 -1285,Intel Xeon X3370 @ 3.00GHz,2465 -1286,Intel Xeon X3380 @ 3.16GHz,2568 -1287,Intel Xeon X3430 @ 2.40GHz,2296 -1288,Intel Xeon X3440 @ 2.53GHz,2757 -1289,Intel Xeon X3450 @ 2.67GHz,2834 -1290,Intel Xeon X3460 @ 2.80GHz,2962 -1291,Intel Xeon X3470 @ 2.93GHz,3257 -1708,Intel Xeon X3480 @ 3.07GHz,3255 -1292,Intel Xeon X5260 @ 3.33GHz,1238 -2358,Intel Xeon X5270 @ 3.50GHz,1524 -1293,Intel Xeon X5272 @ 3.40GHz,1451 -1294,Intel Xeon X5355 @ 2.66GHz,1979 -1295,Intel Xeon X5365 @ 3.00GHz,2331 -1296,Intel Xeon X5450 @ 3.00GHz,2394 -1297,Intel Xeon X5460 @ 3.16GHz,2578 -1709,Intel Xeon X5470 @ 3.33GHz,2912 -1298,Intel Xeon X5472 @ 3.00GHz,2197 -1299,Intel Xeon X5482 @ 3.20GHz,2755 -1493,Intel Xeon X5492 @ 3.40GHz,2912 -1300,Intel Xeon X5550 @ 2.67GHz,3009 -1301,Intel Xeon X5560 @ 2.80GHz,3124 -1302,Intel Xeon X5570 @ 2.93GHz,3263 -1303,Intel Xeon X5647 @ 2.93GHz,4441 -1304,Intel Xeon X5650 @ 2.67GHz,5716 -1305,Intel Xeon X5660 @ 2.80GHz,6053 -1306,Intel Xeon X5667 @ 3.07GHz,4649 -1307,Intel Xeon X5670 @ 2.93GHz,6105 -1308,Intel Xeon X5672 @ 3.20GHz,4992 -1309,Intel Xeon X5675 @ 3.07GHz,6444 -1310,Intel Xeon X5677 @ 3.47GHz,5011 -1311,Intel Xeon X5679 @ 3.20GHz,7095 -1312,Intel Xeon X5680 @ 3.33GHz,6831 -1313,Intel Xeon X5687 @ 3.60GHz,5309 -1314,Intel Xeon X5690 @ 3.47GHz,7020 -1928,Intel Xeon X5698 @ 4.40GHz,3447 -2105,Intel Xeon X6550 @ 2.00GHz,1936 -5124,JLQ JR510,1050 -4581,"lisa based Qualcomm Technologies, Inc. SM7325",5456 -4510,M7221,758 -4184,Manta,356 -4475,"Mars based on Qualcomm Technologies, Inc SM8350",5230 -5473,Mediatek Dimensity 7200-Ultra (MT6886),4156 -5688,Mediatek Dimensity 9200 (MT6985),8446 -5765,Mediatek DM700,4471 -5062,MediaTek G99 Ultimate (MT6789),4299 -5672,MediaTek Kompanio 520/528 (MT8186/MT8186T),3949 -4014,MediaTek MT6735,562 -3953,MediaTek MT6737,453 -4095,MediaTek MT6737M,355 -4127,MediaTek MT6737T,664 -4125,MediaTek MT6739WA,401 -3990,MediaTek MT6739WW,434 -3939,MediaTek MT6750,1040 -4092,MediaTek MT6750T,1187 -4089,MediaTek MT6750V/WT,1153 -4019,MediaTek MT6753,1006 -4023,MediaTek MT6753T,1149 -4090,MediaTek MT6757CD,1757 -4091,MediaTek MT6757V,1550 -5786,Mediatek MT6761,1092 -5491,Mediatek MT6761V/CAB,1115 -3988,MediaTek MT6761V/WBB,757 -4000,MediaTek MT6761V/WE,743 -5711,Mediatek MT6762,1445 -4058,MediaTek MT6762G,1203 -4060,MediaTek MT6762V/CA,1204 -4107,MediaTek MT6762V/CB,1582 -4004,MediaTek MT6762V/CN,611 -3974,MediaTek MT6762V/WA,1469 -3956,MediaTek MT6762V/WB,1422 -3975,MediaTek MT6762V/WD,1555 -3936,MediaTek MT6762V/WR,1541 -4059,MediaTek MT6763V/CE,2130 -4097,MediaTek MT6763V/V,1569 -5468,Mediatek MT6765,1890 -3957,MediaTek MT6765G,1600 -5341,Mediatek MT6765H,2130 -4016,MediaTek MT6765V/CA,1784 -3962,MediaTek MT6765V/CB,1834 -5379,Mediatek MT6765V/WB,1720 -5618,Mediatek MT6765V/XBA,1593 -5499,Mediatek MT6768G,3232 -3976,MediaTek MT6768V/CA,2295 -5447,Mediatek MT6769H,3011 -3971,MediaTek MT6769T,2510 -4020,MediaTek MT6769V/CB,2395 -5440,Mediatek MT6769V/CT,2404 -4106,MediaTek MT6769V/CU,2650 -5439,Mediatek MT6769V/CZ,2940 -4032,MediaTek MT6769V/WB,2192 -4010,MediaTek MT6769Z,2464 -3985,MediaTek MT6771V/C,2636 -4015,MediaTek MT6771V/CT,2630 -3952,MediaTek MT6771V/W,2428 -4050,MediaTek MT6771V/WM,2225 -3960,MediaTek MT6771V/WT,2348 -5515,Mediatek MT6779,3506 -3941,MediaTek MT6779V/CE,3016 -3965,MediaTek MT6779V/CU,2622 -4046,MediaTek MT6779V/CV,2712 -5351,Mediatek MT6781,3650 -5397,Mediatek MT6781V/CD,3787 -5425,Mediatek MT6781V/CDZAMB-H,4104 -5593,Mediatek MT6785,3533 -3931,MediaTek MT6785V/CC,3351 -4035,MediaTek MT6785V/CD,3616 -5359,Mediatek MT6789V/CD,4345 -3925,MediaTek MT6797,1768 -4029,MediaTek MT6797T,1605 -4124,MediaTek MT6797X,2143 -5398,Mediatek MT6833,4051 -5532,Mediatek MT6833GP,4277 -5509,Mediatek MT6833P,3658 -5399,Mediatek MT6833V/NZA,3632 -5462,Mediatek MT6833V/PNZA,4253 -5380,Mediatek MT6833V/ZA,4278 -5676,Mediatek MT6835,4463 -4116,MediaTek MT6853T,3380 -5385,Mediatek MT6853V/NZA,4031 -5390,Mediatek MT6853V/TNZA,4587 -5465,Mediatek MT6855V/AZA,4577 -3932,MediaTek MT6873,4050 -5572,Mediatek MT6875,5249 -5422,Mediatek MT6877,4998 -5372,Mediatek MT6877V/TTZA,4856 -5459,Mediatek MT6877V/TZA,4929 -5475,Mediatek MT6877V/ZA,5015 -5592,Mediatek MT6879V/ZA,4047 -5673,Mediatek MT6879V_T/ZA,5187 -5418,Mediatek MT6883Z/CZA,6413 -5661,Mediatek MT6889,6322 -5601,Mediatek MT6891,4965 -5520,Mediatek MT6891Z_Z/CZA,6237 -5343,Mediatek MT6893,6337 -5605,Mediatek MT6893Z_T/CZA,6599 -4915,MediaTek MT6895,7615 -5368,Mediatek MT6895Z/TCZA,6359 -5416,Mediatek MT6895Z_A/TCZA,7615 -5384,Mediatek MT6895Z_B/TCZA,7273 -5709,Mediatek MT6896,7947 -5405,Mediatek MT6896Z/CZA,8001 -4876,MediaTek MT6983,6388 -5574,Mediatek MT6983W/CZA,9155 -5775,Mediatek MT6989,10042 -4085,MediaTek MT8163,604 -3967,MediaTek MT8166B,962 -4040,MediaTek MT8167B,366 -5275,MediaTek MT8168,1029 -4098,MediaTek MT8168A,702 -5791,Mediatek MT8168B,774 -5715,Mediatek MT8175B,592 -3928,MediaTek MT8183,2424 -5736,Mediatek MT8696,796 -4110,MediaTek MT8735B,418 -5782,Mediatek MT8765WA,529 -5474,Mediatek MT8766A,977 -5449,Mediatek MT8766B,1219 -5679,Mediatek MT8768A,1524 -4042,MediaTek MT8768CT,2022 -4047,MediaTek MT8768WA,1692 -5691,Mediatek MT8768WE,2046 -4027,MediaTek MT8768WT,1979 -5527,Mediatek MT8771V/PZA,4414 -5547,Mediatek MT8781V/CA,4279 -5400,Mediatek MT8781V/NA,4550 -5526,Mediatek MT8786V/CT,3368 -5430,Mediatek MT8786V/N,3139 -5541,Mediatek MT8788,3369 -5543,Mediatek MT8789,6640 -5600,Mediatek MT8789V/CT,3773 -5336,Mediatek MT8789V/T,4206 -5695,Mediatek MT8791V/TN,4831 -5409,Mediatek MT8797Z/CNZA,7078 -5681,Mediatek MT8798Z/CNZA,9179 -4113,Microsoft SQ1 @ 3.0 GHz,5510 -4131,Microsoft SQ2 @ 3.15 GHz,5936 -5065,Microsoft SQ3 @ 3.0 GHz,11742 -1717,Mobile AMD Athlon 2500+,241 -1325,Mobile AMD Athlon 4 2400+,233 -1328,Mobile AMD Athlon 64 3200+,326 -1329,Mobile AMD Athlon 64 3400+,333 -1330,Mobile AMD Athlon 64 3700+,356 -1331,Mobile AMD Athlon 64 4000+,313 -2126,Mobile AMD Athlon MP-M 1800+,173 -1802,Mobile AMD Athlon MP-M 2400+,192 -1334,Mobile AMD Athlon XP-M 1600+,169 -1335,Mobile AMD Athlon XP-M 1800+,193 -1341,Mobile AMD Athlon XP-M 2000+,196 -1337,Mobile AMD Athlon XP-M 2200+,237 -1338,Mobile AMD Athlon XP-M 2400+,225 -1342,Mobile AMD Athlon XP-M 2500+,226 -1343,Mobile AMD Athlon XP-M 2600+,241 -1344,Mobile AMD Athlon XP-M 2800+,238 -1345,Mobile AMD Athlon XP-M 3000+,238 -1349,Mobile AMD Sempron 2100+,164 -1350,Mobile AMD Sempron 2600+,256 -1351,Mobile AMD Sempron 2800+,237 -1352,Mobile AMD Sempron 3000+,269 -1348,Mobile AMD Sempron 3100+,277 -1353,Mobile AMD Sempron 3200+,245 -1354,Mobile AMD Sempron 3300+,294 -1355,Mobile AMD Sempron 3400+,269 -1356,Mobile AMD Sempron 3500+,237 -1357,Mobile AMD Sempron 3600+,338 -1732,Mobile AMD Sempron 3800+,335 -1734,Mobile Intel Celeron 1.70GHz,118 -1360,Mobile Intel Celeron 1.80GHz,121 -1737,Mobile Intel Celeron 1333MHz,183 -1361,Mobile Intel Celeron 2.00GHz,133 -1362,Mobile Intel Celeron 2.20GHz,147 -1363,Mobile Intel Celeron 2.40GHz,154 -1365,Mobile Intel Pentium 4 - M 1.70GHz,121 -1366,Mobile Intel Pentium 4 - M 1.80GHz,119 -1368,Mobile Intel Pentium 4 - M 2.00GHz,138 -1369,Mobile Intel Pentium 4 - M 2.20GHz,143 -1370,Mobile Intel Pentium 4 - M 2.40GHz,139 -1374,Mobile Intel Pentium 4 2.66GHz,182 -1375,Mobile Intel Pentium 4 2.80GHz,205 -1376,Mobile Intel Pentium 4 3.06GHz,220 -1377,Mobile Intel Pentium 4 3.20GHz,232 -1378,Mobile Intel Pentium 4 3.33GHz,344 -1382,Mobile Intel Pentium III - M 1200MHz,146 -1742,Mobile Intel Pentium III - M 933MHz,130 -5338,mocha,1125 -5708,Montage Jintide C4215R,14672 -5467,Montage Jintide C5318Y,22237 -4364,msm8960dt,306 -5155,MT3561S,723 -4815,MT5893,702 -4379,MT6592,521 -4530,MT6592T,1056 -4255,MT6735M,308 -4230,MT6735P,331 -5685,MT6737H,550 -4506,MT6738,692 -4578,MT6739CH,533 -4579,MT6739WM,310 -4699,MT6750V/C,1415 -4806,MT6750V/CS,955 -5090,MT6750V/DN,1271 -4426,MT6750V/W,845 -5450,MT6750V/WS,934 -4522,MT6752,1728 -5797,MT6752M,1735 -4542,MT6755,1278 -4507,MT6755BM,1070 -4441,MT6755M,1229 -4686,MT6755V/BM,1219 -5771,MT6755V/C,1554 -4520,MT6755V/W,1608 -4214,MT6755V/WM,1090 -4263,MT6755V/WS,1389 -4354,MT6757W,1941 -4218,MT6757WD,1771 -4430,MT6757WH,1161 -4324,MT6761V/CAB,802 -4239,MT6761V/CBB,910 -4428,MT6761V/CD,784 -4311,MT6761V/WAB,816 -4546,MT6761V/WD,580 -4975,MT6762,1735 -4438,mt6762m,538 -4378,MT6762V/CR,1194 -4414,MT6763V/B,1544 -4159,MT6763V/CT,1717 -4257,MT6763V/WT,1375 -4268,MT6765,1859 -4713,MT6765H,2132 -4223,MT6765V/WA,1761 -4192,MT6765V/WB,1878 -4575,MT6768G,2838 -4612,MT6769H,2696 -5072,MT6769V,2229 -4203,MT6769V/CT,2481 -4442,MT6769V/CZ,2765 -4954,MT6771V/CL,3079 -4315,MT6771V/WL,2354 -4990,mt6779,2251 -4731,MT6781,3899 -4646,MT6781V/CD,3969 -4361,MT6785,3542 -4243,MT6795,1290 -4252,MT6795M,968 -4451,MT6795MM,618 -4563,MT6797D,758 -4147,MT6797M,2004 -4359,MT6833,3784 -5747,MT6833GP,3238 -4650,MT6833P,4158 -4450,MT6833V/NZA,3641 -4574,MT6833V/PNZA,4164 -4480,MT6833V/ZA,4092 -4270,MT6853V/NZA,3330 -4166,MT6853V/TNZA,3616 -4591,MT6853V/ZA,3577 -4174,MT6875,4393 -4684,MT6877T,4548 -5192,MT6877V/TTZA,5253 -4745,MT6877V/TZA,4871 -4469,MT6877V/ZA,4787 -4690,MT6883Z/CZA,5665 -4133,MT6889Z/CZA,4504 -4561,MT6891,5817 -4662,MT6891Z/CZA,6025 -4599,MT6893,5102 -4328,MT6893Z/CZA,6467 -4470,MT6893Z_A/CZA,6043 -4870,MT6893Z_B/CZA,6371 -4640,MT6893Z_C/CZA,6139 -4571,MT6893Z_D/CZA,5701 -4946,MT6893Z_Z/CZA,6485 -4415,MT6969T,2228 -5655,MT8127,429 -4743,MT8161A,800 -4722,MT8161AA,857 -4667,MT8161P,508 -4453,MT8165,937 -4549,MT8167A,478 -4661,MT8167D,517 -4235,MT8168B,1054 -5255,MT8168M,852 -5095,MT8169A,1942 -4674,MT8173,804 -4660,MT8176,1406 -5781,MT8186,4078 -5585,MT8188JV/A,5140 -4744,MT8195AV/ZA,5735 -4898,MT8365,889 -5286,MT8395AV/ZA,2410 -5498,MT8667,3230 -4736,MT8696,738 -5551,MT8732T,1081 -4220,MT8735,495 -4824,MT8735A,731 -4982,MT8735M,358 -4393,MT8735P,548 -4617,MT8735T,704 -4889,MT8765WA,555 -4187,MT8765WB,419 -4285,MT8766A,990 -4204,MT8766B,813 -5622,MT8768WB,1074 -4330,MT8768WD,1122 -4866,MT8768WE,1314 -5289,MT8771V/PZA,4723 -4648,MT8783,1039 -4705,MT8786V/CA,3146 -4953,MT8786V/N,2992 -4229,MT8788,2726 -4847,MT8789V/CT,4060 -5004,MT8789V/T,4104 -5106,MT8797Z/CNZA,6550 -4505,MT9950,845 -4332,MTK6757,1158 -5330,MTK8257,842 -4373,Nvidia Tegra T132,1224 -4340,Nvidia Tegra T210,1635 -5544,nxp IMX8MQ,803 -4533,"Odin based on Qualcomm Technologies, Inc SM8350",6456 -4891,P22,1908 -1743,Pentium Dual-Core E6000 @ 3.46GHz,1472 -4803,Pentium Dual-Core T4200 @ 2.00GHz,775 -4244,Pentium Dual-Core T4500 @ 2.30GHz,932 -4153,QCT APQ8064 AWIFI,382 -4191,QCT APQ8064 DEB,453 -4232,QCT APQ8064 FLO,543 -3982,QCT APQ8064 MAKO,399 -5114,QCT APQ8064 MTP,389 -5659,QTI MSM8937,2142 -5628,QTI QCM4290,3169 -5652,QTI QCM5430,4006 -5740,QTI QCS8550,9995 -5645,QTI SDM439,1594 -5358,QTI SDM450,1609 -5394,QTI SDM660,2470 -5753,QTI SG8175P,7046 -5347,QTI SM4350,3836 -5413,QTI SM4375,3970 -5687,QTI SM4450,3625 -5374,QTI SM6115,2880 -5707,QTI SM6125,2975 -5345,QTI SM6150,3419 -5348,QTI SM6225,3551 -5419,QTI SM6350,4178 -5362,QTI SM6375,4185 -5521,QTI SM6450,5645 -5402,QTI SM7125,3928 -5353,QTI SM7150,3754 -5360,QTI SM7225,4343 -5411,QTI SM7250,4414 -5355,QTI SM7325,5897 -5455,QTI SM7350,5276 -5626,QTI SM7450,5482 -5406,QTI SM7475,7620 -5361,QTI SM8150,5258 -5346,QTI SM8250,6516 -5352,QTI SM8350,6517 -5344,QTI SM8450,6353 -5342,QTI SM8475,7282 -5356,QTI SM8550,9151 -5760,QTI SM8650,11259 -5132,Qualcomm,1354 -3915,Qualcomm APQ 8084 (Flattened Device Tree),683 -4338,Qualcomm APQ8026,332 -4007,Qualcomm APQ8084,603 -4135,Qualcomm MSM 8939 HUAWEI KIW-L21,1088 -4313,Qualcomm MSM 8939 HUAWEI KIW-L24,1065 -4422,Qualcomm MSM 8939 HUAWEI TEXAS-A1,1085 -4079,Qualcomm MSM 8974 HAMMERHEAD (Flattened Device Tre,566 -4161,Qualcomm MSM8226,322 -4296,Qualcomm MSM8228,332 -4165,Qualcomm MSM8626,294 -4818,Qualcomm MSM8916,424 -4119,Qualcomm MSM8917,649 -4249,Qualcomm MSM8926,300 -4222,Qualcomm MSM8928,337 -4080,Qualcomm MSM8937,1020 -4445,Qualcomm MSM8939,1180 -4464,Qualcomm MSM8953,1589 -4008,Qualcomm MSM8974,714 -4083,Qualcomm MSM8974PRO-AA,672 -4248,Qualcomm MSM8974PRO-AB,686 -4038,Qualcomm MSM8974PRO-AC,637 -4169,Qualcomm MSM8992,1255 -4237,Qualcomm MSM8994,754 -4254,Qualcomm MSM8996,1366 -3912,Qualcomm MSM8996PRO-AB,1638 -5366,Qualcomm MSM8998,3405 -5377,Qualcomm SC7180P,4558 -5745,Qualcomm SDM439,2195 -5371,Qualcomm SDM450,2855 -5540,Qualcomm SDM660,2719 -5583,Qualcomm SDM670,3230 -5506,Qualcomm SDM845,4287 -5565,Qualcomm SM4250,2749 -5457,Qualcomm SM4350,3569 -5654,Qualcomm SM6115,3001 -5365,Qualcomm SM6125,3017 -5461,Qualcomm SM6150,3722 -5436,Qualcomm SM7125,3641 -5548,Qualcomm SM7150,4177 -5363,Qualcomm SM7250,3808 -5350,Qualcomm SM7325,6007 -5438,Qualcomm SM8150,5516 -5404,Qualcomm SM8250,6695 -5389,Qualcomm SM8350,6768 -5168,Qualcomm Snapdragon 810,1316 -5383,"Qualcomm Technologies, Inc",3863 -4844,"Qualcomm Technologies, Inc 450",1978 -4186,"Qualcomm Technologies, Inc APQ8009",335 -4036,"Qualcomm Technologies, Inc APQ8016",395 -4001,"Qualcomm Technologies, Inc APQ8017",530 -4435,"Qualcomm Technologies, Inc APQ8053",2109 -4094,"Qualcomm Technologies, Inc APQ8076",1673 -5051,"Qualcomm Technologies, Inc APQ8094",1818 -3997,"Qualcomm Technologies, Inc APQ8096",1717 -4970,"Qualcomm Technologies, Inc APQ8096pro",730 -4084,"Qualcomm Technologies, Inc ATOLL-AB",3491 -3927,"Qualcomm Technologies, Inc BENGAL",2434 -4864,"Qualcomm Technologies, Inc BENGAL-IOT",1912 -4146,"Qualcomm Technologies, Inc BENGALP",2547 -5235,"Qualcomm Technologies, Inc BENGALP-IOT",3127 -4725,"Qualcomm Technologies, Inc KHAJE",3405 -3963,"Qualcomm Technologies, Inc KONA",5656 -4938,"Qualcomm Technologies, Inc KONA-IOT",6282 -3984,"Qualcomm Technologies, Inc LAGOON",3363 -3948,"Qualcomm Technologies, Inc LITO",3314 -4190,"Qualcomm Technologies, Inc MSM8216",292 -4118,"Qualcomm Technologies, Inc MSM8909",283 -4009,"Qualcomm Technologies, Inc MSM8916",394 -4025,"Qualcomm Technologies, Inc MSM8917",519 -4024,"Qualcomm Technologies, Inc MSM8920",471 -4289,"Qualcomm Technologies, Inc MSM8929",560 -4006,"Qualcomm Technologies, Inc MSM8937",1085 -4031,"Qualcomm Technologies, Inc MSM8939",959 -3961,"Qualcomm Technologies, Inc MSM8952",915 -3970,"Qualcomm Technologies, Inc MSM8953",1799 -4181,"Qualcomm Technologies, Inc MSM8956",1480 -4103,"Qualcomm Technologies, Inc MSM8976",1748 -4164,"Qualcomm Technologies, Inc MSM8976SG",1961 -4189,"Qualcomm Technologies, Inc MSM8992",826 -3942,"Qualcomm Technologies, Inc MSM8994",932 -3913,"Qualcomm Technologies, Inc MSM8996",1403 -3929,"Qualcomm Technologies, Inc MSM8996pro",1552 -3919,"Qualcomm Technologies, Inc MSM8998",2792 -4086,"Qualcomm Technologies, Inc QCM2150",409 -5161,"Qualcomm Technologies, Inc QCM6125",2775 -5274,"Qualcomm Technologies, Inc QCS610",1949 -4122,"Qualcomm Technologies, Inc QM215",456 -4852,"Qualcomm Technologies, Inc SA8195P",6554 -5308,"Qualcomm Technologies, Inc SCUBAIIOT",759 -5007,"Qualcomm Technologies, Inc SCUBAPIIOT",1123 -5325,"Qualcomm Technologies, Inc SDA429W",715 -4171,"Qualcomm Technologies, Inc SDA450",1492 -4051,"Qualcomm Technologies, Inc SDA660",2688 -3989,"Qualcomm Technologies, Inc SDM429",991 -4044,"Qualcomm Technologies, Inc SDM439",1462 -3978,"Qualcomm Technologies, Inc SDM450",1324 -4057,"Qualcomm Technologies, Inc SDM460",2031 -3983,"Qualcomm Technologies, Inc SDM630",1897 -3933,"Qualcomm Technologies, Inc SDM632",2069 -3991,"Qualcomm Technologies, Inc SDM636",2161 -3955,"Qualcomm Technologies, Inc SDM660",2408 -4329,"Qualcomm Technologies, Inc SDM662",2237 -4082,"Qualcomm Technologies, Inc SDM665",2358 -4037,"Qualcomm Technologies, Inc SDM670",2534 -3973,"Qualcomm Technologies, Inc SDM710",2646 -4012,"Qualcomm Technologies, Inc SDM712",2530 -4054,"Qualcomm Technologies, Inc SDM720G",3285 -4071,"Qualcomm Technologies, Inc SDM730G AIE",3350 -5077,"Qualcomm Technologies, Inc SDM750G",4350 -4101,"Qualcomm Technologies, Inc SDM765G 5G",3405 -4509,"Qualcomm Technologies, Inc SDM778G",5542 -3906,"Qualcomm Technologies, Inc SDM845",3335 -3918,"Qualcomm Technologies, Inc SDMMAGPIE",3155 -4041,"Qualcomm Technologies, Inc SDMMAGPIEP",3523 -4028,"Qualcomm Technologies, Inc SM4250",2120 -4301,"Qualcomm Technologies, Inc SM4350",3087 -4111,"Qualcomm Technologies, Inc SM6125",2217 -3934,"Qualcomm Technologies, Inc SM6150",2902 -4712,"Qualcomm Technologies, Inc SM6225",2692 -4805,"Qualcomm Technologies, Inc SM6375",4255 -3964,"Qualcomm Technologies, Inc SM7125",3347 -4043,"Qualcomm Technologies, Inc SM7150",3258 -3959,"Qualcomm Technologies, Inc SM7225",3390 -4030,"Qualcomm Technologies, Inc SM7250",3459 -5293,"Qualcomm Technologies, Inc SM7325",6431 -3935,"Qualcomm Technologies, Inc SM8150",4575 -3972,"Qualcomm Technologies, Inc SM8150_Plus",4189 -3968,"Qualcomm Technologies, Inc SM8150P",4495 -3949,"Qualcomm Technologies, Inc SM8250",5847 -4553,"Qualcomm Technologies, Inc SM8250_AC",6408 -4241,"Qualcomm Technologies, Inc SM8350",6112 -4569,"Qualcomm Technologies, Inc SM8350AC",6588 -3977,"Qualcomm Technologies, Inc TRINKET",2429 -5466,"Qualcomm Technologies, Inc TRINKET-IOT",3230 -4787,"Qualcomm Technologies, Inc. MSM8940-PMI8940 MTP",1426 -5279,"redwood based Qualcomm Technologies, Inc. SM7325",6448 -4303,"Renoir based on Qualcomm Technologies, Inc SM7350",4842 -5087,RK30board,198 -5522,rk3566,595 -4752,ROC-RK3568-PC HDMI (Android),1197 -3954,Rockchip (Device Tree),656 -4525,Rockchip RK,1246 -4224,Rockchip RK3229,238 -4318,Rockchip RK3288,708 -4005,Rockchip RK3288 (Flattened Device Tree),508 -4075,Rockchip RK3326,423 -4965,Rockchip rk3326 863 rkisp1 board,399 -5142,Rockchip rk3326 evb board,463 -4295,Rockchip RK3328,319 -4878,Rockchip RK3328 box liantong avb,491 -4145,Rockchip RK3368,827 -3987,Rockchip RK3399,2925 -5273,Rockchip RK3399 Board (Android),1456 -5658,Rockchip RK3399 EVB IND LPDDR4 Board lvds (Android,1862 -5164,Rockchip RK3399 Excavator Board edp avb (Android),1143 -5643,Rockchip RK3528 DEMO4 DDR4 V10 Board,888 -5674,Rockchip RK3562,1052 -5429,Rockchip RK3566,1005 -4734,Rockchip RK3566 BOX DEMO V10 ANDROID Board,1079 -4615,Rockchip RK3566 EVB1 DDR4 V10 Board,751 -4622,Rockchip RK3566 EVB2 LP4X V10 Board,958 -4872,Rockchip RK3566 EVB3 DDR3 V10 Board,994 -4659,Rockchip RK3566 RK817 TABLET LP4X Board,1010 -5137,Rockchip RK3566 RK817 TABLET RKG11 LP4 Board,686 -4564,Rockchip RK3566 RK817 ZIDOO TABLET LP4X Board,795 -4829,Rockchip RK3568 EVB1 DDR4 V10 Board,1064 -5305,Rockchip RK3568 EVB2 LP4X V10 Board,895 -5647,Rockchip RK3568 EVB7 DDR4 V10 Board,1106 -4906,Rockchip RK3588,4166 -4747,"rockchip,rk3328",761 -4532,"rockchip,rk3368",870 -5125,Samsung A04S EUR OPEN REV03C board based on EXYNOS,2452 -4873,Samsung A13 EUR OPEN REV02B board based on EXYNOS8,1230 -4925,Samsung A13 USA SINGLE REV02B board based on EXYNO,1528 -5578,Samsung Exynos,2423 -3938,Samsung Exynos 2100,5443 -4434,Samsung Exynos 7420,1612 -4052,Samsung Exynos 7570,454 -4410,Samsung Exynos 7580,878 -3994,Samsung Exynos 7870,1012 -4022,Samsung Exynos 7880,1775 -4327,Samsung Exynos 7884,1569 -3986,Samsung Exynos 7885,1818 -3945,Samsung Exynos 7904,1809 -5414,Samsung Exynos 850,2107 -3966,Samsung Exynos 8890,2565 -3979,Samsung Exynos 8895,3111 -3944,Samsung Exynos 9610,2247 -4018,Samsung Exynos 9611,2501 -5495,Samsung Exynos 980,4591 -3993,Samsung Exynos 9810,3740 -3946,Samsung Exynos 9820,3867 -3937,Samsung Exynos 9825,3778 -5354,Samsung Exynos 990,6226 -3950,Samsung EXYNOS5420,670 -4003,Samsung EXYNOS5433,1161 -3992,SAMSUNG Exynos7420,2026 -4053,SAMSUNG Exynos7580,863 -5477,Samsung Exynos7870,2093 -5784,samsung exynos7885,2489 -3998,Samsung GrandPrimePlus LTE CIS rev04 board based o,312 -5606,Samsung GrandPrimePlus LTE LTN DTV rev04 board bas,599 -4312,Samsung GrandPrimePlus LTE LTN OPEN rev04 board ba,415 -4283,Samsung J7 Max LTE SWA board based on MT6757V/WL,925 -4100,SAMSUNG JF,540 -5141,Samsung M13 EUR OPEN REV02 board based on EXYNOS85,1425 -5038,Samsung M13 SWA INS 00 board based on EXYNOS850,1269 -5502,Samsung s5e8535,4498 -5395,Samsung s5e8825,4579 -5340,Samsung s5e8835,6102 -5335,Samsung s5e9925,6516 -4411,SAMSUNG SERRANO,239 -4552,"Samsung Technologies, Inc Exynos E1080",4846 -5272,SM6375,4441 -4638,SM7325,6230 -4998,SM8325,5629 -4588,SM8350,6129 -4991,SM8450,4896 -4439,SMDK4x12,3006 -4026,Snapdragon 435,1036 -4460,Snapdragon 662,2387 -4529,Snapdragon 7325,5561 -4918,Snapdragon 7c @ 1.96 GHz,3712 -4194,Snapdragon 7c @ 2.40 GHz,3315 -4394,Snapdragon 7c Gen 2 @ 2.55 GHz,3818 -5229,Snapdragon 8 Gen2 Mobile Platform for Galaxy,9362 -4172,Snapdragon 835,2211 -3930,Snapdragon 8350,4599 -4423,Snapdragon 845 @ 2.8 GHz,3446 -4209,Snapdragon 850 @ 2.96 GHz,3326 -4986,Snapdragon 855 @ 2.84 GHz,5547 -5660,Snapdragon 860 @ 2.96 GHz,5130 -4910,Snapdragon 8c @ 2.46 GHz,5230 -4112,Snapdragon 8cx @ 2.84 GHz,4735 -4926,Snapdragon 8cx Gen 2 @ 3.0 GHz,6770 -4195,Snapdragon 8cx Gen 2 @ 3.15 GHz,6581 -4774,Snapdragon 8cx Gen 3 @ 3.0 GHz,11805 -4109,Sony Mobile fusion3,428 -4087,Spreadtrum SC7731e,311 -5367,Spreadtrum SC9832E,512 -4179,Spreadtrum SC9853I-IA,748 -5391,Spreadtrum SC9863A,1514 -4871,Spreadtrum SC9863A Board,1650 -5408,Spreadtrum T310,1567 -5388,Spreadtrum T606,2715 -5497,Spreadtrum T612,3109 -5396,Spreadtrum T616,3004 -5444,Spreadtrum T618,3003 -4299,"Star based on Qualcomm Technologies, Inc SM8350",5241 -5311,sun50iw6,511 -5392,Synaptics VS640,862 -5327,T606,2824 -4511,T610-Unisoc,2538 -5171,T610S-Unisoc,2781 -4691,T618,2760 -4583,T700-Unisoc,2367 -4987,"taoyao based Qualcomm Technologies, Inc. Yupik IDP",6359 -5555,Thor,839 -4256,tn8,1024 -4689,UGOOS UT8 Board,894 -4837,UIS7862A,2626 -4320,Unisoc SC7731e,338 -4196,Unisoc SC9832e,498 -3981,Unisoc SC9863a,1418 -5135,Unisoc SC9863A1,1399 -4758,Unisoc T310,1403 -4974,Unisoc T606,2660 -4604,Unisoc T610,2827 -5054,Unisoc T612,2820 -5211,Unisoc T616,3152 -4033,Unisoc T618,2542 -4613,Unisoc T700,2579 -4951,Unisoc UIS8581A,1697 -4180,Unisoc UIS8581E,1279 -4517,Unisoc ums312,963 -4321,Unisoc ums512,2588 -4631,Unisoc ums9230,2328 -4899,Unisoc ums9230H,2924 -4937,Unisoc ums9230T,2835 -4219,UNIVERSAL3475,301 -4845,vendor Kirin710,2798 -4772,vendor Kirin810,4244 -4793,vendor Kirin820,5044 -4498,vendor Kirin9000,6914 -4610,vendor Kirin9000E,7141 -5012,vendor Kirin970,3180 -4515,vendor Kirin980,5298 -4834,vendor Kirin985,5417 -4495,vendor Kirin990,6050 -4045,"Venus based on Qualcomm Technologies, Inc SM8350",5398 -1413,VIA C7-D 1800MHz,150 -1414,VIA C7-M 1200MHz,112 -1415,VIA C7-M 1600MHz,116 -1416,VIA C7-M 6300MHz,145 -3147,VIA Eden 1000MHz,80 -3013,VIA Eden 1200MHz,93 -3116,VIA Eden C1050@1.06GHz,263 -1835,VIA Eden X2 U4200 @ 1.0+ GHz,327 -2554,VIA Eden X4 C4250 @ 1.2+GHz,904 -1418,VIA Esther 1000MHz,95 -1420,VIA Esther 1500MHz,135 -1421,VIA Nano L2007@1600MHz,238 -1768,VIA Nano L2100@1800MHz,279 -2140,VIA Nano L2207@1600MHz,165 -1422,VIA Nano U2250 (1.6GHz Capable),187 -1423,VIA Nano U2250@1300+MHz,179 -1490,VIA Nano U2500@1200MHz,199 -1491,VIA Nano U3500@1000MHz,184 -1981,VIA Nano X2 U4025 @ 1.2 GHz,393 -1425,VIA Nehemiah,101 -2618,VIA QuadCore C4650@2.0GHz,1352 -1932,VIA QuadCore L4700 @ 1.2+ GHz,773 -1818,VIA QuadCore U4650 @ 1.0+ GHz,666 -4562,"Vili based on Qualcomm Technologies, Inc SM8350",5299 -5393,Virtual @ 2.00GHz,2709 -5534,Virtual @ 2.40GHz,2978 -5378,Virtual @ 2.41GHz,3188 -5099,Virtual @ 2.55GHz,2370 -5525,Virtual @ 2.74GHz,2248 -5086,Virtual @ 2.99GHz,5232 -5116,Virtual @ 3.14GHz,3784 -5162,Z3-6540M@2.1GHz,1599 -3872,ZHAOXIN KaiXian KX-6640MA@2.2+GHz,1561 -4162,ZHAOXIN KaiXian KX-U6580@2.5GHz,3227 -5542,ZHAOXIN KaiXian KX-U6780@2.7GHz,3693 -3515,ZHAOXIN KaiXian KX-U6780A@2.7GHz,3913 -3576,ZHAOXIN KaiXian ZX-C+ C4700@2.0GHz,1547 -5603,ZHAOXIN KaiXian ZX-D D4600@2.0GHz,1492 -5209,天玑900,4259 diff --git a/PCData/data/passmark/gpu.csv b/PCData/data/passmark/gpu.csv deleted file mode 100644 index dbdf1d9..0000000 --- a/PCData/data/passmark/gpu.csv +++ /dev/null @@ -1,2487 +0,0 @@ -id,name,passmark -gpu162,256MB DDR Radeon 9800 XT,37 -gpu2314,7900 MOD - Radeon HD 6520G,610 -gpu2390,7900 MOD - Radeon HD 6550D,892 -gpu4780,A10-8Q,7041 -gpu4956,A16-2Q,4582 -gpu3424,A6 Micro-6500T Quad-Core APU with RadeonR4,220 -gpu3355,ABIT Siluro T400,3 -gpu214,ALL-IN-WONDER 9000,4 -gpu217,ALL-IN-WONDER 9800,23 -gpu222,ALL-IN-WONDER RADEON 8500DV,5 -gpu228,All-in-Wonder X1800XL,30 -gpu229,All-in-Wonder X1900,127 -gpu230,ALL-IN-WONDER X800 GT,84 -gpu4918,AMD Ryzen Z1 Extreme,6563 -gpu4177,AMIGAMERLIN 3.1-R1 For Voodoo 4 4500 PCI,3 -gpu336,ASUS A7000,9 -gpu2539,ASUS AGP-V3800PRO v31.40H,4 -gpu346,ASUS EAH4870x2,496 -gpu3638,Asus GTX 650 FML II EC-EGPU,720 -gpu375,ASUS V9520-X V62.11,7 -gpu3941,B8DKMDAP,4557 -gpu2698,Barco MXRT 1450,205 -gpu3886,Barco MXRT 2600,900 -gpu3354,Barco MXRT 5400,1161 -gpu2526,Barco MXRT 5450,1079 -gpu2699,Barco MXRT 5500,2701 -gpu4158,Barco MXRT 5600,2465 -gpu2621,Barco MXRT 7100,180 -gpu2474,Barco MXRT 7400,900 -gpu3353,Barco MXRT 7500,3753 -gpu4014,Barco MXRT 7600,4943 -gpu3144,BASICDISPLAY,69 -gpu3967,Citrix Indirect Display Adapter,4446 -gpu648,CONNECT 3D RADEON X300,36 -gpu4528,Custom GPU 0405,2762 -gpu657,Dell 8100,2 -gpu658,Dell 8200,4 -gpu2426,Diamond X1300-PCIE 256MB,70 -gpu3742,EAH5450,134 -gpu4000,EIZO Quadro MED-XN51LP,5048 -gpu3883,Embedded Radeon E9173,1806 -gpu4577,Eng Sample: 100-000000261-50_Y,2859 -gpu3958,Extreme AX850 PRO,120 -gpu387,FireGL T2-128,30 -gpu388,FireGL V3100,52 -gpu389,FireGL V3200,84 -gpu391,FireGL V3300,70 -gpu392,FireGL V3350,68 -gpu393,FireGL V3400,103 -gpu394,FireGL V3600,179 -gpu396,FireGL V5100,92 -gpu397,FireGL V5200,114 -gpu398,FireGL V5600,341 -gpu399,FireGL V7100,71 -gpu400,FireGL V7200,116 -gpu401,FireGL V7300,128 -gpu402,FireGL V7350,110 -gpu403,FireGL V7600,615 -gpu404,FireGL V7700,660 -gpu405,FireGL V8600,838 -gpu406,FireGL V8650,550 -gpu407,FireGL X1,59 -gpu415,FireMV 2200 PCI,1 -gpu414,FireMV 2200 PCIe,36 -gpu416,FireMV 2250,45 -gpu417,FireMV 2260,117 -gpu418,FireMV 2400 PCIe,11 -gpu420,FireMV 2450,73 -gpu422,FirePro 2260,112 -gpu115,FirePro 2270,143 -gpu423,FirePro 2450,51 -gpu237,FirePro 2460,170 -gpu429,FirePro 3D V3700,178 -gpu430,FirePro 3D V3750,341 -gpu431,FirePro 3D V3800,472 -gpu433,FirePro 3D V4800,853 -gpu435,FirePro 3D V5700,546 -gpu436,FirePro 3D V5800,1231 -gpu437,FirePro 3D V7750,545 -gpu438,FirePro 3D V7800,1867 -gpu440,FirePro 3D V8700,1206 -gpu441,FirePro 3D V8750,1271 -gpu442,FirePro 3D V8800,2437 -gpu443,FirePro 3D V9800,2811 -gpu2268,FirePro M2000,423 -gpu238,FirePro M4000,1612 -gpu3360,FirePro M4000 Mobility Pro,1628 -gpu2194,FirePro M40003,1364 -gpu3016,Firepro M4100,1059 -gpu3224,FirePro M4150,928 -gpu3145,FirePro M4170,1119 -gpu2818,FirePro M5100,2102 -gpu3125,FirePro M5100 FireGL V,1839 -gpu233,FirePro M5950,1314 -gpu2231,FirePro M6000,1820 -gpu2437,FirePro M6000 Mobility Pro,1750 -gpu2657,FirePro M6100,2107 -gpu3695,FirePro M6100 FireGL V,2787 -gpu425,FirePro M7740,665 -gpu3444,FirePro R5000,2646 -gpu427,FirePro RG220,335 -gpu3330,FirePro S10000,4768 -gpu2804,FirePro S7000,4523 -gpu3604,FirePro S7150,2726 -gpu3209,FirePro S9000,5059 -gpu4287,FirePro S9050,4901 -gpu3518,FirePro V3800,320 -gpu240,FirePro V3900,649 -gpu241,FirePro V4900,984 -gpu3111,FirePro V5700,464 -gpu3427,FirePro V5800,1175 -gpu243,FirePro V5900,1269 -gpu2675,FirePro V7000,3161 -gpu3907,FirePro V7800,2028 -gpu245,FirePro V7900,2304 -gpu3105,FirePro V8700,1538 -gpu3344,FirePro V8800,2280 -gpu3423,FirePro V9800,2726 -gpu2940,FirePro W2100,886 -gpu3019,FirePro W4100,1539 -gpu3070,FirePro W4170M,1063 -gpu3491,Firepro W4190M,1170 -gpu3425,FirePro W4300,2834 -gpu2227,FirePro W5000,2969 -gpu3044,FirePro W5100,2982 -gpu3440,FirePro W5130M,1395 -gpu3470,Firepro W5170M,1744 -gpu2371,FirePro W600,1661 -gpu4341,FirePro W6150M,2358 -gpu2232,FirePro W7000,4260 -gpu2647,FirePro W7000 Adapter,4361 -gpu3130,FirePro W7100,5319 -gpu3412,FirePro W7170M,3161 -gpu2427,FirePro W8000,4095 -gpu2937,FirePro W8100,7279 -gpu2281,FirePro W9000,6138 -gpu3028,FirePro W9100,7927 -gpu3357,FireStream 9170,647 -gpu2652,FireStream 9250,1164 -gpu2960,FireStream 9270,1341 -gpu247,FireStream 9370,2528 -gpu699,GeCube RADEON 7000,8 -gpu1168,GeForce 205,126 -gpu1169,GeForce 210,107 -gpu4035,GeForce 240M GT,319 -gpu1170,GeForce 256,5 -gpu1171,GeForce 305M,150 -gpu1172,GeForce 310,119 -gpu102,GeForce 310M,110 -gpu1173,GeForce 315,158 -gpu1174,GeForce 315M,114 -gpu1175,GeForce 320M,209 -gpu1177,GeForce 405,120 -gpu1178,GeForce 410M,254 -gpu2604,GeForce 505,118 -gpu1179,GeForce 510,259 -gpu1180,GeForce 605,318 -gpu1181,GeForce 6100,27 -gpu1182,GeForce 6100 nForce 400,25 -gpu1183,GeForce 6100 nForce 405,29 -gpu1185,GeForce 6100 nForce 420,25 -gpu1186,GeForce 6100 nForce 430,23 -gpu2125,GeForce 610M,291 -gpu2361,GeForce 615,545 -gpu1187,GeForce 6150,21 -gpu1188,GeForce 6150 LE,33 -gpu1189,GeForce 6150SE,24 -gpu74,GeForce 6150SE nForce 430,30 -gpu1191,GeForce 6200,41 -gpu1192,GeForce 6200 A-LE,32 -gpu125,GeForce 6200 LE,29 -gpu1194,GeForce 6200 TurboCache,53 -gpu3063,GeForce 6200A,3 -gpu1195,GeForce 6200SE TurboCache,37 -gpu1197,GeForce 6500,38 -gpu1198,GeForce 6600,86 -gpu1199,GeForce 6600 GT,137 -gpu1201,GeForce 6600 LE,51 -gpu1203,GeForce 6610 XL,88 -gpu1204,GeForce 6700 XL,95 -gpu1205,GeForce 6800,112 -gpu1207,GeForce 6800 GS,188 -gpu1208,GeForce 6800 GS/XT,102 -gpu1210,GeForce 6800 GT,142 -gpu1213,GeForce 6800 LE,109 -gpu1214,GeForce 6800 Ultra,138 -gpu1215,GeForce 6800 XE,58 -gpu1216,GeForce 6800 XT,123 -gpu1217,GeForce 7000M,13 -gpu1218,GeForce 7000M / nForce 610M,12 -gpu1220,GeForce 7025 / nForce 630a,32 -gpu1221,GeForce 7050 / nForce 610i,25 -gpu1222,GeForce 7050 / nForce 620i,41 -gpu1223,GeForce 7050 / nForce 630i,37 -gpu1224,GeForce 7050 PV / nForce 630a,31 -gpu2781,GeForce 705M,455 -gpu1225,GeForce 7100 / nForce 620i,26 -gpu1226,GeForce 7100 / nForce 630i,41 -gpu1227,GeForce 7100 GS,48 -gpu2622,GeForce 710A,475 -gpu2399,GeForce 710M,463 -gpu1228,GeForce 7150 / nForce 630i,33 -gpu1229,GeForce 7150M / nForce 630M,18 -gpu1231,GeForce 7200 GS,23 -gpu3977,GeForce 720A,614 -gpu1232,GeForce 7300 GS,78 -gpu1233,GeForce 7300 GT,136 -gpu1235,GeForce 7300 LE,80 -gpu1236,GeForce 7300 SE,39 -gpu1238,GeForce 7300 SE/7200 GS,48 -gpu3306,GeForce 730A,771 -gpu1241,GeForce 7350 LE,74 -gpu39,GeForce 7500 LE,89 -gpu9,GeForce 7600 GS,157 -gpu1243,GeForce 7600 GT,217 -gpu1247,GeForce 7650 GS,134 -gpu3519,GeForce 770M,3245 -gpu1248,GeForce 7800 GS,177 -gpu1249,GeForce 7800 GT,244 -gpu1250,GeForce 7800 GTX,290 -gpu1251,GeForce 7900 GS,253 -gpu1252,GeForce 7900 GT,258 -gpu1253,GeForce 7900 GT/GTO,247 -gpu1254,GeForce 7900 GTX,387 -gpu1255,GeForce 7950 GT,344 -gpu1256,GeForce 7950 GX2,201 -gpu3389,GeForce 7950 Xtreme,287 -gpu3356,GeForce 800A,476 -gpu3015,GeForce 800M,457 -gpu1257,GeForce 8100 / nForce 720a,79 -gpu3099,GeForce 810A,622 -gpu3005,GeForce 810M,410 -gpu1258,GeForce 8200,155 -gpu1259,GeForce 8200M G,62 -gpu3210,GeForce 820A,555 -gpu2785,GeForce 820M,504 -gpu2971,GeForce 825M,783 -gpu1260,GeForce 8300,101 -gpu1261,GeForce 8300 GS,115 -gpu3094,GeForce 830A,1138 -gpu2982,GeForce 830M,1008 -gpu1262,GeForce 8400,81 -gpu73,GeForce 8400 GS,149 -gpu1264,GeForce 8400 SE,68 -gpu1265,GeForce 8400M G,58 -gpu1266,GeForce 8400M GS,112 -gpu1268,GeForce 8400M GT,66 -gpu3045,GeForce 840A,1179 -gpu2873,GeForce 840M,1081 -gpu3126,GeForce 845M,1506 -gpu1270,GeForce 8500 GT,123 -gpu1272,GeForce 8600 GS,91 -gpu64,GeForce 8600 GT,117 -gpu118,GeForce 8600 GTS,149 -gpu1274,GeForce 8600M GS,70 -gpu1275,GeForce 8600M GT,89 -gpu1276,GeForce 8700M GT,124 -gpu1277,GeForce 8800 GS,330 -gpu1279,GeForce 8800 GT,493 -gpu101,GeForce 8800 GTS,421 -gpu63,GeForce 8800 GTS 512,575 -gpu119,GeForce 8800 GTX,590 -gpu1281,GeForce 8800 Ultra,642 -gpu1284,GeForce 8800M GTS,382 -gpu1285,GeForce 8800M GTX,462 -gpu1286,GeForce 9100,81 -gpu1287,GeForce 9100M G,68 -gpu3285,GeForce 910M,591 -gpu1288,GeForce 9200,165 -gpu1289,GeForce 9200M GE,143 -gpu1290,GeForce 9200M GS,111 -gpu3565,GeForce 920A,849 -gpu3192,GeForce 920M,725 -gpu3520,GeForce 920MX,1083 -gpu1291,GeForce 9300,126 -gpu1292,GeForce 9300 / nForce 730i,128 -gpu1293,GeForce 9300 GE,76 -gpu1294,GeForce 9300 GS,102 -gpu3128,GeForce 9300 SE,81 -gpu1295,GeForce 9300GE,97 -gpu1296,GeForce 9300M G,84 -gpu1297,GeForce 9300M GS,87 -gpu3417,GeForce 930A,1309 -gpu3252,GeForce 930M,1013 -gpu3549,GeForce 930MX,1295 -gpu1298,GeForce 9400,98 -gpu11,GeForce 9400 GT,132 -gpu1299,GeForce 9400M,67 -gpu1300,GeForce 9400M G,67 -gpu3393,GeForce 940A,1106 -gpu3155,GeForce 940M,1122 -gpu3453,GeForce 940MX,1509 -gpu2466,GeForce 9450,104 -gpu4094,GeForce 945A,1852 -gpu3388,GeForce 945M,2107 -gpu78,GeForce 9500 GS,187 -gpu1304,GeForce 9500 GT,151 -gpu1305,GeForce 9500M,103 -gpu1306,GeForce 9500M G,121 -gpu1307,GeForce 9500M GS,102 -gpu1308,GeForce 9600 GS,281 -gpu1309,GeForce 9600 GSO,327 -gpu1310,GeForce 9600 GSO 512,329 -gpu95,GeForce 9600 GT,491 -gpu1313,GeForce 9600M GS,118 -gpu1314,GeForce 9600M GT,137 -gpu1315,GeForce 9600M GT / GeForce GT 220M,293 -gpu1316,GeForce 9650M GS,270 -gpu1317,GeForce 9650M GT,137 -gpu1318,GeForce 9700M GT,208 -gpu1319,GeForce 9700M GTS,278 -gpu60,GeForce 9800 GT,465 -gpu3260,GeForce 9800 GT 1024MB,134 -gpu1320,GeForce 9800 GTX,769 -gpu92,GeForce 9800 GTX+,506 -gpu1321,GeForce 9800 GTX/9800 GTX+,608 -gpu1323,GeForce 9800 GX2,797 -gpu2264,GeForce 9800 S,635 -gpu97,GeForce 9800M GS,554 -gpu1325,GeForce 9800M GT,381 -gpu1326,GeForce 9800M GTS,401 -gpu1327,GeForce 9800M GTX,454 -gpu3403,GeForce 999 GTX,83 -gpu1329,GeForce FX 5100,7 -gpu1330,GeForce FX 5200,7 -gpu1333,GeForce FX 5200 Ultra,12 -gpu1334,GeForce FX 5200LE,7 -gpu2655,GeForce FX 5200SE,11 -gpu1335,GeForce FX 5500,8 -gpu1336,GeForce FX 5600,12 -gpu1337,GeForce FX 5600 Ultra,17 -gpu1339,GeForce FX 5600XT,9 -gpu1340,GeForce FX 5700,40 -gpu1341,GeForce FX 5700 Ultra,34 -gpu1342,GeForce FX 5700LE,24 -gpu1343,GeForce FX 5700VE,33 -gpu1346,GeForce FX 5900,34 -gpu1347,GeForce FX 5900 Ultra,41 -gpu1348,GeForce FX 5900XT,40 -gpu1349,GeForce FX 5900ZT,32 -gpu1350,GeForce FX 5950 Ultra,59 -gpu1351,GeForce FX Go 5200,8 -gpu1353,GeForce FX Go 5600,17 -gpu1358,GeForce FX Go5300,12 -gpu1361,GeForce FX Go5650,16 -gpu1362,GeForce FX Go5700,51 -gpu23,GeForce G 103M,62 -gpu1364,GeForce G 105M,62 -gpu43,GeForce G100,175 -gpu1366,GeForce G102M,167 -gpu1367,GeForce G105M,107 -gpu1368,GeForce G200,136 -gpu1369,GeForce G205M,91 -gpu1370,GeForce G210,98 -gpu1371,GeForce G210M,115 -gpu1372,GeForce Go 6100,17 -gpu1373,GeForce Go 6150,19 -gpu1375,GeForce Go 6200,15 -gpu1377,GeForce Go 6400,24 -gpu1378,GeForce Go 6600,69 -gpu1379,GeForce Go 6600 TE/6200 TE,44 -gpu1381,GeForce Go 6800,106 -gpu1383,GeForce Go 6800 Ultra,137 -gpu126,GeForce Go 7200,45 -gpu59,GeForce Go 7300,52 -gpu1386,GeForce Go 7400,65 -gpu1387,GeForce Go 7600,127 -gpu1389,GeForce Go 7600 GT,210 -gpu1390,GeForce Go 7700,147 -gpu1391,GeForce Go 7800,114 -gpu1392,GeForce Go 7800 GTX,209 -gpu1393,GeForce Go 7900 GS,176 -gpu1396,GeForce Go 7900 GTX,270 -gpu1399,GeForce Go 7950 GTX,263 -gpu3065,GeForce GPU,1195 -gpu3757,GeForce GT 1030,2483 -gpu1402,GeForce GT 120,168 -gpu1403,GeForce GT 120 / 9500 GT,324 -gpu1404,GeForce GT 120M,152 -gpu1405,GeForce GT 130,381 -gpu1406,GeForce GT 130M,146 -gpu1407,GeForce GT 140,657 -gpu72,GeForce GT 220,214 -gpu1408,GeForce GT 220M,121 -gpu1409,GeForce GT 230,323 -gpu1410,GeForce GT 230M,203 -gpu61,GeForce GT 240,514 -gpu1411,GeForce GT 240M,203 -gpu1413,GeForce GT 320,464 -gpu1414,GeForce GT 320M,105 -gpu1415,GeForce GT 325M,169 -gpu1416,GeForce GT 330,400 -gpu108,GeForce GT 330M,210 -gpu1417,GeForce GT 335M,389 -gpu1418,GeForce GT 340,738 -gpu2423,GeForce GT 415,251 -gpu1419,GeForce GT 415M,286 -gpu1420,GeForce GT 420,426 -gpu1421,GeForce GT 420M,412 -gpu1422,GeForce GT 425M,523 -gpu53,GeForce GT 430,601 -gpu86,GeForce GT 435M,542 -gpu1423,GeForce GT 440,773 -gpu1424,GeForce GT 445M,811 -gpu1425,GeForce GT 520,306 -gpu70,GeForce GT 520M,280 -gpu2144,GeForce GT 520MX,282 -gpu89,GeForce GT 525M,458 -gpu1426,GeForce GT 530,675 -gpu27,GeForce GT 540M,483 -gpu112,GeForce GT 545,1101 -gpu1427,GeForce GT 550M,580 -gpu1428,GeForce GT 555M,664 -gpu33,GeForce GT 610,305 -gpu2877,GeForce GT 610M / GT 620M / GT 710M / GT 720M / GT,368 -gpu1429,GeForce GT 620,373 -gpu1430,GeForce GT 620M,439 -gpu2563,GeForce GT 625,350 -gpu2414,GeForce GT 625M,476 -gpu1431,GeForce GT 630,681 -gpu77,GeForce GT 630M,541 -gpu2683,GeForce GT 635,834 -gpu2136,GeForce GT 635M,565 -gpu1432,GeForce GT 640,1180 -gpu2147,GeForce GT 640M,922 -gpu2135,GeForce GT 640M LE,680 -gpu2242,GeForce GT 645,2005 -gpu2388,GeForce GT 645M,924 -gpu122,GeForce GT 650M,1208 -gpu2952,GeForce GT 705,333 -gpu2910,GeForce GT 710,631 -gpu2744,GeForce GT 710M,444 -gpu2896,GeForce GT 720,610 -gpu2890,GeForce GT 720A,600 -gpu2529,GeForce GT 720M,463 -gpu2906,GeForce GT 730,832 -gpu2749,GeForce GT 730A,742 -gpu2417,GeForce GT 730M,816 -gpu2592,GeForce GT 735M,628 -gpu2883,GeForce GT 740,1491 -gpu2928,GeForce GT 740A,667 -gpu2461,GeForce GT 740M,791 -gpu2632,GeForce GT 745A,1228 -gpu2564,GeForce GT 745M,1096 -gpu2492,GeForce GT 750M,1319 -gpu2646,GeForce GT 755M,1664 -gpu3586,GeForce GT 820M,579 -gpu2591,GeForce GT625M,457 -gpu2986,GeForce GTS 150M,504 -gpu1435,GeForce GTS 160M,678 -gpu1436,GeForce GTS 240,577 -gpu29,GeForce GTS 250,603 -gpu1437,GeForce GTS 250M,569 -gpu1438,GeForce GTS 350M,407 -gpu1439,GeForce GTS 360M,651 -gpu1,GeForce GTS 450,1315 -gpu3596,GeForce GTX 1050,5052 -gpu4088,GeForce GTX 1050 (Mobile),4461 -gpu4603,GeForce GTX 1050 3GB,5150 -gpu3595,GeForce GTX 1050 Ti,6308 -gpu4089,GeForce GTX 1050 Ti (Mobile),5918 -gpu3922,GeForce GTX 1050 Ti with Max-Q Design,5380 -gpu3971,GeForce GTX 1050 with Max-Q Design,4037 -gpu3548,GeForce GTX 1060,10075 -gpu4086,GeForce GTX 1060 (Mobile),8160 -gpu3566,GeForce GTX 1060 3GB,9763 -gpu3923,GeForce GTX 1060 5GB,9036 -gpu3769,GeForce GTX 1060 with Max-Q Design,7889 -gpu3521,GeForce GTX 1070,13515 -gpu4087,GeForce GTX 1070 (Mobile),10465 -gpu3842,GeForce GTX 1070 Ti,14708 -gpu3779,GeForce GTX 1070 with Max-Q Design,10049 -gpu3502,GeForce GTX 1080,15509 -gpu3699,GeForce GTX 1080 Ti,18541 -gpu3784,GeForce GTX 1080 with Max-Q Design,11576 -gpu4571,GeForce GTX 1630,5014 -gpu4078,GeForce GTX 1650,7868 -gpu4090,GeForce GTX 1650 (Mobile),6968 -gpu4167,GeForce GTX 1650 SUPER,10121 -gpu4195,GeForce GTX 1650 Ti,7577 -gpu4209,GeForce GTX 1650 Ti with Max-Q Design,6402 -gpu4104,GeForce GTX 1650 with Max-Q Design,6140 -gpu4062,GeForce GTX 1660,11705 -gpu4159,GeForce GTX 1660 SUPER,12784 -gpu4045,GeForce GTX 1660 Ti,12954 -gpu4091,GeForce GTX 1660 Ti (Mobile),10209 -gpu4082,GeForce GTX 1660 Ti with Max-Q Design,8681 -gpu17,GeForce GTX 260,1229 -gpu83,GeForce GTX 260M,379 -gpu21,GeForce GTX 275,1430 -gpu66,GeForce GTX 280,1299 -gpu1443,GeForce GTX 280M,575 -gpu1444,GeForce GTX 285,1516 -gpu1445,GeForce GTX 285M,650 -gpu1446,GeForce GTX 295,1190 -gpu31,GeForce GTX 460,2253 -gpu123,GeForce GTX 460 SE,2011 -gpu1447,GeForce GTX 460 v2,1871 -gpu93,GeForce GTX 460M,1235 -gpu82,GeForce GTX 465,2678 -gpu55,GeForce GTX 470,3089 -gpu1448,GeForce GTX 470M,1953 -gpu100,GeForce GTX 480,4061 -gpu1449,GeForce GTX 480M,1617 -gpu1450,GeForce GTX 485M,2359 -gpu16,GeForce GTX 550 Ti,1540 -gpu1451,GeForce GTX 555,1571 -gpu71,GeForce GTX 560,2721 -gpu106,GeForce GTX 560 SE,1914 -gpu18,GeForce GTX 560 Ti,3037 -gpu1452,GeForce GTX 560M,1221 -gpu15,GeForce GTX 570,3933 -gpu1453,GeForce GTX 570M,1863 -gpu68,GeForce GTX 580,4547 -gpu1455,GeForce GTX 580M,2074 -gpu1457,GeForce GTX 590,3341 -gpu2513,GeForce GTX 645,1870 -gpu2155,GeForce GTX 650,1754 -gpu2177,GeForce GTX 650 Ti,2529 -gpu2479,GeForce GTX 650 Ti BOOST,3341 -gpu2152,GeForce GTX 660,3998 -gpu88,GeForce GTX 660 Ti,4397 -gpu1458,GeForce GTX 660M,1436 -gpu35,GeForce GTX 670,5320 -gpu1459,GeForce GTX 670M,1718 -gpu2296,GeForce GTX 670MX,1943 -gpu1460,GeForce GTX 675M,1924 -gpu2349,GeForce GTX 675MX,2744 -gpu41,GeForce GTX 680,5549 -gpu1461,GeForce GTX 680M,3215 -gpu3832,GeForce GTX 680M KY_Bullet Edition,3568 -gpu2356,GeForce GTX 680MX,4142 -gpu1462,GeForce GTX 690,5579 -gpu2843,GeForce GTX 745,2147 -gpu2825,GeForce GTX 750,3363 -gpu2815,GeForce GTX 750 Ti,3902 -gpu2561,GeForce GTX 760,4782 -gpu2801,GeForce GTX 760 Ti,5191 -gpu4108,GeForce GTX 760 Ti OEM,5427 -gpu3186,GeForce GTX 760A,1226 -gpu2597,GeForce GTX 760M,1709 -gpu2537,GeForce GTX 765M,1992 -gpu2531,GeForce GTX 770,5915 -gpu2534,GeForce GTX 770M,2771 -gpu2729,GeForce GTX 775M,3551 -gpu2525,GeForce GTX 780,8020 -gpu2717,GeForce GTX 780 Ti,9495 -gpu2536,GeForce GTX 780M,3878 -gpu3213,GeForce GTX 850A,1049 -gpu2859,GeForce GTX 850M,2517 -gpu2968,GeForce GTX 850M - MODDED,1091 -gpu2866,GeForce GTX 860M,3030 -gpu2833,GeForce GTX 870M,3448 -gpu2850,GeForce GTX 880M,3804 -gpu3295,GeForce GTX 950,5340 -gpu3334,GeForce GTX 950A,2598 -gpu3171,GeForce GTX 950M,2581 -gpu3114,GeForce GTX 960,6048 -gpu3404,GeForce GTX 960A,2410 -gpu3176,GeForce GTX 960M,3397 -gpu3113,GeForce GTX 965M,3744 -gpu2954,GeForce GTX 970,9647 -gpu2981,GeForce GTX 970M,5722 -gpu3965,GeForce GTX 970XM FORCE,6706 -gpu2953,GeForce GTX 980,11134 -gpu3218,GeForce GTX 980 Ti,13828 -gpu2976,GeForce GTX 980M,7341 -gpu2433,GeForce GTX Titan,8211 -gpu2842,GeForce GTX TITAN Black,9016 -gpu3162,GeForce GTX TITAN X,13059 -gpu2884,GeForce GTX TITAN Z,8986 -gpu3860,GeForce MX110,1453 -gpu3890,GeForce MX130,1864 -gpu3789,GeForce MX150,2277 -gpu4036,GeForce MX230,1838 -gpu4076,GeForce MX250,2438 -gpu4203,GeForce MX330,2461 -gpu4194,GeForce MX350,2808 -gpu4296,GeForce MX450,3729 -gpu4493,GeForce MX550,4610 -gpu4560,GeForce MX570,6020 -gpu4595,GeForce MX570 A,6177 -gpu1463,GeForce PCX 5300,6 -gpu1464,GeForce PCX 5750,34 -gpu1465,GeForce PCX 5900,34 -gpu4501,GeForce RTX 2050,7352 -gpu4037,GeForce RTX 2060,14125 -gpu4085,GeForce RTX 2060 (Mobile),11354 -gpu4602,GeForce RTX 2060 12GB,15904 -gpu4117,GeForce RTX 2060 SUPER,16581 -gpu4199,GeForce RTX 2060 with Max-Q Design,9787 -gpu4001,GeForce RTX 2070,16184 -gpu4083,GeForce RTX 2070 (Mobile),12354 -gpu4116,GeForce RTX 2070 SUPER,18255 -gpu4204,GeForce RTX 2070 Super with Max-Q Design,13929 -gpu4048,GeForce RTX 2070 with Max-Q Design,11891 -gpu3989,GeForce RTX 2080,18792 -gpu4084,GeForce RTX 2080 (Mobile),15107 -gpu4123,GeForce RTX 2080 SUPER,19602 -gpu4202,GeForce RTX 2080 Super with Max-Q Design,13808 -gpu3991,GeForce RTX 2080 Ti,21839 -gpu4041,GeForce RTX 2080 with Max-Q Design,13171 -gpu4495,GeForce RTX 3050,12958 -gpu4769,GeForce RTX 3050 4GB Laptop GPU,7041 -gpu4782,GeForce RTX 3050 6GB Laptop GPU,10703 -gpu4408,GeForce RTX 3050 Laptop GPU,9409 -gpu4569,GeForce RTX 3050 OEM,12126 -gpu4393,GeForce RTX 3050 Ti Laptop GPU,10181 -gpu4345,GeForce RTX 3060,17089 -gpu4342,GeForce RTX 3060 Laptop GPU,13413 -gpu4318,GeForce RTX 3060 Ti,20598 -gpu4283,GeForce RTX 3070,22460 -gpu4331,GeForce RTX 3070 Laptop GPU,15527 -gpu4413,GeForce RTX 3070 Ti,23757 -gpu4497,GeForce RTX 3070 Ti Laptop GPU,18250 -gpu4282,GeForce RTX 3080,25352 -gpu4601,GeForce RTX 3080 12GB,26714 -gpu4332,GeForce RTX 3080 Laptop GPU,16546 -gpu4409,GeForce RTX 3080 Ti,27326 -gpu4491,GeForce RTX 3080 Ti Laptop GPU,20208 -gpu4284,GeForce RTX 3090,26863 -gpu4524,GeForce RTX 3090 Ti,29875 -gpu4763,GeForce RTX 4050 Laptop GPU,14693 -gpu4850,GeForce RTX 4060,19573 -gpu4752,GeForce RTX 4060 Laptop GPU,17989 -gpu4827,GeForce RTX 4060 Ti,22554 -gpu4898,GeForce RTX 4060 Ti 16GB,22760 -gpu4795,GeForce RTX 4070,26888 -gpu4756,GeForce RTX 4070 Laptop GPU,19614 -gpu4699,GeForce RTX 4070 Ti,31744 -gpu4622,GeForce RTX 4080,34621 -gpu4736,GeForce RTX 4080 Laptop GPU,26229 -gpu4606,GeForce RTX 4090,38867 -gpu4737,GeForce RTX 4090 Laptop GPU,28534 -gpu1467,GeForce2 Go,4 -gpu1470,GeForce2 GTS/GeForce2 Pro,3 -gpu1471,GeForce2 Integrated GPU,4 -gpu1472,GeForce2 MX,2 -gpu1473,GeForce2 MX 100/200,3 -gpu1477,GeForce2 MX with DVI-D and TV-out,4 -gpu191,GeForce2 MX with TV Out,2 -gpu1479,GeForce2 MX/MX 400,3 -gpu1480,GeForce2 Ti,4 -gpu1481,GeForce2 Ultra,6 -gpu1482,GeForce3,4 -gpu1483,GeForce3 Ti 200,4 -gpu1485,GeForce3 Ti 500,2 -gpu713,GeForce4 420 Go,3 -gpu1486,GeForce4 420 Go 32M,5 -gpu1487,GeForce4 4200 Go,3 -gpu3154,GeForce4 440,4 -gpu1488,GeForce4 440 Go,3 -gpu1489,GeForce4 440 Go 64M,5 -gpu1490,GeForce4 448 Go,5 -gpu1492,GeForce4 MX 4000,4 -gpu1493,GeForce4 MX 420,4 -gpu1494,GeForce4 MX 440,4 -gpu1496,GeForce4 MX 440 with AGP8X,4 -gpu1497,GeForce4 MX 440SE,4 -gpu1499,GeForce4 MX 460,4 -gpu1500,GeForce4 MX Integrated GPU,6 -gpu1502,GeForce4 Ti 4200,5 -gpu1505,GeForce4 Ti 4400,7 -gpu1506,GeForce4 Ti 4600,5 -gpu1507,GeForce4 Ti 4800,5 -gpu1508,GeForce4 Ti 4800 SE,6 -gpu1509,GeForce9400M,105 -gpu2931,GF117,554 -gpu4327,GRID GTX P40-6,4340 -gpu2617,GRID K1,650 -gpu3384,GRID K120Q,293 -gpu2911,GRID K140Q,727 -gpu3458,GRID K160Q,628 -gpu3194,GRID K180Q,533 -gpu2616,GRID K2,2736 -gpu3140,GRID K220Q,912 -gpu2951,GRID K240Q,2541 -gpu3143,GRID K260Q,2949 -gpu3142,GRID K280Q,2839 -gpu2742,GRID K520,3516 -gpu3795,GRID M10-0Q,913 -gpu3766,GRID M10-1B,2309 -gpu3800,GRID M10-1Q,3351 -gpu4160,GRID M10-2B,2333 -gpu4197,GRID M10-2Q,2691 -gpu3964,GRID M10-4Q,2976 -gpu3934,GRID M10-8Q,2606 -gpu3527,GRID M6-0B,911 -gpu4064,GRID M6-1Q,2069 -gpu3867,GRID M6-8Q,3568 -gpu3792,GRID M60-0B,1838 -gpu3927,GRID M60-0Q,827 -gpu3511,GRID M60-1B,4456 -gpu3749,GRID M60-1Q,3694 -gpu3737,GRID M60-2Q,5203 -gpu3483,GRID M60-4Q,3831 -gpu4171,GRID M60-8A,5523 -gpu3716,GRID M60-8Q,3883 -gpu3966,GRID P100-16Q,5944 -gpu3968,GRID P100-1B,2223 -gpu4178,GRID P100-8Q,3841 -gpu3993,GRID P40-24Q,4727 -gpu3951,GRID P40-2B,9842 -gpu4026,GRID P40-2Q,4843 -gpu4079,GRID P40-3Q,681 -gpu4080,GRID P40-4Q,5364 -gpu4834,GRID P40-8Q,8967 -gpu3983,GRID P6-2Q,3925 -gpu3913,GRID P6-4Q,4429 -gpu4855,GRID RTX6000-1B,8473 -gpu4425,GRID RTX6000P-6Q,4777 -gpu4261,GRID T4-1Q,3742 -gpu4516,GRID T4-2B,2601 -gpu4370,GRID T4-2Q,3450 -gpu4340,GRID T4-4Q,3260 -gpu4196,GRID T4-8Q,4518 -gpu3936,GRID V100-8Q,16 -gpu4132,GRID V100D-8Q,4155 -gpu2495,GT 430,223 -gpu3480,IncrediblE HD,389 -gpu3655,IncrediblE HD 4000,517 -gpu4017,IncrediblE HD 4600,749 -gpu908,Intel - Express Chipset G41,56 -gpu909,Intel - Express Chipset Q45/Q43,57 -gpu3748,Intel 2nd Generation SandyBridge HD,185 -gpu3583,Intel 2nd Generation SandyBridge HD 3000,205 -gpu3730,Intel 4th Generation Haswell HD,419 -gpu915,Intel 82845G Controller,2 -gpu916,Intel 82845G/GL Controller,2 -gpu917,Intel 82845G/GL/GE/PE/GV Controller,2 -gpu764,Intel 82852/82855 GM/GME Controller,1 -gpu920,Intel 82865G Controller,4 -gpu765,Intel 82915G Express,5 -gpu4185,Intel 82915G/915GV/910GL,3 -gpu922,Intel 82915G/GV/910GL Advanced v3.5,2 -gpu923,Intel 82915G/GV/910GL Express,3 -gpu766,Intel 82945G Express,12 -gpu3510,Intel 82945G Express-Chipsatzfamilie,8 -gpu770,Intel 865 Embedded Controller,3 -gpu3185,"Intel 915G,910G Express",4 -gpu3523,Intel 915G/915GV/910GL Embedded Controller Functio,4 -gpu3594,Intel 945G Embedded Chipset Function 0,4 -gpu3750,Intel 946GZ Embedded Chipset,3 -gpu928,Intel 946GZ Express,2 -gpu4955,Intel Arc,4624 -gpu4879,Intel Arc A310,4722 -gpu4568,Intel Arc A380,4915 -gpu4940,Intel Arc A580,11676 -gpu4928,Intel Arc A730M,7865 -gpu4612,Intel Arc A750,9289 -gpu4605,Intel Arc A770,9735 -gpu4620,Intel Arc A770M,7459 -gpu4905,Intel Arc Pro A40/A50,5223 -gpu4911,Intel Arc Pro A60,9409 -gpu931,Intel B43 Express Chipset,109 -gpu3849,Intel Coffee Lake UHD,1158 -gpu933,Intel Extreme Controller,1 -gpu782,Intel G33/G31 Express,51 -gpu938,Intel G35 Express,3090 -gpu940,Intel G41 Express Chipset,105 -gpu943,Intel G41 Express-Chipsatz,57 -gpu944,Intel G45/G43 Express Chipset,105 -gpu946,Intel G45/G43/G41 Express Chipset,67 -gpu948,Intel G965 Express,222 -gpu950,Intel GMA 3150 Express,2 -gpu2846,Intel Haswell HD - GT1,123 -gpu2807,Intel Haswell HD - GT2,139 -gpu3264,Intel HD 2000,213 -gpu26,Intel HD 3000,255 -gpu2,Intel HD 4000,344 -gpu2643,Intel HD 4400,521 -gpu2451,Intel HD 4600,630 -gpu4145,Intel HD 500,298 -gpu2552,Intel HD 5000,576 -gpu4143,Intel HD 505,352 -gpu3347,Intel HD 510,626 -gpu3341,Intel HD 515,631 -gpu3255,Intel HD 520,870 -gpu2498,Intel HD 5200,830 -gpu3281,Intel HD 530,995 -gpu2921,Intel HD 5300,390 -gpu2908,Intel HD 5500,586 -gpu3160,Intel HD 5600,2263 -gpu3120,Intel HD 6000,858 -gpu3647,Intel HD 610,693 -gpu3593,Intel HD 615,724 -gpu3540,Intel HD 630,1107 -gpu37,Intel HD Family,458 -gpu3592,Intel HD Graphics 620,926 -gpu3249,Intel HD manual-15.28-1861,62 -gpu3764,Intel HD manual-gen9_2015-133271,165 -gpu3068,Intel HD Modded,112 -gpu962,Intel HD P3000,286 -gpu963,Intel HD P4000,516 -gpu2601,Intel HD P4600,604 -gpu2586,Intel HD P4600/P4700,635 -gpu3385,Intel HD P530,1153 -gpu3682,Intel HD P630,1184 -gpu3788,Intel Infoshock HD,193 -gpu2692,Intel Iris 5100,743 -gpu3366,Intel Iris 540,1248 -gpu3437,Intel Iris 550,1420 -gpu3164,Intel Iris 6100,913 -gpu3790,Intel Iris 650,1432 -gpu4120,Intel Iris Plus,1818 -gpu3696,Intel Iris Plus 640,1342 -gpu4162,Intel Iris Plus 645,1727 -gpu3718,Intel Iris Plus 650,1593 -gpu3961,Intel Iris Plus 655,1745 -gpu2562,Intel Iris Pro 5200,1190 -gpu3481,Intel Iris Pro 580,1980 -gpu3167,Intel Iris Pro 6100,925 -gpu3258,Intel Iris Pro Graphics 6200,1449 -gpu3436,Intel Iris Pro P580,2231 -gpu3542,Intel Iris Pro P6300,1625 -gpu4265,Intel Iris Xe,2690 -gpu4502,Intel Iris Xe MAX,1971 -gpu4740,Intel Iris Xe MAX 100,1927 -gpu3261,Intel Media Accelerator,32 -gpu953,Intel Media Accelerator 3150,2 -gpu954,Intel Media Accelerator 500,3 -gpu956,Intel Media Accelerator 600,6 -gpu957,Intel Media Accelerator HD,108 -gpu4063,Intel Poison Ivy,738 -gpu967,Intel Q33 Express,5 -gpu778,Intel Q35 Embedded,8 -gpu968,Intel Q35 Express,88 -gpu971,Intel Q45/Q43 Express Chipset,207 -gpu973,Intel Q45/Q43 Express-Chipsatz,57 -gpu974,Intel Q965/Q963 Express,186 -gpu3135,Intel Skylake HD DT GT2,576 -gpu3950,Intel UHD Graphics,1476 -gpu3876,Intel UHD Graphics 600,324 -gpu3861,Intel UHD Graphics 605,369 -gpu3910,Intel UHD Graphics 610,718 -gpu4006,Intel UHD Graphics 615,751 -gpu4051,Intel UHD Graphics 617,892 -gpu3805,Intel UHD Graphics 620,1042 -gpu3826,Intel UHD Graphics 630,1247 -gpu4505,Intel UHD Graphics 710,1077 -gpu4379,Intel UHD Graphics 730,1626 -gpu4378,Intel UHD Graphics 750,1742 -gpu4473,Intel UHD Graphics 770,1856 -gpu3924,Intel UHD Graphics P630,2241 -gpu4410,Intel UHD Graphics P750,1726 -gpu3301,Intel US15 Embedded Media and Controller,7 -gpu1515,ION,84 -gpu1516,ION LE,97 -gpu248,M860G with Mobility Radeon 4100,75 -gpu249,M880G with Mobility Radeon HD 4200,92 -gpu250,M880G with Mobility Radeon HD 4225,71 -gpu121,M880G with Mobility Radeon HD 4250,104 -gpu3677,Master X3100 Driver,10 -gpu3187,Matrox C420 LP PCIe x16,597 -gpu3054,Matrox C680 PCIe x16,1903 -gpu3579,Matrox C900 PCIe x16,1812 -gpu2674,Matrox G200e WDDM 1.2,59 -gpu3887,Matrox G200e WDDM 2.0,100 -gpu2705,Matrox G200eh,40 -gpu2942,Matrox G200eh WDDM 1.2,51 -gpu3723,Matrox G200eh WDDM 2.0,46 -gpu2673,Matrox G200eR,36 -gpu2919,Matrox G200eR WDDM 1.2,45 -gpu3692,Matrox G200eR WDDM 2.0,67 -gpu998,Matrox G200eW,39 -gpu2823,Matrox G200eW WDDM 1.2,50 -gpu3847,Matrox G200eW3 WDDM 2.0,94 -gpu4882,Matrox LUMA A310,3690 -gpu4881,Matrox LUMA A310F,3873 -gpu1001,Matrox M9120 PCIe x16,19 -gpu1003,Matrox M9120 Plus LP PCIe x16,25 -gpu1004,Matrox M9125 PCIe x16,25 -gpu1005,Matrox M9128 LP PCIe x16,31 -gpu1006,Matrox M9138 LP PCIe x16,42 -gpu1007,Matrox M9140 LP PCIe x16,23 -gpu1008,Matrox M9148 LP PCIe x16,40 -gpu1032,Matrox Millennium P650 PCIe 128,5 -gpu1036,Matrox Millennium P690 PCIe x16,366 -gpu1038,Matrox Millennium P690 Plus LP PCIe x16,6 -gpu1040,Matrox Parhelia 128MB,3 -gpu1041,Matrox Parhelia 256MB,9 -gpu1042,Matrox Parhelia APVe,5 -gpu1055,MEDION RADEON 9800 XXL,71 -gpu1057,MEDION RADEON X740XL,94 -gpu4118,MIRRORV3,1080 -gpu1068,Mobile Intel - famiglia Express Chipset 45,38 -gpu2477,Mobile Intel 4 Express-Chipsatzfamilie,44 -gpu1060,Mobile Intel 45 Express,43 -gpu1072,Mobile Intel 45 Express-Chipsatzfamilie,117 -gpu2393,Mobile Intel 915GM/GMS/910GML Express,1 -gpu1062,Mobile Intel 945 Express,1 -gpu1083,Mobile Intel 945GM Express,5 -gpu1085,Mobile Intel 945GM/GU Express,5 -gpu1066,Mobile Intel 965 Express,49 -gpu3509,Mobile Intel 965 Express - BR-0907-0461 v1839,8 -gpu2916,Mobile Intel 965 Express-Chipsatzfamilie,24 -gpu1088,Mobile Intel HD,235 -gpu2460,Mobile Intel serie 4 Express,44 -gpu3948,Mobile Intel965 Express,17 -gpu446,MOBILITY FIREGL 7800,4 -gpu448,MOBILITY FIREGL T2,40 -gpu449,MOBILITY FIREGL T2/T2e,33 -gpu451,MOBILITY FireGL V3200,62 -gpu452,MOBILITY FireGL V5000,81 -gpu99,MOBILITY FireGL V5200,44 -gpu453,MOBILITY FireGL V5250,27 -gpu455,Mobility FireGL V5725,219 -gpu459,MOBILITY IGP 9000/9100,10 -gpu462,Mobility Radeon 4100,81 -gpu463,MOBILITY RADEON 7000 IGP,6 -gpu464,MOBILITY RADEON 7500,3 -gpu465,MOBILITY RADEON 9000,3 -gpu466,MOBILITY RADEON 9000 IGP,7 -gpu467,MOBILITY RADEON 9000/9100 IGP,5 -gpu468,MOBILITY RADEON 9100 IGP,2 -gpu469,MOBILITY RADEON 9200,3 -gpu2325,MOBILITY RADEON 9550,30 -gpu471,MOBILITY RADEON 9600,36 -gpu472,MOBILITY RADEON 9600 PRO TURBO,24 -gpu473,MOBILITY RADEON 9600/9700,39 -gpu474,MOBILITY RADEON 9700,27 -gpu476,MOBILITY RADEON 9800,46 -gpu75,Mobility Radeon HD 2300,50 -gpu147,Mobility Radeon HD 2400,89 -gpu478,Mobility Radeon HD 2400 XT,102 -gpu65,Mobility Radeon HD 2600,167 -gpu479,Mobility Radeon HD 2600 XT,191 -gpu2893,Mobility Radeon HD 3400 Serisi,111 -gpu482,Mobility Radeon HD 3410,62 -gpu483,Mobility Radeon HD 3430,98 -gpu484,Mobility Radeon HD 3450,91 -gpu485,Mobility Radeon HD 3470,93 -gpu486,Mobility Radeon HD 3470 Hybrid X2,93 -gpu487,Mobility Radeon HD 3650,129 -gpu488,Mobility Radeon HD 3670,232 -gpu489,Mobility Radeon HD 3850,365 -gpu490,Mobility Radeon HD 3870,547 -gpu491,Mobility Radeon HD 3870 X2,477 -gpu493,Mobility Radeon HD 4200,90 -gpu494,Mobility Radeon HD 4225,66 -gpu495,Mobility Radeon HD 4250,98 -gpu496,Mobility Radeon HD 4270,92 -gpu2753,Mobility Radeon HD 4300 Serisi,73 -gpu497,Mobility Radeon HD 4330,135 -gpu498,Mobility Radeon HD 4350,148 -gpu502,Mobility Radeon HD 4550,191 -gpu503,Mobility Radeon HD 4570,139 -gpu504,Mobility Radeon HD 4650,401 -gpu505,Mobility Radeon HD 4670,463 -gpu506,Mobility Radeon HD 4830,511 -gpu507,Mobility Radeon HD 4850,866 -gpu148,Mobility Radeon HD 4870,719 -gpu2153,Mobility Radeon HD 5000,773 -gpu2516,Mobility Radeon HD 5000 Serisi,478 -gpu511,Mobility Radeon HD 5165,284 -gpu512,Mobility Radeon HD 530v,174 -gpu514,Mobility Radeon HD 540v,188 -gpu515,Mobility Radeon HD 5430,181 -gpu516,Mobility Radeon HD 5450,214 -gpu517,Mobility Radeon HD 545v,199 -gpu58,Mobility Radeon HD 5470,236 -gpu518,Mobility Radeon HD 550v,266 -gpu519,Mobility Radeon HD 5570,538 -gpu520,Mobility Radeon HD 560v,318 -gpu521,Mobility Radeon HD 5650,449 -gpu522,Mobility Radeon HD 565v,353 -gpu149,Mobility Radeon HD 5730,499 -gpu525,Mobility Radeon HD 5850,763 -gpu526,Mobility Radeon HD 5870,1093 -gpu2644,Mobility Radeon HD serie 4200,96 -gpu531,Mobility Radeon X1300,39 -gpu532,Mobility Radeon X1350,39 -gpu533,Mobility Radeon X1400,42 -gpu535,Mobility Radeon X1450,33 -gpu536,Mobility Radeon X1600,92 -gpu537,Mobility Radeon X1700,104 -gpu538,MOBILITY RADEON X1800,130 -gpu539,Mobility Radeon X1900,134 -gpu111,Mobility Radeon X2300,48 -gpu1097,Mobility Radeon X2300 HD,48 -gpu540,Mobility Radeon X2500,81 -gpu542,MOBILITY RADEON X300,33 -gpu543,MOBILITY RADEON X600,50 -gpu544,MOBILITY RADEON X600 SE,49 -gpu545,MOBILITY RADEON X700,66 -gpu546,MOBILITY RADEON X700 XL,59 -gpu548,MOBILITY RADEON XPRESS 200,27 -gpu2488,Mobility Radeon. HD 5470,215 -gpu551,MOBILITY/RADEON 9000,4 -gpu2470,MONSTER GeForce GTX 675M,2637 -gpu3640,MxGPU,1826 -gpu3199,N16P-GX,1204 -gpu3928,N18E-Q1,2525 -gpu1530,nForce 750a SLI,83 -gpu1531,nForce 760i SLI,140 -gpu1532,nForce 780a SLI,92 -gpu1533,nForce 980a/780a SLI,81 -gpu1536,NV44,15 -gpu4632,NVIDIA A10,22064 -gpu4521,NVIDIA A10-4Q,3424 -gpu4546,NVIDIA A10G,18292 -gpu4551,NVIDIA A40,13370 -gpu4655,NVIDIA A40-8Q,4220 -gpu1150,NVIDIA GeForce3 Ti200,5 -gpu3554,NVIDIA TITAN X,13659 -gpu3728,NVIDIA TITAN Xp,18644 -gpu1537,NVS 2100M,139 -gpu1538,NVS 300,121 -gpu2195,NVS 310,249 -gpu1539,NVS 3100M,114 -gpu2808,NVS 315,299 -gpu117,NVS 4200M,270 -gpu2228,NVS 510,704 -gpu1540,NVS 5100M,188 -gpu2158,NVS 5200M,514 -gpu1541,NVS 5400M,631 -gpu3428,NVS 810,1161 -gpu3291,OPAL XT/GL,1053 -gpu4206,P104-100,3807 -gpu4212,P106-090,2342 -gpu4044,P106-100,6324 -gpu4810,PCI\VEN_1002&DEV_164E&SUBSYS_D0001458&REV_C3 Ryzen,1653 -gpu4791,PCI\VEN_1002&DEV_164E&SUBSYS_D0001458&REV_C7 Ryzen,1642 -gpu3608,PHDGD Ivy 4,374 -gpu4184,PHDGD Ivy 5,445 -gpu3844,PHDGD Quantic C3,116 -gpu3856,PHDGD Sapphire GR for Mobile Intel 965,25 -gpu3136,PHDGD Solo 1.2.0 x86,11 -gpu3515,PHDGD Solo 2 x64,20 -gpu3625,Q12U-1,5164 -gpu87,Quadro 1000M,571 -gpu2398,Quadro 1100M,755 -gpu1543,Quadro 2000,946 -gpu1544,Quadro 2000 D,1239 -gpu1545,Quadro 2000D,974 -gpu49,Quadro 2000M,783 -gpu2397,Quadro 2100M,1100 -gpu1546,Quadro 280 NVS PCIe,5 -gpu1547,Quadro 3000M,1018 -gpu1548,Quadro 400,148 -gpu1549,Quadro 4000,1478 -gpu1550,Quadro 4000M,1323 -gpu2291,Quadro 410,441 -gpu1551,Quadro 5000,1923 -gpu1552,Quadro 5000M,2059 -gpu2518,Quadro 500M,570 -gpu1553,Quadro 5010M,1771 -gpu91,Quadro 600,537 -gpu1554,Quadro 6000,2705 -gpu1555,Quadro 7000,3505 -gpu1556,Quadro CX,947 -gpu1557,Quadro FX 1000,34 -gpu1558,Quadro FX 1100,35 -gpu1559,Quadro FX 1300,34 -gpu1560,Quadro FX 1400,124 -gpu1561,Quadro FX 1500,197 -gpu1562,Quadro FX 1500M,171 -gpu1563,Quadro FX 1600M,131 -gpu1564,Quadro FX 1700,139 -gpu1565,Quadro FX 1700M,172 -gpu1566,Quadro FX 1800,399 -gpu1567,Quadro FX 1800M,466 -gpu1568,Quadro FX 2000,18 -gpu1569,Quadro FX 2500M,217 -gpu2854,Quadro FX 2700,543 -gpu1570,Quadro FX 2700M,376 -gpu1571,Quadro FX 2800M,420 -gpu1572,Quadro FX 3000,69 -gpu4,Quadro FX 3400/4400,104 -gpu1574,Quadro FX 3450,148 -gpu1575,Quadro FX 3450/4000 SDI,179 -gpu1576,Quadro FX 350,85 -gpu1577,Quadro FX 3500,259 -gpu1578,Quadro FX 3500M,306 -gpu1579,Quadro FX 350M,44 -gpu1580,Quadro FX 3600M,466 -gpu1581,Quadro FX 360M,86 -gpu1582,Quadro FX 370,83 -gpu1583,Quadro FX 370 Low Profile,102 -gpu1584,Quadro FX 370 LP,108 -gpu1585,Quadro FX 3700,380 -gpu1586,Quadro FX 3700M,456 -gpu1587,Quadro FX 370M,93 -gpu1588,Quadro FX 380,162 -gpu1589,Quadro FX 380 LP,126 -gpu1590,Quadro FX 3800,799 -gpu1591,Quadro FX 3800M,605 -gpu1592,Quadro FX 380M,120 -gpu1593,Quadro FX 4000,101 -gpu1594,Quadro FX 4500,226 -gpu1595,Quadro FX 4500 X2,236 -gpu1596,Quadro FX 4600,430 -gpu2857,Quadro FX 4700 X2,676 -gpu32,Quadro FX 4800,991 -gpu1599,Quadro FX 500/600 PCI,14 -gpu1600,Quadro FX 500/FX 600,7 -gpu1601,Quadro FX 540,80 -gpu1602,Quadro FX 550,63 -gpu1603,Quadro FX 5500,242 -gpu1604,Quadro FX 560,113 -gpu1605,Quadro FX 5600,525 -gpu1606,Quadro FX 570,232 -gpu1607,Quadro FX 570M,104 -gpu1608,Quadro FX 580,156 -gpu1609,Quadro FX 5800,1223 -gpu1611,Quadro FX 770M,170 -gpu1612,Quadro FX 880M,215 -gpu1614,Quadro FX Go1400,101 -gpu3721,Quadro GP100,15607 -gpu3919,Quadro GV100,20021 -gpu1616,Quadro K1000M,783 -gpu2623,Quadro K1100M,1085 -gpu3193,Quadro K1200,2908 -gpu2446,Quadro K2000,1571 -gpu2497,Quadro K2000D,1577 -gpu1617,Quadro K2000M,1016 -gpu2665,Quadro K2100M,1362 -gpu2947,Quadro K2200,3548 -gpu3175,Quadro K2200M,3440 -gpu2213,Quadro K3000M,1645 -gpu2684,Quadro K3100M,2270 -gpu2272,Quadro K4000,2718 -gpu2159,Quadro K4000M,1908 -gpu2736,Quadro K4100M,2643 -gpu2992,Quadro K420,760 -gpu2944,Quadro K4200,4326 -gpu2258,Quadro K5000,3987 -gpu1618,Quadro K5000M,2779 -gpu2798,Quadro K5100M,3188 -gpu2767,Quadro K510M,610 -gpu2941,Quadro K5200,6020 -gpu2449,Quadro K600,745 -gpu2666,Quadro K6000,8059 -gpu2703,Quadro K610M,719 -gpu2950,Quadro K620,2240 -gpu3148,Quadro K620M,1162 -gpu3349,Quadro M1000M,2889 -gpu3651,Quadro M1200,3270 -gpu3512,Quadro M2000,3985 -gpu3373,Quadro M2000M,3451 -gpu3732,Quadro M2200,4295 -gpu3394,Quadro M3000M,5511 -gpu3325,Quadro M4000,6668 -gpu3297,Quadro M4000M,6266 -gpu3369,Quadro M5000,9380 -gpu3408,Quadro M5000M,7037 -gpu3449,Quadro M500M,1173 -gpu3754,Quadro M520,1870 -gpu3459,Quadro M5500,7915 -gpu3106,Quadro M6000,11704 -gpu3544,Quadro M6000 24GB,12008 -gpu3397,Quadro M600M,2118 -gpu3658,Quadro M620,2832 -gpu1620,Quadro NVS 110M,47 -gpu1621,Quadro NVS 120M,46 -gpu1622,Quadro NVS 130M,97 -gpu1623,Quadro NVS 135M,52 -gpu1624,Quadro NVS 140M,69 -gpu1625,Quadro NVS 150M,70 -gpu1626,Quadro NVS 160M,137 -gpu1628,Quadro NVS 210S,23 -gpu1629,Quadro NVS 210S / GeForce 6150LE,20 -gpu1631,Quadro NVS 280 PCI,8 -gpu1632,Quadro NVS 280 SD,2 -gpu1633,Quadro NVS 285,42 -gpu1634,Quadro NVS 285 128MB,38 -gpu1635,Quadro NVS 290,226 -gpu1636,Quadro NVS 295,79 -gpu1638,Quadro NVS 320M,208 -gpu1640,Quadro NVS 420,69 -gpu1641,Quadro NVS 440,37 -gpu1642,Quadro NVS 450,66 -gpu1643,Quadro NVS 510M,253 -gpu1644,Quadro NVS 55/280 PCI,6 -gpu3727,Quadro P1000,4438 -gpu3712,Quadro P2000,6921 -gpu3982,Quadro P2000 with Max-Q Design,5172 -gpu4133,Quadro P2200,9374 -gpu3688,Quadro P3000,6614 -gpu3942,Quadro P3200,9122 -gpu3963,Quadro P3200 with Max-Q Design,9113 -gpu3807,Quadro P400,1601 -gpu3719,Quadro P4000,11655 -gpu3829,Quadro P4000 with Max-Q Design,9082 -gpu3959,Quadro P4200,10445 -gpu3999,Quadro P4200 with Max-Q Design,11162 -gpu3911,Quadro P500,1602 -gpu3607,Quadro P5000,12305 -gpu4126,Quadro P520,2106 -gpu3888,Quadro P5200,12460 -gpu3996,Quadro P5200 with Max-Q Design,12608 -gpu3729,Quadro P600,3266 -gpu3597,Quadro P6000,14927 -gpu3954,Quadro P620,3603 -gpu4119,Quadro RTX 3000,11157 -gpu4152,Quadro RTX 3000 with Max-Q Design,8418 -gpu4053,Quadro RTX 4000,15480 -gpu4148,Quadro RTX 4000 (Mobile),12722 -gpu4161,Quadro RTX 4000 with Max-Q Design,12569 -gpu4040,Quadro RTX 5000,16038 -gpu4147,Quadro RTX 5000 (Mobile),14832 -gpu4144,Quadro RTX 5000 with Max-Q Design,13590 -gpu4015,Quadro RTX 6000,19135 -gpu4061,Quadro RTX 8000,19447 -gpu4124,Quadro T1000,6608 -gpu4295,Quadro T1000 with Max-Q Design,6684 -gpu4113,Quadro T2000,7176 -gpu4218,Quadro T2000 with Max-Q Design,6949 -gpu1647,Quadro2 MXR/EX,4 -gpu1648,Quadro2 Pro,1 -gpu1649,Quadro4 380 XGL,6 -gpu1657,Quadro4 900 XGL,4 -gpu1658,Quadro4 980 XGL,5 -gpu4363,Qualcomm Adreno 540 GPU,118 -gpu4368,Qualcomm Adreno 618 GPU,124 -gpu4034,Qualcomm Adreno 630 GPU,282 -gpu4561,Qualcomm Adreno 675 GPU,539 -gpu4344,Qualcomm Adreno 680 GPU,652 -gpu4563,Qualcomm Adreno 685 GPU,892 -gpu4499,Qualcomm Adreno 690 GPU,972 -gpu4960,Qualcomm Adreno 7c Gen 3 GPU,748 -gpu4838,Qualcomm Adreno 7c+ Gen 3,591 -gpu4518,Qualcomm Adreno 8cx Gen 3,1934 -gpu2946,QXL KMDOD,18 -gpu554,Radeon 2100,59 -gpu76,Radeon 3000,98 -gpu4713,Radeon 3015e,364 -gpu4684,Radeon 3020e,464 -gpu105,Radeon 3100,73 -gpu3797,Radeon 520,858 -gpu3818,Radeon 530,1009 -gpu3980,Radeon 535,1071 -gpu3810,Radeon 535DX,806 -gpu3803,Radeon 540,1354 -gpu4154,Radeon 540X,1402 -gpu4526,Radeon 550,1772 -gpu4137,Radeon 550X,1494 -gpu4759,Radeon 610M,1124 -gpu4773,Radeon 610M Ryzen 9 7845HX,21911 -gpu4760,Radeon 610M Ryzen 9 7945HX,1624 -gpu4208,Radeon 620,897 -gpu4190,Radeon 625,1090 -gpu4221,Radeon 630,1271 -gpu124,Radeon 6600M,518 -gpu3813,Radeon 6750M,911 -gpu4884,Radeon 680M Ryzen 7 7735HS,6179 -gpu1689,Radeon 7000 / Radeon VE,2 -gpu1690,RADEON 7000 / RADEON VE Family,3 -gpu1693,RADEON 7200,2 -gpu4926,Radeon 740M,3436 -gpu556,RADEON 7500,3 -gpu1695,RADEON 7500 Family,4 -gpu4902,Radeon 760M,5394 -gpu4818,Radeon 780M,7106 -gpu1697,RADEON 8500 Family,6 -gpu1699,RADEON 9000,4 -gpu1700,RADEON 9000 Family,3 -gpu1703,RADEON 9100 Family,6 -gpu557,RADEON 9100 IGP,5 -gpu558,RADEON 9200,3 -gpu1704,RADEON 9200 LE Family,2 -gpu1706,RADEON 9200 PRO Family,2 -gpu1707,RADEON 9200 SE,2 -gpu1710,RADEON 9250,2 -gpu1711,RADEON 9500,36 -gpu1713,RADEON 9500 PRO / 9700,41 -gpu559,RADEON 9550,34 -gpu560,Radeon 9550 / X1050,29 -gpu1716,RADEON 9600 Family,25 -gpu1717,RADEON 9600 PRO,42 -gpu1718,RADEON 9600 PRO Family,26 -gpu1722,RADEON 9600 TX Family,18 -gpu1723,RADEON 9600 XT,35 -gpu1724,RADEON 9600SE,27 -gpu1726,RADEON 9700 PRO,53 -gpu151,Radeon 9700 TX w/TV-Out,44 -gpu1729,RADEON 9800,57 -gpu1731,RADEON 9800 PRO,59 -gpu1732,RADEON 9800 SE,23 -gpu1734,RADEON 9800 XT,56 -gpu4187,RADEON A9800XT,22 -gpu4676,Radeon Athlon Gold 3150U,733 -gpu4573,Radeon Athlon Gold PRO 4150GE,1573 -gpu4735,Radeon Athlon PRO 3045B,555 -gpu4711,Radeon Athlon Silver 3050U,679 -gpu561,RADEON E2400,51 -gpu562,RADEON E4690,405 -gpu3364,Radeon E6460,323 -gpu3995,Radeon E6465,231 -gpu251,Radeon E6760,876 -gpu3150,Radeon E8860,1686 -gpu3831,Radeon E8870PCIe,3368 -gpu4281,Radeon Eng Sample: 100-000000085-40_35/24_Y,1440 -gpu4489,Radeon Eng Sample: 100-000000262-30_Y,2415 -gpu4633,Radeon Eng Sample: 100-000000285-40_Y,2365 -gpu4784,Radeon Eng Sample: 100-000000287-40_Y,1861 -gpu4572,Radeon Eng Sample: 100-000000300-40_Y,2670 -gpu4937,Radeon Eng Sample: 100-000000371-40_42/18_Y,2590 -gpu4963,Radeon Eng Sample: 100-000000560-40_Y,5294 -gpu566,Radeon HD 2350,76 -gpu567,Radeon HD 2400,120 -gpu568,Radeon HD 2400 PCI,14 -gpu569,Radeon HD 2400 Pro,114 -gpu571,Radeon HD 2400 XT,118 -gpu572,Radeon HD 2600 PRO,211 -gpu573,Radeon HD 2600 Pro AGP,110 -gpu574,Radeon HD 2600 XT,282 -gpu576,Radeon HD 2900 GT,292 -gpu577,Radeon HD 2900 PRO,627 -gpu578,Radeon HD 2900 XT,659 -gpu2964,Radeon HD 3000,95 -gpu46,Radeon HD 3200,82 -gpu580,Radeon HD 3300,126 -gpu581,Radeon HD 3450,158 -gpu583,Radeon HD 3470,118 -gpu585,Radeon HD 3650 AGP,150 -gpu586,Radeon HD 3670,156 -gpu587,Radeon HD 3850,396 -gpu44,Radeon HD 3850 AGP,432 -gpu588,Radeon HD 3850 X2,822 -gpu10,Radeon HD 3870,557 -gpu589,Radeon HD 3870 X2,708 -gpu25,Radeon HD 4200,111 -gpu590,Radeon HD 4250,122 -gpu591,Radeon HD 4270,109 -gpu592,Radeon HD 4290,140 -gpu2945,Radeon HD 4300/4500 Serisi,155 -gpu110,Radeon HD 4330,113 -gpu113,Radeon HD 4350,120 -gpu5,Radeon HD 4550,235 -gpu596,Radeon HD 4650,230 -gpu597,Radeon HD 4650 AGP,207 -gpu12,Radeon HD 4670,379 -gpu601,Radeon HD 4770,894 -gpu2829,Radeon HD 4810,769 -gpu57,Radeon HD 4830,835 -gpu24,Radeon HD 4850,936 -gpu602,Radeon HD 4850 X2,1132 -gpu30,Radeon HD 4870,1368 -gpu98,Radeon HD 4870 X2,1309 -gpu42,Radeon HD 4890,1514 -gpu7,Radeon HD 5450,136 -gpu3055,Radeon HD 5470,268 -gpu603,Radeon HD 5550,376 -gpu80,Radeon HD 5570,482 -gpu604,Radeon HD 5600/5700,646 -gpu28,Radeon HD 5670,798 -gpu50,Radeon HD 5750,1162 -gpu6,Radeon HD 5770,1344 -gpu69,Radeon HD 5830,1730 -gpu47,Radeon HD 5850,1982 -gpu48,Radeon HD 5870,2218 -gpu20,Radeon HD 5970,2307 -gpu2715,Radeon HD 6230,179 -gpu252,Radeon HD 6250,93 -gpu254,Radeon HD 6290,105 -gpu255,Radeon HD 6290M,140 -gpu256,Radeon HD 6300M,143 -gpu13,Radeon HD 6310,122 -gpu258,Radeon HD 6320,148 -gpu259,Radeon HD 6320 Graphic,216 -gpu260,Radeon HD 6320M,198 -gpu262,RADEON HD 6350,140 -gpu263,Radeon HD 6370D,254 -gpu264,Radeon HD 6370M,275 -gpu265,Radeon HD 6380G,200 -gpu266,Radeon HD 6410D,238 -gpu2416,Radeon HD 6430M,192 -gpu267,Radeon HD 6450,198 -gpu3724,Radeon HD 6450 + 8470D Dual,762 -gpu268,Radeon HD 6450A,260 -gpu107,Radeon HD 6470M,227 -gpu270,Radeon HD 6480G,260 -gpu3234,Radeon HD 6480M,353 -gpu271,Radeon HD 6490M,377 -gpu52,Radeon HD 6520G,298 -gpu109,Radeon HD 6530D,337 -gpu273,Radeon HD 6550A,707 -gpu274,Radeon HD 6550D,403 -gpu54,Radeon HD 6570,558 -gpu2285,Radeon HD 6610M,565 -gpu40,Radeon HD 6620G,351 -gpu277,Radeon HD 6630M,684 -gpu278,Radeon HD 6650A,835 -gpu279,Radeon HD 6650M,753 -gpu96,Radeon HD 6670,729 -gpu2357,Radeon HD 6670 + 6670 Dual,646 -gpu3178,Radeon HD 6670 + 7660D Dual,1492 -gpu3633,Radeon HD 6670/7670,945 -gpu280,Radeon HD 6700M,1016 -gpu282,Radeon HD 6750,1043 -gpu283,Radeon HD 6750M,937 -gpu284,Radeon HD 6770,1246 -gpu285,Radeon HD 6770M,964 -gpu286,Radeon HD 6790,1608 -gpu287,Radeon HD 6800M,798 -gpu45,Radeon HD 6850,1973 -gpu3684,Radeon HD 6850 X2,2534 -gpu22,Radeon HD 6870,2216 -gpu290,Radeon HD 6900M,1702 -gpu36,Radeon HD 6950,2628 -gpu84,Radeon HD 6970,2843 -gpu291,Radeon HD 6970M,2270 -gpu292,Radeon HD 6990,3013 -gpu2315,Radeon HD 7290,111 -gpu2958,Radeon HD 7290M,123 -gpu294,Radeon HD 7310,128 -gpu2922,Radeon HD 7310 - Carte graphique,174 -gpu2852,Radeon HD 7310G,180 -gpu2217,Radeon HD 7310M,166 -gpu295,Radeon HD 7340,153 -gpu2299,Radeon HD 7340G,196 -gpu2170,Radeon HD 7340M,221 -gpu296,Radeon HD 7350,165 -gpu2333,Radeon HD 7400G,267 -gpu2305,Radeon HD 7420G,308 -gpu297,Radeon HD 7450,223 -gpu331,Radeon HD 7450A,288 -gpu3039,Radeon HD 7450M,329 -gpu298,Radeon HD 7470,289 -gpu299,Radeon HD 7470M,407 -gpu2193,Radeon HD 7480D,281 -gpu300,Radeon HD 7500G,301 -gpu2660,Radeon HD 7500G + 7500M/7600M Dual,616 -gpu2491,Radeon HD 7500G + 7550M Dual,497 -gpu3379,Radeon HD 7500G + HD 7500M/7600M Dual,355 -gpu301,Radeon HD 7520G,315 -gpu3124,Radeon HD 7520G + 7400M Dual,486 -gpu2373,Radeon HD 7520G + 7470M Dual,542 -gpu2741,Radeon HD 7520G + 7500/7600 Dual,582 -gpu2236,Radeon HD 7520G + 7600M Dual,591 -gpu2624,Radeon HD 7520G + 7610M Dual,588 -gpu2689,Radeon HD 7520G + 7650M Dual,453 -gpu302,Radeon HD 7520G + 7670M Dual,523 -gpu2499,Radeon HD 7520G + 7700M Dual,1060 -gpu3014,Radeon HD 7520G + 8600/8700M Dual,311 -gpu3092,Radeon HD 7520G + 8750M Dual,376 -gpu3361,Radeon HD 7520G + HD 7400M Dual,544 -gpu3415,Radeon HD 7520G + HD 7500/7600 Dual,832 -gpu3021,Radeon HD 7520G + HD 7600M Dual,447 -gpu3413,Radeon HD 7520G + HD 7670M Dual,495 -gpu3609,Radeon HD 7520G + HD 7700M Dual,574 -gpu2970,Radeon HD 7520G + HD 8600/8700M Dual,623 -gpu3253,Radeon HD 7520G + HD 8750M Dual,651 -gpu2691,Radeon HD 7520G N HD 7520G + HD 7500/7600 7500/760,574 -gpu2748,Radeon HD 7520G N HD 7520G + HD 7600M N HD 7600M D,364 -gpu2166,Radeon HD 7540D,330 -gpu2581,Radeon HD 7540D + 6570 Dual,719 -gpu3090,Radeon HD 7540D + 7500 Dual,821 -gpu2851,Radeon HD 7540D + HD 6450 Dual,643 -gpu303,Radeon HD 7550M,464 -gpu304,Radeon HD 7550M/7650M,728 -gpu305,Radeon HD 7560D,462 -gpu2362,Radeon HD 7560D + 6450 Dual,568 -gpu2221,Radeon HD 7560D + 6570 Dual,833 -gpu2303,Radeon HD 7560D + 6670 Dual,1130 -gpu2880,Radeon HD 7560D + 7560D Dual,982 -gpu2658,Radeon HD 7560D + 7570 Dual,985 -gpu306,Radeon HD 7560D + 7670 Dual,1426 -gpu2835,Radeon HD 7560D + 7700 Dual,1919 -gpu2858,Radeon HD 7560D + HD 6570 Dual,1237 -gpu2894,Radeon HD 7560D + HD 6670 Dual,1554 -gpu2891,Radeon HD 7560D + HD 7000 Dual,534 -gpu3739,Radeon HD 7560D + HD 7600 Dual,1258 -gpu2959,Radeon HD 7560D + HD 7670 Dual,1380 -gpu3158,Radeon HD 7560D + HD 7700 Dual,1346 -gpu2856,Radeon HD 7560D + HD 8570 Dual,935 -gpu3267,Radeon HD 7560D + R5 235 Dual,563 -gpu90,Radeon HD 7570,626 -gpu307,Radeon HD 7570M,428 -gpu3046,Radeon HD 7570M/HD 7670M,699 -gpu2533,Radeon HD 7580D,350 -gpu2290,Radeon HD 7600G,309 -gpu2598,Radeon HD 7600G + 6400M Dual,376 -gpu2501,Radeon HD 7600G + 7450M Dual,389 -gpu2508,Radeon HD 7600G + 7500M/7600M Dual,405 -gpu2855,Radeon HD 7600G + 7550M Dual,423 -gpu2746,Radeon HD 7600G + 8500M/8700M Dual,333 -gpu3321,Radeon HD 7600G + HD 7400M Dual,328 -gpu3230,Radeon HD 7600G + HD 7500M/7600M Dual,476 -gpu3098,Radeon HD 7600G + HD 7550M Dual,509 -gpu3180,Radeon HD 7600G + HD 8670M Dual,543 -gpu2780,Radeon HD 7600G + HD Dual,435 -gpu3629,Radeon HD 7600G N HD 7600G + HD ON HD Dual,526 -gpu2234,Radeon HD 7600M + 7600M Dual,773 -gpu308,Radeon HD 7610M,632 -gpu309,Radeon HD 7620G,359 -gpu2728,Radeon HD 7620G + 8600M Dual,508 -gpu2765,Radeon HD 7620G + 8670M Dual,577 -gpu3066,Radeon HD 7620G + HD 8600M Dual,442 -gpu2824,Radeon HD 7620G + HD 8670M Dual,507 -gpu2751,Radeon HD 7620G N HD 7620G + HD 8600M N HD 8600M D,451 -gpu310,Radeon HD 7640G,458 -gpu2301,Radeon HD 7640G + 6400M Dual,526 -gpu2442,Radeon HD 7640G + 7400M Dual,637 -gpu2913,Radeon HD 7640G + 7450M Dual,754 -gpu311,Radeon HD 7640G + 7470M Dual,595 -gpu2566,Radeon HD 7640G + 7500/7600 Dual,627 -gpu2211,Radeon HD 7640G + 7500M/7600M Dual,775 -gpu312,Radeon HD 7640G + 7600M Dual,705 -gpu2677,Radeon HD 7640G + 7610M Dual,510 -gpu2786,Radeon HD 7640G + 7650M Dual,747 -gpu313,Radeon HD 7640G + 7670M Dual,644 -gpu2757,Radeon HD 7640G + 7690M Dual,945 -gpu2730,Radeon HD 7640G + 7700M Dual,690 -gpu2809,Radeon HD 7640G + 8500M Dual,585 -gpu2763,Radeon HD 7640G + 8570M Dual,558 -gpu2669,Radeon HD 7640G + 8600/8700M Dual,688 -gpu3873,Radeon HD 7640G + 8600M Dual,249 -gpu2797,Radeon HD 7640G + 8670M Dual,558 -gpu2733,Radeon HD 7640G + 8750M Dual,654 -gpu2978,Radeon HD 7640G + HD 7400M Dual,621 -gpu3329,Radeon HD 7640G + HD 7500/7600 Dual,423 -gpu2990,Radeon HD 7640G + HD 7600M Dual,704 -gpu2770,Radeon HD 7640G + HD 7600M N HD 7600M Dual,406 -gpu2925,Radeon HD 7640G + HD 7670M Dual,518 -gpu3372,Radeon HD 7640G + HD 7700M Dual,589 -gpu3211,Radeon HD 7640G + HD 7700M N HD 7700M Dual,630 -gpu2907,Radeon HD 7640G + HD 8500M Dual,607 -gpu2718,Radeon HD 7640G + HD 8500M N HD 8500M Dual,665 -gpu2889,Radeon HD 7640G + HD 8570M Dual,474 -gpu3131,Radeon HD 7640G + HD 8600/8700M Dual,586 -gpu3280,Radeon HD 7640G + HD 8670M Dual,677 -gpu3288,Radeon HD 7640G + HD 8750M Dual,996 -gpu3246,Radeon HD 7640G + R5 M200 Dual,559 -gpu2700,Radeon HD 7640G N HD 7640G + HD 7600M N HD 7600M D,824 -gpu2735,Radeon HD 7640G N HD 7640G + HD 7670M Dual,679 -gpu2762,Radeon HD 7640G N HD 7640G + HD 8570M Dual,422 -gpu332,Radeon HD 7650A,572 -gpu314,Radeon HD 7650M,442 -gpu315,Radeon HD 7660D,502 -gpu2448,Radeon HD 7660D + 6570 Dual,1100 -gpu2249,Radeon HD 7660D + 6670 Dual,1238 -gpu2266,Radeon HD 7660D + 7470 Dual,465 -gpu2769,Radeon HD 7660D + 7500 Dual,1121 -gpu2450,Radeon HD 7660D + 7540D Dual,1204 -gpu2255,Radeon HD 7660D + 7670 Dual,1061 -gpu3091,Radeon HD 7660D + HD 6670 Dual,1484 -gpu2879,Radeon HD 7660D + HD 7000 Dual,633 -gpu3307,Radeon HD 7660D + HD 7400 Dual,339 -gpu3335,Radeon HD 7660D + HD 7700 Dual,1958 -gpu3687,Radeon HD 7660D + R5 235 Dual,523 -gpu3163,Radeon HD 7660D + R7 240 Dual,941 -gpu316,Radeon HD 7660G,475 -gpu2367,Radeon HD 7660G + 7400M Dual,588 -gpu317,Radeon HD 7660G + 7470M Dual,630 -gpu2233,Radeon HD 7660G + 7600M Dual,831 -gpu2335,Radeon HD 7660G + 7610M Dual,745 -gpu318,Radeon HD 7660G + 7670M Dual,743 -gpu2409,Radeon HD 7660G + 7700M Dual,757 -gpu2779,Radeon HD 7660G + 7730M Dual,931 -gpu2837,Radeon HD 7660G + 8600M Dual,445 -gpu2839,Radeon HD 7660G + 8670M Dual,587 -gpu2861,Radeon HD 7660G + HD 7500/7600 7500/7600 Dual,1002 -gpu3570,Radeon HD 7660G + HD 7500/7600 Dual,760 -gpu3488,Radeon HD 7660G + HD 7500M/7600M Dual,999 -gpu2864,Radeon HD 7660G + HD 7600M Dual,523 -gpu2901,Radeon HD 7660G + HD 7600M N HD 7600M Dual,460 -gpu2794,Radeon HD 7660G + HD 7670M Dual,706 -gpu2988,Radeon HD 7660G + HD 7700M Dual,777 -gpu3433,Radeon HD 7660G + HD 7730M Dual,881 -gpu2943,Radeon HD 7660G + HD 8500M Dual,758 -gpu3514,Radeon HD 7660G + HD 8600/8700M Dual,747 -gpu3507,Radeon HD 7660G + HD 8600M Dual,363 -gpu3390,Radeon HD 7660G + HD 8670M Dual,711 -gpu2726,Radeon HD 7660G N HD 7660G + HD 7600M N HD 7600M D,722 -gpu2795,Radeon HD 7660G N HD 7660G + HD 7670M Dual,704 -gpu2750,Radeon HD 7660G N HD 7660G + HD 7700M N HD 7700M D,966 -gpu319,Radeon HD 7670,820 -gpu333,Radeon HD 7670A,1050 -gpu320,Radeon HD 7670M,473 -gpu2277,Radeon HD 7670M + 7670M Dual,738 -gpu2294,Radeon HD 7690M,1003 -gpu3024,Radeon HD 7690M XT,1009 -gpu2317,Radeon HD 7700-serie,1899 -gpu3138,Radeon HD 7730,1208 -gpu2995,Radeon HD 7730M,749 -gpu321,Radeon HD 7750,1696 -gpu2476,Radeon HD 7750M,1191 -gpu322,Radeon HD 7770,2170 -gpu2502,Radeon HD 7790,3090 -gpu2967,Radeon HD 7800-serie,4029 -gpu323,Radeon HD 7850,3855 -gpu1688,Radeon HD 7850M,1372 -gpu324,Radeon HD 7870,4639 -gpu2557,Radeon HD 7870 XT,4469 -gpu2308,Radeon HD 7870M,1507 -gpu325,Radeon HD 7950 / R9 280,4764 -gpu51,Radeon HD 7970 / R9 280X,5247 -gpu326,Radeon HD 7970M,3846 -gpu2528,Radeon HD 7990,5565 -gpu2668,Radeon HD 8180,138 -gpu2575,Radeon HD 8210,186 -gpu3713,Radeon HD 8210E,193 -gpu2653,Radeon HD 8240,238 -gpu2541,Radeon HD 8250,217 -gpu2810,Radeon HD 8280,260 -gpu2799,Radeon HD 8280E,236 -gpu2512,Radeon HD 8280G,269 -gpu3279,Radeon HD 8310E,340 -gpu2627,Radeon HD 8330,258 -gpu2709,Radeon HD 8330E,266 -gpu2707,Radeon HD 8350,162 -gpu2580,Radeon HD 8350G,304 -gpu2712,Radeon HD 8370D,314 -gpu2582,Radeon HD 8400,261 -gpu2775,Radeon HD 8400E,268 -gpu2848,Radeon HD 8410G,435 -gpu2595,Radeon HD 8450G,364 -gpu2731,Radeon HD 8450G + 8600/8700M Dual,1070 -gpu2771,Radeon HD 8450G + 8600M Dual,545 -gpu2625,Radeon HD 8450G + 8670M Dual,474 -gpu2667,Radeon HD 8450G + 8750M Dual,637 -gpu3166,Radeon HD 8450G + HD 8600M Dual,452 -gpu3685,Radeon HD 8450G + HD 8670M Dual,574 -gpu3587,Radeon HD 8450G + HD 8750M Dual,503 -gpu3865,Radeon HD 8450G + R5 M230 Dual,578 -gpu2645,Radeon HD 8470,251 -gpu2565,Radeon HD 8470D,363 -gpu2648,Radeon HD 8470D + 6450 Dual,717 -gpu2844,Radeon HD 8470D + 6570 Dual,837 -gpu2939,Radeon HD 8470D + HD 6450 Dual,862 -gpu3776,Radeon HD 8470D + HD 6670 Dual,1435 -gpu3990,Radeon HD 8470D + HD 7500 Dual,1545 -gpu2841,Radeon HD 8490,263 -gpu3012,Radeon HD 8500M,411 -gpu3000,Radeon HD 8500M/8700M,852 -gpu2615,Radeon HD 8510G,365 -gpu2577,Radeon HD 8510G + 8500M Dual,596 -gpu3217,Radeon HD 8510G + HD 8500M Dual,629 -gpu2828,Radeon HD 8550D,566 -gpu2583,Radeon HD 8550G,409 -gpu3495,Radeon HD 8550G + 7600M Dual,901 -gpu2662,Radeon HD 8550G + 8500M Dual,602 -gpu2614,Radeon HD 8550G + 8570M Dual,532 -gpu2637,Radeon HD 8550G + 8600/8700M Dual,802 -gpu2628,Radeon HD 8550G + 8600M Dual,617 -gpu2610,Radeon HD 8550G + 8670M Dual,579 -gpu2743,Radeon HD 8550G + 8690M Dual,664 -gpu2639,Radeon HD 8550G + 8750M Dual,795 -gpu3247,Radeon HD 8550G + HD 7600M Dual,854 -gpu2924,Radeon HD 8550G + HD 8500M Dual,558 -gpu3451,Radeon HD 8550G + HD 8570M Dual,529 -gpu3283,Radeon HD 8550G + HD 8600/8700M Dual,654 -gpu3079,Radeon HD 8550G + HD 8600M Dual,593 -gpu3455,Radeon HD 8550G + HD 8670M Dual,546 -gpu3071,Radeon HD 8550G + HD 8750M Dual,819 -gpu3272,Radeon HD 8550G + R5 M200 Dual,619 -gpu2996,Radeon HD 8550G + R5 M230 Dual,487 -gpu3208,Radeon HD 8550G N HD 8550G + HD 8600M N HD 8600M D,611 -gpu2620,Radeon HD 8570,961 -gpu2722,Radeon HD 8570 + 8670D Dual,620 -gpu2740,Radeon HD 8570 + HD 7660D Dual,949 -gpu2553,Radeon HD 8570D,439 -gpu2969,Radeon HD 8570D + 6570 Dual,1239 -gpu2961,Radeon HD 8570D + 6670 Dual,1039 -gpu2965,Radeon HD 8570D + HD 6570 Dual,868 -gpu2975,Radeon HD 8570D + HD 6670 Dual,1260 -gpu3222,Radeon HD 8570D + HD 7000 Dual,753 -gpu3084,Radeon HD 8570D + HD 7700 Dual,1834 -gpu3624,Radeon HD 8570D + HD 8470 Dual,338 -gpu3484,Radeon HD 8570D + HD 8570 Dual,1032 -gpu3406,Radeon HD 8570D + HD8490 Dual,374 -gpu3380,Radeon HD 8570D + R5 235 Dual,470 -gpu2869,Radeon HD 8570D + R7 200 Dual,999 -gpu3086,Radeon HD 8570D + R7 240 Dual,963 -gpu3009,Radeon HD 8570M,428 -gpu2998,Radeon HD 8600/8700M,1029 -gpu2568,Radeon HD 8610G,428 -gpu2585,Radeon HD 8610G + 8500M Dual,610 -gpu2723,Radeon HD 8610G + 8600M Dual,588 -gpu2778,Radeon HD 8610G + 8670M Dual,599 -gpu2929,Radeon HD 8610G + HD 8500M Dual,645 -gpu3075,Radeon HD 8610G + HD 8600M Dual,480 -gpu2773,Radeon HD 8610G + HD 8670M Dual,577 -gpu3530,Radeon HD 8610G + R5 M200 Dual,676 -gpu2882,Radeon HD 8650D,396 -gpu2530,Radeon HD 8650G,538 -gpu2721,Radeon HD 8650G + 7600M Dual,741 -gpu2609,Radeon HD 8650G + 7670M Dual,883 -gpu2578,Radeon HD 8650G + 7700M Dual,1126 -gpu2685,Radeon HD 8650G + 8500M Dual,626 -gpu2711,Radeon HD 8650G + 8570M Dual,654 -gpu2600,Radeon HD 8650G + 8600/8700M Dual,831 -gpu2696,Radeon HD 8650G + 8600M Dual,613 -gpu2630,Radeon HD 8650G + 8670M Dual,635 -gpu2602,Radeon HD 8650G + 8750M Dual,786 -gpu3165,Radeon HD 8650G + HD 7600M Dual,819 -gpu3582,Radeon HD 8650G + HD 7670M Dual,634 -gpu2955,Radeon HD 8650G + HD 8570M Dual,716 -gpu2836,Radeon HD 8650G + HD 8600/8700M Dual,763 -gpu2956,Radeon HD 8650G + HD 8600M Dual,606 -gpu2760,Radeon HD 8650G + HD 8600M N HD 8600M Dual,757 -gpu3381,Radeon HD 8650G + HD 8670M Dual,585 -gpu2876,Radeon HD 8650G + HD 8750M Dual,778 -gpu3031,Radeon HD 8650G + HD 8790M Dual,799 -gpu3235,Radeon HD 8650G + R5 M200 Dual,722 -gpu2895,Radeon HD 8650G + R5 M230 Dual,686 -gpu2936,Radeon HD 8650G N HD 8650G + HD 8570M Dual,773 -gpu2758,Radeon HD 8650G N HD 8650G + HD 8600/8700M Dual,796 -gpu2755,Radeon HD 8650G N HD 8650G + HD 8600M N HD 8600M D,679 -gpu2543,Radeon HD 8670D,532 -gpu2556,Radeon HD 8670D + 6670 Dual,1361 -gpu3852,Radeon HD 8670D + 7000 Dual,811 -gpu2572,Radeon HD 8670D + 7700 Dual,1788 -gpu2831,Radeon HD 8670D + 8570 Dual,974 -gpu2881,Radeon HD 8670D + HD 6670 Dual,1221 -gpu3157,Radeon HD 8670D + HD 7000 Dual,718 -gpu3835,Radeon HD 8670D + HD 7600 Dual,1317 -gpu3740,Radeon HD 8670D + HD 7700 Dual,1892 -gpu2984,Radeon HD 8670D + R5 235 Dual,836 -gpu3704,Radeon HD 8670D + R5 330 Dual,746 -gpu3093,Radeon HD 8670D + R7 200 Dual,949 -gpu3003,Radeon HD 8670D + R7 240 Dual,1020 -gpu2754,Radeon HD 8670D N HD 8670D + HD 8670D Dual,488 -gpu3002,Radeon HD 8670M,520 -gpu3026,Radeon HD 8690A,490 -gpu3141,Radeon HD 8690M,984 -gpu3020,Radeon HD 8730M,748 -gpu2909,Radeon HD 8750M,968 -gpu2993,Radeon HD 8790M,1305 -gpu3271,Radeon HD 8790M / R9 M290X,1210 -gpu3037,Radeon HD 8850M,973 -gpu3420,Radeon HD 8850M / R9 M265X,1139 -gpu2838,Radeon HD 8870M,1638 -gpu2926,Radeon HD 8870M / R9 M270X / M370X,1799 -gpu2927,Radeon HD 8950,2696 -gpu2865,Radeon HD 8970M,3876 -gpu2727,Radeon HD 8990,5214 -gpu3212,Radeon HD HD7850M,1651 -gpu605,Radeon HD4650,239 -gpu79,Radeon HD4670,365 -gpu327,RADEON HD6370D,320 -gpu328,RADEON HD6410D,422 -gpu329,RADEON HD6530D,531 -gpu2790,RADEON HD7450,199 -gpu3059,Radeon HD8530M,490 -gpu3023,Radeon HD8970M,3368 -gpu3277,Radeon HDG 4670,170 -gpu2618,RADEON IGP 320,3 -gpu607,Radeon IGP 320M,3 -gpu1739,Radeon IGP 340M,2 -gpu1741,RADEON IGP 345M,2 -gpu1742,RADEON IGP 34xM,1 -gpu1744,RADEON IGP 350M,6 -gpu3753,Radeon Infoshock 3000,106 -gpu4181,Radeon Instinct MI25 MxGPU,4978 -gpu3830,Radeon M535DX,749 -gpu4441,Radeon Pro,2324 -gpu3683,Radeon Pro 450,2722 -gpu4024,Radeon Pro 455,3112 -gpu3747,Radeon Pro 460,3452 -gpu4134,Radeon Pro 465,4537 -gpu4315,Radeon Pro 5300,7229 -gpu4172,Radeon Pro 5300M,6003 -gpu4264,Radeon Pro 5500 XT,8330 -gpu4165,Radeon Pro 5500M,6815 -gpu3763,Radeon Pro 555,3140 -gpu3820,Radeon Pro 560,3475 -gpu4225,Radeon Pro 5600M,9415 -gpu4021,Radeon Pro 560X,3677 -gpu4099,Radeon Pro 570,6336 -gpu4252,Radeon Pro 5700,11844 -gpu4250,Radeon Pro 5700 XT,12708 -gpu3933,Radeon Pro 580,7753 -gpu4138,Radeon Pro 580X,7540 -gpu3575,Radeon Pro Duo,8296 -gpu4656,Radeon PRO Ryzen 5 PRO 6650U,4066 -gpu4658,Radeon PRO Ryzen 7 PRO 6850U,5691 -gpu3985,Radeon Pro SSG,10971 -gpu4011,Radeon Pro V340 MxGPU,2853 -gpu4328,Radeon Pro V520 MxGPU,12257 -gpu4098,Radeon Pro Vega 16,4809 -gpu4016,Radeon Pro Vega 20,5299 -gpu4127,Radeon Pro Vega 48,11299 -gpu3912,Radeon Pro Vega 56,12353 -gpu3879,Radeon Pro Vega 64,12984 -gpu4189,Radeon Pro Vega II,15667 -gpu4306,Radeon Pro VII,15332 -gpu4192,Radeon Pro W5500,9133 -gpu4180,Radeon Pro W5500M,2010 -gpu4182,Radeon Pro W5700,15438 -gpu4530,Radeon PRO W6400,7945 -gpu4445,Radeon PRO W6600,16075 -gpu4609,Radeon PRO W6600X,13113 -gpu4411,Radeon PRO W6800,19978 -gpu4889,Radeon PRO W7600,17632 -gpu4836,Radeon PRO W7800,29139 -gpu4833,Radeon PRO W7900,29771 -gpu3794,Radeon Pro WX 2100,1820 -gpu3783,Radeon Pro WX 3100,2500 -gpu4065,Radeon Pro WX 3200,2421 -gpu3694,Radeon Pro WX 4100,3772 -gpu3798,Radeon Pro WX 4130,1928 -gpu3787,Radeon Pro WX 4150,2380 -gpu4169,Radeon Pro WX 4170,1409 -gpu3619,Radeon Pro WX 5100,5620 -gpu3611,Radeon Pro WX 7100,7893 -gpu4129,Radeon Pro WX 7130,6577 -gpu3976,Radeon Pro WX 8200,13931 -gpu3833,Radeon Pro WX 9100,12960 -gpu4019,Radeon Pro WX Vega M GL,4643 -gpu3701,Radeon R1E,301 -gpu2915,Radeon R2,240 -gpu2900,Radeon R2E,212 -gpu2914,Radeon R3,303 -gpu3118,Radeon R3E,205 -gpu2902,Radeon R4,333 -gpu3846,Radeon R4E,487 -gpu3123,Radeon R5 220,133 -gpu3885,Radeon R5 230,221 -gpu2826,Radeon R5 235,341 -gpu2871,Radeon R5 235 + HD 7560D Dual,743 -gpu3269,Radeon R5 235 + HD 8570D Dual,737 -gpu3080,Radeon R5 235X,277 -gpu2948,Radeon R5 240,531 -gpu3391,Radeon R5 310,331 -gpu3270,Radeon R5 330,512 -gpu3590,Radeon R5 340,984 -gpu3837,Radeon R5 420,574 -gpu3801,Radeon R5 430,937 -gpu3601,Radeon R5 435,840 -gpu3616,Radeon R5 A10-9600P 4C+6G,619 -gpu4291,"Radeon R5 A10-9600P RADEON R5, 10 COMPUTE CORES 4C",716 -gpu3793,Radeon R5 A10-9620P 4C+6G,731 -gpu4294,"Radeon R5 A10-9620P RADEON R5, 10 COMPUTE CORES 4C",677 -gpu3785,Radeon R5 A10-9630P 4C+6G,977 -gpu4475,"Radeon R5 A10-9630P RADEON R5, 10 COMPUTE CORES 4C",825 -gpu3497,Radeon R5 A240,576 -gpu4075,Radeon R5 A6-7480,694 -gpu3984,Radeon R5 A6-8500P,586 -gpu4183,"Radeon R5 A6-9400 RADEON R5, 6 COMPUTE CORES 2C+4G",605 -gpu3834,Radeon R5 A6-9500 2C+6G,853 -gpu4317,"Radeon R5 A6-9500 RADEON R5, 8 COMPUTE CORES 2C+6G",925 -gpu3997,Radeon R5 A6-9500E 2C+4G,1014 -gpu4635,"Radeon R5 A6-9500E RADEON R5, 6 COMPUTE CORES 2C+4",726 -gpu3025,Radeon R5 M230,413 -gpu3060,Radeon R5 M240,424 -gpu3041,Radeon R5 M255,532 -gpu3487,Radeon R5 M315,473 -gpu3313,Radeon R5 M320,439 -gpu3207,Radeon R5 M330,595 -gpu3332,Radeon R5 M335,548 -gpu3585,Radeon R5 M420,500 -gpu3552,Radeon R5 M430,648 -gpu3956,Radeon R5 M435,801 -gpu3804,Radeon R5 Opteron X3216,394 -gpu3646,Radeon R5 PRO A10-8730B 4C+6G,695 -gpu4305,"Radeon R5 PRO A10-8730B R5, 10 COMPUTE CORES 4C+6G",631 -gpu3722,Radeon R5 PRO A6-8500B 2C+4G,508 -gpu4645,"Radeon R5 PRO A6-8500B R5, 6 Compute Cores 2C+4G",472 -gpu3666,Radeon R5 PRO A6-8530B 2C+4G,689 -gpu3667,Radeon R5 PRO A6-8570 2C+6G,847 -gpu4377,"Radeon R5 PRO A6-8570 R5, 8 COMPUTE CORES 2C+6G",984 -gpu3649,Radeon R5 PRO A6-8570E 2C+4G,637 -gpu4339,"Radeon R5 PRO A6-8570E R5, 6 COMPUTE CORES 2C+4G",799 -gpu3668,Radeon R5 PRO A6-9500 2C+6G,1096 -gpu4412,"Radeon R5 PRO A6-9500 R5, 8 COMPUTE CORES 2C+6G",832 -gpu3715,Radeon R5 PRO A6-9500B 2C+4G,693 -gpu4326,"Radeon R5 PRO A6-9500B R5, 6 COMPUTE CORES 2C+4G",408 -gpu3669,Radeon R5 PRO A6-9500E 2C+4G,770 -gpu3660,Radeon R5 PRO A8-9600B 4C+6G,658 -gpu4346,"Radeon R5 PRO A8-9600B R5, 10 COMPUTE CORES 4C+6G",562 -gpu2904,Radeon R5E,296 -gpu2899,Radeon R6,617 -gpu3156,Radeon R6 + R7 M265DX Dual,570 -gpu3615,Radeon R6 A10-8700P,532 -gpu4020,Radeon R6 A10-9600P 4C+6G,970 -gpu3689,Radeon R6 A8-8600P,474 -gpu3134,Radeon R6 M255DX,605 -gpu4067,Radeon R6 Opteron X3418,955 -gpu3626,Radeon R6 PRO A10-8700B 4C+6G,538 -gpu4280,"Radeon R6 PRO A10-8700B R6, 10 Compute Cores 4C+6G",540 -gpu3635,Radeon R6 PRO A8-8600B 4C+6G,531 -gpu4303,"Radeon R6 PRO A8-8600B R6, 10 Compute Cores 4C+6G",590 -gpu3073,Radeon R7 + HD 7700 Dual,1962 -gpu3443,Radeon R7 + R5 330 Dual,1028 -gpu3756,Radeon R7 + R5 340 Dual,1234 -gpu3702,Radeon R7 + R5 435 Dual A10-9700 RADEON,885 -gpu3725,Radeon R7 + R5 Dual,897 -gpu3056,Radeon R7 + R7 200 Dual,1077 -gpu3200,Radeon R7 + R7 240 Dual,1045 -gpu3526,Radeon R7 + R7 250 Dual,1232 -gpu3618,Radeon R7 + R7 350 Dual,1982 -gpu3603,Radeon R7 +8G,1190 -gpu2713,Radeon R7 240,890 -gpu2949,Radeon R7 240 + HD 8570D Dual,917 -gpu2814,Radeon R7 240 + HD 8670D Dual,930 -gpu2768,Radeon R7 250,1083 -gpu3286,Radeon R7 250X,2268 -gpu2903,Radeon R7 260,2891 -gpu2701,Radeon R7 260X,3174 -gpu3543,Radeon R7 340,1027 -gpu3233,Radeon R7 360,3068 -gpu3471,Radeon R7 370,4513 -gpu3751,Radeon R7 430,1119 -gpu3588,Radeon R7 450,1939 -gpu4054,Radeon R7 7850A10-7850K,551 -gpu3617,Radeon R7 A10 Extreme Edition,816 -gpu3013,Radeon R7 A10 PRO-7800B,835 -gpu3032,Radeon R7 A10 PRO-7850B,882 -gpu3052,Radeon R7 A10-7700K,784 -gpu3029,Radeon R7 A10-7800,718 -gpu2972,Radeon R7 A10-7850K,980 -gpu3447,Radeon R7 A10-7860K,929 -gpu3220,Radeon R7 A10-7870K,1120 -gpu3468,Radeon R7 A10-7890K,850 -gpu3316,Radeon R7 A10-8750,843 -gpu3504,Radeon R7 A10-8850,773 -gpu3711,Radeon R7 A10-9700 RADEON,920 -gpu3877,Radeon R7 A10-9700E RADEON,1108 -gpu3614,Radeon R7 A12-9700P RADEON,740 -gpu3781,Radeon R7 A12-9720P RADEON,734 -gpu3777,Radeon R7 A12-9730P RADEON,1047 -gpu3680,Radeon R7 A12-9800 RADEON,1118 -gpu3816,Radeon R7 A12-9800E RADEON,913 -gpu3069,Radeon R7 A265,993 -gpu3248,Radeon R7 A360,619 -gpu3438,Radeon R7 A365,781 -gpu3482,Radeon R7 A370,1281 -gpu3048,Radeon R7 A8 PRO-7600B,666 -gpu3681,Radeon R7 A8-7500,907 -gpu3745,Radeon R7 A8-7500 4C+6G,853 -gpu3007,Radeon R7 A8-7600,784 -gpu3159,Radeon R7 A8-7650K,732 -gpu3302,Radeon R7 A8-7670K,848 -gpu4060,Radeon R7 A8-7680,821 -gpu3410,Radeon R7 A8-8650,912 -gpu3733,Radeon R7 A8-9600 RADEON,833 -gpu3631,Radeon R7 FX-8800P,840 -gpu3623,Radeon R7 FX-9800P RADEON,740 -gpu3632,Radeon R7 FX-9830P RADEON,1475 -gpu3254,Radeon R7 G,869 -gpu3030,Radeon R7 M260,493 -gpu3042,Radeon R7 M260DX,816 -gpu3149,Radeon R7 M260X,1008 -gpu2994,Radeon R7 M265,543 -gpu3057,Radeon R7 M265DX,498 -gpu3074,Radeon R7 M270,766 -gpu3376,Radeon R7 M340,662 -gpu3567,Radeon R7 M350,1085 -gpu3228,Radeon R7 M360,571 -gpu3493,Radeon R7 M365X,768 -gpu3416,Radeon R7 M370,1417 -gpu3620,Radeon R7 M380,1668 -gpu3562,Radeon R7 M440,898 -gpu3598,Radeon R7 M445,943 -gpu3551,Radeon R7 M460,1119 -gpu3671,Radeon R7 M465,1157 -gpu3760,Radeon R7 M465X,1623 -gpu3823,Radeon R7 Opteron X3421,1168 -gpu3362,Radeon R7 PRO A10-8750B,767 -gpu3664,Radeon R7 PRO A10-8770,899 -gpu3665,Radeon R7 PRO A10-8770E,826 -gpu3529,Radeon R7 PRO A10-8850B,945 -gpu3678,Radeon R7 PRO A10-9700,805 -gpu3882,Radeon R7 PRO A10-9700B,669 -gpu3679,Radeon R7 PRO A10-9700E,967 -gpu3622,Radeon R7 PRO A12-8800B,597 -gpu3819,Radeon R7 PRO A12-8830B,593 -gpu3657,Radeon R7 PRO A12-8870,904 -gpu3627,Radeon R7 PRO A12-8870E,946 -gpu3662,Radeon R7 PRO A12-9800,877 -gpu3645,Radeon R7 PRO A12-9800B,702 -gpu3663,Radeon R7 PRO A12-9800E,942 -gpu4072,Radeon R7 PRO A6-9500 2C+6G,781 -gpu3382,Radeon R7 PRO A8-8650B,728 -gpu3806,Radeon R7 PRO A8-8670E,1309 -gpu3613,Radeon R7 PRO A8-9600,873 -gpu3988,Radeon R7E,564 -gpu3238,Radeon R8 M365DX,590 -gpu3516,Radeon R8 M445DX,795 -gpu3814,Radeon R8 M535DX,670 -gpu2888,Radeon R9 255,1456 -gpu3496,Radeon R9 260,3181 -gpu3550,Radeon R9 270,4306 -gpu2766,Radeon R9 270 / R7 370,4259 -gpu2702,Radeon R9 270X,4907 -gpu3465,Radeon R9 280,5579 -gpu3466,Radeon R9 280X,6227 -gpu3116,Radeon R9 285 / 380,5549 -gpu4259,Radeon R9 290,8352 -gpu2719,Radeon R9 290 / 390,8150 -gpu4263,Radeon R9 290X,8659 -gpu2697,Radeon R9 290X / 390X,8389 -gpu2878,Radeon R9 295X2,8637 -gpu3589,Radeon R9 350,2018 -gpu3327,Radeon R9 360,3031 -gpu3469,Radeon R9 370,4722 -gpu3460,Radeon R9 380,6192 -gpu3266,Radeon R9 380X,6228 -gpu3464,Radeon R9 390,8982 -gpu3467,Radeon R9 390X,9440 -gpu3256,Radeon R9 Fury,9605 -gpu3245,Radeon R9 Fury + Fury X,9741 -gpu3634,Radeon R9 Fury X,10017 -gpu2999,Radeon R9 M265X,1126 -gpu3085,Radeon R9 M270X,1204 -gpu3010,Radeon R9 M275,1114 -gpu4329,Radeon R9 M275X,1537 -gpu3035,Radeon R9 M275X / M375,1574 -gpu3096,Radeon R9 M280X,813 -gpu2918,Radeon R9 M290X,3226 -gpu2985,Radeon R9 M295X,5150 -gpu3479,Radeon R9 M360,1837 -gpu3463,Radeon R9 M365X,1481 -gpu3299,Radeon R9 M370X,1529 -gpu3263,Radeon R9 M375,957 -gpu3337,Radeon R9 M375X,1720 -gpu3339,Radeon R9 M380,2770 -gpu3383,Radeon R9 M385,2060 -gpu3378,Radeon R9 M385X,1993 -gpu3405,Radeon R9 M390X,3346 -gpu3346,Radeon R9 M395,5023 -gpu3340,Radeon R9 M395X,5194 -gpu3606,Radeon R9 M470,2330 -gpu3574,Radeon R9 M470X,3244 -gpu3726,Radeon R9 M485X,3660 -gpu3557,Radeon RX 460,4112 -gpu3558,Radeon RX 470/570,8040 -gpu3533,Radeon RX 480,8649 -gpu4420,Radeon RX 5300,7661 -gpu4325,Radeon RX 5300M,4307 -gpu3854,Radeon RX 540,1878 -gpu3761,Radeon RX 550,2704 -gpu4164,Radeon RX 5500,8850 -gpu4174,Radeon RX 5500 XT,9178 -gpu4193,Radeon RX 5500M,5425 -gpu4069,Radeon RX 550X,2280 -gpu3708,Radeon RX 560,3645 -gpu4205,Radeon RX 5600,11507 -gpu4640,Radeon RX 5600 OEM,12229 -gpu4186,Radeon RX 5600 XT,13758 -gpu4217,Radeon RX 5600M,8372 -gpu3955,Radeon RX 560X,3194 -gpu4107,Radeon RX 5700,14586 -gpu4111,Radeon RX 5700 XT,16762 -gpu4114,Radeon RX 5700 XT 50th Anniversary,16617 -gpu4179,Radeon RX 570X,1923 -gpu3736,Radeon RX 580,8894 -gpu4049,Radeon RX 580 2048SP,7742 -gpu4055,Radeon RX 580X,7798 -gpu4025,Radeon RX 590,9487 -gpu4939,Radeon RX 6300,6544 -gpu4168,Radeon RX 640,1951 -gpu4536,Radeon RX 6400,7468 -gpu4843,Radeon RX 6500,7713 -gpu4488,Radeon RX 6500 XT,9487 -gpu4599,Radeon RX 6500M,7862 -gpu4941,Radeon RX 6550M,9668 -gpu4465,Radeon RX 6600,15125 -gpu4444,Radeon RX 6600 XT,16465 -gpu4449,Radeon RX 6600M,13608 -gpu4755,Radeon RX 6600S,14896 -gpu4541,Radeon RX 6650 XT,17419 -gpu4557,Radeon RX 6650M,13676 -gpu4564,Radeon RX 6700,18756 -gpu4369,Radeon RX 6700 XT,19871 -gpu4458,Radeon RX 6700M,13283 -gpu4510,Radeon RX 6700S,14901 -gpu4543,Radeon RX 6750 XT,20898 -gpu4314,Radeon RX 6800,22322 -gpu4312,Radeon RX 6800 XT,25102 -gpu4415,Radeon RX 6800M,13135 -gpu4542,Radeon RX 6800S,15535 -gpu4511,Radeon RX 6850M,12274 -gpu4574,Radeon RX 6850M XT,18329 -gpu4322,Radeon RX 6900 XT,26961 -gpu4540,Radeon RX 6950 XT,28484 -gpu4832,Radeon RX 7600,16114 -gpu4964,Radeon RX 7600M,3940 -gpu4844,Radeon RX 7600M XT,10438 -gpu4835,Radeon RX 7600S,13814 -gpu4919,Radeon RX 7700 XT,21614 -gpu4887,Radeon RX 7700S,15028 -gpu4917,Radeon RX 7800 XT,23839 -gpu4906,Radeon RX 7900 GRE,24853 -gpu4646,Radeon RX 7900 XT,28858 -gpu4644,Radeon RX 7900 XTX,31003 -gpu4946,Radeon RX 7900M,22760 -gpu4066,Radeon RX Vega 10,1646 -gpu4669,Radeon RX Vega 10 Ryzen 7 3700U,1517 -gpu4672,Radeon RX Vega 10 Ryzen 7 3750H,1826 -gpu4747,Radeon RX Vega 10 Ryzen 7 PRO 3700U w/,1585 -gpu3893,Radeon RX Vega 11,2119 -gpu4131,Radeon RX Vega 11 PRD,2401 -gpu4338,Radeon RX Vega 11 Processor,1828 -gpu4745,Radeon RX Vega 11 Ryzen 5 3350G,1572 -gpu4671,Radeon RX Vega 11 Ryzen 5 3400G,2162 -gpu4754,Radeon RX Vega 11 Ryzen 5 3400GE,2056 -gpu3821,Radeon RX Vega 56,13388 -gpu3808,Radeon RX Vega 64,14475 -gpu4012,Radeon RX Vega 8,1487 -gpu3915,Radeon RX Vega M GH,6580 -gpu3903,Radeon RX Vega M GL,3606 -gpu4157,Radeon RX Vega11,1605 -gpu4965,Radeon RX Vega11 Ryzen 7 3750H,1714 -gpu4730,Radeon RX Vega11 Ryzen 7 Microsoft Surface Edition,1356 -gpu4290,Radeon RX590 GME,8538 -gpu4688,Radeon Ryzen 3 3250U,807 -gpu4654,Radeon Ryzen 3 5300U,1577 -gpu4698,Radeon Ryzen 3 5425U,1597 -gpu4816,Radeon Ryzen 3 7330U,1723 -gpu4811,Radeon Ryzen 3 PRO 4355GE,1431 -gpu4517,Radeon Ryzen 3 PRO 5450U,1781 -gpu4779,Radeon Ryzen 3 PRO 7330U,2126 -gpu4686,Radeon Ryzen 5 3450U,1056 -gpu4494,Radeon Ryzen 5 4600GE with Radeon Graphics,1792 -gpu4660,Radeon Ryzen 5 5500U,2124 -gpu4555,Radeon Ryzen 5 5560U,2007 -gpu4744,Radeon Ryzen 5 5600GE,2519 -gpu4459,Radeon Ryzen 5 5600H,2418 -gpu4453,Radeon Ryzen 5 5600U,2091 -gpu4666,Radeon Ryzen 5 5625U,2167 -gpu4674,Radeon Ryzen 5 6600H,4014 -gpu4681,Radeon Ryzen 5 6600HS Creator Edition,3851 -gpu4675,Radeon Ryzen 5 6600U,3565 -gpu4728,Radeon Ryzen 5 7530U,2239 -gpu4808,Radeon Ryzen 5 7535HS,4155 -gpu4837,Radeon Ryzen 5 7535U,3833 -gpu4714,Radeon Ryzen 5 7600 6-Core,1988 -gpu4647,Radeon Ryzen 5 7600X 6-Core,1732 -gpu4382,Radeon Ryzen 5 Microsoft Surface Edition,2091 -gpu4815,Radeon Ryzen 5 PRO 4655G,2375 -gpu4904,Radeon Ryzen 5 PRO 4655GE,2361 -gpu4485,Radeon Ryzen 5 PRO 5650G,2296 -gpu4463,Radeon Ryzen 5 PRO 5650GE,2287 -gpu4743,Radeon Ryzen 5 PRO 5675U,1810 -gpu4677,Radeon Ryzen 5 PRO 6650U,3674 -gpu4670,Radeon Ryzen 7 3700U,1433 -gpu4357,Radeon Ryzen 7 4700G,2595 -gpu4387,Radeon Ryzen 7 4700GE,2610 -gpu4349,Radeon Ryzen 7 4700U,2052 -gpu4348,Radeon Ryzen 7 4800H,3758 -gpu4362,Radeon Ryzen 7 4800HS,4393 -gpu4356,Radeon Ryzen 7 4800U,2300 -gpu4650,Radeon Ryzen 7 5700U,2289 -gpu4452,Radeon Ryzen 7 5800H,2772 -gpu4462,Radeon Ryzen 7 5800HS,2687 -gpu4464,Radeon Ryzen 7 5800U,2404 -gpu4668,Radeon Ryzen 7 5825U,2395 -gpu4657,Radeon Ryzen 7 6800H,5432 -gpu4661,Radeon Ryzen 7 6800HS,6566 -gpu4697,Radeon Ryzen 7 6800HS Creator Edition,5385 -gpu4648,Radeon Ryzen 7 6800U,4546 -gpu4717,Radeon Ryzen 7 7700 8-Core,1722 -gpu4651,Radeon Ryzen 7 7700X 8-Core,2324 -gpu4771,Radeon Ryzen 7 7730U,2499 -gpu4764,Radeon Ryzen 7 7735H,5609 -gpu4692,Radeon Ryzen 7 7735HS,5378 -gpu4803,Radeon Ryzen 7 7735U,5183 -gpu4722,Radeon Ryzen 7 7736U,5790 -gpu4790,Radeon Ryzen 7 7800X3D 8-Core,1738 -gpu4386,Radeon Ryzen 7 Microsoft Surface Edition,2277 -gpu4347,Radeon Ryzen 7 PRO 4750G,2601 -gpu4371,Radeon Ryzen 7 PRO 4750GE,2294 -gpu4354,Radeon Ryzen 7 PRO 4750U,2047 -gpu4725,Radeon Ryzen 7 PRO 5875U,1967 -gpu4685,Radeon Ryzen 7 PRO 6850H,5756 -gpu4691,Radeon Ryzen 7 PRO 6850HS,5212 -gpu4662,Radeon Ryzen 7 PRO 6850U,5173 -gpu4708,Radeon Ryzen 7 PRO 6860Z,4636 -gpu4778,Radeon Ryzen 7 PRO 7730U,2516 -gpu4825,Radeon Ryzen 7 PRO 7745 8-Core,1486 -gpu4361,Radeon Ryzen 9 4900H,2561 -gpu4359,Radeon Ryzen 9 4900HS,7418 -gpu4680,Radeon Ryzen 9 6900HS,7515 -gpu4653,Radeon Ryzen 9 6900HX,5293 -gpu4716,Radeon Ryzen 9 7900 12-Core,2711 -gpu4659,Radeon Ryzen 9 7900X 12-Core,3094 -gpu4652,Radeon Ryzen 9 7950X 16-Core,5304 -gpu4761,Radeon Ryzen 9 7950X3D 16-Core,1646 -gpu4729,Radeon Ryzen 9 PRO 6950HS,4558 -gpu4826,Radeon Ryzen 9 PRO 7945 12-Core,1731 -gpu4901,Radeon Ryzen Embedded R2514,1482 -gpu4907,Radeon Ryzen Embedded R2544,1864 -gpu4544,Radeon Ryzen Embedded V2516,1527 -gpu4375,Radeon Ryzen Embedded V2718,1998 -gpu4389,Radeon Ryzen Embedded V2748,1842 -gpu4071,Radeon Sky 500,4763 -gpu3473,Radeon TM R9 A360,2105 -gpu1751,Radeon VE,2 -gpu4074,Radeon Vega 10,1568 -gpu3857,Radeon Vega 10 Mobile,1481 -gpu4727,Radeon Vega 10 Ryzen 7 PRO 3700U w/,1621 -gpu4136,Radeon Vega 11,1821 -gpu4770,Radeon Vega 11 Ryzen 5 PRO 3350G,2023 -gpu4724,Radeon Vega 11 Ryzen 5 PRO 3400G,1960 -gpu4703,Radeon Vega 11 Ryzen 5 PRO 3400GE w/,1854 -gpu4260,Radeon Vega 2,506 -gpu3926,Radeon Vega 3,891 -gpu4690,Radeon Vega 3 3020e,604 -gpu4700,Radeon Vega 3 Athlon 3000G,1019 -gpu4664,Radeon Vega 3 Athlon 300GE,1044 -gpu4734,Radeon Vega 3 Athlon 300U,891 -gpu4812,Radeon Vega 3 Athlon 320GE,714 -gpu4694,Radeon Vega 3 Athlon Gold 3150U,594 -gpu4701,Radeon Vega 3 Athlon Silver 3050e,552 -gpu4707,Radeon Vega 3 Athlon Silver 3050U,855 -gpu3871,Radeon Vega 3 Mobile,1025 -gpu4693,Radeon Vega 3 Ryzen 3 3200U,843 -gpu4696,Radeon Vega 3 Ryzen 3 3250U,823 -gpu4777,Radeon Vega 3 Ryzen Embedded R1305G,358 -gpu4687,Radeon Vega 3 Ryzen Embedded R1505G,771 -gpu3937,Radeon Vega 6,1309 -gpu4746,Radeon Vega 6 Ryzen 3 3300U,1301 -gpu4678,Radeon Vega 6 Ryzen 3 3350U,1526 -gpu4715,Radeon Vega 6 Ryzen 3 PRO 3300U w/,1403 -gpu3895,Radeon Vega 8,1585 -gpu3845,Radeon Vega 8 Mobile,1414 -gpu4673,Radeon Vega 8 Ryzen 3 3200G,1938 -gpu4753,Radeon Vega 8 Ryzen 3 PRO 3200G,1741 -gpu4842,Radeon Vega 8 Ryzen 3 PRO 3200GE w/,1622 -gpu4709,Radeon Vega 8 Ryzen 5 3450U,1236 -gpu4667,Radeon Vega 8 Ryzen 5 3500U,1397 -gpu4663,Radeon Vega 8 Ryzen 5 3550H,1661 -gpu4695,Radeon Vega 8 Ryzen 5 PRO 3500U w/,1405 -gpu4156,Radeon Vega 9,1581 -gpu4805,Radeon Vega 9 Ryzen 5 3550H,1287 -gpu4742,Radeon Vega 9 Ryzen 5 Microsoft Surface Edition,1491 -gpu3775,Radeon Vega Frontier Edition,13388 -gpu4050,Radeon VII,16736 -gpu609,Radeon X1050,49 -gpu610,Radeon X1200,32 -gpu611,Radeon X1250,37 -gpu612,Radeon X1270,31 -gpu154,Radeon X1300,58 -gpu159,Radeon X1300 PRO,84 -gpu613,Radeon X1550,66 -gpu1752,Radeon X1550 64-bit,47 -gpu1753,Radeon X1600,49 -gpu2494,Radeon X1600 Pro,98 -gpu1755,Radeon X1600 Pro / X1300XT,69 -gpu2493,Radeon X1600 XT,115 -gpu1756,Radeon X1650 GTO,74 -gpu614,Radeon X1650 Pro,84 -gpu1757,Radeon X1650 SE,71 -gpu2206,Radeon X1700 Targa Edition,116 -gpu1760,Radeon X1800 GTO,140 -gpu1761,Radeon X1900 CrossFire Edition,137 -gpu1762,Radeon X1900 GT,145 -gpu1763,Radeon X1950 CrossFire Edition,151 -gpu615,Radeon X1950 GT,106 -gpu1764,Radeon X1950 Pro,112 -gpu1765,RADEON X300SE,38 -gpu1766,RADEON X550,50 -gpu1767,RADEON X550XT,56 -gpu1768,Radeon X550XTX,70 -gpu1769,RADEON X600 256MB HyperMemory,56 -gpu161,RADEON X600 PRO,67 -gpu155,RADEON X600 SE,49 -gpu1772,RADEON X600XT,91 -gpu1773,RADEON X700,72 -gpu1774,RADEON X700 PRO,75 -gpu1775,RADEON X700 SE,71 -gpu618,RADEON X800 GT,84 -gpu1777,RADEON X800 GTO,114 -gpu1778,RADEON X800 PRO,64 -gpu1779,RADEON X800 PRO/GTO,73 -gpu1780,RADEON X800 SE,129 -gpu619,RADEON X800 XL,69 -gpu81,RADEON X800 XT,97 -gpu1781,RADEON X800 XT Platinum Edition,81 -gpu1782,RADEON X800GT,79 -gpu620,RADEON X850 PRO,72 -gpu1784,RADEON X850 XT,81 -gpu621,RADEON X850 XT Platinum Edition,81 -gpu622,Radeon Xpress 1100,34 -gpu624,Radeon Xpress 1150,29 -gpu625,Radeon Xpress 1200,35 -gpu104,Radeon Xpress 1250,42 -gpu626,Radeon Xpress 1270,26 -gpu2830,Radeon Xpress 1300,52 -gpu1785,Radeon Xpress 1300M,40 -gpu627,RADEON XPRESS 200,29 -gpu2875,RADEON XPRESS 200 CROSSFIRE,18 -gpu628,RADEON XPRESS 200M,22 -gpu4775,RadeonT 610M,1225 -gpu4897,RadeonT 780M,6958 -gpu4849,RadeonT RX 6850M XT,13847 -gpu1788,Rage 128 Pro,1 -gpu1790,RAGE 128 PRO AGP 4X TMDS,1 -gpu1797,Rage Fury Pro/Xpert 2000 Pro,3 -gpu3314,Red Hat QXL controller,31 -gpu3577,RGH Drivers v3,11 -gpu1665,RIVA TNT2 Model 64/Model 64 Pro,3 -gpu1667,RIVA TNT2/TNT2 Pro,3 -gpu4785,RTX 2000 Ada Generation Laptop GPU,15608 -gpu4930,RTX 3000 Ada Generation Laptop GPU,18569 -gpu4800,RTX 3500 Ada Generation Laptop GPU,20864 -gpu4942,RTX 4000 Ada Generation,25226 -gpu4819,RTX 4000 Ada Generation Laptop GPU,23870 -gpu4801,RTX 4000 SFF Ada Generation,20529 -gpu4958,RTX 4500 Ada Generation,22292 -gpu4935,RTX 5000 Ada Generation,17923 -gpu4807,RTX 5000 Ada Generation Laptop GPU,23535 -gpu4768,RTX 6000 Ada Generation,23103 -gpu4804,RTX A1000 6GB Laptop GPU,10005 -gpu4558,RTX A1000 Laptop GPU,9547 -gpu4477,RTX A2000,13777 -gpu4533,RTX A2000 12GB,13645 -gpu4553,RTX A2000 8GB Laptop GPU,10940 -gpu4438,RTX A2000 Laptop GPU,10015 -gpu4503,RTX A3000 12GB Laptop GPU,14532 -gpu4414,RTX A3000 Laptop GPU,12506 -gpu4394,RTX A4000,19330 -gpu4421,RTX A4000 Laptop GPU,15531 -gpu4514,RTX A4500,21775 -gpu4565,RTX A4500 Laptop GPU,17603 -gpu4649,RTX A500 Laptop GPU,6992 -gpu4390,RTX A5000,22984 -gpu4416,RTX A5000 Laptop GPU,15894 -gpu4539,RTX A5500,21030 -gpu4562,RTX A5500 Laptop GPU,17581 -gpu4337,RTX A6000,22912 -gpu1820,RV530 PRO,118 -gpu4246,Ryzen 3 4300G with Radeon Graphics,2040 -gpu4302,Ryzen 3 4300GE with Radeon Graphics,2257 -gpu4232,Ryzen 3 4300U with Radeon Graphics,1348 -gpu4436,Ryzen 3 5300G with Radeon Graphics,1940 -gpu4434,Ryzen 3 5300GE with Radeon Graphics,2004 -gpu4508,Ryzen 3 5300U with Radeon Graphics,1545 -gpu4402,Ryzen 3 5400U with Radeon Graphics,1625 -gpu4867,Ryzen 3 5425U with Radeon Graphics,1677 -gpu4875,Ryzen 3 7330U with Radeon Graphics,1758 -gpu4309,Ryzen 3 PRO 4200GE with Radeon Graphics,1748 -gpu4240,Ryzen 3 PRO 4300U with Radeon Graphics,1542 -gpu4230,Ryzen 3 Pro 4350G with Radeon Graphics,2163 -gpu4244,Ryzen 3 PRO 4350GE with Radeon Graphics,1888 -gpu4247,Ryzen 3 PRO 4450U with Radeon Graphics,1541 -gpu4429,Ryzen 3 PRO 5350G with Radeon Graphics,2331 -gpu4430,Ryzen 3 PRO 5350GE with Radeon Graphics,2238 -gpu4437,Ryzen 3 PRO 5450U with Radeon Graphics,1601 -gpu4872,Ryzen 3 PRO 5475U with Radeon Graphics,1431 -gpu4877,Ryzen 3 PRO 7330U with Radeon Graphics,1984 -gpu3930,Ryzen 5 2500U with Radeon Vega,1503 -gpu4235,Ryzen 5 4500U with Radeon Graphics,1817 -gpu4245,Ryzen 5 4600G with Radeon Graphics,2365 -gpu4255,Ryzen 5 4600H with Radeon Graphics,2255 -gpu4277,Ryzen 5 4600HS with Radeon Graphics,8370 -gpu4237,Ryzen 5 4600U with Radeon Graphics,1887 -gpu4506,Ryzen 5 5500U with Radeon Graphics,2008 -gpu4578,Ryzen 5 5560U with Radeon Graphics,2114 -gpu4406,Ryzen 5 5600G with Radeon Graphics,2579 -gpu4435,Ryzen 5 5600GE with Radeon Graphics,2601 -gpu4426,Ryzen 5 5600H with Radeon Graphics,2410 -gpu4404,Ryzen 5 5600U with Radeon Graphics,2181 -gpu4868,Ryzen 5 5625U with Radeon Graphics,1990 -gpu4628,Ryzen 5 6600HS Creator Edition,3685 -gpu4589,Ryzen 5 6600U with Radeon Graphics,3233 -gpu4874,Ryzen 5 7530U with Radeon Graphics,2355 -gpu4865,Ryzen 5 7535U with Radeon Graphics,3529 -gpu4254,Ryzen 5 PRO 4400G with Radeon Graphics,2305 -gpu4308,Ryzen 5 PRO 4400GE with Radeon Graphics,1441 -gpu4239,Ryzen 5 PRO 4500U with Radeon Graphics,2007 -gpu4229,Ryzen 5 Pro 4650G with Radeon Graphics,2414 -gpu4289,Ryzen 5 PRO 4650GE with Radeon Graphics,2101 -gpu4242,Ryzen 5 PRO 4650U with Radeon Graphics,1721 -gpu4428,Ryzen 5 PRO 5650G with Radeon Graphics,2500 -gpu4431,Ryzen 5 PRO 5650GE with Radeon Graphics,2458 -gpu4407,Ryzen 5 PRO 5650U with Radeon Graphics,2054 -gpu4871,Ryzen 5 PRO 5675U with Radeon Graphics,1732 -gpu4638,Ryzen 5 PRO 6650U,3519 -gpu4581,Ryzen 5 PRO 6650U with Radeon Graphics,3575 -gpu4878,Ryzen 5 PRO 7530U with Radeon Graphics,2227 -gpu3925,Ryzen 7 2700U with Radeon Vega,1617 -gpu4307,Ryzen 7 4700G with Radeon Graphics,2186 -gpu4292,Ryzen 7 4700GE with Radeon Graphics,2496 -gpu4234,Ryzen 7 4700U with Radeon Graphics,2034 -gpu4233,Ryzen 7 4800H with Radeon Graphics,2113 -gpu4236,Ryzen 7 4800U with Radeon Graphics,2343 -gpu4405,Ryzen 7 5700G with Radeon Graphics,2806 -gpu4433,Ryzen 7 5700GE with Radeon Graphics,2656 -gpu4507,Ryzen 7 5700U with Radeon Graphics,2247 -gpu4398,Ryzen 7 5800H with Radeon Graphics,2747 -gpu4401,Ryzen 7 5800HS with Radeon Graphics,3213 -gpu4399,Ryzen 7 5800U with Radeon Graphics,2358 -gpu4869,Ryzen 7 5825U with Radeon Graphics,2318 -gpu4611,Ryzen 7 6800H,5247 -gpu4584,Ryzen 7 6800H with Radeon Graphics,4921 -gpu4629,Ryzen 7 6800HS,5237 -gpu4590,Ryzen 7 6800HS Creator Edition,5345 -gpu4582,Ryzen 7 6800HS with Radeon Graphics,6867 -gpu4625,Ryzen 7 6800U,5006 -gpu4588,Ryzen 7 6800U with Radeon Graphics,4844 -gpu4876,Ryzen 7 7730U with Radeon Graphics,2399 -gpu4864,Ryzen 7 7735HS with Radeon Graphics,5306 -gpu4243,Ryzen 7 Extreme Edition,2226 -gpu4231,Ryzen 7 Pro 4750G with Radeon Graphics,2681 -gpu4288,Ryzen 7 PRO 4750GE with Radeon Graphics,2549 -gpu4238,Ryzen 7 PRO 4750U with Radeon Graphics,2029 -gpu4427,Ryzen 7 PRO 5750G with Radeon Graphics,2420 -gpu4432,Ryzen 7 PRO 5750GE with Radeon Graphics,2546 -gpu4403,Ryzen 7 PRO 5850U with Radeon Graphics,2266 -gpu4870,Ryzen 7 PRO 5875U with Radeon Graphics,2067 -gpu4585,Ryzen 7 PRO 6850HS with Radeon Graphics,3736 -gpu4626,Ryzen 7 PRO 6850U,5580 -gpu4579,Ryzen 7 PRO 6850U with Radeon Graphics,5042 -gpu4630,Ryzen 7 PRO 6860Z,5076 -gpu4587,Ryzen 7 PRO 6860Z with Radeon Graphics,4788 -gpu4873,Ryzen 7 PRO 7730U with Radeon Graphics,2634 -gpu4397,Ryzen 9 5900HS with Radeon Graphics,5570 -gpu4396,Ryzen 9 5900HX with Radeon Graphics,2901 -gpu4623,Ryzen 9 6900HS,8005 -gpu4583,Ryzen 9 6900HS with Radeon Graphics,6331 -gpu4624,Ryzen 9 6900HX,5415 -gpu4607,Ryzen 9 6900HX with Radeon Graphics,4679 -gpu4636,Ryzen 9 PRO 6950H,5758 -gpu4586,Ryzen 9 PRO 6950HS with Radeon Graphics,5067 -gpu4423,S3 5400EW,146 -gpu1828,S3 Chrome 430 ULP,39 -gpu1831,S3 Chrome S25 DDR2,18 -gpu4535,S3 Chrome S27 DDR3,33 -gpu1832,S3 Inc. Savage4,3 -gpu1835,S3 ProSavageDDR,1 -gpu1840,S3 SuperSavage/IXC 1014,1 -gpu1853,SAPPHIRE RADEON 9000 ATLANTIS PRO,5 -gpu1859,SAPPHIRE RADEON 9600 ATLANTIS,47 -gpu1864,SAPPHIRE Radeon X1550,61 -gpu1874,Sapphire RADEON X800 GT,112 -gpu2720,Seria Mobility Radeon HD 3400,124 -gpu3262,Seria Radeon HD 7700,1603 -gpu1919,SUMO 9640,650 -gpu1920,SUMO 9644,465 -gpu1922,SUMO 964A,497 -gpu4576,Surface Duo Adreno 640 GPU,592 -gpu4442,T1000,7662 -gpu4513,T1000 8GB,7619 -gpu4422,T1200 Laptop GPU,7818 -gpu4446,T400,3625 -gpu4512,T400 4GB,3692 -gpu4335,T500,3708 -gpu4520,T550 Laptop GPU,4822 -gpu4439,T600,6457 -gpu4424,T600 Laptop GPU,7100 -gpu4077,TENSOR 1.0 Driver Intel HD 630,1299 -gpu1669,Tesla C2050,3175 -gpu2515,Tesla C2050 / C2070,3428 -gpu1670,Tesla C2070,2839 -gpu1671,Tesla C2075,3016 -gpu4496,Tesla K20m,4330 -gpu4498,Tesla K20Xm,2917 -gpu4545,Tesla K40c,4494 -gpu4476,Tesla K40m,3281 -gpu4448,Tesla K80,6210 -gpu4095,Tesla M10,3490 -gpu2800,Tesla M2070-Q,1305 -gpu4395,Tesla M40,10182 -gpu4450,Tesla M40 24GB,10474 -gpu3875,Tesla M6,7509 -gpu3774,Tesla M60,7770 -gpu4039,Tesla P100-PCIE-16GB,7225 -gpu4631,Tesla P4,8718 -gpu4548,Tesla P40,11395 -gpu4222,Tesla T10,12650 -gpu4211,Tesla T4,10762 -gpu4226,Tesla V100-PCIE-16GB,12983 -gpu4029,TITAN RTX,19948 -gpu3859,TITAN V,19783 -gpu4005,TITAN V CEO Edition,16987 -gpu3863,TITAN Xp COLLECTORS EDITION,19355 -gpu3578,TRINITY DEVASTATOR MOBILE,699 -gpu3505,TRINITY SCRAPPER MOBILE,498 -gpu3421,V9560XT,6 -gpu1674,Vanta/Vanta LT,3 -gpu1949,VIA Chrome9 HC IGP,4 -gpu1950,VIA Chrome9 HC IGP Family,3 -gpu1951,VIA Chrome9 HC IGP Family WDDM,3 -gpu1952,VIA Chrome9 HC IGP Prerelease WDDM 1.1,2 -gpu1953,VIA Chrome9 HC IGP WDDM,2 -gpu1954,VIA Chrome9 HC IGP WDDM 1.1,3 -gpu1955,VIA Chrome9 HC3 IGP,2 -gpu1957,VIA Chrome9 HCM IGP,1 -gpu1960,VIA Chrome9 HD IGP,9 -gpu4155,VIA/S3G C-645/640 GPU,132 -gpu1962,VIA/S3G Chrome 645/640 GPU,109 -gpu1965,VIA/S3G DeltaChrome IGP,3 -gpu1968,VIA/S3G KM400/KN400,4 -gpu1970,VIA/S3G UniChrome IGP,4 -gpu1971,VIA/S3G UniChrome Pro IGP,4 -gpu1973,VIA/S3G UniChromeII,5 -gpu1977,VisionTek Radeon 7000,1 -gpu2821,WinFast A250 LE,4 -gpu2098,Xabre,5 -gpu2101,XGI Volari Family v1.13.23.D_V,4 -gpu3697,ZX Chrome 645/640 GPU,147 diff --git a/PCData/data/passmark/gpu_info.json b/PCData/data/passmark/gpu_info.json deleted file mode 100644 index 47a937a..0000000 --- a/PCData/data/passmark/gpu_info.json +++ /dev/null @@ -1,39832 +0,0 @@ -{ - "gpu162": [ - "256MB DDR Radeon 9800 XT", - { - "Videocard First Benchmarked": "2009-04-12", - "G3DMark/Price": "NA", - "Overall Rank": "2224", - "Last Price Change": "NA", - "Score": 38, - "Average G2D Mark": 192, - "Samples": 1 - } - ], - "gpu2314": [ - "7900 MOD - Radeon HD 6520G", - { - "Videocard First Benchmarked": "2012-12-17", - "G3DMark/Price": "NA", - "Overall Rank": "1387", - "Last Price Change": "NA", - "Score": 610, - "Average G2D Mark": 323, - "Samples": 4 - } - ], - "gpu2390": [ - "7900 MOD - Radeon HD 6550D", - { - "Videocard First Benchmarked": "2013-01-27", - "G3DMark/Price": "NA", - "Overall Rank": "1121", - "Last Price Change": "NA", - "Score": 893, - "Average G2D Mark": 536, - "Samples": 1 - } - ], - "gpu4780": [ - "A10-8Q", - { - "Other names": "NVIDIA A10-8Q", - "Videocard First Benchmarked": "2023-02-21", - "G3DMark/Price": "NA", - "Overall Rank": "268", - "Last Price Change": "NA", - "Score": 7042, - "Average G2D Mark": 253, - "Samples": 4 - } - ], - "gpu4956": [ - "A16-2Q", - { - "Other names": "NVIDIA A16-2Q", - "Videocard First Benchmarked": "2023-11-27", - "G3DMark/Price": "NA", - "Overall Rank": "393", - "Last Price Change": "NA", - "Score": 4583, - "Average G2D Mark": 89, - "Samples": 1 - } - ], - "gpu3424": [ - "A6 Micro-6500T Quad-Core APU with RadeonR4", - { - "Other names": "AMD A6 Micro-6500T Quad-Core APU with Radeon(TM)R4 Graphics", - "Videocard First Benchmarked": "2016-01-30", - "G3DMark/Price": "NA", - "Overall Rank": "1793", - "Last Price Change": "NA", - "Score": 220, - "Average G2D Mark": 127, - "Samples": 7 - } - ], - "gpu3355": [ - "ABIT Siluro T400", - { - "Other names": "ABIT Siluro T400", - "Videocard First Benchmarked": "2015-11-07", - "G3DMark/Price": "NA", - "Overall Rank": "2419", - "Last Price Change": "NA", - "Score": 4, - "Average G2D Mark": 151, - "Samples": 2 - } - ], - "gpu214": [ - "ALL-IN-WONDER 9000", - { - "Other names": "ALL-IN-WONDER 9000", - "Videocard First Benchmarked": "2009-12-06", - "G3DMark/Price": "NA", - "Overall Rank": "2386", - "Last Price Change": "NA", - "Score": 5, - "Average G2D Mark": 103, - "Samples": 4 - } - ], - "gpu217": [ - "ALL-IN-WONDER 9800", - { - "Other names": "ALL-IN-WONDER 9800", - "Videocard First Benchmarked": "2011-08-01", - "G3DMark/Price": "NA", - "Overall Rank": "2292", - "Last Price Change": "NA", - "Score": 23, - "Average G2D Mark": 139, - "Samples": 1 - } - ], - "gpu222": [ - "ALL-IN-WONDER RADEON 8500DV", - { - "Other names": "ALL-IN-WONDER RADEON 8500DV", - "Videocard First Benchmarked": "2010-12-10", - "G3DMark/Price": "NA", - "Overall Rank": "2371", - "Last Price Change": "NA", - "Score": 6, - "Average G2D Mark": 128, - "Samples": 4 - } - ], - "gpu228": [ - "All-in-Wonder X1800XL", - { - "Other names": "All-in-Wonder X1800XL, All-in-Wonder X1800XL (Omega 3.8.442), All-in-Wonder X1800XL Secondary", - "Videocard First Benchmarked": "2011-10-11", - "G3DMark/Price": "NA", - "Overall Rank": "2263", - "Last Price Change": "NA", - "Score": 30, - "Average G2D Mark": 283, - "Samples": 1 - } - ], - "gpu229": [ - "All-in-Wonder X1900", - { - "Other names": "All-in-Wonder X1900, All-in-Wonder X1900 Secondary", - "Videocard First Benchmarked": "2009-10-14", - "G3DMark/Price": "NA", - "Overall Rank": "1930", - "Last Price Change": "NA", - "Score": 127, - "Average G2D Mark": 445, - "Samples": 4 - } - ], - "gpu230": [ - "ALL-IN-WONDER X800 GT", - { - "Other names": "ALL-IN-WONDER X800 GT, ALL-IN-WONDER X800 GT Secondary", - "Videocard First Benchmarked": "2009-10-05", - "G3DMark/Price": "NA", - "Overall Rank": "2063", - "Last Price Change": "NA", - "Score": 84, - "Average G2D Mark": 186, - "Samples": 3 - } - ], - "gpu4918": [ - "AMD Ryzen Z1 Extreme", - { - "Other names": "AMD Radeon Graphics", - "Videocard First Benchmarked": "2023-06-02", - "G3DMark/Price": "NA", - "Overall Rank": "286", - "Last Price Change": "NA", - "Score": 6564, - "Average G2D Mark": 794, - "Samples": 144 - } - ], - "gpu4177": [ - "AMIGAMERLIN 3.1-R1 For Voodoo 4 4500 PCI", - { - "Other names": "AMIGAMERLIN 3.1-R1 For Voodoo 4 4500 PCI", - "Videocard First Benchmarked": "2019-12-28", - "G3DMark/Price": "NA", - "Overall Rank": "2444", - "Last Price Change": "NA", - "Score": 3, - "Average G2D Mark": 110, - "Samples": 1 - } - ], - "gpu336": [ - "ASUS A7000", - { - "Other names": "ASUS A7000", - "Videocard First Benchmarked": "2010-01-30", - "G3DMark/Price": "NA", - "Overall Rank": "2332", - "Last Price Change": "NA", - "Score": 9, - "Average G2D Mark": 164, - "Samples": 1 - } - ], - "gpu2539": [ - "ASUS AGP-V3800PRO v31.40H", - { - "Other names": "ASUS AGP-V3800PRO v31.40H", - "Videocard First Benchmarked": "2013-06-10", - "G3DMark/Price": "NA", - "Overall Rank": "2405", - "Last Price Change": "NA", - "Score": 5, - "Average G2D Mark": 149, - "Samples": 1 - } - ], - "gpu346": [ - "ASUS EAH4870x2", - { - "Other names": "ASUS EAH4870x2", - "Videocard First Benchmarked": "2009-04-10", - "G3DMark/Price": "NA", - "Overall Rank": "1535", - "Last Price Change": "NA", - "Score": 496, - "Average G2D Mark": 539, - "Samples": 2 - } - ], - "gpu3638": [ - "Asus GTX 650 FML II EC-EGPU", - { - "Other names": "Asus GTX 650 FML II EC-EGPU", - "Videocard First Benchmarked": "2016-12-30", - "G3DMark/Price": "NA", - "Overall Rank": "1274", - "Last Price Change": "NA", - "Score": 721, - "Average G2D Mark": 534, - "Samples": 1 - } - ], - "gpu375": [ - "ASUS V9520-X V62.11", - { - "Other names": "ASUS V9520-X V62.11", - "Videocard First Benchmarked": "2011-01-13", - "G3DMark/Price": "NA", - "Overall Rank": "2343", - "Last Price Change": "NA", - "Score": 8, - "Average G2D Mark": 208, - "Samples": 1 - } - ], - "gpu3941": [ - "B8DKMDAP", - { - "Other names": "B8DKMDAP", - "Videocard First Benchmarked": "2018-05-27", - "G3DMark/Price": "NA", - "Overall Rank": "395", - "Last Price Change": "NA", - "Score": 4557, - "Average G2D Mark": 534, - "Samples": 1 - } - ], - "gpu2698": [ - "Barco MXRT 1450", - { - "Other names": "Barco MXRT 1450 (WDDM v1.1)", - "Videocard First Benchmarked": "2013-10-28", - "G3DMark/Price": "NA", - "Overall Rank": "1815", - "Last Price Change": "NA", - "Score": 206, - "Average G2D Mark": 520, - "Samples": 1 - } - ], - "gpu3886": [ - "Barco MXRT 2600", - { - "Other names": "Barco MXRT 2600 (WDDM)", - "Videocard First Benchmarked": "2018-01-19", - "G3DMark/Price": "4.52", - "Overall Rank": "1115", - "Last Price Change": "$199 USD (2021-05-25)", - "Score": 900, - "Average G2D Mark": 649, - "Samples": 1 - } - ], - "gpu3354": [ - "Barco MXRT 5400", - { - "Other names": "Barco MXRT 5400 (WDDM), Barco MXRT 5400 (WDDM v1.1)", - "Videocard First Benchmarked": "2016-12-20", - "G3DMark/Price": "5.72", - "Overall Rank": "978", - "Last Price Change": "$203 USD (2021-12-17)", - "Score": 1161, - "Average G2D Mark": 457, - "Samples": 3 - } - ], - "gpu2526": [ - "Barco MXRT 5450", - { - "Other names": "Barco MXRT 5450 (WDDM v1.1), Barco MXRT 5450 (WDDM)", - "Videocard First Benchmarked": "2013-05-29", - "G3DMark/Price": "5.40", - "Overall Rank": "1014", - "Last Price Change": "$199.99 USD (2021-12-22)", - "Score": 1079, - "Average G2D Mark": 478, - "Samples": 5 - } - ], - "gpu2699": [ - "Barco MXRT 5500", - { - "Other names": "Barco MXRT 5500 (WDDM v1.1), Barco MXRT 5500 (WDDM)", - "Videocard First Benchmarked": "2018-06-01", - "G3DMark/Price": "9.04", - "Overall Rank": "562", - "Last Price Change": "$299 USD (2021-05-25)", - "Score": 2702, - "Average G2D Mark": 510, - "Samples": 1 - } - ], - "gpu4158": [ - "Barco MXRT 5600", - { - "Other names": "Barco MXRT 5600 (WDDM)", - "Videocard First Benchmarked": "2019-11-01", - "G3DMark/Price": "3.50", - "Overall Rank": "602", - "Last Price Change": "$704 USD (2021-12-17)", - "Score": 2466, - "Average G2D Mark": 644, - "Samples": 2 - } - ], - "gpu2621": [ - "Barco MXRT 7100", - { - "Other names": "Barco MXRT 7100, Barco MXRT 7100 Secondary", - "Videocard First Benchmarked": "2013-08-14", - "G3DMark/Price": "NA", - "Overall Rank": "1841", - "Last Price Change": "NA", - "Score": 180, - "Average G2D Mark": 659, - "Samples": 1 - } - ], - "gpu2474": [ - "Barco MXRT 7400", - { - "Other names": "Barco MXRT 7400 (WDDM v1.1)", - "Videocard First Benchmarked": "2013-04-04", - "G3DMark/Price": "9.10", - "Overall Rank": "1114", - "Last Price Change": "$99 USD (2021-05-25)", - "Score": 901, - "Average G2D Mark": 682, - "Samples": 1 - } - ], - "gpu3353": [ - "Barco MXRT 7500", - { - "Other names": "Barco MXRT 7500 (WDDM)", - "Videocard First Benchmarked": "2015-11-06", - "G3DMark/Price": "12.55", - "Overall Rank": "452", - "Last Price Change": "$299 USD (2021-05-25)", - "Score": 3753, - "Average G2D Mark": 731, - "Samples": 5 - } - ], - "gpu4014": [ - "Barco MXRT 7600", - { - "Other names": "Barco MXRT 7600 (WDDM)", - "Videocard First Benchmarked": "2018-11-15", - "G3DMark/Price": "8.20", - "Overall Rank": "369", - "Last Price Change": "$602.59 USD (2022-03-30)", - "Score": 4944, - "Average G2D Mark": 442, - "Samples": 1 - } - ], - "gpu3144": [ - "BASICDISPLAY", - { - "Other names": "BASICDISPLAY", - "Videocard First Benchmarked": "2015-02-25", - "G3DMark/Price": "NA", - "Overall Rank": "2110", - "Last Price Change": "NA", - "Score": 70, - "Average G2D Mark": 691, - "Samples": 1 - } - ], - "gpu3967": [ - "Citrix Indirect Display Adapter", - { - "Other names": "Citrix Indirect Display Adapter", - "Videocard First Benchmarked": "2018-08-13", - "G3DMark/Price": "NA", - "Overall Rank": "406", - "Last Price Change": "NA", - "Score": 4447, - "Average G2D Mark": 700, - "Samples": 1 - } - ], - "gpu648": [ - "CONNECT 3D RADEON X300", - { - "Other names": "CONNECT 3D RADEON X300, CONNECT 3D RADEON X300 Secondary", - "Videocard First Benchmarked": "2009-04-06", - "G3DMark/Price": "NA", - "Overall Rank": "2229", - "Last Price Change": "NA", - "Score": 36, - "Average G2D Mark": 191, - "Samples": 1 - } - ], - "gpu4528": [ - "Custom GPU 0405", - { - "Other names": "AMD Custom GPU 0405", - "Videocard First Benchmarked": "2022-04-04", - "G3DMark/Price": "NA", - "Overall Rank": "550", - "Last Price Change": "NA", - "Score": 2762, - "Average G2D Mark": 365, - "Samples": 53 - } - ], - "gpu657": [ - "Dell 8100", - { - "Other names": "Dell 8100", - "Videocard First Benchmarked": "2012-02-10", - "G3DMark/Price": "0.00", - "Overall Rank": "2470", - "Last Price Change": "$999.11 USD (2020-03-16)", - "Score": 2, - "Average G2D Mark": 58, - "Samples": 1 - } - ], - "gpu658": [ - "Dell 8200", - { - "Other names": "Dell 8200", - "Videocard First Benchmarked": "2009-12-15", - "G3DMark/Price": "NA", - "Overall Rank": "2407", - "Last Price Change": "NA", - "Score": 4, - "Average G2D Mark": 205, - "Samples": 1 - } - ], - "gpu2426": [ - "Diamond X1300-PCIE 256MB", - { - "Other names": "Diamond X1300-PCIE 256MB, Diamond X1300-PCIE 256MB Secondary", - "Videocard First Benchmarked": "2013-02-24", - "G3DMark/Price": "NA", - "Overall Rank": "2107", - "Last Price Change": "NA", - "Score": 70, - "Average G2D Mark": 286, - "Samples": 1 - } - ], - "gpu3742": [ - "EAH5450", - { - "Other names": "ASUS EAH5450", - "Videocard First Benchmarked": "2017-04-26", - "G3DMark/Price": "1.22", - "Overall Rank": "1917", - "Last Price Change": "$109.99 USD (2020-03-10)", - "Score": 134, - "Average G2D Mark": 216, - "Samples": 1 - } - ], - "gpu4000": [ - "EIZO Quadro MED-XN51LP", - { - "Other names": "EIZO Quadro MED-XN51LP, NVIDIA EIZO Quadro MED-XN51LP", - "Videocard First Benchmarked": "2018-10-18", - "G3DMark/Price": "NA", - "Overall Rank": "363", - "Last Price Change": "NA", - "Score": 5048, - "Average G2D Mark": 952, - "Samples": 3 - } - ], - "gpu3883": [ - "Embedded Radeon E9173", - { - "Other names": "AMD Embedded Radeon E9173", - "Videocard First Benchmarked": "2018-01-18", - "G3DMark/Price": "NA", - "Overall Rank": "773", - "Last Price Change": "NA", - "Score": 1807, - "Average G2D Mark": 352, - "Samples": 7 - } - ], - "gpu4577": [ - "Eng Sample: 100-000000261-50_Y", - { - "Other names": "AMD Eng Sample: 100-000000261-50_Y", - "Videocard First Benchmarked": "2022-03-31", - "G3DMark/Price": "NA", - "Overall Rank": "535", - "Last Price Change": "NA", - "Score": 2860, - "Average G2D Mark": 865, - "Samples": 2 - } - ], - "gpu3958": [ - "Extreme AX850 PRO", - { - "Other names": "ASUS Extreme AX850 PRO, ASUS Extreme AX850 PRO Secondary", - "Videocard First Benchmarked": "2018-07-16", - "G3DMark/Price": "NA", - "Overall Rank": "1952", - "Last Price Change": "NA", - "Score": 120, - "Average G2D Mark": 218, - "Samples": 1 - } - ], - "gpu387": [ - "FireGL T2-128", - { - "Bus Interface": "AGP", - "Max Memory Size": "128 MB", - "Core Clock(s)": "400 MHz", - "Memory Clock(s)": "320 MHz", - "DirectX": "9", - "OpenGL": "2", - "Videocard Category": "Workstation", - "Other names": "ATI FireGL T2", - "Videocard First Benchmarked": "2009-09-28", - "G3DMark/Price": "NA", - "Overall Rank": "2260", - "Last Price Change": "NA", - "Score": 31, - "Average G2D Mark": 178, - "Samples": 3 - } - ], - "gpu388": [ - "FireGL V3100", - { - "Bus Interface": "PCIe x16", - "Max Memory Size": "128 MB", - "Core Clock(s)": "400 MHz", - "Memory Clock(s)": "200 MHz", - "DirectX": "9", - "OpenGL": "2", - "Videocard Category": "Workstation", - "Other names": "ATI FireGL V3100, ATI FireGL V3100(Microsoft Corporation - WDDM), ATI FireGL V3100 Secondary, ATI FireGL V3100 Secondary (Microsoft Corporation - WDDM)", - "Videocard First Benchmarked": "2009-05-14", - "G3DMark/Price": "NA", - "Overall Rank": "2158", - "Last Price Change": "NA", - "Score": 53, - "Average G2D Mark": 275, - "Samples": 49 - } - ], - "gpu389": [ - "FireGL V3200", - { - "Bus Interface": "PCIe x16", - "Max Memory Size": "128 MB", - "Core Clock(s)": "500 MHz", - "Memory Clock(s)": "400 MHz", - "DirectX": "9.0b", - "OpenGL": "2", - "Videocard Category": "Workstation", - "Other names": "ATI FireGL V3200, ATI FireGL V3200 Secondary", - "Videocard First Benchmarked": "2009-08-05", - "G3DMark/Price": "NA", - "Overall Rank": "2060", - "Last Price Change": "NA", - "Score": 85, - "Average G2D Mark": 236, - "Samples": 2 - } - ], - "gpu391": [ - "FireGL V3300", - { - "Bus Interface": "PCIe x16", - "Max Memory Size": "128 MB", - "Core Clock(s)": "600 MHz", - "Memory Clock(s)": "400 MHz", - "DirectX": "9.0c", - "OpenGL": "2", - "Videocard Category": "Workstation", - "Other names": "ATI FireGL V3300, ATI FireGL V3300 Secondary", - "Videocard First Benchmarked": "2009-04-02", - "G3DMark/Price": "NA", - "Overall Rank": "2105", - "Last Price Change": "NA", - "Score": 71, - "Average G2D Mark": 326, - "Samples": 11 - } - ], - "gpu392": [ - "FireGL V3350", - { - "Bus Interface": "PCIe x16", - "Max Memory Size": "256 MB", - "Core Clock(s)": "600 MHz", - "Memory Clock(s)": "400 MHz", - "DirectX": "9.0c", - "OpenGL": "2", - "Videocard Category": "Workstation", - "Other names": "ATI FireGL V3350, ATI FireGL V3350 Secondary", - "Videocard First Benchmarked": "2009-07-31", - "G3DMark/Price": "NA", - "Overall Rank": "2116", - "Last Price Change": "NA", - "Score": 69, - "Average G2D Mark": 336, - "Samples": 15 - } - ], - "gpu393": [ - "FireGL V3400", - { - "Bus Interface": "PCIe x16", - "Max Memory Size": "128 MB", - "Core Clock(s)": "500 MHz", - "Memory Clock(s)": "500 MHz", - "DirectX": "9.0c", - "OpenGL": "2", - "Videocard Category": "Workstation", - "Other names": "ATI FireGL V3400, ATI FireGL V3400 Secondary", - "Videocard First Benchmarked": "2009-09-07", - "G3DMark/Price": "NA", - "Overall Rank": "2012", - "Last Price Change": "NA", - "Score": 103, - "Average G2D Mark": 353, - "Samples": 23 - } - ], - "gpu394": [ - "FireGL V3600", - { - "Bus Interface": "PCIe x16", - "Max Memory Size": "256 MB", - "Core Clock(s)": "600 MHz", - "Memory Clock(s)": "500 MHz", - "DirectX": "10", - "OpenGL": "2.1", - "Videocard Category": "Workstation", - "Other names": "ATI FireGL V3600", - "Videocard First Benchmarked": "2009-10-19", - "G3DMark/Price": "1.12", - "Overall Rank": "1842", - "Last Price Change": "$160.99 USD (2011-03-31)", - "Score": 180, - "Average G2D Mark": 399, - "Samples": 25 - } - ], - "gpu396": [ - "FireGL V5100", - { - "Bus Interface": "PCIe x16", - "Max Memory Size": "128 MB", - "Core Clock(s)": "450 MHz", - "Memory Clock(s)": "350 MHz", - "DirectX": "9.0b", - "OpenGL": "2", - "Videocard Category": "Workstation", - "Other names": "ATI FireGL V5100, ATI FireGL V5100 Secondary", - "Videocard First Benchmarked": "2009-09-01", - "G3DMark/Price": "0.81", - "Overall Rank": "2043", - "Last Price Change": "$114.96 USD (2021-06-10)", - "Score": 93, - "Average G2D Mark": 250, - "Samples": 6 - } - ], - "gpu397": [ - "FireGL V5200", - { - "Bus Interface": "PCIe x16", - "Max Memory Size": "256 MB", - "Core Clock(s)": "600 MHz", - "Memory Clock(s)": "700 MHz", - "DirectX": "9.0c", - "OpenGL": "2", - "Videocard Category": "Workstation", - "Other names": "ATI FireGL V5200, ATI FireGL V5200 Secondary", - "Videocard First Benchmarked": "2009-09-25", - "G3DMark/Price": "0.86", - "Overall Rank": "1973", - "Last Price Change": "$133.4 USD (2022-04-15)", - "Score": 115, - "Average G2D Mark": 348, - "Samples": 23 - } - ], - "gpu398": [ - "FireGL V5600", - { - "Bus Interface": "PCIe", - "Max Memory Size": "512 MB", - "Core Clock(s)": "800 MHz", - "Memory Clock(s)": "1100 MHz", - "DirectX": "10", - "OpenGL": "2.1", - "Videocard Category": "Workstation", - "Other names": "ATI FireGL V5600", - "Videocard First Benchmarked": "2009-10-30", - "G3DMark/Price": "1.52", - "Overall Rank": "1680", - "Last Price Change": "$225 USD (2022-03-30)", - "Score": 341, - "Average G2D Mark": 445, - "Samples": 34 - } - ], - "gpu399": [ - "FireGL V7100", - { - "Bus Interface": "PCIe", - "Max Memory Size": "256 MB", - "Core Clock(s)": "500 MHz", - "Memory Clock(s)": "450 MHz", - "DirectX": "9.0c", - "OpenGL": "2", - "Videocard Category": "Workstation", - "Other names": "ATI FireGL V7100, ATI FireGL V7100 Secondary", - "Videocard First Benchmarked": "2009-05-21", - "G3DMark/Price": "0.22", - "Overall Rank": "2099", - "Last Price Change": "$328.67 USD (2022-04-15)", - "Score": 72, - "Average G2D Mark": 223, - "Samples": 1 - } - ], - "gpu400": [ - "FireGL V7200", - { - "Bus Interface": "PCIe x16", - "Max Memory Size": "256 MB", - "Core Clock(s)": "600 MHz", - "Memory Clock(s)": "650 MHz", - "DirectX": "9.0c", - "OpenGL": "2", - "Videocard Category": "Workstation", - "Other names": "ATI FireGL V7200, ATI FireGL V7200 Secondary, ATI FireGL V7200 Secondary (Microsoft Corporation - WDDM)", - "Videocard First Benchmarked": "2010-02-10", - "G3DMark/Price": "NA", - "Overall Rank": "1965", - "Last Price Change": "NA", - "Score": 116, - "Average G2D Mark": 348, - "Samples": 28 - } - ], - "gpu401": [ - "FireGL V7300", - { - "Bus Interface": "PCIe", - "Max Memory Size": "512 MB", - "Core Clock(s)": "600 MHz", - "Memory Clock(s)": "650 MHz", - "DirectX": "9.0c", - "OpenGL": "2", - "Videocard Category": "Workstation", - "Other names": "ATI FireGL V7300", - "Videocard First Benchmarked": "2009-09-05", - "G3DMark/Price": "0.11", - "Overall Rank": "1928", - "Last Price Change": "$1189.99 USD (2013-02-06)", - "Score": 128, - "Average G2D Mark": 322, - "Samples": 2 - } - ], - "gpu402": [ - "FireGL V7350", - { - "Bus Interface": "PCIe", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "600 MHz", - "Memory Clock(s)": "650 MHz", - "DirectX": "9.0c", - "OpenGL": "2", - "Videocard Category": "Workstation", - "Other names": "ATI FireGL V7350, ATI FireGL V7350 Secondary, ATI FireGL V7350 Secondary (Microsoft Corporation - WDDM)", - "Videocard First Benchmarked": "2011-09-12", - "G3DMark/Price": "0.93", - "Overall Rank": "1988", - "Last Price Change": "$119.42 USD (2022-04-15)", - "Score": 111, - "Average G2D Mark": 344, - "Samples": 8 - } - ], - "gpu403": [ - "FireGL V7600", - { - "Bus Interface": "PCIe", - "Max Memory Size": "512 MB", - "Core Clock(s)": "600 MHz", - "Memory Clock(s)": "800 MHz", - "DirectX": "10", - "OpenGL": "2.1", - "Videocard Category": "Workstation", - "Other names": "ATI FireGL V7600", - "Videocard First Benchmarked": "2009-09-24", - "G3DMark/Price": "NA", - "Overall Rank": "1382", - "Last Price Change": "NA", - "Score": 616, - "Average G2D Mark": 488, - "Samples": 11 - } - ], - "gpu404": [ - "FireGL V7700", - { - "Bus Interface": "PCIe 2.0", - "Max Memory Size": "512 MB", - "Core Clock(s)": "775 MHz", - "Memory Clock(s)": "1125 MHz", - "DirectX": "10.1 (SM 4.0 onl", - "OpenGL": "2.1", - "Videocard Category": "Workstation", - "Other names": "ATI FireGL V7700", - "Videocard First Benchmarked": "2011-03-22", - "G3DMark/Price": "9.43", - "Overall Rank": "1326", - "Last Price Change": "$69.99 USD (2021-05-25)", - "Score": 660, - "Average G2D Mark": 422, - "Samples": 18 - } - ], - "gpu405": [ - "FireGL V8600", - { - "Bus Interface": "PCIe", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "688 MHz", - "Memory Clock(s)": "868 MHz", - "DirectX": "10", - "OpenGL": "2.1", - "Videocard Category": "Workstation", - "Other names": "ATI FireGL V8600", - "Videocard First Benchmarked": "2010-04-24", - "G3DMark/Price": "NA", - "Overall Rank": "1156", - "Last Price Change": "NA", - "Score": 839, - "Average G2D Mark": 406, - "Samples": 1 - } - ], - "gpu406": [ - "FireGL V8650", - { - "Bus Interface": "PCIe", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "688 MHz", - "Memory Clock(s)": "868 MHz", - "DirectX": "10", - "OpenGL": "2.1", - "Videocard Category": "Workstation", - "Other names": "ATI FireGL V8650", - "Videocard First Benchmarked": "2010-03-18", - "G3DMark/Price": "1.84", - "Overall Rank": "1470", - "Last Price Change": "$298.99 USD (2022-04-15)", - "Score": 550, - "Average G2D Mark": 637, - "Samples": 4 - } - ], - "gpu407": [ - "FireGL X1", - { - "Other names": "ATI FireGL X1, ATI FireGL X1 (Omega 3.8.252), ATI FireGL X1 Secondary", - "Videocard First Benchmarked": "2009-04-08", - "G3DMark/Price": "NA", - "Overall Rank": "2144", - "Last Price Change": "NA", - "Score": 59, - "Average G2D Mark": 167, - "Samples": 4 - } - ], - "gpu415": [ - "FireMV 2200 PCI", - { - "Bus Interface": "PCI", - "Max Memory Size": "64 MB", - "DirectX": "8.1", - "OpenGL": "1.4", - "Videocard Category": "Workstation", - "Other names": "ATI FireMV 2200 PCI, ATI FireMV 2200 PCI Secondary", - "Videocard First Benchmarked": "2010-07-21", - "G3DMark/Price": "NA", - "Overall Rank": "2486", - "Last Price Change": "NA", - "Score": 1, - "Average G2D Mark": 153, - "Samples": 1 - } - ], - "gpu414": [ - "FireMV 2200 PCIe", - { - "Bus Interface": "PCIe x16", - "Max Memory Size": "128 MB", - "DirectX": "9", - "OpenGL": "2.1", - "Videocard Category": "Workstation", - "Other names": "ATI FireMV 2200, ATI FireMV 2200 Secondary", - "Videocard First Benchmarked": "2011-03-24", - "G3DMark/Price": "0.40", - "Overall Rank": "2231", - "Last Price Change": "$89.99 USD (2011-04-15)", - "Score": 36, - "Average G2D Mark": 259, - "Samples": 2 - } - ], - "gpu416": [ - "FireMV 2250", - { - "Other names": "ATI FireMV 2250, ATI FireMV 2250 Secondary", - "Videocard First Benchmarked": "2009-08-08", - "G3DMark/Price": "0.44", - "Overall Rank": "2187", - "Last Price Change": "$104 USD (2021-12-17)", - "Score": 46, - "Average G2D Mark": 290, - "Samples": 17 - } - ], - "gpu417": [ - "FireMV 2260", - { - "Bus Interface": "PCIe 2.0 x1,x16, PCI", - "Max Memory Size": "256 MB", - "DirectX": "10.1", - "OpenGL": "3.2", - "Max TDP": "15 W", - "Videocard Category": "Workstation", - "Other names": "ATI FireMV 2260", - "Videocard First Benchmarked": "2011-08-10", - "G3DMark/Price": "1.33", - "Overall Rank": "1961", - "Last Price Change": "$88.08 USD (2022-04-15)", - "Score": 117, - "Average G2D Mark": 488, - "Samples": 9 - } - ], - "gpu418": [ - "FireMV 2400 PCIe", - { - "Bus Interface": "PCIe x1", - "Max Memory Size": "256 MB", - "DirectX": "9", - "OpenGL": "2.1", - "Videocard Category": "Workstation", - "Other names": "ATI FireMV 2400", - "Videocard First Benchmarked": "2011-01-01", - "G3DMark/Price": "NA", - "Overall Rank": "2325", - "Last Price Change": "NA", - "Score": 11, - "Average G2D Mark": 283, - "Samples": 4 - } - ], - "gpu420": [ - "FireMV 2450", - { - "Other names": "ATI FireMV 2450", - "Videocard First Benchmarked": "2011-02-10", - "G3DMark/Price": "NA", - "Overall Rank": "2093", - "Last Price Change": "NA", - "Score": 74, - "Average G2D Mark": 610, - "Samples": 1 - } - ], - "gpu422": [ - "FirePro 2260", - { - "Other names": "ATI FirePro 2260, ATI FirePro 2260 (Engineering Sample - WDDM v1.1)", - "Videocard First Benchmarked": "2010-03-10", - "G3DMark/Price": "NA", - "Overall Rank": "1978", - "Last Price Change": "NA", - "Score": 113, - "Average G2D Mark": 431, - "Samples": 80 - } - ], - "gpu115": [ - "FirePro 2270", - { - "Bus Interface": "PCIe 2.1 x1,x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "600 MHz", - "Memory Clock(s)": "600 MHz", - "DirectX": "11", - "OpenGL": "4.1", - "Max TDP": "17 W", - "Videocard Category": "Workstation", - "Other names": "AMD FirePro 2270, AMD FirePro 2270 (ATI FireGL), ATI FirePro 2270", - "Videocard First Benchmarked": "2012-08-22", - "G3DMark/Price": "1.07", - "Overall Rank": "1891", - "Last Price Change": "$134 USD (2022-03-30)", - "Score": 143, - "Average G2D Mark": 177, - "Samples": 80 - } - ], - "gpu423": [ - "FirePro 2450", - { - "Bus Interface": "PCIe 2.0 x1,x16", - "Max Memory Size": "512 MB", - "DirectX": "10.1", - "OpenGL": "3.3", - "Max TDP": "36 W", - "Videocard Category": "Workstation", - "Other names": "ATI FirePro 2450", - "Videocard First Benchmarked": "2010-01-06", - "G3DMark/Price": "0.57", - "Overall Rank": "2167", - "Last Price Change": "$89.99 USD (2021-12-17)", - "Score": 51, - "Average G2D Mark": 482, - "Samples": 8 - } - ], - "gpu237": [ - "FirePro 2460", - { - "Bus Interface": "PCIe 2.1 x16", - "Max Memory Size": "512 MB", - "DirectX": "11", - "OpenGL": "4.1", - "Max TDP": "17 W", - "Videocard Category": "Workstation", - "Other names": "AMD FirePro 2460, ATI FirePro 2460 (FireMV)", - "Videocard First Benchmarked": "2012-08-15", - "G3DMark/Price": "2.03", - "Overall Rank": "1854", - "Last Price Change": "$83.99 USD (2020-03-13)", - "Score": 170, - "Average G2D Mark": 352, - "Samples": 17 - } - ], - "gpu429": [ - "FirePro 3D V3700", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "256 MB", - "Core Clock(s)": "800 MHz", - "Memory Clock(s)": "950 MHz", - "DirectX": "10.1", - "OpenGL": "3", - "Max TDP": "32 W", - "Videocard Category": "Workstation", - "Other names": "ATI FirePro V3700 (FireGL)", - "Videocard First Benchmarked": "2011-10-02", - "G3DMark/Price": "2.10", - "Overall Rank": "1845", - "Last Price Change": "$84.99 USD (2011-10-26)", - "Score": 179, - "Average G2D Mark": 466, - "Samples": 41 - } - ], - "gpu430": [ - "FirePro 3D V3750", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "256 MB", - "Core Clock(s)": "550 MHz", - "Memory Clock(s)": "750 MHz", - "DirectX": "10.1", - "OpenGL": "3.3", - "Max TDP": "48 W", - "Videocard Category": "Workstation", - "Other names": "ATI FirePro V3750 (FireGL)", - "Videocard First Benchmarked": "2009-09-08", - "G3DMark/Price": "6.71", - "Overall Rank": "1679", - "Last Price Change": "$50.88 USD (2014-03-07)", - "Score": 341, - "Average G2D Mark": 467, - "Samples": 45 - } - ], - "gpu431": [ - "FirePro 3D V3800", - { - "Bus Interface": "PCIe 2.1 x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "650 MHz", - "Memory Clock(s)": "900 MHz", - "DirectX": "11", - "OpenGL": "4", - "Max TDP": "43 W", - "Videocard Category": "Workstation", - "Other names": "ATI FirePro V3800, ATI FirePro V3800 (FireGL V) Graphics Adapter, ATI FirePro V3800 (FireGL), ATI FirePro 3800 (FireGL) Graphics Adapter, ATI FirePro V3800 (FireGL V)", - "Videocard First Benchmarked": "2010-07-28", - "G3DMark/Price": "3.15", - "Overall Rank": "1562", - "Last Price Change": "$149.99 USD (2014-03-07)", - "Score": 472, - "Average G2D Mark": 507, - "Samples": 47 - } - ], - "gpu433": [ - "FirePro 3D V4800", - { - "Bus Interface": "PCIe 2.1 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "775 MHz", - "Memory Clock(s)": "9002 MHz", - "DirectX": "11", - "OpenGL": "4", - "Max TDP": "69 W", - "Videocard Category": "Workstation", - "Other names": "ATI FirePro V4800, ATI FirePro V4800 (FireGL V) Graphics Adapter, ATI FirePro V4800 (FireGL), ATI FirePro V4800 (FireGL) Graphics Adapter, ATI FirePro V4800 (FireGL V)", - "Videocard First Benchmarked": "2010-08-24", - "G3DMark/Price": "5.33", - "Overall Rank": "1144", - "Last Price Change": "$159.99 USD (2012-12-16)", - "Score": 854, - "Average G2D Mark": 324, - "Samples": 438 - } - ], - "gpu435": [ - "FirePro 3D V5700", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "700 MHz", - "Memory Clock(s)": "900 MHz", - "DirectX": "10.1", - "OpenGL": "3.3", - "Max TDP": "58 W", - "Videocard Category": "Workstation", - "Other names": "ATI FirePro V5700 (FireGL)", - "Videocard First Benchmarked": "2009-09-13", - "G3DMark/Price": "1.71", - "Overall Rank": "1473", - "Last Price Change": "$319.99 USD (2013-06-02)", - "Score": 547, - "Average G2D Mark": 517, - "Samples": 30 - } - ], - "gpu436": [ - "FirePro 3D V5800", - { - "Bus Interface": "PCIe 2.1 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "700 MHz", - "Memory Clock(s)": "10002 MHz", - "DirectX": "11", - "OpenGL": "4", - "Max TDP": "74 W", - "Videocard Category": "Workstation", - "Other names": "ATI FirePro V5800, ATI FirePro V5800 (FireGL), ATI FirePro V5800 (FireGL V), ATI FirePro V5800 (FireGL) Graphics Adapter", - "Videocard First Benchmarked": "2010-10-17", - "G3DMark/Price": "6.04", - "Overall Rank": "947", - "Last Price Change": "$204 USD (2021-12-17)", - "Score": 1232, - "Average G2D Mark": 339, - "Samples": 165 - } - ], - "gpu437": [ - "FirePro 3D V7750", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "800 MHz", - "Memory Clock(s)": "900 MHz", - "DirectX": "10.1", - "OpenGL": "3.3", - "Max TDP": "76 W", - "Videocard Category": "Workstation", - "Other names": "ATI FirePro V7750 (FireGL)", - "Videocard First Benchmarked": "2009-09-11", - "G3DMark/Price": "1.56", - "Overall Rank": "1477", - "Last Price Change": "$350 USD (2014-03-07)", - "Score": 545, - "Average G2D Mark": 468, - "Samples": 23 - } - ], - "gpu438": [ - "FirePro 3D V7800", - { - "Bus Interface": "PCIe 2.1 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "700 MHz", - "Memory Clock(s)": "10002 MHz", - "DirectX": "11", - "OpenGL": "4", - "Max TDP": "138 W", - "Videocard Category": "Workstation", - "Other names": "ATI FirePro V7800 (FireGL), ATI FirePro V7800 (FireGL) Graphics Adapter, ATI FirePro V7800 (FireGL V), ATI FirePro V7800", - "Videocard First Benchmarked": "2010-08-21", - "G3DMark/Price": "3.11", - "Overall Rank": "749", - "Last Price Change": "$599.99 USD (2014-03-07)", - "Score": 1867, - "Average G2D Mark": 562, - "Samples": 18 - } - ], - "gpu440": [ - "FirePro 3D V8700", - { - "Bus Interface": "PCIe 2.1 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "750 MHz", - "Memory Clock(s)": "8502 MHz", - "DirectX": "10.1", - "OpenGL": "3.3", - "Max TDP": "151 W", - "Videocard Category": "Workstation", - "Other names": "ATI FirePro V8700 (FireGL)", - "Videocard First Benchmarked": "2010-11-09", - "G3DMark/Price": "7.09", - "Overall Rank": "958", - "Last Price Change": "$170.07 USD (2022-04-15)", - "Score": 1206, - "Average G2D Mark": 515, - "Samples": 35 - } - ], - "gpu441": [ - "FirePro 3D V8750", - { - "Bus Interface": "PCIe 2.1 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "750 MHz", - "Memory Clock(s)": "9002 MHz", - "DirectX": "10.1", - "OpenGL": "3.3", - "Max TDP": "154 W", - "Videocard Category": "Workstation", - "Other names": "ATI FirePro V8750 (FireGL)", - "Videocard First Benchmarked": "2009-08-11", - "G3DMark/Price": "1.03", - "Overall Rank": "932", - "Last Price Change": "$1230.99 USD (2013-04-01)", - "Score": 1272, - "Average G2D Mark": 542, - "Samples": 4 - } - ], - "gpu442": [ - "FirePro 3D V8800", - { - "Bus Interface": "PCIe 2.1 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "825 MHz", - "Memory Clock(s)": "11502 MHz", - "DirectX": "11", - "OpenGL": "4", - "Max TDP": "208 W", - "Videocard Category": "Workstation", - "Other names": "ATI FirePro V8800 (FireGL), ATI FirePro V8800 (FireGL) Graphics Adapter, ATI FirePro V8800 (FireGL V)", - "Videocard First Benchmarked": "2010-08-27", - "G3DMark/Price": "5.74", - "Overall Rank": "606", - "Last Price Change": "$424.99 USD (2014-03-19)", - "Score": 2438, - "Average G2D Mark": 632, - "Samples": 34 - } - ], - "gpu443": [ - "FirePro 3D V9800", - { - "Bus Interface": "PCIe 2.1 x16", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "850 MHz", - "Memory Clock(s)": "11502 MHz", - "DirectX": "11", - "OpenGL": "4", - "Max TDP": "225 W", - "Videocard Category": "Workstation", - "Other names": "ATI FirePro V9800 (FireGL), ATI FirePro V9800 (FireGL V)", - "Videocard First Benchmarked": "2011-05-16", - "G3DMark/Price": "1.13", - "Overall Rank": "542", - "Last Price Change": "$2499 USD (2014-03-07)", - "Score": 2812, - "Average G2D Mark": 556, - "Samples": 3 - } - ], - "gpu2268": [ - "FirePro M2000", - { - "Bus Interface": "PCIe 2.1 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "500 MHz", - "Memory Clock(s)": "800 MHz", - "DirectX": "11.1", - "OpenGL": "4.2", - "Videocard Category": "Workstation", - "Other names": "AMD FirePro M2000, AMD FirePro M2000 (FireGL V)", - "Videocard First Benchmarked": "2012-11-14", - "G3DMark/Price": "NA", - "Overall Rank": "1610", - "Last Price Change": "NA", - "Score": 424, - "Average G2D Mark": 207, - "Samples": 120 - } - ], - "gpu238": [ - "FirePro M4000", - { - "Bus Interface": "PCIe 2.1 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "600 MHz", - "Memory Clock(s)": "1000 MHz", - "DirectX": "11.1", - "OpenGL": "4.2", - "Videocard Category": "Workstation", - "Other names": "AMD FirePro M4000, AMD FirePro M4000 (FireGL V)", - "Videocard First Benchmarked": "2012-08-16", - "G3DMark/Price": "22.14", - "Overall Rank": "827", - "Last Price Change": "$72.83 USD (2021-06-19)", - "Score": 1612, - "Average G2D Mark": 412, - "Samples": 184 - } - ], - "gpu3360": [ - "FirePro M4000 Mobility Pro", - { - "Other names": "AMD (ATI) FirePro M4000 (FireGL V) Mobility Pro Graphics, AMD FirePro M4000 Mobility Pro Graphics", - "Videocard First Benchmarked": "2015-11-15", - "G3DMark/Price": "NA", - "Overall Rank": "817", - "Last Price Change": "NA", - "Score": 1628, - "Average G2D Mark": 448, - "Samples": 39 - } - ], - "gpu2194": [ - "FirePro M40003", - { - "Other names": "AMD (ATI) FirePro M4000 (FireGL V) Mobility Pro Graphics", - "Videocard First Benchmarked": "2012-10-17", - "G3DMark/Price": "NA", - "Overall Rank": "904", - "Last Price Change": "NA", - "Score": 1364, - "Average G2D Mark": 652, - "Samples": 44 - } - ], - "gpu3016": [ - "Firepro M4100", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "670 MHz", - "Memory Clock(s)": "1000 MHz", - "DirectX": "11.2", - "OpenGL": "4.4", - "Videocard Category": "Workstation", - "Other names": "AMD Firepro M4100 FireGL V", - "Videocard First Benchmarked": "2015-02-17", - "G3DMark/Price": "NA", - "Overall Rank": "1022", - "Last Price Change": "NA", - "Score": 1059, - "Average G2D Mark": 623, - "Samples": 25 - } - ], - "gpu3224": [ - "FirePro M4150", - { - "Other names": "AMD FirePro M4150", - "Videocard First Benchmarked": "2015-06-18", - "G3DMark/Price": "NA", - "Overall Rank": "1096", - "Last Price Change": "NA", - "Score": 929, - "Average G2D Mark": 178, - "Samples": 42 - } - ], - "gpu3145": [ - "FirePro M4170", - { - "Other names": "AMD FirePro M4170", - "Videocard First Benchmarked": "2015-02-25", - "G3DMark/Price": "NA", - "Overall Rank": "994", - "Last Price Change": "NA", - "Score": 1119, - "Average G2D Mark": 268, - "Samples": 17 - } - ], - "gpu2818": [ - "FirePro M5100", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "775 MHz", - "Memory Clock(s)": "1125 MHz", - "DirectX": "11.2", - "OpenGL": "4.4", - "Videocard Category": "Workstation", - "Other names": "AMD FirePro M5100 FireGL V, AMD Firepro M5100", - "Videocard First Benchmarked": "2014-02-21", - "G3DMark/Price": "NA", - "Overall Rank": "684", - "Last Price Change": "NA", - "Score": 2103, - "Average G2D Mark": 800, - "Samples": 11 - } - ], - "gpu3125": [ - "FirePro M5100 FireGL V", - { - "Other names": "AMD FirePro M5100 FireGL V", - "Videocard First Benchmarked": "2015-02-03", - "G3DMark/Price": "NA", - "Overall Rank": "758", - "Last Price Change": "NA", - "Score": 1839, - "Average G2D Mark": 867, - "Samples": 1 - } - ], - "gpu233": [ - "FirePro M5950", - { - "Bus Interface": "PCIe 2.1 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "725 MHz", - "Memory Clock(s)": "900 MHz", - "DirectX": "11", - "OpenGL": "4.1", - "Videocard Category": "Workstation", - "Other names": "AMD (ATI) FirePro M5950 (FireGL) Mobility Pro Grap, AMD FirePro (TM) M5950 Mobility Professional Graph, AMD FirePro M5950 Mobility Professional Graphics, AMD FirePro M5950 (FireGL V), AMD FirePro M5950", - "Videocard First Benchmarked": "2011-06-14", - "G3DMark/Price": "NA", - "Overall Rank": "918", - "Last Price Change": "NA", - "Score": 1314, - "Average G2D Mark": 574, - "Samples": 2 - } - ], - "gpu2231": [ - "FirePro M6000", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "800 MHz", - "Memory Clock(s)": "1000 MHz", - "DirectX": "11.1", - "OpenGL": "4.2", - "Videocard Category": "Workstation", - "Other names": "AMD FirePro M6000", - "Videocard First Benchmarked": "2012-10-29", - "G3DMark/Price": "5.58", - "Overall Rank": "768", - "Last Price Change": "$325.99 USD (2022-03-30)", - "Score": 1820, - "Average G2D Mark": 776, - "Samples": 1 - } - ], - "gpu2437": [ - "FirePro M6000 Mobility Pro", - { - "Other names": "AMD (ATI) FirePro M6000 (FireGL V) Mobility Pro Graphics, AMD FirePro M6000 Mobility Pro Graphics", - "Videocard First Benchmarked": "2013-03-07", - "G3DMark/Price": "NA", - "Overall Rank": "782", - "Last Price Change": "NA", - "Score": 1750, - "Average G2D Mark": 327, - "Samples": 78 - } - ], - "gpu2657": [ - "FirePro M6100", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "1075 MHz", - "Memory Clock(s)": "1375 MHz", - "DirectX": "11.2", - "OpenGL": "4.4", - "Videocard Category": "Workstation", - "Other names": "AMD FirePro M6100 FireGL V, AMD Firepro M6100", - "Videocard First Benchmarked": "2013-09-17", - "G3DMark/Price": "NA", - "Overall Rank": "681", - "Last Price Change": "NA", - "Score": 2108, - "Average G2D Mark": 309, - "Samples": 133 - } - ], - "gpu3695": [ - "FirePro M6100 FireGL V", - { - "Other names": "AMD FirePro M6100 FireGL V", - "Videocard First Benchmarked": "2017-03-06", - "G3DMark/Price": "NA", - "Overall Rank": "545", - "Last Price Change": "NA", - "Score": 2787, - "Average G2D Mark": 353, - "Samples": 21 - } - ], - "gpu425": [ - "FirePro M7740", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "650 MHz", - "Memory Clock(s)": "1000 MHz", - "DirectX": "10.1 SM 4.1", - "OpenGL": "3.2", - "Videocard Category": "Workstation", - "Other names": "ATI FirePro M7740", - "Videocard First Benchmarked": "2009-12-10", - "G3DMark/Price": "NA", - "Overall Rank": "1322", - "Last Price Change": "NA", - "Score": 665, - "Average G2D Mark": 415, - "Samples": 50 - } - ], - "gpu3444": [ - "FirePro R5000", - { - "Other names": "AMD FirePro R5000 (FireGL V)", - "Videocard First Benchmarked": "2016-03-07", - "G3DMark/Price": "24.06", - "Overall Rank": "571", - "Last Price Change": "$109.99 USD (2018-07-28)", - "Score": 2647, - "Average G2D Mark": 625, - "Samples": 1 - } - ], - "gpu427": [ - "FirePro RG220", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "500 MHz", - "Memory Clock(s)": "800 MHz", - "DirectX": "10.1", - "OpenGL": "3.3", - "Max TDP": "35 W", - "Videocard Category": "Workstation", - "Other names": "ATI FirePro RG220", - "Videocard First Benchmarked": "2011-03-24", - "G3DMark/Price": "0.52", - "Overall Rank": "1685", - "Last Price Change": "$650.18 USD (2014-03-07)", - "Score": 335, - "Average G2D Mark": 552, - "Samples": 1 - } - ], - "gpu3330": [ - "FirePro S10000", - { - "Other names": "AMD FirePro S10000 (FireGL V), AMD FirePro S10000", - "Videocard First Benchmarked": "2015-10-13", - "G3DMark/Price": "NA", - "Overall Rank": "381", - "Last Price Change": "NA", - "Score": 4768, - "Average G2D Mark": 502, - "Samples": 6 - } - ], - "gpu2804": [ - "FirePro S7000", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "950 MHz", - "Memory Clock(s)": "1200 MHz", - "DirectX": "11.1", - "OpenGL": "4.2", - "Max TDP": "150 W", - "Videocard Category": "Workstation", - "Other names": "AMD FirePro S7000 (FireGL V), AMD FirePro S7000", - "Videocard First Benchmarked": "2014-02-03", - "G3DMark/Price": "18.35", - "Overall Rank": "399", - "Last Price Change": "$246.54 USD (2021-06-10)", - "Score": 4524, - "Average G2D Mark": 705, - "Samples": 7 - } - ], - "gpu3604": [ - "FirePro S7150", - { - "Other names": "AMD FirePro S7150", - "Videocard First Benchmarked": "2016-11-18", - "G3DMark/Price": "1.61", - "Overall Rank": "554", - "Last Price Change": "$1697.99 USD (2022-04-10)", - "Score": 2727, - "Average G2D Mark": 465, - "Samples": 4 - } - ], - "gpu3209": [ - "FirePro S9000", - { - "Other names": "AMD FirePro S9000 (FireGL V), AMD FirePro S9000", - "Videocard First Benchmarked": "2015-05-20", - "G3DMark/Price": "NA", - "Overall Rank": "361", - "Last Price Change": "NA", - "Score": 5059, - "Average G2D Mark": 561, - "Samples": 6 - } - ], - "gpu4287": [ - "FirePro S9050", - { - "Other names": "AMD FirePro S9050", - "Videocard First Benchmarked": "2020-09-21", - "G3DMark/Price": "NA", - "Overall Rank": "373", - "Last Price Change": "NA", - "Score": 4901, - "Average G2D Mark": 369, - "Samples": 2 - } - ], - "gpu3518": [ - "FirePro V3800", - { - "Other names": "ATI FirePro V3800 (FireGL V), ATI FirePro V3800", - "Videocard First Benchmarked": "2016-07-26", - "G3DMark/Price": "2.57", - "Overall Rank": "1700", - "Last Price Change": "$124.99 USD (2021-12-24)", - "Score": 321, - "Average G2D Mark": 179, - "Samples": 23 - } - ], - "gpu240": [ - "FirePro V3900", - { - "Bus Interface": "PCIe 2.1 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "650 MHz", - "Memory Clock(s)": "900 MHz", - "DirectX": "11", - "OpenGL": "4", - "Max TDP": "50 W", - "Videocard Category": "Workstation", - "Other names": "AMD FirePro V3900 (ATI FireGL), AMD FirePro V3900 (FireGL V) Graphics Adapter, AMD FirePro V3900, AMD FirePro V3900 (FireGL V)", - "Videocard First Benchmarked": "2012-03-11", - "G3DMark/Price": "2.72", - "Overall Rank": "1339", - "Last Price Change": "$238.44 USD (2021-06-10)", - "Score": 649, - "Average G2D Mark": 233, - "Samples": 135 - } - ], - "gpu241": [ - "FirePro V4900", - { - "Bus Interface": "PCIe 2.1 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "800 MHz", - "Memory Clock(s)": "1000 MHz", - "DirectX": "11", - "OpenGL": "4", - "Max TDP": "75 W", - "Videocard Category": "Workstation", - "Other names": "AMD FirePro V4900, AMD FirePro V4900 (ATI FireGL), AMD FirePro V4900 (FireGL V) Graphics Adapter, AMD FirePro V4900 (FireGL V)", - "Videocard First Benchmarked": "2012-05-24", - "G3DMark/Price": "6.56", - "Overall Rank": "1060", - "Last Price Change": "$149.99 USD (2021-12-18)", - "Score": 984, - "Average G2D Mark": 308, - "Samples": 237 - } - ], - "gpu3111": [ - "FirePro V5700", - { - "Other names": "ATI FirePro V5700 (FireGL)", - "Videocard First Benchmarked": "2015-01-17", - "G3DMark/Price": "2.47", - "Overall Rank": "1572", - "Last Price Change": "$188.06 USD (2022-04-15)", - "Score": 465, - "Average G2D Mark": 469, - "Samples": 2 - } - ], - "gpu3427": [ - "FirePro V5800", - { - "Other names": "ATI FirePro V5800, ATI FirePro V5800 (FireGL V)", - "Videocard First Benchmarked": "2016-02-07", - "G3DMark/Price": "22.18", - "Overall Rank": "970", - "Last Price Change": "$53 USD (2021-12-21)", - "Score": 1176, - "Average G2D Mark": 272, - "Samples": 15 - } - ], - "gpu243": [ - "FirePro V5900", - { - "Bus Interface": "PCIe 2.1 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "600 MHz", - "Memory Clock(s)": "5002 MHz", - "DirectX": "11", - "OpenGL": "4", - "Max TDP": "75 W", - "Videocard Category": "Workstation", - "Other names": "AMD FirePro V5900, AMD FirePro V5900 (ATI FireGL), AMD FirePro V5900 (FireGL V) Graphics Adapter, AMD FirePro V5900 (FireGL V)", - "Videocard First Benchmarked": "2011-07-27", - "G3DMark/Price": "14.77", - "Overall Rank": "933", - "Last Price Change": "$86 USD (2021-12-21)", - "Score": 1270, - "Average G2D Mark": 360, - "Samples": 143 - } - ], - "gpu2675": [ - "FirePro V7000", - { - "Other names": "AMD FirePro V7000 (FireGL V) Graphics Adapter", - "Videocard First Benchmarked": "2013-10-11", - "G3DMark/Price": "NA", - "Overall Rank": "512", - "Last Price Change": "NA", - "Score": 3162, - "Average G2D Mark": 668, - "Samples": 2 - } - ], - "gpu3907": [ - "FirePro V7800", - { - "Other names": "ATI FirePro V7800 (FireGL V)", - "Videocard First Benchmarked": "2018-03-04", - "G3DMark/Price": "10.68", - "Overall Rank": "700", - "Last Price Change": "$190 USD (2021-12-17)", - "Score": 2028, - "Average G2D Mark": 307, - "Samples": 5 - } - ], - "gpu245": [ - "FirePro V7900", - { - "Bus Interface": "PCIe 2.1 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "725 MHz", - "Memory Clock(s)": "12502 MHz", - "DirectX": "11", - "OpenGL": "4", - "Max TDP": "150 W", - "Videocard Category": "Workstation", - "Other names": "AMD FirePro V7900, AMD FirePro V7900 (ATI FireGL), AMD FirePro V7900 (FireGL V) Graphics Adapter, AMD FirePro V7900 (FireGL V)", - "Videocard First Benchmarked": "2011-09-21", - "G3DMark/Price": "12.13", - "Overall Rank": "638", - "Last Price Change": "$190 USD (2021-12-21)", - "Score": 2305, - "Average G2D Mark": 336, - "Samples": 75 - } - ], - "gpu3105": [ - "FirePro V8700", - { - "Other names": "ATI FirePro V8700 (FireGL)", - "Videocard First Benchmarked": "2015-01-11", - "G3DMark/Price": "9.75", - "Overall Rank": "854", - "Last Price Change": "$157.88 USD (2021-06-10)", - "Score": 1539, - "Average G2D Mark": 527, - "Samples": 1 - } - ], - "gpu3344": [ - "FirePro V8800", - { - "Other names": "ATI FirePro V8800 (FireGL V)", - "Videocard First Benchmarked": "2020-05-03", - "G3DMark/Price": "11.52", - "Overall Rank": "645", - "Last Price Change": "$198 USD (2021-12-22)", - "Score": 2281, - "Average G2D Mark": 445, - "Samples": 4 - } - ], - "gpu3423": [ - "FirePro V9800", - { - "Other names": "ATI FirePro V9800 (FireGL) Graphics Adapter, ATI FirePro V9800 (FireGL V)", - "Videocard First Benchmarked": "2016-01-29", - "G3DMark/Price": "5.75", - "Overall Rank": "555", - "Last Price Change": "$474 USD (2022-03-30)", - "Score": 2727, - "Average G2D Mark": 655, - "Samples": 18 - } - ], - "gpu2940": [ - "FirePro W2100", - { - "Bus Interface": "PCIe 3.0 x8", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "630 MHz", - "Memory Clock(s)": "900 MHz", - "DirectX": "11.2", - "OpenGL": "4.4", - "Max TDP": "26 W", - "Videocard Category": "Workstation", - "Other names": "AMD FirePro W2100 (FireGL V), AMD FirePro W2100, AMD FirePro W2100 (FireGL V) Graphics Adapter", - "Videocard First Benchmarked": "2014-09-08", - "G3DMark/Price": "15.03", - "Overall Rank": "1127", - "Last Price Change": "$59 USD (2021-08-28)", - "Score": 887, - "Average G2D Mark": 322, - "Samples": 188 - } - ], - "gpu3019": [ - "FirePro W4100", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "630 MHz", - "Memory Clock(s)": "1125 MHz", - "DirectX": "11.2", - "OpenGL": "4.4", - "Max TDP": "50 W", - "Videocard Category": "Workstation", - "Other names": "AMD FirePro W4100 (FireGL V), AMD FirePro W4100, AMD FirePro W4100 (FireGL V) Graphics Adapter, AMD FirePro W4100 Graphics Adapter", - "Videocard First Benchmarked": "2014-11-01", - "G3DMark/Price": "8.36", - "Overall Rank": "853", - "Last Price Change": "$184 USD (2021-12-17)", - "Score": 1539, - "Average G2D Mark": 479, - "Samples": 196 - } - ], - "gpu3070": [ - "FirePro W4170M", - { - "Other names": "AMD FirePro W4170M (FireGL V), AMD FirePro W4170M(FireGL V), AMD FirePro W4170M", - "Videocard First Benchmarked": "2015-04-23", - "G3DMark/Price": "NA", - "Overall Rank": "1019", - "Last Price Change": "NA", - "Score": 1063, - "Average G2D Mark": 223, - "Samples": 267 - } - ], - "gpu3491": [ - "Firepro W4190M", - { - "Other names": "AMD Firepro W4190M, AMD FirePro (TM) W4190M", - "Videocard First Benchmarked": "2016-04-29", - "G3DMark/Price": "NA", - "Overall Rank": "972", - "Last Price Change": "NA", - "Score": 1171, - "Average G2D Mark": 186, - "Samples": 58 - } - ], - "gpu3425": [ - "FirePro W4300", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "930 MHz", - "Memory Clock(s)": "1250 MHz", - "DirectX": "12", - "OpenGL": "4.4", - "Max TDP": "50 W", - "Videocard Category": "Workstation", - "Other names": "AMD FirePro W4300, AMD FirePro W4300 (FireGL V)", - "Videocard First Benchmarked": "2016-02-03", - "G3DMark/Price": "11.81", - "Overall Rank": "540", - "Last Price Change": "$239.99 USD (2017-12-01)", - "Score": 2834, - "Average G2D Mark": 652, - "Samples": 43 - } - ], - "gpu2227": [ - "FirePro W5000", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "825 MHz", - "Memory Clock(s)": "800 MHz", - "DirectX": "11.1", - "OpenGL": "4.2", - "Max TDP": "75 W", - "Videocard Category": "Workstation", - "Other names": "AMD FirePro W5000 (FireGL V), AMD FirePro W5000 (FireGL V) Graphics Adapter, AMD FirePro W5000", - "Videocard First Benchmarked": "2012-10-27", - "G3DMark/Price": "16.14", - "Overall Rank": "528", - "Last Price Change": "$184 USD (2022-03-30)", - "Score": 2970, - "Average G2D Mark": 570, - "Samples": 235 - } - ], - "gpu3044": [ - "FirePro W5100", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "930 MHz", - "Memory Clock(s)": "1500 MHz", - "DirectX": "11.1/12", - "OpenGL": "4.4", - "Max TDP": "75 W", - "Videocard Category": "Workstation", - "Other names": "AMD FirePro W5100 (FireGL V) Graphics Adapter, AMD FirePro W5100 (FireGL V), AMD FirePro W5100, AMD FirePro W5100 Graphics Adapter", - "Videocard First Benchmarked": "2014-11-14", - "G3DMark/Price": "23.67", - "Overall Rank": "526", - "Last Price Change": "$125.99 USD (2022-04-10)", - "Score": 2982, - "Average G2D Mark": 542, - "Samples": 345 - } - ], - "gpu3440": [ - "FirePro W5130M", - { - "Other names": "AMD FirePro W5130M", - "Videocard First Benchmarked": "2016-03-15", - "G3DMark/Price": "NA", - "Overall Rank": "900", - "Last Price Change": "NA", - "Score": 1396, - "Average G2D Mark": 301, - "Samples": 41 - } - ], - "gpu3470": [ - "Firepro W5170M", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "925 MHz", - "Memory Clock(s)": "1125 MHz", - "DirectX": "12", - "OpenGL": "4.4", - "Videocard Category": "Mobile", - "Other names": "AMD Radeon R9 M275X / M375, AMD FirePro W5170M", - "Videocard First Benchmarked": "2015-12-01", - "G3DMark/Price": "NA", - "Overall Rank": "785", - "Last Price Change": "NA", - "Score": 1745, - "Average G2D Mark": 373, - "Samples": 84 - } - ], - "gpu2371": [ - "FirePro W600", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "750 MHz", - "Memory Clock(s)": "1000 MHz", - "DirectX": "11.1", - "OpenGL": "4.2", - "Max TDP": "75 W", - "Videocard Category": "Workstation", - "Other names": "AMD FirePro W600", - "Videocard First Benchmarked": "2013-01-18", - "G3DMark/Price": "4.00", - "Overall Rank": "808", - "Last Price Change": "$414.99 USD (2021-12-17)", - "Score": 1662, - "Average G2D Mark": 597, - "Samples": 42 - } - ], - "gpu4341": [ - "FirePro W6150M", - { - "Other names": "AMD FirePro W6150M", - "Videocard First Benchmarked": "2021-02-06", - "G3DMark/Price": "NA", - "Overall Rank": "624", - "Last Price Change": "NA", - "Score": 2358, - "Average G2D Mark": 286, - "Samples": 4 - } - ], - "gpu2232": [ - "FirePro W7000", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "950 MHz", - "Memory Clock(s)": "1200 MHz", - "DirectX": "11.1", - "OpenGL": "4.2", - "Max TDP": "150 W", - "Videocard Category": "Workstation", - "Other names": "AMD FirePro W7000 (FireGL V), AMD FirePro W7000", - "Videocard First Benchmarked": "2012-10-29", - "G3DMark/Price": "15.32", - "Overall Rank": "418", - "Last Price Change": "$278.05 USD (2022-04-10)", - "Score": 4261, - "Average G2D Mark": 550, - "Samples": 258 - } - ], - "gpu2647": [ - "FirePro W7000 Adapter", - { - "Other names": "AMD FirePro W7000 (FireGL V) Graphics Adapter, AMD FirePro W7000 Graphics Adapter", - "Videocard First Benchmarked": "2013-09-04", - "G3DMark/Price": "NA", - "Overall Rank": "411", - "Last Price Change": "NA", - "Score": 4362, - "Average G2D Mark": 641, - "Samples": 41 - } - ], - "gpu3130": [ - "FirePro W7100", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "8192 MB", - "Core Clock(s)": "920 MHz", - "Memory Clock(s)": "1250 MHz", - "DirectX": "12", - "OpenGL": "4.4", - "Max TDP": "150 W", - "Videocard Category": "Workstation", - "Other names": "AMD FirePro W7100, AMD FirePro W7100 (FireGL V), AMD FirePro W7100 Graphics Adapter", - "Videocard First Benchmarked": "2015-02-08", - "G3DMark/Price": "13.66", - "Overall Rank": "338", - "Last Price Change": "$389.3 USD (2022-04-15)", - "Score": 5320, - "Average G2D Mark": 698, - "Samples": 194 - } - ], - "gpu3412": [ - "FirePro W7170M", - { - "Other names": "AMD FirePro W7170M, AMD FirePro(TM) W7170M", - "Videocard First Benchmarked": "2016-02-02", - "G3DMark/Price": "NA", - "Overall Rank": "513", - "Last Price Change": "NA", - "Score": 3162, - "Average G2D Mark": 418, - "Samples": 23 - } - ], - "gpu2427": [ - "FirePro W8000", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "900 MHz", - "Memory Clock(s)": "1375 MHz", - "DirectX": "11.1", - "OpenGL": "4.2", - "Max TDP": "189 W", - "Videocard Category": "Workstation", - "Other names": "AMD FirePro W8000 (FireGL V), AMD FirePro W8000 (FireGL V) Graphics Adapter, AMD FirePro W8000", - "Videocard First Benchmarked": "2013-02-24", - "G3DMark/Price": "7.15", - "Overall Rank": "425", - "Last Price Change": "$573 USD (2022-03-30)", - "Score": 4096, - "Average G2D Mark": 464, - "Samples": 42 - } - ], - "gpu2937": [ - "FirePro W8100", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "8192 MB", - "Core Clock(s)": "824 MHz", - "Memory Clock(s)": "1250 MHz", - "DirectX": "11.1", - "OpenGL": "4.3", - "Max TDP": "220 W", - "Videocard Category": "Workstation", - "Other names": "AMD FirePro W8100 (FireGL V), AMD FirePro W8100, AMD FirePro W8100 Graphic Adapter", - "Videocard First Benchmarked": "2014-08-27", - "G3DMark/Price": "10.34", - "Overall Rank": "262", - "Last Price Change": "$704 USD (2021-12-17)", - "Score": 7279, - "Average G2D Mark": 717, - "Samples": 52 - } - ], - "gpu2281": [ - "FirePro W9000", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "6144 MB", - "Core Clock(s)": "975 MHz", - "Memory Clock(s)": "1375 MHz", - "DirectX": "11.1", - "OpenGL": "4.2", - "Max TDP": "274 W", - "Videocard Category": "Workstation", - "Other names": "AMD FirePro W9000 (FireGL V), AMD FirePro W9000", - "Videocard First Benchmarked": "2012-11-19", - "G3DMark/Price": "7.26", - "Overall Rank": "302", - "Last Price Change": "$845 USD (2021-12-17)", - "Score": 6138, - "Average G2D Mark": 720, - "Samples": 14 - } - ], - "gpu3028": [ - "FirePro W9100", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "16384 MB", - "Core Clock(s)": "930 MHz", - "Memory Clock(s)": "1250 MHz", - "DirectX": "11.1", - "OpenGL": "4.3", - "Max TDP": "275 W", - "Videocard Category": "Workstation", - "Other names": "AMD FirePro W9100 (FireGL V), AMD FirePro W9100, AMD FirePro W9100 Graphics Adapter", - "Videocard First Benchmarked": "2014-11-04", - "G3DMark/Price": "4.58", - "Overall Rank": "237", - "Last Price Change": "$1729.99 USD (2022-04-15)", - "Score": 7928, - "Average G2D Mark": 776, - "Samples": 30 - } - ], - "gpu3357": [ - "FireStream 9170", - { - "Other names": "AMD FireStream 9170", - "Videocard First Benchmarked": "2015-11-12", - "G3DMark/Price": "NA", - "Overall Rank": "1341", - "Last Price Change": "NA", - "Score": 647, - "Average G2D Mark": 493, - "Samples": 1 - } - ], - "gpu2652": [ - "FireStream 9250", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "625 MHz", - "Memory Clock(s)": "993 MHz", - "DirectX": "10.1", - "OpenGL": "3", - "Max TDP": "150 W", - "Videocard Category": "Workstation", - "Other names": "AMD FireStream 9250", - "Videocard First Benchmarked": "2013-09-10", - "G3DMark/Price": "NA", - "Overall Rank": "974", - "Last Price Change": "NA", - "Score": 1165, - "Average G2D Mark": 465, - "Samples": 2 - } - ], - "gpu2960": [ - "FireStream 9270", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "750 MHz", - "Memory Clock(s)": "850 MHz", - "DirectX": "10.1", - "OpenGL": "3", - "Max TDP": "160 W", - "Videocard Category": "Workstation", - "Other names": "AMD FireStream 9270", - "Videocard First Benchmarked": "2014-09-26", - "G3DMark/Price": "NA", - "Overall Rank": "913", - "Last Price Change": "NA", - "Score": 1341, - "Average G2D Mark": 473, - "Samples": 4 - } - ], - "gpu247": [ - "FireStream 9370", - { - "Bus Interface": "PCIe 2.1 x16", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "825 MHz", - "Memory Clock(s)": "1150 MHz", - "DirectX": "11", - "OpenGL": "4", - "Max TDP": "225 W", - "Videocard Category": "Workstation", - "Other names": "AMD FireStream 9370", - "Videocard First Benchmarked": "2012-02-26", - "G3DMark/Price": "NA", - "Overall Rank": "592", - "Last Price Change": "NA", - "Score": 2528, - "Average G2D Mark": 763, - "Samples": 1 - } - ], - "gpu699": [ - "GeCube RADEON 7000", - { - "Other names": "GeCube RADEON 7000", - "Videocard First Benchmarked": "2010-01-22", - "G3DMark/Price": "NA", - "Overall Rank": "2334", - "Last Price Change": "NA", - "Score": 9, - "Average G2D Mark": 144, - "Samples": 1 - } - ], - "gpu1168": [ - "GeForce 205", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "589 MHz", - "Memory Clock(s)": "1000 MHz", - "DirectX": "10.1", - "OpenGL": "3.3", - "Max TDP": "30.5 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce 205", - "Videocard First Benchmarked": "2010-11-16", - "G3DMark/Price": "NA", - "Overall Rank": "1934", - "Last Price Change": "NA", - "Score": 126, - "Average G2D Mark": 309, - "Samples": 5 - } - ], - "gpu1169": [ - "GeForce 210", - { - "Bus Interface": "PCIe 2.0 x16,PCIe x1,PCI", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "520,589 MHz", - "Memory Clock(s)": "1000\u20131600 MHz", - "DirectX": "10.1", - "OpenGL": "3.3", - "Max TDP": "30.5 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce 210", - "Videocard First Benchmarked": "2009-10-05", - "G3DMark/Price": "1.98", - "Overall Rank": "1997", - "Last Price Change": "$54.15 USD (2023-02-23)", - "Score": 107, - "Average G2D Mark": 32, - "Samples": 6649 - } - ], - "gpu4035": [ - "GeForce 240M GT", - { - "Other names": "NVIDIA GeForce 240M GT", - "Videocard First Benchmarked": "2019-01-03", - "G3DMark/Price": "NA", - "Overall Rank": "1702", - "Last Price Change": "NA", - "Score": 320, - "Average G2D Mark": 434, - "Samples": 1 - } - ], - "gpu1170": [ - "GeForce 256", - { - "Other names": "NVIDIA GeForce 256", - "Videocard First Benchmarked": "2009-04-29", - "G3DMark/Price": "0.12", - "Overall Rank": "2382", - "Last Price Change": "$42.04 USD (2014-03-06)", - "Score": 5, - "Average G2D Mark": 201, - "Samples": 2 - } - ], - "gpu1171": [ - "GeForce 305M", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "525 MHz", - "Memory Clock(s)": "1400 MHz", - "DirectX": "10.1", - "OpenGL": "3.3", - "Max TDP": "14 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce 305M, NVIDIA GeForce 305M (Mobile)", - "Videocard First Benchmarked": "2012-03-31", - "G3DMark/Price": "NA", - "Overall Rank": "1877", - "Last Price Change": "NA", - "Score": 151, - "Average G2D Mark": 149, - "Samples": 3 - } - ], - "gpu1172": [ - "GeForce 310", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "589 MHz", - "Memory Clock(s)": "1000 MHz", - "DirectX": "10.1", - "OpenGL": "3.3", - "Max TDP": "30.5 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce 310", - "Videocard First Benchmarked": "2010-01-30", - "G3DMark/Price": "1.11", - "Overall Rank": "1953", - "Last Price Change": "$108.35 USD (2013-05-02)", - "Score": 120, - "Average G2D Mark": 43, - "Samples": 377 - } - ], - "gpu102": [ - "GeForce 310M", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "625 MHz", - "Memory Clock(s)": "1600 MHz", - "DirectX": "10.1", - "OpenGL": "3.3", - "Max TDP": "14 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce 310M, NVIDIA GeForce 310M (Mobile)", - "Videocard First Benchmarked": "2012-08-21", - "G3DMark/Price": "NA", - "Overall Rank": "1987", - "Last Price Change": "NA", - "Score": 111, - "Average G2D Mark": 23, - "Samples": 1325 - } - ], - "gpu1173": [ - "GeForce 315", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "475 MHz", - "Memory Clock(s)": "1580 MHz", - "DirectX": "10.1", - "OpenGL": "3.3", - "Max TDP": "33 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce 315", - "Videocard First Benchmarked": "2010-02-28", - "G3DMark/Price": "4.80", - "Overall Rank": "1867", - "Last Price Change": "$32.99 USD (2013-02-22)", - "Score": 159, - "Average G2D Mark": 53, - "Samples": 173 - } - ], - "gpu1174": [ - "GeForce 315M", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "606 MHz", - "Memory Clock(s)": "1600 MHz", - "DirectX": "10.1", - "OpenGL": "3.3", - "Max TDP": "14 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce 315M, NVIDIA GeForce 315M (Mobile)", - "Videocard First Benchmarked": "2011-06-01", - "G3DMark/Price": "NA", - "Overall Rank": "1970", - "Last Price Change": "NA", - "Score": 115, - "Average G2D Mark": 39, - "Samples": 345 - } - ], - "gpu1175": [ - "GeForce 320M", - { - "Bus Interface": "Integrated,PCIe 2.0 x16", - "Max Memory Size": "256 MB", - "Core Clock(s)": "450 MHz", - "Memory Clock(s)": "1066 MHz", - "DirectX": "10.1", - "OpenGL": "3.3", - "Max TDP": "20 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce 320M, NVIDIA GeForce 320M (Mobile)", - "Videocard First Benchmarked": "2011-11-10", - "G3DMark/Price": "NA", - "Overall Rank": "1808", - "Last Price Change": "NA", - "Score": 210, - "Average G2D Mark": 59, - "Samples": 124 - } - ], - "gpu1177": [ - "GeForce 405", - { - "Other names": "NVIDIA GeForce 405", - "Videocard First Benchmarked": "2011-03-04", - "G3DMark/Price": "4.89", - "Overall Rank": "1951", - "Last Price Change": "$24.64 USD (2013-04-05)", - "Score": 120, - "Average G2D Mark": 56, - "Samples": 178 - } - ], - "gpu1178": [ - "GeForce 410M", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "575 MHz", - "Memory Clock(s)": "1600 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "12 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce 410M, NVIDIA GeForce 410M (Mobile)", - "Videocard First Benchmarked": "2011-07-16", - "G3DMark/Price": "NA", - "Overall Rank": "1761", - "Last Price Change": "NA", - "Score": 255, - "Average G2D Mark": 127, - "Samples": 449 - } - ], - "gpu2604": [ - "GeForce 505", - { - "Other names": "NVIDIA GeForce 505", - "Videocard First Benchmarked": "2013-08-02", - "G3DMark/Price": "1.03", - "Overall Rank": "1958", - "Last Price Change": "$115.06 USD (2021-05-16)", - "Score": 118, - "Average G2D Mark": 66, - "Samples": 21 - } - ], - "gpu1179": [ - "GeForce 510", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "523 MHz", - "Memory Clock(s)": "1800 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "25 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce 510", - "Videocard First Benchmarked": "2011-12-26", - "G3DMark/Price": "3.71", - "Overall Rank": "1756", - "Last Price Change": "$69.99 USD (2013-03-29)", - "Score": 260, - "Average G2D Mark": 192, - "Samples": 26 - } - ], - "gpu1180": [ - "GeForce 605", - { - "Other names": "NVIDIA GeForce 605", - "Videocard First Benchmarked": "2012-06-23", - "G3DMark/Price": "2.32", - "Overall Rank": "1704", - "Last Price Change": "$136.83 USD (2021-05-22)", - "Score": 318, - "Average G2D Mark": 168, - "Samples": 132 - } - ], - "gpu1181": [ - "GeForce 6100", - { - "Other names": "NVIDIA GeForce 6100, NVIDIA GeForce 6100 (Prerelease - WDDM 1.0)", - "Videocard First Benchmarked": "2009-04-02", - "G3DMark/Price": "NA", - "Overall Rank": "2272", - "Last Price Change": "NA", - "Score": 27, - "Average G2D Mark": 44, - "Samples": 136 - } - ], - "gpu1182": [ - "GeForce 6100 nForce 400", - { - "Other names": "NVIDIA GeForce 6100 nForce 400", - "Videocard First Benchmarked": "2009-06-19", - "G3DMark/Price": "NA", - "Overall Rank": "2281", - "Last Price Change": "NA", - "Score": 25, - "Average G2D Mark": 242, - "Samples": 12 - } - ], - "gpu1183": [ - "GeForce 6100 nForce 405", - { - "Other names": "NVIDIA GeForce 6100 nForce 405", - "Videocard First Benchmarked": "2009-04-04", - "G3DMark/Price": "NA", - "Overall Rank": "2265", - "Last Price Change": "NA", - "Score": 30, - "Average G2D Mark": 73, - "Samples": 195 - } - ], - "gpu1185": [ - "GeForce 6100 nForce 420", - { - "Other names": "NVIDIA GeForce 6100 nForce 420", - "Videocard First Benchmarked": "2009-07-06", - "G3DMark/Price": "NA", - "Overall Rank": "2280", - "Last Price Change": "NA", - "Score": 25, - "Average G2D Mark": 234, - "Samples": 4 - } - ], - "gpu1186": [ - "GeForce 6100 nForce 430", - { - "Other names": "NVIDIA GeForce 6100 nForce 430", - "Videocard First Benchmarked": "2009-04-23", - "G3DMark/Price": "NA", - "Overall Rank": "2294", - "Last Price Change": "NA", - "Score": 23, - "Average G2D Mark": 249, - "Samples": 8 - } - ], - "gpu2125": [ - "GeForce 610M", - { - "Other names": "NVIDIA GeForce 610M, NVIDIA GeForce 610M (Mobile)", - "Videocard First Benchmarked": "2012-10-13", - "G3DMark/Price": "NA", - "Overall Rank": "1724", - "Last Price Change": "NA", - "Score": 291, - "Average G2D Mark": 108, - "Samples": 1429 - } - ], - "gpu2361": [ - "GeForce 615", - { - "Other names": "NVIDIA GeForce 615, NVIDIA GeForce 615 (Mobile)", - "Videocard First Benchmarked": "2013-01-10", - "G3DMark/Price": "NA", - "Overall Rank": "1475", - "Last Price Change": "NA", - "Score": 546, - "Average G2D Mark": 312, - "Samples": 34 - } - ], - "gpu1187": [ - "GeForce 6150", - { - "Other names": "NVIDIA GeForce 6150, NVIDIA GeForce 6150 (Prerelease - WDDM 1.0)", - "Videocard First Benchmarked": "2012-01-08", - "G3DMark/Price": "0.07", - "Overall Rank": "2297", - "Last Price Change": "$329 USD (2021-05-20)", - "Score": 22, - "Average G2D Mark": 250, - "Samples": 72 - } - ], - "gpu1188": [ - "GeForce 6150 LE", - { - "Other names": "NVIDIA GeForce 6150 LE, NVIDIA GeForce 6150 LE (Omega 2.169.21), NVIDIA GeForce 6150 LE (Prerelease - WDDM 1.0)", - "Videocard First Benchmarked": "2012-05-13", - "G3DMark/Price": "NA", - "Overall Rank": "2247", - "Last Price Change": "NA", - "Score": 33, - "Average G2D Mark": 30, - "Samples": 377 - } - ], - "gpu1189": [ - "GeForce 6150SE", - { - "Other names": "NVIDIA GeForce 6150SE", - "Videocard First Benchmarked": "2009-04-02", - "G3DMark/Price": "NA", - "Overall Rank": "2285", - "Last Price Change": "NA", - "Score": 25, - "Average G2D Mark": 266, - "Samples": 20 - } - ], - "gpu74": [ - "GeForce 6150SE nForce 430", - { - "Other names": "NVIDIA GeForce 6150SE nForce 430, NVIDIA GeForce 6150SE nForce 430 (Omega 1.169.25)", - "Videocard First Benchmarked": "2012-08-19", - "G3DMark/Price": "NA", - "Overall Rank": "2262", - "Last Price Change": "NA", - "Score": 30, - "Average G2D Mark": 16, - "Samples": 1492 - } - ], - "gpu1191": [ - "GeForce 6200", - { - "Bus Interface": "AGP 8x,PCI,PCI-E x16", - "Max Memory Size": "256 MB", - "Core Clock(s)": "300 MHz", - "Memory Clock(s)": "550 MHz", - "DirectX": "9.0c", - "OpenGL": "2.1", - "Videocard Category": "Desktop", - "Other names": "Inno3D GeForce 6200, MSI NX6200 AX (NVIDIA GeForce 6200 AX), MSI NX6200AX (NVIDIA GeForce 6200), NVIDIA GeForce 6200, NVIDIA GeForce 6200 (Omega 1.169.25), NVIDIA GeForce 6200 (Omega 2.169.21), NVIDIA GeForce 6200 (Prerelease - WDDM 1.0), WinFast A6200 TD", - "Videocard First Benchmarked": "2009-04-02", - "G3DMark/Price": "0.42", - "Overall Rank": "2203", - "Last Price Change": "$99.99 USD (2022-04-15)", - "Score": 42, - "Average G2D Mark": 36, - "Samples": 452 - } - ], - "gpu1192": [ - "GeForce 6200 A-LE", - { - "Bus Interface": "AGP 8x,PCI-E x16", - "Max Memory Size": "256 MB", - "Core Clock(s)": "350 MHz", - "Memory Clock(s)": "532 MHz", - "DirectX": "9.0c", - "OpenGL": "2.1", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce 6200 A-LE, NVIDIA GeForce 6200 A-LE (Prerelease - WDDM 1.0), NVIDIA GeForce 6200 A-LE [Dox Optimised 185.68]", - "Videocard First Benchmarked": "2009-04-08", - "G3DMark/Price": "NA", - "Overall Rank": "2255", - "Last Price Change": "NA", - "Score": 32, - "Average G2D Mark": 192, - "Samples": 11 - } - ], - "gpu125": [ - "GeForce 6200 LE", - { - "Bus Interface": "AGP 8x,PCI-E x16", - "Max Memory Size": "256 MB", - "Core Clock(s)": "350 MHz", - "Memory Clock(s)": "532 MHz", - "DirectX": "9.0c", - "OpenGL": "2.1", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce 6200 LE, Inno3D GeForce 6200 LE, MSI NX 6200 LE (NVIDIA GeForce 6200 LE), NVIDIA GeForce 6200 LE (Prerelease - WDDM 1.0)", - "Videocard First Benchmarked": "2012-08-23", - "G3DMark/Price": "0.70", - "Overall Rank": "2268", - "Last Price Change": "$41.24 USD (2014-03-07)", - "Score": 29, - "Average G2D Mark": 67, - "Samples": 134 - } - ], - "gpu1194": [ - "GeForce 6200 TurboCache", - { - "Other names": "Inno3D GeForce 6200 TurboCache(TM), MSI NX 6200 TC (NVIDIA GeForce 6200 TurboCache(TM), MSI NX 6200TC (NVIDIA GeForce 6200 TurboCache(TM)), NVIDIA GeForce 6200 TurboCache(TM), NVIDIA GeForce 6200 TurboCache(TM) (Prerelease - W, NVIDIA GeForce 6200 TurboCache(TM) (Prerelease - WDDM 1.0)", - "Videocard First Benchmarked": "2009-04-04", - "G3DMark/Price": "NA", - "Overall Rank": "2157", - "Last Price Change": "NA", - "Score": 53, - "Average G2D Mark": 49, - "Samples": 254 - } - ], - "gpu3063": [ - "GeForce 6200A", - { - "Bus Interface": "AGP 8x", - "Max Memory Size": "128 MB", - "Core Clock(s)": "350 MHz", - "Memory Clock(s)": "500 MHz", - "DirectX": "9.0c", - "OpenGL": "2.1", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce 6200A", - "Videocard First Benchmarked": "2014-12-04", - "G3DMark/Price": "0.07", - "Overall Rank": "2427", - "Last Price Change": "$54.99 USD (2015-11-05)", - "Score": 4, - "Average G2D Mark": 117, - "Samples": 1 - } - ], - "gpu1195": [ - "GeForce 6200SE TurboCache", - { - "Other names": "NVIDIA GeForce 6200SE TurboCache(TM)", - "Videocard First Benchmarked": "2009-04-02", - "G3DMark/Price": "NA", - "Overall Rank": "2227", - "Last Price Change": "NA", - "Score": 37, - "Average G2D Mark": 146, - "Samples": 34 - } - ], - "gpu1197": [ - "GeForce 6500", - { - "Bus Interface": "PCI-E x16", - "Max Memory Size": "256 MB", - "Core Clock(s)": "400 MHz", - "Memory Clock(s)": "666 MHz", - "DirectX": "9.0c", - "OpenGL": "2.1", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce 6500", - "Videocard First Benchmarked": "2009-04-02", - "G3DMark/Price": "NA", - "Overall Rank": "2220", - "Last Price Change": "NA", - "Score": 38, - "Average G2D Mark": 300, - "Samples": 26 - } - ], - "gpu1198": [ - "GeForce 6600", - { - "Bus Interface": "AGP 8x,PCI-E x16", - "Max Memory Size": "256 MB", - "Core Clock(s)": "300 MHz", - "Memory Clock(s)": "550 MHz", - "DirectX": "9.0c", - "OpenGL": "2.1", - "Videocard Category": "Desktop", - "Other names": "Inno3D GeForce 6600, MSI MS-StarForce GeForce 6600 (NVIDIA GeForce 6600, NVIDIA GeForce 6600, NVIDIA GeForce 6600 (DNA-Force 1.0.7124 Fast), NVIDIA GeForce 6600 (Omega 1.169.25), NVIDIA GeForce 6600 (Prerelease - WDDM 1.0), WinFast A6600 TD, WinFast PX6600, WinFast PX6600 TD, WinFast PX6600 TD DDR2, MSI NX 6600 (NVIDIA GeForce 6600), MSI MS-StarForce GeForce 6600 (NVIDIA GeForce 6600)", - "Videocard First Benchmarked": "2009-04-03", - "G3DMark/Price": "0.33", - "Overall Rank": "2058", - "Last Price Change": "$264 USD (2021-12-17)", - "Score": 86, - "Average G2D Mark": 39, - "Samples": 351 - } - ], - "gpu1199": [ - "GeForce 6600 GT", - { - "Bus Interface": "AGP 8x,PCI-E x16", - "Max Memory Size": "256 MB", - "Core Clock(s)": "500 MHz", - "Memory Clock(s)": "1000 MHz", - "DirectX": "9.0c", - "OpenGL": "2.1", - "Videocard Category": "Desktop", - "Other names": "Inno3D GeForce 6600 GT, MSI MS-StarForce GeForce 6600 GT (NVIDIA GeForce 6, MSI NX 6600GT (NVIDIA GeForce 6600 GT), MSI NX6600 GT (NVIDIA GeForce 6600 GT), MSI NX6600GT (NVIDIA GeForce 6600 GT), NVIDIA GeForce 6600 GT, NVIDIA GeForce 6600 GT (Omega 1.169.25), NVIDIA GeForce 6600 GT (Omega 2.169.21), NVIDIA GeForce 6600 GT (Prerelease - WDDM 1.0), NVIDIA GeForce 6600 GT by TweaksRUs, WinFast A6600 GT, WinFast PX6600 GT, WinFast PX6600 GT Extreme, MSI MS-StarForce GeForce 6600 GT (NVIDIA GeForce 6600 GT)", - "Videocard First Benchmarked": "2010-07-23", - "G3DMark/Price": "2.11", - "Overall Rank": "1909", - "Last Price Change": "$64.95 USD (2011-06-11)", - "Score": 137, - "Average G2D Mark": 67, - "Samples": 249 - } - ], - "gpu1201": [ - "GeForce 6600 LE", - { - "Bus Interface": "AGP 8x,PCI-E x16", - "Max Memory Size": "256 MB", - "Core Clock(s)": "300 MHz", - "Memory Clock(s)": "400 MHz", - "DirectX": "9.0c", - "OpenGL": "2.1", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce 6600 LE, WinFast PX6600 LE, NVIDIA GeForce 6600", - "Videocard First Benchmarked": "2009-04-07", - "G3DMark/Price": "NA", - "Overall Rank": "2166", - "Last Price Change": "NA", - "Score": 51, - "Average G2D Mark": 234, - "Samples": 45 - } - ], - "gpu1203": [ - "GeForce 6610 XL", - { - "Other names": "NVIDIA GeForce 6610 XL", - "Videocard First Benchmarked": "2009-05-16", - "G3DMark/Price": "NA", - "Overall Rank": "2054", - "Last Price Change": "NA", - "Score": 89, - "Average G2D Mark": 288, - "Samples": 11 - } - ], - "gpu1204": [ - "GeForce 6700 XL", - { - "Other names": "NVIDIA GeForce 6700 XL", - "Videocard First Benchmarked": "2009-04-09", - "G3DMark/Price": "NA", - "Overall Rank": "2034", - "Last Price Change": "NA", - "Score": 95, - "Average G2D Mark": 243, - "Samples": 33 - } - ], - "gpu1205": [ - "GeForce 6800", - { - "Bus Interface": "AGP 8x,PCI-E x16", - "Max Memory Size": "256 MB", - "Core Clock(s)": "325 MHz", - "Memory Clock(s)": "700 MHz", - "DirectX": "9.0c", - "OpenGL": "2.1", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce 6800, NVIDIA GeForce 6800 (Prerelease - WDDM 1.0)", - "Videocard First Benchmarked": "2009-04-04", - "G3DMark/Price": "0.20", - "Overall Rank": "1979", - "Last Price Change": "$559.29 USD (2021-05-21)", - "Score": 113, - "Average G2D Mark": 258, - "Samples": 117 - } - ], - "gpu1207": [ - "GeForce 6800 GS", - { - "Bus Interface": "PCI-E x16", - "Max Memory Size": "256 MB", - "Core Clock(s)": "425 MHz", - "Memory Clock(s)": "1000 MHz", - "DirectX": "9.0c", - "OpenGL": "2.1", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce 6800 GS, NVIDIA GeForce 6800 GS (Prerelease - WDDM 1.0), WinFast PX6800 GS, MSI NX6800GS (NVIDIA GeForce 6800 GS)", - "Videocard First Benchmarked": "2009-04-04", - "G3DMark/Price": "NA", - "Overall Rank": "1833", - "Last Price Change": "NA", - "Score": 189, - "Average G2D Mark": 80, - "Samples": 52 - } - ], - "gpu1208": [ - "GeForce 6800 GS/XT", - { - "Bus Interface": "AGP 8x,PCI-E x16", - "Max Memory Size": "256 MB", - "Core Clock(s)": "325 MHz", - "Memory Clock(s)": "700 MHz", - "DirectX": "9.0c", - "OpenGL": "2.1", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce 6800 GS/XT, NVIDIA GeForce 6800 GS/XT by TweaksRUs", - "Videocard First Benchmarked": "2009-04-28", - "G3DMark/Price": "NA", - "Overall Rank": "2014", - "Last Price Change": "NA", - "Score": 103, - "Average G2D Mark": 196, - "Samples": 12 - } - ], - "gpu1210": [ - "GeForce 6800 GT", - { - "Bus Interface": "AGP 8x,PCI-E x16", - "Max Memory Size": "256 MB", - "Core Clock(s)": "350 MHz", - "Memory Clock(s)": "1000 MHz", - "DirectX": "9.0c", - "OpenGL": "2.1", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce 6800 GT, NVIDIA GeForce 6800 GT (DNA-Force 2.2.8185 Source), NVIDIA GeForce 6800 GT (Prerelease - WDDM 1.0)", - "Videocard First Benchmarked": "2009-04-03", - "G3DMark/Price": "NA", - "Overall Rank": "1893", - "Last Price Change": "NA", - "Score": 142, - "Average G2D Mark": 212, - "Samples": 27 - } - ], - "gpu1213": [ - "GeForce 6800 LE", - { - "Bus Interface": "AGP 8x,PCI-E x16", - "Max Memory Size": "128 MB", - "Core Clock(s)": "325 MHz", - "Memory Clock(s)": "700 MHz", - "DirectX": "9.0c", - "OpenGL": "2.1", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce 6800 LE", - "Videocard First Benchmarked": "2009-04-07", - "G3DMark/Price": "NA", - "Overall Rank": "1991", - "Last Price Change": "NA", - "Score": 110, - "Average G2D Mark": 166, - "Samples": 7 - } - ], - "gpu1214": [ - "GeForce 6800 Ultra", - { - "Bus Interface": "AGP 8x,PCI-E x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "400 MHz", - "Memory Clock(s)": "1100 MHz", - "DirectX": "9.0c", - "OpenGL": "2.1", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce 6800 Ultra", - "Videocard First Benchmarked": "2009-04-06", - "G3DMark/Price": "NA", - "Overall Rank": "1903", - "Last Price Change": "NA", - "Score": 139, - "Average G2D Mark": 153, - "Samples": 3 - } - ], - "gpu1215": [ - "GeForce 6800 XE", - { - "Other names": "NVIDIA GeForce 6800 XE", - "Videocard First Benchmarked": "2009-05-25", - "G3DMark/Price": "NA", - "Overall Rank": "2145", - "Last Price Change": "NA", - "Score": 59, - "Average G2D Mark": 166, - "Samples": 1 - } - ], - "gpu1216": [ - "GeForce 6800 XT", - { - "Bus Interface": "AGP 8x,PCI-E x16", - "Max Memory Size": "256 MB", - "Core Clock(s)": "325 MHz", - "Memory Clock(s)": "700 MHz", - "DirectX": "9.0c", - "OpenGL": "2.1", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce 6800 XT, NVIDIA GeForce 6800 XT (Prerelease - WDDM 1.0)", - "Videocard First Benchmarked": "2009-04-04", - "G3DMark/Price": "NA", - "Overall Rank": "1941", - "Last Price Change": "NA", - "Score": 123, - "Average G2D Mark": 122, - "Samples": 33 - } - ], - "gpu1217": [ - "GeForce 7000M", - { - "Bus Interface": "Hyper Transport", - "Max Memory Size": "256 MB", - "Core Clock(s)": "350 MHz", - "DirectX": "9.0c", - "OpenGL": "2.1", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce 7000M, NVIDIA GeForce 7000M [Dox Optimised 180.84: Qualit", - "Videocard First Benchmarked": "2010-02-02", - "G3DMark/Price": "NA", - "Overall Rank": "2318", - "Last Price Change": "NA", - "Score": 13, - "Average G2D Mark": 239, - "Samples": 2 - } - ], - "gpu1218": [ - "GeForce 7000M / nForce 610M", - { - "Other names": "NVIDIA GeForce 7000M / nForce 610M, NVIDIA GeForce 7000M / nForce 610M (Mobile)", - "Videocard First Benchmarked": "2009-04-04", - "G3DMark/Price": "NA", - "Overall Rank": "2319", - "Last Price Change": "NA", - "Score": 13, - "Average G2D Mark": 188, - "Samples": 119 - } - ], - "gpu1220": [ - "GeForce 7025 / nForce 630a", - { - "Other names": "NVIDIA GeForce 7025 / nForce 630a, NVIDIA GeForce 7025 / NVIDIA nForce 630a, NVIDIA GeForce 7025 / NVIDIA nForce 630a (Prerelea", - "Videocard First Benchmarked": "2012-03-18", - "G3DMark/Price": "NA", - "Overall Rank": "2254", - "Last Price Change": "NA", - "Score": 33, - "Average G2D Mark": 14, - "Samples": 893 - } - ], - "gpu1221": [ - "GeForce 7050 / nForce 610i", - { - "Other names": "NVIDIA GeForce 7050 / NVIDIA nForce 610i, NVIDIA GeForce 7050 / NVIDIA nForce 610i (Prerelea, NVIDIA GeForce 7050 / nForce 610i", - "Videocard First Benchmarked": "2009-05-16", - "G3DMark/Price": "NA", - "Overall Rank": "2282", - "Last Price Change": "NA", - "Score": 25, - "Average G2D Mark": 102, - "Samples": 109 - } - ], - "gpu1222": [ - "GeForce 7050 / nForce 620i", - { - "Other names": "NVIDIA GeForce 7050 / NVIDIA nForce 620i, NVIDIA GeForce 7050 / nForce 620i", - "Videocard First Benchmarked": "2009-06-04", - "G3DMark/Price": "NA", - "Overall Rank": "2204", - "Last Price Change": "NA", - "Score": 42, - "Average G2D Mark": 88, - "Samples": 71 - } - ], - "gpu1223": [ - "GeForce 7050 / nForce 630i", - { - "Other names": "NVIDIA GeForce 7050 / NVIDIA nForce 630i, NVIDIA GeForce 7050 / nForce 630i", - "Videocard First Benchmarked": "2010-02-28", - "G3DMark/Price": "NA", - "Overall Rank": "2223", - "Last Price Change": "NA", - "Score": 38, - "Average G2D Mark": 145, - "Samples": 12 - } - ], - "gpu1224": [ - "GeForce 7050 PV / nForce 630a", - { - "Other names": "NVIDIA GeForce 7050 PV / NVIDIA nForce 630a, NVIDIA GeForce 7050 PV / NVIDIA nForce 630a (Prere, NVIDIA GeForce 7050 PV / nForce 630a", - "Videocard First Benchmarked": "2009-06-03", - "G3DMark/Price": "NA", - "Overall Rank": "2258", - "Last Price Change": "NA", - "Score": 31, - "Average G2D Mark": 83, - "Samples": 90 - } - ], - "gpu2781": [ - "GeForce 705M", - { - "Other names": "NVIDIA GeForce 705M, NVIDIA GeForce 705M (Mobile)", - "Videocard First Benchmarked": "2014-01-04", - "G3DMark/Price": "NA", - "Overall Rank": "1585", - "Last Price Change": "NA", - "Score": 456, - "Average G2D Mark": 455, - "Samples": 21 - } - ], - "gpu1225": [ - "GeForce 7100 / nForce 620i", - { - "Other names": "NVIDIA GeForce 7100 / NVIDIA nForce 620i", - "Videocard First Benchmarked": "2009-06-29", - "G3DMark/Price": "NA", - "Overall Rank": "2276", - "Last Price Change": "NA", - "Score": 26, - "Average G2D Mark": 229, - "Samples": 1 - } - ], - "gpu1226": [ - "GeForce 7100 / nForce 630i", - { - "Bus Interface": "PCIe 2 x1", - "Core Clock(s)": "600 MHz", - "Memory Clock(s)": "Shared MHz", - "DirectX": "11.1", - "OpenGL": "2.1", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce 7100 / NVIDIA nForce 630i, NVIDIA GeForce 7100 / NVIDIA nForce 630i (Prerelea, NVIDIA GeForce 7100 / nForce 630i", - "Videocard First Benchmarked": "2009-06-24", - "G3DMark/Price": "NA", - "Overall Rank": "2205", - "Last Price Change": "NA", - "Score": 41, - "Average G2D Mark": 50, - "Samples": 237 - } - ], - "gpu1227": [ - "GeForce 7100 GS", - { - "Bus Interface": "PCI-E x16", - "Max Memory Size": "256 MB", - "Core Clock(s)": "350 MHz", - "Memory Clock(s)": "600 MHz", - "DirectX": "9.0c", - "OpenGL": "2.1", - "Videocard Category": "Desktop", - "Other names": "MSI NX7100 GS (NVIDIA GeForce 7100 GS), NVIDIA GeForce 7100 GS, NVIDIA GeForce 7100 GS (Prerelease - WDDM 1.0)", - "Videocard First Benchmarked": "2009-04-02", - "G3DMark/Price": "NA", - "Overall Rank": "2180", - "Last Price Change": "NA", - "Score": 48, - "Average G2D Mark": 104, - "Samples": 114 - } - ], - "gpu2622": [ - "GeForce 710A", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "938 MHz", - "Memory Clock(s)": "1000 MHz", - "DirectX": "12", - "OpenGL": "4.6", - "Max TDP": "33 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce 710A, NVIDIA GeForce 710A (Mobile)", - "Videocard First Benchmarked": "2014-01-12", - "G3DMark/Price": "NA", - "Overall Rank": "1555", - "Last Price Change": "NA", - "Score": 475, - "Average G2D Mark": 202, - "Samples": 27 - } - ], - "gpu2399": [ - "GeForce 710M", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "800 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "12 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce 710M, NVIDIA GeForce 710M (Mobile)", - "Videocard First Benchmarked": "2013-02-02", - "G3DMark/Price": "NA", - "Overall Rank": "1574", - "Last Price Change": "NA", - "Score": 463, - "Average G2D Mark": 124, - "Samples": 909 - } - ], - "gpu1228": [ - "GeForce 7150 / nForce 630i", - { - "Other names": "NVIDIA GeForce 7150 / nForce 630i, NVIDIA GeForce 7150 / NVIDIA nForce 630i", - "Videocard First Benchmarked": "2012-03-21", - "G3DMark/Price": "NA", - "Overall Rank": "2250", - "Last Price Change": "NA", - "Score": 33, - "Average G2D Mark": 254, - "Samples": 6 - } - ], - "gpu1229": [ - "GeForce 7150M / nForce 630M", - { - "Other names": "NVIDIA GeForce 7150M / nForce 630M, NVIDIA GeForce 7150M / nForce 630M (Prerelease - W", - "Videocard First Benchmarked": "2009-04-04", - "G3DMark/Price": "NA", - "Overall Rank": "2305", - "Last Price Change": "NA", - "Score": 18, - "Average G2D Mark": 194, - "Samples": 149 - } - ], - "gpu1231": [ - "GeForce 7200 GS", - { - "Bus Interface": "AGP 8x,PCI-E x16", - "Max Memory Size": "256 MB", - "Core Clock(s)": "450 MHz", - "Memory Clock(s)": "800 MHz", - "DirectX": "9.0c", - "OpenGL": "2.1", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce 7200 GS", - "Videocard First Benchmarked": "2009-11-25", - "G3DMark/Price": "NA", - "Overall Rank": "2293", - "Last Price Change": "NA", - "Score": 23, - "Average G2D Mark": 98, - "Samples": 1 - } - ], - "gpu3977": [ - "GeForce 720A", - { - "Other names": "NVIDIA GeForce 720A, NVIDIA GeForce 720A (Mobile)", - "Videocard First Benchmarked": "2018-08-30", - "G3DMark/Price": "NA", - "Overall Rank": "1383", - "Last Price Change": "NA", - "Score": 614, - "Average G2D Mark": 304, - "Samples": 5 - } - ], - "gpu1232": [ - "GeForce 7300 GS", - { - "Bus Interface": "AGP 8x,PCI-E x16", - "Max Memory Size": "256 MB", - "Core Clock(s)": "550 MHz", - "Memory Clock(s)": "800 MHz", - "DirectX": "9.0c", - "OpenGL": "2.1", - "Videocard Category": "Desktop", - "Other names": "MSI NX7300 GS(NVIDIA GeForce 7300 GS), MSI NX7300GS (NVIDIA GeForce 7300 GS), NVIDIA GeForce 7300 GS, NVIDIA GeForce 7300 GS (Prerelease - WDDM 1.0), NVIDIA GeForce 7300GS, WinFast PX7300 GS", - "Videocard First Benchmarked": "2009-04-02", - "G3DMark/Price": "NA", - "Overall Rank": "2086", - "Last Price Change": "NA", - "Score": 79, - "Average G2D Mark": 47, - "Samples": 245 - } - ], - "gpu1233": [ - "GeForce 7300 GT", - { - "Bus Interface": "AGP 8x,PCI-E x16", - "Max Memory Size": "256 MB", - "Core Clock(s)": "350 MHz", - "Memory Clock(s)": "650 MHz", - "DirectX": "9.0c", - "OpenGL": "2.1", - "Videocard Category": "Desktop", - "Other names": "Inno3D GeForce 7300 GT, MSI NX7300 GT (NVIDIA GeForce 7300 GT), NVIDIA GeForce 7300 GT, NVIDIA GeForce 7300 GT (Prerelease - WDDM 1.0), NVIDIA GeForce 7300 GT by TweaksRUs", - "Videocard First Benchmarked": "2009-04-08", - "G3DMark/Price": "0.91", - "Overall Rank": "1911", - "Last Price Change": "$149.99 USD (2012-10-24)", - "Score": 136, - "Average G2D Mark": 33, - "Samples": 392 - } - ], - "gpu1235": [ - "GeForce 7300 LE", - { - "Bus Interface": "PCI-E x16", - "Max Memory Size": "128 MB", - "Core Clock(s)": "350 MHz", - "Memory Clock(s)": "666 MHz", - "DirectX": "9.0c", - "OpenGL": "2.1", - "Videocard Category": "Desktop", - "Other names": "MSI NX7300 LE (NVIDIA GeForce 7300 LE), NVIDIA GeForce 7300 LE, NVIDIA GeForce 7300 LE (Prerelease - WDDM 1.0), WinFast PX7300 LE", - "Videocard First Benchmarked": "2012-05-13", - "G3DMark/Price": "2.50", - "Overall Rank": "2082", - "Last Price Change": "$32 USD (2013-12-31)", - "Score": 80, - "Average G2D Mark": 48, - "Samples": 398 - } - ], - "gpu1236": [ - "GeForce 7300 SE", - { - "Bus Interface": "PCI-E x16", - "Max Memory Size": "128 MB", - "Core Clock(s)": "350 MHz", - "Memory Clock(s)": "666 MHz", - "DirectX": "9.0c", - "OpenGL": "2.1", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce 7300 SE, NVIDIA GeForce 7300 SE /7200 GS, NVIDIA GeForce 7300 SE/7200 GS", - "Videocard First Benchmarked": "2009-04-02", - "G3DMark/Price": "NA", - "Overall Rank": "2218", - "Last Price Change": "NA", - "Score": 39, - "Average G2D Mark": 251, - "Samples": 14 - } - ], - "gpu1238": [ - "GeForce 7300 SE/7200 GS", - { - "Bus Interface": "PCI-E x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "450 MHz", - "Memory Clock(s)": "400 MHz", - "DirectX": "9.0", - "OpenGL": "2.0", - "Videocard Category": "Workstation", - "Other names": "NVIDIA GeForce 7300 SE/7200 GS, NVIDIA GeForce 7300 SE/7200 GS (Prerelease - WDDM", - "Videocard First Benchmarked": "2009-10-08", - "G3DMark/Price": "NA", - "Overall Rank": "2177", - "Last Price Change": "NA", - "Score": 49, - "Average G2D Mark": 33, - "Samples": 427 - } - ], - "gpu3306": [ - "GeForce 730A", - { - "Other names": "NVIDIA GeForce 730A, NVIDIA GeForce 730A (Mobile)", - "Videocard First Benchmarked": "2015-09-11", - "G3DMark/Price": "NA", - "Overall Rank": "1219", - "Last Price Change": "NA", - "Score": 772, - "Average G2D Mark": 205, - "Samples": 44 - } - ], - "gpu1241": [ - "GeForce 7350 LE", - { - "Other names": "NVIDIA GeForce 7350 LE", - "Videocard First Benchmarked": "2009-06-25", - "G3DMark/Price": "NA", - "Overall Rank": "2092", - "Last Price Change": "NA", - "Score": 74, - "Average G2D Mark": 281, - "Samples": 7 - } - ], - "gpu39": [ - "GeForce 7500 LE", - { - "Bus Interface": "AGP 8x,PCI-E x16", - "Max Memory Size": "256 MB", - "Core Clock(s)": "263,324 MHz", - "Memory Clock(s)": "550 MHz", - "DirectX": "9.0c", - "OpenGL": "2.1", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce 7500 LE, NVIDIA GeForce 7500 LE (Prerelease - WDDM 1.0)", - "Videocard First Benchmarked": "2012-08-17", - "G3DMark/Price": "NA", - "Overall Rank": "2053", - "Last Price Change": "NA", - "Score": 90, - "Average G2D Mark": 69, - "Samples": 75 - } - ], - "gpu9": [ - "GeForce 7600 GS", - { - "Bus Interface": "AGP 8x,PCI-E x16", - "Max Memory Size": "256 MB", - "Core Clock(s)": "400 MHz", - "Memory Clock(s)": "800 MHz", - "DirectX": "9.0c", - "OpenGL": "2.1", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce 7600 GS, Inno3D GeForce 7600 GS, MSI NX7600 GS (NVIDIA GeForce 7600 GS), NVIDIA GeForce 7600 GS (NGOHQ.com), NVIDIA GeForce 7600 GS (Omega 1.169.25), NVIDIA GeForce 7600 GS (Omega 2.169.21), NVIDIA GeForce 7600 GS (Prerelease - WDDM 1.0), NVIDIA GeForce 7600 GS by GOZ@www.Tweakforce.com, NVIDIA GeForce 7600 GS [Dox Optimised 182.46], WinFast PX7600 GS, WinFast PX7600 GS Extreme(NVIDIA), WinFast PX7600 GS(NVIDIA)", - "Videocard First Benchmarked": "2012-08-10", - "G3DMark/Price": "0.90", - "Overall Rank": "1868", - "Last Price Change": "$175 USD (2020-03-10)", - "Score": 157, - "Average G2D Mark": 42, - "Samples": 552 - } - ], - "gpu1243": [ - "GeForce 7600 GT", - { - "Bus Interface": "AGP 8x,PCI-E x16", - "Max Memory Size": "256 MB", - "Core Clock(s)": "560 MHz", - "Memory Clock(s)": "1400 MHz", - "DirectX": "9.0c", - "OpenGL": "2.1", - "Videocard Category": "Desktop", - "Other names": "MSI NX7600 GT (NVIDIA GeForce 7600 GT), NVIDIA GeForce 7600 GT, NVIDIA GeForce 7600 GT (Omega 2.169.21), NVIDIA GeForce 7600 GT (Prerelease - WDDM 1.0), WinFast A7600 GT (NVIDIA), WinFast PX7600 GT Extreme, NVIDIA GeForce 7600 GT [NGOHQ.com]", - "Videocard First Benchmarked": "2009-10-01", - "G3DMark/Price": "1.09", - "Overall Rank": "1797", - "Last Price Change": "$199 USD (2021-05-13)", - "Score": 217, - "Average G2D Mark": 64, - "Samples": 437 - } - ], - "gpu1247": [ - "GeForce 7650 GS", - { - "Other names": "NVIDIA GeForce 7650 GS, NVIDIA GeForce 7650 GS (Prerelease - WDDM 1.0)", - "Videocard First Benchmarked": "2009-04-17", - "G3DMark/Price": "NA", - "Overall Rank": "1918", - "Last Price Change": "NA", - "Score": 134, - "Average G2D Mark": 335, - "Samples": 30 - } - ], - "gpu3519": [ - "GeForce 770M", - { - "Other names": "NVIDIA GeForce 770M", - "Videocard First Benchmarked": "2016-06-06", - "G3DMark/Price": "18.34", - "Overall Rank": "501", - "Last Price Change": "$176.99 USD (2020-03-10)", - "Score": 3246, - "Average G2D Mark": 500, - "Samples": 1 - } - ], - "gpu1248": [ - "GeForce 7800 GS", - { - "Bus Interface": "AGP 8x", - "Max Memory Size": "256 MB", - "Core Clock(s)": "375 MHz", - "Memory Clock(s)": "1200 MHz", - "DirectX": "9.0c", - "OpenGL": "2.1", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce 7800 GS, NVIDIA GeForce 7800 GS (Omega 1.169.25), NVIDIA GeForce 7800 GS (Prerelease - WDDM 1.0)", - "Videocard First Benchmarked": "2009-04-02", - "G3DMark/Price": "NA", - "Overall Rank": "1846", - "Last Price Change": "NA", - "Score": 177, - "Average G2D Mark": 199, - "Samples": 38 - } - ], - "gpu1249": [ - "GeForce 7800 GT", - { - "Bus Interface": "PCI-E x16", - "Max Memory Size": "256 MB", - "Core Clock(s)": "400 MHz", - "Memory Clock(s)": "1000 MHz", - "DirectX": "9.0c", - "OpenGL": "2.1", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce 7800 GT, NVIDIA GeForce 7800 GT (Prerelease - WDDM 1.0)", - "Videocard First Benchmarked": "2009-04-02", - "G3DMark/Price": "3.05", - "Overall Rank": "1770", - "Last Price Change": "$80 USD (2013-07-23)", - "Score": 244, - "Average G2D Mark": 273, - "Samples": 73 - } - ], - "gpu1250": [ - "GeForce 7800 GTX", - { - "Bus Interface": "PCI-E x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "550 MHz", - "Memory Clock(s)": "1700 MHz", - "DirectX": "9.0c", - "OpenGL": "2.1", - "Max TDP": "86 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce 7800 GTX, NVIDIA GeForce 7800 GTX (Omega 2.169.21), NVIDIA GeForce 7800 GTX (Prerelease - WDDM 1.0)", - "Videocard First Benchmarked": "2009-04-02", - "G3DMark/Price": "4.06", - "Overall Rank": "1725", - "Last Price Change": "$71.6 USD (2022-04-10)", - "Score": 291, - "Average G2D Mark": 196, - "Samples": 99 - } - ], - "gpu1251": [ - "GeForce 7900 GS", - { - "Bus Interface": "AGP 8x,PCI-E x16", - "Max Memory Size": "256 MB", - "Core Clock(s)": "450 MHz", - "Memory Clock(s)": "1320 MHz", - "DirectX": "9.0c", - "OpenGL": "2.1", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce 7900 GS, NVIDIA GeForce 7900 GS (NGOHQ.com), NVIDIA GeForce 7900 GS (Omega 1.169.25), NVIDIA GeForce 7900 GS (Omega 2.169.21), NVIDIA GeForce 7900 GS (Prerelease - WDDM 1.0)", - "Videocard First Benchmarked": "2009-04-03", - "G3DMark/Price": "NA", - "Overall Rank": "1763", - "Last Price Change": "NA", - "Score": 254, - "Average G2D Mark": 68, - "Samples": 224 - } - ], - "gpu1252": [ - "GeForce 7900 GT", - { - "Bus Interface": "PCI-E x16", - "Max Memory Size": "256 MB", - "Core Clock(s)": "450 MHz", - "Memory Clock(s)": "1320 MHz", - "DirectX": "9.0c", - "OpenGL": "2.1", - "Videocard Category": "Desktop", - "Other names": "MSI NX7900 GT (NVIDIA GeForce 7900 GT), NVIDIA GeForce 7900 GT", - "Videocard First Benchmarked": "2009-04-02", - "G3DMark/Price": "1.30", - "Overall Rank": "1758", - "Last Price Change": "$199 USD (2021-09-09)", - "Score": 258, - "Average G2D Mark": 160, - "Samples": 2 - } - ], - "gpu1253": [ - "GeForce 7900 GT/GTO", - { - "Bus Interface": "PCI-E x16", - "Max Memory Size": "256 MB", - "Core Clock(s)": "450 MHz", - "Memory Clock(s)": "1320 MHz", - "DirectX": "9.0c", - "OpenGL": "2.1", - "Videocard Category": "Desktop", - "Other names": "MSI NX7900 GT/GTO (NVIDIA GeForce 7900 GT/GTO), NVIDIA GeForce 7900 GT/GTO, NVIDIA GeForce 7900 GT/GTO (Prerelease - WDDM 1.0)", - "Videocard First Benchmarked": "2009-04-04", - "G3DMark/Price": "NA", - "Overall Rank": "1769", - "Last Price Change": "NA", - "Score": 247, - "Average G2D Mark": 469, - "Samples": 92 - } - ], - "gpu1254": [ - "GeForce 7900 GTX", - { - "Bus Interface": "PCI-E x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "650 MHz", - "Memory Clock(s)": "1600 MHz", - "DirectX": "9.0c", - "OpenGL": "2.1", - "Videocard Category": "Desktop", - "Other names": "MSI NX7900 GTX (NVIDIA GeForce 7900 GTX), NVIDIA GeForce 7900 GTX, NVIDIA GeForce 7900 GTX (Omega 2.169.21), NVIDIA GeForce 7900 GTX (Prerelease - WDDM 1.0)", - "Videocard First Benchmarked": "2009-04-03", - "G3DMark/Price": "NA", - "Overall Rank": "1641", - "Last Price Change": "NA", - "Score": 388, - "Average G2D Mark": 165, - "Samples": 90 - } - ], - "gpu1255": [ - "GeForce 7950 GT", - { - "Bus Interface": "AGP 8x,PCI-E x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "550 MHz", - "Memory Clock(s)": "1400 MHz", - "DirectX": "9.0c", - "OpenGL": "2.1", - "Videocard Category": "Desktop", - "Other names": "MSI NX7950 GT (NVIDIA GeForce 7950 GT), NVIDIA GeForce 7950 GT, NVIDIA GeForce 7950 GT (Omega 1.169.25), NVIDIA GeForce 7950 GT (Omega 2.169.21), NVIDIA GeForce 7950 GT (Prerelease - WDDM 1.0)", - "Videocard First Benchmarked": "2011-10-21", - "G3DMark/Price": "1.69", - "Overall Rank": "1677", - "Last Price Change": "$203.99 USD (2021-12-24)", - "Score": 344, - "Average G2D Mark": 189, - "Samples": 167 - } - ], - "gpu1256": [ - "GeForce 7950 GX2", - { - "Bus Interface": "PCI-E x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "500 MHz", - "Memory Clock(s)": "1200 MHz", - "DirectX": "9.0c", - "OpenGL": "2.1", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce 7950 GX2, NVIDIA GeForce 7950 GX2 (Prerelease - WDDM 1.0)", - "Videocard First Benchmarked": "2009-04-04", - "G3DMark/Price": "3.67", - "Overall Rank": "1819", - "Last Price Change": "$54.99 USD (2013-11-25)", - "Score": 202, - "Average G2D Mark": 413, - "Samples": 36 - } - ], - "gpu3389": [ - "GeForce 7950 Xtreme", - { - "Other names": "NVIDIA GeForce 7950 Xtreme", - "Videocard First Benchmarked": "2015-12-12", - "G3DMark/Price": "NA", - "Overall Rank": "1728", - "Last Price Change": "NA", - "Score": 288, - "Average G2D Mark": 288, - "Samples": 1 - } - ], - "gpu3356": [ - "GeForce 800A", - { - "Other names": "NVIDIA GeForce 800A, NVIDIA GeForce 800A (Mobile)", - "Videocard First Benchmarked": "2015-11-08", - "G3DMark/Price": "NA", - "Overall Rank": "1552", - "Last Price Change": "NA", - "Score": 477, - "Average G2D Mark": 165, - "Samples": 5 - } - ], - "gpu3015": [ - "GeForce 800M", - { - "Other names": "NVIDIA GeForce 800M, NVIDIA GeForce 800M (Mobile)", - "Videocard First Benchmarked": "2014-10-31", - "G3DMark/Price": "NA", - "Overall Rank": "1582", - "Last Price Change": "NA", - "Score": 457, - "Average G2D Mark": 203, - "Samples": 27 - } - ], - "gpu1257": [ - "GeForce 8100 / nForce 720a", - { - "Other names": "NVIDIA GeForce 8100 / nForce 720a, NVIDIA GeForce 8100 / nForce 720a (Prerelease - WD", - "Videocard First Benchmarked": "2009-04-08", - "G3DMark/Price": "NA", - "Overall Rank": "2085", - "Last Price Change": "NA", - "Score": 79, - "Average G2D Mark": 308, - "Samples": 16 - } - ], - "gpu3099": [ - "GeForce 810A", - { - "Other names": "NVIDIA GeForce 810A, NVIDIA GeForce 810A (Mobile)", - "Videocard First Benchmarked": "2014-12-29", - "G3DMark/Price": "NA", - "Overall Rank": "1373", - "Last Price Change": "NA", - "Score": 622, - "Average G2D Mark": 319, - "Samples": 11 - } - ], - "gpu3005": [ - "GeForce 810M", - { - "Other names": "NVIDIA GeForce 810M, NVIDIA GeForce 810M (Mobile)", - "Videocard First Benchmarked": "2014-10-29", - "G3DMark/Price": "NA", - "Overall Rank": "1621", - "Last Price Change": "NA", - "Score": 410, - "Average G2D Mark": 69, - "Samples": 81 - } - ], - "gpu1258": [ - "GeForce 8200", - { - "Other names": "NVIDIA GeForce 8200, NVIDIA GeForce 8200 (Prerelease - WDDM 1.1)", - "Videocard First Benchmarked": "2009-04-02", - "G3DMark/Price": "NA", - "Overall Rank": "1871", - "Last Price Change": "NA", - "Score": 156, - "Average G2D Mark": 71, - "Samples": 173 - } - ], - "gpu1259": [ - "GeForce 8200M G", - { - "Bus Interface": "Integrated (PCIe 2.0 x16)", - "Max Memory Size": "256 MB", - "Core Clock(s)": "400 MHz", - "Memory Clock(s)": "800,1066 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "19.2 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce 8200M G, NVIDIA GeForce 8200M G (Prerelease - WDDM 1.1), NVIDIA GeForce 8200M G (Mobile)", - "Videocard First Benchmarked": "2009-04-02", - "G3DMark/Price": "NA", - "Overall Rank": "2136", - "Last Price Change": "NA", - "Score": 62, - "Average G2D Mark": 45, - "Samples": 364 - } - ], - "gpu3210": [ - "GeForce 820A", - { - "Other names": "NVIDIA GeForce 820A, NVIDIA GeForce 820A (Mobile)", - "Videocard First Benchmarked": "2015-05-20", - "G3DMark/Price": "NA", - "Overall Rank": "1464", - "Last Price Change": "NA", - "Score": 556, - "Average G2D Mark": 158, - "Samples": 30 - } - ], - "gpu2785": [ - "GeForce 820M", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "954 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "15 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce 820M, NVIDIA GeForce 820M (Mobile)", - "Videocard First Benchmarked": "2014-07-05", - "G3DMark/Price": "NA", - "Overall Rank": "1526", - "Last Price Change": "NA", - "Score": 504, - "Average G2D Mark": 115, - "Samples": 2427 - } - ], - "gpu2971": [ - "GeForce 825M", - { - "Bus Interface": "PCIe 3.0 x8", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "850 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "33 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce 825M, NVIDIA GeForce 825M (Mobile)", - "Videocard First Benchmarked": "2014-10-07", - "G3DMark/Price": "NA", - "Overall Rank": "1206", - "Last Price Change": "NA", - "Score": 784, - "Average G2D Mark": 261, - "Samples": 37 - } - ], - "gpu1260": [ - "GeForce 8300", - { - "Other names": "NVIDIA GeForce 8300, NVIDIA GeForce 8300 (Prerelease - WDDM 1.1)", - "Videocard First Benchmarked": "2009-04-02", - "G3DMark/Price": "4.48", - "Overall Rank": "2019", - "Last Price Change": "$22.68 USD (2013-12-10)", - "Score": 102, - "Average G2D Mark": 168, - "Samples": 62 - } - ], - "gpu1261": [ - "GeForce 8300 GS", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "450 MHz", - "Memory Clock(s)": "800 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "40 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce 8300 GS", - "Videocard First Benchmarked": "2009-04-16", - "G3DMark/Price": "NA", - "Overall Rank": "1967", - "Last Price Change": "NA", - "Score": 115, - "Average G2D Mark": 111, - "Samples": 45 - } - ], - "gpu3094": [ - "GeForce 830A", - { - "Other names": "NVIDIA GeForce 830A, NVIDIA GeForce 830A (Mobile)", - "Videocard First Benchmarked": "2014-12-26", - "G3DMark/Price": "NA", - "Overall Rank": "983", - "Last Price Change": "NA", - "Score": 1138, - "Average G2D Mark": 487, - "Samples": 24 - } - ], - "gpu2982": [ - "GeForce 830M", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "1029 MHz", - "DirectX": "11.2", - "OpenGL": "4.5", - "Max TDP": "25 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce 830M, NVIDIA GeForce 830M (Mobile)", - "Videocard First Benchmarked": "2014-10-18", - "G3DMark/Price": "NA", - "Overall Rank": "1047", - "Last Price Change": "NA", - "Score": 1009, - "Average G2D Mark": 138, - "Samples": 315 - } - ], - "gpu1262": [ - "GeForce 8400", - { - "Other names": "NVIDIA GeForce 8400", - "Videocard First Benchmarked": "2009-04-09", - "G3DMark/Price": "0.14", - "Overall Rank": "2077", - "Last Price Change": "$589.99 USD (2020-03-16)", - "Score": 81, - "Average G2D Mark": 160, - "Samples": 50 - } - ], - "gpu73": [ - "GeForce 8400 GS", - { - "Bus Interface": "PCIe 1.0 x16,PCI", - "Max Memory Size": "512 MB", - "Core Clock(s)": "450 MHz", - "Memory Clock(s)": "800 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "40 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce 8400 GS, NVIDIA GeForce 8400GS, NVIDIA GeForce 8400 GS (Omega 1.169.25), NVIDIA GeForce 8400 GS (Omega 2.169.21), NVIDIA GeForce 8400 GS (Prerelease - WDDM 1.1)", - "Videocard First Benchmarked": "2012-08-19", - "G3DMark/Price": "1.74", - "Overall Rank": "1879", - "Last Price Change": "$85.97 USD (2021-12-17)", - "Score": 150, - "Average G2D Mark": 25, - "Samples": 3109 - } - ], - "gpu1264": [ - "GeForce 8400 SE", - { - "Other names": "NVIDIA GeForce 8400 SE", - "Videocard First Benchmarked": "2009-05-23", - "G3DMark/Price": "NA", - "Overall Rank": "2117", - "Last Price Change": "NA", - "Score": 68, - "Average G2D Mark": 290, - "Samples": 6 - } - ], - "gpu1265": [ - "GeForce 8400M G", - { - "Bus Interface": "PCIe x16", - "Max Memory Size": "128 MB", - "Core Clock(s)": "400 MHz", - "Memory Clock(s)": "800 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "10 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce 8400M G, NVIDIA GeForce 8400M G (Prerelease - WDDM 1.1)", - "Videocard First Benchmarked": "2009-04-04", - "G3DMark/Price": "NA", - "Overall Rank": "2146", - "Last Price Change": "NA", - "Score": 59, - "Average G2D Mark": 241, - "Samples": 96 - } - ], - "gpu1266": [ - "GeForce 8400M GS", - { - "Bus Interface": "PCIe x16", - "Max Memory Size": "128 MB", - "Core Clock(s)": "400 MHz", - "Memory Clock(s)": "800 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "11 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce 8400M GS, NVIDIA GeForce 8400M GS (Prerelease - WDDM 1.1), NVIDIA GeForce 8400M GS nvac, NVIDIA GeForce 8400M GS [Dox Optimised 180.84], NVIDIA GeForce 8400M GS [Dox Optimised 182.05], NVIDIA GeForce 8400M GS [Dox Optimised 182.46], NVIDIA GeForce 8400M GS [Dox Optimised 185.68], NVIDIA GeForce 8400M GS (Mobile)", - "Videocard First Benchmarked": "2009-04-01", - "G3DMark/Price": "1.44", - "Overall Rank": "1981", - "Last Price Change": "$78.2 USD (2021-05-13)", - "Score": 113, - "Average G2D Mark": 41, - "Samples": 631 - } - ], - "gpu1268": [ - "GeForce 8400M GT", - { - "Bus Interface": "PCIe x16", - "Max Memory Size": "256 MB", - "Core Clock(s)": "450 MHz", - "Memory Clock(s)": "1200 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "14 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce 8400M GT, NVIDIA GeForce 8400M GT (Prerelease - WDDM 1.1), NVIDIA GeForce 8400M GT (Sony Vaio ), NVIDIA GeForce 8400M GT (Sony Vaio AR51J), NVIDIA GeForce 8400M GT (Sony VAIO), NVIDIA GeForce 8400M GT [Dox Optimised 185.68], NVIDIA GeForce 8400M GT (Mobile)", - "Videocard First Benchmarked": "2009-04-05", - "G3DMark/Price": "NA", - "Overall Rank": "2126", - "Last Price Change": "NA", - "Score": 67, - "Average G2D Mark": 56, - "Samples": 103 - } - ], - "gpu3045": [ - "GeForce 840A", - { - "Other names": "NVIDIA GeForce 840A, NVIDIA GeForce 840A (Mobile)", - "Videocard First Benchmarked": "2014-11-15", - "G3DMark/Price": "NA", - "Overall Rank": "969", - "Last Price Change": "NA", - "Score": 1180, - "Average G2D Mark": 266, - "Samples": 35 - } - ], - "gpu2873": [ - "GeForce 840M", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "1029 MHz", - "DirectX": "11.2", - "OpenGL": "4.5", - "Max TDP": "30 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce 840M, NVIDIA GeForce 840M (Mobile)", - "Videocard First Benchmarked": "2014-05-23", - "G3DMark/Price": "NA", - "Overall Rank": "1012", - "Last Price Change": "NA", - "Score": 1082, - "Average G2D Mark": 149, - "Samples": 4478 - } - ], - "gpu3126": [ - "GeForce 845M", - { - "Bus Interface": "PCIe 3.0 x16", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce 845M, NVIDIA GeForce 845M (Mobile)", - "Videocard First Benchmarked": "2015-02-03", - "G3DMark/Price": "NA", - "Overall Rank": "864", - "Last Price Change": "NA", - "Score": 1507, - "Average G2D Mark": 217, - "Samples": 82 - } - ], - "gpu1270": [ - "GeForce 8500 GT", - { - "Bus Interface": "PCIe 1.0 x16,PCI", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "450 MHz", - "Memory Clock(s)": "400 (800) MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "45 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce 8500 GT, NVIDIA GeForce 8500 GT (Omega 2.169.21), NVIDIA GeForce 8500 GT (Prerelease - WDDM 1.1)", - "Videocard First Benchmarked": "2009-04-01", - "G3DMark/Price": "NA", - "Overall Rank": "1939", - "Last Price Change": "NA", - "Score": 124, - "Average G2D Mark": 34, - "Samples": 1133 - } - ], - "gpu1272": [ - "GeForce 8600 GS", - { - "Bus Interface": "PCIe 1.0 x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "540 MHz", - "Memory Clock(s)": "800 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "47 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce 8600 GS, NVIDIA GeForce 8600GS, NVIDIA GeForce 8600GS (Prerelease - WDDM 1.1)", - "Videocard First Benchmarked": "2009-04-20", - "G3DMark/Price": "NA", - "Overall Rank": "2046", - "Last Price Change": "NA", - "Score": 92, - "Average G2D Mark": 100, - "Samples": 93 - } - ], - "gpu64": [ - "GeForce 8600 GT", - { - "Bus Interface": "PCIe 1.0 x16,PCI", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "540 MHz", - "Memory Clock(s)": "800,1400 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "47 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce 8600 GT, NVIDIA GeForce 8600 GT (Omega 1.169.25), NVIDIA GeForce 8600 GT (Omega 2.169.21), NVIDIA GeForce 8600 GT (Prerelease - WDDM 1.1)", - "Videocard First Benchmarked": "2012-08-18", - "G3DMark/Price": "0.60", - "Overall Rank": "1960", - "Last Price Change": "$196 USD (2022-04-15)", - "Score": 117, - "Average G2D Mark": 43, - "Samples": 2137 - } - ], - "gpu118": [ - "GeForce 8600 GTS", - { - "Bus Interface": "PCIe 1.0 x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "675 MHz", - "Memory Clock(s)": "2000 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "75 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce 8600 GTS, NVIDIA GeForce 8600 GTS (Omega 2.169.21), NVIDIA GeForce 8600 GTS (Prerelease - WDDM 1.1)", - "Videocard First Benchmarked": "2012-08-22", - "G3DMark/Price": "0.62", - "Overall Rank": "1880", - "Last Price Change": "$241.99 USD (2022-04-10)", - "Score": 150, - "Average G2D Mark": 29, - "Samples": 642 - } - ], - "gpu1274": [ - "GeForce 8600M GS", - { - "Bus Interface": "PCIe x16", - "Max Memory Size": "256 MB", - "Core Clock(s)": "600 MHz", - "Memory Clock(s)": "1400 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "20 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce 8600GS, NVIDIA GeForce 8600M GS, NVIDIA GeForce 8600M GS (Prerelease - WDDM 1.1), NVIDIA GeForce 8600M GS [Dox Optimised 181.20: Per, NVIDIA GeForce 8600M GS [Dox Optimised 181.20: Qua, NVIDIA GeForce 8600M GS [Dox Optimised 185.68], NVIDIA GeForce 8600M GS (Mobile)", - "Videocard First Benchmarked": "2009-04-02", - "G3DMark/Price": "NA", - "Overall Rank": "2108", - "Last Price Change": "NA", - "Score": 70, - "Average G2D Mark": 38, - "Samples": 311 - } - ], - "gpu1275": [ - "GeForce 8600M GT", - { - "Bus Interface": "PCIe x16", - "Max Memory Size": "256 MB", - "Core Clock(s)": "475 MHz", - "Memory Clock(s)": "800 / 1400 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "20 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce 8600M GT, NVIDIA GeForce 8600M GT (Prerelease - WDDM 1.1), NVIDIA GeForce 8600M GT [Custom Forceware 178.24], NVIDIA GeForce 8600M GT [Dox Optimised 185.68], NVIDIA GeForce 8600M GT (Mobile)", - "Videocard First Benchmarked": "2011-04-07", - "G3DMark/Price": "0.83", - "Overall Rank": "2051", - "Last Price Change": "$108.1 USD (2021-05-13)", - "Score": 90, - "Average G2D Mark": 29, - "Samples": 751 - } - ], - "gpu1276": [ - "GeForce 8700M GT", - { - "Bus Interface": "PCIe x16", - "Max Memory Size": "256 MB", - "Core Clock(s)": "625 MHz", - "Memory Clock(s)": "1600 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "29 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce 8700M GT, NVIDIA GeForce 8700M GT (Prerelease - WDDM 1.1), NVIDIA GeForce 8700M GT [Dox Optimised 182.46], NVIDIA GeForce 8700M GT (Mobile)", - "Videocard First Benchmarked": "2009-04-02", - "G3DMark/Price": "NA", - "Overall Rank": "1937", - "Last Price Change": "NA", - "Score": 124, - "Average G2D Mark": 57, - "Samples": 107 - } - ], - "gpu1277": [ - "GeForce 8800 GS", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "768 MB", - "Core Clock(s)": "550 MHz", - "Memory Clock(s)": "1600 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "105 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce 8800 GS, NVIDIA GeForce 8800 GS (Prerelease - WDDM 1.1), NVIDIA GeForce 8800 GS (Mobile)", - "Videocard First Benchmarked": "2009-08-01", - "G3DMark/Price": "NA", - "Overall Rank": "1691", - "Last Price Change": "NA", - "Score": 330, - "Average G2D Mark": 121, - "Samples": 108 - } - ], - "gpu1279": [ - "GeForce 8800 GT", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "600 MHz", - "Memory Clock(s)": "1800 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "125 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce 8800 GT, NVIDIA GeForce 8800 GT (Omega 1.169.25), NVIDIA GeForce 8800 GT (Omega 2.169.21), NVIDIA GeForce 8800 GT (Prerelease - WDDM 1.1)", - "Videocard First Benchmarked": "2009-04-02", - "G3DMark/Price": "7.05", - "Overall Rank": "1537", - "Last Price Change": "$69.99 USD (2022-04-10)", - "Score": 494, - "Average G2D Mark": 65, - "Samples": 1668 - } - ], - "gpu101": [ - "GeForce 8800 GTS", - { - "Bus Interface": "PCIe 1.0 x16", - "Max Memory Size": "320 MB", - "Core Clock(s)": "500,513 MHz", - "Memory Clock(s)": "1600 MHz", - "DirectX": "10.0", - "OpenGL": "3.3", - "Max TDP": "146 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce 8800 GTS, NVIDIA GeForce 8800 GTS (Prerelease - WDDM 1.1), NVIDIA GeForce 8800 GTS [Dox Optimised 185.68]", - "Videocard First Benchmarked": "2012-08-21", - "G3DMark/Price": "5.27", - "Overall Rank": "1615", - "Last Price Change": "$79.99 USD (2021-11-20)", - "Score": 422, - "Average G2D Mark": 33, - "Samples": 862 - } - ], - "gpu63": [ - "GeForce 8800 GTS 512", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "650 MHz", - "Memory Clock(s)": "1940 MHz", - "DirectX": "10.0", - "OpenGL": "3.3", - "Max TDP": "135 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce 8800 GTS 512, NVIDIA GeForce 8800 GTS 512 (Omega 2.169.21), NVIDIA GeForce 8800 GTS 512 (Prerelease - WDDM 1.1", - "Videocard First Benchmarked": "2012-08-18", - "G3DMark/Price": "NA", - "Overall Rank": "1440", - "Last Price Change": "NA", - "Score": 575, - "Average G2D Mark": 81, - "Samples": 418 - } - ], - "gpu119": [ - "GeForce 8800 GTX", - { - "Bus Interface": "PCIe 1.0 x16", - "Max Memory Size": "768 MB", - "Core Clock(s)": "575 MHz", - "Memory Clock(s)": "1800 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "155 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce 8800 GTX, NVIDIA GeForce 8800 GTX (Prerelease - WDDM 1.1), NVIDIA GeForce 8800 GTX [Dox Optimised 185.68]", - "Videocard First Benchmarked": "2012-08-22", - "G3DMark/Price": "4.92", - "Overall Rank": "1417", - "Last Price Change": "$119.99 USD (2022-03-30)", - "Score": 590, - "Average G2D Mark": 98, - "Samples": 568 - } - ], - "gpu1281": [ - "GeForce 8800 Ultra", - { - "Bus Interface": "PCIe 1.0 x16", - "Max Memory Size": "768 MB", - "Core Clock(s)": "612 MHz", - "Memory Clock(s)": "2160 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "171 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce 8800 Ultra, NVIDIA GeForce 8800 Ultra (Prerelease - WDDM 1.1)", - "Videocard First Benchmarked": "2009-04-02", - "G3DMark/Price": "NA", - "Overall Rank": "1347", - "Last Price Change": "NA", - "Score": 643, - "Average G2D Mark": 252, - "Samples": 41 - } - ], - "gpu1284": [ - "GeForce 8800M GTS", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "500 MHz", - "Memory Clock(s)": "1600 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "50 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce 8800M GTS, NVIDIA GeForce 8800M GTS (Prerelease - WDDM 1.1), NVIDIA GeForce 8800M GTS [Dox Optimised 181.22], NVIDIA GeForce 8800M GTS (Mobile)", - "Videocard First Benchmarked": "2012-08-15", - "G3DMark/Price": "NA", - "Overall Rank": "1642", - "Last Price Change": "NA", - "Score": 382, - "Average G2D Mark": 159, - "Samples": 36 - } - ], - "gpu1285": [ - "GeForce 8800M GTX", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "500 MHz", - "Memory Clock(s)": "1600 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "65 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce 8800M GTX, NVIDIA GeForce 8800M GTX [Custom Forceware 180.43], NVIDIA GeForce 8800M GTX (Mobile)", - "Videocard First Benchmarked": "2009-04-06", - "G3DMark/Price": "NA", - "Overall Rank": "1577", - "Last Price Change": "NA", - "Score": 462, - "Average G2D Mark": 175, - "Samples": 47 - } - ], - "gpu1286": [ - "GeForce 9100", - { - "Other names": "NVIDIA GeForce 9100", - "Videocard First Benchmarked": "2009-04-13", - "G3DMark/Price": "NA", - "Overall Rank": "2071", - "Last Price Change": "NA", - "Score": 82, - "Average G2D Mark": 345, - "Samples": 113 - } - ], - "gpu1287": [ - "GeForce 9100M G", - { - "Other names": "NVIDIA GeForce 9100M G, NVIDIA GeForce 9100M G (Mobile)", - "Videocard First Benchmarked": "2009-04-02", - "G3DMark/Price": "NA", - "Overall Rank": "2118", - "Last Price Change": "NA", - "Score": 68, - "Average G2D Mark": 47, - "Samples": 82 - } - ], - "gpu3285": [ - "GeForce 910M", - { - "Other names": "NVIDIA GeForce 910M, NVIDIA GeForce 910M (Mobile)", - "Videocard First Benchmarked": "2015-08-15", - "G3DMark/Price": "NA", - "Overall Rank": "1413", - "Last Price Change": "NA", - "Score": 591, - "Average G2D Mark": 137, - "Samples": 19 - } - ], - "gpu1288": [ - "GeForce 9200", - { - "Other names": "NVIDIA GeForce 9200", - "Videocard First Benchmarked": "2009-05-15", - "G3DMark/Price": "NA", - "Overall Rank": "1862", - "Last Price Change": "NA", - "Score": 165, - "Average G2D Mark": 29, - "Samples": 252 - } - ], - "gpu1289": [ - "GeForce 9200M GE", - { - "Other names": "NVIDIA GeForce 9200M GE, NVIDIA GeForce 9200M GE (Mobile)", - "Videocard First Benchmarked": "2009-04-19", - "G3DMark/Price": "NA", - "Overall Rank": "1890", - "Last Price Change": "NA", - "Score": 144, - "Average G2D Mark": 61, - "Samples": 51 - } - ], - "gpu1290": [ - "GeForce 9200M GS", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "256 MB", - "Core Clock(s)": "550 MHz", - "Memory Clock(s)": "1400 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "13 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce 9200M GS, NVIDIA GeForce 9200M GS (Prerelease - WDDM 1.1), NVIDIA GeForce 9200M GS (Mobile)", - "Videocard First Benchmarked": "2009-04-02", - "G3DMark/Price": "NA", - "Overall Rank": "1985", - "Last Price Change": "NA", - "Score": 111, - "Average G2D Mark": 55, - "Samples": 197 - } - ], - "gpu3565": [ - "GeForce 920A", - { - "Other names": "NVIDIA GeForce 920A, NVIDIA GeForce 920A (Mobile)", - "Videocard First Benchmarked": "2016-08-19", - "G3DMark/Price": "NA", - "Overall Rank": "1149", - "Last Price Change": "NA", - "Score": 850, - "Average G2D Mark": 172, - "Samples": 18 - } - ], - "gpu3192": [ - "GeForce 920M", - { - "Other names": "NVIDIA GeForce 920M, NVIDIA GeForce 920M (Mobile)", - "Videocard First Benchmarked": "2015-04-16", - "G3DMark/Price": "NA", - "Overall Rank": "1270", - "Last Price Change": "NA", - "Score": 726, - "Average G2D Mark": 119, - "Samples": 2423 - } - ], - "gpu3520": [ - "GeForce 920MX", - { - "Other names": "NVIDIA GeForce 920MX, NVIDIA GeForce 920MX (Mobile)", - "Videocard First Benchmarked": "2016-06-08", - "G3DMark/Price": "NA", - "Overall Rank": "1011", - "Last Price Change": "NA", - "Score": 1083, - "Average G2D Mark": 151, - "Samples": 937 - } - ], - "gpu1291": [ - "GeForce 9300", - { - "Other names": "NVIDIA GeForce 9300", - "Videocard First Benchmarked": "2009-04-02", - "G3DMark/Price": "2.15", - "Overall Rank": "1932", - "Last Price Change": "$59 USD (2021-07-03)", - "Score": 127, - "Average G2D Mark": 385, - "Samples": 2 - } - ], - "gpu1292": [ - "GeForce 9300 / nForce 730i", - { - "Other names": "NVIDIA GeForce 9300 / nForce 730i", - "Videocard First Benchmarked": "2009-04-17", - "G3DMark/Price": "NA", - "Overall Rank": "1926", - "Last Price Change": "NA", - "Score": 129, - "Average G2D Mark": 367, - "Samples": 50 - } - ], - "gpu1293": [ - "GeForce 9300 GE", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "256 MB", - "Core Clock(s)": "540 MHz", - "Memory Clock(s)": "1000 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce 9300 GE", - "Videocard First Benchmarked": "2009-04-02", - "G3DMark/Price": "3.32", - "Overall Rank": "2088", - "Last Price Change": "$22.99 USD (2011-08-17)", - "Score": 76, - "Average G2D Mark": 40, - "Samples": 235 - } - ], - "gpu1294": [ - "GeForce 9300 GS", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "256 MB", - "Core Clock(s)": "567 MHz", - "Memory Clock(s)": "1000 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce 9300 GS", - "Videocard First Benchmarked": "2009-05-27", - "G3DMark/Price": "1.71", - "Overall Rank": "2015", - "Last Price Change": "$59.95 USD (2011-11-06)", - "Score": 102, - "Average G2D Mark": 80, - "Samples": 42 - } - ], - "gpu3128": [ - "GeForce 9300 SE", - { - "Other names": "NVIDIA GeForce 9300 SE", - "Videocard First Benchmarked": "2015-02-05", - "G3DMark/Price": "NA", - "Overall Rank": "2075", - "Last Price Change": "NA", - "Score": 82, - "Average G2D Mark": 344, - "Samples": 1 - } - ], - "gpu1295": [ - "GeForce 9300GE", - { - "Other names": "NVIDIA GeForce 9300GE", - "Videocard First Benchmarked": "2009-04-06", - "G3DMark/Price": "1.01", - "Overall Rank": "2029", - "Last Price Change": "$97.2 USD (2021-08-28)", - "Score": 98, - "Average G2D Mark": 367, - "Samples": 2 - } - ], - "gpu1296": [ - "GeForce 9300M G", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "256 MB", - "Core Clock(s)": "400 MHz", - "Memory Clock(s)": "1200 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "13 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce 9300M G, NVIDIA GeForce 9300M G (Prerelease - WDDM 1.1), NVIDIA GeForce 9300M G [Custom Forceware 178.24], NVIDIA GeForce 9300M G (Mobile)", - "Videocard First Benchmarked": "2009-05-22", - "G3DMark/Price": "NA", - "Overall Rank": "2062", - "Last Price Change": "NA", - "Score": 85, - "Average G2D Mark": 242, - "Samples": 50 - } - ], - "gpu1297": [ - "GeForce 9300M GS", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "256 MB", - "Core Clock(s)": "550 MHz", - "Memory Clock(s)": "1400 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "13 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce 9300M GS, NVIDIA GeForce 9300M GS (Prerelease - WDDM 1.1), NVIDIA GeForce 9300M GS [Dox Optimised 182.46], NVIDIA GeForce 9300M GS (Mobile)", - "Videocard First Benchmarked": "2009-04-01", - "G3DMark/Price": "2.02", - "Overall Rank": "2056", - "Last Price Change": "$43.42 USD (2021-05-13)", - "Score": 88, - "Average G2D Mark": 29, - "Samples": 491 - } - ], - "gpu3417": [ - "GeForce 930A", - { - "Other names": "NVIDIA GeForce 930A, NVIDIA GeForce 930A (Mobile)", - "Videocard First Benchmarked": "2016-01-14", - "G3DMark/Price": "NA", - "Overall Rank": "921", - "Last Price Change": "NA", - "Score": 1309, - "Average G2D Mark": 223, - "Samples": 29 - } - ], - "gpu3252": [ - "GeForce 930M", - { - "Other names": "NVIDIA GeForce 930M, NVIDIA GeForce 930M (Mobile)", - "Videocard First Benchmarked": "2015-07-11", - "G3DMark/Price": "NA", - "Overall Rank": "1044", - "Last Price Change": "NA", - "Score": 1013, - "Average G2D Mark": 150, - "Samples": 718 - } - ], - "gpu3549": [ - "GeForce 930MX", - { - "Bus Interface": "PCI Express 3.0", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "952 MHz", - "Memory Clock(s)": "900 MHz", - "DirectX": "12", - "OpenGL": "4.5", - "Max TDP": "17 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce 930MX, NVIDIA GeForce 930MX (Mobile)", - "Videocard First Benchmarked": "2016-07-20", - "G3DMark/Price": "NA", - "Overall Rank": "928", - "Last Price Change": "NA", - "Score": 1295, - "Average G2D Mark": 195, - "Samples": 963 - } - ], - "gpu1298": [ - "GeForce 9400", - { - "Other names": "NVIDIA GeForce 9400, NVIDIA GeForce 9400 (GeForce 8200 + GeForce 9300 G, NVIDIA GeForce 9400 (GeForce 9300GE + GeForce 8200, NVIDIA GeForce 9400 (GF 8200 + GF 9300), NVIDIA GeForce 9400 (GF 9300 + GF 8200), NVIDIA GeForce 9400 (Prerelease - WDDM 1.1), NVIDIA GeForce 9400 (GeForce 8200 + GeForce 9300 GE), NVIDIA GeForce 9400 (Mobile)", - "Videocard First Benchmarked": "2009-04-12", - "G3DMark/Price": "NA", - "Overall Rank": "2023", - "Last Price Change": "NA", - "Score": 99, - "Average G2D Mark": 72, - "Samples": 86 - } - ], - "gpu11": [ - "GeForce 9400 GT", - { - "Bus Interface": "PCIe 2.0 x16,PCI", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "550 MHz", - "Memory Clock(s)": "800,1600 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "50 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce 9400 GT, Geforce 9400GT, NVIDIA GeForce 9400 GT (Prerelease - WDDM 1.1), WinFast PX9400 GT(NVIDIA)", - "Videocard First Benchmarked": "2010-11-03", - "G3DMark/Price": "0.83", - "Overall Rank": "1920", - "Last Price Change": "$159.99 USD (2022-04-10)", - "Score": 132, - "Average G2D Mark": 40, - "Samples": 1390 - } - ], - "gpu1299": [ - "GeForce 9400M", - { - "Other names": "NVIDIA GeForce 9400M, NVIDIA GeForce 9400M (GF 9100MG + GF 9300MGS), NVIDIA GeForce 9400M (Prerelease - WDDM 1.1), NVIDIA GeForce 9400M (GF 9300MGS + GF 9100MG), NVIDIA GeForce 9400M (Mobile)", - "Videocard First Benchmarked": "2009-04-13", - "G3DMark/Price": "NA", - "Overall Rank": "2121", - "Last Price Change": "NA", - "Score": 68, - "Average G2D Mark": 64, - "Samples": 115 - } - ], - "gpu1300": [ - "GeForce 9400M G", - { - "Bus Interface": "Integrated(PCIe 2.0 x16)", - "Max Memory Size": "256 MB", - "Core Clock(s)": "450 MHz", - "Memory Clock(s)": "800,1066 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "12 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce 9400M G, NVIDIA GeForce 9400M G (Mobile)", - "Videocard First Benchmarked": "2009-07-30", - "G3DMark/Price": "NA", - "Overall Rank": "2122", - "Last Price Change": "NA", - "Score": 68, - "Average G2D Mark": 61, - "Samples": 113 - } - ], - "gpu3393": [ - "GeForce 940A", - { - "Other names": "NVIDIA GeForce 940A, NVIDIA GeForce 940A (Mobile)", - "Videocard First Benchmarked": "2015-12-20", - "G3DMark/Price": "NA", - "Overall Rank": "999", - "Last Price Change": "NA", - "Score": 1107, - "Average G2D Mark": 214, - "Samples": 7 - } - ], - "gpu3155": [ - "GeForce 940M", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "1072 MHz", - "Memory Clock(s)": "2000 MHz", - "DirectX": "12", - "OpenGL": "4.5", - "Max TDP": "33 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce 940M, NVIDIA GeForce 940M (Mobile)", - "Videocard First Benchmarked": "2015-03-10", - "G3DMark/Price": "NA", - "Overall Rank": "989", - "Last Price Change": "NA", - "Score": 1122, - "Average G2D Mark": 153, - "Samples": 2712 - } - ], - "gpu3453": [ - "GeForce 940MX", - { - "Other names": "NVIDIA GeForce 940MX, NVIDIA GeForce 940MX (Mobile)", - "Videocard First Benchmarked": "2016-03-22", - "G3DMark/Price": "NA", - "Overall Rank": "862", - "Last Price Change": "NA", - "Score": 1510, - "Average G2D Mark": 171, - "Samples": 5393 - } - ], - "gpu2466": [ - "GeForce 9450", - { - "Other names": "NVIDIA GeForce 9450 (GF 9300 + GF 9300)", - "Videocard First Benchmarked": "2013-03-30", - "G3DMark/Price": "NA", - "Overall Rank": "2006", - "Last Price Change": "NA", - "Score": 105, - "Average G2D Mark": 342, - "Samples": 1 - } - ], - "gpu4094": [ - "GeForce 945A", - { - "Other names": "NVIDIA GeForce 945A", - "Videocard First Benchmarked": "2019-05-18", - "G3DMark/Price": "NA", - "Overall Rank": "756", - "Last Price Change": "NA", - "Score": 1852, - "Average G2D Mark": 716, - "Samples": 1 - } - ], - "gpu3388": [ - "GeForce 945M", - { - "Other names": "NVIDIA GeForce 945M, NVIDIA GeForce 945M (Mobile)", - "Videocard First Benchmarked": "2015-12-12", - "G3DMark/Price": "NA", - "Overall Rank": "680", - "Last Price Change": "NA", - "Score": 2108, - "Average G2D Mark": 255, - "Samples": 40 - } - ], - "gpu78": [ - "GeForce 9500 GS", - { - "Other names": "NVIDIA GeForce 9500 GS, NVIDIA GeForce 9500 GS (Prerelease - WDDM 1.1)", - "Videocard First Benchmarked": "2012-08-19", - "G3DMark/Price": "NA", - "Overall Rank": "1835", - "Last Price Change": "NA", - "Score": 187, - "Average G2D Mark": 38, - "Samples": 217 - } - ], - "gpu1304": [ - "GeForce 9500 GT", - { - "Bus Interface": "PCIe 2.0 x16,PCI", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "550 MHz", - "Memory Clock(s)": "1000,1600 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "50 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce 9500 GT, NVIDIA GeForce 9500 GT (Prerelease - WDDM 1.1)", - "Videocard First Benchmarked": "2009-04-01", - "G3DMark/Price": "1.76", - "Overall Rank": "1875", - "Last Price Change": "$85.99 USD (2012-02-14)", - "Score": 151, - "Average G2D Mark": 34, - "Samples": 3399 - } - ], - "gpu1305": [ - "GeForce 9500M", - { - "Other names": "NVIDIA GeForce 9500M (GF 9400MG + GF 9200MGS), NVIDIA GeForce 9500M (GF 9200MGS + GF 9400MG)", - "Videocard First Benchmarked": "2009-04-12", - "G3DMark/Price": "1.02", - "Overall Rank": "2011", - "Last Price Change": "$101.2 USD (2021-05-13)", - "Score": 104, - "Average G2D Mark": 320, - "Samples": 7 - } - ], - "gpu1306": [ - "GeForce 9500M G", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "500 MHz", - "Memory Clock(s)": "1600 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "20 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce 9500M G, NVIDIA GeForce 9500M G (Mobile)", - "Videocard First Benchmarked": "2009-07-29", - "G3DMark/Price": "NA", - "Overall Rank": "1947", - "Last Price Change": "NA", - "Score": 122, - "Average G2D Mark": 172, - "Samples": 3 - } - ], - "gpu1307": [ - "GeForce 9500M GS", - { - "Bus Interface": "PCIe x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "475 MHz", - "Memory Clock(s)": "1400 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "20 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce 9500M GS, NVIDIA GeForce 9500M GS (Prerelease - WDDM 1.1), NVIDIA GeForce 9500M GS (Mobile)", - "Videocard First Benchmarked": "2009-04-26", - "G3DMark/Price": "NA", - "Overall Rank": "2016", - "Last Price Change": "NA", - "Score": 102, - "Average G2D Mark": 65, - "Samples": 131 - } - ], - "gpu1308": [ - "GeForce 9600 GS", - { - "Bus Interface": "PCIe 2.0 x16,PCI", - "Max Memory Size": "768 MB", - "Core Clock(s)": "500 MHz", - "Memory Clock(s)": "1000 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce 9600 GS", - "Videocard First Benchmarked": "2010-01-14", - "G3DMark/Price": "NA", - "Overall Rank": "1735", - "Last Price Change": "NA", - "Score": 282, - "Average G2D Mark": 41, - "Samples": 123 - } - ], - "gpu1309": [ - "GeForce 9600 GSO", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "1536 MB", - "Core Clock(s)": "550 MHz", - "Memory Clock(s)": "1600 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "84 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce 9600 GSO, NVIDIA GeForce 9600 GSO (Prerelease - WDDM 1.1)", - "Videocard First Benchmarked": "2009-04-02", - "G3DMark/Price": "6.54", - "Overall Rank": "1695", - "Last Price Change": "$49.99 USD (2011-12-02)", - "Score": 327, - "Average G2D Mark": 102, - "Samples": 250 - } - ], - "gpu1310": [ - "GeForce 9600 GSO 512", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "650 MHz", - "Memory Clock(s)": "1800 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "90 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce 9600 GSO 512, NVIDIA GeForce 9600 GSO 512 (Prerelease - WDDM 1.1", - "Videocard First Benchmarked": "2009-04-03", - "G3DMark/Price": "NA", - "Overall Rank": "1692", - "Last Price Change": "NA", - "Score": 330, - "Average G2D Mark": 79, - "Samples": 95 - } - ], - "gpu95": [ - "GeForce 9600 GT", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "650 MHz", - "Memory Clock(s)": "1800 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "95 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce 9600 GT, GeForce 9600 GT, NVIDIA GeForce 9600 GT (Prerelease - WDDM 1.1), NVIDIA GeForce 9600GT, (PE64) NVIDIA GeForce 9600 GT", - "Videocard First Benchmarked": "2011-02-07", - "G3DMark/Price": "7.56", - "Overall Rank": "1539", - "Last Price Change": "$64.99 USD (2022-03-30)", - "Score": 491, - "Average G2D Mark": 48, - "Samples": 3739 - } - ], - "gpu1313": [ - "GeForce 9600M GS", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "430 MHz", - "Memory Clock(s)": "800,1600 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "20 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce 9600M GS, NVIDIA GeForce 9600M GS (Prerelease - WDDM 1.1), NVIDIA GeForce 9600M GS [Dox Optimised 182.05: Per, NVIDIA GeForce 9600M GS (Mobile)", - "Videocard First Benchmarked": "2009-04-03", - "G3DMark/Price": "NA", - "Overall Rank": "1959", - "Last Price Change": "NA", - "Score": 118, - "Average G2D Mark": 60, - "Samples": 250 - } - ], - "gpu1314": [ - "GeForce 9600M GT", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "500 MHz", - "Memory Clock(s)": "1600 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "23 W", - "Videocard Category": "Mobile", - "Other names": "APPLE GeForce 9600M GT, NVIDIA GeForce 9600M GT, NVIDIA GeForce 9600M GT (197.13), NVIDIA GeForce 9600M GT (Prerelease - WDDM 1.1), NVIDIA GeForce 9600M GT [Custom Forceware 180.43], NVIDIA GeForce 9600M GT [Dox Optimised 182.05: Per, NVIDIA GeForce 9600M GT [Dox Optimised 185.68], NVIDIA GeForce 9600M GT (Mobile)", - "Videocard First Benchmarked": "2009-04-02", - "G3DMark/Price": "1.76", - "Overall Rank": "1906", - "Last Price Change": "$78.2 USD (2021-05-13)", - "Score": 138, - "Average G2D Mark": 30, - "Samples": 961 - } - ], - "gpu1315": [ - "GeForce 9600M GT / GeForce GT 220M", - { - "Other names": "NVIDIA GeForce 9600M GT / GeForce GT 220M", - "Videocard First Benchmarked": "2010-05-30", - "G3DMark/Price": "NA", - "Overall Rank": "1722", - "Last Price Change": "NA", - "Score": 293, - "Average G2D Mark": 291, - "Samples": 5 - } - ], - "gpu1316": [ - "GeForce 9650M GS", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "625 MHz", - "Memory Clock(s)": "1600 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "29 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce 9650M GS, NVIDIA GeForce 9650M GS (Prerelease - WDDM 1.1)", - "Videocard First Benchmarked": "2009-04-29", - "G3DMark/Price": "NA", - "Overall Rank": "1743", - "Last Price Change": "NA", - "Score": 270, - "Average G2D Mark": 328, - "Samples": 5 - } - ], - "gpu1317": [ - "GeForce 9650M GT", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "550 MHz", - "Memory Clock(s)": "1600 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "23 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce 9650M GT, NVIDIA GeForce 9650M GT [Dox Optimised 182.46], NVIDIA GeForce 9650M GT (Mobile)", - "Videocard First Benchmarked": "2009-04-02", - "G3DMark/Price": "1.17", - "Overall Rank": "1908", - "Last Price Change": "$117.3 USD (2021-05-13)", - "Score": 137, - "Average G2D Mark": 57, - "Samples": 82 - } - ], - "gpu1318": [ - "GeForce 9700M GT", - { - "Bus Interface": "PCIe x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "625 MHz", - "Memory Clock(s)": "1600 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "45 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce 9700M GT, NVIDIA GeForce 9700M GT (Prerelease - WDDM 1.1), NVIDIA GeForce 9700M GT (Mobile)", - "Videocard First Benchmarked": "2009-04-03", - "G3DMark/Price": "NA", - "Overall Rank": "1810", - "Last Price Change": "NA", - "Score": 209, - "Average G2D Mark": 120, - "Samples": 64 - } - ], - "gpu1319": [ - "GeForce 9700M GTS", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "530 MHz", - "Memory Clock(s)": "1600 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "60 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce 9700M GTS, NVIDIA GeForce 9700M GTS (Prerelease - WDDM 1.1), NVIDIA GeForce 9700M GTS (Mobile)", - "Videocard First Benchmarked": "2010-12-05", - "G3DMark/Price": "NA", - "Overall Rank": "1738", - "Last Price Change": "NA", - "Score": 278, - "Average G2D Mark": 38, - "Samples": 49 - } - ], - "gpu60": [ - "GeForce 9800 GT", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "600 MHz", - "Memory Clock(s)": "1800 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "125 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce 9800 GT, GeForce 9800 GT, NVIDIA GeForce 9800 GT (Prerelease - WDDM 1.1)", - "Videocard First Benchmarked": "2012-08-18", - "G3DMark/Price": "6.21", - "Overall Rank": "1568", - "Last Price Change": "$74.99 USD (2022-04-15)", - "Score": 465, - "Average G2D Mark": 65, - "Samples": 3391 - } - ], - "gpu3260": [ - "GeForce 9800 GT 1024MB", - { - "Other names": "NVIDIA GeForce 9800 GT 1024MB", - "Videocard First Benchmarked": "2015-07-19", - "G3DMark/Price": "NA", - "Overall Rank": "1916", - "Last Price Change": "NA", - "Score": 134, - "Average G2D Mark": 315, - "Samples": 1 - } - ], - "gpu1320": [ - "GeForce 9800 GTX", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "675 MHz", - "Memory Clock(s)": "2200 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "140 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce 9800 GTX", - "Videocard First Benchmarked": "2009-04-07", - "G3DMark/Price": "10.26", - "Overall Rank": "1223", - "Last Price Change": "$74.99 USD (2022-04-15)", - "Score": 769, - "Average G2D Mark": 366, - "Samples": 3 - } - ], - "gpu92": [ - "GeForce 9800 GTX+", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "738 MHz", - "Memory Clock(s)": "1836 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "141 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce 9800 GTX+, NVIDIA GeForce 9800 GTX+ (Prerelease - WDDM 1.1)", - "Videocard First Benchmarked": "2012-08-20", - "G3DMark/Price": "NA", - "Overall Rank": "1523", - "Last Price Change": "NA", - "Score": 507, - "Average G2D Mark": 88, - "Samples": 420 - } - ], - "gpu1321": [ - "GeForce 9800 GTX/9800 GTX+", - { - "Other names": "NVIDIA GeForce 9800 GTX/9800 GTX+, NVIDIA GeForce 9800 GTX/9800 GTX+ (Prerelease - WD, NVIDIA GeForce 9800 GTX/9800 GTX+ (Microsoft Corporation - WDDM v1.1)", - "Videocard First Benchmarked": "2009-06-15", - "G3DMark/Price": "6.76", - "Overall Rank": "1390", - "Last Price Change": "$89.99 USD (2012-04-20)", - "Score": 608, - "Average G2D Mark": 103, - "Samples": 724 - } - ], - "gpu1323": [ - "GeForce 9800 GX2", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "2 MB", - "Core Clock(s)": "600 MHz", - "Memory Clock(s)": "2000 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "197 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce 9800 GX2, NVIDIA GeForce 9800 GX2 (Prerelease - WDDM 1.1)", - "Videocard First Benchmarked": "2009-04-04", - "G3DMark/Price": "4.09", - "Overall Rank": "1198", - "Last Price Change": "$195 USD (2021-05-13)", - "Score": 798, - "Average G2D Mark": 518, - "Samples": 49 - } - ], - "gpu2264": [ - "GeForce 9800 S", - { - "Other names": "NVIDIA GeForce 9800 S", - "Videocard First Benchmarked": "2012-11-09", - "G3DMark/Price": "NA", - "Overall Rank": "1351", - "Last Price Change": "NA", - "Score": 636, - "Average G2D Mark": 427, - "Samples": 6 - } - ], - "gpu97": [ - "GeForce 9800M GS", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "530 MHz", - "Memory Clock(s)": "1600 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "60 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce 9800M GS, NVIDIA GeForce 9800M GS (Prerelease - WDDM 1.1), NVIDIA GeForce 9800M GS (Mobile)", - "Videocard First Benchmarked": "2012-08-21", - "G3DMark/Price": "NA", - "Overall Rank": "1466", - "Last Price Change": "NA", - "Score": 555, - "Average G2D Mark": 57, - "Samples": 66 - } - ], - "gpu1325": [ - "GeForce 9800M GT", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "500 MHz", - "Memory Clock(s)": "1600 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "65 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce 9800M GT, NVIDIA GeForce 9800M GT [Dox Optimised 182.05: Per, NVIDIA GeForce 9800M GT [Dox Optimised 182.05], NVIDIA GeForce 9800M GT (Mobile)", - "Videocard First Benchmarked": "2009-04-02", - "G3DMark/Price": "NA", - "Overall Rank": "1643", - "Last Price Change": "NA", - "Score": 381, - "Average G2D Mark": 81, - "Samples": 22 - } - ], - "gpu1326": [ - "GeForce 9800M GTS", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "600 MHz", - "Memory Clock(s)": "1600 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "75 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce 9800M GTS, NVIDIA GeForce 9800M GTS (Prerelease - WDDM 1.1), NVIDIA GeForce 9800M GTS [Dox Optimised 185.68], NVIDIA GeForce 9800M GTS (Mobile)", - "Videocard First Benchmarked": "2009-04-02", - "G3DMark/Price": "NA", - "Overall Rank": "1631", - "Last Price Change": "NA", - "Score": 401, - "Average G2D Mark": 99, - "Samples": 119 - } - ], - "gpu1327": [ - "GeForce 9800M GTX", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "500 MHz", - "Memory Clock(s)": "1600 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "75 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce 9800M GTX, NVIDIA GeForce 9800M GTX (Mobile)", - "Videocard First Benchmarked": "2009-04-02", - "G3DMark/Price": "1.38", - "Overall Rank": "1586", - "Last Price Change": "$328.5 USD (2016-08-25)", - "Score": 454, - "Average G2D Mark": 89, - "Samples": 47 - } - ], - "gpu3403": [ - "GeForce 999 GTX", - { - "Other names": "NVIDIA GeForce 999 GTX", - "Videocard First Benchmarked": "2017-07-30", - "G3DMark/Price": "NA", - "Overall Rank": "2067", - "Last Price Change": "NA", - "Score": 84, - "Average G2D Mark": 138, - "Samples": 2 - } - ], - "gpu1329": [ - "GeForce FX 5100", - { - "Other names": "NVIDIA GeForce FX 5100", - "Videocard First Benchmarked": "2009-07-13", - "G3DMark/Price": "NA", - "Overall Rank": "2342", - "Last Price Change": "NA", - "Score": 8, - "Average G2D Mark": 247, - "Samples": 1 - } - ], - "gpu1330": [ - "GeForce FX 5200", - { - "Bus Interface": "AGP 8X,PCI", - "Max Memory Size": "128 MB", - "Core Clock(s)": "250 MHz", - "Memory Clock(s)": "400 MHz", - "DirectX": "9.0b", - "OpenGL": "1.5", - "Videocard Category": "Desktop", - "Other names": "3DForceFX 5200, NVIDIA GeForce FX 5200, ABIT Siluro FX5200, Inno3D GeForce FX 5200, MSI MS-StarForce GeForce FX 5200 (NVIDIA GeForce F, MSI MS-StarForce GeForce FX 5200 with AGP8X (NVIDI, NVIDIA GeForce FX 5200, NVIDIA GeForce FX 5200 (Dell), NVIDIA GeForce FX 5200 (DNA-Force 2.0.7777 Fast), NVIDIA GeForce FX 5200 (Gateway), NVIDIA GeForce FX 5200 (NGOHQ.com), NVIDIA GeForce FX 5200 (Omega 1.6693) (P), NVIDIA GeForce FX 5200 (Omega 2.169.21), NVIDIA GeForce FX 5200 (Sony), MSI MS-StarForce GeForce FX 5200 (NVIDIA GeForce FX 5200)", - "Videocard First Benchmarked": "2010-09-07", - "G3DMark/Price": "0.06", - "Overall Rank": "2345", - "Last Price Change": "$129 USD (2021-06-06)", - "Score": 8, - "Average G2D Mark": 154, - "Samples": 414 - } - ], - "gpu1333": [ - "GeForce FX 5200 Ultra", - { - "Bus Interface": "AGP 8X", - "Max Memory Size": "128 MB", - "Core Clock(s)": "325 MHz", - "Memory Clock(s)": "650 MHz", - "DirectX": "9.0b", - "OpenGL": "1.5", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce FX 5200 Ultra, NVIDIA GeForceFX 5200 Ultra Gamer", - "Videocard First Benchmarked": "2009-04-09", - "G3DMark/Price": "NA", - "Overall Rank": "2322", - "Last Price Change": "NA", - "Score": 12, - "Average G2D Mark": 138, - "Samples": 2 - } - ], - "gpu1334": [ - "GeForce FX 5200LE", - { - "Other names": "NVIDIA GeForce FX 5200LE", - "Videocard First Benchmarked": "2009-05-08", - "G3DMark/Price": "0.16", - "Overall Rank": "2348", - "Last Price Change": "$42.99 USD (2011-11-05)", - "Score": 7, - "Average G2D Mark": 170, - "Samples": 3 - } - ], - "gpu2655": [ - "GeForce FX 5200SE", - { - "Other names": "NVIDIA GeForce FX 5200SE", - "Videocard First Benchmarked": "2013-09-12", - "G3DMark/Price": "NA", - "Overall Rank": "2324", - "Last Price Change": "NA", - "Score": 12, - "Average G2D Mark": 194, - "Samples": 2 - } - ], - "gpu1335": [ - "GeForce FX 5500", - { - "Bus Interface": "AGP 8X,AGP 4X,PCI", - "Max Memory Size": "256 MB", - "Core Clock(s)": "270 MHz", - "Memory Clock(s)": "400 MHz", - "DirectX": "9.0b", - "OpenGL": "1.5", - "Videocard Category": "Desktop", - "Other names": "Inno3D GeForce FX 5500, MSI MS-StarForce GeForce FX 5500 (NVIDIA GeForce F, NVIDIA GeForce FX 5500, NVIDIA GeForce FX 5500 (Omega 1.6693) (P), NVIDIA GeForce FX 5500 (Omega 2.169.21), NVIDIA GeForce FX5500, NVIDIA GeForce FX 5500 by TweaksRUs, MSI MS-StarForce GeForce FX 5500 (NVIDIA GeForce FX 5500)", - "Videocard First Benchmarked": "2009-04-02", - "G3DMark/Price": "0.05", - "Overall Rank": "2337", - "Last Price Change": "$153.97 USD (2021-11-20)", - "Score": 8, - "Average G2D Mark": 152, - "Samples": 178 - } - ], - "gpu1336": [ - "GeForce FX 5600", - { - "Bus Interface": "AGP 8X,PCI", - "Max Memory Size": "256 MB", - "Core Clock(s)": "325 MHz", - "Memory Clock(s)": "550 MHz", - "DirectX": "9.0b", - "OpenGL": "1.5", - "Videocard Category": "Desktop", - "Other names": "3D Blaster FX 5600, 3DForceFX 5600, NVIDIA GeForce FX 5600, ABIT Siluro FX5600, MSI MS-StarForce GeForce FX 5600 (NVIDIA GeForce F, NVIDIA GeForce FX 5600, NVIDIA GeForce FX 5600 (Sony)", - "Videocard First Benchmarked": "2009-04-02", - "G3DMark/Price": "NA", - "Overall Rank": "2320", - "Last Price Change": "NA", - "Score": 13, - "Average G2D Mark": 168, - "Samples": 35 - } - ], - "gpu1337": [ - "GeForce FX 5600 Ultra", - { - "Bus Interface": "AGP 8X", - "Max Memory Size": "128 MB", - "Core Clock(s)": "350 MHz", - "Memory Clock(s)": "700 MHz", - "DirectX": "9.0b", - "OpenGL": "1.5", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce FX 5600 Ultra", - "Videocard First Benchmarked": "2009-04-10", - "G3DMark/Price": "NA", - "Overall Rank": "2311", - "Last Price Change": "NA", - "Score": 17, - "Average G2D Mark": 122, - "Samples": 2 - } - ], - "gpu1339": [ - "GeForce FX 5600XT", - { - "Other names": "NVIDIA GeForce FX 5600XT", - "Videocard First Benchmarked": "2009-04-13", - "G3DMark/Price": "NA", - "Overall Rank": "2333", - "Last Price Change": "NA", - "Score": 9, - "Average G2D Mark": 166, - "Samples": 10 - } - ], - "gpu1340": [ - "GeForce FX 5700", - { - "Bus Interface": "AGP 8X", - "Max Memory Size": "256 MB", - "Core Clock(s)": "425 MHz", - "Memory Clock(s)": "500 MHz", - "DirectX": "9.0b", - "OpenGL": "1.5", - "Videocard Category": "Desktop", - "Other names": "MSI MS-StarForce GeForce FX 5700 (NVIDIA GeForce F, NVIDIA GeForce FX 5700, MSI MS-StarForce GeForce FX 5700 (NVIDIA GeForce FX 5700)", - "Videocard First Benchmarked": "2009-04-02", - "G3DMark/Price": "NA", - "Overall Rank": "2207", - "Last Price Change": "NA", - "Score": 41, - "Average G2D Mark": 173, - "Samples": 24 - } - ], - "gpu1341": [ - "GeForce FX 5700 Ultra", - { - "Bus Interface": "AGP 8X", - "Max Memory Size": "256 MB", - "Core Clock(s)": "475 MHz", - "Memory Clock(s)": "900 MHz", - "DirectX": "9.0b", - "OpenGL": "1.5", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce FX 5700 Ultra, NVIDIA GeForce FX 5700 Ultra (Omega 2.169.21)", - "Videocard First Benchmarked": "2009-04-15", - "G3DMark/Price": "NA", - "Overall Rank": "2241", - "Last Price Change": "NA", - "Score": 34, - "Average G2D Mark": 126, - "Samples": 5 - } - ], - "gpu1342": [ - "GeForce FX 5700LE", - { - "Bus Interface": "AGP 8X", - "Max Memory Size": "256 MB", - "Core Clock(s)": "250 MHz", - "Memory Clock(s)": "400 MHz", - "DirectX": "9.0b", - "OpenGL": "1.5", - "Videocard Category": "Desktop", - "Other names": "MSI MS-StarForce GeForce FX 5700LE (NVIDIA GeForce, NVIDIA GeForce FX 5700LE, MSI MS-StarForce GeForce FX 5700LE (NVIDIA GeForce FX 5700LE)", - "Videocard First Benchmarked": "2009-04-09", - "G3DMark/Price": "NA", - "Overall Rank": "2286", - "Last Price Change": "NA", - "Score": 25, - "Average G2D Mark": 147, - "Samples": 22 - } - ], - "gpu1343": [ - "GeForce FX 5700VE", - { - "Bus Interface": "AGP 8X", - "Max Memory Size": "256 MB", - "Core Clock(s)": "235 MHz", - "Memory Clock(s)": "400 MHz", - "DirectX": "9.0b", - "OpenGL": "1.5", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce FX 5700VE", - "Videocard First Benchmarked": "2009-04-13", - "G3DMark/Price": "NA", - "Overall Rank": "2249", - "Last Price Change": "NA", - "Score": 33, - "Average G2D Mark": 161, - "Samples": 7 - } - ], - "gpu1346": [ - "GeForce FX 5900", - { - "Bus Interface": "AGP 8X", - "Max Memory Size": "128 MB", - "Core Clock(s)": "400 MHz", - "Memory Clock(s)": "850 MHz", - "DirectX": "9.0b", - "OpenGL": "1.5", - "Videocard Category": "Desktop", - "Other names": "MSI MS-StarForce GeForce FX 5900 (NVIDIA GeForce F, NVIDIA GeForce FX 5900, NVIDIA GeForce FX 5900 (Omega 2.169.21)", - "Videocard First Benchmarked": "2009-04-04", - "G3DMark/Price": "NA", - "Overall Rank": "2238", - "Last Price Change": "NA", - "Score": 35, - "Average G2D Mark": 188, - "Samples": 8 - } - ], - "gpu1347": [ - "GeForce FX 5900 Ultra", - { - "Bus Interface": "AGP 8X", - "Max Memory Size": "256 MB", - "Core Clock(s)": "450 MHz", - "Memory Clock(s)": "850 MHz", - "DirectX": "9.0b", - "OpenGL": "1.5", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce FX 5900 Ultra", - "Videocard First Benchmarked": "2009-05-22", - "G3DMark/Price": "NA", - "Overall Rank": "2206", - "Last Price Change": "NA", - "Score": 41, - "Average G2D Mark": 170, - "Samples": 5 - } - ], - "gpu1348": [ - "GeForce FX 5900XT", - { - "Bus Interface": "AGP 8X", - "Max Memory Size": "128 MB", - "Core Clock(s)": "390 MHz", - "Memory Clock(s)": "700 MHz", - "DirectX": "9.0b", - "OpenGL": "1.5", - "Videocard Category": "Desktop", - "Other names": "MSI MS-StarForce GeForce FX 5900XT (NVIDIA GeForce, NVIDIA GeForce FX 5900XT", - "Videocard First Benchmarked": "2009-04-07", - "G3DMark/Price": "NA", - "Overall Rank": "2212", - "Last Price Change": "NA", - "Score": 40, - "Average G2D Mark": 134, - "Samples": 10 - } - ], - "gpu1349": [ - "GeForce FX 5900ZT", - { - "Bus Interface": "AGP 8X", - "Max Memory Size": "128 MB", - "Core Clock(s)": "325 MHz", - "Memory Clock(s)": "700 MHz", - "DirectX": "9.0b", - "OpenGL": "1.5", - "Videocard Category": "Desktop", - "Other names": "MSI MS-StarForce GeForce FX 5900ZT (NVIDIA GeForce, NVIDIA GeForce FX 5900ZT", - "Videocard First Benchmarked": "2009-05-16", - "G3DMark/Price": "NA", - "Overall Rank": "2252", - "Last Price Change": "NA", - "Score": 33, - "Average G2D Mark": 129, - "Samples": 1 - } - ], - "gpu1350": [ - "GeForce FX 5950 Ultra", - { - "Bus Interface": "AGP 8X", - "Max Memory Size": "256 MB", - "Core Clock(s)": "475 MHz", - "Memory Clock(s)": "950 MHz", - "DirectX": "9.0b", - "OpenGL": "1.5", - "Videocard Category": "Desktop", - "Other names": "MSI MS-StarForce GeForce FX 5950 Ultra (NVIDIA GeF, NVIDIA GeForce FX 5950 Ultra", - "Videocard First Benchmarked": "2009-04-05", - "G3DMark/Price": "NA", - "Overall Rank": "2143", - "Last Price Change": "NA", - "Score": 59, - "Average G2D Mark": 274, - "Samples": 3 - } - ], - "gpu1351": [ - "GeForce FX Go 5200", - { - "Bus Interface": "AGP x8", - "Max Memory Size": "32 MB", - "Core Clock(s)": "300 MHz", - "Memory Clock(s)": "600 MHz", - "DirectX": "9", - "OpenGL": "1.5", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce FX Go 5200, NVIDIA GeForce FX Go 5200 32M/64M, NVIDIA GeForce FX Go5200, NVIDIA GeForce FX Go5200 32M/64M, GeForce FX Go5200 (Omega 1.6693) (P)", - "Videocard First Benchmarked": "2010-06-22", - "G3DMark/Price": "NA", - "Overall Rank": "2335", - "Last Price Change": "NA", - "Score": 8, - "Average G2D Mark": 190, - "Samples": 29 - } - ], - "gpu1353": [ - "GeForce FX Go 5600", - { - "Bus Interface": "AGP x8", - "Max Memory Size": "32 MB", - "Core Clock(s)": "350 MHz", - "Memory Clock(s)": "600 MHz", - "DirectX": "9", - "OpenGL": "1.5", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce FX Go 5600, NVIDIA GeForce FX Go5600, NVIDIA GeForce FX Go5600 (Sony)", - "Videocard First Benchmarked": "2009-09-25", - "G3DMark/Price": "NA", - "Overall Rank": "2309", - "Last Price Change": "NA", - "Score": 18, - "Average G2D Mark": 186, - "Samples": 11 - } - ], - "gpu1358": [ - "GeForce FX Go5300", - { - "Other names": "NVIDIA GeForce FX Go5300", - "Videocard First Benchmarked": "2009-08-03", - "G3DMark/Price": "NA", - "Overall Rank": "2321", - "Last Price Change": "NA", - "Score": 13, - "Average G2D Mark": 159, - "Samples": 2 - } - ], - "gpu1361": [ - "GeForce FX Go5650", - { - "Other names": "NVIDIA GeForce FX Go5650", - "Videocard First Benchmarked": "2009-05-16", - "G3DMark/Price": "NA", - "Overall Rank": "2312", - "Last Price Change": "NA", - "Score": 17, - "Average G2D Mark": 211, - "Samples": 2 - } - ], - "gpu1362": [ - "GeForce FX Go5700", - { - "Other names": "NVIDIA GeForce FX Go5700", - "Videocard First Benchmarked": "2009-05-13", - "G3DMark/Price": "NA", - "Overall Rank": "2165", - "Last Price Change": "NA", - "Score": 51, - "Average G2D Mark": 171, - "Samples": 6 - } - ], - "gpu23": [ - "GeForce G 103M", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "640 MHz", - "Memory Clock(s)": "1600 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "14 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce G 103M, NVIDIA GeForce G 103M (Mobile)", - "Videocard First Benchmarked": "2012-08-13", - "G3DMark/Price": "NA", - "Overall Rank": "2135", - "Last Price Change": "NA", - "Score": 63, - "Average G2D Mark": 34, - "Samples": 117 - } - ], - "gpu1364": [ - "GeForce G 105M", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "640 MHz", - "Memory Clock(s)": "1600 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "14 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce G 105M, NVIDIA GeForce G 105M (Prerelease - WDDM 1.1), NVIDIA GeForce G 105M (Mobile)", - "Videocard First Benchmarked": "2009-04-15", - "G3DMark/Price": "NA", - "Overall Rank": "2132", - "Last Price Change": "NA", - "Score": 63, - "Average G2D Mark": 23, - "Samples": 301 - } - ], - "gpu43": [ - "GeForce G100", - { - "Other names": "NVIDIA GeForce G100", - "Videocard First Benchmarked": "2012-08-17", - "G3DMark/Price": "8.79", - "Overall Rank": "1848", - "Last Price Change": "$19.99 USD (2011-08-21)", - "Score": 176, - "Average G2D Mark": 65, - "Samples": 69 - } - ], - "gpu1366": [ - "GeForce G102M", - { - "Other names": "NVIDIA GeForce G102M, NVIDIA GeForce G102M (Mobile)", - "Videocard First Benchmarked": "2009-07-06", - "G3DMark/Price": "NA", - "Overall Rank": "1859", - "Last Price Change": "NA", - "Score": 168, - "Average G2D Mark": 59, - "Samples": 102 - } - ], - "gpu1367": [ - "GeForce G105M", - { - "Other names": "NVIDIA GeForce G105M, NVIDIA GeForce G105M (Mobile)", - "Videocard First Benchmarked": "2009-11-10", - "G3DMark/Price": "NA", - "Overall Rank": "1996", - "Last Price Change": "NA", - "Score": 107, - "Average G2D Mark": 37, - "Samples": 156 - } - ], - "gpu1368": [ - "GeForce G200", - { - "Other names": "NVIDIA GeForce G200", - "Videocard First Benchmarked": "2010-02-17", - "G3DMark/Price": "NA", - "Overall Rank": "1913", - "Last Price Change": "NA", - "Score": 136, - "Average G2D Mark": 82, - "Samples": 10 - } - ], - "gpu1369": [ - "GeForce G205M", - { - "Other names": "NVIDIA GeForce G205M", - "Videocard First Benchmarked": "2010-09-29", - "G3DMark/Price": "NA", - "Overall Rank": "2048", - "Last Price Change": "NA", - "Score": 92, - "Average G2D Mark": 294, - "Samples": 11 - } - ], - "gpu1370": [ - "GeForce G210", - { - "Other names": "NVIDIA GeForce G210, NVIDIA GeForce G210 (Mobile)", - "Videocard First Benchmarked": "2009-07-14", - "G3DMark/Price": "0.80", - "Overall Rank": "2024", - "Last Price Change": "$122.12 USD (2021-06-10)", - "Score": 98, - "Average G2D Mark": 35, - "Samples": 295 - } - ], - "gpu1371": [ - "GeForce G210M", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "625 MHz", - "Memory Clock(s)": "1600 MHz", - "DirectX": "10.1", - "OpenGL": "3.3", - "Max TDP": "14 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce G210M, NVIDIA GeForce G210M (Mobile)", - "Videocard First Benchmarked": "2009-09-24", - "G3DMark/Price": "NA", - "Overall Rank": "1968", - "Last Price Change": "NA", - "Score": 115, - "Average G2D Mark": 22, - "Samples": 207 - } - ], - "gpu1372": [ - "GeForce Go 6100", - { - "Other names": "NVIDIA GeForce Go 6100, NVIDIA GeForce Go 6100 (Omega 2.169.21)", - "Videocard First Benchmarked": "2009-04-02", - "G3DMark/Price": "NA", - "Overall Rank": "2308", - "Last Price Change": "NA", - "Score": 18, - "Average G2D Mark": 181, - "Samples": 88 - } - ], - "gpu1373": [ - "GeForce Go 6150", - { - "Other names": "NVIDIA GeForce Go 6150, NVIDIA GeForce Go 6150 (Mobile)", - "Videocard First Benchmarked": "2009-10-28", - "G3DMark/Price": "NA", - "Overall Rank": "2301", - "Last Price Change": "NA", - "Score": 19, - "Average G2D Mark": 92, - "Samples": 122 - } - ], - "gpu1375": [ - "GeForce Go 6200", - { - "Bus Interface": "PCI-E x16", - "Max Memory Size": "16 MB", - "Core Clock(s)": "300 MHz", - "Memory Clock(s)": "600 MHz", - "DirectX": "9.0c", - "OpenGL": "2.1", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce Go 6200, NVIDIA GeForce Go 6200 [Dox Optimised 180.84]", - "Videocard First Benchmarked": "2009-04-03", - "G3DMark/Price": "NA", - "Overall Rank": "2315", - "Last Price Change": "NA", - "Score": 15, - "Average G2D Mark": 204, - "Samples": 18 - } - ], - "gpu1377": [ - "GeForce Go 6400", - { - "Bus Interface": "PCI-E x16", - "Max Memory Size": "16 MB", - "Core Clock(s)": "400 MHz", - "Memory Clock(s)": "700 MHz", - "DirectX": "9.0c", - "OpenGL": "2.1", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce Go 6400", - "Videocard First Benchmarked": "2009-04-19", - "G3DMark/Price": "NA", - "Overall Rank": "2287", - "Last Price Change": "NA", - "Score": 24, - "Average G2D Mark": 212, - "Samples": 4 - } - ], - "gpu1378": [ - "GeForce Go 6600", - { - "Bus Interface": "PCI-E x16", - "Max Memory Size": "128 MB", - "Core Clock(s)": "300 MHz", - "Memory Clock(s)": "700 MHz", - "DirectX": "9.0c", - "OpenGL": "2.1", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce Go 6600", - "Videocard First Benchmarked": "2009-04-08", - "G3DMark/Price": "NA", - "Overall Rank": "2111", - "Last Price Change": "NA", - "Score": 69, - "Average G2D Mark": 209, - "Samples": 20 - } - ], - "gpu1379": [ - "GeForce Go 6600 TE/6200 TE", - { - "Other names": "NVIDIA GeForce Go 6200 TE 64M / 6600 TE 128M, NVIDIA GeForce Go 6600 TE/6200 TE", - "Videocard First Benchmarked": "2009-05-15", - "G3DMark/Price": "NA", - "Overall Rank": "2191", - "Last Price Change": "NA", - "Score": 45, - "Average G2D Mark": 223, - "Samples": 7 - } - ], - "gpu1381": [ - "GeForce Go 6800", - { - "Bus Interface": "PCI-E x16", - "Max Memory Size": "128 MB", - "Core Clock(s)": "300 MHz", - "Memory Clock(s)": "700,1100 MHz", - "DirectX": "9.0c", - "OpenGL": "2.1", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce Go 6800, NVIDIA GeForce Go 6800 (Prerelease - WDDM 1.0), NVIDIA GeForce Go 6800 [Dox Optimised 180.84: Qual, NVIDIA GeForce Go 6800 [Dox Optimised 180.84]", - "Videocard First Benchmarked": "2009-04-20", - "G3DMark/Price": "NA", - "Overall Rank": "2000", - "Last Price Change": "NA", - "Score": 106, - "Average G2D Mark": 205, - "Samples": 21 - } - ], - "gpu1383": [ - "GeForce Go 6800 Ultra", - { - "Bus Interface": "PCI-E x16", - "Max Memory Size": "256 MB", - "Core Clock(s)": "450 MHz", - "Memory Clock(s)": "700,1100 MHz", - "DirectX": "9.0c", - "OpenGL": "2.1", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce Go 6800 Ultra", - "Videocard First Benchmarked": "2009-04-16", - "G3DMark/Price": "NA", - "Overall Rank": "1905", - "Last Price Change": "NA", - "Score": 138, - "Average G2D Mark": 198, - "Samples": 4 - } - ], - "gpu126": [ - "GeForce Go 7200", - { - "Bus Interface": "PCIe x16", - "Max Memory Size": "64 MB", - "Core Clock(s)": "450 MHz", - "Memory Clock(s)": "700 MHz", - "DirectX": "9.0c", - "OpenGL": "2.1", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce Go 7200", - "Videocard First Benchmarked": "2012-08-23", - "G3DMark/Price": "NA", - "Overall Rank": "2189", - "Last Price Change": "NA", - "Score": 45, - "Average G2D Mark": 199, - "Samples": 15 - } - ], - "gpu59": [ - "GeForce Go 7300", - { - "Bus Interface": "PCIe x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "350 MHz", - "Memory Clock(s)": "700 MHz", - "DirectX": "9.0c", - "OpenGL": "2.1", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce Go 7300, NVIDIA GeForce Go 7300 [Custom Forceware 180.44], NVIDIA GeForce Go 7300 [NGOHQ.com], NVIDIA GeForce Go 7300 (Mobile)", - "Videocard First Benchmarked": "2012-08-18", - "G3DMark/Price": "NA", - "Overall Rank": "2161", - "Last Price Change": "NA", - "Score": 52, - "Average G2D Mark": 114, - "Samples": 245 - } - ], - "gpu1386": [ - "GeForce Go 7400", - { - "Bus Interface": "PCIe x16", - "Max Memory Size": "256 MB", - "Core Clock(s)": "450 MHz", - "Memory Clock(s)": "900 MHz", - "DirectX": "9.0c", - "OpenGL": "2.1", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce Go 7400, NVIDIA GeForce Go 7400 (Prerelease - WDDM 1.0), NVIDIA GeForce Go 7400 (Mobile)", - "Videocard First Benchmarked": "2009-04-02", - "G3DMark/Price": "NA", - "Overall Rank": "2129", - "Last Price Change": "NA", - "Score": 66, - "Average G2D Mark": 112, - "Samples": 150 - } - ], - "gpu1387": [ - "GeForce Go 7600", - { - "Bus Interface": "PCIe x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "450 MHz", - "Memory Clock(s)": "1000 MHz", - "DirectX": "9.0c", - "OpenGL": "2.1", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce Go 7600, NVIDIA GeForce Go 7600 (Omega 1.169.25), NVIDIA GeForce Go 7600 (Omega 2.169.21), NVIDIA GeForce Go 7600 [Dox Optimised 185.68], NVIDIA GeForce Go 7600 (Mobile)", - "Videocard First Benchmarked": "2009-04-02", - "G3DMark/Price": "NA", - "Overall Rank": "1929", - "Last Price Change": "NA", - "Score": 128, - "Average G2D Mark": 220, - "Samples": 193 - } - ], - "gpu1389": [ - "GeForce Go 7600 GT", - { - "Bus Interface": "PCIe x16", - "Max Memory Size": "256 MB", - "Core Clock(s)": "500 MHz", - "Memory Clock(s)": "1200 MHz", - "DirectX": "9.0c", - "OpenGL": "2.1", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce Go 7600 GT, NVIDIA GeForce Go 7600 GT (Prerelease - WDDM 1.0), NVIDIA GeForce Go 7600 GT (Mobile)", - "Videocard First Benchmarked": "2009-06-26", - "G3DMark/Price": "NA", - "Overall Rank": "1807", - "Last Price Change": "NA", - "Score": 210, - "Average G2D Mark": 125, - "Samples": 8 - } - ], - "gpu1390": [ - "GeForce Go 7700", - { - "Bus Interface": "PCIe x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "450 MHz", - "Memory Clock(s)": "1000 MHz", - "DirectX": "9.0c", - "OpenGL": "2.1", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce Go 7700, NVIDIA GeForce Go 7700 [Dox Optimised 185.68]", - "Videocard First Benchmarked": "2009-04-19", - "G3DMark/Price": "NA", - "Overall Rank": "1885", - "Last Price Change": "NA", - "Score": 148, - "Average G2D Mark": 232, - "Samples": 4 - } - ], - "gpu1391": [ - "GeForce Go 7800", - { - "Bus Interface": "PCIe x16", - "Max Memory Size": "256 MB", - "Core Clock(s)": "400 MHz", - "Memory Clock(s)": "1100 MHz", - "DirectX": "9.0c", - "OpenGL": "2.1", - "Max TDP": "35 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce Go 7800", - "Videocard First Benchmarked": "2009-04-21", - "G3DMark/Price": "NA", - "Overall Rank": "1972", - "Last Price Change": "NA", - "Score": 115, - "Average G2D Mark": 209, - "Samples": 5 - } - ], - "gpu1392": [ - "GeForce Go 7800 GTX", - { - "Bus Interface": "PCIe x16", - "Max Memory Size": "256 MB", - "Core Clock(s)": "400 MHz", - "Memory Clock(s)": "1100 MHz", - "DirectX": "9.0c", - "OpenGL": "2.1", - "Max TDP": "65 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce Go 7800 GTX", - "Videocard First Benchmarked": "2009-04-13", - "G3DMark/Price": "NA", - "Overall Rank": "1809", - "Last Price Change": "NA", - "Score": 210, - "Average G2D Mark": 239, - "Samples": 8 - } - ], - "gpu1393": [ - "GeForce Go 7900 GS", - { - "Bus Interface": "PCIe x16", - "Max Memory Size": "256 MB", - "Core Clock(s)": "375 MHz", - "Memory Clock(s)": "1000 MHz", - "DirectX": "9.0c", - "OpenGL": "2.1", - "Max TDP": "20 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce Go 7900 GS", - "Videocard First Benchmarked": "2009-11-06", - "G3DMark/Price": "NA", - "Overall Rank": "1847", - "Last Price Change": "NA", - "Score": 176, - "Average G2D Mark": 254, - "Samples": 56 - } - ], - "gpu1396": [ - "GeForce Go 7900 GTX", - { - "Bus Interface": "PCIe x16", - "Max Memory Size": "256 MB", - "Core Clock(s)": "500 MHz", - "Memory Clock(s)": "1200 MHz", - "DirectX": "9.0c", - "OpenGL": "2.1", - "Max TDP": "45 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce Go 7900 GTX", - "Videocard First Benchmarked": "2009-04-16", - "G3DMark/Price": "NA", - "Overall Rank": "1741", - "Last Price Change": "NA", - "Score": 270, - "Average G2D Mark": 264, - "Samples": 2 - } - ], - "gpu1399": [ - "GeForce Go 7950 GTX", - { - "Bus Interface": "PCIe x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "575 MHz", - "Memory Clock(s)": "1400 MHz", - "DirectX": "9.0c", - "OpenGL": "2.1", - "Max TDP": "45 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce Go 7950 GTX", - "Videocard First Benchmarked": "2009-04-05", - "G3DMark/Price": "NA", - "Overall Rank": "1750", - "Last Price Change": "NA", - "Score": 264, - "Average G2D Mark": 283, - "Samples": 50 - } - ], - "gpu3065": [ - "GeForce GPU", - { - "Bus Interface": "PCI-E 3.0 x4", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "954 MHz", - "Memory Clock(s)": "1253 MHz", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce GPU, NVIDIA GeForce GPU (Mobile)", - "Videocard First Benchmarked": "2015-07-01", - "G3DMark/Price": "NA", - "Overall Rank": "962", - "Last Price Change": "NA", - "Score": 1195, - "Average G2D Mark": 161, - "Samples": 100 - } - ], - "gpu3757": [ - "GeForce GT 1030", - { - "Bus Interface": "PCIe 3.0 x4", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "1227 MHz", - "Memory Clock(s)": "1250 MHz", - "DirectX": "12.0", - "OpenGL": "4.5", - "Max TDP": "30 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce GT 1030", - "Videocard First Benchmarked": "2017-05-25", - "G3DMark/Price": "24.54", - "Overall Rank": "601", - "Last Price Change": "$101.2 USD (2023-12-05)", - "Score": 2484, - "Average G2D Mark": 446, - "Samples": 6980 - } - ], - "gpu1402": [ - "GeForce GT 120", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "500 MHz", - "Memory Clock(s)": "800 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "50 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce GT 120, NVIDIA GeForce GT 120 (Prerelease - WDDM 1.1)", - "Videocard First Benchmarked": "2009-04-02", - "G3DMark/Price": "5.63", - "Overall Rank": "1857", - "Last Price Change": "$29.99 USD (2020-03-13)", - "Score": 169, - "Average G2D Mark": 80, - "Samples": 148 - } - ], - "gpu1403": [ - "GeForce GT 120 / 9500 GT", - { - "Other names": "NVIDIA GeForce GT 120 / 9500 GT", - "Videocard First Benchmarked": "2011-09-26", - "G3DMark/Price": "NA", - "Overall Rank": "1696", - "Last Price Change": "NA", - "Score": 325, - "Average G2D Mark": 327, - "Samples": 1 - } - ], - "gpu1404": [ - "GeForce GT 120M", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "500 MHz", - "Memory Clock(s)": "1250 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "23 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce GT 120M, NVIDIA GeForce GT 120M (Mobile)", - "Videocard First Benchmarked": "2009-07-21", - "G3DMark/Price": "NA", - "Overall Rank": "1874", - "Last Price Change": "NA", - "Score": 153, - "Average G2D Mark": 39, - "Samples": 38 - } - ], - "gpu1405": [ - "GeForce GT 130", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "1536 MB", - "Core Clock(s)": "500 MHz", - "Memory Clock(s)": "500 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "75 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce GT 130", - "Videocard First Benchmarked": "2009-04-09", - "G3DMark/Price": "2.52", - "Overall Rank": "1644", - "Last Price Change": "$151.34 USD (2021-05-13)", - "Score": 381, - "Average G2D Mark": 109, - "Samples": 41 - } - ], - "gpu1406": [ - "GeForce GT 130M", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "600 MHz", - "Memory Clock(s)": "1500 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "23 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce GT 130M, NVIDIA GeForce GT 130M (Mobile)", - "Videocard First Benchmarked": "2009-04-02", - "G3DMark/Price": "NA", - "Overall Rank": "1888", - "Last Price Change": "NA", - "Score": 146, - "Average G2D Mark": 30, - "Samples": 187 - } - ], - "gpu1407": [ - "GeForce GT 140", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "650 MHz", - "Memory Clock(s)": "1800 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "105 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce GT 140", - "Videocard First Benchmarked": "2009-05-22", - "G3DMark/Price": "NA", - "Overall Rank": "1329", - "Last Price Change": "NA", - "Score": 658, - "Average G2D Mark": 225, - "Samples": 22 - } - ], - "gpu72": [ - "GeForce GT 220", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "625 MHz", - "Memory Clock(s)": "1000,1580 MHz", - "DirectX": "10.1", - "OpenGL": "3.3", - "Max TDP": "58 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce GT 220, (PE64) NVIDIA GeForce GT 220", - "Videocard First Benchmarked": "2012-08-19", - "G3DMark/Price": "5.36", - "Overall Rank": "1801", - "Last Price Change": "$39.99 USD (2020-03-14)", - "Score": 214, - "Average G2D Mark": 46, - "Samples": 2185 - } - ], - "gpu1408": [ - "GeForce GT 220M", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "500 MHz", - "Memory Clock(s)": "1000,1600 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "14 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce GT 220M, NVIDIA GeForce GT 220M (Mobile)", - "Videocard First Benchmarked": "2009-08-17", - "G3DMark/Price": "NA", - "Overall Rank": "1946", - "Last Price Change": "NA", - "Score": 122, - "Average G2D Mark": 74, - "Samples": 169 - } - ], - "gpu1409": [ - "GeForce GT 230", - { - "Other names": "NVIDIA GeForce GT 230, NVIDIA GeForce GT 230 (Mobile)", - "Videocard First Benchmarked": "2009-05-16", - "G3DMark/Price": "7.35", - "Overall Rank": "1699", - "Last Price Change": "$43.99 USD (2012-04-23)", - "Score": 323, - "Average G2D Mark": 70, - "Samples": 264 - } - ], - "gpu1410": [ - "GeForce GT 230M", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "500 MHz", - "Memory Clock(s)": "1600 MHz", - "DirectX": "10.1", - "OpenGL": "3.3", - "Max TDP": "23 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce GT 230M, NVIDIA GeForce GT 230M (Mobile)", - "Videocard First Benchmarked": "2009-09-22", - "G3DMark/Price": "NA", - "Overall Rank": "1817", - "Last Price Change": "NA", - "Score": 204, - "Average G2D Mark": 42, - "Samples": 498 - } - ], - "gpu61": [ - "GeForce GT 240", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "550 MHz", - "Memory Clock(s)": "1800,2000,3400 MHz", - "DirectX": "10.1", - "OpenGL": "3.3", - "Max TDP": "69 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce GT 240", - "Videocard First Benchmarked": "2012-08-18", - "G3DMark/Price": "3.20", - "Overall Rank": "1515", - "Last Price Change": "$160.97 USD (2022-03-30)", - "Score": 515, - "Average G2D Mark": 54, - "Samples": 1813 - } - ], - "gpu1411": [ - "GeForce GT 240M", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "550 MHz", - "Memory Clock(s)": "1600 MHz", - "DirectX": "10.1", - "OpenGL": "3.3", - "Max TDP": "23 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce GT 240M, NVIDIA GeForce GT 240M (Mobile)", - "Videocard First Benchmarked": "2009-07-29", - "G3DMark/Price": "NA", - "Overall Rank": "1818", - "Last Price Change": "NA", - "Score": 203, - "Average G2D Mark": 51, - "Samples": 381 - } - ], - "gpu1413": [ - "GeForce GT 320", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "540 MHz", - "Memory Clock(s)": "1580 MHz", - "DirectX": "10.1", - "OpenGL": "3.3", - "Max TDP": "43 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce GT 320", - "Videocard First Benchmarked": "2010-01-18", - "G3DMark/Price": "14.22", - "Overall Rank": "1571", - "Last Price Change": "$32.69 USD (2013-03-14)", - "Score": 465, - "Average G2D Mark": 63, - "Samples": 251 - } - ], - "gpu1414": [ - "GeForce GT 320M", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "500 MHz", - "Memory Clock(s)": "1580 MHz", - "DirectX": "10.1", - "OpenGL": "3.3", - "Max TDP": "14 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce GT 320M, NVIDIA GeForce GT 320M (Mobile)", - "Videocard First Benchmarked": "2010-02-13", - "G3DMark/Price": "NA", - "Overall Rank": "2002", - "Last Price Change": "NA", - "Score": 106, - "Average G2D Mark": 35, - "Samples": 357 - } - ], - "gpu1415": [ - "GeForce GT 325M", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "450 MHz", - "Memory Clock(s)": "1600 MHz", - "DirectX": "10.1", - "OpenGL": "3.3", - "Max TDP": "23 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce GT 325M, NVIDIA GeForce GT 325M (Mobile)", - "Videocard First Benchmarked": "2011-04-11", - "G3DMark/Price": "NA", - "Overall Rank": "1856", - "Last Price Change": "NA", - "Score": 170, - "Average G2D Mark": 49, - "Samples": 78 - } - ], - "gpu1416": [ - "GeForce GT 330", - { - "Other names": "NVIDIA GeForce GT 330", - "Videocard First Benchmarked": "2010-03-10", - "G3DMark/Price": "10.02", - "Overall Rank": "1632", - "Last Price Change": "$39.99 USD (2015-03-12)", - "Score": 401, - "Average G2D Mark": 93, - "Samples": 136 - } - ], - "gpu108": [ - "GeForce GT 330M", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "575 MHz", - "Memory Clock(s)": "1600 MHz", - "DirectX": "10.1", - "OpenGL": "3.3", - "Max TDP": "23 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce GT 330M, NVIDIA GeForce GT 330M (Mobile)", - "Videocard First Benchmarked": "2012-08-22", - "G3DMark/Price": "NA", - "Overall Rank": "1806", - "Last Price Change": "NA", - "Score": 211, - "Average G2D Mark": 45, - "Samples": 1279 - } - ], - "gpu1417": [ - "GeForce GT 335M", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "450 MHz", - "Memory Clock(s)": "1600 MHz", - "DirectX": "10.1", - "OpenGL": "3.3", - "Max TDP": "28 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce GT 335M, NVIDIA GeForce GT 335M (Mobile)", - "Videocard First Benchmarked": "2010-03-16", - "G3DMark/Price": "NA", - "Overall Rank": "1639", - "Last Price Change": "NA", - "Score": 389, - "Average G2D Mark": 34, - "Samples": 311 - } - ], - "gpu1418": [ - "GeForce GT 340", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "550 MHz", - "Memory Clock(s)": "3400 MHz", - "DirectX": "10.1", - "OpenGL": "3.3", - "Max TDP": "69 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce GT 340", - "Videocard First Benchmarked": "2011-01-11", - "G3DMark/Price": "13.93", - "Overall Rank": "1258", - "Last Price Change": "$52.99 USD (2011-08-12)", - "Score": 738, - "Average G2D Mark": 242, - "Samples": 26 - } - ], - "gpu2423": [ - "GeForce GT 415", - { - "Other names": "NVIDIA GeForce GT 415", - "Videocard First Benchmarked": "2013-02-20", - "G3DMark/Price": "NA", - "Overall Rank": "1766", - "Last Price Change": "NA", - "Score": 251, - "Average G2D Mark": 249, - "Samples": 3 - } - ], - "gpu1419": [ - "GeForce GT 415M", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "500 MHz", - "Memory Clock(s)": "1600 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "12 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce GT 415M, NVIDIA GeForce GT 415M (Mobile)", - "Videocard First Benchmarked": "2011-04-24", - "G3DMark/Price": "NA", - "Overall Rank": "1730", - "Last Price Change": "NA", - "Score": 286, - "Average G2D Mark": 221, - "Samples": 22 - } - ], - "gpu1420": [ - "GeForce GT 420", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "700 MHz", - "Memory Clock(s)": "900 MHz", - "DirectX": "11", - "OpenGL": "4.1", - "Max TDP": "50 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce GT 420", - "Videocard First Benchmarked": "2010-12-10", - "G3DMark/Price": "2.75", - "Overall Rank": "1608", - "Last Price Change": "$155 USD (2020-03-10)", - "Score": 427, - "Average G2D Mark": 192, - "Samples": 511 - } - ], - "gpu1421": [ - "GeForce GT 420M", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "500 MHz", - "Memory Clock(s)": "1600 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "23 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce GT 420M, NVIDIA GeForce GT 420M (Mobile)", - "Videocard First Benchmarked": "2010-10-03", - "G3DMark/Price": "NA", - "Overall Rank": "1619", - "Last Price Change": "NA", - "Score": 413, - "Average G2D Mark": 94, - "Samples": 339 - } - ], - "gpu1422": [ - "GeForce GT 425M", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "560 MHz", - "Memory Clock(s)": "1600 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "23 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce GT 425M, NVIDIA GeForce GT 425M (Mobile)", - "Videocard First Benchmarked": "2010-09-26", - "G3DMark/Price": "NA", - "Overall Rank": "1505", - "Last Price Change": "NA", - "Score": 524, - "Average G2D Mark": 171, - "Samples": 538 - } - ], - "gpu53": [ - "GeForce GT 430", - { - "Bus Interface": "PCIe 2.0 x16,PCI", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "700 MHz", - "Memory Clock(s)": "1800 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "49 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce GT 430, WinFast GT 430(NVIDIA), GT 430, NVLDDMKM", - "Videocard First Benchmarked": "2012-08-17", - "G3DMark/Price": "4.30", - "Overall Rank": "1400", - "Last Price Change": "$139.99 USD (2022-03-30)", - "Score": 602, - "Average G2D Mark": 193, - "Samples": 2941 - } - ], - "gpu86": [ - "GeForce GT 435M", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "650 MHz", - "Memory Clock(s)": "1600 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "35 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce GT 435M, NVIDIA GeForce GT 435M (Mobile)", - "Videocard First Benchmarked": "2012-08-20", - "G3DMark/Price": "NA", - "Overall Rank": "1483", - "Last Price Change": "NA", - "Score": 543, - "Average G2D Mark": 185, - "Samples": 139 - } - ], - "gpu1423": [ - "GeForce GT 440", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "810 MHz", - "Memory Clock(s)": "1800,3200 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "65 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce GT 440, (PE64) NVIDIA GeForce GT 440", - "Videocard First Benchmarked": "2010-12-18", - "G3DMark/Price": "3.44", - "Overall Rank": "1215", - "Last Price Change": "$225 USD (2022-04-10)", - "Score": 773, - "Average G2D Mark": 230, - "Samples": 1790 - } - ], - "gpu1424": [ - "GeForce GT 445M", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "1536 MB", - "Core Clock(s)": "590 MHz", - "Memory Clock(s)": "1600,2500 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "35 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce GT 445M, NVIDIA GeForce GT 445M (Mobile)", - "Videocard First Benchmarked": "2010-11-11", - "G3DMark/Price": "NA", - "Overall Rank": "1187", - "Last Price Change": "NA", - "Score": 811, - "Average G2D Mark": 203, - "Samples": 80 - } - ], - "gpu1425": [ - "GeForce GT 520", - { - "Bus Interface": "PCIe 2.0 x16,PCIe 2.0 x1,PCI", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "810 MHz", - "Memory Clock(s)": "1800 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "29 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce GT 520, (PE) NVIDIA GeForce GT 520", - "Videocard First Benchmarked": "2011-04-07", - "G3DMark/Price": "1.01", - "Overall Rank": "1710", - "Last Price Change": "$304 USD (2021-12-17)", - "Score": 307, - "Average G2D Mark": 134, - "Samples": 2185 - } - ], - "gpu70": [ - "GeForce GT 520M", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "740 MHz", - "Memory Clock(s)": "1600 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "12 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce GT 520M, NVIDIA GeForce GT 520M (Mobile)", - "Videocard First Benchmarked": "2012-08-18", - "G3DMark/Price": "9.37", - "Overall Rank": "1737", - "Last Price Change": "$29.95 USD (2020-03-13)", - "Score": 281, - "Average G2D Mark": 74, - "Samples": 1013 - } - ], - "gpu2144": [ - "GeForce GT 520MX", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "900 MHz", - "Memory Clock(s)": "1800 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "20 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce GT 520MX, (PE64) NVIDIA GeForce GT 520MX, NVIDIA GeForce GT 520MX (Mobile)", - "Videocard First Benchmarked": "2012-10-16", - "G3DMark/Price": "NA", - "Overall Rank": "1732", - "Last Price Change": "NA", - "Score": 283, - "Average G2D Mark": 54, - "Samples": 480 - } - ], - "gpu89": [ - "GeForce GT 525M", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "600 MHz", - "Memory Clock(s)": "1800 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "20 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce GT 525M, NVIDIA GeForce GT 525M (Mobile)", - "Videocard First Benchmarked": "2012-09-27", - "G3DMark/Price": "NA", - "Overall Rank": "1579", - "Last Price Change": "NA", - "Score": 459, - "Average G2D Mark": 90, - "Samples": 1687 - } - ], - "gpu1426": [ - "GeForce GT 530", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "700 MHz", - "Memory Clock(s)": "1800 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "50 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce GT 530", - "Videocard First Benchmarked": "2011-06-19", - "G3DMark/Price": "13.78", - "Overall Rank": "1316", - "Last Price Change": "$49 USD (2014-02-28)", - "Score": 675, - "Average G2D Mark": 220, - "Samples": 426 - } - ], - "gpu27": [ - "GeForce GT 540M", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "672 MHz", - "Memory Clock(s)": "1800 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "32 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce GT 540M, NVIDIA GeForce GT 540M (Mobile)", - "Videocard First Benchmarked": "2012-08-22", - "G3DMark/Price": "5.50", - "Overall Rank": "1546", - "Last Price Change": "$87.95 USD (2020-03-13)", - "Score": 484, - "Average G2D Mark": 89, - "Samples": 3689 - } - ], - "gpu112": [ - "GeForce GT 545", - { - "Other names": "NVIDIA GeForce GT 545", - "Videocard First Benchmarked": "2012-08-22", - "G3DMark/Price": "19.82", - "Overall Rank": "1000", - "Last Price Change": "$55.59 USD (2013-02-27)", - "Score": 1102, - "Average G2D Mark": 323, - "Samples": 350 - } - ], - "gpu1427": [ - "GeForce GT 550M", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "740 MHz", - "Memory Clock(s)": "1800 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "32 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce GT 550M, NVIDIA GeForce GT 550M (Mobile)", - "Videocard First Benchmarked": "2011-03-21", - "G3DMark/Price": "NA", - "Overall Rank": "1429", - "Last Price Change": "NA", - "Score": 581, - "Average G2D Mark": 119, - "Samples": 302 - } - ], - "gpu1428": [ - "GeForce GT 555M", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "590,650,753 MHz", - "Memory Clock(s)": "1800,1800,3138 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "30 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce GT 555M, NVIDIA GeForce GT 555M (Mobile)", - "Videocard First Benchmarked": "2011-03-25", - "G3DMark/Price": "3.75", - "Overall Rank": "1323", - "Last Price Change": "$177.2 USD (2021-05-25)", - "Score": 665, - "Average G2D Mark": 112, - "Samples": 1173 - } - ], - "gpu33": [ - "GeForce GT 610", - { - "Bus Interface": "PCIe 2.0 x16, PCIe x1, PCI", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "810 MHz", - "Memory Clock(s)": "1000,1800 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "29 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce GT 610, NVIDIA GeForce 610, (PE) NVIDIA GeForce GT 610", - "Videocard First Benchmarked": "2012-08-16", - "G3DMark/Price": "2.18", - "Overall Rank": "1712", - "Last Price Change": "$139.99 USD (2022-04-10)", - "Score": 306, - "Average G2D Mark": 128, - "Samples": 5232 - } - ], - "gpu2877": [ - "GeForce GT 610M / GT 620M / GT 710M / GT 720M / GT", - { - "Other names": "NVIDIA GeForce GT 610M / GT 620M / GT 710M / GT 720M / GT 820M / Quadro NVS 5200M", - "Videocard First Benchmarked": "2014-05-25", - "G3DMark/Price": "NA", - "Overall Rank": "1657", - "Last Price Change": "NA", - "Score": 369, - "Average G2D Mark": 824, - "Samples": 1 - } - ], - "gpu1429": [ - "GeForce GT 620", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "700-810 MHz", - "Memory Clock(s)": "898 MHz", - "DirectX": "11.0", - "OpenGL": "4.5", - "Max TDP": "30 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce GT 620", - "Videocard First Benchmarked": "2012-06-25", - "G3DMark/Price": "2.43", - "Overall Rank": "1655", - "Last Price Change": "$154 USD (2021-11-20)", - "Score": 374, - "Average G2D Mark": 158, - "Samples": 1537 - } - ], - "gpu1430": [ - "GeForce GT 620M", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "625 MHz", - "DirectX": "11.0", - "OpenGL": "4.5", - "Max TDP": "15 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce GT 620M, NVIDIA GeForce GT620M, NVIDIA GeForce GT 620M (Mobile)", - "Videocard First Benchmarked": "2012-07-20", - "G3DMark/Price": "NA", - "Overall Rank": "1600", - "Last Price Change": "NA", - "Score": 440, - "Average G2D Mark": 128, - "Samples": 636 - } - ], - "gpu2563": [ - "GeForce GT 625", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "810 MHz", - "Memory Clock(s)": "898 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "30 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce GT 625 (OEM), NVIDIA GeForce GT 625", - "Videocard First Benchmarked": "2013-06-30", - "G3DMark/Price": "NA", - "Overall Rank": "1674", - "Last Price Change": "NA", - "Score": 351, - "Average G2D Mark": 188, - "Samples": 107 - } - ], - "gpu2414": [ - "GeForce GT 625M", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "625 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "15 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce GT 625M, NVIDIA GeForce GT 625M (Mobile)", - "Videocard First Benchmarked": "2013-02-12", - "G3DMark/Price": "NA", - "Overall Rank": "1553", - "Last Price Change": "NA", - "Score": 476, - "Average G2D Mark": 156, - "Samples": 35 - } - ], - "gpu1431": [ - "GeForce GT 630", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "875 MHz", - "Memory Clock(s)": "891 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "50 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce GT 630, (PE64) NVIDIA GeForce GT 630, NVIDIA GeForce GT 630 (Mobile)", - "Videocard First Benchmarked": "2012-06-15", - "G3DMark/Price": "4.64", - "Overall Rank": "1305", - "Last Price Change": "$147.01 USD (2022-04-10)", - "Score": 682, - "Average G2D Mark": 214, - "Samples": 5752 - } - ], - "gpu77": [ - "GeForce GT 630M", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "660,800 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "33 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce GT 630M, NVIDIA GeForce GT 630M (Mobile)", - "Videocard First Benchmarked": "2012-10-05", - "G3DMark/Price": "NA", - "Overall Rank": "1484", - "Last Price Change": "NA", - "Score": 542, - "Average G2D Mark": 150, - "Samples": 2997 - } - ], - "gpu2683": [ - "GeForce GT 635", - { - "Other names": "NVIDIA GeForce GT 635", - "Videocard First Benchmarked": "2013-10-18", - "G3DMark/Price": "12.46", - "Overall Rank": "1162", - "Last Price Change": "$66.94 USD (2020-03-14)", - "Score": 834, - "Average G2D Mark": 234, - "Samples": 395 - } - ], - "gpu2136": [ - "GeForce GT 635M", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "1536 MB", - "Core Clock(s)": "675 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "35 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce GT 635M, NVIDIA GeForce GT 635M (Mobile)", - "Videocard First Benchmarked": "2012-09-06", - "G3DMark/Price": "NA", - "Overall Rank": "1453", - "Last Price Change": "NA", - "Score": 566, - "Average G2D Mark": 169, - "Samples": 1542 - } - ], - "gpu1432": [ - "GeForce GT 640", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "900 MHz", - "Memory Clock(s)": "891 MHz", - "DirectX": "11.0", - "OpenGL": "4.5", - "Max TDP": "65 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce GT 640", - "Videocard First Benchmarked": "2011-12-24", - "G3DMark/Price": "10.73", - "Overall Rank": "968", - "Last Price Change": "$109.99 USD (2021-08-28)", - "Score": 1180, - "Average G2D Mark": 290, - "Samples": 4599 - } - ], - "gpu2147": [ - "GeForce GT 640M", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "625 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "32 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce GT 640M, NVIDIA GeForce GT 640M (Mobile)", - "Videocard First Benchmarked": "2012-10-13", - "G3DMark/Price": "NA", - "Overall Rank": "1101", - "Last Price Change": "NA", - "Score": 922, - "Average G2D Mark": 192, - "Samples": 963 - } - ], - "gpu2135": [ - "GeForce GT 640M LE", - { - "Bus Interface": "PCIe 2.0 x16,PCIe 3.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "762,500 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "32 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce GT 640M LE, NVIDIA GeForce GT 640M LE (Mobile)", - "Videocard First Benchmarked": "2012-09-06", - "G3DMark/Price": "0.80", - "Overall Rank": "1307", - "Last Price Change": "$849.99 USD (2013-01-28)", - "Score": 680, - "Average G2D Mark": 170, - "Samples": 343 - } - ], - "gpu2242": [ - "GeForce GT 645", - { - "Other names": "NVIDIA GeForce GT 645", - "Videocard First Benchmarked": "2012-11-01", - "G3DMark/Price": "NA", - "Overall Rank": "708", - "Last Price Change": "NA", - "Score": 2006, - "Average G2D Mark": 443, - "Samples": 11 - } - ], - "gpu2388": [ - "GeForce GT 645M", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "710 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "32 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce GT 645M, NVIDIA GeForce GT 645M (Mobile)", - "Videocard First Benchmarked": "2013-01-25", - "G3DMark/Price": "NA", - "Overall Rank": "1100", - "Last Price Change": "NA", - "Score": 925, - "Average G2D Mark": 161, - "Samples": 239 - } - ], - "gpu122": [ - "GeForce GT 650M", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "835,745,900 MHz", - "Memory Clock(s)": "835 MHz", - "DirectX": "11.2", - "OpenGL": "4.5", - "Max TDP": "45 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce GT 650M, NVIDIA GeForce GT 650M (Mobile)", - "Videocard First Benchmarked": "2012-08-23", - "G3DMark/Price": "NA", - "Overall Rank": "957", - "Last Price Change": "NA", - "Score": 1209, - "Average G2D Mark": 234, - "Samples": 3389 - } - ], - "gpu2952": [ - "GeForce GT 705", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "810 MHz", - "Memory Clock(s)": "898 MHz", - "DirectX": "12.0", - "OpenGL": "4.5", - "Max TDP": "29 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce GT 705", - "Videocard First Benchmarked": "2014-09-18", - "G3DMark/Price": "1.12", - "Overall Rank": "1687", - "Last Price Change": "$296.76 USD (2022-04-10)", - "Score": 334, - "Average G2D Mark": 169, - "Samples": 205 - } - ], - "gpu2910": [ - "GeForce GT 710", - { - "Bus Interface": "PCIe 2.0 x8", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "823 MHz", - "Memory Clock(s)": "900 MHz", - "DirectX": "12.0", - "OpenGL": "4.5", - "Max TDP": "25 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce GT 710", - "Videocard First Benchmarked": "2014-07-20", - "G3DMark/Price": "2.52", - "Overall Rank": "1360", - "Last Price Change": "$249.99 USD (2023-03-13)", - "Score": 631, - "Average G2D Mark": 211, - "Samples": 6404 - } - ], - "gpu2744": [ - "GeForce GT 710M", - { - "Other names": "NVIDIA GeForce GT 710M, NVIDIA GeForce GT 710M (Mobile)", - "Videocard First Benchmarked": "2014-08-23", - "G3DMark/Price": "NA", - "Overall Rank": "1594", - "Last Price Change": "NA", - "Score": 444, - "Average G2D Mark": 117, - "Samples": 156 - } - ], - "gpu2896": [ - "GeForce GT 720", - { - "Bus Interface": "PCIe 2.0 x8", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "797 MHz", - "Memory Clock(s)": "900 MHz", - "DirectX": "12.0", - "OpenGL": "4.5", - "Max TDP": "19 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce GT 720", - "Videocard First Benchmarked": "2014-06-28", - "G3DMark/Price": "6.11", - "Overall Rank": "1386", - "Last Price Change": "$99.99 USD (2020-03-14)", - "Score": 611, - "Average G2D Mark": 199, - "Samples": 1515 - } - ], - "gpu2890": [ - "GeForce GT 720A", - { - "Other names": "NVIDIA GeForce GT 720A, NVIDIA GeForce GT 720A (Mobile)", - "Videocard First Benchmarked": "2014-10-21", - "G3DMark/Price": "NA", - "Overall Rank": "1401", - "Last Price Change": "NA", - "Score": 601, - "Average G2D Mark": 221, - "Samples": 12 - } - ], - "gpu2529": [ - "GeForce GT 720M", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "938 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce GT 720M, NVIDIA GeForce GT 720M (Mobile)", - "Videocard First Benchmarked": "2013-07-10", - "G3DMark/Price": "NA", - "Overall Rank": "1573", - "Last Price Change": "NA", - "Score": 464, - "Average G2D Mark": 119, - "Samples": 1389 - } - ], - "gpu2906": [ - "GeForce GT 730", - { - "Bus Interface": "PCIe 2.0 x8 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "700-902 MHz", - "Memory Clock(s)": "550-1250 MHz", - "DirectX": "12.0", - "OpenGL": "4.5", - "Max TDP": "49 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce GT 730, (PE) NVIDIA GeForce GT 730, (PE64) NVIDIA GeForce GT 730", - "Videocard First Benchmarked": "2014-07-11", - "G3DMark/Price": "7.57", - "Overall Rank": "1167", - "Last Price Change": "$109.99 USD (2022-11-20)", - "Score": 832, - "Average G2D Mark": 247, - "Samples": 8798 - } - ], - "gpu2749": [ - "GeForce GT 730A", - { - "Other names": "NVIDIA GeForce GT 730A", - "Videocard First Benchmarked": "2014-06-17", - "G3DMark/Price": "NA", - "Overall Rank": "1253", - "Last Price Change": "NA", - "Score": 743, - "Average G2D Mark": 714, - "Samples": 10 - } - ], - "gpu2417": [ - "GeForce GT 730M", - { - "Bus Interface": "PCIe 3.0 x8", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "719 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "33 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce GT 730M, NVIDIA GeForce GT 730M (Mobile)", - "Videocard First Benchmarked": "2013-02-22", - "G3DMark/Price": "NA", - "Overall Rank": "1183", - "Last Price Change": "NA", - "Score": 817, - "Average G2D Mark": 173, - "Samples": 976 - } - ], - "gpu2592": [ - "GeForce GT 735M", - { - "Bus Interface": "PCIe 3.0 x8", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "889 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce GT 735M, NVIDIA GeForce GT 735M (Mobile)", - "Videocard First Benchmarked": "2013-07-21", - "G3DMark/Price": "NA", - "Overall Rank": "1365", - "Last Price Change": "NA", - "Score": 629, - "Average G2D Mark": 127, - "Samples": 147 - } - ], - "gpu2883": [ - "GeForce GT 740", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "993 MHz", - "Memory Clock(s)": "1250 MHz", - "DirectX": "12.0", - "OpenGL": "4.4", - "Max TDP": "64 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce GT 740", - "Videocard First Benchmarked": "2014-06-01", - "G3DMark/Price": "6.29", - "Overall Rank": "868", - "Last Price Change": "$236.99 USD (2022-04-10)", - "Score": 1492, - "Average G2D Mark": 341, - "Samples": 2126 - } - ], - "gpu2928": [ - "GeForce GT 740A", - { - "Other names": "NVIDIA GeForce GT 740A, NVIDIA GeForce GT 740A (Mobile)", - "Videocard First Benchmarked": "2015-04-29", - "G3DMark/Price": "NA", - "Overall Rank": "1319", - "Last Price Change": "NA", - "Score": 668, - "Average G2D Mark": 300, - "Samples": 4 - } - ], - "gpu2461": [ - "GeForce GT 740M", - { - "Bus Interface": "PCIe 3.0 x8", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "980 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce GT 740M, NVIDIA GeForce GT 740M (Mobile)", - "Videocard First Benchmarked": "2013-05-12", - "G3DMark/Price": "NA", - "Overall Rank": "1202", - "Last Price Change": "NA", - "Score": 791, - "Average G2D Mark": 146, - "Samples": 4260 - } - ], - "gpu2632": [ - "GeForce GT 745A", - { - "Other names": "NVIDIA GeForce GT 745A, NVIDIA GeForce GT 745A (Mobile)", - "Videocard First Benchmarked": "2013-08-22", - "G3DMark/Price": "NA", - "Overall Rank": "949", - "Last Price Change": "NA", - "Score": 1228, - "Average G2D Mark": 322, - "Samples": 15 - } - ], - "gpu2564": [ - "GeForce GT 745M", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "837 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "45 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce GT 745M, NVIDIA GeForce GT 745M (Mobile)", - "Videocard First Benchmarked": "2013-06-30", - "G3DMark/Price": "NA", - "Overall Rank": "1003", - "Last Price Change": "NA", - "Score": 1096, - "Average G2D Mark": 179, - "Samples": 578 - } - ], - "gpu2492": [ - "GeForce GT 750M", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "967 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "50 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce GT 750M, NVIDIA GeForce GT 750M (Mobile)", - "Videocard First Benchmarked": "2013-04-22", - "G3DMark/Price": "NA", - "Overall Rank": "915", - "Last Price Change": "NA", - "Score": 1320, - "Average G2D Mark": 241, - "Samples": 3377 - } - ], - "gpu2646": [ - "GeForce GT 755M", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "1020 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "50 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce GT 755M, NVIDIA GeForce GT 755M (Mobile)", - "Videocard First Benchmarked": "2013-09-14", - "G3DMark/Price": "NA", - "Overall Rank": "807", - "Last Price Change": "NA", - "Score": 1664, - "Average G2D Mark": 318, - "Samples": 776 - } - ], - "gpu3586": [ - "GeForce GT 820M", - { - "Other names": "NVIDIA GeForce GT 820M, NVIDIA GeForce GT 820M (Mobile)", - "Videocard First Benchmarked": "2016-10-07", - "G3DMark/Price": "NA", - "Overall Rank": "1430", - "Last Price Change": "NA", - "Score": 580, - "Average G2D Mark": 146, - "Samples": 167 - } - ], - "gpu2591": [ - "GeForce GT625M", - { - "Other names": "NVIDIA GeForce GT625M, NVIDIA GeForce GT625M (Mobile)", - "Videocard First Benchmarked": "2014-01-04", - "G3DMark/Price": "NA", - "Overall Rank": "1583", - "Last Price Change": "NA", - "Score": 457, - "Average G2D Mark": 136, - "Samples": 31 - } - ], - "gpu2986": [ - "GeForce GTS 150M", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "400 MHz", - "Memory Clock(s)": "1000 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce GTS 150M", - "Videocard First Benchmarked": "2014-10-22", - "G3DMark/Price": "NA", - "Overall Rank": "1525", - "Last Price Change": "NA", - "Score": 504, - "Average G2D Mark": 407, - "Samples": 1 - } - ], - "gpu1435": [ - "GeForce GTS 160M", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "600 MHz", - "Memory Clock(s)": "1500 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "60 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce GTS 160M", - "Videocard First Benchmarked": "2009-07-23", - "G3DMark/Price": "NA", - "Overall Rank": "1311", - "Last Price Change": "NA", - "Score": 679, - "Average G2D Mark": 308, - "Samples": 5 - } - ], - "gpu1436": [ - "GeForce GTS 240", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "675 MHz", - "Memory Clock(s)": "2200 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "120 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce GTS 240", - "Videocard First Benchmarked": "2009-09-17", - "G3DMark/Price": "8.88", - "Overall Rank": "1434", - "Last Price Change": "$64.99 USD (2011-08-27)", - "Score": 577, - "Average G2D Mark": 148, - "Samples": 210 - } - ], - "gpu29": [ - "GeForce GTS 250", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "738 MHz", - "Memory Clock(s)": "2000,2200 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "150 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce GTS 250, NVIDIA GeForce GTS 250 (Prerelease - WDDM 1.1)", - "Videocard First Benchmarked": "2012-08-15", - "G3DMark/Price": "8.62", - "Overall Rank": "1398", - "Last Price Change": "$69.99 USD (2021-11-20)", - "Score": 604, - "Average G2D Mark": 62, - "Samples": 3137 - } - ], - "gpu1437": [ - "GeForce GTS 250M", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "500 MHz", - "Memory Clock(s)": "3200 MHz", - "DirectX": "10.1", - "OpenGL": "3.3", - "Max TDP": "28 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce GTS 250M, NVIDIA GeForce GTS 250M (Mobile)", - "Videocard First Benchmarked": "2009-10-27", - "G3DMark/Price": "NA", - "Overall Rank": "1450", - "Last Price Change": "NA", - "Score": 569, - "Average G2D Mark": 54, - "Samples": 57 - } - ], - "gpu1438": [ - "GeForce GTS 350M", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "500 MHz", - "Memory Clock(s)": "3200 MHz", - "DirectX": "10.1", - "OpenGL": "3.3", - "Max TDP": "28 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce GTS 350M, NVIDIA GeForce GTS 350M (Mobile)", - "Videocard First Benchmarked": "2010-08-20", - "G3DMark/Price": "NA", - "Overall Rank": "1624", - "Last Price Change": "NA", - "Score": 408, - "Average G2D Mark": 113, - "Samples": 28 - } - ], - "gpu1439": [ - "GeForce GTS 360M", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "550 MHz", - "Memory Clock(s)": "3600 MHz", - "DirectX": "10.1", - "OpenGL": "3.3", - "Max TDP": "38 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce GTS 360M, NVIDIA GeForce GTS 360M (Mobile)", - "Videocard First Benchmarked": "2010-01-23", - "G3DMark/Price": "NA", - "Overall Rank": "1334", - "Last Price Change": "NA", - "Score": 651, - "Average G2D Mark": 60, - "Samples": 220 - } - ], - "gpu1": [ - "GeForce GTS 450", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "783 MHz", - "Memory Clock(s)": "3608 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "106 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce GTS 450, (PE64) NVIDIA GeForce GTS 450", - "Videocard First Benchmarked": "2012-08-09", - "G3DMark/Price": "16.45", - "Overall Rank": "917", - "Last Price Change": "$79.99 USD (2021-12-17)", - "Score": 1316, - "Average G2D Mark": 299, - "Samples": 4064 - } - ], - "gpu3596": [ - "GeForce GTX 1050", - { - "Bus Interface": "PCI-E 3.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "1354 MHz", - "Memory Clock(s)": "1752 MHz", - "DirectX": "12", - "OpenGL": "4.5", - "Max TDP": "75 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce GTX 1050, NVIDIA GeForce GTX 1050 (Mobile)", - "Videocard First Benchmarked": "2016-10-27", - "G3DMark/Price": "21.14", - "Overall Rank": "362", - "Last Price Change": "$239 USD (2023-11-25)", - "Score": 5052, - "Average G2D Mark": 466, - "Samples": 17546 - } - ], - "gpu4088": [ - "GeForce GTX 1050 (Mobile)", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "1354 MHz", - "Memory Clock(s)": "7000 MHz", - "DirectX": "12", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce GTX 1050 (Mobile)", - "Videocard First Benchmarked": "2019-04-10", - "G3DMark/Price": "NA", - "Overall Rank": "404", - "Last Price Change": "NA", - "Score": 4462, - "Average G2D Mark": 292, - "Samples": 2443 - } - ], - "gpu4603": [ - "GeForce GTX 1050 3GB", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "3072 MB", - "Core Clock(s)": "1392 MHz", - "Memory Clock(s)": "7000 MHz", - "DirectX": "12", - "OpenGL": "4.6", - "Max TDP": "75 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce GTX 1050", - "Videocard First Benchmarked": "2020-04-09", - "G3DMark/Price": "NA", - "Overall Rank": "358", - "Last Price Change": "NA", - "Score": 5150, - "Average G2D Mark": 611, - "Samples": 118 - } - ], - "gpu3595": [ - "GeForce GTX 1050 Ti", - { - "Bus Interface": "PCI-E 3.0 x16", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "1290 MHz", - "Memory Clock(s)": "1752 MHz", - "DirectX": "12.0", - "OpenGL": "4.5", - "Max TDP": "75 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce GTX 1050 Ti, NVIDIA GeForce GTX 1050 Ti (Mobile)", - "Videocard First Benchmarked": "2016-10-27", - "G3DMark/Price": "37.05", - "Overall Rank": "293", - "Last Price Change": "$170.29 USD (2023-12-14)", - "Score": 6309, - "Average G2D Mark": 650, - "Samples": 31845 - } - ], - "gpu4089": [ - "GeForce GTX 1050 Ti (Mobile)", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "1493 MHz", - "Memory Clock(s)": "7000 MHz", - "DirectX": "12", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce GTX 1050 Ti (Mobile)", - "Videocard First Benchmarked": "2019-04-10", - "G3DMark/Price": "NA", - "Overall Rank": "308", - "Last Price Change": "NA", - "Score": 5919, - "Average G2D Mark": 323, - "Samples": 1543 - } - ], - "gpu3922": [ - "GeForce GTX 1050 Ti with Max-Q Design", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "1151 MHz", - "Memory Clock(s)": "7000 MHz", - "DirectX": "12", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce GTX 1050 Ti with Max-Q Design, NVIDIA GeForce GTX 1050 Ti with Max-Q Design (Mobile)", - "Videocard First Benchmarked": "2018-04-07", - "G3DMark/Price": "NA", - "Overall Rank": "332", - "Last Price Change": "NA", - "Score": 5381, - "Average G2D Mark": 357, - "Samples": 1605 - } - ], - "gpu3971": [ - "GeForce GTX 1050 with Max-Q Design", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "999 MHz", - "Memory Clock(s)": "7000 MHz", - "DirectX": "12", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce GTX 1050 with Max-Q Design, NVIDIA GeForce GTX 1050 with Max-Q Design (Mobile)", - "Videocard First Benchmarked": "2018-08-20", - "G3DMark/Price": "NA", - "Overall Rank": "428", - "Last Price Change": "NA", - "Score": 4037, - "Average G2D Mark": 286, - "Samples": 262 - } - ], - "gpu3548": [ - "GeForce GTX 1060", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "6144 MB", - "Core Clock(s)": "1708 MHz", - "Memory Clock(s)": "2002 MHz", - "DirectX": "12.0", - "OpenGL": "4.5", - "Max TDP": "120 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce GTX 1060 6GB, NVIDIA GeForce GTX 1060, NVIDIA GeForce GTX 1060 (Mobile)", - "Videocard First Benchmarked": "2016-07-20", - "G3DMark/Price": "35.99", - "Overall Rank": "179", - "Last Price Change": "$279.99 USD (2022-04-15)", - "Score": 10076, - "Average G2D Mark": 755, - "Samples": 39436 - } - ], - "gpu4086": [ - "GeForce GTX 1060 (Mobile)", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "6144 MB", - "Core Clock(s)": "1404 MHz", - "Memory Clock(s)": "2000 MHz", - "DirectX": "12", - "OpenGL": "4.5", - "Max TDP": "80 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce GTX 1060 (Mobile)", - "Videocard First Benchmarked": "2019-04-10", - "G3DMark/Price": "NA", - "Overall Rank": "230", - "Last Price Change": "NA", - "Score": 8161, - "Average G2D Mark": 444, - "Samples": 1662 - } - ], - "gpu3566": [ - "GeForce GTX 1060 3GB", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "3072 MB", - "Core Clock(s)": "1708 MHz", - "Memory Clock(s)": "2000 MHz", - "DirectX": "12.0", - "OpenGL": "4.5", - "Max TDP": "120 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce GTX 1060 3GB", - "Videocard First Benchmarked": "2016-08-24", - "G3DMark/Price": "36.16", - "Overall Rank": "186", - "Last Price Change": "$269.99 USD (2022-06-12)", - "Score": 9764, - "Average G2D Mark": 781, - "Samples": 17565 - } - ], - "gpu3923": [ - "GeForce GTX 1060 5GB", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "5120 MB", - "Core Clock(s)": "1556 MHz", - "Memory Clock(s)": "2002 MHz", - "DirectX": "12", - "OpenGL": "4.6", - "Max TDP": "120 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce GTX 1060 5GB", - "Videocard First Benchmarked": "2018-04-12", - "G3DMark/Price": "18.52", - "Overall Rank": "208", - "Last Price Change": "$487.99 USD (2021-11-21)", - "Score": 9037, - "Average G2D Mark": 610, - "Samples": 90 - } - ], - "gpu3769": [ - "GeForce GTX 1060 with Max-Q Design", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "6144 MB", - "Core Clock(s)": "1480 MHz", - "Memory Clock(s)": "2002 MHz", - "DirectX": "12.1", - "OpenGL": "4.5", - "Max TDP": "80 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce GTX 1060 with Max-Q Design, NVIDIA GeForce GTX 1060 with Max-Q Design (Mobile)", - "Videocard First Benchmarked": "2017-06-19", - "G3DMark/Price": "NA", - "Overall Rank": "240", - "Last Price Change": "NA", - "Score": 7890, - "Average G2D Mark": 414, - "Samples": 1924 - } - ], - "gpu3521": [ - "GeForce GTX 1070", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "8192 MB", - "Core Clock(s)": "1506 MHz", - "Memory Clock(s)": "2002 MHz", - "DirectX": "12.0", - "OpenGL": "4.5", - "Max TDP": "150 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce GTX 1070, NVIDIA GeForce GTX 1070 (Mobile)", - "Videocard First Benchmarked": "2016-06-11", - "G3DMark/Price": "27.69", - "Overall Rank": "122", - "Last Price Change": "$488.09 USD (2023-03-15)", - "Score": 13516, - "Average G2D Mark": 855, - "Samples": 42303 - } - ], - "gpu4087": [ - "GeForce GTX 1070 (Mobile)", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "8192 MB", - "Core Clock(s)": "1443 MHz", - "Memory Clock(s)": "8000 MHz", - "DirectX": "12", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce GTX 1070 (Mobile)", - "Videocard First Benchmarked": "2019-04-10", - "G3DMark/Price": "NA", - "Overall Rank": "172", - "Last Price Change": "NA", - "Score": 10465, - "Average G2D Mark": 603, - "Samples": 642 - } - ], - "gpu3842": [ - "GeForce GTX 1070 Ti", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "8192 MB", - "Core Clock(s)": "1607 MHz", - "Memory Clock(s)": "2002 MHz", - "DirectX": "12", - "OpenGL": "4.6", - "Max TDP": "180 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce GTX 1070 Ti", - "Videocard First Benchmarked": "2017-11-04", - "G3DMark/Price": "25.81", - "Overall Rank": "103", - "Last Price Change": "$569.99 USD (2023-05-17)", - "Score": 14709, - "Average G2D Mark": 881, - "Samples": 9357 - } - ], - "gpu3779": [ - "GeForce GTX 1070 with Max-Q Design", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "8192 MB", - "Core Clock(s)": "1379 MHz", - "Memory Clock(s)": "2000 MHz", - "DirectX": "12.1", - "OpenGL": "4.5", - "Max TDP": "90 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce GTX 1070 with Max-Q Design, NVIDIA GeForce GTX 1070 with MaxQ Design, NVIDIA GeForce GTX 1070 with Max-Q Design (Mobile)", - "Videocard First Benchmarked": "2017-07-05", - "G3DMark/Price": "NA", - "Overall Rank": "180", - "Last Price Change": "NA", - "Score": 10050, - "Average G2D Mark": 442, - "Samples": 660 - } - ], - "gpu3502": [ - "GeForce GTX 1080", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "8192 MB", - "Core Clock(s)": "1607 MHz", - "Memory Clock(s)": "2500 MHz", - "DirectX": "12", - "OpenGL": "4.5", - "Max TDP": "180 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce GTX 1080, NVIDIA GeForce GTX 1080 (Mobile)", - "Videocard First Benchmarked": "2016-05-14", - "G3DMark/Price": "35.03", - "Overall Rank": "92", - "Last Price Change": "$442.79 USD (2022-04-15)", - "Score": 15509, - "Average G2D Mark": 893, - "Samples": 33791 - } - ], - "gpu3699": [ - "GeForce GTX 1080 Ti", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "11264 MB", - "Core Clock(s)": "1480 MHz", - "Memory Clock(s)": "2750 MHz", - "DirectX": "12.0", - "OpenGL": "4.5", - "Max TDP": "250 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce GTX 1080 Ti", - "Videocard First Benchmarked": "2017-03-10", - "G3DMark/Price": "38.32", - "Overall Rank": "61", - "Last Price Change": "$483.82 USD (2022-05-26)", - "Score": 18542, - "Average G2D Mark": 940, - "Samples": 25230 - } - ], - "gpu3784": [ - "GeForce GTX 1080 with Max-Q Design", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "8192 MB", - "Core Clock(s)": "1468 MHz", - "Memory Clock(s)": "2500 MHz", - "DirectX": "12.1", - "OpenGL": "4.5", - "Max TDP": "110 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce GTX 1080 with Max-Q Design, NVIDIA GeForce GTX 1080 with Max-Q Design (Mobile)", - "Videocard First Benchmarked": "2017-07-14", - "G3DMark/Price": "NA", - "Overall Rank": "159", - "Last Price Change": "NA", - "Score": 11577, - "Average G2D Mark": 747, - "Samples": 170 - } - ], - "gpu4571": [ - "GeForce GTX 1630", - { - "Other names": "NVIDIA GeForce GTX 1630", - "Videocard First Benchmarked": "2022-08-04", - "G3DMark/Price": "32.17", - "Overall Rank": "366", - "Last Price Change": "$155.87 USD (2023-12-26)", - "Score": 5014, - "Average G2D Mark": 668, - "Samples": 74 - } - ], - "gpu4078": [ - "GeForce GTX 1650", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "1485 MHz", - "Memory Clock(s)": "800 MHz", - "DirectX": "12", - "OpenGL": "4.6", - "Max TDP": "75 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce GTX 1650, NVIDIA GeForce GTX 1650 (Mobile)", - "Videocard First Benchmarked": "2019-04-27", - "G3DMark/Price": "44.97", - "Overall Rank": "241", - "Last Price Change": "$174.99 USD (2023-12-24)", - "Score": 7869, - "Average G2D Mark": 578, - "Samples": 15123 - } - ], - "gpu4090": [ - "GeForce GTX 1650 (Mobile)", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "1395 MHz", - "Memory Clock(s)": "8000 MHz", - "DirectX": "12", - "OpenGL": "4.6", - "Max TDP": "50 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce GTX 1650 (Mobile)", - "Videocard First Benchmarked": "2019-05-01", - "G3DMark/Price": "NA", - "Overall Rank": "272", - "Last Price Change": "NA", - "Score": 6969, - "Average G2D Mark": 384, - "Samples": 1756 - } - ], - "gpu4167": [ - "GeForce GTX 1650 SUPER", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "1530 MHz", - "Memory Clock(s)": "12000 MHz", - "DirectX": "12", - "OpenGL": "4.6", - "Max TDP": "100 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce GTX 1650 SUPER", - "Videocard First Benchmarked": "2019-11-27", - "G3DMark/Price": "55.00", - "Overall Rank": "178", - "Last Price Change": "$184.05 USD (2023-09-24)", - "Score": 10122, - "Average G2D Mark": 755, - "Samples": 4124 - } - ], - "gpu4195": [ - "GeForce GTX 1650 Ti", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "1350 MHz", - "Memory Clock(s)": "12000 MHz", - "DirectX": "12", - "OpenGL": "4.6", - "Max TDP": "55 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce GTX 1650 Ti (Mobile)", - "Videocard First Benchmarked": "2020-03-29", - "G3DMark/Price": "NA", - "Overall Rank": "253", - "Last Price Change": "NA", - "Score": 7577, - "Average G2D Mark": 392, - "Samples": 2548 - } - ], - "gpu4209": [ - "GeForce GTX 1650 Ti with Max-Q Design", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "1035 MHz", - "Memory Clock(s)": "10000 MHz", - "DirectX": "12", - "OpenGL": "4.6", - "Max TDP": "35 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce GTX 1650 Ti with Max-Q Design (Mobile)", - "Videocard First Benchmarked": "2020-05-17", - "G3DMark/Price": "NA", - "Overall Rank": "289", - "Last Price Change": "NA", - "Score": 6402, - "Average G2D Mark": 333, - "Samples": 336 - } - ], - "gpu4104": [ - "GeForce GTX 1650 with Max-Q Design", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "1020 MHz", - "Memory Clock(s)": "8000 (4x2000) MHz", - "DirectX": "12", - "OpenGL": "4.6", - "Max TDP": "35 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce GTX 1650 with Max-Q Design (Mobile), NVIDIA GeForce GTX 1650 with Max-Q Design", - "Videocard First Benchmarked": "2019-06-21", - "G3DMark/Price": "NA", - "Overall Rank": "301", - "Last Price Change": "NA", - "Score": 6140, - "Average G2D Mark": 324, - "Samples": 1076 - } - ], - "gpu4062": [ - "GeForce GTX 1660", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "6144 MB", - "Core Clock(s)": "1530 MHz", - "Memory Clock(s)": "2000 MHz", - "DirectX": "12", - "OpenGL": "4.5", - "Max TDP": "120 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce GTX 1660", - "Videocard First Benchmarked": "2019-03-18", - "G3DMark/Price": "39.05", - "Overall Rank": "155", - "Last Price Change": "$299.77 USD (2023-12-26)", - "Score": 11706, - "Average G2D Mark": 786, - "Samples": 5232 - } - ], - "gpu4159": [ - "GeForce GTX 1660 SUPER", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "6144 MB", - "Core Clock(s)": "1530 MHz", - "Memory Clock(s)": "1750 MHz", - "DirectX": "12", - "OpenGL": "4.6", - "Max TDP": "125 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce GTX 1660 SUPER", - "Videocard First Benchmarked": "2019-11-02", - "G3DMark/Price": "56.07", - "Overall Rank": "137", - "Last Price Change": "$227.99 USD (2023-12-05)", - "Score": 12784, - "Average G2D Mark": 813, - "Samples": 10240 - } - ], - "gpu4045": [ - "GeForce GTX 1660 Ti", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "6144 MB", - "Core Clock(s)": "1500 MHz", - "Memory Clock(s)": "1500 MHz", - "DirectX": "12.0", - "OpenGL": "4.6", - "Max TDP": "120 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce GTX 1660 Ti", - "Videocard First Benchmarked": "2019-02-06", - "G3DMark/Price": "20.90", - "Overall Rank": "136", - "Last Price Change": "$619.99 USD (2023-12-11)", - "Score": 12955, - "Average G2D Mark": 818, - "Samples": 7058 - } - ], - "gpu4091": [ - "GeForce GTX 1660 Ti (Mobile)", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "6144 MB", - "Core Clock(s)": "1455 MHz", - "Memory Clock(s)": "1500 MHz", - "DirectX": "12", - "OpenGL": "4.6", - "Max TDP": "80 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce GTX 1660 Ti (Mobile)", - "Videocard First Benchmarked": "2019-05-01", - "G3DMark/Price": "NA", - "Overall Rank": "175", - "Last Price Change": "NA", - "Score": 10209, - "Average G2D Mark": 491, - "Samples": 3984 - } - ], - "gpu4082": [ - "GeForce GTX 1660 Ti with Max-Q Design", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "6144 MB", - "Core Clock(s)": "1140 MHz", - "Memory Clock(s)": "1500 MHz", - "DirectX": "12", - "OpenGL": "4.6", - "Max TDP": "60 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce GTX 1660 Ti with Max-Q Design (Mobile), NVIDIA GeForce GTX 1660 Ti with Max-Q Design", - "Videocard First Benchmarked": "2019-05-11", - "G3DMark/Price": "NA", - "Overall Rank": "216", - "Last Price Change": "NA", - "Score": 8681, - "Average G2D Mark": 368, - "Samples": 940 - } - ], - "gpu17": [ - "GeForce GTX 260", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "896 MB", - "Core Clock(s)": "576 MHz", - "Memory Clock(s)": "1998 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "202 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce GTX 260, NVIDIA GeForce GTX 260 (Prerelease - WDDM 1.1)", - "Videocard First Benchmarked": "2012-08-10", - "G3DMark/Price": "15.38", - "Overall Rank": "948", - "Last Price Change": "$79.99 USD (2022-04-15)", - "Score": 1230, - "Average G2D Mark": 63, - "Samples": 2970 - } - ], - "gpu83": [ - "GeForce GTX 260M", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "550 MHz", - "Memory Clock(s)": "1900 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "65 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce GTX 260M, NVIDIA GeForce GTX 260M (Mobile)", - "Videocard First Benchmarked": "2012-08-19", - "G3DMark/Price": "NA", - "Overall Rank": "1647", - "Last Price Change": "NA", - "Score": 379, - "Average G2D Mark": 43, - "Samples": 330 - } - ], - "gpu21": [ - "GeForce GTX 275", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "896 MB", - "Core Clock(s)": "633 MHz", - "Memory Clock(s)": "2268 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "219 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce GTX 275", - "Videocard First Benchmarked": "2012-08-12", - "G3DMark/Price": "3.31", - "Overall Rank": "890", - "Last Price Change": "$431.72 USD (2021-05-22)", - "Score": 1431, - "Average G2D Mark": 85, - "Samples": 774 - } - ], - "gpu66": [ - "GeForce GTX 280", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "602 MHz", - "Memory Clock(s)": "2214 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "236 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce GTX 280, NVIDIA GeForce GTX 280 (Prerelease - WDDM 1.1)", - "Videocard First Benchmarked": "2012-08-18", - "G3DMark/Price": "2.49", - "Overall Rank": "927", - "Last Price Change": "$522.78 USD (2018-01-05)", - "Score": 1299, - "Average G2D Mark": 62, - "Samples": 453 - } - ], - "gpu1443": [ - "GeForce GTX 280M", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "585 MHz", - "Memory Clock(s)": "1900 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "75 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce GTX 280M, NVIDIA GeForce GTX 280M [Dox Optimised 182.46], NVIDIA GeForce GTX 280M (Mobile)", - "Videocard First Benchmarked": "2009-05-27", - "G3DMark/Price": "NA", - "Overall Rank": "1439", - "Last Price Change": "NA", - "Score": 576, - "Average G2D Mark": 153, - "Samples": 65 - } - ], - "gpu1444": [ - "GeForce GTX 285", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "648 MHz", - "Memory Clock(s)": "2484 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "204 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce GTX 285, NVIDIA GeForce GTX 285 (Prerelease - WDDM 1.1)", - "Videocard First Benchmarked": "2009-04-02", - "G3DMark/Price": "12.64", - "Overall Rank": "860", - "Last Price Change": "$119.99 USD (2022-04-15)", - "Score": 1516, - "Average G2D Mark": 82, - "Samples": 813 - } - ], - "gpu1445": [ - "GeForce GTX 285M", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "600 MHz", - "Memory Clock(s)": "2000 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "75 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce GTX 285M, NVIDIA GeForce GTX 285M (Mobile)", - "Videocard First Benchmarked": "2010-02-22", - "G3DMark/Price": "NA", - "Overall Rank": "1337", - "Last Price Change": "NA", - "Score": 650, - "Average G2D Mark": 169, - "Samples": 42 - } - ], - "gpu1446": [ - "GeForce GTX 295", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "1792 MB", - "Core Clock(s)": "576 MHz", - "Memory Clock(s)": "1998 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "289 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce GTX 295, NVIDIA GeForce GTX 295 (Prerelease - WDDM 1.1)", - "Videocard First Benchmarked": "2009-04-01", - "G3DMark/Price": "7.44", - "Overall Rank": "965", - "Last Price Change": "$159.99 USD (2016-03-14)", - "Score": 1190, - "Average G2D Mark": 111, - "Samples": 456 - } - ], - "gpu31": [ - "GeForce GTX 460", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "768 MB", - "Core Clock(s)": "675 MHz", - "Memory Clock(s)": "3600 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "150 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce GTX 460", - "Videocard First Benchmarked": "2012-08-15", - "G3DMark/Price": "25.04", - "Overall Rank": "655", - "Last Price Change": "$89.99 USD (2022-03-30)", - "Score": 2253, - "Average G2D Mark": 384, - "Samples": 6809 - } - ], - "gpu123": [ - "GeForce GTX 460 SE", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "650 MHz", - "Memory Clock(s)": "3400 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "150 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce GTX 460 SE", - "Videocard First Benchmarked": "2012-08-23", - "G3DMark/Price": "12.57", - "Overall Rank": "703", - "Last Price Change": "$159.99 USD (2012-01-15)", - "Score": 2011, - "Average G2D Mark": 366, - "Samples": 695 - } - ], - "gpu1447": [ - "GeForce GTX 460 v2", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "778 MHz", - "Memory Clock(s)": "4008 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "160 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce GTX 460 v2", - "Videocard First Benchmarked": "2011-10-12", - "G3DMark/Price": "9.36", - "Overall Rank": "746", - "Last Price Change": "$199.99 USD (2011-10-14)", - "Score": 1872, - "Average G2D Mark": 418, - "Samples": 214 - } - ], - "gpu93": [ - "GeForce GTX 460M", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "1536 MB", - "Core Clock(s)": "675 MHz", - "Memory Clock(s)": "2500 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "50 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce GTX 460M, NVIDIA GeForce GTX 460M (Mobile)", - "Videocard First Benchmarked": "2012-08-20", - "G3DMark/Price": "NA", - "Overall Rank": "944", - "Last Price Change": "NA", - "Score": 1235, - "Average G2D Mark": 258, - "Samples": 810 - } - ], - "gpu82": [ - "GeForce GTX 465", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "607 MHz", - "Memory Clock(s)": "3206 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "200 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce GTX 465", - "Videocard First Benchmarked": "2012-08-19", - "G3DMark/Price": "13.74", - "Overall Rank": "568", - "Last Price Change": "$195 USD (2021-05-13)", - "Score": 2679, - "Average G2D Mark": 467, - "Samples": 541 - } - ], - "gpu55": [ - "GeForce GTX 470", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "1280 MB", - "Core Clock(s)": "607 MHz", - "Memory Clock(s)": "3348 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "215 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce GTX 470", - "Videocard First Benchmarked": "2012-08-18", - "G3DMark/Price": "51.50", - "Overall Rank": "519", - "Last Price Change": "$59.99 USD (2021-06-18)", - "Score": 3090, - "Average G2D Mark": 395, - "Samples": 2021 - } - ], - "gpu1448": [ - "GeForce GTX 470M", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "1536 MB", - "Core Clock(s)": "550 MHz", - "Memory Clock(s)": "2500 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "50 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce GTX 470M, NVIDIA GeForce GTX 470M (Mobile)", - "Videocard First Benchmarked": "2010-12-22", - "G3DMark/Price": "NA", - "Overall Rank": "725", - "Last Price Change": "NA", - "Score": 1953, - "Average G2D Mark": 413, - "Samples": 8 - } - ], - "gpu100": [ - "GeForce GTX 480", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "1536 MB", - "Core Clock(s)": "700 MHz", - "Memory Clock(s)": "3696 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "250 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce GTX 480", - "Videocard First Benchmarked": "2012-08-21", - "G3DMark/Price": "23.89", - "Overall Rank": "427", - "Last Price Change": "$169.99 USD (2021-11-20)", - "Score": 4062, - "Average G2D Mark": 447, - "Samples": 1855 - } - ], - "gpu1449": [ - "GeForce GTX 480M", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "425 MHz", - "Memory Clock(s)": "2400 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "100 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce GTX 480M, NVIDIA GeForce GTX 480M (Mobile)", - "Videocard First Benchmarked": "2010-07-01", - "G3DMark/Price": "NA", - "Overall Rank": "826", - "Last Price Change": "NA", - "Score": 1617, - "Average G2D Mark": 458, - "Samples": 15 - } - ], - "gpu1450": [ - "GeForce GTX 485M", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "575 MHz", - "Memory Clock(s)": "3000 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "100 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce GTX 485M, NVIDIA GeForce GTX 485M (Mobile)", - "Videocard First Benchmarked": "2011-01-19", - "G3DMark/Price": "NA", - "Overall Rank": "623", - "Last Price Change": "NA", - "Score": 2360, - "Average G2D Mark": 479, - "Samples": 24 - } - ], - "gpu16": [ - "GeForce GTX 550 Ti", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "3072 MB", - "Core Clock(s)": "900 MHz", - "Memory Clock(s)": "4104 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "116 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce GTX 550 Ti", - "Videocard First Benchmarked": "2012-08-10", - "G3DMark/Price": "15.41", - "Overall Rank": "852", - "Last Price Change": "$99.99 USD (2022-03-30)", - "Score": 1541, - "Average G2D Mark": 368, - "Samples": 7879 - } - ], - "gpu1451": [ - "GeForce GTX 555", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "736 MHz", - "Memory Clock(s)": "3828 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "150 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce GTX 555, NVIDIA GeForce GTX 555", - "Videocard First Benchmarked": "2012-02-18", - "G3DMark/Price": "NA", - "Overall Rank": "844", - "Last Price Change": "NA", - "Score": 1572, - "Average G2D Mark": 447, - "Samples": 160 - } - ], - "gpu71": [ - "GeForce GTX 560", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "810 MHz", - "Memory Clock(s)": "4008 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "150 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce GTX 560", - "Videocard First Benchmarked": "2012-08-18", - "G3DMark/Price": "13.28", - "Overall Rank": "557", - "Last Price Change": "$205 USD (2022-04-10)", - "Score": 2722, - "Average G2D Mark": 425, - "Samples": 5320 - } - ], - "gpu106": [ - "GeForce GTX 560 SE", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "736 MHz", - "Memory Clock(s)": "3828 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "150 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce GTX 560 SE", - "Videocard First Benchmarked": "2012-08-21", - "G3DMark/Price": "21.27", - "Overall Rank": "738", - "Last Price Change": "$89.99 USD (2013-07-11)", - "Score": 1914, - "Average G2D Mark": 423, - "Samples": 288 - } - ], - "gpu18": [ - "GeForce GTX 560 Ti", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "822 MHz", - "Memory Clock(s)": "4008 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "170 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce GTX 560 Ti", - "Videocard First Benchmarked": "2012-08-10", - "G3DMark/Price": "23.36", - "Overall Rank": "521", - "Last Price Change": "$129.99 USD (2021-05-27)", - "Score": 3037, - "Average G2D Mark": 426, - "Samples": 9782 - } - ], - "gpu1452": [ - "GeForce GTX 560M", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "3072 MB", - "Core Clock(s)": "775 MHz", - "Memory Clock(s)": "2500 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "75 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce GTX 560M, NVIDIA GeForce GTX 560M (Mobile)", - "Videocard First Benchmarked": "2011-06-13", - "G3DMark/Price": "NA", - "Overall Rank": "953", - "Last Price Change": "NA", - "Score": 1222, - "Average G2D Mark": 254, - "Samples": 975 - } - ], - "gpu15": [ - "GeForce GTX 570", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "2560 MB", - "Core Clock(s)": "732 MHz", - "Memory Clock(s)": "3800 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "219 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce GTX 570", - "Videocard First Benchmarked": "2012-08-14", - "G3DMark/Price": "26.23", - "Overall Rank": "435", - "Last Price Change": "$149.99 USD (2021-11-20)", - "Score": 3934, - "Average G2D Mark": 473, - "Samples": 5329 - } - ], - "gpu1453": [ - "GeForce GTX 570M", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "1536 MB", - "Core Clock(s)": "575 MHz", - "Memory Clock(s)": "3000 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "75 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce GTX 570M, NVIDIA GeForce GTX 570M (Mobile)", - "Videocard First Benchmarked": "2011-09-19", - "G3DMark/Price": "NA", - "Overall Rank": "752", - "Last Price Change": "NA", - "Score": 1864, - "Average G2D Mark": 358, - "Samples": 179 - } - ], - "gpu68": [ - "GeForce GTX 580", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "3072 MB", - "Core Clock(s)": "772 MHz", - "Memory Clock(s)": "4008 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "244 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce GTX 580", - "Videocard First Benchmarked": "2012-08-18", - "G3DMark/Price": "32.50", - "Overall Rank": "396", - "Last Price Change": "$139.92 USD (2022-03-30)", - "Score": 4547, - "Average G2D Mark": 471, - "Samples": 4628 - } - ], - "gpu1455": [ - "GeForce GTX 580M", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "620 MHz", - "Memory Clock(s)": "3000 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "100 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce GTX 580M, NVIDIA GeForce GTX 580M (Mobile)", - "Videocard First Benchmarked": "2011-07-29", - "G3DMark/Price": "8.34", - "Overall Rank": "688", - "Last Price Change": "$248.68 USD (2020-03-10)", - "Score": 2074, - "Average G2D Mark": 349, - "Samples": 101 - } - ], - "gpu1457": [ - "GeForce GTX 590", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "3072 MB", - "Core Clock(s)": "607 MHz", - "Memory Clock(s)": "3414 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "365 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce GTX 590", - "Videocard First Benchmarked": "2011-03-25", - "G3DMark/Price": "7.68", - "Overall Rank": "496", - "Last Price Change": "$435 USD (2022-03-30)", - "Score": 3341, - "Average G2D Mark": 394, - "Samples": 419 - } - ], - "gpu2513": [ - "GeForce GTX 645", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "823.5 MHz", - "Memory Clock(s)": "1000 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "64 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce GTX 645", - "Videocard First Benchmarked": "2013-05-12", - "G3DMark/Price": "NA", - "Overall Rank": "747", - "Last Price Change": "NA", - "Score": 1871, - "Average G2D Mark": 427, - "Samples": 465 - } - ], - "gpu2155": [ - "GeForce GTX 650", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "1058 MHz", - "Memory Clock(s)": "1250 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "64 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce GTX 650", - "Videocard First Benchmarked": "2012-09-25", - "G3DMark/Price": "15.95", - "Overall Rank": "781", - "Last Price Change": "$109.98 USD (2022-03-30)", - "Score": 1754, - "Average G2D Mark": 358, - "Samples": 6893 - } - ], - "gpu2177": [ - "GeForce GTX 650 Ti", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "928 MHz", - "Memory Clock(s)": "1350 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "110 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce GTX 650 Ti, WinFast GTX 650 Ti(NVIDIA), (PE64) NVIDIA GeForce GTX 650 Ti", - "Videocard First Benchmarked": "2012-10-14", - "G3DMark/Price": "27.18", - "Overall Rank": "591", - "Last Price Change": "$93.05 USD (2022-03-30)", - "Score": 2529, - "Average G2D Mark": 407, - "Samples": 5253 - } - ], - "gpu2479": [ - "GeForce GTX 650 Ti BOOST", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "980 MHz", - "Memory Clock(s)": "1502 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "134 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce GTX 650 Ti BOOST", - "Videocard First Benchmarked": "2013-04-05", - "G3DMark/Price": "NA", - "Overall Rank": "495", - "Last Price Change": "NA", - "Score": 3342, - "Average G2D Mark": 449, - "Samples": 2469 - } - ], - "gpu2152": [ - "GeForce GTX 660", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "3072 MB", - "Core Clock(s)": "980 MHz", - "Memory Clock(s)": "1502 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "140 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce GTX 660", - "Videocard First Benchmarked": "2012-09-22", - "G3DMark/Price": "23.81", - "Overall Rank": "431", - "Last Price Change": "$167.95 USD (2022-03-30)", - "Score": 3999, - "Average G2D Mark": 477, - "Samples": 15673 - } - ], - "gpu88": [ - "GeForce GTX 660 Ti", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "3072 MB", - "Core Clock(s)": "915 MHz", - "Memory Clock(s)": "1502 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "150 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce GTX 660 Ti", - "Videocard First Benchmarked": "2012-08-20", - "G3DMark/Price": "30.54", - "Overall Rank": "409", - "Last Price Change": "$144 USD (2022-03-30)", - "Score": 4397, - "Average G2D Mark": 459, - "Samples": 8013 - } - ], - "gpu1458": [ - "GeForce GTX 660M", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "950 MHz", - "Memory Clock(s)": "1000 MHz", - "DirectX": "11.2", - "OpenGL": "4.5", - "Max TDP": "50 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce GTX 660M, NVIDIA GeForce GTX 660M (Mobile)", - "Videocard First Benchmarked": "2012-05-04", - "G3DMark/Price": "18.19", - "Overall Rank": "884", - "Last Price Change": "$78.99 USD (2020-03-14)", - "Score": 1437, - "Average G2D Mark": 263, - "Samples": 1490 - } - ], - "gpu35": [ - "GeForce GTX 670", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "915 MHz", - "Memory Clock(s)": "1502 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "170 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce GTX 670", - "Videocard First Benchmarked": "2012-08-16", - "G3DMark/Price": "27.43", - "Overall Rank": "337", - "Last Price Change": "$193.98 USD (2022-04-10)", - "Score": 5320, - "Average G2D Mark": 529, - "Samples": 9446 - } - ], - "gpu1459": [ - "GeForce GTX 670M", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "3072 MB", - "Core Clock(s)": "620 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "75 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce GTX 670M, NVIDIA GeForce GTX 670M (Mobile)", - "Videocard First Benchmarked": "2012-05-02", - "G3DMark/Price": "NA", - "Overall Rank": "799", - "Last Price Change": "NA", - "Score": 1718, - "Average G2D Mark": 300, - "Samples": 645 - } - ], - "gpu2296": [ - "GeForce GTX 670MX", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "3072 MB", - "Core Clock(s)": "615 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "75 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce GTX 670MX, NVIDIA GeForce GTX 670MX (Mobile)", - "Videocard First Benchmarked": "2012-12-14", - "G3DMark/Price": "NA", - "Overall Rank": "727", - "Last Price Change": "NA", - "Score": 1944, - "Average G2D Mark": 324, - "Samples": 448 - } - ], - "gpu1460": [ - "GeForce GTX 675M", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "632 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "100 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce GTX 675M, MONSTER NVIDIA GeForce GTX 675M, %NVIDIA_DEV.1212%, NVIDIA GeForce GTX 675M (Mobile)", - "Videocard First Benchmarked": "2012-05-02", - "G3DMark/Price": "NA", - "Overall Rank": "734", - "Last Price Change": "NA", - "Score": 1925, - "Average G2D Mark": 314, - "Samples": 371 - } - ], - "gpu2349": [ - "GeForce GTX 675MX", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "667 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "100 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce GTX 675MX, NVIDIA GeForce GTX 675MX (Mobile)", - "Videocard First Benchmarked": "2013-01-03", - "G3DMark/Price": "NA", - "Overall Rank": "552", - "Last Price Change": "NA", - "Score": 2744, - "Average G2D Mark": 388, - "Samples": 143 - } - ], - "gpu41": [ - "GeForce GTX 680", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "1006 MHz", - "Memory Clock(s)": "1502 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "195 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce GTX 680", - "Videocard First Benchmarked": "2012-08-17", - "G3DMark/Price": "13.91", - "Overall Rank": "323", - "Last Price Change": "$399 USD (2022-03-30)", - "Score": 5549, - "Average G2D Mark": 532, - "Samples": 7199 - } - ], - "gpu1461": [ - "GeForce GTX 680M", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "719 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "100 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce GTX 680M, NVIDIA GeForce GTX 680M (Mobile)", - "Videocard First Benchmarked": "2012-07-23", - "G3DMark/Price": "23.65", - "Overall Rank": "505", - "Last Price Change": "$135.99 USD (2020-03-10)", - "Score": 3216, - "Average G2D Mark": 338, - "Samples": 473 - } - ], - "gpu3832": [ - "GeForce GTX 680M KY_Bullet Edition", - { - "Other names": "NVIDIA GeForce GTX 680M KY_Bullet Edition", - "Videocard First Benchmarked": "2017-10-14", - "G3DMark/Price": "NA", - "Overall Rank": "470", - "Last Price Change": "NA", - "Score": 3569, - "Average G2D Mark": 581, - "Samples": 1 - } - ], - "gpu2356": [ - "GeForce GTX 680MX", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "719 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "122 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce GTX 680MX, NVIDIA GeForce GTX 680MX (Mobile)", - "Videocard First Benchmarked": "2013-01-08", - "G3DMark/Price": "NA", - "Overall Rank": "423", - "Last Price Change": "NA", - "Score": 4142, - "Average G2D Mark": 589, - "Samples": 39 - } - ], - "gpu1462": [ - "GeForce GTX 690", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "915 MHz", - "Memory Clock(s)": "1502 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "300 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce GTX 690", - "Videocard First Benchmarked": "2012-05-09", - "G3DMark/Price": "19.85", - "Overall Rank": "319", - "Last Price Change": "$280.99 USD (2022-03-30)", - "Score": 5579, - "Average G2D Mark": 466, - "Samples": 1191 - } - ], - "gpu2843": [ - "GeForce GTX 745", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "1033 MHz", - "Memory Clock(s)": "900 MHz", - "DirectX": "12.0", - "OpenGL": "4.5", - "Max TDP": "55 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce GTX 745", - "Videocard First Benchmarked": "2014-03-22", - "G3DMark/Price": "7.54", - "Overall Rank": "673", - "Last Price Change": "$284.95 USD (2022-03-30)", - "Score": 2148, - "Average G2D Mark": 471, - "Samples": 1779 - } - ], - "gpu2825": [ - "GeForce GTX 750", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "1020 MHz", - "Memory Clock(s)": "1250 MHz", - "DirectX": "12.0", - "OpenGL": "4.5", - "Max TDP": "55 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce GTX 750", - "Videocard First Benchmarked": "2014-02-27", - "G3DMark/Price": "42.05", - "Overall Rank": "492", - "Last Price Change": "$79.99 USD (2022-05-10)", - "Score": 3364, - "Average G2D Mark": 501, - "Samples": 6164 - } - ], - "gpu2815": [ - "GeForce GTX 750 Ti", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "1020 MHz", - "Memory Clock(s)": "1350 MHz", - "DirectX": "12.0", - "OpenGL": "4.5", - "Max TDP": "60 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce GTX 750 Ti, NVIDIA GeForce GTX 750Ti, (PE64) NVIDIA GeForce GTX 750 Ti, NVIDIA GeForce GTX 750 Ti (Mobile)", - "Videocard First Benchmarked": "2014-02-15", - "G3DMark/Price": "44.29", - "Overall Rank": "437", - "Last Price Change": "$88.11 USD (2022-04-10)", - "Score": 3903, - "Average G2D Mark": 510, - "Samples": 21033 - } - ], - "gpu2561": [ - "GeForce GTX 760", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "980 MHz", - "Memory Clock(s)": "1502 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "170 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce GTX 760, NVIDIA GeForce GTX 760 (192-bit), NVIDIA GeForce GTX 760 (Mobile)", - "Videocard First Benchmarked": "2013-06-27", - "G3DMark/Price": "32.10", - "Overall Rank": "379", - "Last Price Change": "$149 USD (2022-03-30)", - "Score": 4783, - "Average G2D Mark": 527, - "Samples": 17797 - } - ], - "gpu2801": [ - "GeForce GTX 760 Ti", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "915 MHz", - "Memory Clock(s)": "1502 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "170 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce GTX 760 Ti OEM", - "Videocard First Benchmarked": "2014-01-24", - "G3DMark/Price": "17.45", - "Overall Rank": "352", - "Last Price Change": "$297.5 USD (2015-06-17)", - "Score": 5191, - "Average G2D Mark": 556, - "Samples": 156 - } - ], - "gpu4108": [ - "GeForce GTX 760 Ti OEM", - { - "Videocard First Benchmarked": "2019-07-05", - "G3DMark/Price": "NA", - "Overall Rank": "327", - "Last Price Change": "NA", - "Score": 5427, - "Average G2D Mark": 694, - "Samples": 13 - } - ], - "gpu3186": [ - "GeForce GTX 760A", - { - "Other names": "NVIDIA GeForce GTX 760A, NVIDIA GeForce GTX 760A (Mobile)", - "Videocard First Benchmarked": "2015-04-12", - "G3DMark/Price": "NA", - "Overall Rank": "950", - "Last Price Change": "NA", - "Score": 1226, - "Average G2D Mark": 384, - "Samples": 7 - } - ], - "gpu2597": [ - "GeForce GTX 760M", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "719 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "55 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce GTX 760M, NVIDIA GeForce GTX 760M (Mobile)", - "Videocard First Benchmarked": "2013-08-22", - "G3DMark/Price": "NA", - "Overall Rank": "801", - "Last Price Change": "NA", - "Score": 1710, - "Average G2D Mark": 235, - "Samples": 443 - } - ], - "gpu2537": [ - "GeForce GTX 765M", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "863 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "65 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce GTX 765M, NVIDIA GeForce GTX 765M (Mobile)", - "Videocard First Benchmarked": "2013-06-09", - "G3DMark/Price": "10.70", - "Overall Rank": "712", - "Last Price Change": "$186.3 USD (2021-05-20)", - "Score": 1993, - "Average G2D Mark": 288, - "Samples": 1360 - } - ], - "gpu2531": [ - "GeForce GTX 770", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "1046 MHz", - "Memory Clock(s)": "1752.5 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "230 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce GTX 770", - "Videocard First Benchmarked": "2013-06-01", - "G3DMark/Price": "23.76", - "Overall Rank": "309", - "Last Price Change": "$249 USD (2022-03-30)", - "Score": 5916, - "Average G2D Mark": 559, - "Samples": 14626 - } - ], - "gpu2534": [ - "GeForce GTX 770M", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "3072 MB", - "Core Clock(s)": "797 MHz", - "Memory Clock(s)": "1002 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "75 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce GTX 770M, NVIDIA GeForce GTX 770M (Mobile)", - "Videocard First Benchmarked": "2013-06-10", - "G3DMark/Price": "20.08", - "Overall Rank": "548", - "Last Price Change": "$138 USD (2020-03-10)", - "Score": 2771, - "Average G2D Mark": 338, - "Samples": 1061 - } - ], - "gpu2729": [ - "GeForce GTX 775M", - { - "Other names": "NVIDIA GeForce GTX 775M, NVIDIA GeForce GTX 775M (Mobile)", - "Videocard First Benchmarked": "2013-11-16", - "G3DMark/Price": "NA", - "Overall Rank": "473", - "Last Price Change": "NA", - "Score": 3551, - "Average G2D Mark": 555, - "Samples": 40 - } - ], - "gpu2525": [ - "GeForce GTX 780", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "6144 MB", - "Core Clock(s)": "863 MHz", - "Memory Clock(s)": "1502 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "250 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce GTX 780", - "Videocard First Benchmarked": "2013-05-28", - "G3DMark/Price": "28.64", - "Overall Rank": "234", - "Last Price Change": "$279.99 USD (2021-11-20)", - "Score": 8020, - "Average G2D Mark": 593, - "Samples": 8597 - } - ], - "gpu2717": [ - "GeForce GTX 780 Ti", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "3072 MB", - "Core Clock(s)": "875 MHz", - "Memory Clock(s)": "1750 MHz", - "DirectX": "11.0", - "OpenGL": "4.5", - "Max TDP": "250 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce GTX 780 Ti", - "Videocard First Benchmarked": "2013-11-08", - "G3DMark/Price": "27.93", - "Overall Rank": "193", - "Last Price Change": "$339.99 USD (2021-11-20)", - "Score": 9496, - "Average G2D Mark": 631, - "Samples": 4691 - } - ], - "gpu2536": [ - "GeForce GTX 780M", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "797 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "122 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce GTX 780M, NVIDIA GeForce GTX 780M (Mobile)", - "Videocard First Benchmarked": "2013-06-06", - "G3DMark/Price": "7.77", - "Overall Rank": "439", - "Last Price Change": "$499 USD (2021-05-16)", - "Score": 3879, - "Average G2D Mark": 408, - "Samples": 827 - } - ], - "gpu3213": [ - "GeForce GTX 850A", - { - "Other names": "NVIDIA GeForce GTX 850A, NVIDIA GeForce GTX 850A (Mobile)", - "Videocard First Benchmarked": "2015-05-23", - "G3DMark/Price": "NA", - "Overall Rank": "1026", - "Last Price Change": "NA", - "Score": 1050, - "Average G2D Mark": 551, - "Samples": 6 - } - ], - "gpu2859": [ - "GeForce GTX 850M", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "876 MHz", - "Memory Clock(s)": "2500 MHz", - "DirectX": "11.2", - "OpenGL": "4.5", - "Max TDP": "40 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce GTX 850M, NVIDIA GeForce GTX 850M (Mobile)", - "Videocard First Benchmarked": "2014-05-13", - "G3DMark/Price": "NA", - "Overall Rank": "595", - "Last Price Change": "NA", - "Score": 2517, - "Average G2D Mark": 225, - "Samples": 2634 - } - ], - "gpu2968": [ - "GeForce GTX 850M - MODDED", - { - "Other names": "NVIDIA GeForce GTX 850M - MODDED", - "Videocard First Benchmarked": "2014-10-04", - "G3DMark/Price": "NA", - "Overall Rank": "1006", - "Last Price Change": "NA", - "Score": 1092, - "Average G2D Mark": 819, - "Samples": 1 - } - ], - "gpu2866": [ - "GeForce GTX 860M", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "1085 MHz", - "Memory Clock(s)": "2500 MHz", - "DirectX": "11.2", - "OpenGL": "4.5", - "Max TDP": "45 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce GTX 860M, NVIDIA GeForce GTX 860M (Mobile)", - "Videocard First Benchmarked": "2014-04-30", - "G3DMark/Price": "26.59", - "Overall Rank": "523", - "Last Price Change": "$114 USD (2021-05-13)", - "Score": 3031, - "Average G2D Mark": 225, - "Samples": 4021 - } - ], - "gpu2833": [ - "GeForce GTX 870M", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "6144 MB", - "Core Clock(s)": "967 MHz", - "Memory Clock(s)": "2500 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "110 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce GTX 870M, NVIDIA GeForce GTX 870M (Mobile)", - "Videocard First Benchmarked": "2014-03-09", - "G3DMark/Price": "NA", - "Overall Rank": "484", - "Last Price Change": "NA", - "Score": 3449, - "Average G2D Mark": 281, - "Samples": 702 - } - ], - "gpu2850": [ - "GeForce GTX 880M", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "8192 MB", - "Core Clock(s)": "993 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "130 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce GTX880M, NVIDIA GeForce GTX 880M, NVIDIA GeForce GTX 880M (Mobile)", - "Videocard First Benchmarked": "2014-03-08", - "G3DMark/Price": "NA", - "Overall Rank": "449", - "Last Price Change": "NA", - "Score": 3804, - "Average G2D Mark": 331, - "Samples": 635 - } - ], - "gpu3295": [ - "GeForce GTX 950", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "1024 MHz", - "Memory Clock(s)": "1653 MHz", - "DirectX": "12", - "OpenGL": "4.5", - "Max TDP": "90 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce GTX 950, NVIDIA GeForce GTX 950 (Mobile)", - "Videocard First Benchmarked": "2015-08-23", - "G3DMark/Price": "37.61", - "Overall Rank": "336", - "Last Price Change": "$141.99 USD (2022-03-30)", - "Score": 5340, - "Average G2D Mark": 644, - "Samples": 7060 - } - ], - "gpu3334": [ - "GeForce GTX 950A", - { - "Other names": "NVIDIA GeForce GTX 950A, NVIDIA GeForce GTX 950A (Mobile)", - "Videocard First Benchmarked": "2015-10-17", - "G3DMark/Price": "NA", - "Overall Rank": "581", - "Last Price Change": "NA", - "Score": 2598, - "Average G2D Mark": 273, - "Samples": 55 - } - ], - "gpu3171": [ - "GeForce GTX 950M", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "914 MHz", - "Memory Clock(s)": "1000 MHz", - "DirectX": "12.0", - "OpenGL": "4.5", - "Max TDP": "75 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce GTX 950M, NVIDIA GeForce GTX 950M (Mobile)", - "Videocard First Benchmarked": "2015-03-31", - "G3DMark/Price": "4.55", - "Overall Rank": "584", - "Last Price Change": "$567 USD (2020-03-14)", - "Score": 2582, - "Average G2D Mark": 216, - "Samples": 4861 - } - ], - "gpu3114": [ - "GeForce GTX 960", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "1127 MHz", - "Memory Clock(s)": "1753 MHz", - "DirectX": "12.0", - "OpenGL": "4.5", - "Max TDP": "120 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce GTX 960, (PE64) NVIDIA GeForce GTX 960, NVIDIA GeForce GTX 960 (Mobile)", - "Videocard First Benchmarked": "2015-01-23", - "G3DMark/Price": "35.17", - "Overall Rank": "303", - "Last Price Change": "$172 USD (2021-11-20)", - "Score": 6049, - "Average G2D Mark": 675, - "Samples": 23346 - } - ], - "gpu3404": [ - "GeForce GTX 960A", - { - "Other names": "NVIDIA GeForce GTX 960A, NVIDIA GeForce GTX 960A (Mobile)", - "Videocard First Benchmarked": "2015-12-30", - "G3DMark/Price": "NA", - "Overall Rank": "612", - "Last Price Change": "NA", - "Score": 2411, - "Average G2D Mark": 631, - "Samples": 29 - } - ], - "gpu3176": [ - "GeForce GTX 960M", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "1097 MHz", - "Memory Clock(s)": "1253 MHz", - "DirectX": "12.0", - "OpenGL": "4.5", - "Max TDP": "65 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce GTX 960M, NVIDIA GeForce GTX 960M (Mobile)", - "Videocard First Benchmarked": "2015-04-02", - "G3DMark/Price": "2.91", - "Overall Rank": "489", - "Last Price Change": "$1169 USD (2020-03-16)", - "Score": 3397, - "Average G2D Mark": 246, - "Samples": 8964 - } - ], - "gpu3113": [ - "GeForce GTX 965M", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "944 MHz", - "Memory Clock(s)": "1253 MHz", - "DirectX": "12.0", - "OpenGL": "4.5", - "Max TDP": "60 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce GTX 965M, NVIDIA GTX 965M, %NVIDIA_DEV.1427.176B.103C%, NVIDIA GeForce GTX 965M (Mobile)", - "Videocard First Benchmarked": "2015-01-22", - "G3DMark/Price": "NA", - "Overall Rank": "453", - "Last Price Change": "NA", - "Score": 3745, - "Average G2D Mark": 335, - "Samples": 952 - } - ], - "gpu2954": [ - "GeForce GTX 970", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "1050 MHz", - "Memory Clock(s)": "1752.5 MHz", - "DirectX": "12", - "OpenGL": "4.5", - "Max TDP": "145 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce GTX 970", - "Videocard First Benchmarked": "2014-09-19", - "G3DMark/Price": "40.54", - "Overall Rank": "190", - "Last Price Change": "$237.99 USD (2022-03-30)", - "Score": 9648, - "Average G2D Mark": 776, - "Samples": 48186 - } - ], - "gpu2981": [ - "GeForce GTX 970M", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "3072 MB", - "Core Clock(s)": "924 MHz", - "Memory Clock(s)": "1253 MHz", - "DirectX": "12", - "OpenGL": "4.5", - "Max TDP": "75 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce GTX 970M, NVIDIA GeForce GTX 970M (Mobile)", - "Videocard First Benchmarked": "2014-10-18", - "G3DMark/Price": "27.25", - "Overall Rank": "313", - "Last Price Change": "$209.99 USD (2020-03-14)", - "Score": 5722, - "Average G2D Mark": 393, - "Samples": 3451 - } - ], - "gpu3965": [ - "GeForce GTX 970XM FORCE", - { - "Other names": "NVIDIA GeForce GTX 970XM FORCE", - "Videocard First Benchmarked": "2018-08-08", - "G3DMark/Price": "NA", - "Overall Rank": "278", - "Last Price Change": "NA", - "Score": 6707, - "Average G2D Mark": 725, - "Samples": 1 - } - ], - "gpu2953": [ - "GeForce GTX 980", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "1126 MHz", - "Memory Clock(s)": "1752.5 MHz", - "DirectX": "12", - "OpenGL": "4.5", - "Max TDP": "165 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce GTX 980, NVIDIA GeForce GTX 980 (Mobile)", - "Videocard First Benchmarked": "2014-09-19", - "G3DMark/Price": "45.02", - "Overall Rank": "166", - "Last Price Change": "$247.35 USD (2022-04-15)", - "Score": 11135, - "Average G2D Mark": 803, - "Samples": 12927 - } - ], - "gpu3218": [ - "GeForce GTX 980 Ti", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "6144 MB", - "Core Clock(s)": "1076 MHz", - "Memory Clock(s)": "1753 (7012) MHz", - "DirectX": "12", - "OpenGL": "4.5", - "Max TDP": "250 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce GTX 980 Ti", - "Videocard First Benchmarked": "2015-06-02", - "G3DMark/Price": "17.76", - "Overall Rank": "112", - "Last Price Change": "$778.69 USD (2023-11-11)", - "Score": 13828, - "Average G2D Mark": 856, - "Samples": 13370 - } - ], - "gpu2976": [ - "GeForce GTX 980M", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "1038 MHz", - "Memory Clock(s)": "1253 MHz", - "DirectX": "12", - "OpenGL": "4.5", - "Max TDP": "100 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce GTX 980M, NVIDIA GTX 980M, NVIDIA GeForce GTX 980M (Mobile)", - "Videocard First Benchmarked": "2014-10-16", - "G3DMark/Price": "25.32", - "Overall Rank": "261", - "Last Price Change": "$289.99 USD (2020-03-10)", - "Score": 7341, - "Average G2D Mark": 498, - "Samples": 2598 - } - ], - "gpu2433": [ - "GeForce GTX Titan", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "6144 MB", - "Core Clock(s)": "837 MHz", - "Memory Clock(s)": "1502 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "250 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce GTX Titan", - "Videocard First Benchmarked": "2013-02-28", - "G3DMark/Price": "11.02", - "Overall Rank": "229", - "Last Price Change": "$745 USD (2021-12-17)", - "Score": 8212, - "Average G2D Mark": 632, - "Samples": 1224 - } - ], - "gpu2842": [ - "GeForce GTX TITAN Black", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "6144 MB", - "Core Clock(s)": "889 MHz", - "Memory Clock(s)": "1750 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "250 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce GTX TITAN Black", - "Videocard First Benchmarked": "2014-03-21", - "G3DMark/Price": "17.17", - "Overall Rank": "209", - "Last Price Change": "$524.99 USD (2021-12-24)", - "Score": 9016, - "Average G2D Mark": 603, - "Samples": 419 - } - ], - "gpu3162": [ - "GeForce GTX TITAN X", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "12288 MB", - "Core Clock(s)": "1000 MHz", - "Memory Clock(s)": "1753 (7012) MHz", - "DirectX": "12", - "OpenGL": "4.5", - "Max TDP": "250 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce GTX TITAN X", - "Videocard First Benchmarked": "2015-03-19", - "G3DMark/Price": "11.90", - "Overall Rank": "131", - "Last Price Change": "$1096.99 USD (2022-04-10)", - "Score": 13059, - "Average G2D Mark": 852, - "Samples": 1641 - } - ], - "gpu2884": [ - "GeForce GTX TITAN Z", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "12288 MB", - "Core Clock(s)": "705 MHz", - "Memory Clock(s)": "1750 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "375 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce GTX TITAN Z", - "Videocard First Benchmarked": "2014-06-07", - "G3DMark/Price": "5.93", - "Overall Rank": "210", - "Last Price Change": "$1515 USD (2022-04-15)", - "Score": 8987, - "Average G2D Mark": 656, - "Samples": 129 - } - ], - "gpu3860": [ - "GeForce MX110", - { - "Other names": "NVIDIA GeForce MX110, NVIDIA GeForce MX110 (Mobile)", - "Videocard First Benchmarked": "2017-12-10", - "G3DMark/Price": "NA", - "Overall Rank": "880", - "Last Price Change": "NA", - "Score": 1454, - "Average G2D Mark": 191, - "Samples": 692 - } - ], - "gpu3890": [ - "GeForce MX130", - { - "Other names": "NVIDIA GeForce MX130, NVIDIA GeForce MX130 (Mobile)", - "Videocard First Benchmarked": "2018-01-22", - "G3DMark/Price": "NA", - "Overall Rank": "751", - "Last Price Change": "NA", - "Score": 1865, - "Average G2D Mark": 199, - "Samples": 1437 - } - ], - "gpu3789": [ - "GeForce MX150", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "1468 MHz", - "Memory Clock(s)": "1502 MHz", - "DirectX": "12", - "OpenGL": "4.5", - "Max TDP": "25 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce MX150, NVIDIA GeForce MX150 (Mobile)", - "Videocard First Benchmarked": "2017-07-28", - "G3DMark/Price": "38.42", - "Overall Rank": "646", - "Last Price Change": "$59.29 USD (2022-03-30)", - "Score": 2278, - "Average G2D Mark": 214, - "Samples": 3491 - } - ], - "gpu4036": [ - "GeForce MX230", - { - "Other names": "NVIDIA GeForce MX230, NVIDIA GeForce MX230 (Mobile)", - "Videocard First Benchmarked": "2019-01-08", - "G3DMark/Price": "NA", - "Overall Rank": "759", - "Last Price Change": "NA", - "Score": 1839, - "Average G2D Mark": 217, - "Samples": 588 - } - ], - "gpu4076": [ - "GeForce MX250", - { - "Other names": "NVIDIA GeForce MX250 (Mobile), NVIDIA GeForce MX250", - "Videocard First Benchmarked": "2019-04-26", - "G3DMark/Price": "NA", - "Overall Rank": "605", - "Last Price Change": "NA", - "Score": 2439, - "Average G2D Mark": 244, - "Samples": 1549 - } - ], - "gpu4203": [ - "GeForce MX330", - { - "Other names": "NVIDIA GeForce MX330 (Mobile)", - "Videocard First Benchmarked": "2020-04-25", - "G3DMark/Price": "NA", - "Overall Rank": "603", - "Last Price Change": "NA", - "Score": 2462, - "Average G2D Mark": 229, - "Samples": 598 - } - ], - "gpu4194": [ - "GeForce MX350", - { - "Other names": "NVIDIA GeForce MX350 (Mobile)", - "Videocard First Benchmarked": "2020-03-16", - "G3DMark/Price": "NA", - "Overall Rank": "543", - "Last Price Change": "NA", - "Score": 2809, - "Average G2D Mark": 240, - "Samples": 563 - } - ], - "gpu4296": [ - "GeForce MX450", - { - "Other names": "NVIDIA GeForce MX450 (Mobile)", - "Videocard First Benchmarked": "2020-10-02", - "G3DMark/Price": "NA", - "Overall Rank": "456", - "Last Price Change": "NA", - "Score": 3729, - "Average G2D Mark": 302, - "Samples": 681 - } - ], - "gpu4493": [ - "GeForce MX550", - { - "Other names": "NVIDIA GeForce MX550 (Mobile)", - "Videocard First Benchmarked": "2022-01-26", - "G3DMark/Price": "NA", - "Overall Rank": "392", - "Last Price Change": "NA", - "Score": 4610, - "Average G2D Mark": 405, - "Samples": 245 - } - ], - "gpu4560": [ - "GeForce MX570", - { - "Other names": "NVIDIA GeForce MX570 (Mobile)", - "Videocard First Benchmarked": "2022-06-27", - "G3DMark/Price": "NA", - "Overall Rank": "305", - "Last Price Change": "NA", - "Score": 6021, - "Average G2D Mark": 422, - "Samples": 21 - } - ], - "gpu4595": [ - "GeForce MX570 A", - { - "Other names": "NVIDIA GeForce MX570 A (Mobile)", - "Videocard First Benchmarked": "2022-08-31", - "G3DMark/Price": "NA", - "Overall Rank": "300", - "Last Price Change": "NA", - "Score": 6177, - "Average G2D Mark": 383, - "Samples": 38 - } - ], - "gpu1463": [ - "GeForce PCX 5300", - { - "Bus Interface": "PCI-E x16", - "Max Memory Size": "128 MB", - "Core Clock(s)": "250 MHz", - "Memory Clock(s)": "400 MHz", - "DirectX": "9.0b", - "OpenGL": "1.5", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce PCX 5300", - "Videocard First Benchmarked": "2009-05-05", - "G3DMark/Price": "NA", - "Overall Rank": "2358", - "Last Price Change": "NA", - "Score": 6, - "Average G2D Mark": 197, - "Samples": 3 - } - ], - "gpu1464": [ - "GeForce PCX 5750", - { - "Bus Interface": "PCI-E x16", - "Max Memory Size": "128 MB", - "Core Clock(s)": "425 MHz", - "Memory Clock(s)": "500 MHz", - "DirectX": "9.0b", - "OpenGL": "1.5", - "Videocard Category": "Desktop", - "Other names": "MSI MS-StarForce GeForce PCX 5750 (NVIDIA GeForce, NVIDIA GeForce PCX 5750, MSI MS-StarForce GeForce PCX 5750 (NVIDIA GeForce PCX 5750)", - "Videocard First Benchmarked": "2010-06-30", - "G3DMark/Price": "NA", - "Overall Rank": "2236", - "Last Price Change": "NA", - "Score": 35, - "Average G2D Mark": 310, - "Samples": 8 - } - ], - "gpu1465": [ - "GeForce PCX 5900", - { - "Bus Interface": "PCI-E x16", - "Max Memory Size": "256 MB", - "Core Clock(s)": "450 MHz", - "Memory Clock(s)": "850 MHz", - "DirectX": "9.0b", - "OpenGL": "1.5", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce PCX 5900", - "Videocard First Benchmarked": "2009-04-27", - "G3DMark/Price": "NA", - "Overall Rank": "2242", - "Last Price Change": "NA", - "Score": 34, - "Average G2D Mark": 258, - "Samples": 1 - } - ], - "gpu4501": [ - "GeForce RTX 2050", - { - "Bus Interface": "PCIe 3.0 x8", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "1185 MHz", - "Memory Clock(s)": "1750 MHz", - "DirectX": "12_2", - "OpenGL": "4.6", - "Max TDP": "45 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce RTX 2050 (Mobile)", - "Videocard First Benchmarked": "2022-02-08", - "G3DMark/Price": "NA", - "Overall Rank": "260", - "Last Price Change": "NA", - "Score": 7352, - "Average G2D Mark": 452, - "Samples": 196 - } - ], - "gpu4037": [ - "GeForce RTX 2060", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "6144 MB", - "Core Clock(s)": "1365 MHz", - "Memory Clock(s)": "14000 (1750x8) MHz", - "DirectX": "12", - "OpenGL": "4.6", - "Max TDP": "160 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce RTX 2060, NVIDIA GeForce RTX 2060 (Mobile)", - "Videocard First Benchmarked": "2019-01-15", - "G3DMark/Price": "34.33", - "Overall Rank": "108", - "Last Price Change": "$411.49 USD (2023-12-25)", - "Score": 14126, - "Average G2D Mark": 752, - "Samples": 17730 - } - ], - "gpu4085": [ - "GeForce RTX 2060 (Mobile)", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "6144 MB", - "Core Clock(s)": "960 MHz", - "Memory Clock(s)": "14000 MHz", - "DirectX": "12", - "OpenGL": "4.6", - "Max TDP": "80 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce RTX 2060 (Mobile)", - "Videocard First Benchmarked": "2019-04-10", - "G3DMark/Price": "NA", - "Overall Rank": "162", - "Last Price Change": "NA", - "Score": 11355, - "Average G2D Mark": 540, - "Samples": 1241 - } - ], - "gpu4602": [ - "GeForce RTX 2060 12GB", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "12288 MB", - "Core Clock(s)": "1470 MHz", - "Memory Clock(s)": "14000 MHz", - "DirectX": "12", - "OpenGL": "4.6", - "Max TDP": "185 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce RTX 2060", - "Videocard First Benchmarked": "2022-01-09", - "G3DMark/Price": "NA", - "Overall Rank": "84", - "Last Price Change": "NA", - "Score": 15905, - "Average G2D Mark": 843, - "Samples": 659 - } - ], - "gpu4117": [ - "GeForce RTX 2060 SUPER", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "8192 MB", - "Core Clock(s)": "1407 MHz", - "Memory Clock(s)": "14000 (1750x8) MHz", - "DirectX": "12", - "OpenGL": "4.6", - "Max TDP": "175 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce RTX 2060 SUPER", - "Videocard First Benchmarked": "2019-07-12", - "G3DMark/Price": "44.29", - "Overall Rank": "77", - "Last Price Change": "$374.38 USD (2023-12-25)", - "Score": 16581, - "Average G2D Mark": 864, - "Samples": 6249 - } - ], - "gpu4199": [ - "GeForce RTX 2060 with Max-Q Design", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "6144 MB", - "Core Clock(s)": "975 MHz", - "Memory Clock(s)": "11000 MHz", - "DirectX": "12", - "OpenGL": "4.6", - "Max TDP": "65 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce RTX 2060 with Max-Q Design (Mobile)", - "Videocard First Benchmarked": "2020-04-09", - "G3DMark/Price": "NA", - "Overall Rank": "185", - "Last Price Change": "NA", - "Score": 9788, - "Average G2D Mark": 418, - "Samples": 781 - } - ], - "gpu4001": [ - "GeForce RTX 2070", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "8192 MB", - "Core Clock(s)": "1410 MHz", - "Memory Clock(s)": "14000 (1750x8) MHz", - "DirectX": "12", - "OpenGL": "4.6", - "Max TDP": "175 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce RTX 2070, NVIDIA GeForce RTX 2070 (Mobile)", - "Videocard First Benchmarked": "2018-10-18", - "G3DMark/Price": "31.12", - "Overall Rank": "80", - "Last Price Change": "$519.99 USD (2023-08-24)", - "Score": 16184, - "Average G2D Mark": 828, - "Samples": 10991 - } - ], - "gpu4083": [ - "GeForce RTX 2070 (Mobile)", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "8192 MB", - "Core Clock(s)": "1215 MHz", - "Memory Clock(s)": "14000 MHz", - "DirectX": "12", - "OpenGL": "4.6", - "Max TDP": "115 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce RTX 2070 (Mobile)", - "Videocard First Benchmarked": "2019-04-10", - "G3DMark/Price": "NA", - "Overall Rank": "145", - "Last Price Change": "NA", - "Score": 12354, - "Average G2D Mark": 601, - "Samples": 411 - } - ], - "gpu4116": [ - "GeForce RTX 2070 SUPER", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "8192 MB", - "Core Clock(s)": "1605 MHz", - "Memory Clock(s)": "14000 (1750x8) MHz", - "DirectX": "12", - "OpenGL": "4.6", - "Max TDP": "215 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce RTX 2070 SUPER, NVIDIA GeForce RTX 2070 Super (Mobile)", - "Videocard First Benchmarked": "2019-07-11", - "G3DMark/Price": "36.66", - "Overall Rank": "64", - "Last Price Change": "$497.95 USD (2023-05-26)", - "Score": 18255, - "Average G2D Mark": 889, - "Samples": 12422 - } - ], - "gpu4204": [ - "GeForce RTX 2070 Super with Max-Q Design", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "8192 MB", - "Core Clock(s)": "930 MHz", - "DirectX": "12", - "OpenGL": "4.6", - "Max TDP": "80 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce RTX 2070 Super with Max-Q Design (Mobile)", - "Videocard First Benchmarked": "2020-04-30", - "G3DMark/Price": "NA", - "Overall Rank": "110", - "Last Price Change": "NA", - "Score": 13929, - "Average G2D Mark": 633, - "Samples": 255 - } - ], - "gpu4048": [ - "GeForce RTX 2070 with Max-Q Design", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "8192 MB", - "Core Clock(s)": "885 MHz", - "Memory Clock(s)": "12000 MHz", - "DirectX": "12", - "OpenGL": "4.6", - "Max TDP": "80 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce RTX 2070 with Max-Q Design, NVIDIA GeForce RTX 2070 with Max-Q Design (Mobile)", - "Videocard First Benchmarked": "2019-02-10", - "G3DMark/Price": "NA", - "Overall Rank": "153", - "Last Price Change": "NA", - "Score": 11892, - "Average G2D Mark": 489, - "Samples": 1503 - } - ], - "gpu3989": [ - "GeForce RTX 2080", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "8096 MB", - "Core Clock(s)": "1515 MHz", - "Memory Clock(s)": "14000 (1750x8) MHz", - "DirectX": "12", - "OpenGL": "4.6", - "Max TDP": "250 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce RTX 2080, NVIDIA GeForce RTX 2080 (Mobile)", - "Videocard First Benchmarked": "2018-09-19", - "G3DMark/Price": "23.47", - "Overall Rank": "57", - "Last Price Change": "$800.61 USD (2023-06-24)", - "Score": 18793, - "Average G2D Mark": 912, - "Samples": 8302 - } - ], - "gpu4084": [ - "GeForce RTX 2080 (Mobile)", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "8192 MB", - "Core Clock(s)": "1380 MHz", - "Memory Clock(s)": "14000 MHz", - "DirectX": "12", - "OpenGL": "4.6", - "Max TDP": "150 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce RTX 2080 (Mobile)", - "Videocard First Benchmarked": "2019-04-10", - "G3DMark/Price": "NA", - "Overall Rank": "97", - "Last Price Change": "NA", - "Score": 15107, - "Average G2D Mark": 812, - "Samples": 201 - } - ], - "gpu4123": [ - "GeForce RTX 2080 SUPER", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "8192 MB", - "Core Clock(s)": "1650 MHz", - "Memory Clock(s)": "15500 MHz", - "DirectX": "12", - "OpenGL": "4.6", - "Max TDP": "250 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce RTX 2080 SUPER, NVIDIA GeForce RTX 2080 Super (Mobile)", - "Videocard First Benchmarked": "2019-07-26", - "G3DMark/Price": "28.62", - "Overall Rank": "51", - "Last Price Change": "$684.86 USD (2023-12-06)", - "Score": 19603, - "Average G2D Mark": 929, - "Samples": 6356 - } - ], - "gpu4202": [ - "GeForce RTX 2080 Super with Max-Q Design", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "8192 MB", - "Core Clock(s)": "735 MHz", - "Memory Clock(s)": "14000 MHz", - "DirectX": "12", - "OpenGL": "4.6", - "Max TDP": "80 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce RTX 2080 Super with Max-Q Design (Mobile)", - "Videocard First Benchmarked": "2020-04-21", - "G3DMark/Price": "NA", - "Overall Rank": "114", - "Last Price Change": "NA", - "Score": 13809, - "Average G2D Mark": 584, - "Samples": 315 - } - ], - "gpu3991": [ - "GeForce RTX 2080 Ti", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "11264 MB", - "Core Clock(s)": "1350 MHz", - "Memory Clock(s)": "14000 (1750x8) MHz", - "DirectX": "12", - "OpenGL": "4.6", - "Max TDP": "250 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce RTX 2080 Ti", - "Videocard First Benchmarked": "2018-09-21", - "G3DMark/Price": "15.60", - "Overall Rank": "36", - "Last Price Change": "$1399.99 USD (2023-09-17)", - "Score": 21839, - "Average G2D Mark": 938, - "Samples": 10560 - } - ], - "gpu4041": [ - "GeForce RTX 2080 with Max-Q Design", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "8192 MB", - "Core Clock(s)": "735 MHz", - "Memory Clock(s)": "12000 MHz", - "DirectX": "12", - "OpenGL": "4.6", - "Max TDP": "90 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce RTX 2080 with Max-Q Design, NVIDIA GeForce RTX 2080 with Max-Q Design (Mobile)", - "Videocard First Benchmarked": "2019-02-01", - "G3DMark/Price": "6.27", - "Overall Rank": "128", - "Last Price Change": "$2099.99 USD (2020-03-13)", - "Score": 13171, - "Average G2D Mark": 542, - "Samples": 443 - } - ], - "gpu4495": [ - "GeForce RTX 3050", - { - "Bus Interface": "PCIe 4.0 x8", - "Max Memory Size": "8192 MB", - "Core Clock(s)": "1552 MHz", - "Memory Clock(s)": "1750 MHz", - "DirectX": "12_2", - "OpenGL": "4.6", - "Max TDP": "130 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce RTX 3050", - "Videocard First Benchmarked": "2022-01-28", - "G3DMark/Price": "60.28", - "Overall Rank": "135", - "Last Price Change": "$214.99 USD (2023-12-22)", - "Score": 12959, - "Average G2D Mark": 953, - "Samples": 2792 - } - ], - "gpu4769": [ - "GeForce RTX 3050 4GB Laptop GPU", - { - "Bus Interface": "PCIe 4.0 x16", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "1238 MHz", - "Memory Clock(s)": "1500 MHz", - "DirectX": "12_2", - "OpenGL": "4.6", - "Max TDP": "80 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce RTX 3050 4GB Laptop GPU (Mobile)", - "Videocard First Benchmarked": "2023-03-09", - "G3DMark/Price": "NA", - "Overall Rank": "269", - "Last Price Change": "NA", - "Score": 7041, - "Average G2D Mark": 409, - "Samples": 50 - } - ], - "gpu4782": [ - "GeForce RTX 3050 6GB Laptop GPU", - { - "Bus Interface": "PCIe 4.0 x16", - "Max Memory Size": "6144 MB", - "Core Clock(s)": "1237 MHz", - "Memory Clock(s)": "1500 MHz", - "DirectX": "12_2", - "OpenGL": "4.6", - "Max TDP": "80 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce RTX 3050 6GB Laptop GPU (Mobile)", - "Videocard First Benchmarked": "2023-03-03", - "G3DMark/Price": "NA", - "Overall Rank": "170", - "Last Price Change": "NA", - "Score": 10703, - "Average G2D Mark": 609, - "Samples": 202 - } - ], - "gpu4408": [ - "GeForce RTX 3050 Laptop GPU", - { - "Bus Interface": "PCIe 4.0 x8", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "712 MHz", - "Memory Clock(s)": "1500 MHz", - "DirectX": "12_2", - "OpenGL": "4.6", - "Max TDP": "75 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce RTX 3050 Laptop GPU (Mobile)", - "Videocard First Benchmarked": "2021-05-29", - "G3DMark/Price": "34.85", - "Overall Rank": "198", - "Last Price Change": "$269.99 USD (2022-11-29)", - "Score": 9409, - "Average G2D Mark": 467, - "Samples": 4617 - } - ], - "gpu4569": [ - "GeForce RTX 3050 OEM", - { - "Other names": "NVIDIA GeForce RTX 3050 OEM", - "Videocard First Benchmarked": "2022-07-26", - "G3DMark/Price": "NA", - "Overall Rank": "151", - "Last Price Change": "NA", - "Score": 12126, - "Average G2D Mark": 951, - "Samples": 86 - } - ], - "gpu4393": [ - "GeForce RTX 3050 Ti Laptop GPU", - { - "Bus Interface": "PCIe 4.0 x8", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "735 MHz", - "Memory Clock(s)": "1500 MHz", - "DirectX": "12", - "OpenGL": "4.6", - "Max TDP": "80 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce RTX 3050 Ti Laptop GPU (Mobile)", - "Videocard First Benchmarked": "2021-05-17", - "G3DMark/Price": "NA", - "Overall Rank": "177", - "Last Price Change": "NA", - "Score": 10181, - "Average G2D Mark": 498, - "Samples": 4000 - } - ], - "gpu4345": [ - "GeForce RTX 3060", - { - "Bus Interface": "PCIe 4.0 x16", - "Max Memory Size": "12288 MB", - "Core Clock(s)": "1320 MHz", - "Memory Clock(s)": "15000 MHz", - "DirectX": "12", - "OpenGL": "4.6", - "Max TDP": "170 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce RTX 3060", - "Videocard First Benchmarked": "2021-02-25", - "G3DMark/Price": "61.04", - "Overall Rank": "72", - "Last Price Change": "$279.99 USD (2023-12-26)", - "Score": 17089, - "Average G2D Mark": 975, - "Samples": 15829 - } - ], - "gpu4342": [ - "GeForce RTX 3060 Laptop GPU", - { - "Bus Interface": "PCIe 4.0 x16", - "Max Memory Size": "6144 MB", - "Core Clock(s)": "900 MHz", - "DirectX": "12", - "OpenGL": "4.6", - "Max TDP": "115 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce RTX 3060 Laptop GPU (Mobile)", - "Videocard First Benchmarked": "2021-02-08", - "G3DMark/Price": "43.27", - "Overall Rank": "123", - "Last Price Change": "$309.99 USD (2022-11-27)", - "Score": 13413, - "Average G2D Mark": 589, - "Samples": 8615 - } - ], - "gpu4318": [ - "GeForce RTX 3060 Ti", - { - "Bus Interface": "PCIe 4.0 x16", - "Max Memory Size": "8192 MB", - "Core Clock(s)": "1410 MHz", - "Memory Clock(s)": "14000 MHz", - "DirectX": "12", - "OpenGL": "4.6", - "Max TDP": "200 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce RTX 3060 Ti", - "Videocard First Benchmarked": "2020-12-02", - "G3DMark/Price": "49.78", - "Overall Rank": "42", - "Last Price Change": "$413.81 USD (2023-12-26)", - "Score": 20599, - "Average G2D Mark": 1002, - "Samples": 13904 - } - ], - "gpu4283": [ - "GeForce RTX 3070", - { - "Bus Interface": "PCIe 4.0 x16", - "Max Memory Size": "8192 MB", - "Core Clock(s)": "1500 MHz", - "Memory Clock(s)": "14000 MHz", - "DirectX": "12", - "OpenGL": "4.6", - "Max TDP": "220 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce RTX 3070", - "Videocard First Benchmarked": "2020-10-26", - "G3DMark/Price": "51.05", - "Overall Rank": "31", - "Last Price Change": "$439.99 USD (2023-12-19)", - "Score": 22461, - "Average G2D Mark": 1001, - "Samples": 16752 - } - ], - "gpu4331": [ - "GeForce RTX 3070 Laptop GPU", - { - "Bus Interface": "PCIe 4.0 x16", - "Max Memory Size": "8192 MB", - "Core Clock(s)": "1100 MHz", - "Memory Clock(s)": "12000 MHz", - "DirectX": "12", - "OpenGL": "4.6", - "Max TDP": "115 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce RTX 3070 Laptop GPU (Mobile)", - "Videocard First Benchmarked": "2021-01-17", - "G3DMark/Price": "NA", - "Overall Rank": "91", - "Last Price Change": "NA", - "Score": 15528, - "Average G2D Mark": 651, - "Samples": 4316 - } - ], - "gpu4413": [ - "GeForce RTX 3070 Ti", - { - "Bus Interface": "PCIe 4.0 x16", - "Max Memory Size": "8192 MB", - "Core Clock(s)": "1575 MHz", - "DirectX": "12_2", - "OpenGL": "4.6", - "Max TDP": "290 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce RTX 3070 Ti", - "Videocard First Benchmarked": "2021-06-12", - "G3DMark/Price": "47.52", - "Overall Rank": "23", - "Last Price Change": "$499.99 USD (2023-12-11)", - "Score": 23758, - "Average G2D Mark": 1055, - "Samples": 7646 - } - ], - "gpu4497": [ - "GeForce RTX 3070 Ti Laptop GPU", - { - "Bus Interface": "PCIe 4.0 x16", - "Max Memory Size": "8192 MB", - "Core Clock(s)": "915 MHz", - "Memory Clock(s)": "1750 MHz", - "DirectX": "12_2", - "OpenGL": "4.6", - "Max TDP": "115 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce RTX 3070 Ti Laptop GPU (Mobile)", - "Videocard First Benchmarked": "2022-02-04", - "G3DMark/Price": "NA", - "Overall Rank": "65", - "Last Price Change": "NA", - "Score": 18250, - "Average G2D Mark": 788, - "Samples": 1942 - } - ], - "gpu4282": [ - "GeForce RTX 3080", - { - "Bus Interface": "PCIe 4.0 x16", - "Max Memory Size": "10240 MB", - "Core Clock(s)": "1440 MHz", - "Memory Clock(s)": "19000 MHz", - "DirectX": "12", - "OpenGL": "4.6", - "Max TDP": "320 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce RTX 3080", - "Videocard First Benchmarked": "2020-09-17", - "G3DMark/Price": "37.28", - "Overall Rank": "17", - "Last Price Change": "$679.99 USD (2023-11-06)", - "Score": 25352, - "Average G2D Mark": 1042, - "Samples": 14612 - } - ], - "gpu4601": [ - "GeForce RTX 3080 12GB", - { - "Bus Interface": "PCIe 4.0 x16", - "Max Memory Size": "12288 MB", - "Core Clock(s)": "1260 MHz", - "DirectX": "12", - "OpenGL": "4.6", - "Max TDP": "350 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce RTX 3080", - "Videocard First Benchmarked": "2022-01-09", - "G3DMark/Price": "NA", - "Overall Rank": "15", - "Last Price Change": "NA", - "Score": 26715, - "Average G2D Mark": 1091, - "Samples": 1817 - } - ], - "gpu4332": [ - "GeForce RTX 3080 Laptop GPU", - { - "Bus Interface": "PCIe 4.0 x16", - "Max Memory Size": "8192 MB", - "Core Clock(s)": "1100 MHz", - "Memory Clock(s)": "12000 MHz", - "DirectX": "12", - "OpenGL": "4.6", - "Max TDP": "115 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce RTX 3080 Laptop GPU (Mobile)", - "Videocard First Benchmarked": "2021-01-17", - "G3DMark/Price": "NA", - "Overall Rank": "78", - "Last Price Change": "NA", - "Score": 16546, - "Average G2D Mark": 647, - "Samples": 1760 - } - ], - "gpu4409": [ - "GeForce RTX 3080 Ti", - { - "Bus Interface": "PCIe 4.0 x16", - "Max Memory Size": "12288 MB", - "Core Clock(s)": "1370 MHz", - "DirectX": "12", - "OpenGL": "4.6", - "Max TDP": "350 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce RTX 3080 Ti", - "Videocard First Benchmarked": "2021-06-04", - "G3DMark/Price": "32.15", - "Overall Rank": "11", - "Last Price Change": "$849.99 USD (2023-12-06)", - "Score": 27326, - "Average G2D Mark": 1097, - "Samples": 8063 - } - ], - "gpu4491": [ - "GeForce RTX 3080 Ti Laptop GPU", - { - "Bus Interface": "PCIe 4.0 x16", - "Max Memory Size": "16384 MB", - "Core Clock(s)": "810 MHz", - "Memory Clock(s)": "2000 MHz", - "DirectX": "12_2", - "OpenGL": "4.6", - "Max TDP": "115 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce RTX 3080 Ti Laptop GPU (Mobile)", - "Videocard First Benchmarked": "2022-01-24", - "G3DMark/Price": "NA", - "Overall Rank": "44", - "Last Price Change": "NA", - "Score": 20208, - "Average G2D Mark": 849, - "Samples": 868 - } - ], - "gpu4284": [ - "GeForce RTX 3090", - { - "Bus Interface": "PCIe 4.0 x16", - "Max Memory Size": "24576 MB", - "Core Clock(s)": "1400 MHz", - "Memory Clock(s)": "19500 MHz", - "DirectX": "12", - "OpenGL": "4.6", - "Max TDP": "350 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce RTX 3090", - "Videocard First Benchmarked": "2020-09-18", - "G3DMark/Price": "12.95", - "Overall Rank": "14", - "Last Price Change": "$2075.05 USD (2023-12-26)", - "Score": 26864, - "Average G2D Mark": 1051, - "Samples": 9173 - } - ], - "gpu4524": [ - "GeForce RTX 3090 Ti", - { - "Bus Interface": "PCIe 4.0 x16", - "Max Memory Size": "24576 MB", - "Core Clock(s)": "1560 MHz", - "Memory Clock(s)": "1313 MHz", - "DirectX": "12", - "OpenGL": "4.6", - "Max TDP": "450 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce RTX 3090 Ti", - "Videocard First Benchmarked": "2022-03-30", - "G3DMark/Price": "19.40", - "Overall Rank": "5", - "Last Price Change": "$1539.99 USD (2023-10-09)", - "Score": 29876, - "Average G2D Mark": 1224, - "Samples": 1760 - } - ], - "gpu4763": [ - "GeForce RTX 4050 Laptop GPU", - { - "Bus Interface": "PCIe 4.0 x16", - "Max Memory Size": "6144 MB", - "Core Clock(s)": "1605 MHz", - "Memory Clock(s)": "2000 MHz", - "DirectX": "12_2", - "OpenGL": "4.6", - "Max TDP": "115 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce RTX 4050 Laptop GPU (Mobile)", - "Videocard First Benchmarked": "2023-03-03", - "G3DMark/Price": "NA", - "Overall Rank": "104", - "Last Price Change": "NA", - "Score": 14693, - "Average G2D Mark": 632, - "Samples": 591 - } - ], - "gpu4850": [ - "GeForce RTX 4060", - { - "Bus Interface": "PCIe 4.0 x8", - "Max Memory Size": "8192 MB", - "Core Clock(s)": "1830 MHz", - "Memory Clock(s)": "2250 MHz", - "DirectX": "12_2", - "OpenGL": "4.6", - "Max TDP": "115 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce RTX 4060", - "Videocard First Benchmarked": "2023-07-01", - "G3DMark/Price": "65.25", - "Overall Rank": "52", - "Last Price Change": "$299.99 USD (2023-12-21)", - "Score": 19573, - "Average G2D Mark": 1014, - "Samples": 1198 - } - ], - "gpu4752": [ - "GeForce RTX 4060 Laptop GPU", - { - "Bus Interface": "PCIe 4.0 x16", - "Max Memory Size": "8192 MB", - "Core Clock(s)": "1470 MHz", - "Memory Clock(s)": "2000 MHz", - "DirectX": "12_2", - "OpenGL": "4.6", - "Max TDP": "115 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce RTX 4060 Laptop GPU (Mobile)", - "Videocard First Benchmarked": "2023-02-24", - "G3DMark/Price": "NA", - "Overall Rank": "66", - "Last Price Change": "NA", - "Score": 17990, - "Average G2D Mark": 744, - "Samples": 1365 - } - ], - "gpu4827": [ - "GeForce RTX 4060 Ti", - { - "Bus Interface": "PCIe 4.0 x8", - "Max Memory Size": "8192 MB", - "Core Clock(s)": "2310 MHz", - "Memory Clock(s)": "2250 MHz", - "DirectX": "12_2", - "OpenGL": "4.6", - "Max TDP": "160 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce RTX 4060 Ti", - "Videocard First Benchmarked": "2023-05-25", - "G3DMark/Price": "58.59", - "Overall Rank": "30", - "Last Price Change": "$384.99 USD (2023-12-22)", - "Score": 22555, - "Average G2D Mark": 1048, - "Samples": 1032 - } - ], - "gpu4898": [ - "GeForce RTX 4060 Ti 16GB", - { - "Bus Interface": "PCIe 4.0 x8", - "Max Memory Size": "16384 MB", - "Core Clock(s)": "2310 MHz", - "Memory Clock(s)": "2250 MHz", - "DirectX": "12_2", - "OpenGL": "4.6", - "Max TDP": "165 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce RTX 4060 Ti", - "Videocard First Benchmarked": "2023-08-05", - "G3DMark/Price": "45.61", - "Overall Rank": "28", - "Last Price Change": "$499 USD (2023-07-18)", - "Score": 22761, - "Average G2D Mark": 1048, - "Samples": 274 - } - ], - "gpu4795": [ - "GeForce RTX 4070", - { - "Bus Interface": "PCIe 4.0 x16", - "Max Memory Size": "12288 MB", - "Core Clock(s)": "1920 MHz", - "Memory Clock(s)": "1313 MHz", - "DirectX": "12_2", - "OpenGL": "4.6", - "Max TDP": "200 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce RTX 4070", - "Videocard First Benchmarked": "2023-04-14", - "G3DMark/Price": "48.89", - "Overall Rank": "13", - "Last Price Change": "$549.99 USD (2023-12-17)", - "Score": 26889, - "Average G2D Mark": 1117, - "Samples": 3345 - } - ], - "gpu4756": [ - "GeForce RTX 4070 Laptop GPU", - { - "Bus Interface": "PCIe 4.0 x16", - "Max Memory Size": "8192 MB", - "Core Clock(s)": "1230 MHz", - "Memory Clock(s)": "2000 MHz", - "DirectX": "12_2", - "OpenGL": "4.6", - "Max TDP": "115 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce RTX 4070 Laptop GPU (Mobile)", - "Videocard First Benchmarked": "2023-02-25", - "G3DMark/Price": "NA", - "Overall Rank": "50", - "Last Price Change": "NA", - "Score": 19615, - "Average G2D Mark": 798, - "Samples": 1086 - } - ], - "gpu4699": [ - "GeForce RTX 4070 Ti", - { - "Bus Interface": "PCIe 4.0 x16", - "Max Memory Size": "12288 MB", - "Core Clock(s)": "2310 MHz", - "DirectX": "12_2", - "OpenGL": "4.6", - "Max TDP": "285 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce RTX 4070 Ti", - "Videocard First Benchmarked": "2023-01-05", - "G3DMark/Price": "40.70", - "Overall Rank": "3", - "Last Price Change": "$779.99 USD (2023-12-20)", - "Score": 31745, - "Average G2D Mark": 1207, - "Samples": 4545 - } - ], - "gpu4622": [ - "GeForce RTX 4080", - { - "Bus Interface": "PCIe 4.0 x16", - "Max Memory Size": "16384 MB", - "DirectX": "12_2", - "OpenGL": "4.6", - "Max TDP": "320 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce RTX 4080", - "Videocard First Benchmarked": "2022-11-16", - "G3DMark/Price": "30.11", - "Overall Rank": "2", - "Last Price Change": "$1149.99 USD (2023-12-09)", - "Score": 34621, - "Average G2D Mark": 1248, - "Samples": 3746 - } - ], - "gpu4736": [ - "GeForce RTX 4080 Laptop GPU", - { - "Bus Interface": "PCIe 4.0 x16", - "Max Memory Size": "12288 MB", - "Core Clock(s)": "1860 MHz", - "Memory Clock(s)": "2250 MHz", - "DirectX": "12_2", - "OpenGL": "4.6", - "Max TDP": "150 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce RTX 4080 Laptop GPU (Mobile)", - "Videocard First Benchmarked": "2023-02-04", - "G3DMark/Price": "NA", - "Overall Rank": "16", - "Last Price Change": "NA", - "Score": 26230, - "Average G2D Mark": 1002, - "Samples": 539 - } - ], - "gpu4606": [ - "GeForce RTX 4090", - { - "Bus Interface": "PCIe 4.0 x16", - "Max Memory Size": "24576 MB", - "Core Clock(s)": "2230 MHz", - "DirectX": "12", - "OpenGL": "4.6", - "Max TDP": "450 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce RTX 4090", - "Videocard First Benchmarked": "2022-10-12", - "G3DMark/Price": "21.36", - "Overall Rank": "1", - "Last Price Change": "$1819.99 USD (2023-12-26)", - "Score": 38868, - "Average G2D Mark": 1316, - "Samples": 6618 - } - ], - "gpu4737": [ - "GeForce RTX 4090 Laptop GPU", - { - "Bus Interface": "PCIe 4.0 x16", - "Max Memory Size": "12288 MB", - "Core Clock(s)": "1455 MHz", - "Memory Clock(s)": "2250 MHz", - "DirectX": "12_2", - "OpenGL": "4.6", - "Max TDP": "150 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce RTX 4090 Laptop GPU (Mobile)", - "Videocard First Benchmarked": "2023-02-05", - "G3DMark/Price": "NA", - "Overall Rank": "9", - "Last Price Change": "NA", - "Score": 28534, - "Average G2D Mark": 986, - "Samples": 430 - } - ], - "gpu1467": [ - "GeForce2 Go", - { - "Bus Interface": "AGP 4x", - "Max Memory Size": "32 MB", - "Core Clock(s)": "143 MHz", - "Memory Clock(s)": "166,332 MHz", - "DirectX": "7", - "OpenGL": "1.2", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce2 Go, NVIDIA GeForce2 Go (Dell Mobile), NVIDIA GeForce2 Go (Gateway)", - "Videocard First Benchmarked": "2009-04-29", - "G3DMark/Price": "NA", - "Overall Rank": "2411", - "Last Price Change": "NA", - "Score": 4, - "Average G2D Mark": 95, - "Samples": 1 - } - ], - "gpu1470": [ - "GeForce2 GTS/GeForce2 Pro", - { - "Other names": "NVIDIA GeForce2 GTS/GeForce2 Pro", - "Videocard First Benchmarked": "2012-02-15", - "G3DMark/Price": "NA", - "Overall Rank": "2416", - "Last Price Change": "NA", - "Score": 4, - "Average G2D Mark": 136, - "Samples": 11 - } - ], - "gpu1471": [ - "GeForce2 Integrated GPU", - { - "Other names": "NVIDIA GeForce2 Integrated GPU, NVIDIA GeForce2 Integrated GPU (Compaq), NVIDIA GeForce2 Integrated GPU (Sony)", - "Videocard First Benchmarked": "2009-04-10", - "G3DMark/Price": "NA", - "Overall Rank": "2406", - "Last Price Change": "NA", - "Score": 4, - "Average G2D Mark": 171, - "Samples": 3 - } - ], - "gpu1472": [ - "GeForce2 MX", - { - "Bus Interface": "AGP 4x,PCI", - "Max Memory Size": "64 MB", - "Core Clock(s)": "175 MHz", - "Memory Clock(s)": "166 MHz", - "DirectX": "7", - "OpenGL": "1.2", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce2 MX, NVIDIA GeForce2 MX (Compaq Consumer)", - "Videocard First Benchmarked": "2011-07-25", - "G3DMark/Price": "NA", - "Overall Rank": "2456", - "Last Price Change": "NA", - "Score": 3, - "Average G2D Mark": 143, - "Samples": 3 - } - ], - "gpu1473": [ - "GeForce2 MX 100/200", - { - "Other names": "NVIDIA GeForce2 MX 100/200", - "Videocard First Benchmarked": "2009-09-26", - "G3DMark/Price": "NA", - "Overall Rank": "2440", - "Last Price Change": "NA", - "Score": 3, - "Average G2D Mark": 119, - "Samples": 18 - } - ], - "gpu1477": [ - "GeForce2 MX with DVI-D and TV-out", - { - "Other names": "NVIDIA GeForce2 MX with DVI-D and TV-out", - "Videocard First Benchmarked": "2009-05-22", - "G3DMark/Price": "NA", - "Overall Rank": "2390", - "Last Price Change": "NA", - "Score": 5, - "Average G2D Mark": 187, - "Samples": 1 - } - ], - "gpu191": [ - "GeForce2 MX with TV Out", - { - "Other names": "64MB NVIDIA GeForce2 MX with TV Out", - "Videocard First Benchmarked": "2009-04-15", - "G3DMark/Price": "NA", - "Overall Rank": "2464", - "Last Price Change": "NA", - "Score": 3, - "Average G2D Mark": 98, - "Samples": 1 - } - ], - "gpu1479": [ - "GeForce2 MX/MX 400", - { - "Other names": "NVIDIA GeForce2 MX/MX 400, NVIDIA GeForce2 MX/MX 400 (HP)", - "Videocard First Benchmarked": "2009-07-11", - "G3DMark/Price": "NA", - "Overall Rank": "2418", - "Last Price Change": "NA", - "Score": 4, - "Average G2D Mark": 129, - "Samples": 99 - } - ], - "gpu1480": [ - "GeForce2 Ti", - { - "Bus Interface": "AGP 4x,PCI", - "Max Memory Size": "64 MB", - "Core Clock(s)": "250 MHz", - "Memory Clock(s)": "400 MHz", - "DirectX": "7", - "OpenGL": "1.2", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce2 Ti, NVIDIA GeForce2 Ti (HP)", - "Videocard First Benchmarked": "2009-05-04", - "G3DMark/Price": "NA", - "Overall Rank": "2398", - "Last Price Change": "NA", - "Score": 5, - "Average G2D Mark": 149, - "Samples": 5 - } - ], - "gpu1481": [ - "GeForce2 Ultra", - { - "Bus Interface": "AGP 4x,PCI", - "Max Memory Size": "64 MB", - "Core Clock(s)": "250 MHz", - "Memory Clock(s)": "460 MHz", - "DirectX": "7", - "OpenGL": "1.2", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce2 Ultra", - "Videocard First Benchmarked": "2009-05-30", - "G3DMark/Price": "NA", - "Overall Rank": "2356", - "Last Price Change": "NA", - "Score": 6, - "Average G2D Mark": 147, - "Samples": 1 - } - ], - "gpu1482": [ - "GeForce3", - { - "Bus Interface": "AGP 4x,PCI", - "Max Memory Size": "64 MB", - "Core Clock(s)": "200 MHz", - "Memory Clock(s)": "460 MHz", - "DirectX": "8", - "OpenGL": "1.13", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce3", - "Videocard First Benchmarked": "2009-04-07", - "G3DMark/Price": "NA", - "Overall Rank": "2387", - "Last Price Change": "NA", - "Score": 5, - "Average G2D Mark": 120, - "Samples": 4 - } - ], - "gpu1483": [ - "GeForce3 Ti 200", - { - "Other names": "NVIDIA GeForce3 Ti 200", - "Videocard First Benchmarked": "2009-04-03", - "G3DMark/Price": "NA", - "Overall Rank": "2413", - "Last Price Change": "NA", - "Score": 4, - "Average G2D Mark": 140, - "Samples": 20 - } - ], - "gpu1485": [ - "GeForce3 Ti 500", - { - "Other names": "NVIDIA GeForce3 Ti 500", - "Videocard First Benchmarked": "2009-11-09", - "G3DMark/Price": "NA", - "Overall Rank": "2466", - "Last Price Change": "NA", - "Score": 3, - "Average G2D Mark": 116, - "Samples": 2 - } - ], - "gpu713": [ - "GeForce4 420 Go", - { - "Bus Interface": "AGP 8X", - "Max Memory Size": "32 MB", - "Core Clock(s)": "200 MHz", - "Memory Clock(s)": "400 MHz", - "DirectX": "7", - "OpenGL": "1.2", - "Videocard Category": "Mobile", - "Other names": "GeForce4 420 Go (fix), GeForce4 420Go, NVIDIA GeForce4 420 Go, NVIDIA GeForce4 420 Go (Sony), NVIDIA GeForce4 420 Go (Toshiba)", - "Videocard First Benchmarked": "2009-10-29", - "G3DMark/Price": "NA", - "Overall Rank": "2437", - "Last Price Change": "NA", - "Score": 3, - "Average G2D Mark": 147, - "Samples": 8 - } - ], - "gpu1486": [ - "GeForce4 420 Go 32M", - { - "Other names": "NVIDIA GeForce4 420 Go 32M", - "Videocard First Benchmarked": "2009-04-06", - "G3DMark/Price": "NA", - "Overall Rank": "2376", - "Last Price Change": "NA", - "Score": 5, - "Average G2D Mark": 168, - "Samples": 13 - } - ], - "gpu1487": [ - "GeForce4 4200 Go", - { - "Bus Interface": "AGP 8X", - "Max Memory Size": "64 MB", - "Core Clock(s)": "200 MHz", - "Memory Clock(s)": "400 MHz", - "DirectX": "8.1", - "OpenGL": "1.3", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce4 4200 Go, NVIDIA GeForce4 4200 Go (Dell Mobile)", - "Videocard First Benchmarked": "2010-04-17", - "G3DMark/Price": "NA", - "Overall Rank": "2417", - "Last Price Change": "NA", - "Score": 4, - "Average G2D Mark": 173, - "Samples": 8 - } - ], - "gpu3154": [ - "GeForce4 440", - { - "Other names": "GeForce4 440 (64M)", - "Videocard First Benchmarked": "2015-03-09", - "G3DMark/Price": "NA", - "Overall Rank": "2384", - "Last Price Change": "NA", - "Score": 5, - "Average G2D Mark": 193, - "Samples": 1 - } - ], - "gpu1488": [ - "GeForce4 440 Go", - { - "Bus Interface": "AGP 8X", - "Max Memory Size": "64 MB", - "Core Clock(s)": "220 MHz", - "Memory Clock(s)": "440 MHz", - "DirectX": "7", - "OpenGL": "1.2", - "Videocard Category": "Mobile", - "Other names": "NVIDIA GeForce4 440 Go, NVIDIA GeForce4 440 Go (Dell Mobile), NVIDIA GeForce4 440 Go (Toshiba)", - "Videocard First Benchmarked": "2009-04-07", - "G3DMark/Price": "NA", - "Overall Rank": "2424", - "Last Price Change": "NA", - "Score": 4, - "Average G2D Mark": 140, - "Samples": 3 - } - ], - "gpu1489": [ - "GeForce4 440 Go 64M", - { - "Other names": "NVIDIA GeForce4 440 Go 64M, NVIDIA GeForce4 440 Go 64M (Samsung)", - "Videocard First Benchmarked": "2009-05-03", - "G3DMark/Price": "NA", - "Overall Rank": "2362", - "Last Price Change": "NA", - "Score": 6, - "Average G2D Mark": 156, - "Samples": 6 - } - ], - "gpu1490": [ - "GeForce4 448 Go", - { - "Other names": "NVIDIA GeForce4 448 Go", - "Videocard First Benchmarked": "2009-05-23", - "G3DMark/Price": "NA", - "Overall Rank": "2373", - "Last Price Change": "NA", - "Score": 6, - "Average G2D Mark": 199, - "Samples": 2 - } - ], - "gpu1492": [ - "GeForce4 MX 4000", - { - "Other names": "Inno3D GeForce4 MX 4000, MSI MS-StarForce GeForce4 MX 4000 (NVIDIA GeForce4, NVIDIA GeForce4 MX 4000", - "Videocard First Benchmarked": "2009-04-02", - "G3DMark/Price": "NA", - "Overall Rank": "2404", - "Last Price Change": "NA", - "Score": 5, - "Average G2D Mark": 131, - "Samples": 70 - } - ], - "gpu1493": [ - "GeForce4 MX 420", - { - "Bus Interface": "AGP 4x", - "Max Memory Size": "64 MB", - "Core Clock(s)": "250 MHz", - "Memory Clock(s)": "166 MHz", - "DirectX": "8.1", - "OpenGL": "1.3", - "Videocard Category": "Desktop", - "Other names": "64MB DDR NVIDIA GeForce4 MX 420 with TV Out (Dell), MSI MS-StarForce GeForce4 MX 420 (NVIDIA GeForce4, NVIDIA GeForce4 MX 420, NVIDIA GeForce4 MX 420 (Compaq)", - "Videocard First Benchmarked": "2009-04-03", - "G3DMark/Price": "NA", - "Overall Rank": "2391", - "Last Price Change": "NA", - "Score": 5, - "Average G2D Mark": 168, - "Samples": 41 - } - ], - "gpu1494": [ - "GeForce4 MX 440", - { - "Bus Interface": "AGP 4x PCI", - "Max Memory Size": "64 MB", - "Core Clock(s)": "275 MHz", - "Memory Clock(s)": "200 MHz", - "DirectX": "8.1", - "OpenGL": "1.3", - "Videocard Category": "Desktop", - "Other names": "Inno3D GeForce4 MX 440/440SE, MSI MS-StarForce GeForce4 MX 440 (NVIDIA GeForce4, MSI MS-StarForce GeForce4 MX 440/MX 440SE (NVIDIA, NVIDIA GeForce4 MX 440, NVIDIA GeForce4 MX 440 (Gateway), NVIDIA GeForce4 MX 440 (Sony), NVIDIA SVXP Apocalypse GeForce4 MX 440, Tornado GeForce4 MX 440, MSI MS-StarForce GeForce4 MX 440 (NVIDIA GeForce4 MX 440)", - "Videocard First Benchmarked": "2009-07-29", - "G3DMark/Price": "NA", - "Overall Rank": "2401", - "Last Price Change": "NA", - "Score": 5, - "Average G2D Mark": 140, - "Samples": 54 - } - ], - "gpu1496": [ - "GeForce4 MX 440 with AGP8X", - { - "Bus Interface": "AGP 8X", - "Max Memory Size": "128 MB", - "Core Clock(s)": "275 MHz", - "Memory Clock(s)": "250 MHz", - "DirectX": "8.1", - "OpenGL": "1.3", - "Videocard Category": "Desktop", - "Other names": "Inno3D GeForce4 MX 440 with AGP8X, MSI MS-StarForce GeForce4 MX 440 with AGP8X (NVIDI, NVIDIA GeForce4 MX 440 AGP8X (Omega 1.6693) (P), NVIDIA GeForce4 MX 440 with AGP8X, NVIDIA GeForce4 MX 440 with AGP8X (Dell), NVIDIA GeForce4 MX440 8XAGP, MSI MS-StarForce GeForce4 MX 440 with AGP8X (NVIDIA GeForce4 MX 440 with AGP8X), GeForce4 MX 440 with AGP8X", - "Videocard First Benchmarked": "2009-04-16", - "G3DMark/Price": "NA", - "Overall Rank": "2388", - "Last Price Change": "NA", - "Score": 5, - "Average G2D Mark": 157, - "Samples": 128 - } - ], - "gpu1497": [ - "GeForce4 MX 440SE", - { - "Other names": "NVIDIA GeForce4 MX 440-SE", - "Videocard First Benchmarked": "2009-04-02", - "G3DMark/Price": "NA", - "Overall Rank": "2400", - "Last Price Change": "NA", - "Score": 5, - "Average G2D Mark": 159, - "Samples": 4 - } - ], - "gpu1499": [ - "GeForce4 MX 460", - { - "Bus Interface": "AGP 4x PCI", - "Max Memory Size": "128 MB", - "Core Clock(s)": "300 MHz", - "Memory Clock(s)": "275 MHz", - "DirectX": "8.1", - "OpenGL": "1.3", - "Videocard Category": "Desktop", - "Other names": "Medion GeForce4 MX 460, NVIDIA GeForce4 MX 460, NVIDIA GeForce4 MX 460 (Sony), WinFast A170", - "Videocard First Benchmarked": "2009-05-21", - "G3DMark/Price": "NA", - "Overall Rank": "2410", - "Last Price Change": "NA", - "Score": 4, - "Average G2D Mark": 176, - "Samples": 3 - } - ], - "gpu1500": [ - "GeForce4 MX Integrated GPU", - { - "Other names": "NVIDIA GeForce4 MX Integrated GPU", - "Videocard First Benchmarked": "2009-04-02", - "G3DMark/Price": "NA", - "Overall Rank": "2354", - "Last Price Change": "NA", - "Score": 7, - "Average G2D Mark": 198, - "Samples": 13 - } - ], - "gpu1502": [ - "GeForce4 Ti 4200", - { - "Other names": "64MB DDR NVIDIA GeForce4 Ti 4200 with TV Out, ABIT Siluro GF4 Ti4200-8X, ABIT Siluro Ti4200-8X DOTH, Medion GeForce4 - 8x Ti 4200, Medion GeForce4 Ti 4200, MSI MS-StarForce GeForce4 Ti 4200 (NVIDIA GeForce4, NVIDIA GeForce4 Ti 4200, NVIDIA GeForce4 Ti 4200 (Gateway), NVIDIA GeForce4 Ti 4200 (Omega KX 1.4523a), NVIDIA GeForce4 Ti 4200 avec AGP8X, NVIDIA GeForce4 Ti 4200 with AGP8X, StarStorm 56.72 X NVIDIA GeForce4 Ti 4200, MSI MS-StarForce GeForce4 Ti 4200 with 8X (NVIDIA GeForce4 Ti 4200 with AGP8X), NVIDIA GeForce4 Ti 4200 (\u00d0\u0161\u00d0\u00be\u00d1\u20ac\u00d0\u00bf\u00d0\u00be\u00d1\u20ac\u00d0\u00b0\u00d1\u2020\u00d0\u00b8\u00d1\u008f \u00d0\u0153\u00d0\u00b0\u00d0\u00b9\u00d0\u00ba\u00d1\u20ac\u00d0\u00be\u00d1\u0081\u00d0\u00be\u00d1\u201e\u00d1\u201a - XDDM)", - "Videocard First Benchmarked": "2009-04-11", - "G3DMark/Price": "NA", - "Overall Rank": "2372", - "Last Price Change": "NA", - "Score": 6, - "Average G2D Mark": 154, - "Samples": 55 - } - ], - "gpu1505": [ - "GeForce4 Ti 4400", - { - "Other names": "NVIDIA GeForce4 Ti 4400", - "Videocard First Benchmarked": "2009-04-19", - "G3DMark/Price": "NA", - "Overall Rank": "2347", - "Last Price Change": "NA", - "Score": 7, - "Average G2D Mark": 170, - "Samples": 3 - } - ], - "gpu1506": [ - "GeForce4 Ti 4600", - { - "Bus Interface": "AGP 4x", - "Max Memory Size": "128 MB", - "Core Clock(s)": "300 MHz", - "Memory Clock(s)": "324 (648) MHz", - "DirectX": "8.1", - "OpenGL": "1.3", - "Videocard Category": "Desktop", - "Other names": "NVIDIA GeForce4 Ti 4600", - "Videocard First Benchmarked": "2009-04-15", - "G3DMark/Price": "0.10", - "Overall Rank": "2374", - "Last Price Change": "$53.99 USD (2011-07-01)", - "Score": 6, - "Average G2D Mark": 173, - "Samples": 10 - } - ], - "gpu1507": [ - "GeForce4 Ti 4800", - { - "Other names": "NVIDIA GeForce4 Ti 4800", - "Videocard First Benchmarked": "2009-10-02", - "G3DMark/Price": "NA", - "Overall Rank": "2364", - "Last Price Change": "NA", - "Score": 6, - "Average G2D Mark": 190, - "Samples": 1 - } - ], - "gpu1508": [ - "GeForce4 Ti 4800 SE", - { - "Other names": "NVIDIA GeForce4 Ti 4800 SE", - "Videocard First Benchmarked": "2009-05-02", - "G3DMark/Price": "NA", - "Overall Rank": "2350", - "Last Price Change": "NA", - "Score": 7, - "Average G2D Mark": 187, - "Samples": 5 - } - ], - "gpu1509": [ - "GeForce9400M", - { - "Other names": "NVIDIA GeForce9400M(GF9100MG+GF9300MGS), NVIDIA GeForce9400M(GF9300MGS+GF9100MG)", - "Videocard First Benchmarked": "2009-10-08", - "G3DMark/Price": "NA", - "Overall Rank": "2001", - "Last Price Change": "NA", - "Score": 106, - "Average G2D Mark": 161, - "Samples": 2 - } - ], - "gpu2931": [ - "GF117", - { - "Other names": "NVIDIA GF117", - "Videocard First Benchmarked": "2015-02-02", - "G3DMark/Price": "NA", - "Overall Rank": "1467", - "Last Price Change": "NA", - "Score": 554, - "Average G2D Mark": 446, - "Samples": 5 - } - ], - "gpu4327": [ - "GRID GTX P40-6", - { - "Other names": "NVIDIA GRID GTX P40-6", - "Videocard First Benchmarked": "2020-12-22", - "G3DMark/Price": "NA", - "Overall Rank": "412", - "Last Price Change": "NA", - "Score": 4340, - "Average G2D Mark": 277, - "Samples": 2 - } - ], - "gpu2617": [ - "GRID K1", - { - "Videocard Category": "Workstation", - "Other names": "NVIDIA GRID K1", - "Videocard First Benchmarked": "2013-08-12", - "G3DMark/Price": "1.65", - "Overall Rank": "1336", - "Last Price Change": "$395 USD (2020-03-05)", - "Score": 651, - "Average G2D Mark": 259, - "Samples": 14 - } - ], - "gpu3384": [ - "GRID K120Q", - { - "Videocard Category": "Workstation", - "Other names": "NVIDIA GRID K120Q", - "Videocard First Benchmarked": "2015-12-09", - "G3DMark/Price": "NA", - "Overall Rank": "1721", - "Last Price Change": "NA", - "Score": 293, - "Average G2D Mark": 278, - "Samples": 4 - } - ], - "gpu2911": [ - "GRID K140Q", - { - "Videocard Category": "Workstation", - "Other names": "NVIDIA GRID K140Q", - "Videocard First Benchmarked": "2014-07-20", - "G3DMark/Price": "NA", - "Overall Rank": "1268", - "Last Price Change": "NA", - "Score": 728, - "Average G2D Mark": 457, - "Samples": 4 - } - ], - "gpu3458": [ - "GRID K160Q", - { - "Videocard Category": "Workstation", - "Other names": "NVIDIA GRID K160Q", - "Videocard First Benchmarked": "2016-03-25", - "G3DMark/Price": "NA", - "Overall Rank": "1366", - "Last Price Change": "NA", - "Score": 628, - "Average G2D Mark": 262, - "Samples": 7 - } - ], - "gpu3194": [ - "GRID K180Q", - { - "Videocard Category": "Workstation", - "Other names": "NVIDIA GRID K180Q", - "Videocard First Benchmarked": "2015-04-23", - "G3DMark/Price": "NA", - "Overall Rank": "1492", - "Last Price Change": "NA", - "Score": 534, - "Average G2D Mark": 113, - "Samples": 11 - } - ], - "gpu2616": [ - "GRID K2", - { - "Videocard Category": "Workstation", - "Other names": "NVIDIA GRID K2, NVIDIA GRID K2 (Mobile)", - "Videocard First Benchmarked": "2013-08-12", - "G3DMark/Price": "0.61", - "Overall Rank": "553", - "Last Price Change": "$4449.99 USD (2023-12-19)", - "Score": 2737, - "Average G2D Mark": 319, - "Samples": 17 - } - ], - "gpu3140": [ - "GRID K220Q", - { - "Videocard Category": "Workstation", - "Other names": "NVIDIA GRID K220Q", - "Videocard First Benchmarked": "2015-02-23", - "G3DMark/Price": "NA", - "Overall Rank": "1108", - "Last Price Change": "NA", - "Score": 912, - "Average G2D Mark": 539, - "Samples": 16 - } - ], - "gpu2951": [ - "GRID K240Q", - { - "Videocard Category": "Workstation", - "Other names": "NVIDIA GRID K240Q", - "Videocard First Benchmarked": "2014-09-17", - "G3DMark/Price": "NA", - "Overall Rank": "589", - "Last Price Change": "NA", - "Score": 2541, - "Average G2D Mark": 212, - "Samples": 8 - } - ], - "gpu3143": [ - "GRID K260Q", - { - "Videocard Category": "Workstation", - "Other names": "NVIDIA GRID K260Q", - "Videocard First Benchmarked": "2015-02-24", - "G3DMark/Price": "NA", - "Overall Rank": "529", - "Last Price Change": "NA", - "Score": 2949, - "Average G2D Mark": 361, - "Samples": 4 - } - ], - "gpu3142": [ - "GRID K280Q", - { - "Videocard Category": "Workstation", - "Other names": "NVIDIA GRID K280Q", - "Videocard First Benchmarked": "2015-02-24", - "G3DMark/Price": "NA", - "Overall Rank": "539", - "Last Price Change": "NA", - "Score": 2840, - "Average G2D Mark": 371, - "Samples": 30 - } - ], - "gpu2742": [ - "GRID K520", - { - "Videocard Category": "Workstation", - "Other names": "NVIDIA GRID K520", - "Videocard First Benchmarked": "2013-11-30", - "G3DMark/Price": "23.44", - "Overall Rank": "477", - "Last Price Change": "$149.99 USD (2021-12-17)", - "Score": 3516, - "Average G2D Mark": 160, - "Samples": 20 - } - ], - "gpu3795": [ - "GRID M10-0Q", - { - "Other names": "NVIDIA GRID M10-0Q", - "Videocard First Benchmarked": "2017-08-11", - "G3DMark/Price": "NA", - "Overall Rank": "1105", - "Last Price Change": "NA", - "Score": 914, - "Average G2D Mark": 613, - "Samples": 1 - } - ], - "gpu3766": [ - "GRID M10-1B", - { - "Other names": "NVIDIA GRID M10-1B", - "Videocard First Benchmarked": "2017-06-15", - "G3DMark/Price": "NA", - "Overall Rank": "635", - "Last Price Change": "NA", - "Score": 2310, - "Average G2D Mark": 417, - "Samples": 4 - } - ], - "gpu3800": [ - "GRID M10-1Q", - { - "Other names": "NVIDIA GRID M10-1Q", - "Videocard First Benchmarked": "2017-08-18", - "G3DMark/Price": "NA", - "Overall Rank": "493", - "Last Price Change": "NA", - "Score": 3351, - "Average G2D Mark": 556, - "Samples": 1 - } - ], - "gpu4160": [ - "GRID M10-2B", - { - "Other names": "NVIDIA GRID M10-2B", - "Videocard First Benchmarked": "2019-11-12", - "G3DMark/Price": "NA", - "Overall Rank": "629", - "Last Price Change": "NA", - "Score": 2333, - "Average G2D Mark": 201, - "Samples": 2 - } - ], - "gpu4197": [ - "GRID M10-2Q", - { - "Other names": "NVIDIA GRID M10-2Q", - "Videocard First Benchmarked": "2020-04-01", - "G3DMark/Price": "NA", - "Overall Rank": "564", - "Last Price Change": "NA", - "Score": 2692, - "Average G2D Mark": 74, - "Samples": 3 - } - ], - "gpu3964": [ - "GRID M10-4Q", - { - "Other names": "NVIDIA GRID M10-4Q", - "Videocard First Benchmarked": "2018-08-07", - "G3DMark/Price": "NA", - "Overall Rank": "527", - "Last Price Change": "NA", - "Score": 2977, - "Average G2D Mark": 273, - "Samples": 2 - } - ], - "gpu3934": [ - "GRID M10-8Q", - { - "Other names": "NVIDIA GRID M10-8Q", - "Videocard First Benchmarked": "2018-05-04", - "G3DMark/Price": "NA", - "Overall Rank": "577", - "Last Price Change": "NA", - "Score": 2606, - "Average G2D Mark": 557, - "Samples": 2 - } - ], - "gpu3527": [ - "GRID M6-0B", - { - "Videocard Category": "Workstation", - "Other names": "NVIDIA GRID M6-0B", - "Videocard First Benchmarked": "2016-06-18", - "G3DMark/Price": "NA", - "Overall Rank": "1109", - "Last Price Change": "NA", - "Score": 912, - "Average G2D Mark": 764, - "Samples": 1 - } - ], - "gpu4064": [ - "GRID M6-1Q", - { - "Other names": "NVIDIA GRID M6-1Q", - "Videocard First Benchmarked": "2019-04-01", - "G3DMark/Price": "NA", - "Overall Rank": "689", - "Last Price Change": "NA", - "Score": 2069, - "Average G2D Mark": 423, - "Samples": 1 - } - ], - "gpu3867": [ - "GRID M6-8Q", - { - "Other names": "NVIDIA GRID M6-8Q", - "Videocard First Benchmarked": "2017-12-14", - "G3DMark/Price": "NA", - "Overall Rank": "471", - "Last Price Change": "NA", - "Score": 3568, - "Average G2D Mark": 556, - "Samples": 1 - } - ], - "gpu3792": [ - "GRID M60-0B", - { - "Other names": "NVIDIA GRID M60-0B", - "Videocard First Benchmarked": "2017-08-03", - "G3DMark/Price": "NA", - "Overall Rank": "760", - "Last Price Change": "NA", - "Score": 1838, - "Average G2D Mark": 596, - "Samples": 1 - } - ], - "gpu3927": [ - "GRID M60-0Q", - { - "Other names": "NVIDIA GRID M60-0Q", - "Videocard First Benchmarked": "2018-04-19", - "G3DMark/Price": "NA", - "Overall Rank": "1171", - "Last Price Change": "NA", - "Score": 827, - "Average G2D Mark": 516, - "Samples": 1 - } - ], - "gpu3511": [ - "GRID M60-1B", - { - "Videocard Category": "Workstation", - "Other names": "NVIDIA GRID M60-1B", - "Videocard First Benchmarked": "2016-05-27", - "G3DMark/Price": "NA", - "Overall Rank": "405", - "Last Price Change": "NA", - "Score": 4457, - "Average G2D Mark": 483, - "Samples": 1 - } - ], - "gpu3749": [ - "GRID M60-1Q", - { - "Other names": "NVIDIA GRID M60-1Q", - "Videocard First Benchmarked": "2017-05-10", - "G3DMark/Price": "NA", - "Overall Rank": "458", - "Last Price Change": "NA", - "Score": 3695, - "Average G2D Mark": 181, - "Samples": 14 - } - ], - "gpu3737": [ - "GRID M60-2Q", - { - "Other names": "NVIDIA GRID M60-2Q", - "Videocard First Benchmarked": "2017-04-24", - "G3DMark/Price": "NA", - "Overall Rank": "350", - "Last Price Change": "NA", - "Score": 5203, - "Average G2D Mark": 311, - "Samples": 6 - } - ], - "gpu3483": [ - "GRID M60-4Q", - { - "Videocard Category": "Workstation", - "Other names": "NVIDIA GRID M60-4Q", - "Videocard First Benchmarked": "2016-04-23", - "G3DMark/Price": "NA", - "Overall Rank": "447", - "Last Price Change": "NA", - "Score": 3831, - "Average G2D Mark": 278, - "Samples": 6 - } - ], - "gpu4171": [ - "GRID M60-8A", - { - "Other names": "NVIDIA GRID M60-8A", - "Videocard First Benchmarked": "2019-12-08", - "G3DMark/Price": "NA", - "Overall Rank": "324", - "Last Price Change": "NA", - "Score": 5523, - "Average G2D Mark": 380, - "Samples": 1 - } - ], - "gpu3716": [ - "GRID M60-8Q", - { - "Other names": "NVIDIA GRID M60-8Q", - "Videocard First Benchmarked": "2017-03-29", - "G3DMark/Price": "NA", - "Overall Rank": "438", - "Last Price Change": "NA", - "Score": 3884, - "Average G2D Mark": 618, - "Samples": 13 - } - ], - "gpu3966": [ - "GRID P100-16Q", - { - "Other names": "NVIDIA GRID P100-16Q", - "Videocard First Benchmarked": "2018-08-13", - "G3DMark/Price": "NA", - "Overall Rank": "307", - "Last Price Change": "NA", - "Score": 5945, - "Average G2D Mark": 757, - "Samples": 1 - } - ], - "gpu3968": [ - "GRID P100-1B", - { - "Other names": "NVIDIA GRID P100-1B", - "Videocard First Benchmarked": "2018-08-15", - "G3DMark/Price": "NA", - "Overall Rank": "664", - "Last Price Change": "NA", - "Score": 2223, - "Average G2D Mark": 544, - "Samples": 1 - } - ], - "gpu4178": [ - "GRID P100-8Q", - { - "Other names": "NVIDIA GRID P100-8Q", - "Videocard First Benchmarked": "2020-01-11", - "G3DMark/Price": "NA", - "Overall Rank": "445", - "Last Price Change": "NA", - "Score": 3841, - "Average G2D Mark": 481, - "Samples": 1 - } - ], - "gpu3993": [ - "GRID P40-24Q", - { - "Other names": "NVIDIA GRID P40-24Q", - "Videocard First Benchmarked": "2018-10-01", - "G3DMark/Price": "NA", - "Overall Rank": "384", - "Last Price Change": "NA", - "Score": 4728, - "Average G2D Mark": 653, - "Samples": 2 - } - ], - "gpu3951": [ - "GRID P40-2B", - { - "Other names": "NVIDIA GRID P40-2B", - "Videocard First Benchmarked": "2018-06-19", - "G3DMark/Price": "NA", - "Overall Rank": "184", - "Last Price Change": "NA", - "Score": 9842, - "Average G2D Mark": 548, - "Samples": 2 - } - ], - "gpu4026": [ - "GRID P40-2Q", - { - "Other names": "NVIDIA GRID P40-2Q", - "Videocard First Benchmarked": "2018-12-13", - "G3DMark/Price": "NA", - "Overall Rank": "375", - "Last Price Change": "NA", - "Score": 4844, - "Average G2D Mark": 281, - "Samples": 5 - } - ], - "gpu4079": [ - "GRID P40-3Q", - { - "Other names": "NVIDIA GRID P40-3Q", - "Videocard First Benchmarked": "2019-04-29", - "G3DMark/Price": "NA", - "Overall Rank": "1306", - "Last Price Change": "NA", - "Score": 681, - "Average G2D Mark": 603, - "Samples": 2 - } - ], - "gpu4080": [ - "GRID P40-4Q", - { - "Other names": "NVIDIA GRID P40-4Q", - "Videocard First Benchmarked": "2019-04-29", - "G3DMark/Price": "NA", - "Overall Rank": "334", - "Last Price Change": "NA", - "Score": 5365, - "Average G2D Mark": 670, - "Samples": 2 - } - ], - "gpu4834": [ - "GRID P40-8Q", - { - "Other names": "NVIDIA GRID P40-8Q", - "Videocard First Benchmarked": "2023-06-03", - "G3DMark/Price": "NA", - "Overall Rank": "212", - "Last Price Change": "NA", - "Score": 8967, - "Average G2D Mark": 271, - "Samples": 2 - } - ], - "gpu3983": [ - "GRID P6-2Q", - { - "Other names": "NVIDIA GRID P6-2Q", - "Videocard First Benchmarked": "2018-09-12", - "G3DMark/Price": "NA", - "Overall Rank": "436", - "Last Price Change": "NA", - "Score": 3926, - "Average G2D Mark": 337, - "Samples": 3 - } - ], - "gpu3913": [ - "GRID P6-4Q", - { - "Other names": "NVIDIA GRID P6-4Q", - "Videocard First Benchmarked": "2018-03-19", - "G3DMark/Price": "NA", - "Overall Rank": "408", - "Last Price Change": "NA", - "Score": 4429, - "Average G2D Mark": 586, - "Samples": 3 - } - ], - "gpu4855": [ - "GRID RTX6000-1B", - { - "Other names": "NVIDIA GRID RTX6000-1B", - "Videocard First Benchmarked": "2023-07-11", - "G3DMark/Price": "NA", - "Overall Rank": "221", - "Last Price Change": "NA", - "Score": 8473, - "Average G2D Mark": 592, - "Samples": 3 - } - ], - "gpu4425": [ - "GRID RTX6000P-6Q", - { - "Other names": "NVIDIA GRID RTX6000P-6Q", - "Videocard First Benchmarked": "2021-07-19", - "G3DMark/Price": "NA", - "Overall Rank": "380", - "Last Price Change": "NA", - "Score": 4777, - "Average G2D Mark": 192, - "Samples": 4 - } - ], - "gpu4261": [ - "GRID T4-1Q", - { - "Other names": "NVIDIA GRID T4-1Q", - "Videocard First Benchmarked": "2020-09-04", - "G3DMark/Price": "NA", - "Overall Rank": "454", - "Last Price Change": "NA", - "Score": 3743, - "Average G2D Mark": 78, - "Samples": 5 - } - ], - "gpu4516": [ - "GRID T4-2B", - { - "Other names": "NVIDIA GRID T4-2B", - "Videocard First Benchmarked": "2022-03-06", - "G3DMark/Price": "NA", - "Overall Rank": "580", - "Last Price Change": "NA", - "Score": 2601, - "Average G2D Mark": 62, - "Samples": 2 - } - ], - "gpu4370": [ - "GRID T4-2Q", - { - "Other names": "NVIDIA GRID T4-2Q", - "Videocard First Benchmarked": "2021-03-16", - "G3DMark/Price": "NA", - "Overall Rank": "483", - "Last Price Change": "NA", - "Score": 3451, - "Average G2D Mark": 73, - "Samples": 3 - } - ], - "gpu4340": [ - "GRID T4-4Q", - { - "Other names": "NVIDIA GRID T4-4Q", - "Videocard First Benchmarked": "2021-02-02", - "G3DMark/Price": "NA", - "Overall Rank": "500", - "Last Price Change": "NA", - "Score": 3260, - "Average G2D Mark": 83, - "Samples": 8 - } - ], - "gpu4196": [ - "GRID T4-8Q", - { - "Other names": "NVIDIA GRID T4-8Q", - "Videocard First Benchmarked": "2020-03-30", - "G3DMark/Price": "NA", - "Overall Rank": "400", - "Last Price Change": "NA", - "Score": 4519, - "Average G2D Mark": 186, - "Samples": 6 - } - ], - "gpu3936": [ - "GRID V100-8Q", - { - "Other names": "NVIDIA GRID V100-8Q", - "Videocard First Benchmarked": "2018-05-10", - "G3DMark/Price": "NA", - "Overall Rank": "2313", - "Last Price Change": "NA", - "Score": 16, - "Average G2D Mark": 149, - "Samples": 1 - } - ], - "gpu4132": [ - "GRID V100D-8Q", - { - "Other names": "NVIDIA GRID V100D-8Q", - "Videocard First Benchmarked": "2019-08-19", - "G3DMark/Price": "NA", - "Overall Rank": "421", - "Last Price Change": "NA", - "Score": 4156, - "Average G2D Mark": 518, - "Samples": 1 - } - ], - "gpu2495": [ - "GT 430", - { - "Videocard First Benchmarked": "2013-04-24", - "G3DMark/Price": "1.56", - "Overall Rank": "1789", - "Last Price Change": "$142.88 USD (2020-03-10)", - "Score": 223, - "Average G2D Mark": 325, - "Samples": 1 - } - ], - "gpu3480": [ - "IncrediblE HD", - { - "Other names": "IncrediblE HD Graphics", - "Videocard First Benchmarked": "2016-04-15", - "G3DMark/Price": "NA", - "Overall Rank": "1640", - "Last Price Change": "NA", - "Score": 389, - "Average G2D Mark": 427, - "Samples": 1 - } - ], - "gpu3655": [ - "IncrediblE HD 4000", - { - "Other names": "IncrediblE HD Graphics 4000", - "Videocard First Benchmarked": "2017-01-25", - "G3DMark/Price": "NA", - "Overall Rank": "1512", - "Last Price Change": "NA", - "Score": 517, - "Average G2D Mark": 520, - "Samples": 2 - } - ], - "gpu4017": [ - "IncrediblE HD 4600", - { - "Other names": "IncrediblE HD Graphics 4600", - "Videocard First Benchmarked": "2018-11-24", - "G3DMark/Price": "NA", - "Overall Rank": "1240", - "Last Price Change": "NA", - "Score": 750, - "Average G2D Mark": 735, - "Samples": 1 - } - ], - "gpu908": [ - "Intel - Express Chipset G41", - { - "Other names": "Intel(R) - Express Chipset G41", - "Videocard First Benchmarked": "2011-12-06", - "G3DMark/Price": "NA", - "Overall Rank": "2153", - "Last Price Change": "NA", - "Score": 57, - "Average G2D Mark": 325, - "Samples": 8 - } - ], - "gpu909": [ - "Intel - Express Chipset Q45/Q43", - { - "Other names": "Intel(R) - Express Chipset Q45/Q43", - "Videocard First Benchmarked": "2011-08-31", - "G3DMark/Price": "NA", - "Overall Rank": "2148", - "Last Price Change": "NA", - "Score": 58, - "Average G2D Mark": 336, - "Samples": 8 - } - ], - "gpu3748": [ - "Intel 2nd Generation SandyBridge HD", - { - "Other names": "(PE64) Intel(R) 2nd Generation SandyBridge HD Graphics, (PE) Intel(R) 2nd Generation SandyBridge HD Graphics", - "Videocard First Benchmarked": "2017-05-08", - "G3DMark/Price": "NA", - "Overall Rank": "1838", - "Last Price Change": "NA", - "Score": 186, - "Average G2D Mark": 178, - "Samples": 2 - } - ], - "gpu3583": [ - "Intel 2nd Generation SandyBridge HD 3000", - { - "Other names": "(PE64) Intel(R) 2nd Generation SandyBridge HD Graphics 3000", - "Videocard First Benchmarked": "2016-10-03", - "G3DMark/Price": "NA", - "Overall Rank": "1816", - "Last Price Change": "NA", - "Score": 205, - "Average G2D Mark": 555, - "Samples": 2 - } - ], - "gpu3730": [ - "Intel 4th Generation Haswell HD", - { - "Other names": "(PE64) Intel(R) 4th Generation Haswell HD Graphics", - "Videocard First Benchmarked": "2017-04-14", - "G3DMark/Price": "NA", - "Overall Rank": "1617", - "Last Price Change": "NA", - "Score": 420, - "Average G2D Mark": 734, - "Samples": 2 - } - ], - "gpu915": [ - "Intel 82845G Controller", - { - "Other names": "Intel(R) 82845G Graphics Controller", - "Videocard First Benchmarked": "2009-04-05", - "G3DMark/Price": "NA", - "Overall Rank": "2472", - "Last Price Change": "NA", - "Score": 2, - "Average G2D Mark": 132, - "Samples": 4 - } - ], - "gpu916": [ - "Intel 82845G/GL Controller", - { - "Other names": "Intel(R) 82845G/GL Graphics Controller", - "Videocard First Benchmarked": "2009-04-22", - "G3DMark/Price": "NA", - "Overall Rank": "2461", - "Last Price Change": "NA", - "Score": 3, - "Average G2D Mark": 176, - "Samples": 2 - } - ], - "gpu917": [ - "Intel 82845G/GL/GE/PE/GV Controller", - { - "Other names": "Intel(R) 82845G/GL/GE/PE/GV Graphics Controller", - "Videocard First Benchmarked": "2009-04-04", - "G3DMark/Price": "NA", - "Overall Rank": "2452", - "Last Price Change": "NA", - "Score": 3, - "Average G2D Mark": 159, - "Samples": 169 - } - ], - "gpu764": [ - "Intel 82852/82855 GM/GME Controller", - { - "Other names": "Intel 82852/82855 GM/GME Controller, Intel(R) 82852/82855 GM/GME Graphics Controller", - "Videocard First Benchmarked": "2010-01-15", - "G3DMark/Price": "NA", - "Overall Rank": "2483", - "Last Price Change": "NA", - "Score": 1, - "Average G2D Mark": 107, - "Samples": 1 - } - ], - "gpu920": [ - "Intel 82865G Controller", - { - "Other names": "Intel(R) 82865G Graphics Controller", - "Videocard First Benchmarked": "2009-05-03", - "G3DMark/Price": "NA", - "Overall Rank": "2395", - "Last Price Change": "NA", - "Score": 5, - "Average G2D Mark": 194, - "Samples": 396 - } - ], - "gpu765": [ - "Intel 82915G Express", - { - "Other names": "Intel 82915G Express, Intel(R) 82915G Express Chipset Family", - "Videocard First Benchmarked": "2010-03-11", - "G3DMark/Price": "NA", - "Overall Rank": "2368", - "Last Price Change": "NA", - "Score": 6, - "Average G2D Mark": 206, - "Samples": 16 - } - ], - "gpu4185": [ - "Intel 82915G/915GV/910GL", - { - "Other names": "Intel(R) 82915G/915GV/910GL Graphics Graphics", - "Videocard First Benchmarked": "2020-01-23", - "G3DMark/Price": "NA", - "Overall Rank": "2425", - "Last Price Change": "NA", - "Score": 4, - "Average G2D Mark": 95, - "Samples": 1 - } - ], - "gpu922": [ - "Intel 82915G/GV/910GL Advanced v3.5", - { - "Other names": "Intel(R) 82915G/GV/910GL Advanced Graphics v3.5", - "Videocard First Benchmarked": "2010-10-16", - "G3DMark/Price": "NA", - "Overall Rank": "2460", - "Last Price Change": "NA", - "Score": 3, - "Average G2D Mark": 94, - "Samples": 1 - } - ], - "gpu923": [ - "Intel 82915G/GV/910GL Express", - { - "Other names": "Intel(R) 82915G/GV/910GL Express Chipset Family", - "Videocard First Benchmarked": "2010-06-02", - "G3DMark/Price": "NA", - "Overall Rank": "2446", - "Last Price Change": "NA", - "Score": 3, - "Average G2D Mark": 142, - "Samples": 8 - } - ], - "gpu766": [ - "Intel 82945G Express", - { - "Other names": "Familia Intel(R) 82945G Express Chipset, Famille de jeu de puces Express Intel(R) 82945G, Intel 82945G Express, Intel(R) - controller 82945G Express Chipset 0, Intel(R) - famiglia Express Chipset 82945G, Intel(R) 82945G Express Chipset Controller 0, Intel(R) 82945G Express Chipset Family, Intel(R) 82945G Express Chipset Family (Prerelease, Kontroler Intel(R) 82945G Express Chipset Controll, Kontroler Intel(R) 82945G Express Chipset Controller 0, Intel(R) 82945G Express Yonga K\u00c3\u00bcmesi Ailesi", - "Videocard First Benchmarked": "2009-04-16", - "G3DMark/Price": "NA", - "Overall Rank": "2323", - "Last Price Change": "NA", - "Score": 12, - "Average G2D Mark": 11, - "Samples": 1826 - } - ], - "gpu3510": [ - "Intel 82945G Express-Chipsatzfamilie", - { - "Other names": "Intel(R) 82945G Express-Chipsatzfamilie", - "Videocard First Benchmarked": "2016-05-25", - "G3DMark/Price": "NA", - "Overall Rank": "2340", - "Last Price Change": "NA", - "Score": 8, - "Average G2D Mark": 240, - "Samples": 1 - } - ], - "gpu770": [ - "Intel 865 Embedded Controller", - { - "Other names": "Intel Corporation 865 Embedded Graphics Controller", - "Videocard First Benchmarked": "2010-06-06", - "G3DMark/Price": "NA", - "Overall Rank": "2426", - "Last Price Change": "NA", - "Score": 4, - "Average G2D Mark": 20, - "Samples": 2 - } - ], - "gpu3185": [ - "Intel 915G,910G Express", - { - "Other names": "Intel(R) 915G,910G Express Chipset Family", - "Videocard First Benchmarked": "2015-04-12", - "G3DMark/Price": "NA", - "Overall Rank": "2415", - "Last Price Change": "NA", - "Score": 4, - "Average G2D Mark": 166, - "Samples": 1 - } - ], - "gpu3523": [ - "Intel 915G/915GV/910GL Embedded Controller Functio", - { - "Other names": "Intel Corporation 915G/915GV/910GL Embedded Graphics Controller Function 0, (v2.6)", - "Videocard First Benchmarked": "2016-06-14", - "G3DMark/Price": "NA", - "Overall Rank": "2396", - "Last Price Change": "NA", - "Score": 5, - "Average G2D Mark": 41, - "Samples": 1 - } - ], - "gpu3594": [ - "Intel 945G Embedded Chipset Function 0", - { - "Other names": "Intel Corporation 945G Embedded Graphics Chipset Function 0", - "Videocard First Benchmarked": "2016-10-27", - "G3DMark/Price": "NA", - "Overall Rank": "2403", - "Last Price Change": "NA", - "Score": 5, - "Average G2D Mark": 251, - "Samples": 1 - } - ], - "gpu3750": [ - "Intel 946GZ Embedded Chipset", - { - "Other names": "Intel Corporation 946GZ Embedded Graphics Chipset Function 0", - "Videocard First Benchmarked": "2017-05-11", - "G3DMark/Price": "NA", - "Overall Rank": "2441", - "Last Price Change": "NA", - "Score": 3, - "Average G2D Mark": 66, - "Samples": 4 - } - ], - "gpu928": [ - "Intel 946GZ Express", - { - "Other names": "Familia Intel(R) 946GZ Express Chipset, Intel(R) 946GZ Express Chipset Family, Intel(R) 946GZ Express-Chipsatzfamilie, Famille de jeu de puces Express Intel(R) 946GZ, (PE) Intel(R) 946GZ Express Chipset Family", - "Videocard First Benchmarked": "2009-04-02", - "G3DMark/Price": "NA", - "Overall Rank": "2449", - "Last Price Change": "NA", - "Score": 3, - "Average G2D Mark": 38, - "Samples": 163 - } - ], - "gpu4955": [ - "Intel Arc", - { - "Other names": "Intel(R) Arc(TM) Graphics", - "Videocard First Benchmarked": "2023-11-26", - "G3DMark/Price": "NA", - "Overall Rank": "391", - "Last Price Change": "NA", - "Score": 4625, - "Average G2D Mark": 621, - "Samples": 4 - } - ], - "gpu4879": [ - "Intel Arc A310", - { - "Other names": "Intel(R) Arc(TM) A310 Graphics", - "Videocard First Benchmarked": "2023-07-20", - "G3DMark/Price": "42.93", - "Overall Rank": "385", - "Last Price Change": "$109.99 USD (2023-09-27)", - "Score": 4722, - "Average G2D Mark": 634, - "Samples": 2 - } - ], - "gpu4568": [ - "Intel Arc A380", - { - "Bus Interface": "PCIe 4.0 x16", - "Max Memory Size": "6144 MB", - "Core Clock(s)": "2000 MHz", - "DirectX": "12", - "OpenGL": "4.6", - "Max TDP": "75 W", - "Videocard Category": "Desktop", - "Other names": "Intel(R) Arc(TM) A380 Graphics", - "Videocard First Benchmarked": "2022-07-22", - "G3DMark/Price": "NA", - "Overall Rank": "371", - "Last Price Change": "NA", - "Score": 4916, - "Average G2D Mark": 583, - "Samples": 128 - } - ], - "gpu4940": [ - "Intel Arc A580", - { - "Other names": "Intel(R) Arc(TM) A580 Graphics", - "Videocard First Benchmarked": "2023-10-25", - "G3DMark/Price": "27.49", - "Overall Rank": "157", - "Last Price Change": "$424.84 USD (2023-12-21)", - "Score": 11677, - "Average G2D Mark": 758, - "Samples": 15 - } - ], - "gpu4928": [ - "Intel Arc A730M", - { - "Other names": "Intel(R) Arc(TM) A730M Graphics", - "Videocard First Benchmarked": "2023-10-01", - "G3DMark/Price": "NA", - "Overall Rank": "242", - "Last Price Change": "NA", - "Score": 7865, - "Average G2D Mark": 585, - "Samples": 5 - } - ], - "gpu4612": [ - "Intel Arc A750", - { - "Bus Interface": "PCIe 4.0 x16", - "Max Memory Size": "8192 MB", - "Core Clock(s)": "2050 MHz", - "DirectX": "12_2", - "OpenGL": "4.6", - "Max TDP": "225 W", - "Videocard Category": "Desktop", - "Other names": "Intel(R) Arc(TM) A750 Graphics", - "Videocard First Benchmarked": "2022-10-25", - "G3DMark/Price": "44.24", - "Overall Rank": "202", - "Last Price Change": "$209.99 USD (2023-12-15)", - "Score": 9290, - "Average G2D Mark": 628, - "Samples": 327 - } - ], - "gpu4605": [ - "Intel Arc A770", - { - "Bus Interface": "PCIe 4.0 x16", - "Max Memory Size": "16384 MB", - "Core Clock(s)": "2100 MHz", - "DirectX": "12", - "OpenGL": "4.6", - "Max TDP": "225 W", - "Videocard Category": "Desktop", - "Other names": "Intel(R) Arc(TM) A770 Graphics", - "Videocard First Benchmarked": "2022-10-04", - "G3DMark/Price": "36.06", - "Overall Rank": "188", - "Last Price Change": "$269.99 USD (2023-12-12)", - "Score": 9735, - "Average G2D Mark": 655, - "Samples": 670 - } - ], - "gpu4620": [ - "Intel Arc A770M", - { - "Bus Interface": "PCIe 4.0 x16", - "Max Memory Size": "16384 MB", - "Core Clock(s)": "1650 MHz", - "DirectX": "12_2", - "OpenGL": "4.6", - "Max TDP": "150 W", - "Videocard Category": "Mobile", - "Other names": "Intel(R) Arc(TM) A770M Graphics", - "Videocard First Benchmarked": "2022-11-08", - "G3DMark/Price": "NA", - "Overall Rank": "258", - "Last Price Change": "NA", - "Score": 7459, - "Average G2D Mark": 620, - "Samples": 38 - } - ], - "gpu4905": [ - "Intel Arc Pro A40/A50", - { - "Other names": "Intel(R) Arc(TM) Pro A40/A50 Graphics", - "Videocard First Benchmarked": "2023-08-23", - "G3DMark/Price": "NA", - "Overall Rank": "347", - "Last Price Change": "NA", - "Score": 5224, - "Average G2D Mark": 540, - "Samples": 4 - } - ], - "gpu4911": [ - "Intel Arc Pro A60", - { - "Other names": "Intel(R) Arc(TM) Pro A60 Graphics", - "Videocard First Benchmarked": "2023-06-02", - "G3DMark/Price": "NA", - "Overall Rank": "199", - "Last Price Change": "NA", - "Score": 9409, - "Average G2D Mark": 787, - "Samples": 2 - } - ], - "gpu931": [ - "Intel B43 Express Chipset", - { - "Other names": "Intel(R) B43 Express Chipset", - "Videocard First Benchmarked": "2009-12-01", - "G3DMark/Price": "NA", - "Overall Rank": "1993", - "Last Price Change": "NA", - "Score": 109, - "Average G2D Mark": 98, - "Samples": 38 - } - ], - "gpu3849": [ - "Intel Coffee Lake UHD", - { - "Other names": "Intel Coffee Lake UHD Graphics", - "Videocard First Benchmarked": "2017-11-18", - "G3DMark/Price": "NA", - "Overall Rank": "979", - "Last Price Change": "NA", - "Score": 1158, - "Average G2D Mark": 918, - "Samples": 9 - } - ], - "gpu933": [ - "Intel Extreme Controller", - { - "Other names": "Intel(R) Extreme Graphics Controller", - "Videocard First Benchmarked": "2009-06-22", - "G3DMark/Price": "NA", - "Overall Rank": "2474", - "Last Price Change": "NA", - "Score": 2, - "Average G2D Mark": 136, - "Samples": 1 - } - ], - "gpu782": [ - "Intel G33/G31 Express", - { - "Bus Interface": "Integrated", - "Core Clock(s)": "400 MHz", - "DirectX": "9.0c", - "OpenGL": "1.4", - "Videocard Category": "Desktop", - "Other names": "Familia Intel(R) G33/G31 Express Chipset, Famille de jeu de puces Express Intel(R) G33/G31, Intel G33/G31 Express, Intel(R) - famiglia Express Chipset G33/G31, Intel(R) G33/G31 Express Chipset Family, Intel(R) G33/G31 Express Chipset Family (Prereleas, Intel(R) G33/G31 Express-Chipsatzfamilie, Intel(R) G33/G31 Express Yonga K\u00c3\u00bcmesi Ailesi, Intel(R) G33/G31 Express Chipset Family(PHDGD Alpha v1.0 x86)", - "Videocard First Benchmarked": "2010-01-18", - "G3DMark/Price": "NA", - "Overall Rank": "2163", - "Last Price Change": "NA", - "Score": 52, - "Average G2D Mark": 18, - "Samples": 2956 - } - ], - "gpu938": [ - "Intel G35 Express", - { - "Other names": "Intel(R) G35 Express Chipset Family", - "Videocard First Benchmarked": "2010-09-29", - "G3DMark/Price": "NA", - "Overall Rank": "517", - "Last Price Change": "NA", - "Score": 3090, - "Average G2D Mark": 384, - "Samples": 45 - } - ], - "gpu940": [ - "Intel G41 Express Chipset", - { - "Other names": "Intel(R) G41 Express Chipset", - "Videocard First Benchmarked": "2009-04-03", - "G3DMark/Price": "NA", - "Overall Rank": "2004", - "Last Price Change": "NA", - "Score": 105, - "Average G2D Mark": 17, - "Samples": 3206 - } - ], - "gpu943": [ - "Intel G41 Express-Chipsatz", - { - "Other names": "Intel(R) G41 Express-Chipsatz", - "Videocard First Benchmarked": "2012-04-18", - "G3DMark/Price": "NA", - "Overall Rank": "2150", - "Last Price Change": "NA", - "Score": 57, - "Average G2D Mark": 267, - "Samples": 8 - } - ], - "gpu944": [ - "Intel G45/G43 Express Chipset", - { - "Bus Interface": "PCIe 1x16", - "Core Clock(s)": "1333 MHz", - "Memory Clock(s)": "1066 MHz", - "DirectX": "11", - "Max TDP": "24 W", - "Videocard Category": "Desktop", - "Other names": "Intel(R) G45/G43 Express Chipset, Intel(R) G45/G43 Express-Chipsatz, Intel(R) - Express Chipset G45/G43", - "Videocard First Benchmarked": "2009-04-06", - "G3DMark/Price": "NA", - "Overall Rank": "2003", - "Last Price Change": "NA", - "Score": 105, - "Average G2D Mark": 24, - "Samples": 982 - } - ], - "gpu946": [ - "Intel G45/G43/G41 Express Chipset", - { - "Other names": "Intel(R) G45/G43/G41 Express Chipset", - "Videocard First Benchmarked": "2011-03-20", - "G3DMark/Price": "NA", - "Overall Rank": "2119", - "Last Price Change": "NA", - "Score": 68, - "Average G2D Mark": 318, - "Samples": 1 - } - ], - "gpu948": [ - "Intel G965 Express", - { - "Other names": "Intel(R) G965 Express Chipset Family", - "Videocard First Benchmarked": "2009-04-04", - "G3DMark/Price": "NA", - "Overall Rank": "1790", - "Last Price Change": "NA", - "Score": 223, - "Average G2D Mark": 45, - "Samples": 186 - } - ], - "gpu950": [ - "Intel GMA 3150 Express", - { - "Other names": "Intel(R) GMA 3150 Express Chipset Family", - "Videocard First Benchmarked": "2009-12-01", - "G3DMark/Price": "NA", - "Overall Rank": "2467", - "Last Price Change": "NA", - "Score": 3, - "Average G2D Mark": 66, - "Samples": 1 - } - ], - "gpu2846": [ - "Intel Haswell HD - GT1", - { - "Other names": "Intel Haswell HD Graphics - GT1", - "Videocard First Benchmarked": "2014-03-23", - "G3DMark/Price": "NA", - "Overall Rank": "1942", - "Last Price Change": "NA", - "Score": 123, - "Average G2D Mark": 492, - "Samples": 10 - } - ], - "gpu2807": [ - "Intel Haswell HD - GT2", - { - "Other names": "Intel Haswell HD Graphics - GT2", - "Videocard First Benchmarked": "2014-02-06", - "G3DMark/Price": "NA", - "Overall Rank": "1901", - "Last Price Change": "NA", - "Score": 139, - "Average G2D Mark": 630, - "Samples": 8 - } - ], - "gpu3264": [ - "Intel HD 2000", - { - "Other names": "Intel(R) HD Graphics 2000", - "Videocard First Benchmarked": "2015-07-20", - "G3DMark/Price": "NA", - "Overall Rank": "1803", - "Last Price Change": "NA", - "Score": 213, - "Average G2D Mark": 456, - "Samples": 1 - } - ], - "gpu26": [ - "Intel HD 3000", - { - "Other names": "Intel(R) HD Graphics 3000, Intel(R) HD Graphics 3000 (PHDGD Omega 3.0 x64), Intel(R) HD Graphics 3000(PHDGD Omega 4.0), Intel(R) HD Graphics 3000(PHDGD Omega 4.1 x64), Intel(R) HD Graphics 3000 (PHDGD Omega 5.0), Intel(R) HD Graphics 3000(PHDGD Omega 3.5 REV), Intel(R) HD Graphics 3000(PHDGD Omega 3.5 x64)", - "Videocard First Benchmarked": "2012-08-14", - "G3DMark/Price": "0.27", - "Overall Rank": "1760", - "Last Price Change": "$945 USD (2012-12-08)", - "Score": 256, - "Average G2D Mark": 37, - "Samples": 22480 - } - ], - "gpu2": [ - "Intel HD 4000", - { - "Other names": "Intel(R) HD Graphics 4000, Intel(R) HD Graphics 4000(Microsoft Corporation - WDDM 1.2), Intel(R) HD Graphics 4000 (Intel Corporation - WDDM 1.3), Intel(R) HD Graphics 4000 (\u00d0\u00ba\u00d0\u00be\u00d1\u20ac\u00d0\u00bf\u00d0\u00be\u00d1\u20ac\u00d0\u00b0\u00d1\u2020\u00d0\u00b8\u00d1\u008f \u00d0\u0153\u00d0\u00b0\u00d0\u00b9\u00d0\u00ba\u00d1\u20ac\u00d0\u00be\u00d1\u0081\u00d0\u00be\u00d1\u201e\u00d1\u201a \u00e2\u20ac\u201d WDDM 1.2), Intel(R) HD Graphics 4000 (PHDGD IvyDrive 3.0), Intel(R) HD Graphics 4000 (PHDGD Omega 5.0)", - "Videocard First Benchmarked": "2012-08-17", - "G3DMark/Price": "0.22", - "Overall Rank": "1676", - "Last Price Change": "$1592.95 USD (2014-10-22)", - "Score": 344, - "Average G2D Mark": 190, - "Samples": 43589 - } - ], - "gpu2643": [ - "Intel HD 4400", - { - "Max Memory Size": "1700 MB", - "DirectX": "11.2", - "OpenGL": "4.3", - "Other names": "Intel(R) HD Graphics 4400, Intel(R) HD Graphics 4400 (PHDGD IvyDrive 3.0)", - "Videocard First Benchmarked": "2013-09-03", - "G3DMark/Price": "NA", - "Overall Rank": "1508", - "Last Price Change": "NA", - "Score": 521, - "Average G2D Mark": 278, - "Samples": 3753 - } - ], - "gpu2451": [ - "Intel HD 4600", - { - "Bus Interface": "PCIe 1.0 x16", - "Core Clock(s)": "400 MHz", - "Memory Clock(s)": "Shared MHz", - "DirectX": "12.0", - "OpenGL": "4.3", - "Max TDP": "45 W", - "Videocard Category": "Desktop", - "Other names": "Intel(R) HD Graphics 4600, %iHSWGT15D%, Intel(R) HD Graphics 4600(PHDGD Skylake v2.0), Intel(R) HD Graphics 4600 (PHDGD Skylake v2.9)", - "Videocard First Benchmarked": "2013-03-23", - "G3DMark/Price": "NA", - "Overall Rank": "1362", - "Last Price Change": "NA", - "Score": 631, - "Average G2D Mark": 316, - "Samples": 29292 - } - ], - "gpu4145": [ - "Intel HD 500", - { - "Other names": "Intel(R) HD Graphics 500", - "Videocard First Benchmarked": "2019-09-19", - "G3DMark/Price": "NA", - "Overall Rank": "1718", - "Last Price Change": "NA", - "Score": 299, - "Average G2D Mark": 81, - "Samples": 599 - } - ], - "gpu2552": [ - "Intel HD 5000", - { - "Other names": "Intel(R) HD Graphics 5000", - "Videocard First Benchmarked": "2013-06-20", - "G3DMark/Price": "0.92", - "Overall Rank": "1436", - "Last Price Change": "$625 USD (2020-03-14)", - "Score": 577, - "Average G2D Mark": 224, - "Samples": 1105 - } - ], - "gpu4143": [ - "Intel HD 505", - { - "Other names": "Intel(R) HD Graphics 505", - "Videocard First Benchmarked": "2019-09-18", - "G3DMark/Price": "NA", - "Overall Rank": "1672", - "Last Price Change": "NA", - "Score": 352, - "Average G2D Mark": 95, - "Samples": 153 - } - ], - "gpu3347": [ - "Intel HD 510", - { - "Other names": "Intel(R) HD Graphics 510", - "Videocard First Benchmarked": "2015-10-29", - "G3DMark/Price": "NA", - "Overall Rank": "1370", - "Last Price Change": "NA", - "Score": 627, - "Average G2D Mark": 163, - "Samples": 1146 - } - ], - "gpu3341": [ - "Intel HD 515", - { - "Other names": "Intel(R) HD Graphics 515", - "Videocard First Benchmarked": "2015-10-23", - "G3DMark/Price": "NA", - "Overall Rank": "1357", - "Last Price Change": "NA", - "Score": 632, - "Average G2D Mark": 190, - "Samples": 1321 - } - ], - "gpu3255": [ - "Intel HD 520", - { - "Other names": "Intel(R) HD Graphics 520", - "Videocard First Benchmarked": "2015-07-14", - "G3DMark/Price": "NA", - "Overall Rank": "1135", - "Last Price Change": "NA", - "Score": 871, - "Average G2D Mark": 212, - "Samples": 15330 - } - ], - "gpu2498": [ - "Intel HD 5200", - { - "Other names": "Intel(R) HD Graphics 5200", - "Videocard First Benchmarked": "2013-04-25", - "G3DMark/Price": "NA", - "Overall Rank": "1170", - "Last Price Change": "NA", - "Score": 830, - "Average G2D Mark": 653, - "Samples": 4 - } - ], - "gpu3281": [ - "Intel HD 530", - { - "Core Clock(s)": "350Mhz MHz", - "DirectX": "12", - "OpenGL": "4.4", - "Other names": "Intel(R) HD Graphics 530, Intel(R) HD Graphics 530 (PHDGD Skylake v2.9)", - "Videocard First Benchmarked": "2015-08-08", - "G3DMark/Price": "NA", - "Overall Rank": "1054", - "Last Price Change": "NA", - "Score": 995, - "Average G2D Mark": 252, - "Samples": 11957 - } - ], - "gpu2921": [ - "Intel HD 5300", - { - "Other names": "Intel(R) HD Graphics 5300", - "Videocard First Benchmarked": "2014-08-03", - "G3DMark/Price": "NA", - "Overall Rank": "1637", - "Last Price Change": "NA", - "Score": 390, - "Average G2D Mark": 182, - "Samples": 1263 - } - ], - "gpu2908": [ - "Intel HD 5500", - { - "Other names": "Intel(R) HD Graphics 5500, Intel(R) HD Graphics 5500(PHDGD Skylake v2.0), Intel(R) HD Graphics 5500 (PHDGD Skylake v2.9), Intel(R) HD Graphics 5500(PHDGD Skylake)", - "Videocard First Benchmarked": "2014-07-18", - "G3DMark/Price": "NA", - "Overall Rank": "1424", - "Last Price Change": "NA", - "Score": 587, - "Average G2D Mark": 235, - "Samples": 11708 - } - ], - "gpu3160": [ - "Intel HD 5600", - { - "Other names": "Intel(R) HD Graphics 5600", - "Videocard First Benchmarked": "2015-03-18", - "G3DMark/Price": "NA", - "Overall Rank": "652", - "Last Price Change": "NA", - "Score": 2264, - "Average G2D Mark": 463, - "Samples": 24 - } - ], - "gpu3120": [ - "Intel HD 6000", - { - "Other names": "Intel(R) HD Graphics 6000", - "Videocard First Benchmarked": "2015-01-27", - "G3DMark/Price": "NA", - "Overall Rank": "1140", - "Last Price Change": "NA", - "Score": 859, - "Average G2D Mark": 274, - "Samples": 417 - } - ], - "gpu3647": [ - "Intel HD 610", - { - "Other names": "Intel(R) HD Graphics 610", - "Videocard First Benchmarked": "2017-01-23", - "G3DMark/Price": "NA", - "Overall Rank": "1299", - "Last Price Change": "NA", - "Score": 693, - "Average G2D Mark": 156, - "Samples": 1150 - } - ], - "gpu3593": [ - "Intel HD 615", - { - "Other names": "Intel(R) HD Graphics 615", - "Videocard First Benchmarked": "2016-10-26", - "G3DMark/Price": "NA", - "Overall Rank": "1271", - "Last Price Change": "NA", - "Score": 725, - "Average G2D Mark": 189, - "Samples": 834 - } - ], - "gpu3540": [ - "Intel HD 630", - { - "Other names": "Intel(R) HD Graphics 630", - "Videocard First Benchmarked": "2016-07-04", - "G3DMark/Price": "NA", - "Overall Rank": "998", - "Last Price Change": "NA", - "Score": 1108, - "Average G2D Mark": 266, - "Samples": 6621 - } - ], - "gpu37": [ - "Intel HD Family", - { - "Other names": "Intel(R) HD Graphics Family, Intel(R) HD Graphics Family (Intel Corporation - WDDM 1.3), Intel(R) HD Graphics Family (PHDGD Skylake v2.9)", - "Videocard First Benchmarked": "2012-08-16", - "G3DMark/Price": "NA", - "Overall Rank": "1581", - "Last Price Change": "NA", - "Score": 459, - "Average G2D Mark": 193, - "Samples": 29874 - } - ], - "gpu3592": [ - "Intel HD Graphics 620", - { - "Other names": "Intel(R) HD Graphics 620", - "Videocard First Benchmarked": "2016-10-19", - "G3DMark/Price": "NA", - "Overall Rank": "1097", - "Last Price Change": "NA", - "Score": 926, - "Average G2D Mark": 220, - "Samples": 12474 - } - ], - "gpu3249": [ - "Intel HD manual-15.28-1861", - { - "Other names": "Intel(R) HD Graphics manual-15.28-1861", - "Videocard First Benchmarked": "2015-07-11", - "G3DMark/Price": "NA", - "Overall Rank": "2134", - "Last Price Change": "NA", - "Score": 63, - "Average G2D Mark": 72, - "Samples": 1 - } - ], - "gpu3764": [ - "Intel HD manual-gen9_2015-133271", - { - "Other names": "Intel(R) HD Graphics manual-gen9_2015-133271", - "Videocard First Benchmarked": "2017-06-11", - "G3DMark/Price": "NA", - "Overall Rank": "1861", - "Last Price Change": "NA", - "Score": 165, - "Average G2D Mark": 119, - "Samples": 3 - } - ], - "gpu3068": [ - "Intel HD Modded", - { - "Other names": "Intel(R) HD Graphics Modded", - "Videocard First Benchmarked": "2014-12-08", - "G3DMark/Price": "NA", - "Overall Rank": "1982", - "Last Price Change": "NA", - "Score": 112, - "Average G2D Mark": 303, - "Samples": 3 - } - ], - "gpu962": [ - "Intel HD P3000", - { - "Other names": "Intel(R) HD Graphics P3000", - "Videocard First Benchmarked": "2012-03-15", - "G3DMark/Price": "NA", - "Overall Rank": "1729", - "Last Price Change": "NA", - "Score": 287, - "Average G2D Mark": 82, - "Samples": 112 - } - ], - "gpu963": [ - "Intel HD P4000", - { - "Other names": "Intel(R) HD Graphics P4000", - "Videocard First Benchmarked": "2012-04-11", - "G3DMark/Price": "NA", - "Overall Rank": "1513", - "Last Price Change": "NA", - "Score": 516, - "Average G2D Mark": 636, - "Samples": 13 - } - ], - "gpu2601": [ - "Intel HD P4600", - { - "Other names": "Intel(R) HD Graphics P4600", - "Videocard First Benchmarked": "2013-07-29", - "G3DMark/Price": "NA", - "Overall Rank": "1396", - "Last Price Change": "NA", - "Score": 605, - "Average G2D Mark": 963, - "Samples": 5 - } - ], - "gpu2586": [ - "Intel HD P4600/P4700", - { - "Other names": "Intel(R) HD Graphics P4600/P4700", - "Videocard First Benchmarked": "2013-07-15", - "G3DMark/Price": "NA", - "Overall Rank": "1353", - "Last Price Change": "NA", - "Score": 635, - "Average G2D Mark": 367, - "Samples": 510 - } - ], - "gpu3385": [ - "Intel HD P530", - { - "Other names": "Intel(R) HD Graphics P530", - "Videocard First Benchmarked": "2015-12-16", - "G3DMark/Price": "NA", - "Overall Rank": "981", - "Last Price Change": "NA", - "Score": 1154, - "Average G2D Mark": 279, - "Samples": 193 - } - ], - "gpu3682": [ - "Intel HD P630", - { - "Other names": "Intel(R) HD Graphics P630", - "Videocard First Benchmarked": "2017-03-08", - "G3DMark/Price": "NA", - "Overall Rank": "967", - "Last Price Change": "NA", - "Score": 1184, - "Average G2D Mark": 317, - "Samples": 60 - } - ], - "gpu3788": [ - "Intel Infoshock HD", - { - "Other names": "Intel(R) Infoshock HD Graphics", - "Videocard First Benchmarked": "2017-07-22", - "G3DMark/Price": "NA", - "Overall Rank": "1827", - "Last Price Change": "NA", - "Score": 194, - "Average G2D Mark": 393, - "Samples": 2 - } - ], - "gpu2692": [ - "Intel Iris 5100", - { - "Other names": "Intel(R) Iris(TM) Graphics 5100", - "Videocard First Benchmarked": "2013-10-26", - "G3DMark/Price": "NA", - "Overall Rank": "1251", - "Last Price Change": "NA", - "Score": 744, - "Average G2D Mark": 272, - "Samples": 414 - } - ], - "gpu3366": [ - "Intel Iris 540", - { - "Other names": "Intel(R) Iris(TM) Graphics 540, Intel(R) Iris(R) Graphics 540, Intel(R) Iris(TM) Graphics 540 (PHDGD Skylake v2.9)", - "Videocard First Benchmarked": "2015-11-20", - "G3DMark/Price": "NA", - "Overall Rank": "936", - "Last Price Change": "NA", - "Score": 1248, - "Average G2D Mark": 321, - "Samples": 1205 - } - ], - "gpu3437": [ - "Intel Iris 550", - { - "Other names": "Intel(R) Iris(TM) Graphics 550, Intel(R) Iris(R) Graphics 550", - "Videocard First Benchmarked": "2016-02-27", - "G3DMark/Price": "NA", - "Overall Rank": "892", - "Last Price Change": "NA", - "Score": 1421, - "Average G2D Mark": 305, - "Samples": 249 - } - ], - "gpu3164": [ - "Intel Iris 6100", - { - "Other names": "Intel(R) Iris(TM) Graphics 6100", - "Videocard First Benchmarked": "2015-03-21", - "G3DMark/Price": "NA", - "Overall Rank": "1104", - "Last Price Change": "NA", - "Score": 914, - "Average G2D Mark": 318, - "Samples": 549 - } - ], - "gpu3790": [ - "Intel Iris 650", - { - "Other names": "Intel(R) Iris(TM) Graphics 650", - "Videocard First Benchmarked": "2017-08-02", - "G3DMark/Price": "NA", - "Overall Rank": "887", - "Last Price Change": "NA", - "Score": 1433, - "Average G2D Mark": 644, - "Samples": 2 - } - ], - "gpu4120": [ - "Intel Iris Plus", - { - "Other names": "Intel(R) Iris(R) Plus Graphics", - "Videocard First Benchmarked": "2019-07-16", - "G3DMark/Price": "NA", - "Overall Rank": "769", - "Last Price Change": "NA", - "Score": 1818, - "Average G2D Mark": 314, - "Samples": 2534 - } - ], - "gpu3696": [ - "Intel Iris Plus 640", - { - "Bus Interface": "Integrated", - "Max Memory Size": "32768 MB", - "Core Clock(s)": "300 MHz", - "DirectX": "12", - "OpenGL": "4.4", - "Videocard Category": "Mobile", - "Other names": "Intel(R) Iris(TM) Plus Graphics 640, Intel(R) Iris(R) Plus Graphics 640", - "Videocard First Benchmarked": "2017-03-09", - "G3DMark/Price": "NA", - "Overall Rank": "912", - "Last Price Change": "NA", - "Score": 1343, - "Average G2D Mark": 341, - "Samples": 707 - } - ], - "gpu4162": [ - "Intel Iris Plus 645", - { - "Other names": "Intel(R) Iris(R) Plus Graphics 645", - "Videocard First Benchmarked": "2019-11-15", - "G3DMark/Price": "NA", - "Overall Rank": "793", - "Last Price Change": "NA", - "Score": 1727, - "Average G2D Mark": 389, - "Samples": 23 - } - ], - "gpu3718": [ - "Intel Iris Plus 650", - { - "Bus Interface": "Integrated", - "Max Memory Size": "32768 MB", - "Core Clock(s)": "300 MHz", - "DirectX": "12", - "OpenGL": "4.4", - "Videocard Category": "Mobile", - "Other names": "Intel(R) Iris(TM) Plus Graphics 650, Intel(R) Iris(R) Plus Graphics 650", - "Videocard First Benchmarked": "2017-03-31", - "G3DMark/Price": "NA", - "Overall Rank": "835", - "Last Price Change": "NA", - "Score": 1593, - "Average G2D Mark": 377, - "Samples": 201 - } - ], - "gpu3961": [ - "Intel Iris Plus 655", - { - "Other names": "Intel(R) Iris(R) Plus Graphics 655", - "Videocard First Benchmarked": "2018-08-02", - "G3DMark/Price": "NA", - "Overall Rank": "784", - "Last Price Change": "NA", - "Score": 1746, - "Average G2D Mark": 363, - "Samples": 993 - } - ], - "gpu2562": [ - "Intel Iris Pro 5200", - { - "Other names": "Intel(R) Iris(TM) Pro Graphics 5200", - "Videocard First Benchmarked": "2013-06-29", - "G3DMark/Price": "NA", - "Overall Rank": "966", - "Last Price Change": "NA", - "Score": 1190, - "Average G2D Mark": 402, - "Samples": 480 - } - ], - "gpu3481": [ - "Intel Iris Pro 580", - { - "Other names": "Intel(R) Iris(TM) Pro Graphics 580, Intel(R) Iris(R) Pro Graphics 580", - "Videocard First Benchmarked": "2016-04-20", - "G3DMark/Price": "NA", - "Overall Rank": "718", - "Last Price Change": "NA", - "Score": 1981, - "Average G2D Mark": 363, - "Samples": 431 - } - ], - "gpu3167": [ - "Intel Iris Pro 6100", - { - "Other names": "Intel(R) Iris(TM) Pro Graphics 6100", - "Videocard First Benchmarked": "2015-03-24", - "G3DMark/Price": "NA", - "Overall Rank": "1099", - "Last Price Change": "NA", - "Score": 925, - "Average G2D Mark": 548, - "Samples": 1 - } - ], - "gpu3258": [ - "Intel Iris Pro Graphics 6200", - { - "Other names": "Intel(R) Iris(TM) Pro Graphics 6200", - "Videocard First Benchmarked": "2015-07-16", - "G3DMark/Price": "NA", - "Overall Rank": "881", - "Last Price Change": "NA", - "Score": 1450, - "Average G2D Mark": 569, - "Samples": 257 - } - ], - "gpu3436": [ - "Intel Iris Pro P580", - { - "Other names": "Intel(R) Iris(TM) Pro Graphics P580, Intel(R) Iris(R) Pro Graphics P580", - "Videocard First Benchmarked": "2016-09-17", - "G3DMark/Price": "NA", - "Overall Rank": "661", - "Last Price Change": "NA", - "Score": 2231, - "Average G2D Mark": 509, - "Samples": 26 - } - ], - "gpu3542": [ - "Intel Iris Pro P6300", - { - "Other names": "Intel(R) Iris(TM) Pro Graphics P6300", - "Videocard First Benchmarked": "2016-07-06", - "G3DMark/Price": "NA", - "Overall Rank": "819", - "Last Price Change": "NA", - "Score": 1626, - "Average G2D Mark": 572, - "Samples": 14 - } - ], - "gpu4265": [ - "Intel Iris Xe", - { - "Other names": "Intel(R) Iris(R) Xe Graphics", - "Videocard First Benchmarked": "2020-09-08", - "G3DMark/Price": "NA", - "Overall Rank": "565", - "Last Price Change": "NA", - "Score": 2691, - "Average G2D Mark": 343, - "Samples": 16352 - } - ], - "gpu4502": [ - "Intel Iris Xe MAX", - { - "Other names": "Intel(R) Iris(R) Xe MAX Graphics", - "Videocard First Benchmarked": "2022-02-09", - "G3DMark/Price": "NA", - "Overall Rank": "720", - "Last Price Change": "NA", - "Score": 1972, - "Average G2D Mark": 311, - "Samples": 7 - } - ], - "gpu4740": [ - "Intel Iris Xe MAX 100", - { - "Other names": "Intel(R) Iris(R) Xe MAX 100 Graphics", - "Videocard First Benchmarked": "2023-02-10", - "G3DMark/Price": "NA", - "Overall Rank": "733", - "Last Price Change": "NA", - "Score": 1927, - "Average G2D Mark": 413, - "Samples": 4 - } - ], - "gpu3261": [ - "Intel Media Accelerator", - { - "Other names": "Intel(R) Graphics Media Accelerator", - "Videocard First Benchmarked": "2015-07-19", - "G3DMark/Price": "NA", - "Overall Rank": "2251", - "Last Price Change": "NA", - "Score": 33, - "Average G2D Mark": 78, - "Samples": 3 - } - ], - "gpu953": [ - "Intel Media Accelerator 3150", - { - "Other names": "Intel(R) Graphics Media Accelerator 3150", - "Videocard First Benchmarked": "2009-12-01", - "G3DMark/Price": "NA", - "Overall Rank": "2451", - "Last Price Change": "NA", - "Score": 3, - "Average G2D Mark": 86, - "Samples": 456 - } - ], - "gpu954": [ - "Intel Media Accelerator 500", - { - "Other names": "Intel(R) Graphics Media Accelerator 500", - "Videocard First Benchmarked": "2011-02-10", - "G3DMark/Price": "NA", - "Overall Rank": "2433", - "Last Price Change": "NA", - "Score": 3, - "Average G2D Mark": 71, - "Samples": 17 - } - ], - "gpu956": [ - "Intel Media Accelerator 600", - { - "Other names": "Intel(R) Graphics Media Accelerator 600", - "Videocard First Benchmarked": "2011-06-27", - "G3DMark/Price": "NA", - "Overall Rank": "2349", - "Last Price Change": "NA", - "Score": 7, - "Average G2D Mark": 58, - "Samples": 2 - } - ], - "gpu957": [ - "Intel Media Accelerator HD", - { - "Other names": "Intel(R) Graphics Media Accelerator HD", - "Videocard First Benchmarked": "2011-11-24", - "G3DMark/Price": "NA", - "Overall Rank": "1994", - "Last Price Change": "NA", - "Score": 109, - "Average G2D Mark": 34, - "Samples": 526 - } - ], - "gpu4063": [ - "Intel Poison Ivy", - { - "Other names": "Intel(R) Poison Ivy", - "Videocard First Benchmarked": "2019-03-26", - "G3DMark/Price": "NA", - "Overall Rank": "1257", - "Last Price Change": "NA", - "Score": 739, - "Average G2D Mark": 783, - "Samples": 1 - } - ], - "gpu967": [ - "Intel Q33 Express", - { - "Other names": "Intel(R) Q33 Express Chipset Family, Famille de jeu de puces Express Intel(R) Q33, Intel(R) Q33 Express lapkak\u00c3\u00a9szletcsal\u00c3\u00a1d, Intel(R) Q33 Express Yonga K\u00c3\u00bcmesi Ailesi, Familia Intel(R) Q33 Express Chipset", - "Videocard First Benchmarked": "2009-04-15", - "G3DMark/Price": "NA", - "Overall Rank": "2381", - "Last Price Change": "NA", - "Score": 5, - "Average G2D Mark": 21, - "Samples": 174 - } - ], - "gpu778": [ - "Intel Q35 Embedded", - { - "Other names": "Intel Corporation Q35 Embedded Graphics Chipset Fu, Intel Corporation Q35 Embedded Graphics Chipset Function 0, Intel Corporation Q35 Embedded Graphics Chipset Function 1", - "Videocard First Benchmarked": "2011-06-23", - "G3DMark/Price": "NA", - "Overall Rank": "2336", - "Last Price Change": "NA", - "Score": 8, - "Average G2D Mark": 303, - "Samples": 1 - } - ], - "gpu968": [ - "Intel Q35 Express", - { - "Other names": "Familia Intel(R) Q35 Express Chipset, Famille de jeu de puces Express Intel(R) Q35, Intel(R) - famiglia Express Chipset Q35, Intel(R) Q35 Express Chipset Family, Intel(R) Q35 Express-Chipsatzfamilie, Fam\u00c3\u00adlia de Chipsets Intel(R) Q35 Express, Rodzina mikrouk\u00c5\u201aad\u00c3\u00b3w Intel(R) Q35 Express Chipset Family", - "Videocard First Benchmarked": "2009-04-02", - "G3DMark/Price": "NA", - "Overall Rank": "2055", - "Last Price Change": "NA", - "Score": 88, - "Average G2D Mark": 20, - "Samples": 1052 - } - ], - "gpu971": [ - "Intel Q45/Q43 Express Chipset", - { - "Other names": "Intel(R) Q45/Q43 Express Chipset", - "Videocard First Benchmarked": "2009-04-03", - "G3DMark/Price": "NA", - "Overall Rank": "1812", - "Last Price Change": "NA", - "Score": 208, - "Average G2D Mark": 24, - "Samples": 2468 - } - ], - "gpu973": [ - "Intel Q45/Q43 Express-Chipsatz", - { - "Other names": "Intel(R) Q45/Q43 Express-Chipsatz", - "Videocard First Benchmarked": "2010-03-04", - "G3DMark/Price": "NA", - "Overall Rank": "2151", - "Last Price Change": "NA", - "Score": 57, - "Average G2D Mark": 352, - "Samples": 11 - } - ], - "gpu974": [ - "Intel Q965/Q963 Express", - { - "Other names": "Familia Intel(R) Q965/Q963 Express Chipset, Intel(R) Q965/Q963 Express Chipset Family, Intel(R) Q965/Q963 Express-Chipsatzfamilie", - "Videocard First Benchmarked": "2009-04-04", - "G3DMark/Price": "NA", - "Overall Rank": "1836", - "Last Price Change": "NA", - "Score": 187, - "Average G2D Mark": 38, - "Samples": 676 - } - ], - "gpu3135": [ - "Intel Skylake HD DT GT2", - { - "Other names": "Intel Skylake HD Graphics DT GT2", - "Videocard First Benchmarked": "2015-02-16", - "G3DMark/Price": "NA", - "Overall Rank": "1437", - "Last Price Change": "NA", - "Score": 577, - "Average G2D Mark": 402, - "Samples": 3 - } - ], - "gpu3950": [ - "Intel UHD Graphics", - { - "Other names": "Intel(R) UHD Graphics", - "Videocard First Benchmarked": "2018-06-14", - "G3DMark/Price": "NA", - "Overall Rank": "877", - "Last Price Change": "NA", - "Score": 1476, - "Average G2D Mark": 262, - "Samples": 13499 - } - ], - "gpu3876": [ - "Intel UHD Graphics 600", - { - "Other names": "Intel(R) UHD Graphics 600", - "Videocard First Benchmarked": "2018-01-07", - "G3DMark/Price": "NA", - "Overall Rank": "1697", - "Last Price Change": "NA", - "Score": 324, - "Average G2D Mark": 94, - "Samples": 2495 - } - ], - "gpu3861": [ - "Intel UHD Graphics 605", - { - "Other names": "Intel(R) UHD Graphics 605", - "Videocard First Benchmarked": "2018-03-02", - "G3DMark/Price": "NA", - "Overall Rank": "1656", - "Last Price Change": "NA", - "Score": 370, - "Average G2D Mark": 110, - "Samples": 697 - } - ], - "gpu3910": [ - "Intel UHD Graphics 610", - { - "Other names": "Intel(R) UHD Graphics 610", - "Videocard First Benchmarked": "2018-03-12", - "G3DMark/Price": "NA", - "Overall Rank": "1280", - "Last Price Change": "NA", - "Score": 718, - "Average G2D Mark": 177, - "Samples": 774 - } - ], - "gpu4006": [ - "Intel UHD Graphics 615", - { - "Other names": "Intel(R) UHD Graphics 615", - "Videocard First Benchmarked": "2018-10-23", - "G3DMark/Price": "NA", - "Overall Rank": "1239", - "Last Price Change": "NA", - "Score": 752, - "Average G2D Mark": 189, - "Samples": 324 - } - ], - "gpu4051": [ - "Intel UHD Graphics 617", - { - "Other names": "Intel(R) UHD Graphics 617", - "Videocard First Benchmarked": "2019-02-14", - "G3DMark/Price": "NA", - "Overall Rank": "1122", - "Last Price Change": "NA", - "Score": 893, - "Average G2D Mark": 240, - "Samples": 14 - } - ], - "gpu3805": [ - "Intel UHD Graphics 620", - { - "Bus Interface": "Integrated", - "Core Clock(s)": "300 MHz", - "DirectX": "12", - "OpenGL": "4.4", - "Other names": "Intel(R) UHD Graphics 620", - "Videocard First Benchmarked": "2017-08-28", - "G3DMark/Price": "NA", - "Overall Rank": "1031", - "Last Price Change": "NA", - "Score": 1042, - "Average G2D Mark": 246, - "Samples": 18488 - } - ], - "gpu3826": [ - "Intel UHD Graphics 630", - { - "Other names": "Intel(R) UHD Graphics 630", - "Videocard First Benchmarked": "2017-10-04", - "G3DMark/Price": "NA", - "Overall Rank": "937", - "Last Price Change": "NA", - "Score": 1248, - "Average G2D Mark": 302, - "Samples": 13843 - } - ], - "gpu4505": [ - "Intel UHD Graphics 710", - { - "Other names": "Intel(R) UHD Graphics 710", - "Videocard First Benchmarked": "2022-02-14", - "G3DMark/Price": "NA", - "Overall Rank": "1015", - "Last Price Change": "NA", - "Score": 1077, - "Average G2D Mark": 295, - "Samples": 81 - } - ], - "gpu4379": [ - "Intel UHD Graphics 730", - { - "Other names": "Intel(R) UHD Graphics 730", - "Videocard First Benchmarked": "2021-04-04", - "G3DMark/Price": "NA", - "Overall Rank": "818", - "Last Price Change": "NA", - "Score": 1626, - "Average G2D Mark": 379, - "Samples": 1805 - } - ], - "gpu4378": [ - "Intel UHD Graphics 750", - { - "Other names": "Intel(R) UHD Graphics 750", - "Videocard First Benchmarked": "2021-04-03", - "G3DMark/Price": "NA", - "Overall Rank": "786", - "Last Price Change": "NA", - "Score": 1742, - "Average G2D Mark": 345, - "Samples": 935 - } - ], - "gpu4473": [ - "Intel UHD Graphics 770", - { - "Other names": "Intel(R) UHD Graphics 770", - "Videocard First Benchmarked": "2021-11-09", - "G3DMark/Price": "NA", - "Overall Rank": "754", - "Last Price Change": "NA", - "Score": 1856, - "Average G2D Mark": 466, - "Samples": 2481 - } - ], - "gpu3924": [ - "Intel UHD Graphics P630", - { - "Other names": "Intel(R) UHD Graphics P630", - "Videocard First Benchmarked": "2018-08-04", - "G3DMark/Price": "NA", - "Overall Rank": "657", - "Last Price Change": "NA", - "Score": 2241, - "Average G2D Mark": 330, - "Samples": 133 - } - ], - "gpu4410": [ - "Intel UHD Graphics P750", - { - "Other names": "Intel(R) UHD Graphics P750", - "Videocard First Benchmarked": "2021-06-09", - "G3DMark/Price": "NA", - "Overall Rank": "794", - "Last Price Change": "NA", - "Score": 1727, - "Average G2D Mark": 444, - "Samples": 21 - } - ], - "gpu3301": [ - "Intel US15 Embedded Media and Controller", - { - "Other names": "Intel(R) US15 Embedded Media and Graphics Controller", - "Videocard First Benchmarked": "2015-09-01", - "G3DMark/Price": "NA", - "Overall Rank": "2346", - "Last Price Change": "NA", - "Score": 7, - "Average G2D Mark": 67, - "Samples": 2 - } - ], - "gpu1515": [ - "ION", - { - "Other names": "NVIDIA ION, NVIDIA ION (Mobile)", - "Videocard First Benchmarked": "2009-06-02", - "G3DMark/Price": "0.37", - "Overall Rank": "2065", - "Last Price Change": "$229.99 USD (2013-07-13)", - "Score": 84, - "Average G2D Mark": 18, - "Samples": 458 - } - ], - "gpu1516": [ - "ION LE", - { - "Other names": "NVIDIA ION LE", - "Videocard First Benchmarked": "2009-09-03", - "G3DMark/Price": "NA", - "Overall Rank": "2028", - "Last Price Change": "NA", - "Score": 98, - "Average G2D Mark": 96, - "Samples": 19 - } - ], - "gpu248": [ - "M860G with Mobility Radeon 4100", - { - "Other names": "AMD M860G with ATI Mobility Radeon 4100", - "Videocard First Benchmarked": "2009-11-07", - "G3DMark/Price": "NA", - "Overall Rank": "2090", - "Last Price Change": "NA", - "Score": 76, - "Average G2D Mark": 203, - "Samples": 26 - } - ], - "gpu249": [ - "M880G with Mobility Radeon HD 4200", - { - "Other names": "AMD M880G with ATI Mobility Radeon HD 4200", - "Videocard First Benchmarked": "2009-10-22", - "G3DMark/Price": "NA", - "Overall Rank": "2042", - "Last Price Change": "NA", - "Score": 93, - "Average G2D Mark": 260, - "Samples": 221 - } - ], - "gpu250": [ - "M880G with Mobility Radeon HD 4225", - { - "Other names": "AMD M880G with ATI Mobility Radeon HD 4225", - "Videocard First Benchmarked": "2010-06-15", - "G3DMark/Price": "NA", - "Overall Rank": "2101", - "Last Price Change": "NA", - "Score": 72, - "Average G2D Mark": 183, - "Samples": 7 - } - ], - "gpu121": [ - "M880G with Mobility Radeon HD 4250", - { - "Other names": "AMD M880G with ATI Mobility Radeon HD 4250", - "Videocard First Benchmarked": "2012-10-04", - "G3DMark/Price": "NA", - "Overall Rank": "2009", - "Last Price Change": "NA", - "Score": 104, - "Average G2D Mark": 270, - "Samples": 454 - } - ], - "gpu3677": [ - "Master X3100 Driver", - { - "Other names": "Master X3100 Driver", - "Videocard First Benchmarked": "2017-02-10", - "G3DMark/Price": "NA", - "Overall Rank": "2328", - "Last Price Change": "NA", - "Score": 10, - "Average G2D Mark": 79, - "Samples": 1 - } - ], - "gpu3187": [ - "Matrox C420 LP PCIe x16", - { - "Other names": "Matrox C420 LP PCIe x16", - "Videocard First Benchmarked": "2015-04-12", - "G3DMark/Price": "NA", - "Overall Rank": "1404", - "Last Price Change": "NA", - "Score": 597, - "Average G2D Mark": 359, - "Samples": 8 - } - ], - "gpu3054": [ - "Matrox C680 PCIe x16", - { - "Other names": "Matrox C680 PCIe x16", - "Videocard First Benchmarked": "2014-11-21", - "G3DMark/Price": "NA", - "Overall Rank": "740", - "Last Price Change": "NA", - "Score": 1904, - "Average G2D Mark": 700, - "Samples": 8 - } - ], - "gpu3579": [ - "Matrox C900 PCIe x16", - { - "Other names": "Matrox C900 PCIe x16", - "Videocard First Benchmarked": "2016-09-24", - "G3DMark/Price": "NA", - "Overall Rank": "771", - "Last Price Change": "NA", - "Score": 1812, - "Average G2D Mark": 761, - "Samples": 2 - } - ], - "gpu2674": [ - "Matrox G200e WDDM 1.2", - { - "Other names": "Matrox G200e (Emulex) WDDM 1.2", - "Videocard First Benchmarked": "2013-10-10", - "G3DMark/Price": "NA", - "Overall Rank": "2142", - "Last Price Change": "NA", - "Score": 59, - "Average G2D Mark": 505, - "Samples": 17 - } - ], - "gpu3887": [ - "Matrox G200e WDDM 2.0", - { - "Other names": "Matrox G200e (Emulex) WDDM 2.0", - "Videocard First Benchmarked": "2018-06-19", - "G3DMark/Price": "NA", - "Overall Rank": "2021", - "Last Price Change": "NA", - "Score": 101, - "Average G2D Mark": 289, - "Samples": 3 - } - ], - "gpu2705": [ - "Matrox G200eh", - { - "Other names": "Matrox G200eh (WDDM 1.2), Matrox G200eH (HP)", - "Videocard First Benchmarked": "2013-11-01", - "G3DMark/Price": "NA", - "Overall Rank": "2209", - "Last Price Change": "NA", - "Score": 41, - "Average G2D Mark": 449, - "Samples": 23 - } - ], - "gpu2942": [ - "Matrox G200eh WDDM 1.2", - { - "Other names": "Matrox G200eh (HP) WDDM 1.2", - "Videocard First Benchmarked": "2014-09-09", - "G3DMark/Price": "NA", - "Overall Rank": "2162", - "Last Price Change": "NA", - "Score": 52, - "Average G2D Mark": 448, - "Samples": 36 - } - ], - "gpu3723": [ - "Matrox G200eh WDDM 2.0", - { - "Other names": "Matrox G200eh (HP) WDDM 2.0, Matrox G200eh (HPE) WDDM 2.0", - "Videocard First Benchmarked": "2017-04-06", - "G3DMark/Price": "NA", - "Overall Rank": "2185", - "Last Price Change": "NA", - "Score": 46, - "Average G2D Mark": 106, - "Samples": 6 - } - ], - "gpu2673": [ - "Matrox G200eR", - { - "Other names": "Matrox G200eR (WDDM 1.2), Matrox G200eR", - "Videocard First Benchmarked": "2013-10-09", - "G3DMark/Price": "NA", - "Overall Rank": "2228", - "Last Price Change": "NA", - "Score": 37, - "Average G2D Mark": 400, - "Samples": 5 - } - ], - "gpu2919": [ - "Matrox G200eR WDDM 1.2", - { - "Other names": "Matrox G200eR (Renesas) WDDM 1.2", - "Videocard First Benchmarked": "2014-08-01", - "G3DMark/Price": "NA", - "Overall Rank": "2188", - "Last Price Change": "NA", - "Score": 45, - "Average G2D Mark": 210, - "Samples": 13 - } - ], - "gpu3692": [ - "Matrox G200eR WDDM 2.0", - { - "Other names": "Matrox G200eR (Renesas) WDDM 2.0", - "Videocard First Benchmarked": "2017-03-02", - "G3DMark/Price": "NA", - "Overall Rank": "2120", - "Last Price Change": "NA", - "Score": 68, - "Average G2D Mark": 457, - "Samples": 4 - } - ], - "gpu998": [ - "Matrox G200eW", - { - "Other names": "Matrox G200eW (Nuvoton), Matrox G200eW (WDDM 1.2), Matrox G200eW (Winbond)", - "Videocard First Benchmarked": "2012-03-10", - "G3DMark/Price": "NA", - "Overall Rank": "2214", - "Last Price Change": "NA", - "Score": 40, - "Average G2D Mark": 107, - "Samples": 8 - } - ], - "gpu2823": [ - "Matrox G200eW WDDM 1.2", - { - "Other names": "Matrox G200eW (Nuvoton) WDDM 1.2", - "Videocard First Benchmarked": "2014-02-26", - "G3DMark/Price": "NA", - "Overall Rank": "2171", - "Last Price Change": "NA", - "Score": 50, - "Average G2D Mark": 397, - "Samples": 11 - } - ], - "gpu3847": [ - "Matrox G200eW3 WDDM 2.0", - { - "Other names": "Matrox G200eW3 (Nuvoton) WDDM 2.0", - "Videocard First Benchmarked": "2017-11-15", - "G3DMark/Price": "NA", - "Overall Rank": "2036", - "Last Price Change": "NA", - "Score": 94, - "Average G2D Mark": 316, - "Samples": 4 - } - ], - "gpu4882": [ - "Matrox LUMA A310", - { - "Other names": "Matrox(R) LUMA A310 (Intel(R))", - "Videocard First Benchmarked": "2023-07-27", - "G3DMark/Price": "NA", - "Overall Rank": "460", - "Last Price Change": "NA", - "Score": 3690, - "Average G2D Mark": 506, - "Samples": 2 - } - ], - "gpu4881": [ - "Matrox LUMA A310F", - { - "Other names": "Matrox(R) LUMA A310F (Intel(R))", - "Videocard First Benchmarked": "2023-07-27", - "G3DMark/Price": "NA", - "Overall Rank": "441", - "Last Price Change": "NA", - "Score": 3873, - "Average G2D Mark": 493, - "Samples": 4 - } - ], - "gpu1001": [ - "Matrox M9120 PCIe x16", - { - "Other names": "Matrox M9120 PCIe x16", - "Videocard First Benchmarked": "2010-08-13", - "G3DMark/Price": "NA", - "Overall Rank": "2300", - "Last Price Change": "NA", - "Score": 20, - "Average G2D Mark": 870, - "Samples": 1 - } - ], - "gpu1003": [ - "Matrox M9120 Plus LP PCIe x16", - { - "Other names": "Matrox M9120 Plus LP PCIe x16", - "Videocard First Benchmarked": "2009-10-05", - "G3DMark/Price": "NA", - "Overall Rank": "2278", - "Last Price Change": "NA", - "Score": 26, - "Average G2D Mark": 27, - "Samples": 2 - } - ], - "gpu1004": [ - "Matrox M9125 PCIe x16", - { - "Other names": "Matrox M9125 PCIe x16", - "Videocard First Benchmarked": "2009-11-09", - "G3DMark/Price": "NA", - "Overall Rank": "2279", - "Last Price Change": "NA", - "Score": 26, - "Average G2D Mark": 138, - "Samples": 1 - } - ], - "gpu1005": [ - "Matrox M9128 LP PCIe x16", - { - "Other names": "Matrox M9128 LP PCIe x16", - "Videocard First Benchmarked": "2011-01-03", - "G3DMark/Price": "NA", - "Overall Rank": "2256", - "Last Price Change": "NA", - "Score": 32, - "Average G2D Mark": 38, - "Samples": 3 - } - ], - "gpu1006": [ - "Matrox M9138 LP PCIe x16", - { - "Other names": "Matrox M9138 LP PCIe x16", - "Videocard First Benchmarked": "2009-11-02", - "G3DMark/Price": "NA", - "Overall Rank": "2200", - "Last Price Change": "NA", - "Score": 42, - "Average G2D Mark": 160, - "Samples": 5 - } - ], - "gpu1007": [ - "Matrox M9140 LP PCIe x16", - { - "Other names": "Matrox M9140 LP PCIe x16", - "Videocard First Benchmarked": "2009-05-17", - "G3DMark/Price": "NA", - "Overall Rank": "2291", - "Last Price Change": "NA", - "Score": 23, - "Average G2D Mark": 390, - "Samples": 6 - } - ], - "gpu1008": [ - "Matrox M9148 LP PCIe x16", - { - "Other names": "Matrox M9148 LP PCIe x16", - "Videocard First Benchmarked": "2010-02-17", - "G3DMark/Price": "NA", - "Overall Rank": "2211", - "Last Price Change": "NA", - "Score": 40, - "Average G2D Mark": 98, - "Samples": 5 - } - ], - "gpu1032": [ - "Matrox Millennium P650 PCIe 128", - { - "Other names": "Matrox Millennium P650 PCIe 128", - "Videocard First Benchmarked": "2009-11-23", - "G3DMark/Price": "NA", - "Overall Rank": "2377", - "Last Price Change": "NA", - "Score": 5, - "Average G2D Mark": 287, - "Samples": 3 - } - ], - "gpu1036": [ - "Matrox Millennium P690 PCIe x16", - { - "Other names": "Matrox Millennium P690 PCIe x16", - "Videocard First Benchmarked": "2009-04-26", - "G3DMark/Price": "NA", - "Overall Rank": "1658", - "Last Price Change": "NA", - "Score": 367, - "Average G2D Mark": 295, - "Samples": 4 - } - ], - "gpu1038": [ - "Matrox Millennium P690 Plus LP PCIe x16", - { - "Other names": "Matrox Millennium P690 Plus LP PCIe x16", - "Videocard First Benchmarked": "2009-09-27", - "G3DMark/Price": "NA", - "Overall Rank": "2351", - "Last Price Change": "NA", - "Score": 7, - "Average G2D Mark": 251, - "Samples": 2 - } - ], - "gpu1040": [ - "Matrox Parhelia 128MB", - { - "Other names": "Matrox Parhelia 128MB", - "Videocard First Benchmarked": "2009-04-03", - "G3DMark/Price": "0.01", - "Overall Rank": "2435", - "Last Price Change": "$393.99 USD (2022-04-10)", - "Score": 3, - "Average G2D Mark": 107, - "Samples": 1 - } - ], - "gpu1041": [ - "Matrox Parhelia 256MB", - { - "Other names": "Matrox Parhelia 256MB", - "Videocard First Benchmarked": "2009-11-18", - "G3DMark/Price": "NA", - "Overall Rank": "2330", - "Last Price Change": "NA", - "Score": 9, - "Average G2D Mark": 140, - "Samples": 1 - } - ], - "gpu1042": [ - "Matrox Parhelia APVe", - { - "Other names": "Matrox Parhelia APVe", - "Videocard First Benchmarked": "2009-11-17", - "G3DMark/Price": "NA", - "Overall Rank": "2370", - "Last Price Change": "NA", - "Score": 6, - "Average G2D Mark": 275, - "Samples": 3 - } - ], - "gpu1055": [ - "MEDION RADEON 9800 XXL", - { - "Other names": "MEDION RADEON 9800 XXL", - "Videocard First Benchmarked": "2010-11-14", - "G3DMark/Price": "NA", - "Overall Rank": "2100", - "Last Price Change": "NA", - "Score": 72, - "Average G2D Mark": 187, - "Samples": 1 - } - ], - "gpu1057": [ - "MEDION RADEON X740XL", - { - "Other names": "MEDION RADEON X740XL, MEDION RADEON X740XL Secondary", - "Videocard First Benchmarked": "2009-04-03", - "G3DMark/Price": "NA", - "Overall Rank": "2035", - "Last Price Change": "NA", - "Score": 95, - "Average G2D Mark": 228, - "Samples": 2 - } - ], - "gpu4118": [ - "MIRRORV3", - { - "Other names": "MIRRORV3", - "Videocard First Benchmarked": "2019-07-15", - "G3DMark/Price": "NA", - "Overall Rank": "1013", - "Last Price Change": "NA", - "Score": 1081, - "Average G2D Mark": 421, - "Samples": 1 - } - ], - "gpu1068": [ - "Mobile Intel - famiglia Express Chipset 45", - { - "Other names": "Mobile Intel(R) - famiglia Express Chipset 45", - "Videocard First Benchmarked": "2011-10-24", - "G3DMark/Price": "NA", - "Overall Rank": "2219", - "Last Price Change": "NA", - "Score": 39, - "Average G2D Mark": 264, - "Samples": 4 - } - ], - "gpu2477": [ - "Mobile Intel 4 Express-Chipsatzfamilie", - { - "Other names": "Mobile Intel(R) 4 Express-Chipsatzfamilie", - "Videocard First Benchmarked": "2013-04-05", - "G3DMark/Price": "NA", - "Overall Rank": "2194", - "Last Price Change": "NA", - "Score": 45, - "Average G2D Mark": 251, - "Samples": 9 - } - ], - "gpu1060": [ - "Mobile Intel 45 Express", - { - "Other names": "Familia Mobile Intel(R) 45 Express Chipset, Mobile Intel 45 Express, Mobile Intel(R) 45 Express Chipset Family", - "Videocard First Benchmarked": "2010-12-13", - "G3DMark/Price": "NA", - "Overall Rank": "2196", - "Last Price Change": "NA", - "Score": 44, - "Average G2D Mark": 24, - "Samples": 330 - } - ], - "gpu1072": [ - "Mobile Intel 45 Express-Chipsatzfamilie", - { - "Other names": "Mobile Intel(R) 45 Express-Chipsatzfamilie", - "Videocard First Benchmarked": "2011-10-04", - "G3DMark/Price": "NA", - "Overall Rank": "1962", - "Last Price Change": "NA", - "Score": 117, - "Average G2D Mark": 270, - "Samples": 9 - } - ], - "gpu2393": [ - "Mobile Intel 915GM/GMS/910GML Express", - { - "Other names": "Familia Mobile Intel(R) 915GM/GMS/910GML Express C, Mobile Intel 915GM/GMS 910GML Express Chipset F, Mobile Intel(R) 915GM,910ML,915MS Express Chipset, Mobile Intel(R) 915GM/GMS,910GML Express Chipset F, Mobile Intel(R) 915GM/GMS,910GML Express Chipset v, Mobile Intel(R) 915GM/GMS/910GML Express Chipset F, Mobile Intel(R) 915GM/GMS/910GML Express-Chipsatza, Mobile Intel(R) 915GM/GMS,910GML Express Chipset Family, Mobile Intel(R) 915GM/GMS/910GML Express Chipset Family, Mobile Intel(R) 915GM/GMS/910GML Express Yonga seti Ailesi", - "Videocard First Benchmarked": "2012-12-14", - "G3DMark/Price": "NA", - "Overall Rank": "2477", - "Last Price Change": "NA", - "Score": 2, - "Average G2D Mark": 36, - "Samples": 480 - } - ], - "gpu1062": [ - "Mobile Intel 945 Express", - { - "Other names": "Familia Mobile Intel(R) 945 Express Chipset, Mobile Intel 945 Express, Mobile Intel(R) 945 Express Chipset Family, Mobile Intel(R) 945 Express-Chipsatzfamilie, Mobile Intel(R) 945 famiglia Express Chipset, Mobile Intel(R) 945 Express Chipset Family(PHDGD Calistoga 1.0)", - "Videocard First Benchmarked": "2011-01-18", - "G3DMark/Price": "NA", - "Overall Rank": "2478", - "Last Price Change": "NA", - "Score": 2, - "Average G2D Mark": 8, - "Samples": 1647 - } - ], - "gpu1083": [ - "Mobile Intel 945GM Express", - { - "Other names": "Kontroler Mobile Intel(R) 945GM Express Chipset Co, Mobile Intel 945GM 3xpress Chipset Family, Mobile Intel(R) 945GM Express Chipset Family, Mobile Intel(R) 945GM Express-Chipsatz-Controller", - "Videocard First Benchmarked": "2011-09-04", - "G3DMark/Price": "NA", - "Overall Rank": "2365", - "Last Price Change": "NA", - "Score": 6, - "Average G2D Mark": 223, - "Samples": 400 - } - ], - "gpu1085": [ - "Mobile Intel 945GM/GU Express", - { - "Other names": "Mobile Intel(R) 945GM/GU Express Chipset Family", - "Videocard First Benchmarked": "2011-09-11", - "G3DMark/Price": "NA", - "Overall Rank": "2378", - "Last Price Change": "NA", - "Score": 5, - "Average G2D Mark": 223, - "Samples": 10 - } - ], - "gpu1066": [ - "Mobile Intel 965 Express", - { - "Other names": "Familia Mobile Intel(R) 965 Express Chipset, Mobile Intel 965 Express, Mobile Intel(R) - famiglia Express Chipset 965, Mobile Intel(R) 965 Express Chipset Family, Mobile Intel(R) 965 Express Chipset Family ( Sigma, Mobile Intel(R) 965 Express Chipset Family (Extrem, Mobile Intel(R) 965 Express Chipset Family ( Sigma 3.0 32bit ), (PE64) Mobile Intel(R) 965 Express Chipset Family", - "Videocard First Benchmarked": "2010-01-06", - "G3DMark/Price": "NA", - "Overall Rank": "2173", - "Last Price Change": "NA", - "Score": 49, - "Average G2D Mark": 13, - "Samples": 2653 - } - ], - "gpu3509": [ - "Mobile Intel 965 Express - BR-0907-0461 v1839", - { - "Other names": "Mobile Intel(R) 965 Express Chipset Family - BR-0907-0461 v1839", - "Videocard First Benchmarked": "2016-05-24", - "G3DMark/Price": "NA", - "Overall Rank": "2338", - "Last Price Change": "NA", - "Score": 8, - "Average G2D Mark": 124, - "Samples": 1 - } - ], - "gpu2916": [ - "Mobile Intel 965 Express-Chipsatzfamilie", - { - "Other names": "Mobile Intel(R) 965 Express-Chipsatzfamilie", - "Videocard First Benchmarked": "2014-07-26", - "G3DMark/Price": "NA", - "Overall Rank": "2288", - "Last Price Change": "NA", - "Score": 24, - "Average G2D Mark": 203, - "Samples": 4 - } - ], - "gpu1088": [ - "Mobile Intel HD", - { - "Other names": "Mobile Intel(R) HD Graphics", - "Videocard First Benchmarked": "2011-11-23", - "G3DMark/Price": "0.49", - "Overall Rank": "1779", - "Last Price Change": "$479.98 USD (2021-05-13)", - "Score": 236, - "Average G2D Mark": 124, - "Samples": 460 - } - ], - "gpu2460": [ - "Mobile Intel serie 4 Express", - { - "Other names": "Mobile Intel(R) serie 4 Express Chipset Family", - "Videocard First Benchmarked": "2013-03-27", - "G3DMark/Price": "NA", - "Overall Rank": "2193", - "Last Price Change": "NA", - "Score": 45, - "Average G2D Mark": 232, - "Samples": 4 - } - ], - "gpu3948": [ - "Mobile Intel965 Express", - { - "Other names": "Mobile Intel(R)965 Express Chipset Family(RGH Drivers 1.0 x86)", - "Videocard First Benchmarked": "2018-06-13", - "G3DMark/Price": "NA", - "Overall Rank": "2310", - "Last Price Change": "NA", - "Score": 18, - "Average G2D Mark": 264, - "Samples": 1 - } - ], - "gpu446": [ - "MOBILITY FIREGL 7800", - { - "Bus Interface": "AGP", - "Max Memory Size": "64 MB", - "Core Clock(s)": "280 MHz", - "Memory Clock(s)": "200 MHz", - "DirectX": "7", - "OpenGL": "1.3", - "Videocard Category": "Workstation", - "Other names": "ATI MOBILITY FIRE GL 7800", - "Videocard First Benchmarked": "2009-04-18", - "G3DMark/Price": "NA", - "Overall Rank": "2392", - "Last Price Change": "NA", - "Score": 5, - "Average G2D Mark": 86, - "Samples": 1 - } - ], - "gpu448": [ - "MOBILITY FIREGL T2", - { - "Bus Interface": "AGP 4X", - "Max Memory Size": "128 MB", - "Core Clock(s)": "320 MHz", - "Memory Clock(s)": "200 MHz", - "DirectX": "9", - "OpenGL": "2", - "Videocard Category": "Workstation", - "Other names": "ATI MOBILITY FIRE GL T2", - "Videocard First Benchmarked": "2009-10-04", - "G3DMark/Price": "NA", - "Overall Rank": "2208", - "Last Price Change": "NA", - "Score": 41, - "Average G2D Mark": 171, - "Samples": 10 - } - ], - "gpu449": [ - "MOBILITY FIREGL T2/T2e", - { - "Bus Interface": "AGP 4X", - "Max Memory Size": "128 MB", - "Core Clock(s)": "320 MHz", - "Memory Clock(s)": "200 MHz", - "DirectX": "9", - "OpenGL": "2", - "Videocard Category": "Workstation", - "Other names": "ATI MOBILITY FIRE GL T2/T2e", - "Videocard First Benchmarked": "2012-02-12", - "G3DMark/Price": "NA", - "Overall Rank": "2245", - "Last Price Change": "NA", - "Score": 34, - "Average G2D Mark": 171, - "Samples": 3 - } - ], - "gpu451": [ - "MOBILITY FireGL V3200", - { - "Bus Interface": "PCIe x16", - "Max Memory Size": "128 MB", - "Core Clock(s)": "400 MHz", - "Memory Clock(s)": "250 MHz", - "DirectX": "9.0b", - "OpenGL": "2", - "Videocard Category": "Workstation", - "Other names": "ATI MOBILITY FireGL V3200, MOBILITY FireGL V3200", - "Videocard First Benchmarked": "2009-04-18", - "G3DMark/Price": "NA", - "Overall Rank": "2137", - "Last Price Change": "NA", - "Score": 62, - "Average G2D Mark": 238, - "Samples": 11 - } - ], - "gpu452": [ - "MOBILITY FireGL V5000", - { - "Bus Interface": "PCIe x16", - "Max Memory Size": "128 MB", - "Core Clock(s)": "350 MHz", - "Memory Clock(s)": "425 MHz", - "DirectX": "9.0b", - "OpenGL": "2", - "Videocard Category": "Workstation", - "Other names": "ATI MOBILITY FireGL V5000", - "Videocard First Benchmarked": "2009-10-28", - "G3DMark/Price": "NA", - "Overall Rank": "2074", - "Last Price Change": "NA", - "Score": 82, - "Average G2D Mark": 223, - "Samples": 2 - } - ], - "gpu99": [ - "MOBILITY FireGL V5200", - { - "Bus Interface": "PCIe x16", - "Max Memory Size": "256 MB", - "Core Clock(s)": "425 MHz", - "Memory Clock(s)": "475 MHz", - "DirectX": "9.0c", - "OpenGL": "2", - "Videocard Category": "Workstation", - "Other names": "ATI MOBILITY FireGL V5200", - "Videocard First Benchmarked": "2012-08-21", - "G3DMark/Price": "NA", - "Overall Rank": "2190", - "Last Price Change": "NA", - "Score": 45, - "Average G2D Mark": 248, - "Samples": 35 - } - ], - "gpu453": [ - "MOBILITY FireGL V5250", - { - "Bus Interface": "PCIe x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "450 MHz", - "Memory Clock(s)": "350 MHz", - "DirectX": "9.0c", - "OpenGL": "2", - "Videocard Category": "Workstation", - "Other names": "ATI MOBILITY FireGL V5250", - "Videocard First Benchmarked": "2009-04-06", - "G3DMark/Price": "NA", - "Overall Rank": "2270", - "Last Price Change": "NA", - "Score": 27, - "Average G2D Mark": 252, - "Samples": 28 - } - ], - "gpu455": [ - "Mobility FireGL V5725", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "256 MB", - "Core Clock(s)": "680 MHz", - "Memory Clock(s)": "800 MHz", - "DirectX": "10.1 SM 4.1", - "OpenGL": "2.1", - "Videocard Category": "Workstation", - "Other names": "ATI Mobility FireGL V5725", - "Videocard First Benchmarked": "2009-04-08", - "G3DMark/Price": "NA", - "Overall Rank": "1794", - "Last Price Change": "NA", - "Score": 219, - "Average G2D Mark": 405, - "Samples": 9 - } - ], - "gpu459": [ - "MOBILITY IGP 9000/9100", - { - "Other names": "ATI MOBILITY IGP 9000/9100", - "Videocard First Benchmarked": "2009-04-28", - "G3DMark/Price": "NA", - "Overall Rank": "2329", - "Last Price Change": "NA", - "Score": 10, - "Average G2D Mark": 125, - "Samples": 1 - } - ], - "gpu462": [ - "Mobility Radeon 4100", - { - "Other names": "ATI Mobility Radeon 4100, ATI Mobility Radeon 4100 (Engineering Sample - WDDM v1.1)", - "Videocard First Benchmarked": "2010-05-29", - "G3DMark/Price": "NA", - "Overall Rank": "2079", - "Last Price Change": "NA", - "Score": 81, - "Average G2D Mark": 265, - "Samples": 16 - } - ], - "gpu463": [ - "MOBILITY RADEON 7000 IGP", - { - "Other names": "ATI MOBILITY RADEON 7000 IGP", - "Videocard First Benchmarked": "2009-04-12", - "G3DMark/Price": "NA", - "Overall Rank": "2357", - "Last Price Change": "NA", - "Score": 6, - "Average G2D Mark": 151, - "Samples": 4 - } - ], - "gpu464": [ - "MOBILITY RADEON 7500", - { - "Bus Interface": "AGP 4x", - "Max Memory Size": "64 MB", - "Core Clock(s)": "280 MHz", - "Memory Clock(s)": "200 MHz", - "DirectX": "7", - "OpenGL": "1.3", - "Videocard Category": "Mobile", - "Other names": "ATI MOBILITY RADEON 7500, ATI MOBILITY RADEON 7500 (DNA-ATi 4.5.6.1-32x), ATI MOBILITY RADEON 7500 (Omega 2.6.71), ATI MOBILITY RADEON 7500 (Omega 2.6.87), ATI MOBILITY RADEON 7500 (Omega 3.8.231), ATI MOBILITY RADEON 7500 (Omega 3.8.252), MOBILITY RADEON 7500", - "Videocard First Benchmarked": "2009-11-02", - "G3DMark/Price": "NA", - "Overall Rank": "2429", - "Last Price Change": "NA", - "Score": 4, - "Average G2D Mark": 103, - "Samples": 6 - } - ], - "gpu465": [ - "MOBILITY RADEON 9000", - { - "Bus Interface": "AGP 4x", - "Max Memory Size": "64 MB", - "Core Clock(s)": "250 MHz", - "Memory Clock(s)": "200 MHz", - "DirectX": "8.1", - "OpenGL": "1.4", - "Videocard Category": "Mobile", - "Other names": "ATI MOBILITY RADEON 9000, ATI MOBILITY RADEON 9000 (Dell), ATI MOBILITY RADEON 9000 (Omega 2.6.42), MOBILITY RADEON 9000", - "Videocard First Benchmarked": "2009-05-19", - "G3DMark/Price": "NA", - "Overall Rank": "2439", - "Last Price Change": "NA", - "Score": 3, - "Average G2D Mark": 111, - "Samples": 12 - } - ], - "gpu466": [ - "MOBILITY RADEON 9000 IGP", - { - "Other names": "ATI MOBILITY RADEON 9000 IGP, ATI MOBILITY RADEON 9000 IGP (DNA 3.6.5.1-Normal), MOBILITY RADEON 9000 IGP, ATI MOBILITY RADEON 9000 IGP (DNA 3.6.5.1a-BenchMark)", - "Videocard First Benchmarked": "2009-12-12", - "G3DMark/Price": "NA", - "Overall Rank": "2341", - "Last Price Change": "NA", - "Score": 8, - "Average G2D Mark": 143, - "Samples": 18 - } - ], - "gpu467": [ - "MOBILITY RADEON 9000/9100 IGP", - { - "Other names": "ATI MOBILITY RADEON 9000/9100 IGP, MOBILITY RADEON 9000/9100 IGP", - "Videocard First Benchmarked": "2009-05-03", - "G3DMark/Price": "NA", - "Overall Rank": "2369", - "Last Price Change": "NA", - "Score": 6, - "Average G2D Mark": 118, - "Samples": 6 - } - ], - "gpu468": [ - "MOBILITY RADEON 9100 IGP", - { - "Other names": "ATI MOBILITY RADEON 9100 IGP, MOBILITY RADEON 9100 IGP", - "Videocard First Benchmarked": "2009-10-18", - "G3DMark/Price": "NA", - "Overall Rank": "2450", - "Last Price Change": "NA", - "Score": 3, - "Average G2D Mark": 128, - "Samples": 2 - } - ], - "gpu469": [ - "MOBILITY RADEON 9200", - { - "Bus Interface": "AGP 8x", - "Max Memory Size": "64 MB", - "Core Clock(s)": "250,250 MHz", - "Memory Clock(s)": "200,220 MHz", - "DirectX": "8.1", - "OpenGL": "1.4", - "Videocard Category": "Mobile", - "Other names": "ATI MOBILITY RADEON 9200, ATI MOBILITY/RADEON 9200, ATI MOBILITY/RADEON 9200 (Omega 3.8.252), ATI MOBILITY/RADEON 9200 (Omega 3.8.421), ATI RADEON 9200, MOBILITY RADEON 9200, MOBILITY/RADEON 9200/9250", - "Videocard First Benchmarked": "2011-03-20", - "G3DMark/Price": "NA", - "Overall Rank": "2448", - "Last Price Change": "NA", - "Score": 3, - "Average G2D Mark": 145, - "Samples": 16 - } - ], - "gpu2325": [ - "MOBILITY RADEON 9550", - { - "Bus Interface": "AGP 8x", - "Max Memory Size": "64 MB", - "Core Clock(s)": "210 MHz", - "Memory Clock(s)": "183 MHz", - "DirectX": "9", - "OpenGL": "2", - "Videocard Category": "Mobile", - "Other names": "ATI MOBILITY RADEON 9550", - "Videocard First Benchmarked": "2012-12-22", - "G3DMark/Price": "NA", - "Overall Rank": "2261", - "Last Price Change": "NA", - "Score": 30, - "Average G2D Mark": 166, - "Samples": 1 - } - ], - "gpu471": [ - "MOBILITY RADEON 9600", - { - "Bus Interface": "AGP 8x", - "Max Memory Size": "128 MB", - "Core Clock(s)": "300 MHz", - "Memory Clock(s)": "300 MHz", - "DirectX": "9", - "OpenGL": "2", - "Videocard Category": "Mobile", - "Other names": "ATI MOBILITY RADEON 9600, MOBILITY RADEON 9600", - "Videocard First Benchmarked": "2009-06-02", - "G3DMark/Price": "NA", - "Overall Rank": "2232", - "Last Price Change": "NA", - "Score": 36, - "Average G2D Mark": 172, - "Samples": 1 - } - ], - "gpu472": [ - "MOBILITY RADEON 9600 PRO TURBO", - { - "Other names": "ATI MOBILITY RADEON 9600 PRO TURBO", - "Videocard First Benchmarked": "2009-05-21", - "G3DMark/Price": "NA", - "Overall Rank": "2284", - "Last Price Change": "NA", - "Score": 25, - "Average G2D Mark": 137, - "Samples": 6 - } - ], - "gpu473": [ - "MOBILITY RADEON 9600/9700", - { - "Bus Interface": "AGP 8x", - "Max Memory Size": "128 MB", - "Core Clock(s)": "300 MHz", - "Memory Clock(s)": "300 MHz", - "DirectX": "9", - "OpenGL": "2", - "Videocard Category": "Mobile", - "Other names": "ATI MOBILITY RADEON 9600/9700, MOBILITY RADEON 9600/9700", - "Videocard First Benchmarked": "2010-11-28", - "G3DMark/Price": "NA", - "Overall Rank": "2217", - "Last Price Change": "NA", - "Score": 39, - "Average G2D Mark": 165, - "Samples": 11 - } - ], - "gpu474": [ - "MOBILITY RADEON 9700", - { - "Bus Interface": "AGP 8x", - "Max Memory Size": "128 MB", - "Core Clock(s)": "450 MHz", - "Memory Clock(s)": "275 MHz", - "DirectX": "9", - "OpenGL": "2", - "Videocard Category": "Mobile", - "Other names": "ATI MOBILITY RADEON 9700, ATI MOBILITY RADEON9700, MOBILITY RADEON 9700", - "Videocard First Benchmarked": "2009-04-04", - "G3DMark/Price": "NA", - "Overall Rank": "2269", - "Last Price Change": "NA", - "Score": 27, - "Average G2D Mark": 158, - "Samples": 29 - } - ], - "gpu476": [ - "MOBILITY RADEON 9800", - { - "Bus Interface": "AGP 8x", - "Max Memory Size": "256 MB", - "Core Clock(s)": "350 MHz", - "Memory Clock(s)": "300 MHz", - "DirectX": "9", - "OpenGL": "2", - "Videocard Category": "Mobile", - "Other names": "ATI MOBILITY RADEON 9800, MOBILITY RADEON 9800", - "Videocard First Benchmarked": "2009-07-23", - "G3DMark/Price": "NA", - "Overall Rank": "2186", - "Last Price Change": "NA", - "Score": 46, - "Average G2D Mark": 110, - "Samples": 2 - } - ], - "gpu75": [ - "Mobility Radeon HD 2300", - { - "Bus Interface": "PCIe x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "480 MHz", - "Memory Clock(s)": "400 MHz", - "DirectX": "9.0c", - "OpenGL": "2", - "Videocard Category": "Mobile", - "Other names": "ATI Mobility Radeon HD 2300, ATI Mobility Radeon HD 2300 (Omega 3.8.442), AMD Mobility Radeon HD 2300", - "Videocard First Benchmarked": "2012-10-19", - "G3DMark/Price": "NA", - "Overall Rank": "2169", - "Last Price Change": "NA", - "Score": 51, - "Average G2D Mark": 211, - "Samples": 31 - } - ], - "gpu147": [ - "Mobility Radeon HD 2400", - { - "Bus Interface": "PCIe x16", - "Max Memory Size": "256 MB", - "Core Clock(s)": "450 MHz", - "Memory Clock(s)": "400 MHz", - "DirectX": "10", - "OpenGL": "2", - "Videocard Category": "Mobile", - "Other names": "(DNA-ATi 5.1.7.5x32) ATI Mobility Radeon HD 2400, ATI Mobility Radeon HD 2400, ATI Mobility Radeon HD 2400 (Omega 3.8.442)", - "Videocard First Benchmarked": "2010-01-10", - "G3DMark/Price": "NA", - "Overall Rank": "2052", - "Last Price Change": "NA", - "Score": 90, - "Average G2D Mark": 212, - "Samples": 86 - } - ], - "gpu478": [ - "Mobility Radeon HD 2400 XT", - { - "Bus Interface": "PCIe x16", - "Max Memory Size": "256 MB", - "Core Clock(s)": "600,600 MHz", - "Memory Clock(s)": "400,700 MHz", - "DirectX": "10", - "OpenGL": "2", - "Videocard Category": "Mobile", - "Other names": "ATI Mobility Radeon HD 2400 XT, ATI Mobility Radeon HD 2400 XT (Omega 3.8.442)", - "Videocard First Benchmarked": "2011-12-31", - "G3DMark/Price": "NA", - "Overall Rank": "2017", - "Last Price Change": "NA", - "Score": 102, - "Average G2D Mark": 246, - "Samples": 60 - } - ], - "gpu65": [ - "Mobility Radeon HD 2600", - { - "Bus Interface": "PCIe x16", - "Max Memory Size": "256 MB", - "Core Clock(s)": "500,500 MHz", - "Memory Clock(s)": "400,600 MHz", - "DirectX": "10", - "OpenGL": "2", - "Videocard Category": "Mobile", - "Other names": "ATI Mobility Radeon HD 2600, ATI Mobility Radeon HD 2600 (Engineering Sample \u0013, ATI Mobility Radeon HD 2600 (Engineering Sample), ATI MOBILITY RADEON HD 2600 (Omega 3.8.421), ATI Mobility Radeon HD 2600 (Omega 3.8.442), ATI Mobility Radeon HD 2600 (Microsoft Corporation WDDM 1.1) , AMD Mobility Radeon HD 2600", - "Videocard First Benchmarked": "2012-08-18", - "G3DMark/Price": "NA", - "Overall Rank": "1858", - "Last Price Change": "NA", - "Score": 168, - "Average G2D Mark": 267, - "Samples": 278 - } - ], - "gpu479": [ - "Mobility Radeon HD 2600 XT", - { - "Bus Interface": "PCIe x16", - "Max Memory Size": "256 MB", - "Core Clock(s)": "680 MHz", - "Memory Clock(s)": "750 MHz", - "DirectX": "10", - "OpenGL": "2", - "Videocard Category": "Mobile", - "Other names": "ATI Mobility Radeon HD 2600 XT, ATI Mobility Radeon HD 2600 XT (Engineering Sample, ATI MOBILITY RADEON HD 2600 XT/HD 2700", - "Videocard First Benchmarked": "2009-10-19", - "G3DMark/Price": "NA", - "Overall Rank": "1830", - "Last Price Change": "NA", - "Score": 192, - "Average G2D Mark": 329, - "Samples": 54 - } - ], - "gpu2893": [ - "Mobility Radeon HD 3400 Serisi", - { - "Other names": "ATI Mobility Radeon HD 3400 Serisi", - "Videocard First Benchmarked": "2014-06-25", - "G3DMark/Price": "NA", - "Overall Rank": "1986", - "Last Price Change": "NA", - "Score": 111, - "Average G2D Mark": 239, - "Samples": 1 - } - ], - "gpu482": [ - "Mobility Radeon HD 3410", - { - "Bus Interface": "PCIe x16 1.1", - "Max Memory Size": "512 MB", - "Core Clock(s)": "400 MHz", - "Memory Clock(s)": "400 MHz", - "DirectX": "10.1", - "OpenGL": "2", - "Videocard Category": "Mobile", - "Other names": "ATI Mobility Radeon HD 3410", - "Videocard First Benchmarked": "2010-01-12", - "G3DMark/Price": "NA", - "Overall Rank": "2133", - "Last Price Change": "NA", - "Score": 63, - "Average G2D Mark": 130, - "Samples": 6 - } - ], - "gpu483": [ - "Mobility Radeon HD 3430", - { - "Bus Interface": "PCIe x16 2.0", - "Max Memory Size": "256 MB", - "Core Clock(s)": "450 MHz", - "Memory Clock(s)": "400 MHz", - "DirectX": "10.1", - "OpenGL": "2", - "Videocard Category": "Mobile", - "Other names": "ATI Mobility Radeon HD 3430", - "Videocard First Benchmarked": "2009-05-09", - "G3DMark/Price": "NA", - "Overall Rank": "2027", - "Last Price Change": "NA", - "Score": 98, - "Average G2D Mark": 260, - "Samples": 120 - } - ], - "gpu484": [ - "Mobility Radeon HD 3450", - { - "Bus Interface": "PCIe x16 2.0", - "Max Memory Size": "256 MB", - "Core Clock(s)": "500 MHz", - "Memory Clock(s)": "400,700 MHz", - "DirectX": "10.1", - "OpenGL": "2", - "Videocard Category": "Mobile", - "Other names": "ATI Mobility Radeon HD 3450", - "Videocard First Benchmarked": "2009-05-17", - "G3DMark/Price": "NA", - "Overall Rank": "2049", - "Last Price Change": "NA", - "Score": 91, - "Average G2D Mark": 247, - "Samples": 66 - } - ], - "gpu485": [ - "Mobility Radeon HD 3470", - { - "Bus Interface": "PCIe x16 2.0", - "Max Memory Size": "256 MB", - "Core Clock(s)": "680 MHz", - "Memory Clock(s)": "400,800 MHz", - "DirectX": "10.1", - "OpenGL": "2", - "Videocard Category": "Mobile", - "Other names": "ATI Mobility Radeon HD 3470", - "Videocard First Benchmarked": "2009-04-11", - "G3DMark/Price": "NA", - "Overall Rank": "2039", - "Last Price Change": "NA", - "Score": 93, - "Average G2D Mark": 250, - "Samples": 112 - } - ], - "gpu486": [ - "Mobility Radeon HD 3470 Hybrid X2", - { - "Other names": "ATI Mobility Radeon HD 3470 Hybrid X2", - "Videocard First Benchmarked": "2009-06-06", - "G3DMark/Price": "NA", - "Overall Rank": "2037", - "Last Price Change": "NA", - "Score": 94, - "Average G2D Mark": 206, - "Samples": 8 - } - ], - "gpu487": [ - "Mobility Radeon HD 3650", - { - "Bus Interface": "PCIe x16 2.0", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "500 MHz", - "Memory Clock(s)": "500,700 MHz", - "DirectX": "10.1", - "OpenGL": "3.3", - "Videocard Category": "Mobile", - "Other names": "ATI Mobility Radeon HD 3650", - "Videocard First Benchmarked": "2009-04-08", - "G3DMark/Price": "1.77", - "Overall Rank": "1924", - "Last Price Change": "$73.53 USD (2021-05-13)", - "Score": 130, - "Average G2D Mark": 36, - "Samples": 923 - } - ], - "gpu488": [ - "Mobility Radeon HD 3670", - { - "Bus Interface": "PCIe x16 2.0", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "680 MHz", - "Memory Clock(s)": "800 MHz", - "DirectX": "10.1", - "OpenGL": "2", - "Videocard Category": "Mobile", - "Other names": "ATI Mobility Radeon HD 3670", - "Videocard First Benchmarked": "2009-08-30", - "G3DMark/Price": "NA", - "Overall Rank": "1782", - "Last Price Change": "NA", - "Score": 232, - "Average G2D Mark": 331, - "Samples": 114 - } - ], - "gpu489": [ - "Mobility Radeon HD 3850", - { - "Bus Interface": "PCIe x16 2.0", - "Max Memory Size": "512 MB", - "Core Clock(s)": "580 MHz", - "Memory Clock(s)": "750 MHz", - "DirectX": "10.1", - "OpenGL": "2", - "Videocard Category": "Mobile", - "Other names": "ATI Mobility Radeon HD 3850", - "Videocard First Benchmarked": "2009-11-21", - "G3DMark/Price": "NA", - "Overall Rank": "1660", - "Last Price Change": "NA", - "Score": 366, - "Average G2D Mark": 248, - "Samples": 2 - } - ], - "gpu490": [ - "Mobility Radeon HD 3870", - { - "Bus Interface": "PCIe x16 2.0", - "Max Memory Size": "512 MB", - "Core Clock(s)": "660 MHz", - "Memory Clock(s)": "850 MHz", - "DirectX": "10.1", - "OpenGL": "2", - "Videocard Category": "Mobile", - "Other names": "ATI Mobility Radeon HD 3870", - "Videocard First Benchmarked": "2009-12-03", - "G3DMark/Price": "NA", - "Overall Rank": "1472", - "Last Price Change": "NA", - "Score": 548, - "Average G2D Mark": 288, - "Samples": 3 - } - ], - "gpu491": [ - "Mobility Radeon HD 3870 X2", - { - "Bus Interface": "PCIe x16 2.0", - "Max Memory Size": "2 MB", - "Core Clock(s)": "660 MHz", - "Memory Clock(s)": "850 MHz", - "DirectX": "10.1", - "OpenGL": "2", - "Videocard Category": "Mobile", - "Other names": "ATI Mobility Radeon HD 3870 X2", - "Videocard First Benchmarked": "2009-09-13", - "G3DMark/Price": "NA", - "Overall Rank": "1550", - "Last Price Change": "NA", - "Score": 478, - "Average G2D Mark": 187, - "Samples": 57 - } - ], - "gpu493": [ - "Mobility Radeon HD 4200", - { - "Bus Interface": "Internal PCIe x16 1.1", - "Max Memory Size": "512 MB", - "Core Clock(s)": "500 MHz", - "Memory Clock(s)": "800 MHz", - "DirectX": "10.1", - "OpenGL": "2", - "Videocard Category": "Mobile", - "Other names": "ATI Mobility Radeon HD 4200", - "Videocard First Benchmarked": "2011-04-12", - "G3DMark/Price": "NA", - "Overall Rank": "2050", - "Last Price Change": "NA", - "Score": 91, - "Average G2D Mark": 260, - "Samples": 253 - } - ], - "gpu494": [ - "Mobility Radeon HD 4225", - { - "Bus Interface": "Internal PCIe x16 1.1", - "Max Memory Size": "512 MB", - "Core Clock(s)": "380 MHz", - "Memory Clock(s)": "800 MHz", - "DirectX": "10.1", - "OpenGL": "2", - "Videocard Category": "Mobile", - "Other names": "ATI Mobility Radeon HD 4225", - "Videocard First Benchmarked": "2010-06-22", - "G3DMark/Price": "NA", - "Overall Rank": "2128", - "Last Price Change": "NA", - "Score": 66, - "Average G2D Mark": 174, - "Samples": 18 - } - ], - "gpu495": [ - "Mobility Radeon HD 4250", - { - "Bus Interface": "Internal PCIe x16 1.1", - "Max Memory Size": "512 MB", - "Core Clock(s)": "500 MHz", - "Memory Clock(s)": "800 MHz", - "DirectX": "10.1", - "OpenGL": "2", - "Videocard Category": "Mobile", - "Other names": "ATI Mobility Radeon HD 4250, ATI Mobility Radeon HD 4250 Graphics", - "Videocard First Benchmarked": "2010-04-20", - "G3DMark/Price": "NA", - "Overall Rank": "2025", - "Last Price Change": "NA", - "Score": 98, - "Average G2D Mark": 280, - "Samples": 400 - } - ], - "gpu496": [ - "Mobility Radeon HD 4270", - { - "Bus Interface": "Internal PCIe x16 1.1", - "Max Memory Size": "512 MB", - "Core Clock(s)": "590 MHz", - "Memory Clock(s)": "800 MHz", - "DirectX": "10.1", - "OpenGL": "2", - "Videocard Category": "Mobile", - "Other names": "ATI Mobility Radeon HD 4270", - "Videocard First Benchmarked": "2010-09-05", - "G3DMark/Price": "NA", - "Overall Rank": "2041", - "Last Price Change": "NA", - "Score": 93, - "Average G2D Mark": 282, - "Samples": 9 - } - ], - "gpu2753": [ - "Mobility Radeon HD 4300 Serisi", - { - "Other names": "ATI Mobility Radeon HD 4300 Serisi", - "Videocard First Benchmarked": "2013-12-10", - "G3DMark/Price": "NA", - "Overall Rank": "2096", - "Last Price Change": "NA", - "Score": 73, - "Average G2D Mark": 216, - "Samples": 1 - } - ], - "gpu497": [ - "Mobility Radeon HD 4330", - { - "Bus Interface": "PCIe x16 2.0", - "Max Memory Size": "512 MB", - "Core Clock(s)": "450 MHz", - "Memory Clock(s)": "600 MHz", - "DirectX": "10.1", - "OpenGL": "3.3", - "Videocard Category": "Mobile", - "Other names": "ATI Mobility Radeon HD 4330", - "Videocard First Benchmarked": "2009-08-17", - "G3DMark/Price": "NA", - "Overall Rank": "1914", - "Last Price Change": "NA", - "Score": 135, - "Average G2D Mark": 377, - "Samples": 8 - } - ], - "gpu498": [ - "Mobility Radeon HD 4350", - { - "Other names": "ATI Mobility Radeon HD 4350, ATI Mobility Radeon HD 4350 Series", - "Videocard First Benchmarked": "2011-03-31", - "G3DMark/Price": "NA", - "Overall Rank": "1883", - "Last Price Change": "NA", - "Score": 148, - "Average G2D Mark": 369, - "Samples": 10 - } - ], - "gpu502": [ - "Mobility Radeon HD 4550", - { - "Bus Interface": "PCIe x16 2.0", - "Max Memory Size": "512 MB", - "Core Clock(s)": "550 MHz", - "Memory Clock(s)": "700 MHz", - "DirectX": "10.1", - "OpenGL": "3.3", - "Videocard Category": "Mobile", - "Other names": "ATI Mobility Radeon HD 4550", - "Videocard First Benchmarked": "2010-03-07", - "G3DMark/Price": "NA", - "Overall Rank": "1831", - "Last Price Change": "NA", - "Score": 191, - "Average G2D Mark": 290, - "Samples": 20 - } - ], - "gpu503": [ - "Mobility Radeon HD 4570", - { - "Bus Interface": "PCIe x16 2.0", - "Max Memory Size": "512 MB", - "Core Clock(s)": "680 MHz", - "Memory Clock(s)": "800 MHz", - "DirectX": "10.1", - "OpenGL": "3.3", - "Videocard Category": "Mobile", - "Other names": "ATI Mobility Radeon HD 4570", - "Videocard First Benchmarked": "2011-12-17", - "G3DMark/Price": "1.83", - "Overall Rank": "1902", - "Last Price Change": "$75.9 USD (2021-05-13)", - "Score": 139, - "Average G2D Mark": 21, - "Samples": 1810 - } - ], - "gpu504": [ - "Mobility Radeon HD 4650", - { - "Bus Interface": "PCIe x16 2.0", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "500,550 MHz", - "Memory Clock(s)": "600,800 MHz", - "DirectX": "10.1", - "OpenGL": "3.3", - "Videocard Category": "Mobile", - "Other names": "ATI Mobility Radeon HD 4650, ATI Mobility Radeon HD 4650 (Engineering Sample)", - "Videocard First Benchmarked": "2009-08-03", - "G3DMark/Price": "NA", - "Overall Rank": "1630", - "Last Price Change": "NA", - "Score": 401, - "Average G2D Mark": 320, - "Samples": 961 - } - ], - "gpu505": [ - "Mobility Radeon HD 4670", - { - "Bus Interface": "PCIe x16 2.0", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "675 MHz", - "Memory Clock(s)": "800 MHz", - "DirectX": "10.1", - "OpenGL": "3.3", - "Videocard Category": "Mobile", - "Other names": "ATI Mobility Radeon HD 4670", - "Videocard First Benchmarked": "2009-07-22", - "G3DMark/Price": "NA", - "Overall Rank": "1575", - "Last Price Change": "NA", - "Score": 463, - "Average G2D Mark": 375, - "Samples": 234 - } - ], - "gpu506": [ - "Mobility Radeon HD 4830", - { - "Bus Interface": "PCIe x16 2.0", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "400,600 MHz", - "Memory Clock(s)": "800,900 MHz", - "DirectX": "10.1", - "OpenGL": "3.3", - "Videocard Category": "Mobile", - "Other names": "ATI Mobility Radeon HD 4830", - "Videocard First Benchmarked": "2012-01-10", - "G3DMark/Price": "NA", - "Overall Rank": "1517", - "Last Price Change": "NA", - "Score": 512, - "Average G2D Mark": 285, - "Samples": 3 - } - ], - "gpu507": [ - "Mobility Radeon HD 4850", - { - "Bus Interface": "PCIe x16 2.0", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "500 MHz", - "Memory Clock(s)": "850,700 MHz", - "DirectX": "10.1", - "OpenGL": "3.3", - "Videocard Category": "Mobile", - "Other names": "ATI Mobility Radeon HD 4850, AMD Mobility Radeon HD 4850", - "Videocard First Benchmarked": "2009-07-27", - "G3DMark/Price": "NA", - "Overall Rank": "1138", - "Last Price Change": "NA", - "Score": 866, - "Average G2D Mark": 472, - "Samples": 83 - } - ], - "gpu148": [ - "Mobility Radeon HD 4870", - { - "Bus Interface": "PCIe x16 2.0", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "550 MHz", - "Memory Clock(s)": "888,700 MHz", - "DirectX": "10.1", - "OpenGL": "3.3", - "Videocard Category": "Mobile", - "Other names": "(Vista) ATI Mobility Radeon HD 4870, ATI Mobility Radeon HD 4870", - "Videocard First Benchmarked": "2010-09-11", - "G3DMark/Price": "NA", - "Overall Rank": "1275", - "Last Price Change": "NA", - "Score": 720, - "Average G2D Mark": 416, - "Samples": 29 - } - ], - "gpu2153": [ - "Mobility Radeon HD 5000", - { - "Other names": "ATI Mobility Radeon HD 5000, AMD Mobility Radeon HD 5000", - "Videocard First Benchmarked": "2012-09-23", - "G3DMark/Price": "NA", - "Overall Rank": "1217", - "Last Price Change": "NA", - "Score": 773, - "Average G2D Mark": 429, - "Samples": 17 - } - ], - "gpu2516": [ - "Mobility Radeon HD 5000 Serisi", - { - "Other names": "ATI Mobility Radeon HD 5000 Serisi", - "Videocard First Benchmarked": "2013-05-18", - "G3DMark/Price": "NA", - "Overall Rank": "1549", - "Last Price Change": "NA", - "Score": 479, - "Average G2D Mark": 305, - "Samples": 2 - } - ], - "gpu511": [ - "Mobility Radeon HD 5165", - { - "Bus Interface": "PCIe x16 2.0", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "600 MHz", - "Memory Clock(s)": "900 MHz", - "DirectX": "10.1", - "OpenGL": "3.3", - "Max TDP": "35 W", - "Videocard Category": "Mobile", - "Other names": "ATI Mobility Radeon HD 5165", - "Videocard First Benchmarked": "2010-02-04", - "G3DMark/Price": "NA", - "Overall Rank": "1731", - "Last Price Change": "NA", - "Score": 284, - "Average G2D Mark": 362, - "Samples": 14 - } - ], - "gpu512": [ - "Mobility Radeon HD 530v", - { - "Bus Interface": "PCIe x16 2.0", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "500 MHz", - "Memory Clock(s)": "600 MHz", - "DirectX": "10.1", - "OpenGL": "3.3", - "Videocard Category": "Mobile", - "Other names": "ATI Mobility Radeon HD 530v", - "Videocard First Benchmarked": "2010-08-20", - "G3DMark/Price": "NA", - "Overall Rank": "1849", - "Last Price Change": "NA", - "Score": 175, - "Average G2D Mark": 353, - "Samples": 28 - } - ], - "gpu514": [ - "Mobility Radeon HD 540v", - { - "Other names": "ATI Mobility Radeon HD 540v", - "Videocard First Benchmarked": "2010-06-26", - "G3DMark/Price": "NA", - "Overall Rank": "1834", - "Last Price Change": "NA", - "Score": 188, - "Average G2D Mark": 382, - "Samples": 24 - } - ], - "gpu515": [ - "Mobility Radeon HD 5430", - { - "Bus Interface": "PCIe x16 2.1", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "500,550 MHz", - "Memory Clock(s)": "800,800 MHz", - "DirectX": "11", - "OpenGL": "4.4", - "Max TDP": "7 W", - "Videocard Category": "Mobile", - "Other names": "ATI Mobility Radeon HD 5430", - "Videocard First Benchmarked": "2010-04-13", - "G3DMark/Price": "NA", - "Overall Rank": "1839", - "Last Price Change": "NA", - "Score": 181, - "Average G2D Mark": 330, - "Samples": 41 - } - ], - "gpu516": [ - "Mobility Radeon HD 5450", - { - "Bus Interface": "PCIe x16 2.1", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "675 MHz", - "Memory Clock(s)": "800 MHz", - "DirectX": "11", - "OpenGL": "4.4", - "Max TDP": "11 W", - "Videocard Category": "Mobile", - "Other names": "ATI Mobility Radeon HD 5450, ATI Mobility Radeon HD 5450 Series", - "Videocard First Benchmarked": "2010-05-03", - "G3DMark/Price": "NA", - "Overall Rank": "1802", - "Last Price Change": "NA", - "Score": 214, - "Average G2D Mark": 320, - "Samples": 49 - } - ], - "gpu517": [ - "Mobility Radeon HD 545v", - { - "Bus Interface": "PCIe x16 2.0", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "720 MHz", - "Memory Clock(s)": "800 MHz", - "DirectX": "10.1", - "OpenGL": "3.3", - "Videocard Category": "Mobile", - "Other names": "ATI Mobility Radeon HD 545v", - "Videocard First Benchmarked": "2010-10-18", - "G3DMark/Price": "NA", - "Overall Rank": "1821", - "Last Price Change": "NA", - "Score": 200, - "Average G2D Mark": 270, - "Samples": 11 - } - ], - "gpu58": [ - "Mobility Radeon HD 5470", - { - "Bus Interface": "PCIe x16 2.1", - "Max Memory Size": "512 MB", - "Core Clock(s)": "750 MHz", - "Memory Clock(s)": "800 MHz", - "DirectX": "11", - "OpenGL": "4.4", - "Max TDP": "13 W", - "Videocard Category": "Mobile", - "Other names": "ATI Mobility Radeon HD 5470", - "Videocard First Benchmarked": "2012-08-18", - "G3DMark/Price": "NA", - "Overall Rank": "1777", - "Last Price Change": "NA", - "Score": 236, - "Average G2D Mark": 362, - "Samples": 1120 - } - ], - "gpu518": [ - "Mobility Radeon HD 550v", - { - "Bus Interface": "PCIe x16 2.0", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "450 MHz", - "Memory Clock(s)": "600 MHz", - "DirectX": "10.1", - "OpenGL": "3.3", - "Videocard Category": "Mobile", - "Other names": "ATI Mobility Radeon HD 550v", - "Videocard First Benchmarked": "2010-08-26", - "G3DMark/Price": "NA", - "Overall Rank": "1749", - "Last Price Change": "NA", - "Score": 266, - "Average G2D Mark": 398, - "Samples": 43 - } - ], - "gpu519": [ - "Mobility Radeon HD 5570", - { - "Other names": "ATI Mobility Radeon HD 5570, AMD Mobility Radeon HD 5570", - "Videocard First Benchmarked": "2011-11-06", - "G3DMark/Price": "NA", - "Overall Rank": "1488", - "Last Price Change": "NA", - "Score": 539, - "Average G2D Mark": 245, - "Samples": 32 - } - ], - "gpu520": [ - "Mobility Radeon HD 560v", - { - "Bus Interface": "PCIe x16 2.0", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "550 MHz", - "Memory Clock(s)": "800 MHz", - "DirectX": "10.1", - "OpenGL": "3.3", - "Videocard Category": "Mobile", - "Other names": "ATI Mobility Radeon HD 560v", - "Videocard First Benchmarked": "2010-07-02", - "G3DMark/Price": "NA", - "Overall Rank": "1703", - "Last Price Change": "NA", - "Score": 318, - "Average G2D Mark": 366, - "Samples": 29 - } - ], - "gpu521": [ - "Mobility Radeon HD 5650", - { - "Bus Interface": "PCIe x16 2.1", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "450,650 MHz", - "Memory Clock(s)": "800,800 MHz", - "DirectX": "11", - "OpenGL": "4.4", - "Max TDP": "15 W", - "Videocard Category": "Mobile", - "Other names": "ATI Mobility Radeon HD 5650", - "Videocard First Benchmarked": "2012-06-01", - "G3DMark/Price": "NA", - "Overall Rank": "1590", - "Last Price Change": "NA", - "Score": 450, - "Average G2D Mark": 144, - "Samples": 2572 - } - ], - "gpu522": [ - "Mobility Radeon HD 565v", - { - "Bus Interface": "PCIe x16 2.0", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "675 MHz", - "Memory Clock(s)": "800 MHz", - "DirectX": "10.1", - "OpenGL": "3.3", - "Videocard Category": "Mobile", - "Other names": "ATI Mobility Radeon HD 565v", - "Videocard First Benchmarked": "2011-02-28", - "G3DMark/Price": "NA", - "Overall Rank": "1671", - "Last Price Change": "NA", - "Score": 353, - "Average G2D Mark": 318, - "Samples": 10 - } - ], - "gpu149": [ - "Mobility Radeon HD 5730", - { - "Bus Interface": "PCIe x16 2.1", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "650 MHz", - "Memory Clock(s)": "800 MHz", - "DirectX": "11", - "OpenGL": "4.4", - "Max TDP": "26 W", - "Videocard Category": "Mobile", - "Other names": "(Vista) ATI Mobility Radeon HD 5730, ATI Mobility Radeon HD 5730", - "Videocard First Benchmarked": "2010-07-23", - "G3DMark/Price": "NA", - "Overall Rank": "1530", - "Last Price Change": "NA", - "Score": 499, - "Average G2D Mark": 146, - "Samples": 695 - } - ], - "gpu525": [ - "Mobility Radeon HD 5850", - { - "Bus Interface": "PCIe x16 2.1", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "625,500,625 MHz", - "Memory Clock(s)": "900,1000,1000 MHz", - "DirectX": "11", - "OpenGL": "4.4", - "Max TDP": "31 W", - "Videocard Category": "Mobile", - "Other names": "ATI Mobility Radeon HD 5850", - "Videocard First Benchmarked": "2010-01-10", - "G3DMark/Price": "NA", - "Overall Rank": "1228", - "Last Price Change": "NA", - "Score": 763, - "Average G2D Mark": 403, - "Samples": 101 - } - ], - "gpu526": [ - "Mobility Radeon HD 5870", - { - "Bus Interface": "PCIe x16 2.1", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "700 MHz", - "Memory Clock(s)": "1000 MHz", - "DirectX": "11", - "OpenGL": "4.4", - "Max TDP": "50 W", - "Videocard Category": "Mobile", - "Other names": "ATI Mobility Radeon HD 5870", - "Videocard First Benchmarked": "2012-07-11", - "G3DMark/Price": "NA", - "Overall Rank": "1005", - "Last Price Change": "NA", - "Score": 1093, - "Average G2D Mark": 216, - "Samples": 796 - } - ], - "gpu2644": [ - "Mobility Radeon HD serie 4200", - { - "Other names": "ATI Mobility Radeon HD serie 4200", - "Videocard First Benchmarked": "2013-09-03", - "G3DMark/Price": "NA", - "Overall Rank": "2032", - "Last Price Change": "NA", - "Score": 97, - "Average G2D Mark": 227, - "Samples": 4 - } - ], - "gpu531": [ - "Mobility Radeon X1300", - { - "Bus Interface": "PCIe x16", - "Max Memory Size": "128 MB", - "Core Clock(s)": "350 MHz", - "Memory Clock(s)": "250 MHz", - "DirectX": "9.0c", - "OpenGL": "2", - "Videocard Category": "Mobile", - "Other names": "ATI Mobility Radeon X1300, ATI Mobility Radeon X1300 (Omega 3.8.442), AMD Mobility Radeon X1300", - "Videocard First Benchmarked": "2009-09-22", - "G3DMark/Price": "NA", - "Overall Rank": "2215", - "Last Price Change": "NA", - "Score": 40, - "Average G2D Mark": 222, - "Samples": 164 - } - ], - "gpu532": [ - "Mobility Radeon X1350", - { - "Bus Interface": "PCIe x16", - "Max Memory Size": "128 MB", - "Core Clock(s)": "470 MHz", - "Memory Clock(s)": "350 MHz", - "DirectX": "9.0c", - "OpenGL": "2", - "Videocard Category": "Mobile", - "Other names": "ATI Mobility Radeon X1350, ATI Mobility Radeon X1350 (Omega 3.8.442)", - "Videocard First Benchmarked": "2009-05-09", - "G3DMark/Price": "NA", - "Overall Rank": "2213", - "Last Price Change": "NA", - "Score": 40, - "Average G2D Mark": 274, - "Samples": 32 - } - ], - "gpu533": [ - "Mobility Radeon X1400", - { - "Bus Interface": "PCIe x16", - "Max Memory Size": "128 MB", - "Core Clock(s)": "445 MHz", - "Memory Clock(s)": "250 MHz", - "DirectX": "9.0c", - "OpenGL": "2", - "Videocard Category": "Mobile", - "Other names": "ATI Mobility Radeon X1400, ATI Mobility Radeon X1400 (Omega 3.8.360), ATI Mobility Radeon X1400 (Omega 3.8.421), ATI Mobility Radeon X1400 (Omega 3.8.442)", - "Videocard First Benchmarked": "2009-04-07", - "G3DMark/Price": "NA", - "Overall Rank": "2197", - "Last Price Change": "NA", - "Score": 43, - "Average G2D Mark": 226, - "Samples": 213 - } - ], - "gpu535": [ - "Mobility Radeon X1450", - { - "Bus Interface": "PCIe x16", - "Max Memory Size": "128 MB", - "Core Clock(s)": "550 MHz", - "Memory Clock(s)": "450 MHz", - "DirectX": "9.0c", - "OpenGL": "2", - "Videocard Category": "Mobile", - "Other names": "ATI Mobility Radeon X1450", - "Videocard First Benchmarked": "2009-04-09", - "G3DMark/Price": "NA", - "Overall Rank": "2248", - "Last Price Change": "NA", - "Score": 33, - "Average G2D Mark": 205, - "Samples": 4 - } - ], - "gpu536": [ - "Mobility Radeon X1600", - { - "Bus Interface": "PCIe x16", - "Max Memory Size": "256 MB", - "Core Clock(s)": "450 MHz", - "Memory Clock(s)": "470 MHz", - "DirectX": "9.0c", - "OpenGL": "2", - "Videocard Category": "Mobile", - "Other names": "ATI Mobility Radeon X1600, ATI Mobility Radeon X1600 (Omega 3.8.442), Radeon X1600 Mobility, ATI MOBILITY RADEON X1600(Digital-FLEM MOD), AMD Mobility Radeon X1600", - "Videocard First Benchmarked": "2009-04-02", - "G3DMark/Price": "NA", - "Overall Rank": "2044", - "Last Price Change": "NA", - "Score": 92, - "Average G2D Mark": 236, - "Samples": 149 - } - ], - "gpu537": [ - "Mobility Radeon X1700", - { - "Bus Interface": "PCIe x16", - "Max Memory Size": "256 MB", - "Core Clock(s)": "475 MHz", - "Memory Clock(s)": "400,550 MHz", - "DirectX": "9.0c", - "OpenGL": "2", - "Videocard Category": "Mobile", - "Other names": "ATI Mobility Radeon X1700", - "Videocard First Benchmarked": "2010-07-29", - "G3DMark/Price": "NA", - "Overall Rank": "2007", - "Last Price Change": "NA", - "Score": 105, - "Average G2D Mark": 228, - "Samples": 22 - } - ], - "gpu538": [ - "MOBILITY RADEON X1800", - { - "Bus Interface": "PCIe x16", - "Max Memory Size": "256 MB", - "Core Clock(s)": "450 MHz", - "Memory Clock(s)": "500 MHz", - "DirectX": "9.0c", - "OpenGL": "2", - "Videocard Category": "Mobile", - "Other names": "ATI MOBILITY RADEON X1800, ATI Mobility Radeon X1800 (Omega 3.8.442)", - "Videocard First Benchmarked": "2009-05-10", - "G3DMark/Price": "NA", - "Overall Rank": "1923", - "Last Price Change": "NA", - "Score": 130, - "Average G2D Mark": 247, - "Samples": 8 - } - ], - "gpu539": [ - "Mobility Radeon X1900", - { - "Bus Interface": "PCIe x16", - "Max Memory Size": "256 MB", - "Core Clock(s)": "400 MHz", - "Memory Clock(s)": "480 MHz", - "DirectX": "9.0c", - "OpenGL": "2", - "Videocard Category": "Mobile", - "Other names": "ATI Mobility Radeon X1900", - "Videocard First Benchmarked": "2010-02-23", - "G3DMark/Price": "NA", - "Overall Rank": "1915", - "Last Price Change": "NA", - "Score": 135, - "Average G2D Mark": 287, - "Samples": 3 - } - ], - "gpu111": [ - "Mobility Radeon X2300", - { - "Bus Interface": "PCIe x16", - "Max Memory Size": "128 MB", - "Core Clock(s)": "480 MHz", - "Memory Clock(s)": "400 MHz", - "DirectX": "9.0c", - "OpenGL": "2", - "Videocard Category": "Mobile", - "Other names": "ATI Mobility Radeon X2300", - "Videocard First Benchmarked": "2012-09-07", - "G3DMark/Price": "NA", - "Overall Rank": "2179", - "Last Price Change": "NA", - "Score": 48, - "Average G2D Mark": 263, - "Samples": 117 - } - ], - "gpu1097": [ - "Mobility Radeon X2300 HD", - { - "Other names": "Mobility Radeon X2300 HD", - "Videocard First Benchmarked": "2009-06-08", - "G3DMark/Price": "NA", - "Overall Rank": "2178", - "Last Price Change": "NA", - "Score": 49, - "Average G2D Mark": 244, - "Samples": 5 - } - ], - "gpu540": [ - "Mobility Radeon X2500", - { - "Bus Interface": "PCIe x16", - "Max Memory Size": "256 MB", - "Core Clock(s)": "460 MHz", - "Memory Clock(s)": "400 MHz", - "DirectX": "9.0c", - "OpenGL": "2", - "Videocard Category": "Mobile", - "Other names": "ATI Mobility Radeon X2500", - "Videocard First Benchmarked": "2009-10-14", - "G3DMark/Price": "NA", - "Overall Rank": "2073", - "Last Price Change": "NA", - "Score": 82, - "Average G2D Mark": 235, - "Samples": 4 - } - ], - "gpu542": [ - "MOBILITY RADEON X300", - { - "Bus Interface": "PCI-E x16", - "Max Memory Size": "128 MB", - "Core Clock(s)": "350 MHz", - "Memory Clock(s)": "250 MHz", - "DirectX": "9.0b", - "OpenGL": "2", - "Videocard Category": "Mobile", - "Other names": "ATI MOBILITY RADEON X300, ATI MOBILITY RADEON X300 (Omega 2.6.71), ATI Mobility Radeon X300 (Omega 3.8.442), ATI MOBILITY RADEON X300 (Omega 3.8.421)", - "Videocard First Benchmarked": "2009-04-18", - "G3DMark/Price": "NA", - "Overall Rank": "2244", - "Last Price Change": "NA", - "Score": 34, - "Average G2D Mark": 204, - "Samples": 111 - } - ], - "gpu543": [ - "MOBILITY RADEON X600", - { - "Bus Interface": "PCI-E x16", - "Max Memory Size": "128 MB", - "Core Clock(s)": "400 MHz", - "Memory Clock(s)": "250 MHz", - "DirectX": "9.0b", - "OpenGL": "2", - "Videocard Category": "Mobile", - "Other names": "ATI MOBILITY RADEON X600, ATI Mobility Radeon X600 (Omega 3.8.442), MOBILITY RADEON X600, ATI MOBILITY RADEON X600 (Omega 3.8.252)", - "Videocard First Benchmarked": "2009-04-13", - "G3DMark/Price": "NA", - "Overall Rank": "2170", - "Last Price Change": "NA", - "Score": 50, - "Average G2D Mark": 209, - "Samples": 68 - } - ], - "gpu544": [ - "MOBILITY RADEON X600 SE", - { - "Other names": "ATI MOBILITY RADEON X600 SE", - "Videocard First Benchmarked": "2009-10-04", - "G3DMark/Price": "NA", - "Overall Rank": "2174", - "Last Price Change": "NA", - "Score": 49, - "Average G2D Mark": 233, - "Samples": 5 - } - ], - "gpu545": [ - "MOBILITY RADEON X700", - { - "Bus Interface": "PCI-E x16", - "Max Memory Size": "128 MB", - "Core Clock(s)": "350 MHz", - "Memory Clock(s)": "350 MHz", - "DirectX": "9.0b", - "OpenGL": "2", - "Videocard Category": "Mobile", - "Other names": "ATI MOBILITY RADEON X700, ATI MOBILITY RADEON X700 (Omega 3.8.330), ATI Mobility Radeon X700 (Omega 3.8.442), MOBILITY RADEON X700", - "Videocard First Benchmarked": "2010-03-30", - "G3DMark/Price": "NA", - "Overall Rank": "2125", - "Last Price Change": "NA", - "Score": 67, - "Average G2D Mark": 200, - "Samples": 60 - } - ], - "gpu546": [ - "MOBILITY RADEON X700 XL", - { - "Other names": "ATI MOBILITY RADEON X700 XL", - "Videocard First Benchmarked": "2010-02-02", - "G3DMark/Price": "NA", - "Overall Rank": "2139", - "Last Price Change": "NA", - "Score": 60, - "Average G2D Mark": 189, - "Samples": 1 - } - ], - "gpu548": [ - "MOBILITY RADEON XPRESS 200", - { - "Other names": "ATI MOBILITY RADEON XPRESS 200, ATI MOBILITY RADEON XPRESS 200 (Omega 3.8.360)", - "Videocard First Benchmarked": "2009-04-25", - "G3DMark/Price": "NA", - "Overall Rank": "2273", - "Last Price Change": "NA", - "Score": 27, - "Average G2D Mark": 176, - "Samples": 26 - } - ], - "gpu2488": [ - "Mobility Radeon. HD 5470", - { - "Bus Interface": "PCIe x16 2.1", - "Max Memory Size": "512 MB", - "Core Clock(s)": "750 MHz", - "Memory Clock(s)": "800 MHz", - "DirectX": "11", - "OpenGL": "4.4", - "Max TDP": "13 W", - "Videocard Category": "Mobile", - "Other names": "ATI Mobility Radeon. HD 5470", - "Videocard First Benchmarked": "2013-04-17", - "G3DMark/Price": "NA", - "Overall Rank": "1799", - "Last Price Change": "NA", - "Score": 215, - "Average G2D Mark": 398, - "Samples": 8 - } - ], - "gpu551": [ - "MOBILITY/RADEON 9000", - { - "Other names": "ATI MOBILITY/RADEON 9000, ATI MOBILITY/RADEON 9000 (Omega 3.8.252)", - "Videocard First Benchmarked": "2011-12-23", - "G3DMark/Price": "NA", - "Overall Rank": "2412", - "Last Price Change": "NA", - "Score": 4, - "Average G2D Mark": 153, - "Samples": 2 - } - ], - "gpu2470": [ - "MONSTER GeForce GTX 675M", - { - "Videocard First Benchmarked": "2013-04-01", - "G3DMark/Price": "NA", - "Overall Rank": "573", - "Last Price Change": "NA", - "Score": 2637, - "Average G2D Mark": 686, - "Samples": 1 - } - ], - "gpu3640": [ - "MxGPU", - { - "Other names": "AMD MxGPU", - "Videocard First Benchmarked": "2017-01-03", - "G3DMark/Price": "NA", - "Overall Rank": "765", - "Last Price Change": "NA", - "Score": 1826, - "Average G2D Mark": 479, - "Samples": 5 - } - ], - "gpu3199": [ - "N16P-GX", - { - "Other names": "NVIDIA N16P-GX", - "Videocard First Benchmarked": "2015-04-27", - "G3DMark/Price": "NA", - "Overall Rank": "959", - "Last Price Change": "NA", - "Score": 1205, - "Average G2D Mark": 803, - "Samples": 1 - } - ], - "gpu3928": [ - "N18E-Q1", - { - "Other names": "NVIDIA N18E-Q1", - "Videocard First Benchmarked": "2018-04-20", - "G3DMark/Price": "NA", - "Overall Rank": "593", - "Last Price Change": "NA", - "Score": 2525, - "Average G2D Mark": 547, - "Samples": 1 - } - ], - "gpu1530": [ - "nForce 750a SLI", - { - "Other names": "NVIDIA nForce 750a SLI", - "Videocard First Benchmarked": "2009-12-15", - "G3DMark/Price": "NA", - "Overall Rank": "2069", - "Last Price Change": "NA", - "Score": 83, - "Average G2D Mark": 351, - "Samples": 17 - } - ], - "gpu1531": [ - "nForce 760i SLI", - { - "Other names": "NVIDIA nForce 760i SLI", - "Videocard First Benchmarked": "2009-04-26", - "G3DMark/Price": "NA", - "Overall Rank": "1898", - "Last Price Change": "NA", - "Score": 140, - "Average G2D Mark": 379, - "Samples": 3 - } - ], - "gpu1532": [ - "nForce 780a SLI", - { - "Other names": "NVIDIA nForce 780a SLI", - "Videocard First Benchmarked": "2009-04-07", - "G3DMark/Price": "NA", - "Overall Rank": "2045", - "Last Price Change": "NA", - "Score": 92, - "Average G2D Mark": 425, - "Samples": 2 - } - ], - "gpu1533": [ - "nForce 980a/780a SLI", - { - "Other names": "NVIDIA nForce 980a/780a SLI", - "Videocard First Benchmarked": "2009-08-01", - "G3DMark/Price": "NA", - "Overall Rank": "2076", - "Last Price Change": "NA", - "Score": 82, - "Average G2D Mark": 367, - "Samples": 11 - } - ], - "gpu1536": [ - "NV44", - { - "Other names": "NVIDIA NV44", - "Videocard First Benchmarked": "2011-02-24", - "G3DMark/Price": "NA", - "Overall Rank": "2314", - "Last Price Change": "NA", - "Score": 15, - "Average G2D Mark": 251, - "Samples": 1 - } - ], - "gpu4632": [ - "NVIDIA A10", - { - "Other names": "NVIDIA A10-24Q", - "Videocard First Benchmarked": "2022-11-24", - "G3DMark/Price": "NA", - "Overall Rank": "34", - "Last Price Change": "NA", - "Score": 22064, - "Average G2D Mark": 1007, - "Samples": 2 - } - ], - "gpu4521": [ - "NVIDIA A10-4Q", - { - "Other names": "NVIDIA A10-4Q", - "Videocard First Benchmarked": "2022-03-24", - "G3DMark/Price": "NA", - "Overall Rank": "488", - "Last Price Change": "NA", - "Score": 3425, - "Average G2D Mark": 231, - "Samples": 2 - } - ], - "gpu4546": [ - "NVIDIA A10G", - { - "Other names": "NVIDIA A10G", - "Videocard First Benchmarked": "2022-05-18", - "G3DMark/Price": "NA", - "Overall Rank": "63", - "Last Price Change": "NA", - "Score": 18293, - "Average G2D Mark": 544, - "Samples": 4 - } - ], - "gpu4551": [ - "NVIDIA A40", - { - "Other names": "NVIDIA A40", - "Videocard First Benchmarked": "2022-06-02", - "G3DMark/Price": "NA", - "Overall Rank": "126", - "Last Price Change": "NA", - "Score": 13371, - "Average G2D Mark": 589, - "Samples": 5 - } - ], - "gpu4655": [ - "NVIDIA A40-8Q", - { - "Other names": "NVIDIA A40-8Q", - "Videocard First Benchmarked": "2022-12-21", - "G3DMark/Price": "NA", - "Overall Rank": "420", - "Last Price Change": "NA", - "Score": 4220, - "Average G2D Mark": 79, - "Samples": 2 - } - ], - "gpu1150": [ - "NVIDIA GeForce3 Ti200", - { - "Other names": "NVIDIA 64MB DDR GeForce3 Ti 200 (Dell), 64MB DDR NVIDIA GeForce3 Ti 200", - "Videocard First Benchmarked": "2009-12-15", - "G3DMark/Price": "NA", - "Overall Rank": "2367", - "Last Price Change": "NA", - "Score": 6, - "Average G2D Mark": 218, - "Samples": 1 - } - ], - "gpu3554": [ - "NVIDIA TITAN X", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "12288 MB", - "Core Clock(s)": "1417 MHz", - "Memory Clock(s)": "2500 (10000) MHz", - "DirectX": "12.0", - "OpenGL": "4.5", - "Max TDP": "250 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA TITAN X (Pascal)", - "Videocard First Benchmarked": "2016-08-03", - "G3DMark/Price": "22.46", - "Overall Rank": "118", - "Last Price Change": "$608.1 USD (2020-03-10)", - "Score": 13660, - "Average G2D Mark": 912, - "Samples": 500 - } - ], - "gpu3728": [ - "NVIDIA TITAN Xp", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "12288 MB", - "Core Clock(s)": "1405 MHz", - "Memory Clock(s)": "1426 MHz", - "DirectX": "12.0", - "OpenGL": "4.5", - "Max TDP": "250 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA TITAN Xp", - "Videocard First Benchmarked": "2017-04-11", - "G3DMark/Price": "11.33", - "Overall Rank": "59", - "Last Price Change": "$1645 USD (2021-11-20)", - "Score": 18644, - "Average G2D Mark": 901, - "Samples": 296 - } - ], - "gpu1537": [ - "NVS 2100M", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "535 MHz", - "Memory Clock(s)": "1600 MHz", - "DirectX": "10.1", - "OpenGL": "3.3", - "Max TDP": "14 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA NVS 2100M, NVIDIA NVS 2100M (Mobile)", - "Videocard First Benchmarked": "2010-02-10", - "G3DMark/Price": "NA", - "Overall Rank": "1899", - "Last Price Change": "NA", - "Score": 140, - "Average G2D Mark": 152, - "Samples": 63 - } - ], - "gpu1538": [ - "NVS 300", - { - "Bus Interface": "PCI-Express x1,x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "589 MHz", - "Memory Clock(s)": "1580 MHz", - "DirectX": "10.1", - "OpenGL": "3.3", - "Max TDP": "17.5 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA NVS 300", - "Videocard First Benchmarked": "2011-04-04", - "G3DMark/Price": "1.94", - "Overall Rank": "1945", - "Last Price Change": "$62.97 USD (2022-04-10)", - "Score": 122, - "Average G2D Mark": 43, - "Samples": 344 - } - ], - "gpu2195": [ - "NVS 310", - { - "Bus Interface": "PCI-Express x16", - "Max Memory Size": "512 MB", - "Memory Clock(s)": "1750 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "19.5 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA NVS 310", - "Videocard First Benchmarked": "2012-10-18", - "G3DMark/Price": "4.01", - "Overall Rank": "1768", - "Last Price Change": "$62.06 USD (2022-04-15)", - "Score": 249, - "Average G2D Mark": 177, - "Samples": 384 - } - ], - "gpu1539": [ - "NVS 3100M", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "600 MHz", - "Memory Clock(s)": "1600 MHz", - "DirectX": "10.1", - "OpenGL": "3.3", - "Max TDP": "14 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA NVS 3100M, NVIDIA NVS 3100M (Mobile)", - "Videocard First Benchmarked": "2011-05-25", - "G3DMark/Price": "NA", - "Overall Rank": "1971", - "Last Price Change": "NA", - "Score": 115, - "Average G2D Mark": 36, - "Samples": 1484 - } - ], - "gpu2808": [ - "NVS 315", - { - "Bus Interface": "PCI-Express x16", - "Max Memory Size": "1024 MB", - "Memory Clock(s)": "1800 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "19.5 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA NVS 315", - "Videocard First Benchmarked": "2014-02-07", - "G3DMark/Price": "4.28", - "Overall Rank": "1717", - "Last Price Change": "$69.99 USD (2021-12-17)", - "Score": 300, - "Average G2D Mark": 183, - "Samples": 165 - } - ], - "gpu117": [ - "NVS 4200M", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "810 MHz", - "Memory Clock(s)": "1600 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Videocard Category": "Workstation", - "Other names": "NVIDIA NVS 4200M, NVIDIA NVS 4200M (Mobile)", - "Videocard First Benchmarked": "2012-08-22", - "G3DMark/Price": "0.68", - "Overall Rank": "1742", - "Last Price Change": "$399 USD (2020-03-10)", - "Score": 270, - "Average G2D Mark": 79, - "Samples": 1362 - } - ], - "gpu2228": [ - "NVS 510", - { - "Bus Interface": "PCI-Express x16", - "Max Memory Size": "2048 MB", - "Memory Clock(s)": "1800 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "35 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA NVS 510", - "Videocard First Benchmarked": "2012-10-28", - "G3DMark/Price": "2.03", - "Overall Rank": "1290", - "Last Price Change": "$346.67 USD (2023-12-23)", - "Score": 705, - "Average G2D Mark": 290, - "Samples": 290 - } - ], - "gpu1540": [ - "NVS 5100M", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "550 MHz", - "Memory Clock(s)": "1600 MHz", - "DirectX": "10.1", - "OpenGL": "3.3", - "Max TDP": "35 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA NVS 5100M, NVIDIA NVS 5100M (Mobile)", - "Videocard First Benchmarked": "2010-03-26", - "G3DMark/Price": "NA", - "Overall Rank": "1832", - "Last Price Change": "NA", - "Score": 189, - "Average G2D Mark": 68, - "Samples": 264 - } - ], - "gpu2158": [ - "NVS 5200M", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "625 MHz", - "Memory Clock(s)": "1800 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "35 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA NVS 5200M, NVIDIA NVS 5200M (Mobile)", - "Videocard First Benchmarked": "2012-09-30", - "G3DMark/Price": "NA", - "Overall Rank": "1514", - "Last Price Change": "NA", - "Score": 515, - "Average G2D Mark": 188, - "Samples": 1365 - } - ], - "gpu1541": [ - "NVS 5400M", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "660 MHz", - "Memory Clock(s)": "1800 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "35 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA NVS 5400M, NVIDIA NVS 5400M (Mobile)", - "Videocard First Benchmarked": "2012-07-26", - "G3DMark/Price": "NA", - "Overall Rank": "1359", - "Last Price Change": "NA", - "Score": 631, - "Average G2D Mark": 189, - "Samples": 594 - } - ], - "gpu3428": [ - "NVS 810", - { - "Other names": "NVIDIA NVS 810", - "Videocard First Benchmarked": "2016-02-07", - "G3DMark/Price": "1.86", - "Overall Rank": "977", - "Last Price Change": "$624.99 USD (2018-05-02)", - "Score": 1161, - "Average G2D Mark": 298, - "Samples": 19 - } - ], - "gpu3291": [ - "OPAL XT/GL", - { - "Other names": "OPAL XT/GL (6604)", - "Videocard First Benchmarked": "2015-10-13", - "G3DMark/Price": "NA", - "Overall Rank": "1024", - "Last Price Change": "NA", - "Score": 1053, - "Average G2D Mark": 640, - "Samples": 1 - } - ], - "gpu4206": [ - "P104-100", - { - "Other names": "NVIDIA P104-100", - "Videocard First Benchmarked": "2020-05-02", - "G3DMark/Price": "12.69", - "Overall Rank": "448", - "Last Price Change": "$299.99 USD (2020-05-24)", - "Score": 3807, - "Average G2D Mark": 124, - "Samples": 7 - } - ], - "gpu4212": [ - "P106-090", - { - "Other names": "NVIDIA P106-090", - "Videocard First Benchmarked": "2020-06-07", - "G3DMark/Price": "NA", - "Overall Rank": "628", - "Last Price Change": "NA", - "Score": 2343, - "Average G2D Mark": 101, - "Samples": 9 - } - ], - "gpu4044": [ - "P106-100", - { - "Other names": "NVIDIA P106-100", - "Videocard First Benchmarked": "2019-02-05", - "G3DMark/Price": "NA", - "Overall Rank": "292", - "Last Price Change": "NA", - "Score": 6324, - "Average G2D Mark": 254, - "Samples": 29 - } - ], - "gpu4810": [ - "PCI\\VEN_1002&DEV_164E&SUBSYS_D0001458&REV_C3 Ryzen", - { - "Other names": "PCI\\VEN_1002&DEV_164E&SUBSYS_D0001458&REV_C3 Ryzen 7 7700X 8-Core", - "Videocard First Benchmarked": "2023-11-01", - "G3DMark/Price": "NA", - "Overall Rank": "810", - "Last Price Change": "NA", - "Score": 1654, - "Average G2D Mark": 583, - "Samples": 2 - } - ], - "gpu4791": [ - "PCI\\VEN_1002&DEV_164E&SUBSYS_D0001458&REV_C7 Ryzen", - { - "Other names": "PCI\\VEN_1002&DEV_164E&SUBSYS_D0001458&REV_C7 Ryzen 5 7600X 6-Core", - "Videocard First Benchmarked": "2022-02-01", - "G3DMark/Price": "NA", - "Overall Rank": "815", - "Last Price Change": "NA", - "Score": 1643, - "Average G2D Mark": 567, - "Samples": 3 - } - ], - "gpu3608": [ - "PHDGD Ivy 4", - { - "Other names": "PHDGD Ivy 4", - "Videocard First Benchmarked": "2016-11-27", - "G3DMark/Price": "NA", - "Overall Rank": "1653", - "Last Price Change": "NA", - "Score": 375, - "Average G2D Mark": 331, - "Samples": 13 - } - ], - "gpu4184": [ - "PHDGD Ivy 5", - { - "Other names": "PHDGD Ivy 5", - "Videocard First Benchmarked": "2020-01-22", - "G3DMark/Price": "NA", - "Overall Rank": "1593", - "Last Price Change": "NA", - "Score": 445, - "Average G2D Mark": 497, - "Samples": 2 - } - ], - "gpu3844": [ - "PHDGD Quantic C3", - { - "Other names": "PHDGD Quantic C3", - "Videocard First Benchmarked": "2017-11-09", - "G3DMark/Price": "NA", - "Overall Rank": "1963", - "Last Price Change": "NA", - "Score": 117, - "Average G2D Mark": 351, - "Samples": 4 - } - ], - "gpu3856": [ - "PHDGD Sapphire GR for Mobile Intel 965", - { - "Other names": "PHDGD Sapphire GR for Mobile Intel(R) 965", - "Videocard First Benchmarked": "2017-12-06", - "G3DMark/Price": "NA", - "Overall Rank": "2277", - "Last Price Change": "NA", - "Score": 26, - "Average G2D Mark": 243, - "Samples": 3 - } - ], - "gpu3136": [ - "PHDGD Solo 1.2.0 x86", - { - "Other names": "PHDGD Solo 1.2.0 x86", - "Videocard First Benchmarked": "2015-02-17", - "G3DMark/Price": "NA", - "Overall Rank": "2327", - "Last Price Change": "NA", - "Score": 11, - "Average G2D Mark": 169, - "Samples": 2 - } - ], - "gpu3515": [ - "PHDGD Solo 2 x64", - { - "Other names": "PHDGD Solo 2 x64", - "Videocard First Benchmarked": "2016-06-01", - "G3DMark/Price": "NA", - "Overall Rank": "2299", - "Last Price Change": "NA", - "Score": 20, - "Average G2D Mark": 183, - "Samples": 2 - } - ], - "gpu3625": [ - "Q12U-1", - { - "Other names": "NVIDIA Q12U-1", - "Videocard First Benchmarked": "2016-12-21", - "G3DMark/Price": "NA", - "Overall Rank": "356", - "Last Price Change": "NA", - "Score": 5164, - "Average G2D Mark": 600, - "Samples": 1 - } - ], - "gpu87": [ - "Quadro 1000M", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "700 MHz", - "Memory Clock(s)": "1800 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "45 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro 1000M, NVIDIA Quadro 1000M (Mobile)", - "Videocard First Benchmarked": "2012-08-20", - "G3DMark/Price": "10.48", - "Overall Rank": "1447", - "Last Price Change": "$54.5 USD (2019-07-23)", - "Score": 571, - "Average G2D Mark": 192, - "Samples": 1072 - } - ], - "gpu2398": [ - "Quadro 1100M", - { - "Other names": "NVIDIA Quadro 1100M", - "Videocard First Benchmarked": "2013-02-01", - "G3DMark/Price": "NA", - "Overall Rank": "1235", - "Last Price Change": "NA", - "Score": 755, - "Average G2D Mark": 734, - "Samples": 2 - } - ], - "gpu1543": [ - "Quadro 2000", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "625 MHz", - "Memory Clock(s)": "2600 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "62 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro 2000", - "Videocard First Benchmarked": "2010-10-28", - "G3DMark/Price": "4.44", - "Overall Rank": "1081", - "Last Price Change": "$213.23 USD (2022-04-15)", - "Score": 946, - "Average G2D Mark": 300, - "Samples": 2161 - } - ], - "gpu1544": [ - "Quadro 2000 D", - { - "Other names": "NVIDIA Quadro 2000 D", - "Videocard First Benchmarked": "2011-02-28", - "G3DMark/Price": "NA", - "Overall Rank": "939", - "Last Price Change": "NA", - "Score": 1239, - "Average G2D Mark": 594, - "Samples": 10 - } - ], - "gpu1545": [ - "Quadro 2000D", - { - "Other names": "NVIDIA Quadro 2000D", - "Videocard First Benchmarked": "2011-10-07", - "G3DMark/Price": "6.96", - "Overall Rank": "1065", - "Last Price Change": "$140 USD (2021-05-13)", - "Score": 974, - "Average G2D Mark": 326, - "Samples": 168 - } - ], - "gpu49": [ - "Quadro 2000M", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "550 MHz", - "Memory Clock(s)": "1800 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "55 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro 2000M, NVIDIA Quadro 2000M (Mobile)", - "Videocard First Benchmarked": "2012-08-17", - "G3DMark/Price": "3.41", - "Overall Rank": "1207", - "Last Price Change": "$229.74 USD (2021-05-13)", - "Score": 783, - "Average G2D Mark": 228, - "Samples": 612 - } - ], - "gpu2397": [ - "Quadro 2100M", - { - "Other names": "NVIDIA Quadro 2100M", - "Videocard First Benchmarked": "2013-02-02", - "G3DMark/Price": "NA", - "Overall Rank": "1002", - "Last Price Change": "NA", - "Score": 1100, - "Average G2D Mark": 765, - "Samples": 1 - } - ], - "gpu1546": [ - "Quadro 280 NVS PCIe", - { - "Other names": "NVIDIA Quadro 280 NVS PCIe", - "Videocard First Benchmarked": "2009-06-09", - "G3DMark/Price": "NA", - "Overall Rank": "2366", - "Last Price Change": "NA", - "Score": 6, - "Average G2D Mark": 185, - "Samples": 3 - } - ], - "gpu1547": [ - "Quadro 3000M", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "450 MHz", - "Memory Clock(s)": "2500 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "75 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro 3000M, NVIDIA Quadro 3000M (Mobile)", - "Videocard First Benchmarked": "2011-06-17", - "G3DMark/Price": "14.55", - "Overall Rank": "1040", - "Last Price Change": "$69.99 USD (2019-12-29)", - "Score": 1019, - "Average G2D Mark": 311, - "Samples": 583 - } - ], - "gpu1548": [ - "Quadro 400", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "450 MHz", - "Memory Clock(s)": "1540 MHz", - "DirectX": "10.1", - "OpenGL": "3.3", - "Max TDP": "32 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro 400", - "Videocard First Benchmarked": "2011-07-08", - "G3DMark/Price": "0.70", - "Overall Rank": "1882", - "Last Price Change": "$211 USD (2022-04-15)", - "Score": 148, - "Average G2D Mark": 59, - "Samples": 126 - } - ], - "gpu1549": [ - "Quadro 4000", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "475 MHz", - "Memory Clock(s)": "2800 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "142 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro 4000", - "Videocard First Benchmarked": "2010-08-19", - "G3DMark/Price": "1.47", - "Overall Rank": "876", - "Last Price Change": "$1008.09 USD (2023-10-11)", - "Score": 1479, - "Average G2D Mark": 379, - "Samples": 2151 - } - ], - "gpu1550": [ - "Quadro 4000M", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "475 MHz", - "Memory Clock(s)": "2500 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "100 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro 4000M, NVIDIA Quadro 4000M (Mobile)", - "Videocard First Benchmarked": "2011-03-31", - "G3DMark/Price": "5.71", - "Overall Rank": "914", - "Last Price Change": "$232.06 USD (2022-04-15)", - "Score": 1324, - "Average G2D Mark": 269, - "Samples": 199 - } - ], - "gpu2291": [ - "Quadro 410", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "706 MHz", - "Memory Clock(s)": "1800 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "38 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro 410", - "Videocard First Benchmarked": "2012-11-30", - "G3DMark/Price": "3.42", - "Overall Rank": "1597", - "Last Price Change": "$129 USD (2020-02-20)", - "Score": 441, - "Average G2D Mark": 221, - "Samples": 104 - } - ], - "gpu1551": [ - "Quadro 5000", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "2560 MB", - "Core Clock(s)": "513 MHz", - "Memory Clock(s)": "3000 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "152 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro 5000", - "Videocard First Benchmarked": "2010-09-03", - "G3DMark/Price": "2.19", - "Overall Rank": "735", - "Last Price Change": "$878.67 USD (2023-12-25)", - "Score": 1924, - "Average G2D Mark": 377, - "Samples": 475 - } - ], - "gpu1552": [ - "Quadro 5000M", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "405 MHz", - "Memory Clock(s)": "2400 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "100 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro 5000M", - "Videocard First Benchmarked": "2010-12-22", - "G3DMark/Price": "NA", - "Overall Rank": "692", - "Last Price Change": "NA", - "Score": 2060, - "Average G2D Mark": 426, - "Samples": 11 - } - ], - "gpu2518": [ - "Quadro 500M", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "700 MHz", - "Memory Clock(s)": "1800 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "35 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro 500M, NVIDIA Quadro 500M (Mobile)", - "Videocard First Benchmarked": "2013-05-22", - "G3DMark/Price": "2.07", - "Overall Rank": "1448", - "Last Price Change": "$275.14 USD (2018-09-19)", - "Score": 571, - "Average G2D Mark": 365, - "Samples": 6 - } - ], - "gpu1553": [ - "Quadro 5010M", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "450 MHz", - "Memory Clock(s)": "2600 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "100 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro 5010M, NVIDIA Quadro 5010M (Mobile)", - "Videocard First Benchmarked": "2011-11-29", - "G3DMark/Price": "7.51", - "Overall Rank": "779", - "Last Price Change": "$235.95 USD (2018-01-29)", - "Score": 1772, - "Average G2D Mark": 315, - "Samples": 37 - } - ], - "gpu91": [ - "Quadro 600", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "640 MHz", - "Memory Clock(s)": "1600 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "40 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro 600", - "Videocard First Benchmarked": "2012-08-20", - "G3DMark/Price": "7.07", - "Overall Rank": "1490", - "Last Price Change": "$76 USD (2021-05-13)", - "Score": 537, - "Average G2D Mark": 229, - "Samples": 1773 - } - ], - "gpu1554": [ - "Quadro 6000", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "6144 MB", - "Core Clock(s)": "574 MHz", - "Memory Clock(s)": "3000 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "204 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro 6000", - "Videocard First Benchmarked": "2010-10-19", - "G3DMark/Price": "0.66", - "Overall Rank": "560", - "Last Price Change": "$4092.38 USD (2022-04-12)", - "Score": 2706, - "Average G2D Mark": 448, - "Samples": 249 - } - ], - "gpu1555": [ - "Quadro 7000", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "6144 MB", - "Core Clock(s)": "651 MHz", - "Memory Clock(s)": "3696 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "204 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro 7000", - "Videocard First Benchmarked": "2011-11-09", - "G3DMark/Price": "NA", - "Overall Rank": "478", - "Last Price Change": "NA", - "Score": 3505, - "Average G2D Mark": 397, - "Samples": 2 - } - ], - "gpu1556": [ - "Quadro CX", - { - "Other names": "NVIDIA Quadro CX", - "Videocard First Benchmarked": "2009-10-30", - "G3DMark/Price": "6.32", - "Overall Rank": "1080", - "Last Price Change": "$149.95 USD (2014-05-20)", - "Score": 947, - "Average G2D Mark": 454, - "Samples": 3 - } - ], - "gpu1557": [ - "Quadro FX 1000", - { - "Bus Interface": "AGP 8x", - "Max Memory Size": "128 MB", - "Core Clock(s)": "300 MHz", - "Memory Clock(s)": "300 MHz", - "DirectX": "9", - "OpenGL": "2", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro FX 1000", - "Videocard First Benchmarked": "2009-04-27", - "G3DMark/Price": "NA", - "Overall Rank": "2240", - "Last Price Change": "NA", - "Score": 34, - "Average G2D Mark": 266, - "Samples": 6 - } - ], - "gpu1558": [ - "Quadro FX 1100", - { - "Bus Interface": "AGP 8x", - "Max Memory Size": "256 MB", - "Core Clock(s)": "425 MHz", - "Memory Clock(s)": "325 MHz", - "DirectX": "9", - "OpenGL": "2", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro FX 1100", - "Videocard First Benchmarked": "2009-04-10", - "G3DMark/Price": "0.17", - "Overall Rank": "2233", - "Last Price Change": "$212.99 USD (2018-12-19)", - "Score": 36, - "Average G2D Mark": 178, - "Samples": 7 - } - ], - "gpu1559": [ - "Quadro FX 1300", - { - "Bus Interface": "PCIe x16", - "Max Memory Size": "128 MB", - "Core Clock(s)": "350 MHz", - "Memory Clock(s)": "550 MHz", - "DirectX": "9.0c", - "OpenGL": "2.1", - "Max TDP": "55 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro FX 1300", - "Videocard First Benchmarked": "2009-04-09", - "G3DMark/Price": "NA", - "Overall Rank": "2239", - "Last Price Change": "NA", - "Score": 34, - "Average G2D Mark": 276, - "Samples": 9 - } - ], - "gpu1560": [ - "Quadro FX 1400", - { - "Bus Interface": "PCIe x16", - "Max Memory Size": "128 MB", - "Core Clock(s)": "350 MHz", - "Memory Clock(s)": "600 MHz", - "DirectX": "9.0c", - "OpenGL": "2.1", - "Max TDP": "70 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro FX 1400", - "Videocard First Benchmarked": "2011-10-22", - "G3DMark/Price": "0.51", - "Overall Rank": "1938", - "Last Price Change": "$245.01 USD (2019-05-24)", - "Score": 124, - "Average G2D Mark": 152, - "Samples": 59 - } - ], - "gpu1561": [ - "Quadro FX 1500", - { - "Bus Interface": "PCIe x16", - "Max Memory Size": "256 MB", - "Core Clock(s)": "375 MHz", - "Memory Clock(s)": "800 MHz", - "DirectX": "9.0c", - "OpenGL": "2.1", - "Max TDP": "65 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro FX 1500", - "Videocard First Benchmarked": "2009-04-08", - "G3DMark/Price": "1.71", - "Overall Rank": "1825", - "Last Price Change": "$115.01 USD (2019-03-19)", - "Score": 197, - "Average G2D Mark": 87, - "Samples": 151 - } - ], - "gpu1562": [ - "Quadro FX 1500M", - { - "Bus Interface": "PCIe 1.0 x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "375 MHz", - "Memory Clock(s)": "1000 MHz", - "DirectX": "9.0c", - "OpenGL": "2.1", - "Max TDP": "45 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro FX 1500M, NVIDIA Quadro FX 1500M (Omega 2.169.21)", - "Videocard First Benchmarked": "2009-04-02", - "G3DMark/Price": "NA", - "Overall Rank": "1852", - "Last Price Change": "NA", - "Score": 171, - "Average G2D Mark": 275, - "Samples": 26 - } - ], - "gpu1563": [ - "Quadro FX 1600M", - { - "Bus Interface": "PCIe 1.0 x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "625 MHz", - "Memory Clock(s)": "1600 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "50 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro FX 1600M, NVIDIA Quadro FX 1600M (Prerelease - WDDM 1.1), NVIDIA Quadro FX 1600M [Dox Optimised 182.05], NVIDIA Quadro FX 1600M (Mobile)", - "Videocard First Benchmarked": "2009-06-20", - "G3DMark/Price": "0.87", - "Overall Rank": "1922", - "Last Price Change": "$149.9 USD (2017-03-01)", - "Score": 131, - "Average G2D Mark": 109, - "Samples": 134 - } - ], - "gpu1564": [ - "Quadro FX 1700", - { - "Bus Interface": "PCIe x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "460 MHz", - "Memory Clock(s)": "800 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "42 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro FX 1700, NVIDIA Quadro FX 1700 (Prerelease - WDDM 1.1)", - "Videocard First Benchmarked": "2009-04-02", - "G3DMark/Price": "0.40", - "Overall Rank": "1900", - "Last Price Change": "$350.14 USD (2022-04-15)", - "Score": 140, - "Average G2D Mark": 38, - "Samples": 543 - } - ], - "gpu1565": [ - "Quadro FX 1700M", - { - "Bus Interface": "PCIe 1.0 x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "625 MHz", - "Memory Clock(s)": "1600 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "50 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro FX 1700M, NVIDIA Quadro FX 1700M (Mobile)", - "Videocard First Benchmarked": "2009-04-04", - "G3DMark/Price": "NA", - "Overall Rank": "1851", - "Last Price Change": "NA", - "Score": 173, - "Average G2D Mark": 135, - "Samples": 54 - } - ], - "gpu1566": [ - "Quadro FX 1800", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "768 MB", - "Core Clock(s)": "550 MHz", - "Memory Clock(s)": "1600 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "59 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro FX 1800", - "Videocard First Benchmarked": "2009-04-21", - "G3DMark/Price": "2.96", - "Overall Rank": "1633", - "Last Price Change": "$135 USD (2021-05-13)", - "Score": 399, - "Average G2D Mark": 66, - "Samples": 1031 - } - ], - "gpu1567": [ - "Quadro FX 1800M", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "450 MHz", - "Memory Clock(s)": "1600,2200 MHz", - "DirectX": "10.1", - "OpenGL": "3.3", - "Max TDP": "45 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro FX 1800M, NVIDIA Quadro FX 1800M (Mobile)", - "Videocard First Benchmarked": "2010-04-01", - "G3DMark/Price": "NA", - "Overall Rank": "1565", - "Last Price Change": "NA", - "Score": 467, - "Average G2D Mark": 70, - "Samples": 246 - } - ], - "gpu1568": [ - "Quadro FX 2000", - { - "Bus Interface": "AGP 8x", - "Max Memory Size": "128 MB", - "Core Clock(s)": "400 MHz", - "Memory Clock(s)": "800 MHz", - "DirectX": "9", - "OpenGL": "2", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro FX 2000", - "Videocard First Benchmarked": "2009-09-14", - "G3DMark/Price": "NA", - "Overall Rank": "2307", - "Last Price Change": "NA", - "Score": 18, - "Average G2D Mark": 146, - "Samples": 1 - } - ], - "gpu1569": [ - "Quadro FX 2500M", - { - "Bus Interface": "PCIe 1.0 x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "500 MHz", - "Memory Clock(s)": "1200 MHz", - "DirectX": "9.0c", - "OpenGL": "2.1", - "Max TDP": "45 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro FX 2500M, NVIDIA Quadro FX 2500M [Dox Optimised 182.05]", - "Videocard First Benchmarked": "2009-04-02", - "G3DMark/Price": "12.45", - "Overall Rank": "1795", - "Last Price Change": "$17.5 USD (2020-03-05)", - "Score": 218, - "Average G2D Mark": 272, - "Samples": 24 - } - ], - "gpu2854": [ - "Quadro FX 2700", - { - "Other names": "NVIDIA Quadro FX 2700", - "Videocard First Benchmarked": "2014-04-09", - "G3DMark/Price": "NA", - "Overall Rank": "1481", - "Last Price Change": "NA", - "Score": 543, - "Average G2D Mark": 465, - "Samples": 1 - } - ], - "gpu1570": [ - "Quadro FX 2700M", - { - "Bus Interface": "PCIe 1.0 x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "530 MHz", - "Memory Clock(s)": "1600 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "65 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro FX 2700M, NVIDIA Quadro FX 2700M (Mobile)", - "Videocard First Benchmarked": "2009-04-05", - "G3DMark/Price": "3.77", - "Overall Rank": "1649", - "Last Price Change": "$99.95 USD (2016-11-01)", - "Score": 377, - "Average G2D Mark": 46, - "Samples": 275 - } - ], - "gpu1571": [ - "Quadro FX 2800M", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "500 MHz", - "Memory Clock(s)": "2000 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "75 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro FX 2800M, NVIDIA Quadro FX 2800M (Mobile)", - "Videocard First Benchmarked": "2010-02-05", - "G3DMark/Price": "2.22", - "Overall Rank": "1616", - "Last Price Change": "$190 USD (2021-05-13)", - "Score": 421, - "Average G2D Mark": 56, - "Samples": 326 - } - ], - "gpu1572": [ - "Quadro FX 3000", - { - "Bus Interface": "AGP 8x", - "Max Memory Size": "256 MB", - "Core Clock(s)": "400 MHz", - "Memory Clock(s)": "850 MHz", - "DirectX": "9", - "OpenGL": "2", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro FX 3000", - "Videocard First Benchmarked": "2009-04-08", - "G3DMark/Price": "0.41", - "Overall Rank": "2115", - "Last Price Change": "$166.61 USD (2019-04-09)", - "Score": 69, - "Average G2D Mark": 178, - "Samples": 14 - } - ], - "gpu4": [ - "Quadro FX 3400/4400", - { - "Bus Interface": "PCIe x16", - "Max Memory Size": "256 MB", - "Core Clock(s)": "350 MHz", - "Memory Clock(s)": "900 MHz", - "DirectX": "9.0c", - "OpenGL": "2.1", - "Max TDP": "101 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro FX 3400/4400", - "Videocard First Benchmarked": "2012-08-09", - "G3DMark/Price": "NA", - "Overall Rank": "2008", - "Last Price Change": "NA", - "Score": 104, - "Average G2D Mark": 239, - "Samples": 31 - } - ], - "gpu1574": [ - "Quadro FX 3450", - { - "Bus Interface": "PCIe x16", - "Max Memory Size": "256 MB", - "Core Clock(s)": "425 MHz", - "Memory Clock(s)": "1000 MHz", - "DirectX": "9.0c", - "OpenGL": "2.1", - "Max TDP": "83 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro FX 3450", - "Videocard First Benchmarked": "2009-08-23", - "G3DMark/Price": "1.24", - "Overall Rank": "1881", - "Last Price Change": "$119.99 USD (2019-02-07)", - "Score": 149, - "Average G2D Mark": 235, - "Samples": 2 - } - ], - "gpu1575": [ - "Quadro FX 3450/4000 SDI", - { - "Bus Interface": "AGP 8x", - "Max Memory Size": "256 MB", - "Core Clock(s)": "375 MHz", - "Memory Clock(s)": "1000 MHz", - "DirectX": "9.0c", - "OpenGL": "2.1", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro FX 3450/4000 SDI", - "Videocard First Benchmarked": "2009-04-06", - "G3DMark/Price": "NA", - "Overall Rank": "1843", - "Last Price Change": "NA", - "Score": 179, - "Average G2D Mark": 83, - "Samples": 194 - } - ], - "gpu1576": [ - "Quadro FX 350", - { - "Bus Interface": "PCIe x16", - "Max Memory Size": "128 MB", - "Core Clock(s)": "550 MHz", - "Memory Clock(s)": "810 MHz", - "DirectX": "9.0c", - "OpenGL": "2.1", - "Max TDP": "21 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro FX 350", - "Videocard First Benchmarked": "2009-04-12", - "G3DMark/Price": "NA", - "Overall Rank": "2059", - "Last Price Change": "NA", - "Score": 86, - "Average G2D Mark": 378, - "Samples": 2 - } - ], - "gpu1577": [ - "Quadro FX 3500", - { - "Bus Interface": "PCIe x16", - "Max Memory Size": "256 MB", - "Core Clock(s)": "470 MHz", - "Memory Clock(s)": "1320 MHz", - "DirectX": "9.0c", - "OpenGL": "2.1", - "Max TDP": "80 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro FX 3500, NVIDIA Quadro FX 3500 (Prerelease - WDDM 1.0), NVIDIA Quadro FX 3500 (Mobile)", - "Videocard First Benchmarked": "2009-04-03", - "G3DMark/Price": "3.77", - "Overall Rank": "1757", - "Last Price Change": "$68.98 USD (2020-03-08)", - "Score": 260, - "Average G2D Mark": 81, - "Samples": 209 - } - ], - "gpu1578": [ - "Quadro FX 3500M", - { - "Bus Interface": "PCIe 1.0 x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "575 MHz", - "Memory Clock(s)": "1200 MHz", - "DirectX": "9.0c", - "OpenGL": "2.1", - "Max TDP": "45 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro FX 3500M", - "Videocard First Benchmarked": "2009-09-04", - "G3DMark/Price": "3.06", - "Overall Rank": "1711", - "Last Price Change": "$99.99 USD (2016-05-23)", - "Score": 306, - "Average G2D Mark": 309, - "Samples": 3 - } - ], - "gpu1579": [ - "Quadro FX 350M", - { - "Bus Interface": "PCIe 1.0 x16", - "Max Memory Size": "256 MB", - "Core Clock(s)": "450 MHz", - "Memory Clock(s)": "900 MHz", - "DirectX": "9.0c", - "OpenGL": "2.1", - "Max TDP": "15 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro FX 350M, NVIDIA Quadro FX 350M (Mobile)", - "Videocard First Benchmarked": "2009-05-28", - "G3DMark/Price": "NA", - "Overall Rank": "2192", - "Last Price Change": "NA", - "Score": 45, - "Average G2D Mark": 132, - "Samples": 21 - } - ], - "gpu1580": [ - "Quadro FX 3600M", - { - "Bus Interface": "PCIe 1.0 x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "500 MHz", - "Memory Clock(s)": "1600 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "70 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro FX 3600M, NVIDIA Quadro FX 3600M (Mobile)", - "Videocard First Benchmarked": "2009-04-28", - "G3DMark/Price": "NA", - "Overall Rank": "1564", - "Last Price Change": "NA", - "Score": 467, - "Average G2D Mark": 365, - "Samples": 36 - } - ], - "gpu1581": [ - "Quadro FX 360M", - { - "Bus Interface": "PCIe 1.0 x16", - "Max Memory Size": "256 MB", - "Core Clock(s)": "400 MHz", - "Memory Clock(s)": "1200 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "17 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro FX 360M, NVIDIA Quadro FX 360M (Prerelease - WDDM 1.1)", - "Videocard First Benchmarked": "2009-04-15", - "G3DMark/Price": "NA", - "Overall Rank": "2057", - "Last Price Change": "NA", - "Score": 87, - "Average G2D Mark": 308, - "Samples": 45 - } - ], - "gpu1582": [ - "Quadro FX 370", - { - "Bus Interface": "PCIe x16", - "Max Memory Size": "256 MB", - "Core Clock(s)": "360 MHz", - "Memory Clock(s)": "1000 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "35 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro FX 370", - "Videocard First Benchmarked": "2009-04-07", - "G3DMark/Price": "0.67", - "Overall Rank": "2068", - "Last Price Change": "$125 USD (2019-10-02)", - "Score": 84, - "Average G2D Mark": 385, - "Samples": 55 - } - ], - "gpu1583": [ - "Quadro FX 370 Low Profile", - { - "Other names": "NVIDIA Quadro FX 370 Low Profile", - "Videocard First Benchmarked": "2010-10-21", - "G3DMark/Price": "NA", - "Overall Rank": "2013", - "Last Price Change": "NA", - "Score": 103, - "Average G2D Mark": 492, - "Samples": 1 - } - ], - "gpu1584": [ - "Quadro FX 370 LP", - { - "Bus Interface": "PCIe x16", - "Max Memory Size": "256 MB", - "Core Clock(s)": "540 MHz", - "Memory Clock(s)": "1000 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "25 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro FX 370 LP", - "Videocard First Benchmarked": "2012-05-27", - "G3DMark/Price": "NA", - "Overall Rank": "1995", - "Last Price Change": "NA", - "Score": 108, - "Average G2D Mark": 481, - "Samples": 2 - } - ], - "gpu1585": [ - "Quadro FX 3700", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "500 MHz", - "Memory Clock(s)": "1600 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "78 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro FX 3700, NVIDIA Quadro FX 3700 (Prerelease - WDDM 1.1)", - "Videocard First Benchmarked": "2010-07-02", - "G3DMark/Price": "1.79", - "Overall Rank": "1645", - "Last Price Change": "$213.27 USD (2022-04-15)", - "Score": 381, - "Average G2D Mark": 95, - "Samples": 278 - } - ], - "gpu1586": [ - "Quadro FX 3700M", - { - "Bus Interface": "PCIe 1.0 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "550 MHz", - "Memory Clock(s)": "1600 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "75 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro FX 3700M, NVIDIA Quadro FX 3700M (Prerelease - WDDM 1.1), NVIDIA Quadro FX 3700M (Mobile)", - "Videocard First Benchmarked": "2009-04-28", - "G3DMark/Price": "0.49", - "Overall Rank": "1584", - "Last Price Change": "$925 USD (2015-07-27)", - "Score": 456, - "Average G2D Mark": 88, - "Samples": 175 - } - ], - "gpu1587": [ - "Quadro FX 370M", - { - "Bus Interface": "PCIe 1.0 x16", - "Max Memory Size": "256 MB", - "Core Clock(s)": "550 MHz", - "Memory Clock(s)": "1200 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "20 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro FX 370M", - "Videocard First Benchmarked": "2009-04-09", - "G3DMark/Price": "NA", - "Overall Rank": "2040", - "Last Price Change": "NA", - "Score": 93, - "Average G2D Mark": 334, - "Samples": 18 - } - ], - "gpu1588": [ - "Quadro FX 380", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "256 MB", - "Core Clock(s)": "450 MHz", - "Memory Clock(s)": "1400 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "34 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro FX 380", - "Videocard First Benchmarked": "2012-02-23", - "G3DMark/Price": "2.24", - "Overall Rank": "1865", - "Last Price Change": "$72.5 USD (2020-02-17)", - "Score": 163, - "Average G2D Mark": 73, - "Samples": 147 - } - ], - "gpu1589": [ - "Quadro FX 380 LP", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "589 MHz", - "Memory Clock(s)": "1600 MHz", - "DirectX": "10.1", - "OpenGL": "3.3", - "Max TDP": "28 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro FX 380 LP", - "Videocard First Benchmarked": "2010-02-02", - "G3DMark/Price": "NA", - "Overall Rank": "1931", - "Last Price Change": "NA", - "Score": 127, - "Average G2D Mark": 93, - "Samples": 55 - } - ], - "gpu1590": [ - "Quadro FX 3800", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "602 MHz", - "Memory Clock(s)": "1600 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "108 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro FX 3800", - "Videocard First Benchmarked": "2009-04-29", - "G3DMark/Price": "3.08", - "Overall Rank": "1195", - "Last Price Change": "$259.13 USD (2022-04-15)", - "Score": 799, - "Average G2D Mark": 62, - "Samples": 742 - } - ], - "gpu1591": [ - "Quadro FX 3800M", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "675 MHz", - "Memory Clock(s)": "2000 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "100 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro FX 3800M, NVIDIA Quadro FX 3800M (Mobile)", - "Videocard First Benchmarked": "2009-10-07", - "G3DMark/Price": "NA", - "Overall Rank": "1393", - "Last Price Change": "NA", - "Score": 606, - "Average G2D Mark": 48, - "Samples": 143 - } - ], - "gpu1592": [ - "Quadro FX 380M", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "625 MHz", - "Memory Clock(s)": "1600 MHz", - "DirectX": "10.1", - "OpenGL": "3.3", - "Max TDP": "25 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro FX 380M, NVIDIA Quadro FX 380M (Mobile)", - "Videocard First Benchmarked": "2010-03-31", - "G3DMark/Price": "NA", - "Overall Rank": "1948", - "Last Price Change": "NA", - "Score": 121, - "Average G2D Mark": 106, - "Samples": 37 - } - ], - "gpu1593": [ - "Quadro FX 4000", - { - "Bus Interface": "AGP 8x", - "Max Memory Size": "256 MB", - "Core Clock(s)": "375 MHz", - "Memory Clock(s)": "1000 MHz", - "DirectX": "9.0c", - "OpenGL": "2.1", - "Max TDP": "142 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro FX 4000", - "Videocard First Benchmarked": "2009-12-28", - "G3DMark/Price": "NA", - "Overall Rank": "2020", - "Last Price Change": "NA", - "Score": 101, - "Average G2D Mark": 78, - "Samples": 1 - } - ], - "gpu1594": [ - "Quadro FX 4500", - { - "Bus Interface": "PCIe x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "470 MHz", - "Memory Clock(s)": "1050 MHz", - "DirectX": "9.0c", - "OpenGL": "2.1", - "Max TDP": "109 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro FX 4500", - "Videocard First Benchmarked": "2009-04-07", - "G3DMark/Price": "1.34", - "Overall Rank": "1786", - "Last Price Change": "$169 USD (2021-05-13)", - "Score": 226, - "Average G2D Mark": 143, - "Samples": 94 - } - ], - "gpu1595": [ - "Quadro FX 4500 X2", - { - "Other names": "NVIDIA Quadro FX 4500 X2", - "Videocard First Benchmarked": "2010-03-04", - "G3DMark/Price": "NA", - "Overall Rank": "1778", - "Last Price Change": "NA", - "Score": 236, - "Average G2D Mark": 653, - "Samples": 1 - } - ], - "gpu1596": [ - "Quadro FX 4600", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "768 MB", - "Core Clock(s)": "500 MHz", - "Memory Clock(s)": "700 MHz", - "DirectX": "10.0", - "OpenGL": "3.3", - "Max TDP": "134 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro FX 4600", - "Videocard First Benchmarked": "2009-04-03", - "G3DMark/Price": "1.29", - "Overall Rank": "1604", - "Last Price Change": "$333.25 USD (2021-05-13)", - "Score": 431, - "Average G2D Mark": 127, - "Samples": 373 - } - ], - "gpu2857": [ - "Quadro FX 4700 X2", - { - "Other names": "NVIDIA Quadro FX 4700 X2", - "Videocard First Benchmarked": "2014-04-15", - "G3DMark/Price": "NA", - "Overall Rank": "1315", - "Last Price Change": "NA", - "Score": 676, - "Average G2D Mark": 509, - "Samples": 4 - } - ], - "gpu32": [ - "Quadro FX 4800", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "1536 MB", - "Core Clock(s)": "602 MHz", - "Memory Clock(s)": "1600 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "150 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro FX 4800", - "Videocard First Benchmarked": "2012-08-15", - "G3DMark/Price": "4.86", - "Overall Rank": "1056", - "Last Price Change": "$204 USD (2021-11-20)", - "Score": 991, - "Average G2D Mark": 74, - "Samples": 475 - } - ], - "gpu1599": [ - "Quadro FX 500/600 PCI", - { - "Other names": "NVIDIA Quadro FX 500/600 PCI", - "Videocard First Benchmarked": "2009-04-06", - "G3DMark/Price": "NA", - "Overall Rank": "2316", - "Last Price Change": "NA", - "Score": 14, - "Average G2D Mark": 203, - "Samples": 6 - } - ], - "gpu1600": [ - "Quadro FX 500/FX 600", - { - "Other names": "NVIDIA Quadro FX 500/FX 600", - "Videocard First Benchmarked": "2009-04-11", - "G3DMark/Price": "NA", - "Overall Rank": "2344", - "Last Price Change": "NA", - "Score": 8, - "Average G2D Mark": 151, - "Samples": 7 - } - ], - "gpu1601": [ - "Quadro FX 540", - { - "Bus Interface": "PCIe x16", - "Max Memory Size": "128 MB", - "Core Clock(s)": "300 MHz", - "Memory Clock(s)": "550 MHz", - "DirectX": "9.0c", - "OpenGL": "2.1", - "Max TDP": "35 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro FX 540", - "Videocard First Benchmarked": "2009-04-02", - "G3DMark/Price": "1.35", - "Overall Rank": "2081", - "Last Price Change": "$59.99 USD (2011-03-31)", - "Score": 81, - "Average G2D Mark": 294, - "Samples": 27 - } - ], - "gpu1602": [ - "Quadro FX 550", - { - "Bus Interface": "PCIe x16", - "Max Memory Size": "128 MB", - "Core Clock(s)": "360 MHz", - "Memory Clock(s)": "800 MHz", - "DirectX": "9.0c", - "OpenGL": "2.1", - "Max TDP": "25 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro FX 550", - "Videocard First Benchmarked": "2009-04-27", - "G3DMark/Price": "0.22", - "Overall Rank": "2131", - "Last Price Change": "$287.82 USD (2022-04-15)", - "Score": 64, - "Average G2D Mark": 325, - "Samples": 45 - } - ], - "gpu1603": [ - "Quadro FX 5500", - { - "Bus Interface": "PCIe x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "700 MHz", - "Memory Clock(s)": "1050 MHz", - "DirectX": "9.0c", - "OpenGL": "2.1", - "Max TDP": "96 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro FX 5500", - "Videocard First Benchmarked": "2009-04-27", - "G3DMark/Price": "0.12", - "Overall Rank": "1771", - "Last Price Change": "$1999 USD (2021-05-18)", - "Score": 242, - "Average G2D Mark": 394, - "Samples": 19 - } - ], - "gpu1604": [ - "Quadro FX 560", - { - "Bus Interface": "PCIe x16", - "Max Memory Size": "128 MB", - "Core Clock(s)": "350 MHz", - "Memory Clock(s)": "1200 MHz", - "DirectX": "9.0c", - "OpenGL": "2.1", - "Max TDP": "30 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro FX 560", - "Videocard First Benchmarked": "2009-04-14", - "G3DMark/Price": "0.76", - "Overall Rank": "1975", - "Last Price Change": "$150.25 USD (2015-11-21)", - "Score": 114, - "Average G2D Mark": 360, - "Samples": 25 - } - ], - "gpu1605": [ - "Quadro FX 5600", - { - "Other names": "NVIDIA Quadro FX 5600", - "Videocard First Benchmarked": "2009-04-10", - "G3DMark/Price": "1.78", - "Overall Rank": "1503", - "Last Price Change": "$295 USD (2021-11-20)", - "Score": 525, - "Average G2D Mark": 109, - "Samples": 73 - } - ], - "gpu1606": [ - "Quadro FX 570", - { - "Bus Interface": "PCIe x16", - "Max Memory Size": "256 MB", - "Core Clock(s)": "460 MHz", - "Memory Clock(s)": "800 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "38 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro FX 570", - "Videocard First Benchmarked": "2009-04-05", - "G3DMark/Price": "2.03", - "Overall Rank": "1781", - "Last Price Change": "$115 USD (2021-05-13)", - "Score": 233, - "Average G2D Mark": 79, - "Samples": 251 - } - ], - "gpu1607": [ - "Quadro FX 570M", - { - "Bus Interface": "PCIe 1.0 x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "475 MHz", - "Memory Clock(s)": "1400 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "45 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro FX 570M, NVIDIA Quadro FX 570M (Prerelease - WDDM 1.1), NVIDIA Quadro FX 570M [Custom Forceware 180.70], NVIDIA Quadro FX 570M (Mobile)", - "Videocard First Benchmarked": "2009-04-21", - "G3DMark/Price": "NA", - "Overall Rank": "2010", - "Last Price Change": "NA", - "Score": 104, - "Average G2D Mark": 60, - "Samples": 162 - } - ], - "gpu1608": [ - "Quadro FX 580", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "450 MHz", - "Memory Clock(s)": "1600 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "40 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro FX 580", - "Videocard First Benchmarked": "2009-04-20", - "G3DMark/Price": "1.20", - "Overall Rank": "1869", - "Last Price Change": "$130 USD (2021-05-13)", - "Score": 157, - "Average G2D Mark": 45, - "Samples": 887 - } - ], - "gpu1609": [ - "Quadro FX 5800", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "648 MHz", - "Memory Clock(s)": "1600 MHz", - "DirectX": "10.1", - "OpenGL": "3.3", - "Max TDP": "189 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro FX 5800", - "Videocard First Benchmarked": "2009-04-02", - "G3DMark/Price": "4.46", - "Overall Rank": "952", - "Last Price Change": "$274 USD (2021-12-17)", - "Score": 1223, - "Average G2D Mark": 99, - "Samples": 134 - } - ], - "gpu1611": [ - "Quadro FX 770M", - { - "Bus Interface": "PCIe 1.0 x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "500 MHz", - "Memory Clock(s)": "1600 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "35 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro FX 770M, NVIDIA Quadro FX 770M (Prerelease - WDDM 1.1), (PE64) NVIDIA Quadro FX 770M, NVIDIA Quadro FX 770M (Mobile)", - "Videocard First Benchmarked": "2009-04-06", - "G3DMark/Price": "0.32", - "Overall Rank": "1855", - "Last Price Change": "$527 USD (2014-08-02)", - "Score": 170, - "Average G2D Mark": 42, - "Samples": 306 - } - ], - "gpu1612": [ - "Quadro FX 880M", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "550 MHz", - "Memory Clock(s)": "1600 MHz", - "DirectX": "10.1", - "OpenGL": "3.3", - "Max TDP": "35 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro FX 880M, NVIDIA Quadro FX 880M (Mobile)", - "Videocard First Benchmarked": "2010-02-08", - "G3DMark/Price": "NA", - "Overall Rank": "1800", - "Last Price Change": "NA", - "Score": 215, - "Average G2D Mark": 58, - "Samples": 768 - } - ], - "gpu1614": [ - "Quadro FX Go1400", - { - "Other names": "NVIDIA Quadro FX Go1400", - "Videocard First Benchmarked": "2009-04-08", - "G3DMark/Price": "NA", - "Overall Rank": "2018", - "Last Price Change": "NA", - "Score": 102, - "Average G2D Mark": 223, - "Samples": 14 - } - ], - "gpu3721": [ - "Quadro GP100", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "16384 MB", - "Core Clock(s)": "1328 MHz", - "Memory Clock(s)": "703 MHz", - "Max TDP": "235 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro GP100", - "Videocard First Benchmarked": "2017-04-03", - "G3DMark/Price": "NA", - "Overall Rank": "88", - "Last Price Change": "NA", - "Score": 15608, - "Average G2D Mark": 821, - "Samples": 28 - } - ], - "gpu3919": [ - "Quadro GV100", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "32768 MB", - "Core Clock(s)": "1132 MHz", - "Memory Clock(s)": "1696 MHz", - "DirectX": "12", - "OpenGL": "4.6", - "Max TDP": "250 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro GV100", - "Videocard First Benchmarked": "2018-03-28", - "G3DMark/Price": "2.22", - "Overall Rank": "45", - "Last Price Change": "$8999 USD (2018-03-27)", - "Score": 20021, - "Average G2D Mark": 888, - "Samples": 27 - } - ], - "gpu1616": [ - "Quadro K1000M", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "850 MHz", - "Memory Clock(s)": "1800 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "45 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro K1000M, NVIDIA Quadro K1000M (Mobile)", - "Videocard First Benchmarked": "2012-08-21", - "G3DMark/Price": "11.20", - "Overall Rank": "1208", - "Last Price Change": "$69.95 USD (2020-03-13)", - "Score": 783, - "Average G2D Mark": 251, - "Samples": 985 - } - ], - "gpu2623": [ - "Quadro K1100M", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "716 MHz", - "Memory Clock(s)": "1400,(2800) MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "45 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro K1100M, NVIDIA Quadro K1100M (Mobile)", - "Videocard First Benchmarked": "2013-08-16", - "G3DMark/Price": "3.36", - "Overall Rank": "1008", - "Last Price Change": "$322.99 USD (2021-05-13)", - "Score": 1085, - "Average G2D Mark": 252, - "Samples": 1467 - } - ], - "gpu3193": [ - "Quadro K1200", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "4096 MB", - "Memory Clock(s)": "1250 MHz", - "DirectX": "12.0", - "OpenGL": "4.5", - "Max TDP": "45 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro K1200", - "Videocard First Benchmarked": "2015-04-20", - "G3DMark/Price": "10.19", - "Overall Rank": "531", - "Last Price Change": "$285.29 USD (2023-01-05)", - "Score": 2908, - "Average G2D Mark": 570, - "Samples": 458 - } - ], - "gpu2446": [ - "Quadro K2000", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "954 MHz", - "Memory Clock(s)": "1000,(4000) MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "51 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro K2000", - "Videocard First Benchmarked": "2013-03-14", - "G3DMark/Price": "5.34", - "Overall Rank": "845", - "Last Price Change": "$294 USD (2022-04-15)", - "Score": 1571, - "Average G2D Mark": 377, - "Samples": 1439 - } - ], - "gpu2497": [ - "Quadro K2000D", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "954 MHz", - "Memory Clock(s)": "1000,(4000) MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "51 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro K2000D", - "Videocard First Benchmarked": "2013-04-24", - "G3DMark/Price": "4.64", - "Overall Rank": "840", - "Last Price Change": "$339.99 USD (2021-12-17)", - "Score": 1577, - "Average G2D Mark": 413, - "Samples": 162 - } - ], - "gpu1617": [ - "Quadro K2000M", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "745 MHz", - "Memory Clock(s)": "1800 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "55 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro K2000M, NVIDIA Quadro K2000M (Mobile)", - "Videocard First Benchmarked": "2012-07-09", - "G3DMark/Price": "7.05", - "Overall Rank": "1042", - "Last Price Change": "$144.04 USD (2019-06-09)", - "Score": 1016, - "Average G2D Mark": 255, - "Samples": 862 - } - ], - "gpu2665": [ - "Quadro K2100M", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "654 MHz", - "Memory Clock(s)": "1500,(3000) MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "55 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro K2100M, NVIDIA Quadro K2100M (Mobile)", - "Videocard First Benchmarked": "2013-10-03", - "G3DMark/Price": "3.27", - "Overall Rank": "905", - "Last Price Change": "$415.99 USD (2021-05-13)", - "Score": 1362, - "Average G2D Mark": 282, - "Samples": 1406 - } - ], - "gpu2947": [ - "Quadro K2200", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "1000 MHz", - "Memory Clock(s)": "1250,(5000) MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "68 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro K2200", - "Videocard First Benchmarked": "2014-09-15", - "G3DMark/Price": "13.23", - "Overall Rank": "474", - "Last Price Change": "$268.3 USD (2022-04-15)", - "Score": 3548, - "Average G2D Mark": 543, - "Samples": 1871 - } - ], - "gpu3175": [ - "Quadro K2200M", - { - "Other names": "NVIDIA Quadro K2200M, NVIDIA Quadro K2200M (Mobile)", - "Videocard First Benchmarked": "2015-04-02", - "G3DMark/Price": "27.54", - "Overall Rank": "485", - "Last Price Change": "$124.95 USD (2020-03-10)", - "Score": 3441, - "Average G2D Mark": 375, - "Samples": 53 - } - ], - "gpu2213": [ - "Quadro K3000M", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "654 MHz", - "Memory Clock(s)": "2800 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "75 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro K3000M, NVIDIA Quadro K3000M (Mobile)", - "Videocard First Benchmarked": "2012-10-23", - "G3DMark/Price": "4.04", - "Overall Rank": "814", - "Last Price Change": "$407.56 USD (2021-05-13)", - "Score": 1646, - "Average G2D Mark": 337, - "Samples": 345 - } - ], - "gpu2684": [ - "Quadro K3100M", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "680 MHz", - "Memory Clock(s)": "800,(3200) MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "75 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro K3100M, NVIDIA Quadro K3100M (Mobile)", - "Videocard First Benchmarked": "2013-11-06", - "G3DMark/Price": "5.68", - "Overall Rank": "648", - "Last Price Change": "$399.95 USD (2019-10-02)", - "Score": 2271, - "Average G2D Mark": 322, - "Samples": 657 - } - ], - "gpu2272": [ - "Quadro K4000", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "3072 MB", - "Core Clock(s)": "810.5 MHz", - "Memory Clock(s)": "1404,(5616) MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "80 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro K4000", - "Videocard First Benchmarked": "2012-11-17", - "G3DMark/Price": "10.07", - "Overall Rank": "558", - "Last Price Change": "$270 USD (2022-04-15)", - "Score": 2718, - "Average G2D Mark": 418, - "Samples": 1336 - } - ], - "gpu2159": [ - "Quadro K4000M", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "600 MHz", - "Memory Clock(s)": "2800 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "100 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro K4000M, NVIDIA Quadro K4000M (Mobile)", - "Videocard First Benchmarked": "2012-10-02", - "G3DMark/Price": "7.52", - "Overall Rank": "739", - "Last Price Change": "$254 USD (2021-12-17)", - "Score": 1909, - "Average G2D Mark": 298, - "Samples": 233 - } - ], - "gpu2736": [ - "Quadro K4100M", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "706 MHz", - "Memory Clock(s)": "800,(3200) MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "100 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro K4100M, NVIDIA Quadro K4100M (Mobile)", - "Videocard First Benchmarked": "2013-12-05", - "G3DMark/Price": "10.12", - "Overall Rank": "572", - "Last Price Change": "$261.29 USD (2021-11-20)", - "Score": 2644, - "Average G2D Mark": 320, - "Samples": 276 - } - ], - "gpu2992": [ - "Quadro K420", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "780 MHz", - "Memory Clock(s)": "1800 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "41 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro K420", - "Videocard First Benchmarked": "2014-10-27", - "G3DMark/Price": "2.83", - "Overall Rank": "1230", - "Last Price Change": "$269 USD (2021-05-20)", - "Score": 761, - "Average G2D Mark": 283, - "Samples": 301 - } - ], - "gpu2944": [ - "Quadro K4200", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "780 MHz", - "Memory Clock(s)": "1350,(5400) MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "105 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro K4200", - "Videocard First Benchmarked": "2014-09-13", - "G3DMark/Price": "17.38", - "Overall Rank": "414", - "Last Price Change": "$249 USD (2021-12-21)", - "Score": 4327, - "Average G2D Mark": 507, - "Samples": 1027 - } - ], - "gpu2258": [ - "Quadro K5000", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "706 MHz", - "Memory Clock(s)": "1350,(5400) MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "122 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro K5000", - "Videocard First Benchmarked": "2012-11-07", - "G3DMark/Price": "16.01", - "Overall Rank": "432", - "Last Price Change": "$249 USD (2021-12-21)", - "Score": 3987, - "Average G2D Mark": 436, - "Samples": 575 - } - ], - "gpu1618": [ - "Quadro K5000M", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "706 MHz", - "Memory Clock(s)": "3000 MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "100 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro K5000M, NVIDIA Quadro K5000M (Mobile)", - "Videocard First Benchmarked": "2012-08-09", - "G3DMark/Price": "5.46", - "Overall Rank": "546", - "Last Price Change": "$508.91 USD (2022-04-15)", - "Score": 2780, - "Average G2D Mark": 360, - "Samples": 107 - } - ], - "gpu2798": [ - "Quadro K5100M", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "8192 MB", - "Core Clock(s)": "771 MHz", - "Memory Clock(s)": "900,(3600) MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "100 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro K5100M, NVIDIA Quadro K5100M (Mobile)", - "Videocard First Benchmarked": "2014-01-21", - "G3DMark/Price": "2.88", - "Overall Rank": "508", - "Last Price Change": "$1108.84 USD (2021-05-25)", - "Score": 3189, - "Average G2D Mark": 387, - "Samples": 142 - } - ], - "gpu2767": [ - "Quadro K510M", - { - "Bus Interface": "PCIe 3.0 x8", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "850 MHz", - "Memory Clock(s)": "1200,(2400) MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "30 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro K510M, NVIDIA Quadro K510M (Mobile)", - "Videocard First Benchmarked": "2013-12-19", - "G3DMark/Price": "NA", - "Overall Rank": "1388", - "Last Price Change": "NA", - "Score": 610, - "Average G2D Mark": 550, - "Samples": 5 - } - ], - "gpu2941": [ - "Quadro K5200", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "8192 MB", - "Core Clock(s)": "650 MHz", - "Memory Clock(s)": "1500,(6000) MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "150 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro K5200", - "Videocard First Benchmarked": "2014-09-09", - "G3DMark/Price": "14.51", - "Overall Rank": "304", - "Last Price Change": "$415 USD (2022-04-15)", - "Score": 6021, - "Average G2D Mark": 517, - "Samples": 310 - } - ], - "gpu2449": [ - "Quadro K600", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "876 MHz", - "Memory Clock(s)": "891,(1782) MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "41 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro K600", - "Videocard First Benchmarked": "2013-03-21", - "G3DMark/Price": "12.37", - "Overall Rank": "1249", - "Last Price Change": "$60.24 USD (2021-05-13)", - "Score": 745, - "Average G2D Mark": 272, - "Samples": 986 - } - ], - "gpu2666": [ - "Quadro K6000", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "12288 MB", - "Core Clock(s)": "901.5 MHz", - "Memory Clock(s)": "1502,(6008) MHz", - "DirectX": "11.2", - "OpenGL": "4.5", - "Max TDP": "225 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro K6000", - "Videocard First Benchmarked": "2013-10-04", - "G3DMark/Price": "38.26", - "Overall Rank": "232", - "Last Price Change": "$210.66 USD (2022-08-02)", - "Score": 8059, - "Average G2D Mark": 543, - "Samples": 172 - } - ], - "gpu2703": [ - "Quadro K610M", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "980 MHz", - "Memory Clock(s)": "1300,(2600) MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "30 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro K610M, NVIDIA Quadro K610M (Mobile)", - "Videocard First Benchmarked": "2014-08-25", - "G3DMark/Price": "3.00", - "Overall Rank": "1276", - "Last Price Change": "$240 USD (2021-05-13)", - "Score": 720, - "Average G2D Mark": 220, - "Samples": 153 - } - ], - "gpu2950": [ - "Quadro K620", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "1000 MHz", - "Memory Clock(s)": "900,(1800) MHz", - "DirectX": "11", - "OpenGL": "4.5", - "Max TDP": "45 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro K620, (PE64) NVIDIA Quadro K620", - "Videocard First Benchmarked": "2014-09-16", - "G3DMark/Price": "1.10", - "Overall Rank": "658", - "Last Price Change": "$2029.99 USD (2021-05-21)", - "Score": 2240, - "Average G2D Mark": 471, - "Samples": 1917 - } - ], - "gpu3148": [ - "Quadro K620M", - { - "Other names": "NVIDIA Quadro K620M, NVIDIA Quadro K620M (Mobile)", - "Videocard First Benchmarked": "2015-03-02", - "G3DMark/Price": "NA", - "Overall Rank": "976", - "Last Price Change": "NA", - "Score": 1162, - "Average G2D Mark": 158, - "Samples": 132 - } - ], - "gpu3349": [ - "Quadro M1000M", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "993 MHz", - "Memory Clock(s)": "1253 MHz", - "DirectX": "12.1", - "OpenGL": "4.5", - "Max TDP": "40 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA Quadro M1000M, NVIDIA Quadro M1000M (Mobile)", - "Videocard First Benchmarked": "2015-11-03", - "G3DMark/Price": "33.60", - "Overall Rank": "534", - "Last Price Change": "$85.99 USD (2019-12-14)", - "Score": 2889, - "Average G2D Mark": 316, - "Samples": 1489 - } - ], - "gpu3651": [ - "Quadro M1200", - { - "Max Memory Size": "4096 MB", - "Core Clock(s)": "1093 MHz", - "Memory Clock(s)": "1253 MHz", - "DirectX": "12.0", - "OpenGL": "4.5", - "Max TDP": "45 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA Quadro M1200, NVIDIA Quadro M1200 (Mobile)", - "Videocard First Benchmarked": "2017-01-19", - "G3DMark/Price": "NA", - "Overall Rank": "498", - "Last Price Change": "NA", - "Score": 3270, - "Average G2D Mark": 316, - "Samples": 878 - } - ], - "gpu3512": [ - "Quadro M2000", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "1180 MHz", - "Memory Clock(s)": "1653 MHz", - "DirectX": "12.1", - "OpenGL": "4.5", - "Max TDP": "75 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro M2000", - "Videocard First Benchmarked": "2016-05-31", - "G3DMark/Price": "15.08", - "Overall Rank": "433", - "Last Price Change": "$264.24 USD (2022-03-30)", - "Score": 3985, - "Average G2D Mark": 573, - "Samples": 793 - } - ], - "gpu3373": [ - "Quadro M2000M", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "4096 MB", - "Memory Clock(s)": "1253 MHz", - "DirectX": "12.1", - "OpenGL": "4.5", - "Max TDP": "55 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA Quadro M2000M, NVIDIA Quadro M2000M (Mobile)", - "Videocard First Benchmarked": "2015-11-25", - "G3DMark/Price": "16.19", - "Overall Rank": "482", - "Last Price Change": "$213.16 USD (2022-04-10)", - "Score": 3452, - "Average G2D Mark": 341, - "Samples": 1144 - } - ], - "gpu3732": [ - "Quadro M2200", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "1025 MHz", - "Memory Clock(s)": "1375 MHz", - "DirectX": "12.0", - "OpenGL": "4.5", - "Max TDP": "55 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA Quadro M2200, NVIDIA Quadro M2200 (Mobile)", - "Videocard First Benchmarked": "2017-04-20", - "G3DMark/Price": "17.18", - "Overall Rank": "417", - "Last Price Change": "$249.99 USD (2020-02-10)", - "Score": 4295, - "Average G2D Mark": 383, - "Samples": 594 - } - ], - "gpu3394": [ - "Quadro M3000M", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "4096 MB", - "Memory Clock(s)": "1253 MHz", - "DirectX": "12.1", - "OpenGL": "4.5", - "Max TDP": "75 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA Quadro M3000M, NVIDIA Quadro M3000M (Mobile)", - "Videocard First Benchmarked": "2015-12-20", - "G3DMark/Price": "34.46", - "Overall Rank": "325", - "Last Price Change": "$159.95 USD (2020-03-10)", - "Score": 5512, - "Average G2D Mark": 396, - "Samples": 351 - } - ], - "gpu3325": [ - "Quadro M4000", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "8192 MB", - "Core Clock(s)": "800 MHz", - "Memory Clock(s)": "1503 MHz", - "DirectX": "12.4", - "OpenGL": "4.5", - "Max TDP": "120 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro M4000", - "Videocard First Benchmarked": "2015-10-05", - "G3DMark/Price": "18.42", - "Overall Rank": "280", - "Last Price Change": "$362 USD (2022-03-30)", - "Score": 6669, - "Average G2D Mark": 688, - "Samples": 1401 - } - ], - "gpu3297": [ - "Quadro M4000M", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "4096 MB", - "Memory Clock(s)": "1253 MHz", - "DirectX": "12.1", - "OpenGL": "4.5", - "Max TDP": "100 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA Quadro M4000M, NVIDIA Quadro M4000M (Mobile)", - "Videocard First Benchmarked": "2015-08-26", - "G3DMark/Price": "24.58", - "Overall Rank": "294", - "Last Price Change": "$254.91 USD (2022-03-30)", - "Score": 6266, - "Average G2D Mark": 432, - "Samples": 126 - } - ], - "gpu3369": [ - "Quadro M5000", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "8192 MB", - "Core Clock(s)": "1050 MHz", - "Memory Clock(s)": "1653 MHz", - "DirectX": "12.4", - "OpenGL": "4.5", - "Max TDP": "150 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro M5000", - "Videocard First Benchmarked": "2015-11-24", - "G3DMark/Price": "18.80", - "Overall Rank": "200", - "Last Price Change": "$499 USD (2022-04-15)", - "Score": 9380, - "Average G2D Mark": 665, - "Samples": 270 - } - ], - "gpu3408": [ - "Quadro M5000M", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "8192 MB", - "Core Clock(s)": "962 MHz", - "Memory Clock(s)": "1253 MHz", - "DirectX": "12.1", - "OpenGL": "4.5", - "Max TDP": "100 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA Quadro M5000M, NVIDIA Quadro M5000M (Mobile)", - "Videocard First Benchmarked": "2016-01-03", - "G3DMark/Price": "12.87", - "Overall Rank": "270", - "Last Price Change": "$546.92 USD (2022-03-30)", - "Score": 7037, - "Average G2D Mark": 490, - "Samples": 198 - } - ], - "gpu3449": [ - "Quadro M500M", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "2048 MB", - "Memory Clock(s)": "1253 MHz", - "DirectX": "12.1", - "OpenGL": "4.5", - "Max TDP": "30 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA Quadro M500M, NVIDIA Quadro M500M (Mobile)", - "Videocard First Benchmarked": "2016-03-18", - "G3DMark/Price": "NA", - "Overall Rank": "971", - "Last Price Change": "NA", - "Score": 1174, - "Average G2D Mark": 188, - "Samples": 83 - } - ], - "gpu3754": [ - "Quadro M520", - { - "Max Memory Size": "2048 MB", - "Core Clock(s)": "1041 MHz", - "Memory Clock(s)": "1253 MHz", - "DirectX": "12.0", - "OpenGL": "4.5", - "Max TDP": "25 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA Quadro M520, NVIDIA Quadro M520 (Mobile)", - "Videocard First Benchmarked": "2017-05-16", - "G3DMark/Price": "NA", - "Overall Rank": "748", - "Last Price Change": "NA", - "Score": 1870, - "Average G2D Mark": 227, - "Samples": 72 - } - ], - "gpu3459": [ - "Quadro M5500", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "8192 MB", - "Core Clock(s)": "861 MHz", - "Memory Clock(s)": "1753 MHz", - "DirectX": "12.0", - "OpenGL": "4.5", - "Max TDP": "150 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA Quadro M5500", - "Videocard First Benchmarked": "2016-03-28", - "G3DMark/Price": "NA", - "Overall Rank": "238", - "Last Price Change": "NA", - "Score": 7915, - "Average G2D Mark": 698, - "Samples": 3 - } - ], - "gpu3106": [ - "Quadro M6000", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "12288 MB", - "Core Clock(s)": "988 MHz", - "Memory Clock(s)": "1653 (6612) MHz", - "DirectX": "12.0", - "OpenGL": "4.5", - "Max TDP": "250 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro M6000", - "Videocard First Benchmarked": "2015-01-12", - "G3DMark/Price": "2.42", - "Overall Rank": "156", - "Last Price Change": "$4827.53 USD (2022-09-06)", - "Score": 11705, - "Average G2D Mark": 730, - "Samples": 138 - } - ], - "gpu3544": [ - "Quadro M6000 24GB", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "24576 MB", - "Core Clock(s)": "988 MHz", - "Memory Clock(s)": "1653 MHz", - "DirectX": "12.0", - "OpenGL": "4.5", - "Max TDP": "250 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro M6000 24GB", - "Videocard First Benchmarked": "2016-07-14", - "G3DMark/Price": "NA", - "Overall Rank": "152", - "Last Price Change": "NA", - "Score": 12009, - "Average G2D Mark": 714, - "Samples": 86 - } - ], - "gpu3397": [ - "Quadro M600M", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "2048 MB", - "Memory Clock(s)": "1253 MHz", - "DirectX": "12.1", - "OpenGL": "4.5", - "Max TDP": "30 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA Quadro M600M, NVIDIA Quadro M600M (Mobile)", - "Videocard First Benchmarked": "2015-12-28", - "G3DMark/Price": "8.41", - "Overall Rank": "677", - "Last Price Change": "$251.99 USD (2021-11-20)", - "Score": 2119, - "Average G2D Mark": 350, - "Samples": 42 - } - ], - "gpu3658": [ - "Quadro M620", - { - "Max Memory Size": "2048 MB", - "Core Clock(s)": "977 MHz", - "Memory Clock(s)": "1253 MHz", - "DirectX": "12.0", - "OpenGL": "4.5", - "Max TDP": "30 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA Quadro M620, NVIDIA Quadro M620 (Mobile)", - "Videocard First Benchmarked": "2017-01-26", - "G3DMark/Price": "NA", - "Overall Rank": "541", - "Last Price Change": "NA", - "Score": 2833, - "Average G2D Mark": 413, - "Samples": 280 - } - ], - "gpu1620": [ - "Quadro NVS 110M", - { - "Bus Interface": "PCIe 1.0 x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "300 MHz", - "Memory Clock(s)": "600 MHz", - "DirectX": "9.0c", - "OpenGL": "2.1", - "Max TDP": "10 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro NVS 110M, NVIDIA Quadro NVS 110M (Prerelease - WDDM 1.0)", - "Videocard First Benchmarked": "2009-04-05", - "G3DMark/Price": "NA", - "Overall Rank": "2182", - "Last Price Change": "NA", - "Score": 48, - "Average G2D Mark": 236, - "Samples": 101 - } - ], - "gpu1621": [ - "Quadro NVS 120M", - { - "Bus Interface": "PCIe 1.0 x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "450 MHz", - "Memory Clock(s)": "700 MHz", - "DirectX": "9.0c", - "OpenGL": "2.1", - "Max TDP": "10 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro NVS 120M, NVIDIA Quadro NVS 120M (Prerelease - WDDM 1.0)", - "Videocard First Benchmarked": "2009-05-28", - "G3DMark/Price": "NA", - "Overall Rank": "2184", - "Last Price Change": "NA", - "Score": 47, - "Average G2D Mark": 274, - "Samples": 16 - } - ], - "gpu1622": [ - "Quadro NVS 130M", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "256 MB", - "Core Clock(s)": "400? MHz", - "Memory Clock(s)": "700 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "10 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro NVS 130M, NVIDIA Quadro NVS 130M (Mobile)", - "Videocard First Benchmarked": "2009-04-18", - "G3DMark/Price": "NA", - "Overall Rank": "2031", - "Last Price Change": "NA", - "Score": 97, - "Average G2D Mark": 190, - "Samples": 20 - } - ], - "gpu1623": [ - "Quadro NVS 135M", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "256 MB", - "Core Clock(s)": "400 MHz", - "Memory Clock(s)": "1188 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "10 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro NVS 135M, NVIDIA Quadro NVS 135M (Prerelease - WDDM 1.1), NVIDIA Quadro NVS 135M (Mobile)", - "Videocard First Benchmarked": "2010-02-18", - "G3DMark/Price": "NA", - "Overall Rank": "2160", - "Last Price Change": "NA", - "Score": 52, - "Average G2D Mark": 51, - "Samples": 158 - } - ], - "gpu1624": [ - "Quadro NVS 140M", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "400 MHz", - "Memory Clock(s)": "1200 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "10 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro NVS 140M, NVIDIA Quadro NVS 140M (Prerelease - WDDM 1.1), NVIDIA Quadro NVS 140M (Mobile)", - "Videocard First Benchmarked": "2009-04-03", - "G3DMark/Price": "NA", - "Overall Rank": "2114", - "Last Price Change": "NA", - "Score": 69, - "Average G2D Mark": 53, - "Samples": 297 - } - ], - "gpu1625": [ - "Quadro NVS 150M", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "256 MB", - "Core Clock(s)": "530 MHz", - "Memory Clock(s)": "1400 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "10 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro NVS 150M, NVIDIA Quadro NVS 150M (Mobile)", - "Videocard First Benchmarked": "2009-04-06", - "G3DMark/Price": "NA", - "Overall Rank": "2106", - "Last Price Change": "NA", - "Score": 70, - "Average G2D Mark": 168, - "Samples": 32 - } - ], - "gpu1626": [ - "Quadro NVS 160M", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "256 MB", - "Core Clock(s)": "580 MHz", - "Memory Clock(s)": "1400 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "12 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro NVS 160M, NVIDIA Quadro NVS 160M (Prerelease - WDDM 1.1), NVIDIA Quadro NVS 160M (Mobile)", - "Videocard First Benchmarked": "2009-04-07", - "G3DMark/Price": "NA", - "Overall Rank": "1907", - "Last Price Change": "NA", - "Score": 138, - "Average G2D Mark": 30, - "Samples": 406 - } - ], - "gpu1628": [ - "Quadro NVS 210S", - { - "Other names": "NVIDIA Quadro NVS 210S", - "Videocard First Benchmarked": "2009-11-23", - "G3DMark/Price": "NA", - "Overall Rank": "2289", - "Last Price Change": "NA", - "Score": 24, - "Average G2D Mark": 265, - "Samples": 13 - } - ], - "gpu1629": [ - "Quadro NVS 210S / GeForce 6150LE", - { - "Other names": "NVIDIA Quadro NVS 210S / NVIDIA GeForce 6150LE, NVIDIA Quadro NVS 210S / GeForce 6150LE", - "Videocard First Benchmarked": "2009-09-09", - "G3DMark/Price": "NA", - "Overall Rank": "2298", - "Last Price Change": "NA", - "Score": 21, - "Average G2D Mark": 272, - "Samples": 9 - } - ], - "gpu1631": [ - "Quadro NVS 280 PCI", - { - "Other names": "NVIDIA Quadro NVS 280 PCI", - "Videocard First Benchmarked": "2009-04-06", - "G3DMark/Price": "0.06", - "Overall Rank": "2339", - "Last Price Change": "$130 USD (2021-05-13)", - "Score": 8, - "Average G2D Mark": 261, - "Samples": 1 - } - ], - "gpu1632": [ - "Quadro NVS 280 SD", - { - "Other names": "NVIDIA Quadro NVS 280 SD", - "Videocard First Benchmarked": "2009-05-19", - "G3DMark/Price": "NA", - "Overall Rank": "2469", - "Last Price Change": "NA", - "Score": 2, - "Average G2D Mark": 119, - "Samples": 2 - } - ], - "gpu1633": [ - "Quadro NVS 285", - { - "Other names": "NVIDIA Quadro NVS 285, NVIDIA Quadro NVS 285 (Prerelease - WDDM 1.0)", - "Videocard First Benchmarked": "2012-03-15", - "G3DMark/Price": "0.25", - "Overall Rank": "2201", - "Last Price Change": "$169.86 USD (2021-05-13)", - "Score": 42, - "Average G2D Mark": 127, - "Samples": 145 - } - ], - "gpu1634": [ - "Quadro NVS 285 128MB", - { - "Other names": "NVIDIA Quadro NVS 285 128MB", - "Videocard First Benchmarked": "2009-10-15", - "G3DMark/Price": "0.70", - "Overall Rank": "2221", - "Last Price Change": "$55 USD (2011-03-08)", - "Score": 38, - "Average G2D Mark": 313, - "Samples": 5 - } - ], - "gpu1635": [ - "Quadro NVS 290", - { - "Other names": "NVIDIA Quadro NVS 290", - "Videocard First Benchmarked": "2009-04-03", - "G3DMark/Price": "3.83", - "Overall Rank": "1787", - "Last Price Change": "$59 USD (2021-05-13)", - "Score": 226, - "Average G2D Mark": 51, - "Samples": 367 - } - ], - "gpu1636": [ - "Quadro NVS 295", - { - "Bus Interface": "PCI-Express x1/x16", - "Max Memory Size": "256 MB", - "Core Clock(s)": "550 MHz", - "Memory Clock(s)": "1400 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "23 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro NVS 295", - "Videocard First Benchmarked": "2009-04-18", - "G3DMark/Price": "1.27", - "Overall Rank": "2083", - "Last Price Change": "$63 USD (2021-05-13)", - "Score": 80, - "Average G2D Mark": 48, - "Samples": 325 - } - ], - "gpu1638": [ - "Quadro NVS 320M", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "575 MHz", - "Memory Clock(s)": "1400 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "20 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro NVS 320M, NVIDIA Quadro NVS 320M (Prerelease - WDDM 1.1), NVIDIA Quadro NVS 320M (Mobile)", - "Videocard First Benchmarked": "2009-09-11", - "G3DMark/Price": "NA", - "Overall Rank": "1811", - "Last Price Change": "NA", - "Score": 208, - "Average G2D Mark": 84, - "Samples": 45 - } - ], - "gpu1640": [ - "Quadro NVS 420", - { - "Other names": "NVIDIA Quadro NVS 420", - "Videocard First Benchmarked": "2009-06-25", - "G3DMark/Price": "0.47", - "Overall Rank": "2109", - "Last Price Change": "$150 USD (2021-05-13)", - "Score": 70, - "Average G2D Mark": 186, - "Samples": 41 - } - ], - "gpu1641": [ - "Quadro NVS 440", - { - "Other names": "NVIDIA Quadro NVS 440", - "Videocard First Benchmarked": "2009-04-24", - "G3DMark/Price": "0.16", - "Overall Rank": "2225", - "Last Price Change": "$228.87 USD (2022-04-15)", - "Score": 38, - "Average G2D Mark": 358, - "Samples": 21 - } - ], - "gpu1642": [ - "Quadro NVS 450", - { - "Other names": "NVIDIA Quadro NVS 450", - "Videocard First Benchmarked": "2009-04-02", - "G3DMark/Price": "0.42", - "Overall Rank": "2124", - "Last Price Change": "$159 USD (2021-05-13)", - "Score": 67, - "Average G2D Mark": 89, - "Samples": 79 - } - ], - "gpu1643": [ - "Quadro NVS 510M", - { - "Bus Interface": "PCIe 1.0 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "500 MHz", - "Memory Clock(s)": "1200 MHz", - "DirectX": "9.0c", - "OpenGL": "2.1", - "Max TDP": "45 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro NVS 510M", - "Videocard First Benchmarked": "2010-02-28", - "G3DMark/Price": "NA", - "Overall Rank": "1764", - "Last Price Change": "NA", - "Score": 254, - "Average G2D Mark": 317, - "Samples": 1 - } - ], - "gpu1644": [ - "Quadro NVS 55/280 PCI", - { - "Other names": "NVIDIA Quadro NVS 55/280 PCI", - "Videocard First Benchmarked": "2009-05-06", - "G3DMark/Price": "NA", - "Overall Rank": "2360", - "Last Price Change": "NA", - "Score": 6, - "Average G2D Mark": 116, - "Samples": 2 - } - ], - "gpu3727": [ - "Quadro P1000", - { - "Bus Interface": "PCI Express 3.0 x16", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "1354 MHz", - "Memory Clock(s)": "1752 MHz", - "DirectX": "12.0", - "OpenGL": "4.5", - "Max TDP": "47 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro P1000, NVIDIA Quadro P1000 (Mobile)", - "Videocard First Benchmarked": "2017-04-10", - "G3DMark/Price": "15.31", - "Overall Rank": "407", - "Last Price Change": "$289.99 USD (2023-04-11)", - "Score": 4438, - "Average G2D Mark": 608, - "Samples": 1777 - } - ], - "gpu3712": [ - "Quadro P2000", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "5120 MB", - "Core Clock(s)": "1370 MHz", - "Memory Clock(s)": "2002 MHz", - "DirectX": "12", - "OpenGL": "4.5", - "Max TDP": "75 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro P2000, NVIDIA Quadro P2000 (Mobile)", - "Videocard First Benchmarked": "2017-03-27", - "G3DMark/Price": "15.75", - "Overall Rank": "275", - "Last Price Change": "$439.6 USD (2023-06-09)", - "Score": 6922, - "Average G2D Mark": 647, - "Samples": 2248 - } - ], - "gpu3982": [ - "Quadro P2000 with Max-Q Design", - { - "Other names": "NVIDIA Quadro P2000 with Max-Q Design, NVIDIA Quadro P2000 with Max-Q Design (Mobile)", - "Videocard First Benchmarked": "2018-09-10", - "G3DMark/Price": "NA", - "Overall Rank": "355", - "Last Price Change": "NA", - "Score": 5172, - "Average G2D Mark": 459, - "Samples": 97 - } - ], - "gpu4133": [ - "Quadro P2200", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "5120 MB", - "DirectX": "12", - "OpenGL": "4.6", - "Max TDP": "75 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro P2200", - "Videocard First Benchmarked": "2019-08-22", - "G3DMark/Price": "20.39", - "Overall Rank": "201", - "Last Price Change": "$459.8 USD (2022-08-20)", - "Score": 9374, - "Average G2D Mark": 932, - "Samples": 804 - } - ], - "gpu3688": [ - "Quadro P3000", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "6144 MB", - "Core Clock(s)": "1088 MHz", - "Memory Clock(s)": "1752 MHz", - "DirectX": "12", - "Max TDP": "75 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA Quadro P3000, NVIDIA Quadro P3000 (Mobile)", - "Videocard First Benchmarked": "2017-02-24", - "G3DMark/Price": "NA", - "Overall Rank": "281", - "Last Price Change": "NA", - "Score": 6614, - "Average G2D Mark": 447, - "Samples": 197 - } - ], - "gpu3942": [ - "Quadro P3200", - { - "Other names": "NVIDIA Quadro P3200, NVIDIA Quadro P3200 (Mobile)", - "Videocard First Benchmarked": "2018-05-29", - "G3DMark/Price": "23.43", - "Overall Rank": "205", - "Last Price Change": "$389.3 USD (2022-04-10)", - "Score": 9122, - "Average G2D Mark": 457, - "Samples": 318 - } - ], - "gpu3963": [ - "Quadro P3200 with Max-Q Design", - { - "Other names": "NVIDIA Quadro P3200 with Max-Q Design, NVIDIA Quadro P3200 with Max-Q Design (Mobile)", - "Videocard First Benchmarked": "2018-08-02", - "G3DMark/Price": "NA", - "Overall Rank": "206", - "Last Price Change": "NA", - "Score": 9113, - "Average G2D Mark": 547, - "Samples": 93 - } - ], - "gpu3807": [ - "Quadro P400", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "1070 MHz", - "Memory Clock(s)": "1752 MHz", - "DirectX": "12.1", - "OpenGL": "4.5", - "Max TDP": "30 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro P400", - "Videocard First Benchmarked": "2017-08-29", - "G3DMark/Price": "7.96", - "Overall Rank": "833", - "Last Price Change": "$201.17 USD (2022-03-30)", - "Score": 1601, - "Average G2D Mark": 415, - "Samples": 480 - } - ], - "gpu3719": [ - "Quadro P4000", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "8192 MB", - "Core Clock(s)": "1227 MHz", - "Memory Clock(s)": "1502 MHz", - "DirectX": "12.1", - "OpenGL": "4.5", - "Max TDP": "105 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro P4000, NVIDIA Quadro P4000 (Mobile)", - "Videocard First Benchmarked": "2017-03-31", - "G3DMark/Price": "20.96", - "Overall Rank": "158", - "Last Price Change": "$556.19 USD (2022-03-30)", - "Score": 11655, - "Average G2D Mark": 831, - "Samples": 1990 - } - ], - "gpu3829": [ - "Quadro P4000 with Max-Q Design", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "16384 MB", - "Core Clock(s)": "1113 MHz", - "Memory Clock(s)": "1501 MHz", - "DirectX": "12.1", - "Max TDP": "80 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA Quadro P4000 with Max-Q Design", - "Videocard First Benchmarked": "2017-10-12", - "G3DMark/Price": "NA", - "Overall Rank": "207", - "Last Price Change": "NA", - "Score": 9083, - "Average G2D Mark": 700, - "Samples": 2 - } - ], - "gpu3959": [ - "Quadro P4200", - { - "Bus Interface": "MXM-B (3.0)", - "Max Memory Size": "8192 MB", - "Core Clock(s)": "1227 MHz", - "Memory Clock(s)": "6008 MHz", - "DirectX": "12", - "OpenGL": "4.6", - "Max TDP": "100 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro P4200, NVIDIA Quadro P4200 (Mobile)", - "Videocard First Benchmarked": "2018-07-26", - "G3DMark/Price": "NA", - "Overall Rank": "173", - "Last Price Change": "NA", - "Score": 10445, - "Average G2D Mark": 511, - "Samples": 72 - } - ], - "gpu3999": [ - "Quadro P4200 with Max-Q Design", - { - "Bus Interface": "MXM-B (3.0)", - "DirectX": "12", - "OpenGL": "4.6", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro P4200 with Max-Q Design, NVIDIA Quadro P4200 with Max-Q Design (Mobile)", - "Videocard First Benchmarked": "2018-10-17", - "G3DMark/Price": "NA", - "Overall Rank": "164", - "Last Price Change": "NA", - "Score": 11163, - "Average G2D Mark": 621, - "Samples": 43 - } - ], - "gpu3911": [ - "Quadro P500", - { - "Other names": "NVIDIA Quadro P500, NVIDIA Quadro P500 (Mobile)", - "Videocard First Benchmarked": "2018-03-13", - "G3DMark/Price": "NA", - "Overall Rank": "831", - "Last Price Change": "NA", - "Score": 1603, - "Average G2D Mark": 242, - "Samples": 106 - } - ], - "gpu3607": [ - "Quadro P5000", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "16384 MB", - "Core Clock(s)": "1607 MHz", - "Memory Clock(s)": "1126 MHz", - "DirectX": "12.1", - "OpenGL": "4.5", - "Max TDP": "180 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro P5000, NVIDIA Quadro P5000 (Mobile)", - "Videocard First Benchmarked": "2016-11-25", - "G3DMark/Price": "6.58", - "Overall Rank": "147", - "Last Price Change": "$1868.99 USD (2022-04-15)", - "Score": 12305, - "Average G2D Mark": 680, - "Samples": 702 - } - ], - "gpu4126": [ - "Quadro P520", - { - "Other names": "NVIDIA Quadro P520 (Mobile), NVIDIA Quadro P520", - "Videocard First Benchmarked": "2019-08-01", - "G3DMark/Price": "1.41", - "Overall Rank": "682", - "Last Price Change": "$1499 USD (2020-03-16)", - "Score": 2107, - "Average G2D Mark": 245, - "Samples": 230 - } - ], - "gpu3888": [ - "Quadro P5200", - { - "Videocard Category": "Mobile", - "Other names": "NVIDIA Quadro P5200, NVIDIA Quadro P5200 (Mobile)", - "Videocard First Benchmarked": "2018-01-19", - "G3DMark/Price": "NA", - "Overall Rank": "144", - "Last Price Change": "NA", - "Score": 12461, - "Average G2D Mark": 642, - "Samples": 113 - } - ], - "gpu3996": [ - "Quadro P5200 with Max-Q Design", - { - "Other names": "NVIDIA Quadro P5200 with Max-Q Design, NVIDIA Quadro P5200 with Max-Q Design (Mobile)", - "Videocard First Benchmarked": "2018-10-04", - "G3DMark/Price": "NA", - "Overall Rank": "141", - "Last Price Change": "NA", - "Score": 12608, - "Average G2D Mark": 488, - "Samples": 24 - } - ], - "gpu3729": [ - "Quadro P600", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "1354 MHz", - "Memory Clock(s)": "1752 MHz", - "DirectX": "12.0", - "OpenGL": "4.5", - "Max TDP": "40 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro P600, NVIDIA Quadro P600 (Mobile)", - "Videocard First Benchmarked": "2017-04-13", - "G3DMark/Price": "15.42", - "Overall Rank": "499", - "Last Price Change": "$211.83 USD (2023-12-26)", - "Score": 3266, - "Average G2D Mark": 476, - "Samples": 636 - } - ], - "gpu3597": [ - "Quadro P6000", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "24000 MB", - "Core Clock(s)": "1417 MHz", - "Memory Clock(s)": "1126 MHz", - "DirectX": "12.1", - "OpenGL": "4.5", - "Max TDP": "250 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro P6000", - "Videocard First Benchmarked": "2016-10-28", - "G3DMark/Price": "4.59", - "Overall Rank": "99", - "Last Price Change": "$3250 USD (2021-05-13)", - "Score": 14927, - "Average G2D Mark": 687, - "Samples": 96 - } - ], - "gpu3954": [ - "Quadro P620", - { - "Bus Interface": "PCI Express 3.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "1266 MHz", - "Memory Clock(s)": "1003 MHz", - "DirectX": "12.0", - "OpenGL": "4.5", - "Max TDP": "40 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro P620, NVIDIA Quadro P620 (Mobile)", - "Videocard First Benchmarked": "2018-06-30", - "G3DMark/Price": "6.27", - "Overall Rank": "468", - "Last Price Change": "$574.55 USD (2023-08-01)", - "Score": 3603, - "Average G2D Mark": 564, - "Samples": 958 - } - ], - "gpu4119": [ - "Quadro RTX 3000", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "6144 MB", - "Core Clock(s)": "945 MHz", - "Memory Clock(s)": "1750 MHz", - "DirectX": "12.0", - "OpenGL": "4.6", - "Max TDP": "80 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA Quadro RTX 3000 (Mobile), NVIDIA Quadro RTX 3000", - "Videocard First Benchmarked": "2019-07-15", - "G3DMark/Price": "NA", - "Overall Rank": "165", - "Last Price Change": "NA", - "Score": 11157, - "Average G2D Mark": 523, - "Samples": 648 - } - ], - "gpu4152": [ - "Quadro RTX 3000 with Max-Q Design", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "6144 MB", - "Core Clock(s)": "600 MHz", - "Memory Clock(s)": "14000 MHz", - "DirectX": "12", - "OpenGL": "4.6", - "Max TDP": "60 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA Quadro RTX 3000 with Max-Q Design (Mobile), NVIDIA Quadro RTX 3000 with Max-Q Design", - "Videocard First Benchmarked": "2019-10-10", - "G3DMark/Price": "NA", - "Overall Rank": "222", - "Last Price Change": "NA", - "Score": 8419, - "Average G2D Mark": 345, - "Samples": 88 - } - ], - "gpu4053": [ - "Quadro RTX 4000", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "8192 MB", - "Core Clock(s)": "1005 MHz", - "Memory Clock(s)": "1625 MHz", - "DirectX": "12.0", - "OpenGL": "4.6", - "Max TDP": "160 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro RTX 4000", - "Videocard First Benchmarked": "2019-02-15", - "G3DMark/Price": "17.22", - "Overall Rank": "93", - "Last Price Change": "$899 USD (2018-11-13)", - "Score": 15481, - "Average G2D Mark": 890, - "Samples": 1115 - } - ], - "gpu4148": [ - "Quadro RTX 4000 (Mobile)", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "8192 MB", - "Core Clock(s)": "1110 MHz", - "Memory Clock(s)": "1750 MHz", - "DirectX": "12.0", - "OpenGL": "4.6", - "Max TDP": "110 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA Quadro RTX 4000 (Mobile)", - "Videocard First Benchmarked": "2019-07-15", - "G3DMark/Price": "NA", - "Overall Rank": "138", - "Last Price Change": "NA", - "Score": 12723, - "Average G2D Mark": 551, - "Samples": 152 - } - ], - "gpu4161": [ - "Quadro RTX 4000 with Max-Q Design", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "8192 MB", - "Core Clock(s)": "780 MHz", - "Memory Clock(s)": "13000 MHz", - "DirectX": "12.1", - "OpenGL": "4.6", - "Max TDP": "80 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA Quadro RTX 4000 with Max-Q Design (Mobile)", - "Videocard First Benchmarked": "2019-11-14", - "G3DMark/Price": "NA", - "Overall Rank": "142", - "Last Price Change": "NA", - "Score": 12570, - "Average G2D Mark": 564, - "Samples": 64 - } - ], - "gpu4040": [ - "Quadro RTX 5000", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "16384 MB", - "Core Clock(s)": "1620 MHz", - "Memory Clock(s)": "1750 MHz", - "DirectX": "12.0", - "OpenGL": "4.6", - "Max TDP": "230 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro RTX 5000, NVIDIA Quadro RTX 5000 (Mobile)", - "Videocard First Benchmarked": "2019-01-30", - "G3DMark/Price": "NA", - "Overall Rank": "83", - "Last Price Change": "NA", - "Score": 16039, - "Average G2D Mark": 752, - "Samples": 433 - } - ], - "gpu4147": [ - "Quadro RTX 5000 (Mobile)", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "16384 MB", - "Core Clock(s)": "1035 MHz", - "Memory Clock(s)": "1750 MHz", - "DirectX": "12.0", - "OpenGL": "4.6", - "Max TDP": "110 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA Quadro RTX 5000 (Mobile)", - "Videocard First Benchmarked": "2019-07-03", - "G3DMark/Price": "NA", - "Overall Rank": "102", - "Last Price Change": "NA", - "Score": 14832, - "Average G2D Mark": 705, - "Samples": 66 - } - ], - "gpu4144": [ - "Quadro RTX 5000 with Max-Q Design", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "16384 MB", - "Core Clock(s)": "600 MHz", - "Memory Clock(s)": "1750 MHz", - "DirectX": "12.0", - "OpenGL": "4.6", - "Max TDP": "80 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA Quadro RTX 5000 with Max-Q Design (Mobile)", - "Videocard First Benchmarked": "2019-09-19", - "G3DMark/Price": "NA", - "Overall Rank": "121", - "Last Price Change": "NA", - "Score": 13591, - "Average G2D Mark": 582, - "Samples": 101 - } - ], - "gpu4015": [ - "Quadro RTX 6000", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "24576 MB", - "Core Clock(s)": "1440 MHz", - "Memory Clock(s)": "1750 MHz", - "DirectX": "12.0", - "OpenGL": "4.6", - "Max TDP": "295 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro RTX 6000, NVIDIA Quadro RTX 6000 (Mobile)", - "Videocard First Benchmarked": "2018-11-15", - "G3DMark/Price": "3.04", - "Overall Rank": "56", - "Last Price Change": "$6300 USD (2018-08-13)", - "Score": 19135, - "Average G2D Mark": 815, - "Samples": 148 - } - ], - "gpu4061": [ - "Quadro RTX 8000", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "49152 MB", - "Core Clock(s)": "1395 MHz", - "Memory Clock(s)": "1750 MHz", - "DirectX": "12.0", - "OpenGL": "4.6", - "Max TDP": "260 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro RTX 8000", - "Videocard First Benchmarked": "2019-03-14", - "G3DMark/Price": "4.10", - "Overall Rank": "53", - "Last Price Change": "$4741.49 USD (2020-02-11)", - "Score": 19447, - "Average G2D Mark": 885, - "Samples": 55 - } - ], - "gpu4124": [ - "Quadro T1000", - { - "Videocard Category": "Mobile", - "Other names": "NVIDIA Quadro T1000, NVIDIA Quadro T1000 (Mobile)", - "Videocard First Benchmarked": "2019-07-28", - "G3DMark/Price": "17.58", - "Overall Rank": "282", - "Last Price Change": "$375.94 USD (2023-12-01)", - "Score": 6608, - "Average G2D Mark": 428, - "Samples": 652 - } - ], - "gpu4295": [ - "Quadro T1000 with Max-Q Design", - { - "Videocard Category": "Mobile", - "Other names": "NVIDIA Quadro T1000 with Max-Q Design (Mobile)", - "Videocard First Benchmarked": "2020-09-29", - "G3DMark/Price": "NA", - "Overall Rank": "279", - "Last Price Change": "NA", - "Score": 6684, - "Average G2D Mark": 437, - "Samples": 129 - } - ], - "gpu4113": [ - "Quadro T2000", - { - "Videocard Category": "Mobile", - "Other names": "NVIDIA Quadro T2000 (Mobile), NVIDIA Quadro T2000", - "Videocard First Benchmarked": "2019-07-08", - "G3DMark/Price": "13.58", - "Overall Rank": "265", - "Last Price Change": "$528.35 USD (2022-04-10)", - "Score": 7176, - "Average G2D Mark": 461, - "Samples": 620 - } - ], - "gpu4218": [ - "Quadro T2000 with Max-Q Design", - { - "Videocard Category": "Mobile", - "Other names": "NVIDIA Quadro T2000 with Max-Q Design (Mobile)", - "Videocard First Benchmarked": "2020-06-26", - "G3DMark/Price": "NA", - "Overall Rank": "274", - "Last Price Change": "NA", - "Score": 6949, - "Average G2D Mark": 437, - "Samples": 186 - } - ], - "gpu1647": [ - "Quadro2 MXR/EX", - { - "Bus Interface": "AGP 4x", - "Max Memory Size": "64 MB", - "Core Clock(s)": "175 MHz", - "Memory Clock(s)": "183 MHz", - "DirectX": "7", - "OpenGL": "1.2", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro2 MXR/EX", - "Videocard First Benchmarked": "2010-03-06", - "G3DMark/Price": "NA", - "Overall Rank": "2402", - "Last Price Change": "NA", - "Score": 5, - "Average G2D Mark": 142, - "Samples": 1 - } - ], - "gpu1648": [ - "Quadro2 Pro", - { - "Bus Interface": "AGP 4x", - "Max Memory Size": "64 MB", - "Core Clock(s)": "250 MHz", - "Memory Clock(s)": "400 MHz", - "DirectX": "7", - "OpenGL": "1.2", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Quadro2 Pro", - "Videocard First Benchmarked": "2009-04-23", - "G3DMark/Price": "NA", - "Overall Rank": "2485", - "Last Price Change": "NA", - "Score": 1, - "Average G2D Mark": 143, - "Samples": 3 - } - ], - "gpu1649": [ - "Quadro4 380 XGL", - { - "Other names": "NVIDIA Quadro4 380 XGL", - "Videocard First Benchmarked": "2009-07-07", - "G3DMark/Price": "NA", - "Overall Rank": "2352", - "Last Price Change": "NA", - "Score": 7, - "Average G2D Mark": 225, - "Samples": 6 - } - ], - "gpu1657": [ - "Quadro4 900 XGL", - { - "Other names": "NVIDIA Quadro4 900 XGL", - "Videocard First Benchmarked": "2009-06-24", - "G3DMark/Price": "NA", - "Overall Rank": "2385", - "Last Price Change": "NA", - "Score": 5, - "Average G2D Mark": 194, - "Samples": 1 - } - ], - "gpu1658": [ - "Quadro4 980 XGL", - { - "Other names": "NVIDIA Quadro4 980 XGL", - "Videocard First Benchmarked": "2009-04-05", - "G3DMark/Price": "0.01", - "Overall Rank": "2383", - "Last Price Change": "$341.43 USD (2015-11-07)", - "Score": 5, - "Average G2D Mark": 181, - "Samples": 2 - } - ], - "gpu4363": [ - "Qualcomm Adreno 540 GPU", - { - "Other names": "Qualcomm( R ) Adreno( TM ) 540 GPU", - "Videocard First Benchmarked": "2021-03-06", - "G3DMark/Price": "NA", - "Overall Rank": "1957", - "Last Price Change": "NA", - "Score": 119, - "Average G2D Mark": 54, - "Samples": 5 - } - ], - "gpu4368": [ - "Qualcomm Adreno 618 GPU", - { - "Other names": "Qualcomm(R) Adreno(TM) 618 GPU", - "Videocard First Benchmarked": "2021-03-16", - "G3DMark/Price": "NA", - "Overall Rank": "1936", - "Last Price Change": "NA", - "Score": 125, - "Average G2D Mark": 64, - "Samples": 58 - } - ], - "gpu4034": [ - "Qualcomm Adreno 630 GPU", - { - "Other names": "Qualcomm(R) Adreno(TM) 630 GPU", - "Videocard First Benchmarked": "2019-01-02", - "G3DMark/Price": "NA", - "Overall Rank": "1733", - "Last Price Change": "NA", - "Score": 283, - "Average G2D Mark": 104, - "Samples": 19 - } - ], - "gpu4561": [ - "Qualcomm Adreno 675 GPU", - { - "Other names": "Qualcomm(R) Adreno(TM) 675 GPU", - "Videocard First Benchmarked": "2022-07-04", - "G3DMark/Price": "NA", - "Overall Rank": "1486", - "Last Price Change": "NA", - "Score": 540, - "Average G2D Mark": 81, - "Samples": 5 - } - ], - "gpu4344": [ - "Qualcomm Adreno 680 GPU", - { - "Other names": "Qualcomm(R) Adreno(TM) 680 GPU", - "Videocard First Benchmarked": "2021-02-16", - "G3DMark/Price": "NA", - "Overall Rank": "1333", - "Last Price Change": "NA", - "Score": 653, - "Average G2D Mark": 87, - "Samples": 89 - } - ], - "gpu4563": [ - "Qualcomm Adreno 685 GPU", - { - "Other names": "Qualcomm(R) Adreno(TM) 685 GPU", - "Videocard First Benchmarked": "2022-07-10", - "G3DMark/Price": "NA", - "Overall Rank": "1123", - "Last Price Change": "NA", - "Score": 893, - "Average G2D Mark": 262, - "Samples": 3 - } - ], - "gpu4499": [ - "Qualcomm Adreno 690 GPU", - { - "Other names": "Qualcomm(R) Adreno(TM) 690 GPU", - "Videocard First Benchmarked": "2022-02-04", - "G3DMark/Price": "NA", - "Overall Rank": "1068", - "Last Price Change": "NA", - "Score": 973, - "Average G2D Mark": 91, - "Samples": 13 - } - ], - "gpu4960": [ - "Qualcomm Adreno 7c Gen 3 GPU", - { - "Other names": "Qualcomm(R) Adreno(TM) 7c Gen 3 GPU", - "Videocard First Benchmarked": "2023-12-05", - "G3DMark/Price": "NA", - "Overall Rank": "1243", - "Last Price Change": "NA", - "Score": 749, - "Average G2D Mark": 155, - "Samples": 2 - } - ], - "gpu4838": [ - "Qualcomm Adreno 7c+ Gen 3", - { - "Other names": "Qualcomm(R) Adreno(TM) 7c+ Gen 3", - "Videocard First Benchmarked": "2023-06-07", - "G3DMark/Price": "NA", - "Overall Rank": "1412", - "Last Price Change": "NA", - "Score": 592, - "Average G2D Mark": 135, - "Samples": 3 - } - ], - "gpu4518": [ - "Qualcomm Adreno 8cx Gen 3", - { - "Other names": "Qualcomm(R) Adreno(TM) 8cx Gen 3", - "Videocard First Benchmarked": "2022-03-14", - "G3DMark/Price": "NA", - "Overall Rank": "731", - "Last Price Change": "NA", - "Score": 1935, - "Average G2D Mark": 213, - "Samples": 60 - } - ], - "gpu2946": [ - "QXL KMDOD", - { - "Other names": "QXL KMDOD", - "Videocard First Benchmarked": "2014-09-15", - "G3DMark/Price": "NA", - "Overall Rank": "2302", - "Last Price Change": "NA", - "Score": 19, - "Average G2D Mark": 203, - "Samples": 1 - } - ], - "gpu554": [ - "Radeon 2100", - { - "Other names": "ATI Radeon 2100, ATI Radeon 2100 Graphics, ATI Radeon 2100 (Microsoft Corporation - WDDM)", - "Videocard First Benchmarked": "2009-04-21", - "G3DMark/Price": "0.31", - "Overall Rank": "2140", - "Last Price Change": "$190.99 USD (2023-03-05)", - "Score": 60, - "Average G2D Mark": 286, - "Samples": 126 - } - ], - "gpu76": [ - "Radeon 3000", - { - "Other names": "ATI Radeon 3000 Graphics, ATI Radeon 3000, ATI Radeon 3000 Graphics (Engineering Sample), ATI Radeon 3000 Graphics (Engineering Sample - WDDM v1.1), ATI Radeon 3000 Graphics (Microsoft Corporation - WDDM v1.1), ATI Radeon 3000 Graphics (\u00d0\u00ba\u00d0\u00be\u00d1\u20ac\u00d0\u00bf\u00d0\u00be\u00d1\u20ac\u00d0\u00b0\u00d1\u2020\u00d0\u00b8\u00d1\u008f \u00d0\u0153\u00d0\u00b0\u00d0\u00b9\u00d0\u00ba\u00d1\u20ac\u00d0\u00be\u00d1\u0081\u00d0\u00be\u00d1\u201e\u00d1\u201a \u00e2\u20ac\u201d WDDM v1.1)", - "Videocard First Benchmarked": "2012-08-19", - "G3DMark/Price": "0.31", - "Overall Rank": "2026", - "Last Price Change": "$319 USD (2020-03-14)", - "Score": 98, - "Average G2D Mark": 414, - "Samples": 1519 - } - ], - "gpu4713": [ - "Radeon 3015e", - { - "Other names": "AMD Radeon(TM) Graphics 3015e", - "Videocard First Benchmarked": "2023-01-13", - "G3DMark/Price": "NA", - "Overall Rank": "1664", - "Last Price Change": "NA", - "Score": 364, - "Average G2D Mark": 118, - "Samples": 7 - } - ], - "gpu4684": [ - "Radeon 3020e", - { - "Other names": "AMD Radeon(TM) Graphics 3020e", - "Videocard First Benchmarked": "2022-12-28", - "G3DMark/Price": "NA", - "Overall Rank": "1570", - "Last Price Change": "NA", - "Score": 465, - "Average G2D Mark": 154, - "Samples": 17 - } - ], - "gpu105": [ - "Radeon 3100", - { - "Other names": "ATI Radeon 3100 Graphics, ATI Radeon 3100 Graphics (Engineering Sample), ATI Radeon 3100 Graphics (Engineering Sample - WDDM v1.1)", - "Videocard First Benchmarked": "2012-08-21", - "G3DMark/Price": "0.41", - "Overall Rank": "2094", - "Last Price Change": "$180.23 USD (2023-12-26)", - "Score": 74, - "Average G2D Mark": 228, - "Samples": 269 - } - ], - "gpu3797": [ - "Radeon 520", - { - "Other names": "Radeon(TM) 520, AMD Radeon (TM) 520, AMD Radeon(TM) 520, Radeon (TM) 520, Radeon 520", - "Videocard First Benchmarked": "2017-08-15", - "G3DMark/Price": "9.54", - "Overall Rank": "1141", - "Last Price Change": "$89.99 USD (2021-12-17)", - "Score": 859, - "Average G2D Mark": 209, - "Samples": 231 - } - ], - "gpu3818": [ - "Radeon 530", - { - "Other names": "Radeon(TM) 530, AMD Radeon(TM) 530, AMD Radeon (TM) 530, Radeon (TM) 530, Radeon 530", - "Videocard First Benchmarked": "2017-12-15", - "G3DMark/Price": "NA", - "Overall Rank": "1045", - "Last Price Change": "NA", - "Score": 1009, - "Average G2D Mark": 176, - "Samples": 381 - } - ], - "gpu3980": [ - "Radeon 535", - { - "Other names": "AMD Radeon(TM) 535, Radeon(TM) 535, Radeon (TM) 535", - "Videocard First Benchmarked": "2019-01-13", - "G3DMark/Price": "NA", - "Overall Rank": "1017", - "Last Price Change": "NA", - "Score": 1071, - "Average G2D Mark": 193, - "Samples": 36 - } - ], - "gpu3810": [ - "Radeon 535DX", - { - "Other names": "AMD Radeon (TM) 535DX", - "Videocard First Benchmarked": "2019-04-29", - "G3DMark/Price": "NA", - "Overall Rank": "1189", - "Last Price Change": "NA", - "Score": 807, - "Average G2D Mark": 180, - "Samples": 31 - } - ], - "gpu3803": [ - "Radeon 540", - { - "Other names": "Radeon(TM) 540 Graphics, AMD Radeon(TM) 540 Graphics, Radeon 540, AMD Radeon(TM) 540, Radeon(TM) 540", - "Videocard First Benchmarked": "2017-08-27", - "G3DMark/Price": "NA", - "Overall Rank": "908", - "Last Price Change": "NA", - "Score": 1355, - "Average G2D Mark": 250, - "Samples": 48 - } - ], - "gpu4154": [ - "Radeon 540X", - { - "Other names": "Radeon(TM) 540X, AMD Radeon(TM) 540X, RadeonT 540X, AMD Radeon 540X, Radeon (TM) 540X", - "Videocard First Benchmarked": "2019-10-14", - "G3DMark/Price": "NA", - "Overall Rank": "898", - "Last Price Change": "NA", - "Score": 1402, - "Average G2D Mark": 298, - "Samples": 50 - } - ], - "gpu4526": [ - "Radeon 550", - { - "Other names": "Radeon 550", - "Videocard First Benchmarked": "2022-03-31", - "G3DMark/Price": "16.11", - "Overall Rank": "778", - "Last Price Change": "$109.99 USD (2023-12-23)", - "Score": 1772, - "Average G2D Mark": 479, - "Samples": 3 - } - ], - "gpu4137": [ - "Radeon 550X", - { - "Other names": "AMD Radeon 550X", - "Videocard First Benchmarked": "2019-09-03", - "G3DMark/Price": "NA", - "Overall Rank": "866", - "Last Price Change": "NA", - "Score": 1494, - "Average G2D Mark": 249, - "Samples": 11 - } - ], - "gpu4759": [ - "Radeon 610M", - { - "Other names": "AMD Radeon(TM) 610M", - "Videocard First Benchmarked": "2023-07-27", - "G3DMark/Price": "NA", - "Overall Rank": "988", - "Last Price Change": "NA", - "Score": 1124, - "Average G2D Mark": 272, - "Samples": 19 - } - ], - "gpu4773": [ - "Radeon 610M Ryzen 9 7845HX", - { - "Other names": "AMD Radeon(TM) 610M Ryzen 9 7845HX", - "Videocard First Benchmarked": "2023-12-23", - "G3DMark/Price": "NA", - "Overall Rank": "35", - "Last Price Change": "NA", - "Score": 21911, - "Average G2D Mark": 989, - "Samples": 1 - } - ], - "gpu4760": [ - "Radeon 610M Ryzen 9 7945HX", - { - "Other names": "AMD Radeon(TM) 610M Ryzen 9 7945HX", - "Videocard First Benchmarked": "2023-12-07", - "G3DMark/Price": "NA", - "Overall Rank": "821", - "Last Price Change": "NA", - "Score": 1625, - "Average G2D Mark": 545, - "Samples": 1 - } - ], - "gpu4208": [ - "Radeon 620", - { - "Other names": "AMD Radeon (TM) 620", - "Videocard First Benchmarked": "2020-05-14", - "G3DMark/Price": "NA", - "Overall Rank": "1119", - "Last Price Change": "NA", - "Score": 897, - "Average G2D Mark": 205, - "Samples": 12 - } - ], - "gpu4190": [ - "Radeon 625", - { - "Other names": "AMD Radeon (TM) 625", - "Videocard First Benchmarked": "2020-12-06", - "G3DMark/Price": "NA", - "Overall Rank": "1007", - "Last Price Change": "NA", - "Score": 1091, - "Average G2D Mark": 215, - "Samples": 31 - } - ], - "gpu4221": [ - "Radeon 630", - { - "Other names": "AMD Radeon (TM) 630, AMD Radeon 630", - "Videocard First Benchmarked": "2020-07-13", - "G3DMark/Price": "NA", - "Overall Rank": "931", - "Last Price Change": "NA", - "Score": 1272, - "Average G2D Mark": 223, - "Samples": 10 - } - ], - "gpu124": [ - "Radeon 6600M", - { - "Other names": "AMD Radeon 6600M", - "Videocard First Benchmarked": "2012-08-23", - "G3DMark/Price": "NA", - "Overall Rank": "1511", - "Last Price Change": "NA", - "Score": 518, - "Average G2D Mark": 156, - "Samples": 712 - } - ], - "gpu3813": [ - "Radeon 6750M", - { - "Other names": "AMD Radeon 6750M", - "Videocard First Benchmarked": "2017-09-09", - "G3DMark/Price": "NA", - "Overall Rank": "1110", - "Last Price Change": "NA", - "Score": 911, - "Average G2D Mark": 570, - "Samples": 1 - } - ], - "gpu4884": [ - "Radeon 680M Ryzen 7 7735HS", - { - "Other names": "AMD Radeon(TM) 680M Ryzen 7 7735HS", - "Videocard First Benchmarked": "2023-07-28", - "G3DMark/Price": "NA", - "Overall Rank": "299", - "Last Price Change": "NA", - "Score": 6180, - "Average G2D Mark": 828, - "Samples": 2 - } - ], - "gpu1689": [ - "Radeon 7000 / Radeon VE", - { - "Other names": "Radeon 7000 / Radeon VE", - "Videocard First Benchmarked": "2009-08-26", - "G3DMark/Price": "NA", - "Overall Rank": "2458", - "Last Price Change": "NA", - "Score": 3, - "Average G2D Mark": 99, - "Samples": 1 - } - ], - "gpu1690": [ - "RADEON 7000 / RADEON VE Family", - { - "Other names": "RADEON 7000 / RADEON VE Family", - "Videocard First Benchmarked": "2010-06-25", - "G3DMark/Price": "NA", - "Overall Rank": "2421", - "Last Price Change": "NA", - "Score": 4, - "Average G2D Mark": 107, - "Samples": 13 - } - ], - "gpu1693": [ - "RADEON 7200", - { - "Other names": "RADEON 7200", - "Videocard First Benchmarked": "2011-01-14", - "G3DMark/Price": "0.00", - "Overall Rank": "2453", - "Last Price Change": "$599.99 USD (2020-03-10)", - "Score": 3, - "Average G2D Mark": 94, - "Samples": 1 - } - ], - "gpu4926": [ - "Radeon 740M", - { - "Other names": "AMD Radeon(TM) 740M", - "Videocard First Benchmarked": "2023-09-28", - "G3DMark/Price": "NA", - "Overall Rank": "486", - "Last Price Change": "NA", - "Score": 3437, - "Average G2D Mark": 692, - "Samples": 9 - } - ], - "gpu556": [ - "RADEON 7500", - { - "Bus Interface": "AGP 4x, PCI", - "Max Memory Size": "64 MB", - "Core Clock(s)": "290 MHz", - "Memory Clock(s)": "460 MHz", - "DirectX": "7", - "OpenGL": "1.3", - "Videocard Category": "Desktop", - "Other names": "ATI RADEON 7500, Radeon 7500", - "Videocard First Benchmarked": "2012-01-18", - "G3DMark/Price": "0.02", - "Overall Rank": "2442", - "Last Price Change": "$177.25 USD (2021-05-13)", - "Score": 3, - "Average G2D Mark": 35, - "Samples": 2 - } - ], - "gpu1695": [ - "RADEON 7500 Family", - { - "Other names": "RADEON 7500 Family", - "Videocard First Benchmarked": "2009-10-08", - "G3DMark/Price": "NA", - "Overall Rank": "2393", - "Last Price Change": "NA", - "Score": 5, - "Average G2D Mark": 125, - "Samples": 3 - } - ], - "gpu4902": [ - "Radeon 760M", - { - "Other names": "AMD Radeon 760M Graphics, AMD Radeon(TM) 760M", - "Videocard First Benchmarked": "2023-08-18", - "G3DMark/Price": "NA", - "Overall Rank": "330", - "Last Price Change": "NA", - "Score": 5394, - "Average G2D Mark": 811, - "Samples": 9 - } - ], - "gpu4818": [ - "Radeon 780M", - { - "Other names": "AMD Radeon 780M Graphics, AMD Radeon 780M, AMD Radeon (TM) 780M Graphics", - "Videocard First Benchmarked": "2023-06-05", - "G3DMark/Price": "NA", - "Overall Rank": "266", - "Last Price Change": "NA", - "Score": 7106, - "Average G2D Mark": 884, - "Samples": 426 - } - ], - "gpu1697": [ - "RADEON 8500 Family", - { - "Other names": "RADEON 8500 Family", - "Videocard First Benchmarked": "2009-09-06", - "G3DMark/Price": "NA", - "Overall Rank": "2353", - "Last Price Change": "NA", - "Score": 7, - "Average G2D Mark": 146, - "Samples": 1 - } - ], - "gpu1699": [ - "RADEON 9000", - { - "Bus Interface": "AGP 4x", - "Max Memory Size": "128 MB", - "Core Clock(s)": "200 MHz", - "Memory Clock(s)": "500 MHz", - "DirectX": "8.1", - "OpenGL": "1.4", - "Videocard Category": "Desktop", - "Other names": "RADEON 9000", - "Videocard First Benchmarked": "2009-09-27", - "G3DMark/Price": "NA", - "Overall Rank": "2397", - "Last Price Change": "NA", - "Score": 5, - "Average G2D Mark": 126, - "Samples": 1 - } - ], - "gpu1700": [ - "RADEON 9000 Family", - { - "Other names": "RADEON 9000 Family", - "Videocard First Benchmarked": "2010-02-20", - "G3DMark/Price": "NA", - "Overall Rank": "2431", - "Last Price Change": "NA", - "Score": 4, - "Average G2D Mark": 123, - "Samples": 9 - } - ], - "gpu1703": [ - "RADEON 9100 Family", - { - "Other names": "RADEON 9100 Family", - "Videocard First Benchmarked": "2009-06-29", - "G3DMark/Price": "NA", - "Overall Rank": "2359", - "Last Price Change": "NA", - "Score": 6, - "Average G2D Mark": 163, - "Samples": 3 - } - ], - "gpu557": [ - "RADEON 9100 IGP", - { - "Other names": "ATI RADEON 9100 IGP, RADEON 9100 IGP", - "Videocard First Benchmarked": "2010-09-14", - "G3DMark/Price": "NA", - "Overall Rank": "2375", - "Last Price Change": "NA", - "Score": 5, - "Average G2D Mark": 128, - "Samples": 3 - } - ], - "gpu558": [ - "RADEON 9200", - { - "Bus Interface": "AGP 8x, PCI", - "Max Memory Size": "256 MB", - "Core Clock(s)": "250 MHz", - "Memory Clock(s)": "400 MHz", - "DirectX": "8.1", - "OpenGL": "1.4", - "Videocard Category": "Desktop", - "Other names": "3DP Edition v10.04 (Radeon 9200), GIGABYTE RADEON 9200, GIGABYTE RADEON 9200 (Omega 3.8.252), GIGACUBE RADEON 9200 Game Buster VIVO, HIGHTECH EXCALIBUR RADEON 9200 VIVO, RADEON 9200, RADEON 9200 (Omega 2.6.05a), RADEON 9200 (Omega 2.6.75a), Radeon 9200 (Omega 3.8.442), SAPPHIRE RADEON 9200 ATLANTIS, SAPPHIRE RADEON 9200 ATLANTIS (Omega 3.8.252), VisionTek XTASY 9200, SAPPHIRE RADEON 9200 ATLANTIS - Secondary, GIGABYTE RADEON 9200 - Secondary, RADEON 9200 (Omega 2.6.87), RADEON 9200 Secondary (Omega 2.6.87)", - "Videocard First Benchmarked": "2009-10-08", - "G3DMark/Price": "0.02", - "Overall Rank": "2428", - "Last Price Change": "$153.63 USD (2021-05-13)", - "Score": 4, - "Average G2D Mark": 135, - "Samples": 10 - } - ], - "gpu1704": [ - "RADEON 9200 LE Family", - { - "Other names": "RADEON 9200 LE Family", - "Videocard First Benchmarked": "2010-02-18", - "G3DMark/Price": "NA", - "Overall Rank": "2462", - "Last Price Change": "NA", - "Score": 3, - "Average G2D Mark": 128, - "Samples": 13 - } - ], - "gpu1706": [ - "RADEON 9200 PRO Family", - { - "Other names": "RADEON 9200 PRO Family", - "Videocard First Benchmarked": "2011-11-15", - "G3DMark/Price": "NA", - "Overall Rank": "2454", - "Last Price Change": "NA", - "Score": 3, - "Average G2D Mark": 135, - "Samples": 41 - } - ], - "gpu1707": [ - "RADEON 9200 SE", - { - "Bus Interface": "AGP 8x, PCI", - "Max Memory Size": "256 MB", - "Core Clock(s)": "200 MHz", - "Memory Clock(s)": "333 MHz", - "DirectX": "8.1", - "OpenGL": "1.4", - "Videocard Category": "Desktop", - "Other names": "ASUS A9200SE, ASUS RADEON 9200SE, ASUS RADEON A9200SE, C.P. Technologies Inc. RADEON 9200SE, Celestica Gold Edition RADEON 9200, Diamond S80 128MB DDR Radeon 9200 SE AGP, GeCube RADEON 9200 SE 128MB Game Buster, GeCube RADEON 9200 SE Game Buster, GeCube RADEON 9200SE PCI, R9200 SE-DT, RADEON 9200 SE, RADEON 9200 SE (Omega 3.8.252), RADEON 9200 SE Family, RADEON 9200 SE SEC Family, SAPPHIRE RADEON 9200SE ATLANTIS, SAPPHIRE RADEON 9200SE ATLANTIS 128MB, Tul Corporation, RADEON 9200SE, VisionTek XTASY 9200 SE, VISIONTEK Xtasy 9200SE, VISIONTEK Xtasy 9200SE 128MB, VISIONTEK Xtasy 9200SE PCI, RADEON 9200 SERIES, RADEON 9200 SE (Omega 2.6.05a), RADEON 9200 SE Secondary (Omega 2.6.05a), SAPPHIRE RADEON 9200SE ATLANTIS - Secondary, VISIONTEK Xtasy 9200SE 128MB - Secondary, RADEON 9200 SERIES - Secondary, Celestica Gold Edition RADEON 9200 - Secondary, RADEON 9200 SE Secondary, RADEON 9200 SE Secondary (Omega 3.8.252)", - "Videocard First Benchmarked": "2010-03-24", - "G3DMark/Price": "NA", - "Overall Rank": "2465", - "Last Price Change": "NA", - "Score": 3, - "Average G2D Mark": 129, - "Samples": 78 - } - ], - "gpu1710": [ - "RADEON 9250", - { - "Bus Interface": "AGP 8x, PCI", - "Max Memory Size": "256 MB", - "Core Clock(s)": "240 MHz", - "Memory Clock(s)": "400 MHz", - "DirectX": "8.1", - "OpenGL": "1.4", - "Videocard Category": "Desktop", - "Other names": "9250 4X AGP, ASUS A9250, Diamond S85 128MB DDR Radeon 9250 PCI, Diamond S9250 PCI 256 DDR, GeCube RADEON 9250, GIGABYTE RADEON 9250, GIGABYTE RADEON 9250 128MB, HIGHTECH EXCALIBUR RADEON 9250, MSI RADEON 9250, MSI RX9250, R9250-128ADT, R9250-128CDT, RADEON 9250, SAPPHIRE RADEON 9250, Tul Corporation, RADEON 9250, VisionTek RADEON 9250 AGP, VisionTek RADEON 9250 PCI, VISIONTEK Xtasy RADEON 9250 PCI, RADEON 9250 Series, RADEON 9250 Secondary, SAPPHIRE RADEON 9250 128MB, RADEON 9250 - Secondary, RADEON 9250/9200 SERIES, Diamond S9250PCI256 DDR, Diamond S9250PCI256 DDR - Secondary, VISIONTEK Xtasy RADEON 9250 PCI - Secondary, GIGABYTE RADEON 9250 Secondary, ASUS A9250 Secondary, ASUS A9250 Series, ASUS A9250 Series Secondary, RADEON 9250/9200 SERIES - Secondary, HIGHTECH EXCALIBUR RADEON 9250 - Secondary", - "Videocard First Benchmarked": "2009-05-06", - "G3DMark/Price": "0.01", - "Overall Rank": "2463", - "Last Price Change": "$194 USD (2021-12-17)", - "Score": 3, - "Average G2D Mark": 127, - "Samples": 123 - } - ], - "gpu1711": [ - "RADEON 9500", - { - "Bus Interface": "AGP 8x", - "Max Memory Size": "128 MB", - "Core Clock(s)": "275 MHz", - "Memory Clock(s)": "540 MHz", - "DirectX": "9", - "OpenGL": "2", - "Videocard Category": "Desktop", - "Other names": "RADEON 9500, Radeon 9500 (Omega 3.8.442)", - "Videocard First Benchmarked": "2011-06-29", - "G3DMark/Price": "0.90", - "Overall Rank": "2230", - "Last Price Change": "$40.5 USD (2014-11-22)", - "Score": 36, - "Average G2D Mark": 173, - "Samples": 3 - } - ], - "gpu1713": [ - "RADEON 9500 PRO / 9700", - { - "Other names": "RADEON 9500 PRO / 9700, RADEON 9500 PRO / 9700 (Omega 3.8.252), RADEON 9500 PRO / 9700 (Omega 3.8.421), RADEON 9500 PRO / 9700 Family, RADEON 9500 PRO / 9700 - Secondary", - "Videocard First Benchmarked": "2009-04-26", - "G3DMark/Price": "NA", - "Overall Rank": "2202", - "Last Price Change": "NA", - "Score": 42, - "Average G2D Mark": 157, - "Samples": 10 - } - ], - "gpu559": [ - "RADEON 9550", - { - "Bus Interface": "AGP 8x", - "Max Memory Size": "256 MB", - "Core Clock(s)": "250 MHz", - "Memory Clock(s)": "400 MHz", - "DirectX": "9", - "OpenGL": "2", - "Videocard Category": "Desktop", - "Other names": "ASUS A9550, ASUS RADEON 9550, ASUS RADEON A9550, ATI RADEON 9550, ATI Radeon 9550 / X1050, CONNECT 3D RADEON 9550, Diamond S120 256MB DDR Radeon 9550, GeCube RADEON 9550, MSI RADEON 9550, MSI RX9550SE, R9550-128CDT, R9550-Guru, RADEON 9550, RADEON 9550 (DNA 3.0.4.9), RADEON 9550 (Omega 2.5.97), RADEON 9550 (Omega 2.6.25a), RADEON 9550 (Omega 2.6.53), RADEON 9550 (Omega 2.6.87), RADEON 9550 (Omega 3.8.252), RADEON 9550 (Omega 3.8.421), SAPPHIRE RADEON 9550, SAPPHIRE RADEON 9550 (DNA-ATi 4.4.5.10), VisionTek XTASY 9550, VISIONTEK Xtasy RADEON 9550, ATI Radeon 9550 / X1050 Series, ATI RADEON 9550 Secondary, HIGHTECH EXCALIBUR RADEON 9550SE Series, RADEON 9550 Secondary, MSI RADEON 9550 Secondary, ASUS A9550 Series, RADEON 9550 (Omega 3.8.360), ATI Radeon 9550 / X1050 Series Secondary, ATI Radeon 9550 / X1050 Series(Microsoft Corporation - WDDM), ASUS A9550 Secondary, ASUS RADEON 9550 Secondary", - "Videocard First Benchmarked": "2009-07-30", - "G3DMark/Price": "0.12", - "Overall Rank": "2237", - "Last Price Change": "$291.74 USD (2022-04-10)", - "Score": 35, - "Average G2D Mark": 145, - "Samples": 180 - } - ], - "gpu560": [ - "Radeon 9550 / X1050", - { - "Other names": "ATI Radeon 9550 / X1050 Series Secondary, RADEON 9550 Secondary, ATI Radeon 9550 / X1050 Series(Microsoft Corporation - WDDM), HIGHTECH EXCALIBUR RADEON 9550SE Series - Secondary, ASUS A9550 Series Secondary, ATI Radeon 9550 / X1050 Secondary, RADEON 9550 Secondary (Omega 3.8.360), Diamond S120 256MB DDR Radeon 9550 Secondary, ATI Radeon 9550 / X1050 Series, VISIONTEK Xtasy RADEON 9550 - Secondary, ATI Radeon 9550 Secondary, CONNECT 3D RADEON 9550 Secondary, GeCube RADEON 9550 - Secondary", - "Videocard First Benchmarked": "2010-05-02", - "G3DMark/Price": "NA", - "Overall Rank": "2267", - "Last Price Change": "NA", - "Score": 29, - "Average G2D Mark": 150, - "Samples": 40 - } - ], - "gpu1716": [ - "RADEON 9600 Family", - { - "Other names": "RADEON 9600 Family", - "Videocard First Benchmarked": "2009-04-09", - "G3DMark/Price": "NA", - "Overall Rank": "2283", - "Last Price Change": "NA", - "Score": 25, - "Average G2D Mark": 150, - "Samples": 19 - } - ], - "gpu1717": [ - "RADEON 9600 PRO", - { - "Bus Interface": "AGP 8x", - "Max Memory Size": "256 MB", - "Core Clock(s)": "400 MHz", - "Memory Clock(s)": "600 MHz", - "DirectX": "9", - "OpenGL": "2", - "Videocard Category": "Desktop", - "Other names": "GIGABYTE RADEON 9600 PRO, RADEON 9600 PRO", - "Videocard First Benchmarked": "2011-01-27", - "G3DMark/Price": "NA", - "Overall Rank": "2198", - "Last Price Change": "NA", - "Score": 43, - "Average G2D Mark": 163, - "Samples": 2 - } - ], - "gpu1718": [ - "RADEON 9600 PRO Family", - { - "Other names": "RADEON 9600 PRO Family", - "Videocard First Benchmarked": "2010-12-26", - "G3DMark/Price": "NA", - "Overall Rank": "2274", - "Last Price Change": "NA", - "Score": 27, - "Average G2D Mark": 148, - "Samples": 30 - } - ], - "gpu1722": [ - "RADEON 9600 TX Family", - { - "Other names": "RADEON 9600 TX Family", - "Videocard First Benchmarked": "2010-09-16", - "G3DMark/Price": "NA", - "Overall Rank": "2304", - "Last Price Change": "NA", - "Score": 18, - "Average G2D Mark": 138, - "Samples": 2 - } - ], - "gpu1723": [ - "RADEON 9600 XT", - { - "Bus Interface": "AGP 8x", - "Max Memory Size": "256 MB", - "Core Clock(s)": "500 MHz", - "Memory Clock(s)": "600 MHz", - "DirectX": "9", - "OpenGL": "2", - "Videocard Category": "Desktop", - "Other names": "ABIT RADEON 9600XT-VIO, ASUS A9600XT, ASUS RADEON A9600XT, C.P. Technologies Inc. RADEON 9600XT BRAVO 128MB, Diamond V9600XT256 Radeon 9600-XT, GeCube RADEON 9600XT, GeCube RADEON 9600XT 256MB, GeXCube RADEON 9600XT Game Buster, HIGHTECH RADEON 9600XT, HIGHTECH RADEON 9600XT 256MB, MSI RADEON 9600 XT, RADEON 9600 XT-4, Tul Corporation, RADEON 9600XT BRAVO, VisionTek XTASY 9600XT, Tul Corporation, RADEON 9600XT BRAVO - Secondary, HIGHTECH RADEON 9600XT- Secondary", - "Videocard First Benchmarked": "2009-12-16", - "G3DMark/Price": "NA", - "Overall Rank": "2235", - "Last Price Change": "NA", - "Score": 35, - "Average G2D Mark": 147, - "Samples": 4 - } - ], - "gpu1724": [ - "RADEON 9600SE", - { - "Other names": "ASUS A9600SE, ASUS RADEON 9600SE, ASUS RADEON 9600SE (Omega 3.8.273), ASUS RADEON 9600SE128MB, ASUS RADEON A9600SE, Celestica Gold Edition RADEON 9600SE, GeCube RADEON 9600 SE Game Buster, Hightech RADEON 9600SE, RADEON 9600 SE Family, RADEON 9600SE, SAPPHIRE RADEON 9600SE Edition, SAPPHIRE RADEON 9600SE Edition 128MB, RADEON 9600 SE SEC Family, RADEON 9600 SERIES, VISIONTEK RADEON 9600SE, VISIONTEK RADEON 9600SE - Secondary, ASUS A9600 Series, ATI RADEON 9600 Series, ATI RADEON 9600 Series Secondary", - "Videocard First Benchmarked": "2009-05-29", - "G3DMark/Price": "NA", - "Overall Rank": "2271", - "Last Price Change": "NA", - "Score": 27, - "Average G2D Mark": 143, - "Samples": 10 - } - ], - "gpu1726": [ - "RADEON 9700 PRO", - { - "Bus Interface": "AGP 8x", - "Max Memory Size": "128 MB", - "Core Clock(s)": "325 MHz", - "Memory Clock(s)": "620 MHz", - "DirectX": "9", - "OpenGL": "2", - "Videocard Category": "Desktop", - "Other names": "RADEON 9700 PRO, Radeon 9700 PRO (Omega 3.8.442), RADEON 9700 PRO - Secondary, RADEON 9700 PRO Family, RADEON 9700 PRO SEC Family, Radeon 9700 PRO Secondary (Omega 3.8.442), (PE) Radeon 9700 PRO", - "Videocard First Benchmarked": "2009-04-07", - "G3DMark/Price": "NA", - "Overall Rank": "2156", - "Last Price Change": "NA", - "Score": 54, - "Average G2D Mark": 149, - "Samples": 10 - } - ], - "gpu151": [ - "Radeon 9700 TX w/TV-Out", - { - "Other names": "128 DDR ATI Radeon 9700 TX w/TV-Out, 128 DDR ATI Radeon 9700 TX w/TV-Out Sec", - "Videocard First Benchmarked": "2011-03-17", - "G3DMark/Price": "NA", - "Overall Rank": "2195", - "Last Price Change": "NA", - "Score": 44, - "Average G2D Mark": 152, - "Samples": 2 - } - ], - "gpu1729": [ - "RADEON 9800", - { - "Bus Interface": "AGP 8x", - "Max Memory Size": "128 MB", - "Core Clock(s)": "325 MHz", - "Memory Clock(s)": "620 MHz", - "DirectX": "9", - "OpenGL": "2", - "Videocard Category": "Desktop", - "Other names": "RADEON 9800, RADEON 9800 (Omega 3.8.252), Radeon 9800 (Omega 3.8.442)", - "Videocard First Benchmarked": "2010-10-12", - "G3DMark/Price": "0.18", - "Overall Rank": "2149", - "Last Price Change": "$325 USD (2021-05-13)", - "Score": 58, - "Average G2D Mark": 191, - "Samples": 1 - } - ], - "gpu1731": [ - "RADEON 9800 PRO", - { - "Bus Interface": "AGP 8x", - "Max Memory Size": "256 MB", - "Core Clock(s)": "380 MHz", - "Memory Clock(s)": "680, 700 MHz", - "DirectX": "9", - "OpenGL": "2", - "Videocard Category": "Desktop", - "Other names": "128 DDR ATI Radeon 9800 Pro, 128MB DDR ATI Radeon 9800 Pro, RADEON 9800 PRO, RADEON 9800 PRO (Omega 3.8.330), RADEON 9800 PRO (Omega 3.8.360), Radeon 9800 PRO (Omega 3.8.442), RADEON 9800 PRO (Prerelease - WDDM 1.0), RADEON 9800 PRO (Omega 3.8.231), RADEON 9800 PRO Secondary (Omega 3.8.231)", - "Videocard First Benchmarked": "2009-09-26", - "G3DMark/Price": "NA", - "Overall Rank": "2141", - "Last Price Change": "NA", - "Score": 59, - "Average G2D Mark": 153, - "Samples": 32 - } - ], - "gpu1732": [ - "RADEON 9800 SE", - { - "Bus Interface": "AGP 8x", - "Max Memory Size": "256 MB", - "Core Clock(s)": "325, 380 MHz", - "Memory Clock(s)": "540, 680 MHz", - "DirectX": "9", - "OpenGL": "2", - "Videocard Category": "Desktop", - "Other names": "RADEON 9800 SE, RADEON 9800 SE (Omega 3.8.421), RADEON 9800 SE Secondary (Omega 3.8.421)", - "Videocard First Benchmarked": "2009-05-15", - "G3DMark/Price": "NA", - "Overall Rank": "2290", - "Last Price Change": "NA", - "Score": 24, - "Average G2D Mark": 131, - "Samples": 4 - } - ], - "gpu1734": [ - "RADEON 9800 XT", - { - "Bus Interface": "AGP 8x", - "Max Memory Size": "256 MB", - "Core Clock(s)": "412 MHz", - "Memory Clock(s)": "730 MHz", - "DirectX": "9", - "OpenGL": "2", - "Videocard Category": "Desktop", - "Other names": "256MB DDR ATI Radeon 9800 XT, MSI RADEON 9800 PRO Plus, RADEON 9800 XT, RADEON 9800 XT (Omega 2.6.53), Radeon 9800 XT (Omega 3.8.442)", - "Videocard First Benchmarked": "2009-09-15", - "G3DMark/Price": "NA", - "Overall Rank": "2152", - "Last Price Change": "NA", - "Score": 57, - "Average G2D Mark": 160, - "Samples": 8 - } - ], - "gpu4187": [ - "RADEON A9800XT", - { - "Other names": "ASUS RADEON A9800XT, ASUS RADEON A9800XT Secondary", - "Videocard First Benchmarked": "2020-01-24", - "G3DMark/Price": "NA", - "Overall Rank": "2295", - "Last Price Change": "NA", - "Score": 23, - "Average G2D Mark": 145, - "Samples": 1 - } - ], - "gpu4676": [ - "Radeon Athlon Gold 3150U", - { - "Other names": "AMD Radeon(TM) Graphics Athlon Gold 3150U", - "Videocard First Benchmarked": "2022-12-24", - "G3DMark/Price": "NA", - "Overall Rank": "1262", - "Last Price Change": "NA", - "Score": 733, - "Average G2D Mark": 246, - "Samples": 18 - } - ], - "gpu4573": [ - "Radeon Athlon Gold PRO 4150GE", - { - "Other names": "Radeon Graphics Athlon Gold PRO 4150GE", - "Videocard First Benchmarked": "2022-08-10", - "G3DMark/Price": "NA", - "Overall Rank": "842", - "Last Price Change": "NA", - "Score": 1574, - "Average G2D Mark": 613, - "Samples": 2 - } - ], - "gpu4735": [ - "Radeon Athlon PRO 3045B", - { - "Other names": "AMD Radeon(TM) Graphics Athlon PRO 3045B", - "Videocard First Benchmarked": "2023-02-03", - "G3DMark/Price": "NA", - "Overall Rank": "1465", - "Last Price Change": "NA", - "Score": 555, - "Average G2D Mark": 175, - "Samples": 3 - } - ], - "gpu4711": [ - "Radeon Athlon Silver 3050U", - { - "Other names": "AMD Radeon(TM) Graphics Athlon Silver 3050U", - "Videocard First Benchmarked": "2023-01-12", - "G3DMark/Price": "NA", - "Overall Rank": "1310", - "Last Price Change": "NA", - "Score": 679, - "Average G2D Mark": 220, - "Samples": 62 - } - ], - "gpu561": [ - "RADEON E2400", - { - "Other names": "ATI RADEON E2400", - "Videocard First Benchmarked": "2011-09-23", - "G3DMark/Price": "NA", - "Overall Rank": "2164", - "Last Price Change": "NA", - "Score": 52, - "Average G2D Mark": 287, - "Samples": 1 - } - ], - "gpu562": [ - "RADEON E4690", - { - "Other names": "ATI RADEON E4690", - "Videocard First Benchmarked": "2011-06-15", - "G3DMark/Price": "NA", - "Overall Rank": "1628", - "Last Price Change": "NA", - "Score": 405, - "Average G2D Mark": 347, - "Samples": 3 - } - ], - "gpu3364": [ - "Radeon E6460", - { - "Other names": "AMD Radeon E6460", - "Videocard First Benchmarked": "2015-11-17", - "G3DMark/Price": "NA", - "Overall Rank": "1698", - "Last Price Change": "NA", - "Score": 324, - "Average G2D Mark": 225, - "Samples": 1 - } - ], - "gpu3995": [ - "Radeon E6465", - { - "Other names": "AMD Radeon E6465", - "Videocard First Benchmarked": "2018-10-03", - "G3DMark/Price": "NA", - "Overall Rank": "1783", - "Last Price Change": "NA", - "Score": 231, - "Average G2D Mark": 354, - "Samples": 2 - } - ], - "gpu251": [ - "Radeon E6760", - { - "Other names": "AMD Radeon E6760", - "Videocard First Benchmarked": "2012-06-06", - "G3DMark/Price": "3.65", - "Overall Rank": "1133", - "Last Price Change": "$239.99 USD (2013-01-17)", - "Score": 877, - "Average G2D Mark": 485, - "Samples": 13 - } - ], - "gpu3150": [ - "Radeon E8860", - { - "Other names": "AMD Radeon E8860", - "Videocard First Benchmarked": "2015-03-03", - "G3DMark/Price": "NA", - "Overall Rank": "804", - "Last Price Change": "NA", - "Score": 1686, - "Average G2D Mark": 436, - "Samples": 12 - } - ], - "gpu3831": [ - "Radeon E8870PCIe", - { - "Other names": "AMD Radeon E8870PCIe", - "Videocard First Benchmarked": "2017-10-13", - "G3DMark/Price": "NA", - "Overall Rank": "491", - "Last Price Change": "NA", - "Score": 3368, - "Average G2D Mark": 708, - "Samples": 1 - } - ], - "gpu4281": [ - "Radeon Eng Sample: 100-000000085-40_35/24_Y", - { - "Other names": "Radeon Graphics Eng Sample: 100-000000085-40_35/24_Y", - "Videocard First Benchmarked": "2020-09-15", - "G3DMark/Price": "NA", - "Overall Rank": "883", - "Last Price Change": "NA", - "Score": 1441, - "Average G2D Mark": 554, - "Samples": 2 - } - ], - "gpu4489": [ - "Radeon Eng Sample: 100-000000262-30_Y", - { - "Other names": "AMD Radeon(TM) Graphics Eng Sample: 100-000000262-30_Y", - "Videocard First Benchmarked": "2022-01-23", - "G3DMark/Price": "NA", - "Overall Rank": "610", - "Last Price Change": "NA", - "Score": 2416, - "Average G2D Mark": 785, - "Samples": 3 - } - ], - "gpu4633": [ - "Radeon Eng Sample: 100-000000285-40_Y", - { - "Other names": "AMD Radeon(TM) Graphics Eng Sample: 100-000000285-40_Y", - "Videocard First Benchmarked": "2022-11-30", - "G3DMark/Price": "NA", - "Overall Rank": "621", - "Last Price Change": "NA", - "Score": 2365, - "Average G2D Mark": 617, - "Samples": 2 - } - ], - "gpu4784": [ - "Radeon Eng Sample: 100-000000287-40_Y", - { - "Other names": "AMD Radeon(TM) Graphics Eng Sample: 100-000000287-40_Y", - "Videocard First Benchmarked": "2023-02-23", - "G3DMark/Price": "NA", - "Overall Rank": "753", - "Last Price Change": "NA", - "Score": 1862, - "Average G2D Mark": 586, - "Samples": 2 - } - ], - "gpu4572": [ - "Radeon Eng Sample: 100-000000300-40_Y", - { - "Other names": "AMD Radeon(TM) Graphics Eng Sample: 100-000000300-40_Y", - "Videocard First Benchmarked": "2022-08-06", - "G3DMark/Price": "NA", - "Overall Rank": "569", - "Last Price Change": "NA", - "Score": 2670, - "Average G2D Mark": 747, - "Samples": 3 - } - ], - "gpu4937": [ - "Radeon Eng Sample: 100-000000371-40_42/18_Y", - { - "Other names": "AMD Radeon(TM) Graphics Eng Sample: 100-000000371-40_42/18_Y", - "Videocard First Benchmarked": "2023-10-17", - "G3DMark/Price": "NA", - "Overall Rank": "583", - "Last Price Change": "NA", - "Score": 2591, - "Average G2D Mark": 549, - "Samples": 2 - } - ], - "gpu4963": [ - "Radeon Eng Sample: 100-000000560-40_Y", - { - "Other names": "AMD Radeon(TM) Graphics Eng Sample: 100-000000560-40_Y", - "Videocard First Benchmarked": "2023-12-16", - "G3DMark/Price": "NA", - "Overall Rank": "342", - "Last Price Change": "NA", - "Score": 5295, - "Average G2D Mark": 814, - "Samples": 1 - } - ], - "gpu566": [ - "Radeon HD 2350", - { - "Bus Interface": "PCIe 1.0 x16,AGP", - "Max Memory Size": "256 MB", - "Core Clock(s)": "525 MHz", - "Memory Clock(s)": "400 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "20 W", - "Videocard Category": "Desktop", - "Other names": "ATI Radeon HD 2350", - "Videocard First Benchmarked": "2009-08-09", - "G3DMark/Price": "NA", - "Overall Rank": "2087", - "Last Price Change": "NA", - "Score": 77, - "Average G2D Mark": 262, - "Samples": 17 - } - ], - "gpu567": [ - "Radeon HD 2400", - { - "Other names": "ATI Radeon HD 2400, ASUS EAH2400 Series", - "Videocard First Benchmarked": "2012-01-24", - "G3DMark/Price": "1.37", - "Overall Rank": "1949", - "Last Price Change": "$88.2 USD (2022-04-15)", - "Score": 121, - "Average G2D Mark": 298, - "Samples": 91 - } - ], - "gpu568": [ - "Radeon HD 2400 PCI", - { - "Other names": "ATI Radeon HD 2400 PCI", - "Videocard First Benchmarked": "2009-04-24", - "G3DMark/Price": "NA", - "Overall Rank": "2317", - "Last Price Change": "NA", - "Score": 14, - "Average G2D Mark": 86, - "Samples": 3 - } - ], - "gpu569": [ - "Radeon HD 2400 Pro", - { - "Bus Interface": "PCIe 1.0 x16,AGP,PCI", - "Max Memory Size": "512 MB", - "Core Clock(s)": "525 MHz", - "Memory Clock(s)": "400 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "20 W", - "Videocard Category": "Desktop", - "Other names": "ATI Radeon HD 2400 Pro, ATI Radeon HD 2400 PRO (Prerelease - WDDM 1.1), ATI Radeon HD 2400 PRO AGP, Radeon HD 2400 PRO AGP (Omega 3.8.442), VisionTek Radeon HD2400 Pro AGP", - "Videocard First Benchmarked": "2011-10-18", - "G3DMark/Price": "NA", - "Overall Rank": "1974", - "Last Price Change": "NA", - "Score": 114, - "Average G2D Mark": 346, - "Samples": 500 - } - ], - "gpu571": [ - "Radeon HD 2400 XT", - { - "Bus Interface": "PCIe 1.0 x16", - "Max Memory Size": "256 MB", - "Core Clock(s)": "650 MHz", - "Memory Clock(s)": "500 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "25 W", - "Videocard Category": "Desktop", - "Other names": "ATI Radeon HD 2400 XT", - "Videocard First Benchmarked": "2011-12-01", - "G3DMark/Price": "NA", - "Overall Rank": "1954", - "Last Price Change": "NA", - "Score": 119, - "Average G2D Mark": 357, - "Samples": 228 - } - ], - "gpu572": [ - "Radeon HD 2600 PRO", - { - "Bus Interface": "PCIe 1.0 x16,AGP", - "Max Memory Size": "512 MB", - "Core Clock(s)": "600,600 MHz", - "Memory Clock(s)": "500,700 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "35 W", - "Videocard Category": "Desktop", - "Other names": "ATI Radeon HD 2600 PRO, ATI Radeon HD 2600 Pro (Engineering Sample), Radeon HD 2600 PRO (Omega 3.8.442)", - "Videocard First Benchmarked": "2011-10-28", - "G3DMark/Price": "1.12", - "Overall Rank": "1805", - "Last Price Change": "$188.44 USD (2021-08-28)", - "Score": 211, - "Average G2D Mark": 337, - "Samples": 300 - } - ], - "gpu573": [ - "Radeon HD 2600 Pro AGP", - { - "Other names": "ATI Radeon HD 2600 Pro AGP, ATI Radeon HD 2600 Pro AGP (Prerelease - WDDM 1.1)", - "Videocard First Benchmarked": "2011-12-28", - "G3DMark/Price": "NA", - "Overall Rank": "1989", - "Last Price Change": "NA", - "Score": 110, - "Average G2D Mark": 137, - "Samples": 12 - } - ], - "gpu574": [ - "Radeon HD 2600 XT", - { - "Bus Interface": "PCIe 1.0 x16,AGP", - "Max Memory Size": "512 MB", - "Core Clock(s)": "800,800 MHz", - "Memory Clock(s)": "8,001,100 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "45 W", - "Videocard Category": "Desktop", - "Other names": "ATI Radeon HD 2600 XT, ATI Radeon HD 2600 XT (Prerelease - WDDM 1.1), ATI Radeon HD 2600 XT AGP, Radeon HD 2600 XT (Omega 3.8.421), Radeon HD 2600 XT (Omega 3.8.442), VisionTek Radeon HD 2600 XT, AMD Radeon HD 2600 XT AGP", - "Videocard First Benchmarked": "2011-11-01", - "G3DMark/Price": "1.78", - "Overall Rank": "1734", - "Last Price Change": "$159 USD (2021-06-11)", - "Score": 283, - "Average G2D Mark": 371, - "Samples": 474 - } - ], - "gpu576": [ - "Radeon HD 2900 GT", - { - "Bus Interface": "PCIe 1.0 x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "601 MHz", - "Memory Clock(s)": "800 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "150 W", - "Videocard Category": "Desktop", - "Other names": "ATI Radeon HD 2900 GT", - "Videocard First Benchmarked": "2012-02-13", - "G3DMark/Price": "NA", - "Overall Rank": "1723", - "Last Price Change": "NA", - "Score": 292, - "Average G2D Mark": 344, - "Samples": 5 - } - ], - "gpu577": [ - "Radeon HD 2900 PRO", - { - "Bus Interface": "PCIe 1.0 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "600,600 MHz", - "Memory Clock(s)": "800,925 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "200 W", - "Videocard Category": "Desktop", - "Other names": "ATI Radeon HD 2900 PRO", - "Videocard First Benchmarked": "2011-11-22", - "G3DMark/Price": "NA", - "Overall Rank": "1367", - "Last Price Change": "NA", - "Score": 628, - "Average G2D Mark": 397, - "Samples": 18 - } - ], - "gpu578": [ - "Radeon HD 2900 XT", - { - "Bus Interface": "PCIe 1.0 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "743,743 MHz", - "Memory Clock(s)": "828,1000 MHz", - "DirectX": "10", - "OpenGL": "3.3", - "Max TDP": "215 W", - "Videocard Category": "Desktop", - "Other names": "ATI Radeon HD 2900 XT", - "Videocard First Benchmarked": "2012-04-01", - "G3DMark/Price": "NA", - "Overall Rank": "1327", - "Last Price Change": "NA", - "Score": 660, - "Average G2D Mark": 397, - "Samples": 27 - } - ], - "gpu2964": [ - "Radeon HD 3000", - { - "Other names": "ATI Radeon HD 3000", - "Videocard First Benchmarked": "2014-09-30", - "G3DMark/Price": "NA", - "Overall Rank": "2033", - "Last Price Change": "NA", - "Score": 96, - "Average G2D Mark": 264, - "Samples": 1 - } - ], - "gpu46": [ - "Radeon HD 3200", - { - "Other names": "ATI Radeon HD 3200 Graphics, ATI Radeon HD 3200 Graphics (Engineering Sample \u0013, ATI Radeon HD 3200 Graphics (Engineering Sample -, ATI Radeon HD 3200 Graphics (Engineering Sample), ATI Radeon HD 3200 Graphics (Prerelease - WDDM 1.1, ATI Radeon HD 3200 Graphics (Engineering Sample - WDDM v1.1), ATI Radeon HD 3200 Graphics (Microsoft Corporation - WDDM v1.1), ATI Radeon HD 3200 Graphics (Microsoft Corporation WDDM 1.1) , ATI Radeon HD 3200 Graphics(FLEM MOD)", - "Videocard First Benchmarked": "2012-08-17", - "G3DMark/Price": "NA", - "Overall Rank": "2070", - "Last Price Change": "NA", - "Score": 82, - "Average G2D Mark": 227, - "Samples": 1648 - } - ], - "gpu580": [ - "Radeon HD 3300", - { - "Other names": "ATI Radeon HD 3300 Graphics, ATI Radeon HD 3300 Graphics (Engineering Sample - WDDM v1.1)", - "Videocard First Benchmarked": "2009-04-02", - "G3DMark/Price": "NA", - "Overall Rank": "1933", - "Last Price Change": "NA", - "Score": 127, - "Average G2D Mark": 373, - "Samples": 162 - } - ], - "gpu581": [ - "Radeon HD 3450", - { - "Bus Interface": "PCIe 2.0 x16,AGP 8x", - "Max Memory Size": "512 MB", - "Core Clock(s)": "600 MHz", - "Memory Clock(s)": "500 MHz", - "DirectX": "10.1", - "OpenGL": "3.3", - "Max TDP": "25 W", - "Videocard Category": "Desktop", - "Other names": "ATI Radeon HD 3450, AMD Radeon HD 3450, ATI Radeon HD 3450 (Engineering Sample - WDDM v1.1)", - "Videocard First Benchmarked": "2011-10-08", - "G3DMark/Price": "1.78", - "Overall Rank": "1866", - "Last Price Change": "$89 USD (2021-08-28)", - "Score": 159, - "Average G2D Mark": 26, - "Samples": 1383 - } - ], - "gpu583": [ - "Radeon HD 3470", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "800 MHz", - "Memory Clock(s)": "950 MHz", - "DirectX": "10.1", - "OpenGL": "3.3", - "Max TDP": "30 W", - "Videocard Category": "Desktop", - "Other names": "ATI Radeon HD 3470", - "Videocard First Benchmarked": "2011-12-20", - "G3DMark/Price": "1.08", - "Overall Rank": "1956", - "Last Price Change": "$109.65 USD (2022-04-15)", - "Score": 119, - "Average G2D Mark": 62, - "Samples": 156 - } - ], - "gpu585": [ - "Radeon HD 3650 AGP", - { - "Other names": "ATI Radeon HD 3650 AGP", - "Videocard First Benchmarked": "2011-11-19", - "G3DMark/Price": "0.81", - "Overall Rank": "1878", - "Last Price Change": "$185 USD (2021-05-13)", - "Score": 150, - "Average G2D Mark": 155, - "Samples": 66 - } - ], - "gpu586": [ - "Radeon HD 3670", - { - "Other names": "ATI Radeon HD 3670", - "Videocard First Benchmarked": "2011-10-30", - "G3DMark/Price": "NA", - "Overall Rank": "1870", - "Last Price Change": "NA", - "Score": 156, - "Average G2D Mark": 50, - "Samples": 788 - } - ], - "gpu587": [ - "Radeon HD 3850", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "668 MHz", - "Memory Clock(s)": "830,900 MHz", - "DirectX": "10.1", - "OpenGL": "3.3", - "Max TDP": "75 W", - "Videocard Category": "Desktop", - "Other names": "ATI Radeon HD 3850, ATI Radeon HD 3850 (Engineering Sample - WDDM v1.1)", - "Videocard First Benchmarked": "2011-10-28", - "G3DMark/Price": "NA", - "Overall Rank": "1634", - "Last Price Change": "NA", - "Score": 397, - "Average G2D Mark": 31, - "Samples": 808 - } - ], - "gpu44": [ - "Radeon HD 3850 AGP", - { - "Bus Interface": "AGP 8x", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "668 MHz", - "Memory Clock(s)": "830,900 MHz", - "DirectX": "10.1", - "OpenGL": "3.3", - "Max TDP": "75 W", - "Videocard Category": "Desktop", - "Other names": "ATI Radeon HD 3850 AGP", - "Videocard First Benchmarked": "2012-08-17", - "G3DMark/Price": "NA", - "Overall Rank": "1603", - "Last Price Change": "NA", - "Score": 432, - "Average G2D Mark": 92, - "Samples": 50 - } - ], - "gpu588": [ - "Radeon HD 3850 X2", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "668 MHz", - "Memory Clock(s)": "828 MHz", - "DirectX": "10.1", - "OpenGL": "3.3", - "Max TDP": "349 W", - "Videocard Category": "Desktop", - "Other names": "ATI Radeon HD 3850 X2", - "Videocard First Benchmarked": "2009-09-27", - "G3DMark/Price": "NA", - "Overall Rank": "1176", - "Last Price Change": "NA", - "Score": 822, - "Average G2D Mark": 422, - "Samples": 9 - } - ], - "gpu10": [ - "Radeon HD 3870", - { - "Bus Interface": "PCIe 2.0 x16,AGP 8x", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "777,777 MHz", - "Memory Clock(s)": "900,1126 MHz", - "DirectX": "10.1", - "OpenGL": "3.3", - "Max TDP": "106 W", - "Videocard Category": "Desktop", - "Other names": "ATI Radeon HD 3870", - "Videocard First Benchmarked": "2012-08-09", - "G3DMark/Price": "7.96", - "Overall Rank": "1463", - "Last Price Change": "$69.99 USD (2022-03-30)", - "Score": 557, - "Average G2D Mark": 60, - "Samples": 829 - } - ], - "gpu589": [ - "Radeon HD 3870 X2", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "825,825 MHz", - "Memory Clock(s)": "900,1125 MHz", - "DirectX": "10.1", - "OpenGL": "3.3", - "Max TDP": "165 W", - "Videocard Category": "Desktop", - "Other names": "ATI Radeon HD 3870 X2", - "Videocard First Benchmarked": "2011-11-22", - "G3DMark/Price": "NA", - "Overall Rank": "1286", - "Last Price Change": "NA", - "Score": 709, - "Average G2D Mark": 224, - "Samples": 122 - } - ], - "gpu25": [ - "Radeon HD 4200", - { - "Bus Interface": "HT 3.0", - "Max Memory Size": "512 MB", - "Core Clock(s)": "500 MHz", - "Memory Clock(s)": "1333 MHz", - "DirectX": "10.1", - "OpenGL": "3.3", - "Videocard Category": "Desktop", - "Other names": "ATI Radeon HD 4200, ATI Radeon HD 4200 (Engineering Sample - WDDM v1.1, ATI Radeon HD 4200 (Engineering Sample), ATI Radeon HD 4200 (Microsoft Corporation - WDDM v1.1), ATI Radeon HD 4200 (Engineering Sample - WDDM v1.1)", - "Videocard First Benchmarked": "2012-08-14", - "G3DMark/Price": "NA", - "Overall Rank": "1984", - "Last Price Change": "NA", - "Score": 112, - "Average G2D Mark": 372, - "Samples": 1302 - } - ], - "gpu590": [ - "Radeon HD 4250", - { - "Bus Interface": "HT 3.0", - "Max Memory Size": "512 MB", - "Core Clock(s)": "560 MHz", - "Memory Clock(s)": "1333 MHz", - "DirectX": "10.1", - "OpenGL": "3.3", - "Videocard Category": "Desktop", - "Other names": "ATI Radeon HD 4250, ATI Radeon HD 4250 (Engineering Sample), ATI Radeon HD 4250 Graphics, ATI Radeon HD 4250 (Engineering Sample - WDDM v1.1), ATI Radeon HD 4250(Microsoft Corporation - WDDM v1.1), ATI Radeon HD 4250 (\u00d0\u00ba\u00d0\u00be\u00d1\u20ac\u00d0\u00bf\u00d0\u00be\u00d1\u20ac\u00d0\u00b0\u00d1\u2020\u00d0\u00b8\u00d1\u008f \u00d0\u0153\u00d0\u00b0\u00d0\u00b9\u00d0\u00ba\u00d1\u20ac\u00d0\u00be\u00d1\u0081\u00d0\u00be\u00d1\u201e\u00d1\u201a \u00e2\u20ac\u201d WDDM v1.1)", - "Videocard First Benchmarked": "2012-05-22", - "G3DMark/Price": "NA", - "Overall Rank": "1943", - "Last Price Change": "NA", - "Score": 123, - "Average G2D Mark": 408, - "Samples": 880 - } - ], - "gpu591": [ - "Radeon HD 4270", - { - "Other names": "ATI Radeon HD 4270", - "Videocard First Benchmarked": "2010-11-08", - "G3DMark/Price": "NA", - "Overall Rank": "1990", - "Last Price Change": "NA", - "Score": 110, - "Average G2D Mark": 303, - "Samples": 25 - } - ], - "gpu592": [ - "Radeon HD 4290", - { - "Bus Interface": "HT 3.0", - "Max Memory Size": "512 MB", - "Core Clock(s)": "700 MHz", - "Memory Clock(s)": "1333 MHz", - "DirectX": "10.1", - "OpenGL": "3.3", - "Videocard Category": "Desktop", - "Other names": "ATI Radeon HD 4290", - "Videocard First Benchmarked": "2010-03-07", - "G3DMark/Price": "NA", - "Overall Rank": "1895", - "Last Price Change": "NA", - "Score": 141, - "Average G2D Mark": 442, - "Samples": 180 - } - ], - "gpu2945": [ - "Radeon HD 4300/4500 Serisi", - { - "Other names": "ATI Radeon HD 4300/4500 Serisi", - "Videocard First Benchmarked": "2014-09-14", - "G3DMark/Price": "NA", - "Overall Rank": "1872", - "Last Price Change": "NA", - "Score": 156, - "Average G2D Mark": 347, - "Samples": 2 - } - ], - "gpu110": [ - "Radeon HD 4330", - { - "Other names": "ATI Radeon HD 4330", - "Videocard First Benchmarked": "2012-08-22", - "G3DMark/Price": "NA", - "Overall Rank": "1976", - "Last Price Change": "NA", - "Score": 113, - "Average G2D Mark": 30, - "Samples": 537 - } - ], - "gpu113": [ - "Radeon HD 4350", - { - "Bus Interface": "PCIe 2.0 x16, PCIe 2.0 x1, AGP 8", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "600 MHz", - "Memory Clock(s)": "400 MHz", - "DirectX": "10.1", - "OpenGL": "3.3", - "Max TDP": "20 W", - "Videocard Category": "Desktop", - "Other names": "ATI Radeon HD 4350, VisionTek Radeon 4350", - "Videocard First Benchmarked": "2012-08-22", - "G3DMark/Price": "1.18", - "Overall Rank": "1950", - "Last Price Change": "$102.24 USD (2021-09-09)", - "Score": 121, - "Average G2D Mark": 29, - "Samples": 2088 - } - ], - "gpu5": [ - "Radeon HD 4550", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "600 MHz", - "Memory Clock(s)": "600,800 MHz", - "DirectX": "10.1", - "OpenGL": "3.3", - "Max TDP": "20 W", - "Videocard Category": "Desktop", - "Other names": "ATI Radeon HD 4550, ATI Radeon HD 4550 (Engineering Sample - WDDM v1.1), ATI Radeon HD 4550 (\u00d0\u00ba\u00d0\u00be\u00d1\u20ac\u00d0\u00bf\u00d0\u00be\u00d1\u20ac\u00d0\u00b0\u00d1\u2020\u00d0\u00b8\u00d1\u008f \u00d0\u0153\u00d0\u00b0\u00d0\u00b9\u00d0\u00ba\u00d1\u20ac\u00d0\u00be\u00d1\u0081\u00d0\u00be\u00d1\u201e\u00d1\u201a \u00e2\u20ac\u201d WDDM v1.1), AMD Radeon HD 4550, ATI Radeon HD 4550 (Microsoft Corporation WDDM 1.1)", - "Videocard First Benchmarked": "2012-08-09", - "G3DMark/Price": "1.51", - "Overall Rank": "1780", - "Last Price Change": "$156 USD (2021-11-20)", - "Score": 236, - "Average G2D Mark": 429, - "Samples": 482 - } - ], - "gpu596": [ - "Radeon HD 4650", - { - "Bus Interface": "PCIe 2.0 x16,AGP 8x", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "600,650 MHz", - "Memory Clock(s)": "400,500,700 MHz", - "DirectX": "10.1", - "OpenGL": "3.3", - "Max TDP": "48 W", - "Videocard Category": "Desktop", - "Other names": "ATI Radeon HD 4650, ASUS AH4650 Series, AMD Radeon HD 4650", - "Videocard First Benchmarked": "2011-11-29", - "G3DMark/Price": "3.29", - "Overall Rank": "1784", - "Last Price Change": "$69.99 USD (2022-03-30)", - "Score": 230, - "Average G2D Mark": 33, - "Samples": 1535 - } - ], - "gpu597": [ - "Radeon HD 4650 AGP", - { - "Other names": "ATI Radeon HD 4650 AGP, HIS DIGITAL HD 4650 AGP, XFX Radeon HD 4650 AGP", - "Videocard First Benchmarked": "2011-08-02", - "G3DMark/Price": "NA", - "Overall Rank": "1813", - "Last Price Change": "NA", - "Score": 208, - "Average G2D Mark": 156, - "Samples": 3 - } - ], - "gpu12": [ - "Radeon HD 4670", - { - "Bus Interface": "PCIe 2.0 x16,AGP 8x", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "750,750 MHz", - "Memory Clock(s)": "400,900,1000 MHz", - "DirectX": "10.1", - "OpenGL": "3.3", - "Max TDP": "59 W", - "Videocard Category": "Desktop", - "Other names": "ATI Radeon HD 4670, ASUS EAH4670 series, AMD Radeon HD 4670", - "Videocard First Benchmarked": "2012-08-10", - "G3DMark/Price": "2.65", - "Overall Rank": "1646", - "Last Price Change": "$142.96 USD (2022-03-30)", - "Score": 380, - "Average G2D Mark": 40, - "Samples": 2083 - } - ], - "gpu601": [ - "Radeon HD 4770", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "750 MHz", - "Memory Clock(s)": "800 MHz", - "DirectX": "10.1", - "OpenGL": "3.3", - "Max TDP": "80 W", - "Videocard Category": "Desktop", - "Other names": "ATI Radeon HD 4770, ATI Radeon HD 4770 (Engineering Sample - WDDM v1.1)", - "Videocard First Benchmarked": "2011-11-17", - "G3DMark/Price": "14.91", - "Overall Rank": "1120", - "Last Price Change": "$59.99 USD (2022-03-30)", - "Score": 895, - "Average G2D Mark": 129, - "Samples": 408 - } - ], - "gpu2829": [ - "Radeon HD 4810", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "627,750 MHz", - "Memory Clock(s)": "900,900 MHz", - "DirectX": "10.1", - "OpenGL": "3.3", - "Max TDP": "95 W", - "Videocard Category": "Desktop", - "Other names": "ATI Radeon HD 4810", - "Videocard First Benchmarked": "2014-03-05", - "G3DMark/Price": "NA", - "Overall Rank": "1222", - "Last Price Change": "NA", - "Score": 769, - "Average G2D Mark": 425, - "Samples": 38 - } - ], - "gpu57": [ - "Radeon HD 4830", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "575 MHz", - "Memory Clock(s)": "900 MHz", - "DirectX": "10.1", - "OpenGL": "3.3", - "Max TDP": "95 W", - "Videocard Category": "Desktop", - "Other names": "ATI Radeon HD 4830", - "Videocard First Benchmarked": "2012-08-18", - "G3DMark/Price": "13.93", - "Overall Rank": "1159", - "Last Price Change": "$59.99 USD (2011-03-08)", - "Score": 836, - "Average G2D Mark": 66, - "Samples": 389 - } - ], - "gpu24": [ - "Radeon HD 4850", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "625 MHz", - "Memory Clock(s)": "993 MHz", - "DirectX": "10.1", - "OpenGL": "3.3", - "Max TDP": "110 W", - "Videocard Category": "Desktop", - "Other names": "ATI Radeon HD 4850", - "Videocard First Benchmarked": "2012-08-13", - "G3DMark/Price": "2.48", - "Overall Rank": "1091", - "Last Price Change": "$378 USD (2021-07-03)", - "Score": 936, - "Average G2D Mark": 86, - "Samples": 2792 - } - ], - "gpu602": [ - "Radeon HD 4850 X2", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "625 MHz", - "Memory Clock(s)": "995 MHz", - "DirectX": "10.1", - "OpenGL": "3.3", - "Max TDP": "250 W", - "Videocard Category": "Desktop", - "Other names": "ATI Radeon HD 4850 X2, AMD Radeon HD 4850 X2", - "Videocard First Benchmarked": "2012-03-11", - "G3DMark/Price": "NA", - "Overall Rank": "984", - "Last Price Change": "NA", - "Score": 1132, - "Average G2D Mark": 542, - "Samples": 39 - } - ], - "gpu30": [ - "Radeon HD 4870", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "750 MHz", - "Memory Clock(s)": "900 MHz", - "DirectX": "10.1", - "OpenGL": "3.3", - "Max TDP": "150 W", - "Videocard Category": "Desktop", - "Other names": "ATI Radeon HD 4870", - "Videocard First Benchmarked": "2012-08-15", - "G3DMark/Price": "17.11", - "Overall Rank": "903", - "Last Price Change": "$79.99 USD (2022-03-30)", - "Score": 1368, - "Average G2D Mark": 47, - "Samples": 2097 - } - ], - "gpu98": [ - "Radeon HD 4870 X2", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "700 MHz", - "Memory Clock(s)": "900 MHz", - "DirectX": "10.1", - "OpenGL": "3.3", - "Max TDP": "286 W", - "Videocard Category": "Desktop", - "Other names": "ATI Radeon HD 4870 X2, ATI Radeon HD 4870 X2 (Engineering Sample \u0013 WDDM v, AMD Radeon HD 4870 X2", - "Videocard First Benchmarked": "2012-08-21", - "G3DMark/Price": "NA", - "Overall Rank": "920", - "Last Price Change": "NA", - "Score": 1309, - "Average G2D Mark": 565, - "Samples": 209 - } - ], - "gpu42": [ - "Radeon HD 4890", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "850 MHz", - "Memory Clock(s)": "975 MHz", - "DirectX": "10.1", - "OpenGL": "3.3", - "Max TDP": "190 W", - "Videocard Category": "Desktop", - "Other names": "ATI Radeon HD 4890", - "Videocard First Benchmarked": "2012-08-17", - "G3DMark/Price": "16.82", - "Overall Rank": "861", - "Last Price Change": "$89.99 USD (2021-05-13)", - "Score": 1514, - "Average G2D Mark": 86, - "Samples": 1047 - } - ], - "gpu7": [ - "Radeon HD 5450", - { - "Bus Interface": "PCIe 2.1 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "650 MHz", - "Memory Clock(s)": "400,800 MHz", - "DirectX": "11.0", - "OpenGL": "4.4", - "Max TDP": "19.1 W", - "Videocard Category": "Desktop", - "Other names": "ATI Radeon HD 5450, ATI Radeon HD 5450 (Engineering Sample), VisionTek Radeon HD 5450, ASUS EAH5450 Series, ATI Radeon HD 5450 (Engineering Sample - WDDM v1.20), ATI Radeon HD 5450 (\u00d0\u00ba\u00d0\u00be\u00d1\u20ac\u00d0\u00bf\u00d0\u00be\u00d1\u20ac\u00d0\u00b0\u00d1\u2020\u00d0\u00b8\u00d1\u008f \u00d0\u0153\u00d0\u00b0\u00d0\u00b9\u00d0\u00ba\u00d1\u20ac\u00d0\u00be\u00d1\u0081\u00d0\u00be\u00d1\u201e\u00d1\u201a \u00e2\u20ac\u201d WDDM v1.20), AMD Radeon HD 5450", - "Videocard First Benchmarked": "2012-08-09", - "G3DMark/Price": "1.44", - "Overall Rank": "1912", - "Last Price Change": "$94.96 USD (2022-04-15)", - "Score": 136, - "Average G2D Mark": 140, - "Samples": 4547 - } - ], - "gpu3055": [ - "Radeon HD 5470", - { - "Other names": "ATI Radeon HD 5470", - "Videocard First Benchmarked": "2014-11-22", - "G3DMark/Price": "NA", - "Overall Rank": "1746", - "Last Price Change": "NA", - "Score": 268, - "Average G2D Mark": 298, - "Samples": 3 - } - ], - "gpu603": [ - "Radeon HD 5550", - { - "Bus Interface": "PCIe 2.1 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "550,550,550 MHz", - "Memory Clock(s)": "400,800,800 MHz", - "DirectX": "11", - "OpenGL": "4.4", - "Max TDP": "39 W", - "Videocard Category": "Desktop", - "Other names": "ATI Radeon HD 5550, ASUS EAH5550 Series, AMD Radeon HD 5550", - "Videocard First Benchmarked": "2010-05-01", - "G3DMark/Price": "6.85", - "Overall Rank": "1652", - "Last Price Change": "$54.99 USD (2014-03-07)", - "Score": 377, - "Average G2D Mark": 185, - "Samples": 319 - } - ], - "gpu80": [ - "Radeon HD 5570", - { - "Bus Interface": "PCIe 2.1 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "650,650 MHz", - "Memory Clock(s)": "400,900 MHz", - "DirectX": "11", - "OpenGL": "4.4", - "Max TDP": "39 W", - "Videocard Category": "Desktop", - "Other names": "ATI Radeon HD 5570, AMD Radeon HD 5570", - "Videocard First Benchmarked": "2012-08-19", - "G3DMark/Price": "2.68", - "Overall Rank": "1547", - "Last Price Change": "$179.99 USD (2023-05-10)", - "Score": 483, - "Average G2D Mark": 193, - "Samples": 1938 - } - ], - "gpu604": [ - "Radeon HD 5600/5700", - { - "Other names": "ATI Radeon HD 5600/5700, AMD Radeon HD 5600/5700", - "Videocard First Benchmarked": "2011-01-25", - "G3DMark/Price": "NA", - "Overall Rank": "1343", - "Last Price Change": "NA", - "Score": 647, - "Average G2D Mark": 277, - "Samples": 72 - } - ], - "gpu28": [ - "Radeon HD 5670", - { - "Bus Interface": "PCIe 2.1 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "775,775 MHz", - "Memory Clock(s)": "800,1000 MHz", - "DirectX": "11", - "OpenGL": "4.4", - "Max TDP": "64 W", - "Videocard Category": "Desktop", - "Other names": "ATI Radeon HD 5670, ATI Radeon HD 5670 (Engineering Sample - WDDM v1.20), AMD Radeon HD 5670", - "Videocard First Benchmarked": "2012-08-14", - "G3DMark/Price": "11.92", - "Overall Rank": "1197", - "Last Price Change": "$67 USD (2022-04-15)", - "Score": 799, - "Average G2D Mark": 284, - "Samples": 3245 - } - ], - "gpu50": [ - "Radeon HD 5750", - { - "Bus Interface": "PCIe 2.1 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "700,700 MHz", - "Memory Clock(s)": "1150,1150 MHz", - "DirectX": "11", - "OpenGL": "4.4", - "Max TDP": "86 W", - "Videocard Category": "Desktop", - "Other names": "ATI Radeon HD 5750", - "Videocard First Benchmarked": "2012-08-17", - "G3DMark/Price": "16.61", - "Overall Rank": "975", - "Last Price Change": "$69.99 USD (2022-03-30)", - "Score": 1163, - "Average G2D Mark": 334, - "Samples": 2378 - } - ], - "gpu6": [ - "Radeon HD 5770", - { - "Bus Interface": "PCIe 2.1 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "650 MHz", - "Memory Clock(s)": "400, 900 MHz", - "DirectX": "11.0", - "OpenGL": "4.4", - "Max TDP": "108 W", - "Videocard Category": "Desktop", - "Other names": "ATI Radeon HD 5770", - "Videocard First Benchmarked": "2012-08-09", - "G3DMark/Price": "7.08", - "Overall Rank": "911", - "Last Price Change": "$189.99 USD (2021-12-24)", - "Score": 1345, - "Average G2D Mark": 331, - "Samples": 7496 - } - ], - "gpu69": [ - "Radeon HD 5830", - { - "Bus Interface": "PCIe 2.1 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "800 MHz", - "Memory Clock(s)": "1000 MHz", - "DirectX": "11", - "OpenGL": "4.4", - "Max TDP": "175 W", - "Videocard Category": "Desktop", - "Other names": "ATI Radeon HD 5830", - "Videocard First Benchmarked": "2012-08-18", - "G3DMark/Price": "6.68", - "Overall Rank": "792", - "Last Price Change": "$258.99 USD (2022-04-10)", - "Score": 1730, - "Average G2D Mark": 395, - "Samples": 745 - } - ], - "gpu47": [ - "Radeon HD 5850", - { - "Bus Interface": "PCIe 2.1 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "725,725 MHz", - "Memory Clock(s)": "1000,1000 MHz", - "DirectX": "11", - "OpenGL": "4.4", - "Max TDP": "151 W", - "Videocard Category": "Desktop", - "Other names": "ATI Radeon HD 5850", - "Videocard First Benchmarked": "2012-08-17", - "G3DMark/Price": "6.86", - "Overall Rank": "716", - "Last Price Change": "$288.99 USD (2022-04-10)", - "Score": 1982, - "Average G2D Mark": 402, - "Samples": 2793 - } - ], - "gpu48": [ - "Radeon HD 5870", - { - "Bus Interface": "PCIe 2.1 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "850,850 MHz", - "Memory Clock(s)": "1200,1200 MHz", - "DirectX": "11", - "OpenGL": "4.4", - "Max TDP": "228 W", - "Videocard Category": "Desktop", - "Other names": "ATI Radeon HD 5870", - "Videocard First Benchmarked": "2012-08-18", - "G3DMark/Price": "7.52", - "Overall Rank": "665", - "Last Price Change": "$295 USD (2022-03-30)", - "Score": 2218, - "Average G2D Mark": 402, - "Samples": 2556 - } - ], - "gpu20": [ - "Radeon HD 5970", - { - "Bus Interface": "PCIe 2.1 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "725,725 MHz", - "Memory Clock(s)": "1000,1000 MHz", - "DirectX": "11", - "OpenGL": "4.4", - "Max TDP": "294 W", - "Videocard Category": "Desktop", - "Other names": "ATI Radeon HD 5970", - "Videocard First Benchmarked": "2012-08-11", - "G3DMark/Price": "12.82", - "Overall Rank": "636", - "Last Price Change": "$179.99 USD (2022-03-30)", - "Score": 2308, - "Average G2D Mark": 419, - "Samples": 532 - } - ], - "gpu2715": [ - "Radeon HD 6230", - { - "Other names": "ATI Radeon HD 6230", - "Videocard First Benchmarked": "2013-11-07", - "G3DMark/Price": "NA", - "Overall Rank": "1844", - "Last Price Change": "NA", - "Score": 179, - "Average G2D Mark": 254, - "Samples": 4 - } - ], - "gpu252": [ - "Radeon HD 6250", - { - "Bus Interface": "UNB/MC", - "Core Clock(s)": "400 MHz", - "DirectX": "11", - "OpenGL": "4.4", - "Max TDP": "35 W", - "Videocard Category": "Mobile", - "Other names": "AMD Radeon HD 6250, AMD Radeon HD 6250 Graphics", - "Videocard First Benchmarked": "2012-03-22", - "G3DMark/Price": "NA", - "Overall Rank": "2038", - "Last Price Change": "NA", - "Score": 94, - "Average G2D Mark": 30, - "Samples": 297 - } - ], - "gpu254": [ - "Radeon HD 6290", - { - "Bus Interface": "UNB/MC", - "Core Clock(s)": "400 MHz", - "DirectX": "11", - "OpenGL": "4.4", - "Max TDP": "45 W", - "Videocard Category": "Mobile", - "Other names": "AMD Radeon HD 6290 Graphics, ATI Radeon HD 6290", - "Videocard First Benchmarked": "2012-07-16", - "G3DMark/Price": "NA", - "Overall Rank": "2005", - "Last Price Change": "NA", - "Score": 105, - "Average G2D Mark": 32, - "Samples": 431 - } - ], - "gpu255": [ - "Radeon HD 6290M", - { - "Other names": "AMD Radeon HD 6290M", - "Videocard First Benchmarked": "2012-07-28", - "G3DMark/Price": "NA", - "Overall Rank": "1897", - "Last Price Change": "NA", - "Score": 140, - "Average G2D Mark": 92, - "Samples": 10 - } - ], - "gpu256": [ - "Radeon HD 6300M", - { - "Other names": "AMD Radeon HD 6300M", - "Videocard First Benchmarked": "2012-06-01", - "G3DMark/Price": "NA", - "Overall Rank": "1892", - "Last Price Change": "NA", - "Score": 143, - "Average G2D Mark": 110, - "Samples": 774 - } - ], - "gpu13": [ - "Radeon HD 6310", - { - "Bus Interface": "UNB/MC", - "Core Clock(s)": "492 MHz", - "DirectX": "11", - "OpenGL": "4.4", - "Max TDP": "45 W", - "Videocard Category": "Mobile", - "Other names": "AMD Radeon HD 6310, AMD Radeon HD 6310 Graphics, AMD Radeon HD 6310 Graphics (\u00d0\u00ba\u00d0\u00be\u00d1\u20ac\u00d0\u00bf\u00d0\u00be\u00d1\u20ac\u00d0\u00b0\u00d1\u2020\u00d0\u00b8\u00d1\u008f \u00d0\u0153\u00d0\u00b0\u00d0\u00b9\u00d0\u00ba\u00d1\u20ac\u00d0\u00be\u00d1\u0081\u00d0\u00be\u00d1\u201e\u00d1\u201a \u00e2\u20ac\u201d WDDM v1.20), Gr\u00c3\u00a1ficos AMD Radeon HD 6310", - "Videocard First Benchmarked": "2012-08-10", - "G3DMark/Price": "NA", - "Overall Rank": "1944", - "Last Price Change": "NA", - "Score": 122, - "Average G2D Mark": 36, - "Samples": 2043 - } - ], - "gpu258": [ - "Radeon HD 6320", - { - "Bus Interface": "UNB/MC", - "Core Clock(s)": "600 MHz", - "DirectX": "11", - "OpenGL": "4.4", - "Max TDP": "45 W", - "Videocard Category": "Mobile", - "Other names": "AMD Radeon HD 6320, AMD Radeon HD 6320 Graphics", - "Videocard First Benchmarked": "2011-11-01", - "G3DMark/Price": "0.27", - "Overall Rank": "1884", - "Last Price Change": "$554.99 USD (2012-10-10)", - "Score": 148, - "Average G2D Mark": 44, - "Samples": 1090 - } - ], - "gpu259": [ - "Radeon HD 6320 Graphic", - { - "Other names": "AMD Radeon HD 6320 Graphic", - "Videocard First Benchmarked": "2011-11-25", - "G3DMark/Price": "NA", - "Overall Rank": "1798", - "Last Price Change": "NA", - "Score": 216, - "Average G2D Mark": 159, - "Samples": 4 - } - ], - "gpu260": [ - "Radeon HD 6320M", - { - "Other names": "AMD Radeon HD 6320M", - "Videocard First Benchmarked": "2011-11-03", - "G3DMark/Price": "NA", - "Overall Rank": "1824", - "Last Price Change": "NA", - "Score": 198, - "Average G2D Mark": 151, - "Samples": 20 - } - ], - "gpu262": [ - "RADEON HD 6350", - { - "Bus Interface": "PCIe 2.1 x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "650 MHz", - "Memory Clock(s)": "800 MHz", - "DirectX": "11", - "OpenGL": "4.4", - "Max TDP": "19.1 W", - "Videocard Category": "Desktop", - "Other names": "AMD RADEON HD 6350, ATI Radeon HD 6350, ATI Radeon HD 6350", - "Videocard First Benchmarked": "2011-04-22", - "G3DMark/Price": "2.39", - "Overall Rank": "1894", - "Last Price Change": "$59 USD (2021-12-18)", - "Score": 141, - "Average G2D Mark": 171, - "Samples": 23 - } - ], - "gpu263": [ - "Radeon HD 6370D", - { - "Bus Interface": "UNB/MC", - "Core Clock(s)": "443 MHz", - "DirectX": "11", - "OpenGL": "4.4", - "Max TDP": "65 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon HD 6370D", - "Videocard First Benchmarked": "2011-12-16", - "G3DMark/Price": "NA", - "Overall Rank": "1762", - "Last Price Change": "NA", - "Score": 254, - "Average G2D Mark": 147, - "Samples": 38 - } - ], - "gpu264": [ - "Radeon HD 6370M", - { - "Bus Interface": "PCIe 2.1 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "750 MHz", - "Memory Clock(s)": "900 MHz", - "DirectX": "11", - "OpenGL": "4.4", - "Max TDP": "11 W", - "Videocard Category": "Mobile", - "Other names": "AMD Radeon HD 6370M, Radeon (TM) HD 6370M", - "Videocard First Benchmarked": "2010-12-02", - "G3DMark/Price": "NA", - "Overall Rank": "1740", - "Last Price Change": "NA", - "Score": 276, - "Average G2D Mark": 401, - "Samples": 11 - } - ], - "gpu265": [ - "Radeon HD 6380G", - { - "Bus Interface": "UNB/MC", - "Core Clock(s)": "400 MHz", - "DirectX": "11", - "OpenGL": "4.4", - "Max TDP": "35 W", - "Videocard Category": "Mobile", - "Other names": "AMD Radeon HD 6380G, AMD Radeon(TM) HD 6380G", - "Videocard First Benchmarked": "2012-04-17", - "G3DMark/Price": "0.50", - "Overall Rank": "1820", - "Last Price Change": "$399.99 USD (2012-11-24)", - "Score": 201, - "Average G2D Mark": 91, - "Samples": 111 - } - ], - "gpu266": [ - "Radeon HD 6410D", - { - "Bus Interface": "UNB/MC", - "Core Clock(s)": "600 MHz", - "DirectX": "11", - "OpenGL": "4.4", - "Max TDP": "65 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon HD 6410D, AMD Radeon HD 6410D Graphics", - "Videocard First Benchmarked": "2011-12-27", - "G3DMark/Price": "NA", - "Overall Rank": "1775", - "Last Price Change": "NA", - "Score": 238, - "Average G2D Mark": 118, - "Samples": 379 - } - ], - "gpu2416": [ - "Radeon HD 6430M", - { - "Bus Interface": "PCIe 2.1 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "480 MHz", - "Memory Clock(s)": "800 MHz", - "DirectX": "11", - "OpenGL": "4.4", - "Videocard Category": "Mobile", - "Other names": "AMD Radeon HD 6430M", - "Videocard First Benchmarked": "2013-02-13", - "G3DMark/Price": "NA", - "Overall Rank": "1829", - "Last Price Change": "NA", - "Score": 193, - "Average G2D Mark": 106, - "Samples": 9 - } - ], - "gpu267": [ - "Radeon HD 6450", - { - "Bus Interface": "PCIe 2.1 x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "627,750 MHz", - "Memory Clock(s)": "533,800 MHz", - "DirectX": "11", - "OpenGL": "4.4", - "Max TDP": "18 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon HD 6450, AMD Radeon HD 6450 Graphics, ASUS HD6450, ASUS EAH6450, AMD Radeon(TM) HD6450", - "Videocard First Benchmarked": "2011-10-24", - "G3DMark/Price": "2.23", - "Overall Rank": "1823", - "Last Price Change": "$89 USD (2021-12-21)", - "Score": 199, - "Average G2D Mark": 119, - "Samples": 4715 - } - ], - "gpu3724": [ - "Radeon HD 6450 + 8470D Dual", - { - "Other names": "AMD Radeon HD 6450 + 8470D Dual Graphics", - "Videocard First Benchmarked": "2017-04-06", - "G3DMark/Price": "NA", - "Overall Rank": "1229", - "Last Price Change": "NA", - "Score": 763, - "Average G2D Mark": 486, - "Samples": 1 - } - ], - "gpu268": [ - "Radeon HD 6450A", - { - "Other names": "AMD Radeon HD 6450A", - "Videocard First Benchmarked": "2012-04-06", - "G3DMark/Price": "NA", - "Overall Rank": "1754", - "Last Price Change": "NA", - "Score": 260, - "Average G2D Mark": 208, - "Samples": 8 - } - ], - "gpu107": [ - "Radeon HD 6470M", - { - "Bus Interface": "PCIe 2.1 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "700,750 MHz", - "Memory Clock(s)": "800,800 MHz", - "DirectX": "11", - "OpenGL": "4.4", - "Videocard Category": "Mobile", - "Other names": "AMD Radeon HD 6470M, Radeon (TM) HD 6470M, Radeon HD 6470M, AMD Radeon(TM) HD 6470M", - "Videocard First Benchmarked": "2012-08-21", - "G3DMark/Price": "0.40", - "Overall Rank": "1785", - "Last Price Change": "$569.99 USD (2013-01-16)", - "Score": 228, - "Average G2D Mark": 107, - "Samples": 2020 - } - ], - "gpu270": [ - "Radeon HD 6480G", - { - "Bus Interface": "UNB/MC", - "Core Clock(s)": "444 MHz", - "DirectX": "11", - "OpenGL": "4.4", - "Max TDP": "45 W", - "Videocard Category": "Mobile", - "Other names": "AMD Radeon HD 6480G, AMD Radeon(TM) HD 6480G", - "Videocard First Benchmarked": "2012-08-21", - "G3DMark/Price": "NA", - "Overall Rank": "1755", - "Last Price Change": "NA", - "Score": 260, - "Average G2D Mark": 81, - "Samples": 589 - } - ], - "gpu3234": [ - "Radeon HD 6480M", - { - "Other names": "AMD Radeon HD 6480M", - "Videocard First Benchmarked": "2015-06-30", - "G3DMark/Price": "NA", - "Overall Rank": "1670", - "Last Price Change": "NA", - "Score": 353, - "Average G2D Mark": 282, - "Samples": 1 - } - ], - "gpu271": [ - "Radeon HD 6490M", - { - "Bus Interface": "PCIe 2.1 x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "800 MHz", - "Memory Clock(s)": "800 MHz", - "DirectX": "11", - "OpenGL": "4.4", - "Videocard Category": "Mobile", - "Other names": "AMD Radeon HD 6490M, Radeon (TM) HD 6490M, Radeon HD 6490M", - "Videocard First Benchmarked": "2011-02-27", - "G3DMark/Price": "0.32", - "Overall Rank": "1648", - "Last Price Change": "$1193.03 USD (2012-10-10)", - "Score": 378, - "Average G2D Mark": 514, - "Samples": 16 - } - ], - "gpu52": [ - "Radeon HD 6520G", - { - "Bus Interface": "UNB/MC", - "Core Clock(s)": "400 MHz", - "DirectX": "11", - "OpenGL": "4.4", - "Max TDP": "45 W", - "Videocard Category": "Mobile", - "Other names": "AMD Radeon(TM) HD 6520G, AMD Radeon HD 6520G, 7900 MOD - AMD Radeon HD 6520G", - "Videocard First Benchmarked": "2012-08-17", - "G3DMark/Price": "NA", - "Overall Rank": "1719", - "Last Price Change": "NA", - "Score": 298, - "Average G2D Mark": 82, - "Samples": 1698 - } - ], - "gpu109": [ - "Radeon HD 6530D", - { - "Bus Interface": "UNB/MC", - "Core Clock(s)": "443 MHz", - "DirectX": "11", - "OpenGL": "4.4", - "Max TDP": "100 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon HD 6530D, AMD Radeon HD 6530D (Engineering Sample - WDDM v1., AMD Radeon HD 6530D (Engineering Sample), AMD Radeon HD 6530D Graphics, AMD Radeon HD 6530D (Engineering Sample - WDDM v1.20)", - "Videocard First Benchmarked": "2012-08-22", - "G3DMark/Price": "NA", - "Overall Rank": "1684", - "Last Price Change": "NA", - "Score": 337, - "Average G2D Mark": 136, - "Samples": 791 - } - ], - "gpu273": [ - "Radeon HD 6550A", - { - "Other names": "AMD Radeon HD 6550A", - "Videocard First Benchmarked": "2012-01-06", - "G3DMark/Price": "NA", - "Overall Rank": "1287", - "Last Price Change": "NA", - "Score": 708, - "Average G2D Mark": 609, - "Samples": 10 - } - ], - "gpu274": [ - "Radeon HD 6550D", - { - "Bus Interface": "UNB/MC", - "Core Clock(s)": "600 MHz", - "DirectX": "11", - "OpenGL": "4.4", - "Max TDP": "100 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon HD 6550D, AMD Radeon HD 6550D (Engineering Sample - WDDM v1., AMD Radeon HD 6550D (Engineering Sample), AMD Radeon HD 6550D Graphics, AMD Radeon HD 6550D (Engineering Sample - WDDM v1.20), 7900 MOD - AMD Radeon HD 6550D", - "Videocard First Benchmarked": "2011-08-21", - "G3DMark/Price": "NA", - "Overall Rank": "1629", - "Last Price Change": "NA", - "Score": 404, - "Average G2D Mark": 136, - "Samples": 805 - } - ], - "gpu54": [ - "Radeon HD 6570", - { - "Bus Interface": "PCIe 2.1 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "650 MHz", - "Memory Clock(s)": "900 MHz", - "DirectX": "11", - "OpenGL": "4.4", - "Max TDP": "44 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon HD 6570", - "Videocard First Benchmarked": "2012-08-18", - "G3DMark/Price": "8.60", - "Overall Rank": "1459", - "Last Price Change": "$64.99 USD (2023-02-22)", - "Score": 559, - "Average G2D Mark": 217, - "Samples": 2885 - } - ], - "gpu2285": [ - "Radeon HD 6610M", - { - "Other names": "AMD Radeon HD 6610M Graphics", - "Videocard First Benchmarked": "2012-11-21", - "G3DMark/Price": "NA", - "Overall Rank": "1454", - "Last Price Change": "NA", - "Score": 565, - "Average G2D Mark": 527, - "Samples": 26 - } - ], - "gpu40": [ - "Radeon HD 6620G", - { - "Bus Interface": "UNB/MC", - "Core Clock(s)": "444 MHz", - "DirectX": "11", - "OpenGL": "4.4", - "Max TDP": "45 W", - "Videocard Category": "Mobile", - "Other names": "AMD Radeon(TM) HD 6620G, AMD Radeon HD 6620G, AMD Radeon HD 6620G (Engineering Sample - WDDM v1., AMD Radeon HD 6620G (Engineering Sample - WDDM v1.20)", - "Videocard First Benchmarked": "2012-08-17", - "G3DMark/Price": "NA", - "Overall Rank": "1673", - "Last Price Change": "NA", - "Score": 352, - "Average G2D Mark": 105, - "Samples": 767 - } - ], - "gpu277": [ - "Radeon HD 6630M", - { - "Bus Interface": "PCIe 2.1 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "485 MHz", - "Memory Clock(s)": "800 MHz", - "DirectX": "11", - "OpenGL": "4.4", - "Videocard Category": "Mobile", - "Other names": "AMD Radeon HD 6630M, AMD Radeon 6630M Graphic, Radeon (TM) HD 6630M, AMD Radeon(TM) HD 6630M", - "Videocard First Benchmarked": "2011-05-17", - "G3DMark/Price": "NA", - "Overall Rank": "1304", - "Last Price Change": "NA", - "Score": 685, - "Average G2D Mark": 390, - "Samples": 3 - } - ], - "gpu278": [ - "Radeon HD 6650A", - { - "Other names": "AMD Radeon HD 6650A Graphics", - "Videocard First Benchmarked": "2012-01-23", - "G3DMark/Price": "NA", - "Overall Rank": "1160", - "Last Price Change": "NA", - "Score": 836, - "Average G2D Mark": 418, - "Samples": 1 - } - ], - "gpu279": [ - "Radeon HD 6650M", - { - "Bus Interface": "PCIe 2.1 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "600 MHz", - "Memory Clock(s)": "900 MHz", - "DirectX": "11", - "OpenGL": "4.4", - "Videocard Category": "Mobile", - "Other names": "AMD Radeon HD 6650M", - "Videocard First Benchmarked": "2011-01-26", - "G3DMark/Price": "NA", - "Overall Rank": "1237", - "Last Price Change": "NA", - "Score": 754, - "Average G2D Mark": 224, - "Samples": 108 - } - ], - "gpu96": [ - "Radeon HD 6670", - { - "Bus Interface": "PCIe 2.1 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "800,800 MHz", - "Memory Clock(s)": "800,1000 MHz", - "DirectX": "11", - "OpenGL": "4.4", - "Max TDP": "66 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon HD 6670, AMD Radeon HD 6670 (Engineering Sample), AMD Radeon HD 6670 (Engineering Sample - WDDM v1.20)", - "Videocard First Benchmarked": "2012-08-21", - "G3DMark/Price": "10.57", - "Overall Rank": "1265", - "Last Price Change": "$68.99 USD (2022-03-30)", - "Score": 729, - "Average G2D Mark": 241, - "Samples": 5282 - } - ], - "gpu2357": [ - "Radeon HD 6670 + 6670 Dual", - { - "Other names": "AMD Radeon HD 6670 + 6670 Dual Graphics", - "Videocard First Benchmarked": "2013-01-09", - "G3DMark/Price": "NA", - "Overall Rank": "1342", - "Last Price Change": "NA", - "Score": 647, - "Average G2D Mark": 552, - "Samples": 2 - } - ], - "gpu3178": [ - "Radeon HD 6670 + 7660D Dual", - { - "Other names": "AMD Radeon HD 6670 + 7660D Dual Graphics", - "Videocard First Benchmarked": "2015-04-05", - "G3DMark/Price": "NA", - "Overall Rank": "867", - "Last Price Change": "NA", - "Score": 1492, - "Average G2D Mark": 483, - "Samples": 1 - } - ], - "gpu3633": [ - "Radeon HD 6670/7670", - { - "Other names": "(PE64) AMD Radeon HD 6670/7670", - "Videocard First Benchmarked": "2016-12-28", - "G3DMark/Price": "NA", - "Overall Rank": "1083", - "Last Price Change": "NA", - "Score": 946, - "Average G2D Mark": 320, - "Samples": 1 - } - ], - "gpu280": [ - "Radeon HD 6700M", - { - "Other names": "AMD Radeon HD 6700M", - "Videocard First Benchmarked": "2012-08-21", - "G3DMark/Price": "NA", - "Overall Rank": "1041", - "Last Price Change": "NA", - "Score": 1017, - "Average G2D Mark": 523, - "Samples": 1011 - } - ], - "gpu282": [ - "Radeon HD 6750", - { - "Bus Interface": "PCIe 2.1 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "700,700 MHz", - "Memory Clock(s)": "1150,1150 MHz", - "DirectX": "11", - "OpenGL": "4.4", - "Max TDP": "86 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon HD 6750", - "Videocard First Benchmarked": "2011-04-28", - "G3DMark/Price": "13.04", - "Overall Rank": "1030", - "Last Price Change": "$79.99 USD (2022-03-30)", - "Score": 1043, - "Average G2D Mark": 271, - "Samples": 724 - } - ], - "gpu283": [ - "Radeon HD 6750M", - { - "Bus Interface": "PCIe 2.1 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "600 MHz", - "Memory Clock(s)": "800,900 MHz", - "DirectX": "11", - "OpenGL": "4.4", - "Videocard Category": "Mobile", - "Other names": "AMD Radeon HD 6750M, ATI Radeon HD 6750m, Radeon (TM) HD 6750M", - "Videocard First Benchmarked": "2011-02-26", - "G3DMark/Price": "NA", - "Overall Rank": "1089", - "Last Price Change": "NA", - "Score": 937, - "Average G2D Mark": 487, - "Samples": 12 - } - ], - "gpu284": [ - "Radeon HD 6770", - { - "Bus Interface": "PCIe 2.1 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "850,850 MHz", - "Memory Clock(s)": "1200,1050 MHz", - "DirectX": "11", - "OpenGL": "4.4", - "Max TDP": "108 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon HD 6770, ASUS EAH6770 Series", - "Videocard First Benchmarked": "2011-04-29", - "G3DMark/Price": "4.70", - "Overall Rank": "938", - "Last Price Change": "$264.99 USD (2022-04-10)", - "Score": 1247, - "Average G2D Mark": 307, - "Samples": 2686 - } - ], - "gpu285": [ - "Radeon HD 6770M", - { - "Bus Interface": "PCIe 2.1 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "725 MHz", - "Memory Clock(s)": "900 MHz", - "DirectX": "11", - "OpenGL": "4.4", - "Videocard Category": "Mobile", - "Other names": "AMD Radeon HD 6770M, Radeon (TM) HD 6770M", - "Videocard First Benchmarked": "2011-05-21", - "G3DMark/Price": "NA", - "Overall Rank": "1073", - "Last Price Change": "NA", - "Score": 964, - "Average G2D Mark": 572, - "Samples": 10 - } - ], - "gpu286": [ - "Radeon HD 6790", - { - "Bus Interface": "PCIe 2.1 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "840 MHz", - "Memory Clock(s)": "1050 MHz", - "DirectX": "11", - "OpenGL": "4.4", - "Max TDP": "150 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon HD 6700, AMD Radeon HD 6790", - "Videocard First Benchmarked": "2011-04-20", - "G3DMark/Price": "5.47", - "Overall Rank": "828", - "Last Price Change": "$294 USD (2021-12-17)", - "Score": 1608, - "Average G2D Mark": 373, - "Samples": 848 - } - ], - "gpu287": [ - "Radeon HD 6800M", - { - "Other names": "AMD Radeon HD 6800M", - "Videocard First Benchmarked": "2012-02-09", - "G3DMark/Price": "NA", - "Overall Rank": "1196", - "Last Price Change": "NA", - "Score": 799, - "Average G2D Mark": 231, - "Samples": 202 - } - ], - "gpu45": [ - "Radeon HD 6850", - { - "Bus Interface": "PCIe 2.1 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "775 MHz", - "Memory Clock(s)": "1000 MHz", - "DirectX": "11", - "OpenGL": "4.4", - "Max TDP": "127 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon HD 6850, ATI Radeon HD 6850, ASUS EAH6850 Series", - "Videocard First Benchmarked": "2012-08-17", - "G3DMark/Price": "23.22", - "Overall Rank": "719", - "Last Price Change": "$85 USD (2022-03-30)", - "Score": 1974, - "Average G2D Mark": 433, - "Samples": 6726 - } - ], - "gpu3684": [ - "Radeon HD 6850 X2", - { - "Other names": "AMD Radeon HD 6850 X2", - "Videocard First Benchmarked": "2017-02-20", - "G3DMark/Price": "NA", - "Overall Rank": "590", - "Last Price Change": "NA", - "Score": 2534, - "Average G2D Mark": 373, - "Samples": 1 - } - ], - "gpu22": [ - "Radeon HD 6870", - { - "Bus Interface": "PCIe 2.1 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "900 MHz", - "Memory Clock(s)": "1050 MHz", - "DirectX": "11", - "OpenGL": "4.4", - "Max TDP": "151 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon HD 6870, ATI Radeon HD 6870", - "Videocard First Benchmarked": "2012-08-13", - "G3DMark/Price": "8.06", - "Overall Rank": "666", - "Last Price Change": "$275 USD (2022-04-10)", - "Score": 2217, - "Average G2D Mark": 404, - "Samples": 6413 - } - ], - "gpu290": [ - "Radeon HD 6900M", - { - "Other names": "AMD Radeon HD 6900M", - "Videocard First Benchmarked": "2012-06-15", - "G3DMark/Price": "NA", - "Overall Rank": "802", - "Last Price Change": "NA", - "Score": 1703, - "Average G2D Mark": 360, - "Samples": 474 - } - ], - "gpu36": [ - "Radeon HD 6950", - { - "Bus Interface": "PCIe 2.1 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "800 MHz", - "Memory Clock(s)": "1250 MHz", - "DirectX": "11.0", - "OpenGL": "4.4", - "Max TDP": "200 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon HD 6950", - "Videocard First Benchmarked": "2012-08-16", - "G3DMark/Price": "18.77", - "Overall Rank": "575", - "Last Price Change": "$139.99 USD (2022-03-30)", - "Score": 2628, - "Average G2D Mark": 432, - "Samples": 5072 - } - ], - "gpu84": [ - "Radeon HD 6970", - { - "Bus Interface": "PCIe 2.1 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "880 MHz", - "Memory Clock(s)": "1375 MHz", - "DirectX": "11", - "OpenGL": "4.4", - "Max TDP": "250 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon HD 6970", - "Videocard First Benchmarked": "2012-08-20", - "G3DMark/Price": "18.96", - "Overall Rank": "537", - "Last Price Change": "$149.99 USD (2022-04-10)", - "Score": 2844, - "Average G2D Mark": 429, - "Samples": 2195 - } - ], - "gpu291": [ - "Radeon HD 6970M", - { - "Bus Interface": "PCIe 2.1 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "680 MHz", - "Memory Clock(s)": "900 MHz", - "DirectX": "11", - "OpenGL": "4.4", - "Max TDP": "75 W", - "Videocard Category": "Mobile", - "Other names": "AMD Radeon HD 6970M", - "Videocard First Benchmarked": "2011-03-10", - "G3DMark/Price": "10.51", - "Overall Rank": "649", - "Last Price Change": "$215.99 USD (2020-03-13)", - "Score": 2270, - "Average G2D Mark": 656, - "Samples": 3 - } - ], - "gpu292": [ - "Radeon HD 6990", - { - "Bus Interface": "PCIe 2.1 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "830 MHz", - "Memory Clock(s)": "1250 MHz", - "DirectX": "11", - "OpenGL": "4.4", - "Max TDP": "375 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon HD 6990", - "Videocard First Benchmarked": "2011-03-23", - "G3DMark/Price": "6.04", - "Overall Rank": "525", - "Last Price Change": "$498.49 USD (2021-09-01)", - "Score": 3013, - "Average G2D Mark": 630, - "Samples": 15 - } - ], - "gpu2315": [ - "Radeon HD 7290", - { - "Other names": "AMD Radeon HD 7290 Graphics", - "Videocard First Benchmarked": "2012-12-17", - "G3DMark/Price": "NA", - "Overall Rank": "1983", - "Last Price Change": "NA", - "Score": 112, - "Average G2D Mark": 48, - "Samples": 122 - } - ], - "gpu2958": [ - "Radeon HD 7290M", - { - "Other names": "AMD Radeon HD 7290M", - "Videocard First Benchmarked": "2014-09-23", - "G3DMark/Price": "NA", - "Overall Rank": "1940", - "Last Price Change": "NA", - "Score": 123, - "Average G2D Mark": 90, - "Samples": 2 - } - ], - "gpu294": [ - "Radeon HD 7310", - { - "Other names": "AMD Radeon HD 7310 Graphics, AMD Radeon HD 7310", - "Videocard First Benchmarked": "2012-08-11", - "G3DMark/Price": "NA", - "Overall Rank": "1927", - "Last Price Change": "NA", - "Score": 129, - "Average G2D Mark": 44, - "Samples": 786 - } - ], - "gpu2922": [ - "Radeon HD 7310 - Carte graphique", - { - "Other names": "AMD Radeon HD 7310 - Carte graphique", - "Videocard First Benchmarked": "2014-08-05", - "G3DMark/Price": "NA", - "Overall Rank": "1850", - "Last Price Change": "NA", - "Score": 174, - "Average G2D Mark": 120, - "Samples": 1 - } - ], - "gpu2852": [ - "Radeon HD 7310G", - { - "Other names": "AMD Radeon HD 7310G", - "Videocard First Benchmarked": "2014-04-07", - "G3DMark/Price": "NA", - "Overall Rank": "1840", - "Last Price Change": "NA", - "Score": 181, - "Average G2D Mark": 119, - "Samples": 3 - } - ], - "gpu2217": [ - "Radeon HD 7310M", - { - "Other names": "AMD Radeon HD 7310M", - "Videocard First Benchmarked": "2012-10-23", - "G3DMark/Price": "NA", - "Overall Rank": "1860", - "Last Price Change": "NA", - "Score": 166, - "Average G2D Mark": 127, - "Samples": 56 - } - ], - "gpu295": [ - "Radeon HD 7340", - { - "Other names": "AMD Radeon HD 7340, AMD Radeon HD 7340 Graphics", - "Videocard First Benchmarked": "2012-06-09", - "G3DMark/Price": "0.28", - "Overall Rank": "1873", - "Last Price Change": "$552.69 USD (2012-08-27)", - "Score": 154, - "Average G2D Mark": 51, - "Samples": 554 - } - ], - "gpu2299": [ - "Radeon HD 7340G", - { - "Other names": "AMD Radeon HD 7340G", - "Videocard First Benchmarked": "2012-12-08", - "G3DMark/Price": "NA", - "Overall Rank": "1826", - "Last Price Change": "NA", - "Score": 196, - "Average G2D Mark": 146, - "Samples": 24 - } - ], - "gpu2170": [ - "Radeon HD 7340M", - { - "Other names": "AMD Radeon HD 7340M", - "Videocard First Benchmarked": "2012-10-12", - "G3DMark/Price": "NA", - "Overall Rank": "1792", - "Last Price Change": "NA", - "Score": 221, - "Average G2D Mark": 160, - "Samples": 40 - } - ], - "gpu296": [ - "Radeon HD 7350", - { - "Bus Interface": "PCIe 2.1 x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "400,650 MHz", - "Memory Clock(s)": "400,800,900 MHz", - "DirectX": "11", - "OpenGL": "4.4", - "Max TDP": "19.1 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon HD 7350, ASUS HD 7350, AMD Radeon HD 7350 Graphics, AMD Radeon. HD 7350, ATI Radeon HD 7350, AMD Radeon(TM) HD 7350A Graphics", - "Videocard First Benchmarked": "2012-03-12", - "G3DMark/Price": "NA", - "Overall Rank": "1863", - "Last Price Change": "NA", - "Score": 165, - "Average G2D Mark": 187, - "Samples": 60 - } - ], - "gpu2333": [ - "Radeon HD 7400G", - { - "Other names": "AMD Radeon HD 7400G", - "Videocard First Benchmarked": "2012-12-27", - "G3DMark/Price": "NA", - "Overall Rank": "1747", - "Last Price Change": "NA", - "Score": 267, - "Average G2D Mark": 109, - "Samples": 64 - } - ], - "gpu2305": [ - "Radeon HD 7420G", - { - "Other names": "AMD Radeon HD 7420G", - "Videocard First Benchmarked": "2012-12-11", - "G3DMark/Price": "NA", - "Overall Rank": "1709", - "Last Price Change": "NA", - "Score": 309, - "Average G2D Mark": 105, - "Samples": 196 - } - ], - "gpu297": [ - "Radeon HD 7450", - { - "Bus Interface": "PCIe 2.1 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "627,750 MHz", - "Memory Clock(s)": "533,800 MHz", - "DirectX": "11", - "OpenGL": "4.4", - "Max TDP": "18 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon HD 7450, AMD Radeon(TM) HD 7450, AMD Radeon HD 7450 Graphics", - "Videocard First Benchmarked": "2012-02-08", - "G3DMark/Price": "4.48", - "Overall Rank": "1788", - "Last Price Change": "$49.99 USD (2020-03-13)", - "Score": 224, - "Average G2D Mark": 146, - "Samples": 319 - } - ], - "gpu331": [ - "Radeon HD 7450A", - { - "Other names": "AMD Radeon(TM) HD 7450A Graphics, AMD Radeon HD 7450A Graphics", - "Videocard First Benchmarked": "2012-05-19", - "G3DMark/Price": "NA", - "Overall Rank": "1727", - "Last Price Change": "NA", - "Score": 288, - "Average G2D Mark": 385, - "Samples": 2 - } - ], - "gpu3039": [ - "Radeon HD 7450M", - { - "Bus Interface": "PCIe 2.1 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "700,700 MHz", - "Memory Clock(s)": "900,800 MHz", - "DirectX": "11", - "OpenGL": "4.4", - "Max TDP": "7 W", - "Videocard Category": "Mobile", - "Other names": "AMD Radeon HD 7450M, Radeon (TM) HD 7450M", - "Videocard First Benchmarked": "2015-06-29", - "G3DMark/Price": "NA", - "Overall Rank": "1693", - "Last Price Change": "NA", - "Score": 330, - "Average G2D Mark": 441, - "Samples": 3 - } - ], - "gpu298": [ - "Radeon HD 7470", - { - "Bus Interface": "PCIe 2.1 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "627,750 MHz", - "Memory Clock(s)": "800,900 MHz", - "DirectX": "11", - "OpenGL": "4.4", - "Max TDP": "27 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon HD 7470", - "Videocard First Benchmarked": "2012-06-28", - "G3DMark/Price": "3.55", - "Overall Rank": "1726", - "Last Price Change": "$81.37 USD (2021-06-06)", - "Score": 289, - "Average G2D Mark": 152, - "Samples": 216 - } - ], - "gpu299": [ - "Radeon HD 7470M", - { - "Bus Interface": "PCIe 2.1 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "750,800 MHz", - "Memory Clock(s)": "900,800 MHz", - "DirectX": "11", - "OpenGL": "4.4", - "Max TDP": "7 W", - "Videocard Category": "Mobile", - "Other names": "AMD Radeon HD 7470M, Radeon (TM) HD 7470M", - "Videocard First Benchmarked": "2012-01-16", - "G3DMark/Price": "NA", - "Overall Rank": "1625", - "Last Price Change": "NA", - "Score": 408, - "Average G2D Mark": 393, - "Samples": 4 - } - ], - "gpu2193": [ - "Radeon HD 7480D", - { - "Bus Interface": "UNB/MC", - "Core Clock(s)": "723 MHz", - "DirectX": "11", - "OpenGL": "4.4", - "Max TDP": "65 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon HD 7480D", - "Videocard First Benchmarked": "2012-10-17", - "G3DMark/Price": "NA", - "Overall Rank": "1736", - "Last Price Change": "NA", - "Score": 282, - "Average G2D Mark": 120, - "Samples": 656 - } - ], - "gpu300": [ - "Radeon HD 7500G", - { - "Other names": "AMD Radeon HD 7500G", - "Videocard First Benchmarked": "2012-07-06", - "G3DMark/Price": "NA", - "Overall Rank": "1715", - "Last Price Change": "NA", - "Score": 301, - "Average G2D Mark": 99, - "Samples": 192 - } - ], - "gpu2660": [ - "Radeon HD 7500G + 7500M/7600M Dual", - { - "Other names": "AMD Radeon HD 7500G + 7500M/7600M Dual Graphics", - "Videocard First Benchmarked": "2013-09-20", - "G3DMark/Price": "NA", - "Overall Rank": "1381", - "Last Price Change": "NA", - "Score": 617, - "Average G2D Mark": 308, - "Samples": 5 - } - ], - "gpu2491": [ - "Radeon HD 7500G + 7550M Dual", - { - "Other names": "AMD Radeon HD 7500G + 7550M Dual Graphics", - "Videocard First Benchmarked": "2013-04-21", - "G3DMark/Price": "NA", - "Overall Rank": "1534", - "Last Price Change": "NA", - "Score": 497, - "Average G2D Mark": 263, - "Samples": 7 - } - ], - "gpu3379": [ - "Radeon HD 7500G + HD 7500M/7600M Dual", - { - "Other names": "AMD Radeon HD 7500G + HD 7500M/7600M Dual Graphics", - "Videocard First Benchmarked": "2015-12-03", - "G3DMark/Price": "NA", - "Overall Rank": "1669", - "Last Price Change": "NA", - "Score": 356, - "Average G2D Mark": 265, - "Samples": 2 - } - ], - "gpu301": [ - "Radeon HD 7520G", - { - "Other names": "AMD Radeon HD 7520G, AMD Radeon HD 7520G (Engineering Sample - WDDM v1.20)", - "Videocard First Benchmarked": "2012-08-06", - "G3DMark/Price": "NA", - "Overall Rank": "1705", - "Last Price Change": "NA", - "Score": 315, - "Average G2D Mark": 109, - "Samples": 648 - } - ], - "gpu3124": [ - "Radeon HD 7520G + 7400M Dual", - { - "Other names": "AMD Radeon HD 7520G + 7400M Dual Graphics", - "Videocard First Benchmarked": "2015-02-03", - "G3DMark/Price": "NA", - "Overall Rank": "1545", - "Last Price Change": "NA", - "Score": 487, - "Average G2D Mark": 280, - "Samples": 2 - } - ], - "gpu2373": [ - "Radeon HD 7520G + 7470M Dual", - { - "Other names": "AMD Radeon HD 7520G + 7470M Dual Graphics", - "Videocard First Benchmarked": "2013-01-18", - "G3DMark/Price": "NA", - "Overall Rank": "1482", - "Last Price Change": "NA", - "Score": 543, - "Average G2D Mark": 345, - "Samples": 1 - } - ], - "gpu2741": [ - "Radeon HD 7520G + 7500/7600 Dual", - { - "Other names": "AMD Radeon HD 7520G + 7500/7600 Dual Graphics", - "Videocard First Benchmarked": "2013-11-29", - "G3DMark/Price": "NA", - "Overall Rank": "1428", - "Last Price Change": "NA", - "Score": 582, - "Average G2D Mark": 379, - "Samples": 1 - } - ], - "gpu2236": [ - "Radeon HD 7520G + 7600M Dual", - { - "Other names": "AMD Radeon HD 7520G + 7600M Dual Graphics", - "Videocard First Benchmarked": "2013-01-30", - "G3DMark/Price": "NA", - "Overall Rank": "1414", - "Last Price Change": "NA", - "Score": 591, - "Average G2D Mark": 362, - "Samples": 25 - } - ], - "gpu2624": [ - "Radeon HD 7520G + 7610M Dual", - { - "Other names": "AMD Radeon HD 7520G + 7610M Dual Graphics", - "Videocard First Benchmarked": "2013-08-16", - "G3DMark/Price": "NA", - "Overall Rank": "1420", - "Last Price Change": "NA", - "Score": 588, - "Average G2D Mark": 317, - "Samples": 3 - } - ], - "gpu2689": [ - "Radeon HD 7520G + 7650M Dual", - { - "Other names": "AMD Radeon HD 7520G + 7650M Dual Graphics", - "Videocard First Benchmarked": "2013-10-23", - "G3DMark/Price": "NA", - "Overall Rank": "1587", - "Last Price Change": "NA", - "Score": 453, - "Average G2D Mark": 345, - "Samples": 3 - } - ], - "gpu302": [ - "Radeon HD 7520G + 7670M Dual", - { - "Other names": "AMD Radeon HD 7520G + 7670M Dual Graphics", - "Videocard First Benchmarked": "2012-05-10", - "G3DMark/Price": "NA", - "Overall Rank": "1507", - "Last Price Change": "NA", - "Score": 523, - "Average G2D Mark": 323, - "Samples": 62 - } - ], - "gpu2499": [ - "Radeon HD 7520G + 7700M Dual", - { - "Other names": "AMD Radeon HD 7520G + 7700M Dual Graphics", - "Videocard First Benchmarked": "2013-04-25", - "G3DMark/Price": "NA", - "Overall Rank": "1021", - "Last Price Change": "NA", - "Score": 1061, - "Average G2D Mark": 331, - "Samples": 3 - } - ], - "gpu3014": [ - "Radeon HD 7520G + 8600/8700M Dual", - { - "Other names": "AMD Radeon HD 7520G + 8600/8700M Dual Graphics", - "Videocard First Benchmarked": "2014-10-30", - "G3DMark/Price": "NA", - "Overall Rank": "1707", - "Last Price Change": "NA", - "Score": 311, - "Average G2D Mark": 329, - "Samples": 2 - } - ], - "gpu3092": [ - "Radeon HD 7520G + 8750M Dual", - { - "Other names": "AMD Radeon HD 7520G + 8750M Dual Graphics", - "Videocard First Benchmarked": "2014-12-26", - "G3DMark/Price": "NA", - "Overall Rank": "1650", - "Last Price Change": "NA", - "Score": 377, - "Average G2D Mark": 388, - "Samples": 1 - } - ], - "gpu3361": [ - "Radeon HD 7520G + HD 7400M Dual", - { - "Other names": "AMD Radeon HD 7520G + HD 7400M Dual Graphics", - "Videocard First Benchmarked": "2015-11-15", - "G3DMark/Price": "NA", - "Overall Rank": "1478", - "Last Price Change": "NA", - "Score": 545, - "Average G2D Mark": 315, - "Samples": 9 - } - ], - "gpu3415": [ - "Radeon HD 7520G + HD 7500/7600 Dual", - { - "Other names": "AMD Radeon HD 7520G + HD 7500/7600 Dual Graphics", - "Videocard First Benchmarked": "2016-01-12", - "G3DMark/Price": "NA", - "Overall Rank": "1166", - "Last Price Change": "NA", - "Score": 832, - "Average G2D Mark": 355, - "Samples": 1 - } - ], - "gpu3021": [ - "Radeon HD 7520G + HD 7600M Dual", - { - "Other names": "AMD Radeon HD 7520G + HD 7600M Dual Graphics", - "Videocard First Benchmarked": "2014-11-01", - "G3DMark/Price": "NA", - "Overall Rank": "1591", - "Last Price Change": "NA", - "Score": 447, - "Average G2D Mark": 150, - "Samples": 16 - } - ], - "gpu3413": [ - "Radeon HD 7520G + HD 7670M Dual", - { - "Other names": "AMD Radeon HD 7520G + HD 7670M Dual Graphics", - "Videocard First Benchmarked": "2016-01-11", - "G3DMark/Price": "NA", - "Overall Rank": "1536", - "Last Price Change": "NA", - "Score": 495, - "Average G2D Mark": 295, - "Samples": 5 - } - ], - "gpu3609": [ - "Radeon HD 7520G + HD 7700M Dual", - { - "Other names": "AMD Radeon HD 7520G + HD 7700M Dual Graphics", - "Videocard First Benchmarked": "2016-11-28", - "G3DMark/Price": "NA", - "Overall Rank": "1441", - "Last Price Change": "NA", - "Score": 575, - "Average G2D Mark": 389, - "Samples": 1 - } - ], - "gpu2970": [ - "Radeon HD 7520G + HD 8600/8700M Dual", - { - "Other names": "AMD Radeon HD 7520G + HD 8600/8700M Dual Graphics", - "Videocard First Benchmarked": "2014-10-07", - "G3DMark/Price": "NA", - "Overall Rank": "1372", - "Last Price Change": "NA", - "Score": 624, - "Average G2D Mark": 291, - "Samples": 3 - } - ], - "gpu3253": [ - "Radeon HD 7520G + HD 8750M Dual", - { - "Other names": "AMD Radeon HD 7520G + HD 8750M Dual Graphics", - "Videocard First Benchmarked": "2015-07-13", - "G3DMark/Price": "NA", - "Overall Rank": "1335", - "Last Price Change": "NA", - "Score": 651, - "Average G2D Mark": 289, - "Samples": 2 - } - ], - "gpu2691": [ - "Radeon HD 7520G N HD 7520G + HD 7500/7600 7500/760", - { - "Other names": "AMD Radeon HD 7520G N HD 7520G + HD 7500/7600 7500/7600 Dual Graphics", - "Videocard First Benchmarked": "2013-10-25", - "G3DMark/Price": "NA", - "Overall Rank": "1443", - "Last Price Change": "NA", - "Score": 575, - "Average G2D Mark": 386, - "Samples": 1 - } - ], - "gpu2748": [ - "Radeon HD 7520G N HD 7520G + HD 7600M N HD 7600M D", - { - "Other names": "AMD Radeon HD 7520G N HD 7520G + HD 7600M N HD 7600M Dual Graphics", - "Videocard First Benchmarked": "2013-12-05", - "G3DMark/Price": "NA", - "Overall Rank": "1662", - "Last Price Change": "NA", - "Score": 365, - "Average G2D Mark": 263, - "Samples": 1 - } - ], - "gpu2166": [ - "Radeon HD 7540D", - { - "Bus Interface": "UNB/MC", - "Core Clock(s)": "760 MHz", - "DirectX": "11", - "OpenGL": "4.4", - "Max TDP": "65 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon HD 7540D", - "Videocard First Benchmarked": "2012-10-12", - "G3DMark/Price": "NA", - "Overall Rank": "1690", - "Last Price Change": "NA", - "Score": 331, - "Average G2D Mark": 127, - "Samples": 523 - } - ], - "gpu2581": [ - "Radeon HD 7540D + 6570 Dual", - { - "Other names": "AMD Radeon HD 7540D + 6570 Dual Graphics", - "Videocard First Benchmarked": "2013-07-10", - "G3DMark/Price": "NA", - "Overall Rank": "1277", - "Last Price Change": "NA", - "Score": 720, - "Average G2D Mark": 469, - "Samples": 3 - } - ], - "gpu3090": [ - "Radeon HD 7540D + 7500 Dual", - { - "Other names": "AMD Radeon HD 7540D + 7500 Dual Graphics", - "Videocard First Benchmarked": "2014-12-26", - "G3DMark/Price": "NA", - "Overall Rank": "1177", - "Last Price Change": "NA", - "Score": 822, - "Average G2D Mark": 471, - "Samples": 1 - } - ], - "gpu2851": [ - "Radeon HD 7540D + HD 6450 Dual", - { - "Other names": "AMD Radeon HD 7540D + HD 6450 Dual Graphics", - "Videocard First Benchmarked": "2014-04-07", - "G3DMark/Price": "NA", - "Overall Rank": "1346", - "Last Price Change": "NA", - "Score": 643, - "Average G2D Mark": 444, - "Samples": 1 - } - ], - "gpu303": [ - "Radeon HD 7550M", - { - "Bus Interface": "PCIe 2.1 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "450,550 MHz", - "Memory Clock(s)": "900,800 MHz", - "DirectX": "11", - "OpenGL": "4.4", - "Max TDP": "13 W", - "Videocard Category": "Mobile", - "Other names": "AMD Radeon HD 7550M", - "Videocard First Benchmarked": "2012-07-10", - "G3DMark/Price": "NA", - "Overall Rank": "1569", - "Last Price Change": "NA", - "Score": 465, - "Average G2D Mark": 403, - "Samples": 22 - } - ], - "gpu304": [ - "Radeon HD 7550M/7650M", - { - "Bus Interface": "PCIe 2.1 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "450,550 MHz", - "Memory Clock(s)": "900,800 MHz", - "DirectX": "11", - "OpenGL": "4.4", - "Max TDP": "13 W", - "Videocard Category": "Mobile", - "Other names": "AMD Radeon HD 7550M/7650M Graphics", - "Videocard First Benchmarked": "2012-07-06", - "G3DMark/Price": "NA", - "Overall Rank": "1267", - "Last Price Change": "NA", - "Score": 729, - "Average G2D Mark": 524, - "Samples": 136 - } - ], - "gpu305": [ - "Radeon HD 7560D", - { - "Bus Interface": "UNB/MC", - "Core Clock(s)": "760 MHz", - "DirectX": "11", - "OpenGL": "4.4", - "Max TDP": "100 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon HD 7560D", - "Videocard First Benchmarked": "2012-08-09", - "G3DMark/Price": "NA", - "Overall Rank": "1576", - "Last Price Change": "NA", - "Score": 462, - "Average G2D Mark": 166, - "Samples": 1157 - } - ], - "gpu2362": [ - "Radeon HD 7560D + 6450 Dual", - { - "Other names": "AMD Radeon HD 7560D + 6450 Dual Graphics", - "Videocard First Benchmarked": "2013-01-11", - "G3DMark/Price": "NA", - "Overall Rank": "1451", - "Last Price Change": "NA", - "Score": 569, - "Average G2D Mark": 490, - "Samples": 1 - } - ], - "gpu2221": [ - "Radeon HD 7560D + 6570 Dual", - { - "Other names": "AMD Radeon HD 7560D + 6570 Dual Graphics", - "Videocard First Benchmarked": "2012-10-25", - "G3DMark/Price": "NA", - "Overall Rank": "1163", - "Last Price Change": "NA", - "Score": 833, - "Average G2D Mark": 476, - "Samples": 6 - } - ], - "gpu2303": [ - "Radeon HD 7560D + 6670 Dual", - { - "Other names": "AMD Radeon HD 7560D + 6670 Dual Graphics", - "Videocard First Benchmarked": "2012-12-10", - "G3DMark/Price": "NA", - "Overall Rank": "985", - "Last Price Change": "NA", - "Score": 1131, - "Average G2D Mark": 501, - "Samples": 7 - } - ], - "gpu2880": [ - "Radeon HD 7560D + 7560D Dual", - { - "Other names": "AMD Radeon HD 7560D + 7560D Dual Graphics", - "Videocard First Benchmarked": "2014-05-30", - "G3DMark/Price": "NA", - "Overall Rank": "1062", - "Last Price Change": "NA", - "Score": 983, - "Average G2D Mark": 420, - "Samples": 2 - } - ], - "gpu2658": [ - "Radeon HD 7560D + 7570 Dual", - { - "Other names": "AMD Radeon HD 7560D + 7570 Dual Graphics", - "Videocard First Benchmarked": "2013-09-18", - "G3DMark/Price": "NA", - "Overall Rank": "1057", - "Last Price Change": "NA", - "Score": 985, - "Average G2D Mark": 434, - "Samples": 1 - } - ], - "gpu306": [ - "Radeon HD 7560D + 7670 Dual", - { - "Other names": "AMD Radeon HD 7560D + 7670 Dual Graphics", - "Videocard First Benchmarked": "2012-07-09", - "G3DMark/Price": "NA", - "Overall Rank": "891", - "Last Price Change": "NA", - "Score": 1426, - "Average G2D Mark": 445, - "Samples": 7 - } - ], - "gpu2835": [ - "Radeon HD 7560D + 7700 Dual", - { - "Other names": "AMD Radeon HD 7560D + 7700 Dual Graphics", - "Videocard First Benchmarked": "2014-03-11", - "G3DMark/Price": "NA", - "Overall Rank": "737", - "Last Price Change": "NA", - "Score": 1919, - "Average G2D Mark": 518, - "Samples": 1 - } - ], - "gpu2858": [ - "Radeon HD 7560D + HD 6570 Dual", - { - "Other names": "AMD Radeon HD 7560D + HD 6570 Dual Graphics", - "Videocard First Benchmarked": "2014-04-16", - "G3DMark/Price": "NA", - "Overall Rank": "942", - "Last Price Change": "NA", - "Score": 1237, - "Average G2D Mark": 528, - "Samples": 1 - } - ], - "gpu2894": [ - "Radeon HD 7560D + HD 6670 Dual", - { - "Other names": "AMD Radeon HD 7560D + HD 6670 Dual Graphics", - "Videocard First Benchmarked": "2014-06-25", - "G3DMark/Price": "NA", - "Overall Rank": "847", - "Last Price Change": "NA", - "Score": 1555, - "Average G2D Mark": 652, - "Samples": 1 - } - ], - "gpu2891": [ - "Radeon HD 7560D + HD 7000 Dual", - { - "Other names": "AMD Radeon HD 7560D + HD 7000 Dual Graphics", - "Videocard First Benchmarked": "2014-06-24", - "G3DMark/Price": "NA", - "Overall Rank": "1491", - "Last Price Change": "NA", - "Score": 534, - "Average G2D Mark": 423, - "Samples": 2 - } - ], - "gpu3739": [ - "Radeon HD 7560D + HD 7600 Dual", - { - "Other names": "AMD Radeon HD 7560D + HD 7600 Dual Graphics", - "Videocard First Benchmarked": "2017-04-25", - "G3DMark/Price": "NA", - "Overall Rank": "935", - "Last Price Change": "NA", - "Score": 1258, - "Average G2D Mark": 457, - "Samples": 1 - } - ], - "gpu2959": [ - "Radeon HD 7560D + HD 7670 Dual", - { - "Other names": "AMD Radeon HD 7560D + HD 7670 Dual Graphics", - "Videocard First Benchmarked": "2014-09-25", - "G3DMark/Price": "NA", - "Overall Rank": "901", - "Last Price Change": "NA", - "Score": 1380, - "Average G2D Mark": 463, - "Samples": 1 - } - ], - "gpu3158": [ - "Radeon HD 7560D + HD 7700 Dual", - { - "Other names": "AMD Radeon HD 7560D + HD 7700 Dual Graphics", - "Videocard First Benchmarked": "2015-03-16", - "G3DMark/Price": "NA", - "Overall Rank": "910", - "Last Price Change": "NA", - "Score": 1347, - "Average G2D Mark": 497, - "Samples": 4 - } - ], - "gpu2856": [ - "Radeon HD 7560D + HD 8570 Dual", - { - "Other names": "AMD Radeon HD 7560D + HD 8570 Dual Graphics", - "Videocard First Benchmarked": "2014-04-14", - "G3DMark/Price": "NA", - "Overall Rank": "1092", - "Last Price Change": "NA", - "Score": 936, - "Average G2D Mark": 425, - "Samples": 1 - } - ], - "gpu3267": [ - "Radeon HD 7560D + R5 235 Dual", - { - "Other names": "AMD Radeon HD 7560D + R5 235 Dual Graphics", - "Videocard First Benchmarked": "2015-07-27", - "G3DMark/Price": "NA", - "Overall Rank": "1456", - "Last Price Change": "NA", - "Score": 563, - "Average G2D Mark": 397, - "Samples": 2 - } - ], - "gpu90": [ - "Radeon HD 7570", - { - "Bus Interface": "PCIe 2.1 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "650 MHz", - "Memory Clock(s)": "900,1000 MHz", - "DirectX": "11", - "OpenGL": "4.4", - "Max TDP": "44 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon HD 7570, AMD Radeon HD 7570 Graphics, AMD Radeon HD 7570 Series, AMD Radeon HD7570", - "Videocard First Benchmarked": "2012-08-20", - "G3DMark/Price": "6.11", - "Overall Rank": "1371", - "Last Price Change": "$102.49 USD (2021-05-25)", - "Score": 627, - "Average G2D Mark": 261, - "Samples": 609 - } - ], - "gpu307": [ - "Radeon HD 7570M", - { - "Bus Interface": "PCIe 2.1 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "450,650 MHz", - "Memory Clock(s)": "900,800 MHz", - "DirectX": "11", - "OpenGL": "4.4", - "Max TDP": "13 W", - "Videocard Category": "Mobile", - "Other names": "AMD Radeon HD 7570M, Radeon (TM) HD 7570M", - "Videocard First Benchmarked": "2012-06-26", - "G3DMark/Price": "NA", - "Overall Rank": "1605", - "Last Price Change": "NA", - "Score": 429, - "Average G2D Mark": 188, - "Samples": 525 - } - ], - "gpu3046": [ - "Radeon HD 7570M/HD 7670M", - { - "Bus Interface": "PCIe 2.1 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "600 MHz", - "Memory Clock(s)": "900 MHz", - "DirectX": "11.0", - "OpenGL": "4.4", - "Max TDP": "25 W", - "Videocard Category": "Mobile", - "Other names": "AMD Radeon HD 7570M/HD 7670M Graphics", - "Videocard First Benchmarked": "2015-03-07", - "G3DMark/Price": "NA", - "Overall Rank": "1295", - "Last Price Change": "NA", - "Score": 699, - "Average G2D Mark": 555, - "Samples": 4 - } - ], - "gpu2533": [ - "Radeon HD 7580D", - { - "Other names": "AMD Radeon HD 7580D", - "Videocard First Benchmarked": "2013-06-04", - "G3DMark/Price": "NA", - "Overall Rank": "1675", - "Last Price Change": "NA", - "Score": 351, - "Average G2D Mark": 430, - "Samples": 2 - } - ], - "gpu2290": [ - "Radeon HD 7600G", - { - "Other names": "AMD Radeon HD 7600G", - "Videocard First Benchmarked": "2012-11-30", - "G3DMark/Price": "NA", - "Overall Rank": "1708", - "Last Price Change": "NA", - "Score": 309, - "Average G2D Mark": 90, - "Samples": 186 - } - ], - "gpu2598": [ - "Radeon HD 7600G + 6400M Dual", - { - "Other names": "AMD Radeon HD 7600G + 6400M Dual Graphics", - "Videocard First Benchmarked": "2013-07-27", - "G3DMark/Price": "NA", - "Overall Rank": "1651", - "Last Price Change": "NA", - "Score": 377, - "Average G2D Mark": 257, - "Samples": 1 - } - ], - "gpu2501": [ - "Radeon HD 7600G + 7450M Dual", - { - "Other names": "AMD Radeon HD 7600G + 7450M Dual Graphics", - "Videocard First Benchmarked": "2013-04-26", - "G3DMark/Price": "NA", - "Overall Rank": "1638", - "Last Price Change": "NA", - "Score": 390, - "Average G2D Mark": 221, - "Samples": 3 - } - ], - "gpu2508": [ - "Radeon HD 7600G + 7500M/7600M Dual", - { - "Other names": "AMD Radeon HD 7600G + 7500M/7600M Dual Graphics", - "Videocard First Benchmarked": "2013-05-04", - "G3DMark/Price": "NA", - "Overall Rank": "1627", - "Last Price Change": "NA", - "Score": 406, - "Average G2D Mark": 210, - "Samples": 3 - } - ], - "gpu2855": [ - "Radeon HD 7600G + 7550M Dual", - { - "Other names": "AMD Radeon HD 7600G + 7550M Dual Graphics", - "Videocard First Benchmarked": "2014-04-12", - "G3DMark/Price": "NA", - "Overall Rank": "1612", - "Last Price Change": "NA", - "Score": 423, - "Average G2D Mark": 247, - "Samples": 3 - } - ], - "gpu2746": [ - "Radeon HD 7600G + 8500M/8700M Dual", - { - "Other names": "AMD Radeon HD 7600G + 8500M/8700M Dual Graphics", - "Videocard First Benchmarked": "2013-12-02", - "G3DMark/Price": "NA", - "Overall Rank": "1686", - "Last Price Change": "NA", - "Score": 334, - "Average G2D Mark": 131, - "Samples": 5 - } - ], - "gpu3321": [ - "Radeon HD 7600G + HD 7400M Dual", - { - "Other names": "AMD Radeon HD 7600G + HD 7400M Dual Graphics", - "Videocard First Benchmarked": "2015-10-01", - "G3DMark/Price": "NA", - "Overall Rank": "1694", - "Last Price Change": "NA", - "Score": 329, - "Average G2D Mark": 147, - "Samples": 1 - } - ], - "gpu3230": [ - "Radeon HD 7600G + HD 7500M/7600M Dual", - { - "Other names": "AMD Radeon HD 7600G + HD 7500M/7600M Dual Graphics", - "Videocard First Benchmarked": "2015-06-25", - "G3DMark/Price": "NA", - "Overall Rank": "1551", - "Last Price Change": "NA", - "Score": 477, - "Average G2D Mark": 126, - "Samples": 7 - } - ], - "gpu3098": [ - "Radeon HD 7600G + HD 7550M Dual", - { - "Other names": "AMD Radeon HD 7600G + HD 7550M Dual Graphics", - "Videocard First Benchmarked": "2014-12-28", - "G3DMark/Price": "NA", - "Overall Rank": "1519", - "Last Price Change": "NA", - "Score": 509, - "Average G2D Mark": 202, - "Samples": 2 - } - ], - "gpu3180": [ - "Radeon HD 7600G + HD 8670M Dual", - { - "Other names": "AMD Radeon HD 7600G + HD 8670M Dual Graphics", - "Videocard First Benchmarked": "2015-04-08", - "G3DMark/Price": "NA", - "Overall Rank": "1479", - "Last Price Change": "NA", - "Score": 544, - "Average G2D Mark": 241, - "Samples": 2 - } - ], - "gpu2780": [ - "Radeon HD 7600G + HD Dual", - { - "Other names": "AMD Radeon HD 7600G + (TM) HD Dual Graphics", - "Videocard First Benchmarked": "2014-01-04", - "G3DMark/Price": "NA", - "Overall Rank": "1601", - "Last Price Change": "NA", - "Score": 435, - "Average G2D Mark": 158, - "Samples": 9 - } - ], - "gpu3629": [ - "Radeon HD 7600G N HD 7600G + HD ON HD Dual", - { - "Other names": "AMD Radeon HD 7600G N HD 7600G + (TM) HD ON (TM) HD Dual Graphics", - "Videocard First Benchmarked": "2016-12-24", - "G3DMark/Price": "NA", - "Overall Rank": "1502", - "Last Price Change": "NA", - "Score": 526, - "Average G2D Mark": 244, - "Samples": 1 - } - ], - "gpu2234": [ - "Radeon HD 7600M + 7600M Dual", - { - "Other names": "AMD Radeon HD 7600M + 7600M Dual Graphics", - "Videocard First Benchmarked": "2012-10-30", - "G3DMark/Price": "NA", - "Overall Rank": "1214", - "Last Price Change": "NA", - "Score": 773, - "Average G2D Mark": 317, - "Samples": 9 - } - ], - "gpu308": [ - "Radeon HD 7610M", - { - "Bus Interface": "PCIe 2.1 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "450 MHz", - "Memory Clock(s)": "800 MHz", - "DirectX": "11", - "OpenGL": "4.4", - "Max TDP": "20 W", - "Videocard Category": "Mobile", - "Other names": "AMD Radeon HD 7610M", - "Videocard First Benchmarked": "2012-07-14", - "G3DMark/Price": "NA", - "Overall Rank": "1356", - "Last Price Change": "NA", - "Score": 632, - "Average G2D Mark": 479, - "Samples": 79 - } - ], - "gpu309": [ - "Radeon HD 7620G", - { - "Other names": "AMD Radeon HD 7620G", - "Videocard First Benchmarked": "2012-07-18", - "G3DMark/Price": "NA", - "Overall Rank": "1667", - "Last Price Change": "NA", - "Score": 360, - "Average G2D Mark": 110, - "Samples": 84 - } - ], - "gpu2728": [ - "Radeon HD 7620G + 8600M Dual", - { - "Other names": "AMD Radeon HD 7620G + 8600M Dual Graphics", - "Videocard First Benchmarked": "2013-11-13", - "G3DMark/Price": "NA", - "Overall Rank": "1520", - "Last Price Change": "NA", - "Score": 509, - "Average G2D Mark": 294, - "Samples": 13 - } - ], - "gpu2765": [ - "Radeon HD 7620G + 8670M Dual", - { - "Other names": "AMD Radeon HD 7620G + 8670M Dual Graphics", - "Videocard First Benchmarked": "2013-12-17", - "G3DMark/Price": "NA", - "Overall Rank": "1435", - "Last Price Change": "NA", - "Score": 577, - "Average G2D Mark": 322, - "Samples": 3 - } - ], - "gpu3066": [ - "Radeon HD 7620G + HD 8600M Dual", - { - "Other names": "AMD Radeon HD 7620G + HD 8600M Dual Graphics", - "Videocard First Benchmarked": "2014-12-05", - "G3DMark/Price": "NA", - "Overall Rank": "1595", - "Last Price Change": "NA", - "Score": 443, - "Average G2D Mark": 267, - "Samples": 18 - } - ], - "gpu2824": [ - "Radeon HD 7620G + HD 8670M Dual", - { - "Other names": "AMD Radeon HD 7620G + HD 8670M Dual Graphics", - "Videocard First Benchmarked": "2014-02-26", - "G3DMark/Price": "NA", - "Overall Rank": "1522", - "Last Price Change": "NA", - "Score": 507, - "Average G2D Mark": 267, - "Samples": 24 - } - ], - "gpu2751": [ - "Radeon HD 7620G N HD 7620G + HD 8600M N HD 8600M D", - { - "Other names": "AMD Radeon HD 7620G N HD 7620G + HD 8600M N HD 8600M Dual Graphics", - "Videocard First Benchmarked": "2013-12-08", - "G3DMark/Price": "NA", - "Overall Rank": "1589", - "Last Price Change": "NA", - "Score": 452, - "Average G2D Mark": 238, - "Samples": 1 - } - ], - "gpu310": [ - "Radeon HD 7640G", - { - "Other names": "AMD Radeon HD 7640G", - "Videocard First Benchmarked": "2012-07-16", - "G3DMark/Price": "NA", - "Overall Rank": "1580", - "Last Price Change": "NA", - "Score": 459, - "Average G2D Mark": 123, - "Samples": 1151 - } - ], - "gpu2301": [ - "Radeon HD 7640G + 6400M Dual", - { - "Other names": "AMD Radeon HD 7640G + 6400M Dual Graphics", - "Videocard First Benchmarked": "2012-12-08", - "G3DMark/Price": "NA", - "Overall Rank": "1501", - "Last Price Change": "NA", - "Score": 527, - "Average G2D Mark": 279, - "Samples": 7 - } - ], - "gpu2442": [ - "Radeon HD 7640G + 7400M Dual", - { - "Other names": "AMD Radeon HD 7640G + 7400M Dual Graphics", - "Videocard First Benchmarked": "2013-03-11", - "G3DMark/Price": "NA", - "Overall Rank": "1349", - "Last Price Change": "NA", - "Score": 637, - "Average G2D Mark": 286, - "Samples": 5 - } - ], - "gpu2913": [ - "Radeon HD 7640G + 7450M Dual", - { - "Other names": "AMD Radeon HD 7640G + 7450M Dual Graphics", - "Videocard First Benchmarked": "2014-07-24", - "G3DMark/Price": "NA", - "Overall Rank": "1236", - "Last Price Change": "NA", - "Score": 754, - "Average G2D Mark": 353, - "Samples": 1 - } - ], - "gpu311": [ - "Radeon HD 7640G + 7470M Dual", - { - "Other names": "AMD Radeon HD 7640G + 7470M Dual Graphics", - "Videocard First Benchmarked": "2012-06-07", - "G3DMark/Price": "NA", - "Overall Rank": "1407", - "Last Price Change": "NA", - "Score": 595, - "Average G2D Mark": 301, - "Samples": 53 - } - ], - "gpu2566": [ - "Radeon HD 7640G + 7500/7600 Dual", - { - "Other names": "AMD Radeon HD 7640G + 7500/7600 Dual Graphics", - "Videocard First Benchmarked": "2013-07-01", - "G3DMark/Price": "NA", - "Overall Rank": "1368", - "Last Price Change": "NA", - "Score": 627, - "Average G2D Mark": 293, - "Samples": 2 - } - ], - "gpu2211": [ - "Radeon HD 7640G + 7500M/7600M Dual", - { - "Other names": "AMD Radeon HD 7640G + 7500M/7600M Dual Graphics", - "Videocard First Benchmarked": "2012-10-22", - "G3DMark/Price": "NA", - "Overall Rank": "1213", - "Last Price Change": "NA", - "Score": 776, - "Average G2D Mark": 317, - "Samples": 1 - } - ], - "gpu312": [ - "Radeon HD 7640G + 7600M Dual", - { - "Other names": "AMD Radeon HD 7640G + 7600M Dual Graphics", - "Videocard First Benchmarked": "2012-07-02", - "G3DMark/Price": "NA", - "Overall Rank": "1289", - "Last Price Change": "NA", - "Score": 706, - "Average G2D Mark": 294, - "Samples": 64 - } - ], - "gpu2677": [ - "Radeon HD 7640G + 7610M Dual", - { - "Other names": "AMD Radeon HD 7640G + 7610M Dual Graphics", - "Videocard First Benchmarked": "2013-10-12", - "G3DMark/Price": "NA", - "Overall Rank": "1518", - "Last Price Change": "NA", - "Score": 510, - "Average G2D Mark": 309, - "Samples": 7 - } - ], - "gpu2786": [ - "Radeon HD 7640G + 7650M Dual", - { - "Other names": "AMD Radeon HD 7640G + 7650M Dual Graphics", - "Videocard First Benchmarked": "2014-01-08", - "G3DMark/Price": "NA", - "Overall Rank": "1245", - "Last Price Change": "NA", - "Score": 747, - "Average G2D Mark": 188, - "Samples": 1 - } - ], - "gpu313": [ - "Radeon HD 7640G + 7670M Dual", - { - "Other names": "AMD Radeon HD 7640G + 7670M Dual Graphics", - "Videocard First Benchmarked": "2012-06-16", - "G3DMark/Price": "NA", - "Overall Rank": "1345", - "Last Price Change": "NA", - "Score": 645, - "Average G2D Mark": 294, - "Samples": 113 - } - ], - "gpu2757": [ - "Radeon HD 7640G + 7690M Dual", - { - "Other names": "AMD Radeon HD 7640G + 7690M Dual Graphics", - "Videocard First Benchmarked": "2013-12-14", - "G3DMark/Price": "NA", - "Overall Rank": "1084", - "Last Price Change": "NA", - "Score": 946, - "Average G2D Mark": 325, - "Samples": 1 - } - ], - "gpu2730": [ - "Radeon HD 7640G + 7700M Dual", - { - "Other names": "AMD Radeon HD 7640G + 7700M Dual Graphics", - "Videocard First Benchmarked": "2013-11-16", - "G3DMark/Price": "NA", - "Overall Rank": "1300", - "Last Price Change": "NA", - "Score": 691, - "Average G2D Mark": 324, - "Samples": 2 - } - ], - "gpu2809": [ - "Radeon HD 7640G + 8500M Dual", - { - "Other names": "AMD Radeon HD 7640G + 8500M Dual Graphics", - "Videocard First Benchmarked": "2014-02-07", - "G3DMark/Price": "NA", - "Overall Rank": "1426", - "Last Price Change": "NA", - "Score": 586, - "Average G2D Mark": 308, - "Samples": 11 - } - ], - "gpu2763": [ - "Radeon HD 7640G + 8570M Dual", - { - "Other names": "AMD Radeon HD 7640G + 8570M Dual Graphics", - "Videocard First Benchmarked": "2013-12-17", - "G3DMark/Price": "NA", - "Overall Rank": "1462", - "Last Price Change": "NA", - "Score": 558, - "Average G2D Mark": 274, - "Samples": 13 - } - ], - "gpu2669": [ - "Radeon HD 7640G + 8600/8700M Dual", - { - "Other names": "AMD Radeon HD 7640G + 8600/8700M Dual Graphics", - "Videocard First Benchmarked": "2013-10-06", - "G3DMark/Price": "NA", - "Overall Rank": "1302", - "Last Price Change": "NA", - "Score": 689, - "Average G2D Mark": 308, - "Samples": 10 - } - ], - "gpu3873": [ - "Radeon HD 7640G + 8600M Dual", - { - "Other names": "AMD Radeon HD 7640G + 8600M Dual Graphics", - "Videocard First Benchmarked": "2017-12-29", - "G3DMark/Price": "NA", - "Overall Rank": "1767", - "Last Price Change": "NA", - "Score": 250, - "Average G2D Mark": 217, - "Samples": 1 - } - ], - "gpu2797": [ - "Radeon HD 7640G + 8670M Dual", - { - "Other names": "AMD Radeon HD 7640G + 8670M Dual Graphics", - "Videocard First Benchmarked": "2014-01-20", - "G3DMark/Price": "NA", - "Overall Rank": "1461", - "Last Price Change": "NA", - "Score": 558, - "Average G2D Mark": 316, - "Samples": 2 - } - ], - "gpu2733": [ - "Radeon HD 7640G + 8750M Dual", - { - "Other names": "AMD Radeon HD 7640G + 8750M Dual Graphics", - "Videocard First Benchmarked": "2013-11-19", - "G3DMark/Price": "NA", - "Overall Rank": "1330", - "Last Price Change": "NA", - "Score": 655, - "Average G2D Mark": 305, - "Samples": 4 - } - ], - "gpu2978": [ - "Radeon HD 7640G + HD 7400M Dual", - { - "Other names": "AMD Radeon HD 7640G + HD 7400M Dual Graphics", - "Videocard First Benchmarked": "2014-10-17", - "G3DMark/Price": "NA", - "Overall Rank": "1374", - "Last Price Change": "NA", - "Score": 621, - "Average G2D Mark": 297, - "Samples": 17 - } - ], - "gpu3329": [ - "Radeon HD 7640G + HD 7500/7600 Dual", - { - "Other names": "AMD Radeon HD 7640G + HD 7500/7600 Dual Graphics", - "Videocard First Benchmarked": "2015-10-10", - "G3DMark/Price": "NA", - "Overall Rank": "1611", - "Last Price Change": "NA", - "Score": 424, - "Average G2D Mark": 301, - "Samples": 1 - } - ], - "gpu2990": [ - "Radeon HD 7640G + HD 7600M Dual", - { - "Other names": "AMD Radeon HD 7640G + HD 7600M Dual Graphics", - "Videocard First Benchmarked": "2014-10-24", - "G3DMark/Price": "NA", - "Overall Rank": "1292", - "Last Price Change": "NA", - "Score": 704, - "Average G2D Mark": 277, - "Samples": 59 - } - ], - "gpu2770": [ - "Radeon HD 7640G + HD 7600M N HD 7600M Dual", - { - "Other names": "AMD Radeon HD 7640G + HD 7600M N HD 7600M Dual Graphics", - "Videocard First Benchmarked": "2013-12-25", - "G3DMark/Price": "NA", - "Overall Rank": "1626", - "Last Price Change": "NA", - "Score": 407, - "Average G2D Mark": 198, - "Samples": 1 - } - ], - "gpu2925": [ - "Radeon HD 7640G + HD 7670M Dual", - { - "Other names": "AMD Radeon HD 7640G + HD 7670M Dual Graphics", - "Videocard First Benchmarked": "2014-08-08", - "G3DMark/Price": "NA", - "Overall Rank": "1510", - "Last Price Change": "NA", - "Score": 519, - "Average G2D Mark": 97, - "Samples": 20 - } - ], - "gpu3372": [ - "Radeon HD 7640G + HD 7700M Dual", - { - "Other names": "AMD Radeon HD 7640G + HD 7700M Dual Graphics", - "Videocard First Benchmarked": "2015-11-25", - "G3DMark/Price": "NA", - "Overall Rank": "1418", - "Last Price Change": "NA", - "Score": 589, - "Average G2D Mark": 277, - "Samples": 3 - } - ], - "gpu3211": [ - "Radeon HD 7640G + HD 7700M N HD 7700M Dual", - { - "Other names": "AMD Radeon HD 7640G + HD 7700M N HD 7700M Dual Graphics", - "Videocard First Benchmarked": "2015-05-21", - "G3DMark/Price": "NA", - "Overall Rank": "1361", - "Last Price Change": "NA", - "Score": 631, - "Average G2D Mark": 272, - "Samples": 1 - } - ], - "gpu2907": [ - "Radeon HD 7640G + HD 8500M Dual", - { - "Other names": "AMD Radeon HD 7640G + HD 8500M Dual Graphics", - "Videocard First Benchmarked": "2014-07-12", - "G3DMark/Price": "NA", - "Overall Rank": "1391", - "Last Price Change": "NA", - "Score": 607, - "Average G2D Mark": 305, - "Samples": 9 - } - ], - "gpu2718": [ - "Radeon HD 7640G + HD 8500M N HD 8500M Dual", - { - "Other names": "AMD Radeon HD 7640G + HD 8500M N HD 8500M Dual Graphics", - "Videocard First Benchmarked": "2013-11-09", - "G3DMark/Price": "NA", - "Overall Rank": "1321", - "Last Price Change": "NA", - "Score": 666, - "Average G2D Mark": 311, - "Samples": 2 - } - ], - "gpu2889": [ - "Radeon HD 7640G + HD 8570M Dual", - { - "Other names": "AMD Radeon HD 7640G + HD 8570M Dual Graphics", - "Videocard First Benchmarked": "2014-06-21", - "G3DMark/Price": "NA", - "Overall Rank": "1558", - "Last Price Change": "NA", - "Score": 475, - "Average G2D Mark": 196, - "Samples": 5 - } - ], - "gpu3131": [ - "Radeon HD 7640G + HD 8600/8700M Dual", - { - "Other names": "AMD Radeon HD 7640G + HD 8600/8700M Dual Graphics", - "Videocard First Benchmarked": "2015-02-12", - "G3DMark/Price": "NA", - "Overall Rank": "1423", - "Last Price Change": "NA", - "Score": 587, - "Average G2D Mark": 298, - "Samples": 10 - } - ], - "gpu3280": [ - "Radeon HD 7640G + HD 8670M Dual", - { - "Other names": "AMD Radeon HD 7640G + HD 8670M Dual Graphics", - "Videocard First Benchmarked": "2015-08-08", - "G3DMark/Price": "NA", - "Overall Rank": "1313", - "Last Price Change": "NA", - "Score": 677, - "Average G2D Mark": 249, - "Samples": 1 - } - ], - "gpu3288": [ - "Radeon HD 7640G + HD 8750M Dual", - { - "Other names": "AMD Radeon HD 7640G + HD 8750M Dual Graphics", - "Videocard First Benchmarked": "2015-08-17", - "G3DMark/Price": "NA", - "Overall Rank": "1053", - "Last Price Change": "NA", - "Score": 997, - "Average G2D Mark": 293, - "Samples": 7 - } - ], - "gpu3246": [ - "Radeon HD 7640G + R5 M200 Dual", - { - "Other names": "AMD Radeon HD 7640G + R5 M200 Dual Graphics", - "Videocard First Benchmarked": "2015-07-11", - "G3DMark/Price": "NA", - "Overall Rank": "1458", - "Last Price Change": "NA", - "Score": 559, - "Average G2D Mark": 249, - "Samples": 10 - } - ], - "gpu2700": [ - "Radeon HD 7640G N HD 7640G + HD 7600M N HD 7600M D", - { - "Other names": "AMD Radeon HD 7640G N HD 7640G + HD 7600M N HD 7600M Dual Graphics", - "Videocard First Benchmarked": "2013-10-29", - "G3DMark/Price": "NA", - "Overall Rank": "1174", - "Last Price Change": "NA", - "Score": 824, - "Average G2D Mark": 262, - "Samples": 8 - } - ], - "gpu2735": [ - "Radeon HD 7640G N HD 7640G + HD 7670M Dual", - { - "Other names": "AMD Radeon HD 7640G N HD 7640G + HD 7670M Dual Graphics", - "Videocard First Benchmarked": "2013-11-20", - "G3DMark/Price": "NA", - "Overall Rank": "1309", - "Last Price Change": "NA", - "Score": 680, - "Average G2D Mark": 305, - "Samples": 6 - } - ], - "gpu2762": [ - "Radeon HD 7640G N HD 7640G + HD 8570M Dual", - { - "Other names": "AMD Radeon HD 7640G N HD 7640G + HD 8570M Dual Graphics", - "Videocard First Benchmarked": "2013-12-16", - "G3DMark/Price": "NA", - "Overall Rank": "1614", - "Last Price Change": "NA", - "Score": 423, - "Average G2D Mark": 287, - "Samples": 1 - } - ], - "gpu332": [ - "Radeon HD 7650A", - { - "Other names": "AMD Radeon(TM) HD 7650A Graphics, AMD Radeon HD 7650A Graphics, AMD Radeon HD 7650A", - "Videocard First Benchmarked": "2012-08-10", - "G3DMark/Price": "2.19", - "Overall Rank": "1445", - "Last Price Change": "$262 USD (2013-04-10)", - "Score": 573, - "Average G2D Mark": 288, - "Samples": 79 - } - ], - "gpu314": [ - "Radeon HD 7650M", - { - "Bus Interface": "PCIe 2.1 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "450,550 MHz", - "Memory Clock(s)": "800,800 MHz", - "DirectX": "11", - "OpenGL": "4.4", - "Max TDP": "20 W", - "Videocard Category": "Mobile", - "Other names": "AMD Radeon HD 7650M", - "Videocard First Benchmarked": "2012-07-02", - "G3DMark/Price": "NA", - "Overall Rank": "1596", - "Last Price Change": "NA", - "Score": 442, - "Average G2D Mark": 63, - "Samples": 209 - } - ], - "gpu315": [ - "Radeon HD 7660D", - { - "Bus Interface": "UNB/MC", - "Core Clock(s)": "760,800 MHz", - "DirectX": "11", - "OpenGL": "4.4", - "Max TDP": "100 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon HD 7660D", - "Videocard First Benchmarked": "2012-06-22", - "G3DMark/Price": "NA", - "Overall Rank": "1528", - "Last Price Change": "NA", - "Score": 502, - "Average G2D Mark": 177, - "Samples": 1631 - } - ], - "gpu2448": [ - "Radeon HD 7660D + 6570 Dual", - { - "Other names": "AMD Radeon HD 7660D + 6570 Dual Graphics", - "Videocard First Benchmarked": "2013-03-20", - "G3DMark/Price": "NA", - "Overall Rank": "1001", - "Last Price Change": "NA", - "Score": 1100, - "Average G2D Mark": 551, - "Samples": 2 - } - ], - "gpu2249": [ - "Radeon HD 7660D + 6670 Dual", - { - "Other names": "AMD Radeon HD 7660D + 6670 Dual Graphics", - "Videocard First Benchmarked": "2012-11-03", - "G3DMark/Price": "NA", - "Overall Rank": "941", - "Last Price Change": "NA", - "Score": 1238, - "Average G2D Mark": 524, - "Samples": 18 - } - ], - "gpu2266": [ - "Radeon HD 7660D + 7470 Dual", - { - "Other names": "AMD Radeon HD 7660D + 7470 Dual Graphics", - "Videocard First Benchmarked": "2012-11-11", - "G3DMark/Price": "NA", - "Overall Rank": "1567", - "Last Price Change": "NA", - "Score": 466, - "Average G2D Mark": 491, - "Samples": 3 - } - ], - "gpu2769": [ - "Radeon HD 7660D + 7500 Dual", - { - "Other names": "AMD Radeon HD 7660D + 7500 Dual Graphics", - "Videocard First Benchmarked": "2013-12-24", - "G3DMark/Price": "NA", - "Overall Rank": "990", - "Last Price Change": "NA", - "Score": 1121, - "Average G2D Mark": 500, - "Samples": 1 - } - ], - "gpu2450": [ - "Radeon HD 7660D + 7540D Dual", - { - "Other names": "AMD Radeon HD 7660D + 7540D Dual Graphics", - "Videocard First Benchmarked": "2013-03-21", - "G3DMark/Price": "NA", - "Overall Rank": "960", - "Last Price Change": "NA", - "Score": 1204, - "Average G2D Mark": 547, - "Samples": 1 - } - ], - "gpu2255": [ - "Radeon HD 7660D + 7670 Dual", - { - "Other names": "AMD Radeon HD 7660D + 7670 Dual Graphics", - "Videocard First Benchmarked": "2012-11-05", - "G3DMark/Price": "NA", - "Overall Rank": "1020", - "Last Price Change": "NA", - "Score": 1062, - "Average G2D Mark": 494, - "Samples": 4 - } - ], - "gpu3091": [ - "Radeon HD 7660D + HD 6670 Dual", - { - "Other names": "AMD Radeon HD 7660D + HD 6670 Dual Graphics", - "Videocard First Benchmarked": "2014-12-26", - "G3DMark/Price": "NA", - "Overall Rank": "872", - "Last Price Change": "NA", - "Score": 1485, - "Average G2D Mark": 515, - "Samples": 6 - } - ], - "gpu2879": [ - "Radeon HD 7660D + HD 7000 Dual", - { - "Other names": "AMD Radeon HD 7660D + HD 7000 Dual Graphics", - "Videocard First Benchmarked": "2014-05-30", - "G3DMark/Price": "NA", - "Overall Rank": "1355", - "Last Price Change": "NA", - "Score": 634, - "Average G2D Mark": 465, - "Samples": 2 - } - ], - "gpu3307": [ - "Radeon HD 7660D + HD 7400 Dual", - { - "Other names": "AMD Radeon HD 7660D + HD 7400 Dual Graphics", - "Videocard First Benchmarked": "2015-09-12", - "G3DMark/Price": "NA", - "Overall Rank": "1682", - "Last Price Change": "NA", - "Score": 340, - "Average G2D Mark": 448, - "Samples": 1 - } - ], - "gpu3335": [ - "Radeon HD 7660D + HD 7700 Dual", - { - "Other names": "AMD Radeon HD 7660D + HD 7700 Dual Graphics", - "Videocard First Benchmarked": "2015-10-18", - "G3DMark/Price": "NA", - "Overall Rank": "724", - "Last Price Change": "NA", - "Score": 1958, - "Average G2D Mark": 495, - "Samples": 3 - } - ], - "gpu3687": [ - "Radeon HD 7660D + R5 235 Dual", - { - "Other names": "AMD Radeon HD 7660D + R5 235 Dual Graphics", - "Videocard First Benchmarked": "2017-02-23", - "G3DMark/Price": "NA", - "Overall Rank": "1504", - "Last Price Change": "NA", - "Score": 524, - "Average G2D Mark": 386, - "Samples": 1 - } - ], - "gpu3163": [ - "Radeon HD 7660D + R7 240 Dual", - { - "Other names": "AMD Radeon HD 7660D + R7 240 Dual Graphics", - "Videocard First Benchmarked": "2015-03-20", - "G3DMark/Price": "NA", - "Overall Rank": "1088", - "Last Price Change": "NA", - "Score": 942, - "Average G2D Mark": 453, - "Samples": 2 - } - ], - "gpu316": [ - "Radeon HD 7660G", - { - "Other names": "AMD Radeon HD 7660G", - "Videocard First Benchmarked": "2012-06-30", - "G3DMark/Price": "NA", - "Overall Rank": "1554", - "Last Price Change": "NA", - "Score": 476, - "Average G2D Mark": 130, - "Samples": 683 - } - ], - "gpu2367": [ - "Radeon HD 7660G + 7400M Dual", - { - "Other names": "AMD Radeon HD 7660G + 7400M Dual Graphics", - "Videocard First Benchmarked": "2013-01-15", - "G3DMark/Price": "NA", - "Overall Rank": "1421", - "Last Price Change": "NA", - "Score": 588, - "Average G2D Mark": 326, - "Samples": 2 - } - ], - "gpu317": [ - "Radeon HD 7660G + 7470M Dual", - { - "Other names": "AMD Radeon HD 7660G + 7470M Dual Graphics", - "Videocard First Benchmarked": "2012-08-23", - "G3DMark/Price": "NA", - "Overall Rank": "1363", - "Last Price Change": "NA", - "Score": 631, - "Average G2D Mark": 351, - "Samples": 7 - } - ], - "gpu2233": [ - "Radeon HD 7660G + 7600M Dual", - { - "Other names": "AMD Radeon HD 7660G + 7600M Dual Graphics", - "Videocard First Benchmarked": "2012-10-30", - "G3DMark/Price": "NA", - "Overall Rank": "1169", - "Last Price Change": "NA", - "Score": 832, - "Average G2D Mark": 341, - "Samples": 55 - } - ], - "gpu2335": [ - "Radeon HD 7660G + 7610M Dual", - { - "Other names": "AMD Radeon HD 7660G + 7610M Dual Graphics", - "Videocard First Benchmarked": "2012-12-28", - "G3DMark/Price": "NA", - "Overall Rank": "1248", - "Last Price Change": "NA", - "Score": 746, - "Average G2D Mark": 323, - "Samples": 16 - } - ], - "gpu318": [ - "Radeon HD 7660G + 7670M Dual", - { - "Other names": "AMD Radeon HD 7660G + 7670M Dual Graphics", - "Videocard First Benchmarked": "2012-06-14", - "G3DMark/Price": "NA", - "Overall Rank": "1252", - "Last Price Change": "NA", - "Score": 743, - "Average G2D Mark": 347, - "Samples": 96 - } - ], - "gpu2409": [ - "Radeon HD 7660G + 7700M Dual", - { - "Other names": "AMD Radeon HD 7660G + 7700M Dual Graphics", - "Videocard First Benchmarked": "2013-08-12", - "G3DMark/Price": "NA", - "Overall Rank": "1234", - "Last Price Change": "NA", - "Score": 757, - "Average G2D Mark": 311, - "Samples": 5 - } - ], - "gpu2779": [ - "Radeon HD 7660G + 7730M Dual", - { - "Other names": "AMD Radeon HD 7660G + 7730M Dual Graphics", - "Videocard First Benchmarked": "2014-01-03", - "G3DMark/Price": "NA", - "Overall Rank": "1093", - "Last Price Change": "NA", - "Score": 931, - "Average G2D Mark": 392, - "Samples": 2 - } - ], - "gpu2837": [ - "Radeon HD 7660G + 8600M Dual", - { - "Other names": "AMD Radeon HD 7660G + 8600M Dual Graphics", - "Videocard First Benchmarked": "2014-03-13", - "G3DMark/Price": "NA", - "Overall Rank": "1592", - "Last Price Change": "NA", - "Score": 446, - "Average G2D Mark": 360, - "Samples": 3 - } - ], - "gpu2839": [ - "Radeon HD 7660G + 8670M Dual", - { - "Other names": "AMD Radeon HD 7660G + 8670M Dual Graphics", - "Videocard First Benchmarked": "2014-03-14", - "G3DMark/Price": "NA", - "Overall Rank": "1422", - "Last Price Change": "NA", - "Score": 588, - "Average G2D Mark": 333, - "Samples": 7 - } - ], - "gpu2861": [ - "Radeon HD 7660G + HD 7500/7600 7500/7600 Dual", - { - "Other names": "AMD Radeon HD 7660G + HD 7500/7600 7500/7600 Dual Graphics", - "Videocard First Benchmarked": "2014-04-22", - "G3DMark/Price": "NA", - "Overall Rank": "1050", - "Last Price Change": "NA", - "Score": 1002, - "Average G2D Mark": 347, - "Samples": 1 - } - ], - "gpu3570": [ - "Radeon HD 7660G + HD 7500/7600 Dual", - { - "Other names": "AMD Radeon HD 7660G + HD 7500/7600 Dual Graphics", - "Videocard First Benchmarked": "2016-09-02", - "G3DMark/Price": "NA", - "Overall Rank": "1231", - "Last Price Change": "NA", - "Score": 760, - "Average G2D Mark": 369, - "Samples": 1 - } - ], - "gpu3488": [ - "Radeon HD 7660G + HD 7500M/7600M Dual", - { - "Other names": "AMD Radeon HD 7660G + HD 7500M/7600M Dual Graphics", - "Videocard First Benchmarked": "2016-04-28", - "G3DMark/Price": "NA", - "Overall Rank": "1052", - "Last Price Change": "NA", - "Score": 999, - "Average G2D Mark": 323, - "Samples": 2 - } - ], - "gpu2864": [ - "Radeon HD 7660G + HD 7600M Dual", - { - "Other names": "AMD Radeon HD 7660G + HD 7600M Dual Graphics", - "Videocard First Benchmarked": "2014-04-27", - "G3DMark/Price": "NA", - "Overall Rank": "1506", - "Last Price Change": "NA", - "Score": 523, - "Average G2D Mark": 89, - "Samples": 104 - } - ], - "gpu2901": [ - "Radeon HD 7660G + HD 7600M N HD 7600M Dual", - { - "Other names": "AMD Radeon HD 7660G + HD 7600M N HD 7600M Dual Graphics", - "Videocard First Benchmarked": "2014-07-04", - "G3DMark/Price": "NA", - "Overall Rank": "1578", - "Last Price Change": "NA", - "Score": 460, - "Average G2D Mark": 297, - "Samples": 1 - } - ], - "gpu2794": [ - "Radeon HD 7660G + HD 7670M Dual", - { - "Other names": "AMD Radeon HD 7660G + HD 7670M Dual Graphics", - "Videocard First Benchmarked": "2014-01-17", - "G3DMark/Price": "NA", - "Overall Rank": "1288", - "Last Price Change": "NA", - "Score": 707, - "Average G2D Mark": 317, - "Samples": 17 - } - ], - "gpu2988": [ - "Radeon HD 7660G + HD 7700M Dual", - { - "Other names": "AMD Radeon HD 7660G + HD 7700M Dual Graphics", - "Videocard First Benchmarked": "2014-10-22", - "G3DMark/Price": "NA", - "Overall Rank": "1212", - "Last Price Change": "NA", - "Score": 777, - "Average G2D Mark": 168, - "Samples": 12 - } - ], - "gpu3433": [ - "Radeon HD 7660G + HD 7730M Dual", - { - "Other names": "AMD Radeon HD 7660G + HD 7730M Dual Graphics", - "Videocard First Benchmarked": "2016-02-17", - "G3DMark/Price": "NA", - "Overall Rank": "1131", - "Last Price Change": "NA", - "Score": 882, - "Average G2D Mark": 329, - "Samples": 3 - } - ], - "gpu2943": [ - "Radeon HD 7660G + HD 8500M Dual", - { - "Other names": "AMD Radeon HD 7660G + HD 8500M Dual Graphics", - "Videocard First Benchmarked": "2014-09-11", - "G3DMark/Price": "NA", - "Overall Rank": "1232", - "Last Price Change": "NA", - "Score": 758, - "Average G2D Mark": 355, - "Samples": 1 - } - ], - "gpu3514": [ - "Radeon HD 7660G + HD 8600/8700M Dual", - { - "Other names": "AMD Radeon HD 7660G + HD 8600/8700M Dual Graphics", - "Videocard First Benchmarked": "2016-06-01", - "G3DMark/Price": "NA", - "Overall Rank": "1246", - "Last Price Change": "NA", - "Score": 747, - "Average G2D Mark": 365, - "Samples": 1 - } - ], - "gpu3507": [ - "Radeon HD 7660G + HD 8600M Dual", - { - "Other names": "AMD Radeon HD 7660G + HD 8600M Dual Graphics", - "Videocard First Benchmarked": "2016-05-18", - "G3DMark/Price": "NA", - "Overall Rank": "1665", - "Last Price Change": "NA", - "Score": 364, - "Average G2D Mark": 337, - "Samples": 1 - } - ], - "gpu3390": [ - "Radeon HD 7660G + HD 8670M Dual", - { - "Other names": "AMD Radeon HD 7660G + HD 8670M Dual Graphics", - "Videocard First Benchmarked": "2015-12-15", - "G3DMark/Price": "NA", - "Overall Rank": "1285", - "Last Price Change": "NA", - "Score": 711, - "Average G2D Mark": 325, - "Samples": 5 - } - ], - "gpu2726": [ - "Radeon HD 7660G N HD 7660G + HD 7600M N HD 7600M D", - { - "Other names": "AMD Radeon HD 7660G N HD 7660G + HD 7600M N HD 7600M Dual Graphics", - "Videocard First Benchmarked": "2013-11-12", - "G3DMark/Price": "NA", - "Overall Rank": "1272", - "Last Price Change": "NA", - "Score": 723, - "Average G2D Mark": 292, - "Samples": 7 - } - ], - "gpu2795": [ - "Radeon HD 7660G N HD 7660G + HD 7670M Dual", - { - "Other names": "AMD Radeon HD 7660G N HD 7660G + HD 7670M Dual Graphics", - "Videocard First Benchmarked": "2014-01-18", - "G3DMark/Price": "NA", - "Overall Rank": "1291", - "Last Price Change": "NA", - "Score": 705, - "Average G2D Mark": 318, - "Samples": 8 - } - ], - "gpu2750": [ - "Radeon HD 7660G N HD 7660G + HD 7700M N HD 7700M D", - { - "Other names": "AMD Radeon HD 7660G N HD 7660G + HD 7700M N HD 7700M Dual Graphics", - "Videocard First Benchmarked": "2013-12-08", - "G3DMark/Price": "NA", - "Overall Rank": "1072", - "Last Price Change": "NA", - "Score": 967, - "Average G2D Mark": 351, - "Samples": 2 - } - ], - "gpu319": [ - "Radeon HD 7670", - { - "Bus Interface": "PCIe 2.1 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "800 MHz", - "Memory Clock(s)": "1000 MHz", - "DirectX": "11", - "OpenGL": "4.4", - "Max TDP": "66 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon HD 7670, ASUS HD7670 Series", - "Videocard First Benchmarked": "2012-02-21", - "G3DMark/Price": "NA", - "Overall Rank": "1179", - "Last Price Change": "NA", - "Score": 821, - "Average G2D Mark": 319, - "Samples": 124 - } - ], - "gpu333": [ - "Radeon HD 7670A", - { - "Other names": "AMD Radeon(TM) HD 7670A Graphics", - "Videocard First Benchmarked": "2012-02-03", - "G3DMark/Price": "NA", - "Overall Rank": "1025", - "Last Price Change": "NA", - "Score": 1050, - "Average G2D Mark": 702, - "Samples": 5 - } - ], - "gpu320": [ - "Radeon HD 7670M", - { - "Bus Interface": "PCIe 2.1 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "600 MHz", - "Memory Clock(s)": "900 MHz", - "DirectX": "11", - "OpenGL": "4.4", - "Max TDP": "20 W", - "Videocard Category": "Mobile", - "Other names": "AMD Radeon HD 7670M, AMD Radeon. HD 7670M, Radeon (TM) HD 7670M, Radeon (TM) HD 7670M", - "Videocard First Benchmarked": "2012-05-27", - "G3DMark/Price": "0.75", - "Overall Rank": "1559", - "Last Price Change": "$629.99 USD (2013-09-18)", - "Score": 474, - "Average G2D Mark": 101, - "Samples": 459 - } - ], - "gpu2277": [ - "Radeon HD 7670M + 7670M Dual", - { - "Other names": "AMD Radeon HD 7670M + 7670M Dual Graphics", - "Videocard First Benchmarked": "2012-11-18", - "G3DMark/Price": "NA", - "Overall Rank": "1259", - "Last Price Change": "NA", - "Score": 738, - "Average G2D Mark": 294, - "Samples": 3 - } - ], - "gpu2294": [ - "Radeon HD 7690M", - { - "Bus Interface": "PCIe 2.1 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "725,600 MHz", - "Memory Clock(s)": "900,900 MHz", - "DirectX": "11", - "OpenGL": "4.4", - "Max TDP": "20 W", - "Videocard Category": "Mobile", - "Other names": "AMD Radeon HD 7690M, Radeon (TM) HD 7690M", - "Videocard First Benchmarked": "2012-12-03", - "G3DMark/Price": "NA", - "Overall Rank": "1049", - "Last Price Change": "NA", - "Score": 1003, - "Average G2D Mark": 576, - "Samples": 26 - } - ], - "gpu3024": [ - "Radeon HD 7690M XT", - { - "Bus Interface": "PCIe 2.1 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "725 MHz", - "Memory Clock(s)": "900 MHz", - "DirectX": "11", - "OpenGL": "4.4", - "Max TDP": "25 W", - "Videocard Category": "Mobile", - "Other names": "Radeon (TM) HD 7690M XT", - "Videocard First Benchmarked": "2015-01-24", - "G3DMark/Price": "NA", - "Overall Rank": "1046", - "Last Price Change": "NA", - "Score": 1009, - "Average G2D Mark": 552, - "Samples": 4 - } - ], - "gpu2317": [ - "Radeon HD 7700-serie", - { - "Other names": "AMD Radeon HD 7700-serie", - "Videocard First Benchmarked": "2012-12-18", - "G3DMark/Price": "NA", - "Overall Rank": "741", - "Last Price Change": "NA", - "Score": 1899, - "Average G2D Mark": 533, - "Samples": 1 - } - ], - "gpu3138": [ - "Radeon HD 7730", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "800 MHz", - "Memory Clock(s)": "900-1125 MHz", - "DirectX": "11.2", - "OpenGL": "4.2", - "Max TDP": "47 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon HD 7730", - "Videocard First Benchmarked": "2015-03-01", - "G3DMark/Price": "5.19", - "Overall Rank": "956", - "Last Price Change": "$232.7 USD (2021-07-03)", - "Score": 1209, - "Average G2D Mark": 407, - "Samples": 230 - } - ], - "gpu2995": [ - "Radeon HD 7730M", - { - "Bus Interface": "PCIe 2.1 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "575,675 MHz", - "Memory Clock(s)": "900,900 MHz", - "DirectX": "11.1", - "OpenGL": "4.4", - "Max TDP": "25 W", - "Videocard Category": "Mobile", - "Other names": "AMD Radeon HD 7730M, AMD Radeon. HD 7730M", - "Videocard First Benchmarked": "2015-03-25", - "G3DMark/Price": "NA", - "Overall Rank": "1241", - "Last Price Change": "NA", - "Score": 750, - "Average G2D Mark": 216, - "Samples": 101 - } - ], - "gpu321": [ - "Radeon HD 7750", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "800,900 MHz", - "Memory Clock(s)": "800,1125 MHz", - "DirectX": "11.2", - "OpenGL": "4.4", - "Max TDP": "55 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon HD 7750, ASUS HD7750 Series, AMD Radeon HD 7750 Graphics", - "Videocard First Benchmarked": "2012-06-20", - "G3DMark/Price": "15.42", - "Overall Rank": "803", - "Last Price Change": "$110 USD (2023-12-07)", - "Score": 1697, - "Average G2D Mark": 417, - "Samples": 5755 - } - ], - "gpu2476": [ - "Radeon HD 7750M", - { - "Bus Interface": "PCIe 2.1 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "575 MHz", - "Memory Clock(s)": "1000 MHz", - "DirectX": "11.1", - "OpenGL": "4.4", - "Max TDP": "28 W", - "Videocard Category": "Mobile", - "Other names": "AMD Radeon HD 7750M, Radeon (TM) HD 7750M", - "Videocard First Benchmarked": "2013-04-04", - "G3DMark/Price": "NA", - "Overall Rank": "963", - "Last Price Change": "NA", - "Score": 1191, - "Average G2D Mark": 693, - "Samples": 3 - } - ], - "gpu322": [ - "Radeon HD 7770", - { - "Bus Interface": "PCI Express 3.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "1020 MHz", - "Memory Clock(s)": "1150 MHz", - "DirectX": "11.2", - "OpenGL": "4.2", - "Max TDP": "80 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon HD 7770, ASUS HD7770 Series", - "Videocard First Benchmarked": "2012-06-13", - "G3DMark/Price": "7.24", - "Overall Rank": "669", - "Last Price Change": "$300 USD (2022-03-30)", - "Score": 2171, - "Average G2D Mark": 461, - "Samples": 9206 - } - ], - "gpu2502": [ - "Radeon HD 7790", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "1000 MHz", - "Memory Clock(s)": "1500 MHz", - "DirectX": "11.2", - "OpenGL": "4.4", - "Max TDP": "85 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon HD 7700 Series, ASUS HD7790 Series, AMD Radeon HD 7700 Series (Engineering Sample - WDDM v2.0)", - "Videocard First Benchmarked": "2013-04-09", - "G3DMark/Price": "22.07", - "Overall Rank": "518", - "Last Price Change": "$139.99 USD (2021-05-16)", - "Score": 3090, - "Average G2D Mark": 459, - "Samples": 2143 - } - ], - "gpu2967": [ - "Radeon HD 7800-serie", - { - "Other names": "AMD Radeon HD 7800-serie", - "Videocard First Benchmarked": "2014-10-04", - "G3DMark/Price": "NA", - "Overall Rank": "429", - "Last Price Change": "NA", - "Score": 4029, - "Average G2D Mark": 708, - "Samples": 1 - } - ], - "gpu323": [ - "Radeon HD 7850", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "860 MHz", - "Memory Clock(s)": "1200 MHz", - "DirectX": "11.2", - "OpenGL": "4.4", - "Max TDP": "130 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon HD 7850, ASUS HD7850 Series", - "Videocard First Benchmarked": "2012-05-03", - "G3DMark/Price": "22.68", - "Overall Rank": "442", - "Last Price Change": "$169.99 USD (2022-04-10)", - "Score": 3855, - "Average G2D Mark": 561, - "Samples": 11133 - } - ], - "gpu1688": [ - "Radeon HD 7850M", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "675 MHz", - "Memory Clock(s)": "1000 MHz", - "DirectX": "11.1", - "OpenGL": "4.4", - "Max TDP": "40 W", - "Videocard Category": "Mobile", - "Other names": "Radeon (TM) HD 7850M", - "Videocard First Benchmarked": "2012-06-28", - "G3DMark/Price": "NA", - "Overall Rank": "902", - "Last Price Change": "NA", - "Score": 1373, - "Average G2D Mark": 566, - "Samples": 8 - } - ], - "gpu324": [ - "Radeon HD 7870", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "1000 MHz", - "Memory Clock(s)": "1200 MHz", - "DirectX": "11.2", - "OpenGL": "4.4", - "Max TDP": "175 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon HD 7870, ASUS HD7870 Series, AMD Radeon HD 7800 Series, AMD Radeon HD 7770, AMD Radeon HD 7870 (Tahiti LE)", - "Videocard First Benchmarked": "2012-06-05", - "G3DMark/Price": "26.36", - "Overall Rank": "389", - "Last Price Change": "$176 USD (2021-11-20)", - "Score": 4639, - "Average G2D Mark": 590, - "Samples": 7635 - } - ], - "gpu2557": [ - "Radeon HD 7870 XT", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "925 MHz", - "Memory Clock(s)": "1500 MHz", - "DirectX": "11.2", - "OpenGL": "4.4", - "Max TDP": "185 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon HD 7800 Series, AMD Radeon HD 7870 (Tahiti LE)", - "Videocard First Benchmarked": "2013-05-01", - "G3DMark/Price": "NA", - "Overall Rank": "403", - "Last Price Change": "NA", - "Score": 4470, - "Average G2D Mark": 661, - "Samples": 1221 - } - ], - "gpu2308": [ - "Radeon HD 7870M", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "800 MHz", - "Memory Clock(s)": "1000 MHz", - "DirectX": "11.1", - "OpenGL": "4.4", - "Max TDP": "45 W", - "Videocard Category": "Mobile", - "Other names": "AMD Radeon HD 7870M", - "Videocard First Benchmarked": "2012-12-12", - "G3DMark/Price": "NA", - "Overall Rank": "863", - "Last Price Change": "NA", - "Score": 1507, - "Average G2D Mark": 556, - "Samples": 15 - } - ], - "gpu325": [ - "Radeon HD 7950 / R9 280", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "3072 MB", - "Core Clock(s)": "850 MHz", - "Memory Clock(s)": "1250 MHz", - "DirectX": "11.2/12.0", - "OpenGL": "4.4", - "Max TDP": "200 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon HD 7950, AMD Radeon HD 7950 / R9 280, ASUS R9 280 Series", - "Videocard First Benchmarked": "2012-06-09", - "G3DMark/Price": "36.04", - "Overall Rank": "382", - "Last Price Change": "$132.2 USD (2022-05-26)", - "Score": 4765, - "Average G2D Mark": 691, - "Samples": 7473 - } - ], - "gpu51": [ - "Radeon HD 7970 / R9 280X", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "3072 MB", - "Core Clock(s)": "1000 MHz", - "Memory Clock(s)": "1500 MHz", - "DirectX": "11.2/12.0", - "OpenGL": "4.4", - "Max TDP": "250 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon HD 7970, AMD Radeon HD 7970 / R9 280X, ASUS R9 280X Series", - "Videocard First Benchmarked": "2012-08-17", - "G3DMark/Price": "21.25", - "Overall Rank": "344", - "Last Price Change": "$246.99 USD (2022-03-30)", - "Score": 5248, - "Average G2D Mark": 730, - "Samples": 10419 - } - ], - "gpu326": [ - "Radeon HD 7970M", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "850 MHz", - "Memory Clock(s)": "1200 MHz", - "DirectX": "11.1", - "OpenGL": "4.4", - "Max TDP": "75 W", - "Videocard Category": "Mobile", - "Other names": "AMD Radeon HD 7970M, AMD Radeon HD 7970M (Engineering Sample - WDDM v2.0)", - "Videocard First Benchmarked": "2012-06-30", - "G3DMark/Price": "NA", - "Overall Rank": "444", - "Last Price Change": "NA", - "Score": 3847, - "Average G2D Mark": 550, - "Samples": 315 - } - ], - "gpu2528": [ - "Radeon HD 7990", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "3072 MB", - "Core Clock(s)": "950 MHz", - "Memory Clock(s)": "1500 MHz", - "DirectX": "11.2", - "OpenGL": "4.4", - "Max TDP": "375 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon HD 7900 Series, ASUS HD7990 Series", - "Videocard First Benchmarked": "2013-05-04", - "G3DMark/Price": "13.91", - "Overall Rank": "321", - "Last Price Change": "$399.99 USD (2021-05-27)", - "Score": 5566, - "Average G2D Mark": 766, - "Samples": 301 - } - ], - "gpu2668": [ - "Radeon HD 8180", - { - "Other names": "AMD Radeon HD 8180", - "Videocard First Benchmarked": "2013-10-05", - "G3DMark/Price": "NA", - "Overall Rank": "1904", - "Last Price Change": "NA", - "Score": 139, - "Average G2D Mark": 35, - "Samples": 104 - } - ], - "gpu2575": [ - "Radeon HD 8210", - { - "Other names": "AMD Radeon HD 8210, AMD Radeon HD 8210 Graphics, (PE) AMD Radeon HD 8210", - "Videocard First Benchmarked": "2013-07-08", - "G3DMark/Price": "NA", - "Overall Rank": "1837", - "Last Price Change": "NA", - "Score": 186, - "Average G2D Mark": 48, - "Samples": 596 - } - ], - "gpu3713": [ - "Radeon HD 8210E", - { - "Other names": "AMD Radeon(TM) HD 8210E", - "Videocard First Benchmarked": "2017-03-27", - "G3DMark/Price": "NA", - "Overall Rank": "1828", - "Last Price Change": "NA", - "Score": 194, - "Average G2D Mark": 202, - "Samples": 1 - } - ], - "gpu2653": [ - "Radeon HD 8240", - { - "Other names": "AMD Radeon HD 8240", - "Videocard First Benchmarked": "2013-09-10", - "G3DMark/Price": "NA", - "Overall Rank": "1774", - "Last Price Change": "NA", - "Score": 239, - "Average G2D Mark": 62, - "Samples": 201 - } - ], - "gpu2541": [ - "Radeon HD 8250", - { - "Other names": "AMD Radeon HD 8250, AMD Radeon HD 8250 Graphics", - "Videocard First Benchmarked": "2013-06-12", - "G3DMark/Price": "NA", - "Overall Rank": "1796", - "Last Price Change": "NA", - "Score": 217, - "Average G2D Mark": 63, - "Samples": 259 - } - ], - "gpu2810": [ - "Radeon HD 8280", - { - "Other names": "AMD Radeon HD 8280", - "Videocard First Benchmarked": "2014-02-08", - "G3DMark/Price": "NA", - "Overall Rank": "1753", - "Last Price Change": "NA", - "Score": 261, - "Average G2D Mark": 75, - "Samples": 103 - } - ], - "gpu2799": [ - "Radeon HD 8280E", - { - "Other names": "AMD Radeon(TM) HD 8280E", - "Videocard First Benchmarked": "2014-01-22", - "G3DMark/Price": "NA", - "Overall Rank": "1776", - "Last Price Change": "NA", - "Score": 237, - "Average G2D Mark": 82, - "Samples": 20 - } - ], - "gpu2512": [ - "Radeon HD 8280G", - { - "Other names": "AMD Radeon HD 8280G", - "Videocard First Benchmarked": "2013-05-11", - "G3DMark/Price": "NA", - "Overall Rank": "1744", - "Last Price Change": "NA", - "Score": 270, - "Average G2D Mark": 130, - "Samples": 5 - } - ], - "gpu3279": [ - "Radeon HD 8310E", - { - "Other names": "AMD Radeon HD 8310E", - "Videocard First Benchmarked": "2015-08-06", - "G3DMark/Price": "NA", - "Overall Rank": "1681", - "Last Price Change": "NA", - "Score": 341, - "Average G2D Mark": 187, - "Samples": 1 - } - ], - "gpu2627": [ - "Radeon HD 8330", - { - "Other names": "AMD Radeon HD 8330, AMD Radeon HD 8330 Graphics", - "Videocard First Benchmarked": "2013-08-18", - "G3DMark/Price": "NA", - "Overall Rank": "1759", - "Last Price Change": "NA", - "Score": 258, - "Average G2D Mark": 69, - "Samples": 847 - } - ], - "gpu2709": [ - "Radeon HD 8330E", - { - "Other names": "AMD Radeon(TM) HD 8330E", - "Videocard First Benchmarked": "2013-11-04", - "G3DMark/Price": "NA", - "Overall Rank": "1748", - "Last Price Change": "NA", - "Score": 267, - "Average G2D Mark": 84, - "Samples": 36 - } - ], - "gpu2707": [ - "Radeon HD 8350", - { - "Bus Interface": "PCIe 2.1 x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "400 MHz", - "Memory Clock(s)": "650 MHz", - "DirectX": "80:08:04", - "OpenGL": "11", - "Max TDP": "4.4 W", - "Videocard Category": "Desktop", - "Other names": "ASUS HD8350 Series, AMD Radeon HD 8350, AMD Radeon(TM) HD 8350", - "Videocard First Benchmarked": "2013-11-01", - "G3DMark/Price": "1.63", - "Overall Rank": "1864", - "Last Price Change": "$99.81 USD (2022-03-30)", - "Score": 163, - "Average G2D Mark": 222, - "Samples": 58 - } - ], - "gpu2580": [ - "Radeon HD 8350G", - { - "Bus Interface": "Integrated", - "Core Clock(s)": "514 MHz", - "DirectX": "11.0", - "OpenGL": "4.3", - "Max TDP": "35 W", - "Videocard Category": "Mobile", - "Other names": "AMD Radeon HD 8350G", - "Videocard First Benchmarked": "2013-07-10", - "G3DMark/Price": "NA", - "Overall Rank": "1713", - "Last Price Change": "NA", - "Score": 304, - "Average G2D Mark": 169, - "Samples": 25 - } - ], - "gpu2712": [ - "Radeon HD 8370D", - { - "Other names": "AMD Radeon HD 8370D", - "Videocard First Benchmarked": "2013-11-06", - "G3DMark/Price": "NA", - "Overall Rank": "1706", - "Last Price Change": "NA", - "Score": 314, - "Average G2D Mark": 150, - "Samples": 278 - } - ], - "gpu2582": [ - "Radeon HD 8400", - { - "Other names": "AMD Radeon HD 8400", - "Videocard First Benchmarked": "2013-07-11", - "G3DMark/Price": "NA", - "Overall Rank": "1752", - "Last Price Change": "NA", - "Score": 262, - "Average G2D Mark": 79, - "Samples": 1496 - } - ], - "gpu2775": [ - "Radeon HD 8400E", - { - "Other names": "AMD Radeon(TM) HD 8400E", - "Videocard First Benchmarked": "2013-12-30", - "G3DMark/Price": "NA", - "Overall Rank": "1745", - "Last Price Change": "NA", - "Score": 269, - "Average G2D Mark": 119, - "Samples": 20 - } - ], - "gpu2848": [ - "Radeon HD 8410G", - { - "Other names": "AMD Radeon HD 8410G", - "Videocard First Benchmarked": "2014-04-01", - "G3DMark/Price": "NA", - "Overall Rank": "1602", - "Last Price Change": "NA", - "Score": 435, - "Average G2D Mark": 263, - "Samples": 8 - } - ], - "gpu2595": [ - "Radeon HD 8450G", - { - "Other names": "AMD Radeon HD 8450G", - "Videocard First Benchmarked": "2013-07-24", - "G3DMark/Price": "NA", - "Overall Rank": "1663", - "Last Price Change": "NA", - "Score": 364, - "Average G2D Mark": 144, - "Samples": 123 - } - ], - "gpu2731": [ - "Radeon HD 8450G + 8600/8700M Dual", - { - "Other names": "AMD Radeon HD 8450G + 8600/8700M Dual Graphics", - "Videocard First Benchmarked": "2013-11-16", - "G3DMark/Price": "NA", - "Overall Rank": "1018", - "Last Price Change": "NA", - "Score": 1070, - "Average G2D Mark": 381, - "Samples": 1 - } - ], - "gpu2771": [ - "Radeon HD 8450G + 8600M Dual", - { - "Other names": "AMD Radeon HD 8450G + 8600M Dual Graphics", - "Videocard First Benchmarked": "2013-12-28", - "G3DMark/Price": "NA", - "Overall Rank": "1476", - "Last Price Change": "NA", - "Score": 545, - "Average G2D Mark": 356, - "Samples": 3 - } - ], - "gpu2625": [ - "Radeon HD 8450G + 8670M Dual", - { - "Other names": "AMD Radeon HD 8450G + 8670M Dual Graphics", - "Videocard First Benchmarked": "2013-08-16", - "G3DMark/Price": "NA", - "Overall Rank": "1557", - "Last Price Change": "NA", - "Score": 475, - "Average G2D Mark": 414, - "Samples": 2 - } - ], - "gpu2667": [ - "Radeon HD 8450G + 8750M Dual", - { - "Other names": "AMD Radeon HD 8450G + 8750M Dual Graphics", - "Videocard First Benchmarked": "2013-10-05", - "G3DMark/Price": "NA", - "Overall Rank": "1350", - "Last Price Change": "NA", - "Score": 637, - "Average G2D Mark": 299, - "Samples": 2 - } - ], - "gpu3166": [ - "Radeon HD 8450G + HD 8600M Dual", - { - "Other names": "AMD Radeon HD 8450G + HD 8600M Dual Graphics", - "Videocard First Benchmarked": "2015-03-24", - "G3DMark/Price": "NA", - "Overall Rank": "1588", - "Last Price Change": "NA", - "Score": 452, - "Average G2D Mark": 326, - "Samples": 2 - } - ], - "gpu3685": [ - "Radeon HD 8450G + HD 8670M Dual", - { - "Other names": "AMD Radeon HD 8450G + HD 8670M Dual Graphics", - "Videocard First Benchmarked": "2017-02-23", - "G3DMark/Price": "NA", - "Overall Rank": "1444", - "Last Price Change": "NA", - "Score": 575, - "Average G2D Mark": 377, - "Samples": 3 - } - ], - "gpu3587": [ - "Radeon HD 8450G + HD 8750M Dual", - { - "Other names": "AMD Radeon HD 8450G + HD 8750M Dual Graphics", - "Videocard First Benchmarked": "2016-10-09", - "G3DMark/Price": "NA", - "Overall Rank": "1527", - "Last Price Change": "NA", - "Score": 504, - "Average G2D Mark": 323, - "Samples": 4 - } - ], - "gpu3865": [ - "Radeon HD 8450G + R5 M230 Dual", - { - "Other names": "AMD Radeon HD 8450G + R5 M230 Dual Graphics", - "Videocard First Benchmarked": "2017-12-13", - "G3DMark/Price": "NA", - "Overall Rank": "1432", - "Last Price Change": "NA", - "Score": 578, - "Average G2D Mark": 298, - "Samples": 1 - } - ], - "gpu2645": [ - "Radeon HD 8470", - { - "Bus Interface": "PCIe 2.1 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "750 MHz", - "Memory Clock(s)": "800 MHz", - "DirectX": "11", - "OpenGL": "4.4", - "Max TDP": "35 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon HD 8470", - "Videocard First Benchmarked": "2013-09-03", - "G3DMark/Price": "NA", - "Overall Rank": "1765", - "Last Price Change": "NA", - "Score": 252, - "Average G2D Mark": 168, - "Samples": 43 - } - ], - "gpu2565": [ - "Radeon HD 8470D", - { - "Other names": "AMD Radeon HD 8470D", - "Videocard First Benchmarked": "2013-07-01", - "G3DMark/Price": "NA", - "Overall Rank": "1666", - "Last Price Change": "NA", - "Score": 364, - "Average G2D Mark": 144, - "Samples": 586 - } - ], - "gpu2648": [ - "Radeon HD 8470D + 6450 Dual", - { - "Other names": "AMD Radeon HD 8470D + 6450 Dual Graphics", - "Videocard First Benchmarked": "2013-09-06", - "G3DMark/Price": "NA", - "Overall Rank": "1281", - "Last Price Change": "NA", - "Score": 717, - "Average G2D Mark": 558, - "Samples": 3 - } - ], - "gpu2844": [ - "Radeon HD 8470D + 6570 Dual", - { - "Other names": "AMD Radeon HD 8470D + 6570 Dual Graphics", - "Videocard First Benchmarked": "2014-03-22", - "G3DMark/Price": "NA", - "Overall Rank": "1157", - "Last Price Change": "NA", - "Score": 838, - "Average G2D Mark": 454, - "Samples": 1 - } - ], - "gpu2939": [ - "Radeon HD 8470D + HD 6450 Dual", - { - "Other names": "AMD Radeon HD 8470D + HD 6450 Dual Graphics", - "Videocard First Benchmarked": "2014-09-05", - "G3DMark/Price": "NA", - "Overall Rank": "1139", - "Last Price Change": "NA", - "Score": 863, - "Average G2D Mark": 590, - "Samples": 1 - } - ], - "gpu3776": [ - "Radeon HD 8470D + HD 6670 Dual", - { - "Other names": "AMD Radeon HD 8470D + HD 6670 Dual Graphics", - "Videocard First Benchmarked": "2017-07-01", - "G3DMark/Price": "NA", - "Overall Rank": "885", - "Last Price Change": "NA", - "Score": 1436, - "Average G2D Mark": 512, - "Samples": 1 - } - ], - "gpu3990": [ - "Radeon HD 8470D + HD 7500 Dual", - { - "Other names": "AMD Radeon HD 8470D + HD 7500 Dual Graphics", - "Videocard First Benchmarked": "2018-09-20", - "G3DMark/Price": "NA", - "Overall Rank": "848", - "Last Price Change": "NA", - "Score": 1545, - "Average G2D Mark": 465, - "Samples": 2 - } - ], - "gpu2841": [ - "Radeon HD 8490", - { - "Bus Interface": "PCIe 2.1 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "875 MHz", - "Memory Clock(s)": "900 MHz", - "DirectX": "11", - "OpenGL": "4.4", - "Max TDP": "35 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon HD 8490, AMD Radeon(TM) HD 8490", - "Videocard First Benchmarked": "2014-03-19", - "G3DMark/Price": "2.92", - "Overall Rank": "1751", - "Last Price Change": "$89.99 USD (2021-09-09)", - "Score": 263, - "Average G2D Mark": 173, - "Samples": 310 - } - ], - "gpu3012": [ - "Radeon HD 8500M", - { - "Other names": "AMD Radeon HD 8500M", - "Videocard First Benchmarked": "2015-04-13", - "G3DMark/Price": "NA", - "Overall Rank": "1620", - "Last Price Change": "NA", - "Score": 412, - "Average G2D Mark": 114, - "Samples": 146 - } - ], - "gpu3000": [ - "Radeon HD 8500M/8700M", - { - "Other names": "AMD Radeon (TM) HD 8500M/8700M", - "Videocard First Benchmarked": "2015-02-27", - "G3DMark/Price": "NA", - "Overall Rank": "1147", - "Last Price Change": "NA", - "Score": 853, - "Average G2D Mark": 503, - "Samples": 24 - } - ], - "gpu2615": [ - "Radeon HD 8510G", - { - "Other names": "AMD Radeon HD 8510G, AMD Radeon(TM) HD 8510G", - "Videocard First Benchmarked": "2013-08-11", - "G3DMark/Price": "NA", - "Overall Rank": "1661", - "Last Price Change": "NA", - "Score": 365, - "Average G2D Mark": 103, - "Samples": 276 - } - ], - "gpu2577": [ - "Radeon HD 8510G + 8500M Dual", - { - "Other names": "AMD Radeon HD 8510G + 8500M Dual Graphics", - "Videocard First Benchmarked": "2014-08-04", - "G3DMark/Price": "NA", - "Overall Rank": "1405", - "Last Price Change": "NA", - "Score": 596, - "Average G2D Mark": 260, - "Samples": 2 - } - ], - "gpu3217": [ - "Radeon HD 8510G + HD 8500M Dual", - { - "Other names": "AMD Radeon HD 8510G + HD 8500M Dual Graphics", - "Videocard First Benchmarked": "2015-05-31", - "G3DMark/Price": "NA", - "Overall Rank": "1364", - "Last Price Change": "NA", - "Score": 630, - "Average G2D Mark": 191, - "Samples": 1 - } - ], - "gpu2828": [ - "Radeon HD 8550D", - { - "Other names": "AMD Radeon HD 8550D", - "Videocard First Benchmarked": "2014-03-04", - "G3DMark/Price": "NA", - "Overall Rank": "1452", - "Last Price Change": "NA", - "Score": 567, - "Average G2D Mark": 226, - "Samples": 6 - } - ], - "gpu2583": [ - "Radeon HD 8550G", - { - "Other names": "AMD Radeon HD 8550G", - "Videocard First Benchmarked": "2013-07-12", - "G3DMark/Price": "NA", - "Overall Rank": "1622", - "Last Price Change": "NA", - "Score": 409, - "Average G2D Mark": 117, - "Samples": 377 - } - ], - "gpu3495": [ - "Radeon HD 8550G + 7600M Dual", - { - "Other names": "AMD Radeon HD 8550G + 7600M Dual Graphics", - "Videocard First Benchmarked": "2016-05-05", - "G3DMark/Price": "NA", - "Overall Rank": "1113", - "Last Price Change": "NA", - "Score": 901, - "Average G2D Mark": 395, - "Samples": 1 - } - ], - "gpu2662": [ - "Radeon HD 8550G + 8500M Dual", - { - "Other names": "AMD Radeon HD 8550G + 8500M Dual Graphics", - "Videocard First Benchmarked": "2013-09-29", - "G3DMark/Price": "NA", - "Overall Rank": "1399", - "Last Price Change": "NA", - "Score": 603, - "Average G2D Mark": 304, - "Samples": 21 - } - ], - "gpu2614": [ - "Radeon HD 8550G + 8570M Dual", - { - "Other names": "AMD Radeon HD 8550G + 8570M Dual Graphics", - "Videocard First Benchmarked": "2013-08-10", - "G3DMark/Price": "NA", - "Overall Rank": "1494", - "Last Price Change": "NA", - "Score": 533, - "Average G2D Mark": 307, - "Samples": 24 - } - ], - "gpu2637": [ - "Radeon HD 8550G + 8600/8700M Dual", - { - "Other names": "AMD Radeon HD 8550G + 8600/8700M Dual Graphics", - "Videocard First Benchmarked": "2013-08-27", - "G3DMark/Price": "NA", - "Overall Rank": "1191", - "Last Price Change": "NA", - "Score": 803, - "Average G2D Mark": 336, - "Samples": 17 - } - ], - "gpu2628": [ - "Radeon HD 8550G + 8600M Dual", - { - "Other names": "AMD Radeon HD 8550G + 8600M Dual Graphics", - "Videocard First Benchmarked": "2013-08-19", - "G3DMark/Price": "NA", - "Overall Rank": "1379", - "Last Price Change": "NA", - "Score": 618, - "Average G2D Mark": 321, - "Samples": 14 - } - ], - "gpu2610": [ - "Radeon HD 8550G + 8670M Dual", - { - "Other names": "AMD Radeon HD 8550G + 8670M Dual Graphics", - "Videocard First Benchmarked": "2013-08-09", - "G3DMark/Price": "NA", - "Overall Rank": "1431", - "Last Price Change": "NA", - "Score": 579, - "Average G2D Mark": 334, - "Samples": 16 - } - ], - "gpu2743": [ - "Radeon HD 8550G + 8690M Dual", - { - "Other names": "AMD Radeon HD 8550G + 8690M Dual Graphics", - "Videocard First Benchmarked": "2013-11-30", - "G3DMark/Price": "NA", - "Overall Rank": "1324", - "Last Price Change": "NA", - "Score": 664, - "Average G2D Mark": 260, - "Samples": 4 - } - ], - "gpu2639": [ - "Radeon HD 8550G + 8750M Dual", - { - "Other names": "AMD Radeon HD 8550G + 8750M Dual Graphics", - "Videocard First Benchmarked": "2013-08-30", - "G3DMark/Price": "NA", - "Overall Rank": "1200", - "Last Price Change": "NA", - "Score": 796, - "Average G2D Mark": 321, - "Samples": 29 - } - ], - "gpu3247": [ - "Radeon HD 8550G + HD 7600M Dual", - { - "Other names": "AMD Radeon HD 8550G + HD 7600M Dual Graphics", - "Videocard First Benchmarked": "2015-07-11", - "G3DMark/Price": "NA", - "Overall Rank": "1143", - "Last Price Change": "NA", - "Score": 855, - "Average G2D Mark": 350, - "Samples": 2 - } - ], - "gpu2924": [ - "Radeon HD 8550G + HD 8500M Dual", - { - "Other names": "AMD Radeon HD 8550G + HD 8500M Dual Graphics", - "Videocard First Benchmarked": "2014-08-07", - "G3DMark/Price": "NA", - "Overall Rank": "1460", - "Last Price Change": "NA", - "Score": 559, - "Average G2D Mark": 301, - "Samples": 1 - } - ], - "gpu3451": [ - "Radeon HD 8550G + HD 8570M Dual", - { - "Other names": "AMD Radeon HD 8550G + HD 8570M Dual Graphics", - "Videocard First Benchmarked": "2016-03-19", - "G3DMark/Price": "NA", - "Overall Rank": "1500", - "Last Price Change": "NA", - "Score": 529, - "Average G2D Mark": 260, - "Samples": 2 - } - ], - "gpu3283": [ - "Radeon HD 8550G + HD 8600/8700M Dual", - { - "Other names": "AMD Radeon HD 8550G + HD 8600/8700M Dual Graphics", - "Videocard First Benchmarked": "2015-08-12", - "G3DMark/Price": "NA", - "Overall Rank": "1331", - "Last Price Change": "NA", - "Score": 655, - "Average G2D Mark": 170, - "Samples": 9 - } - ], - "gpu3079": [ - "Radeon HD 8550G + HD 8600M Dual", - { - "Other names": "AMD Radeon HD 8550G + HD 8600M Dual Graphics", - "Videocard First Benchmarked": "2014-12-14", - "G3DMark/Price": "NA", - "Overall Rank": "1410", - "Last Price Change": "NA", - "Score": 594, - "Average G2D Mark": 322, - "Samples": 22 - } - ], - "gpu3455": [ - "Radeon HD 8550G + HD 8670M Dual", - { - "Other names": "AMD Radeon HD 8550G + HD 8670M Dual Graphics", - "Videocard First Benchmarked": "2016-03-24", - "G3DMark/Price": "NA", - "Overall Rank": "1474", - "Last Price Change": "NA", - "Score": 546, - "Average G2D Mark": 315, - "Samples": 7 - } - ], - "gpu3071": [ - "Radeon HD 8550G + HD 8750M Dual", - { - "Other names": "AMD Radeon HD 8550G + HD 8750M Dual Graphics", - "Videocard First Benchmarked": "2014-12-11", - "G3DMark/Price": "NA", - "Overall Rank": "1181", - "Last Price Change": "NA", - "Score": 819, - "Average G2D Mark": 336, - "Samples": 21 - } - ], - "gpu3272": [ - "Radeon HD 8550G + R5 M200 Dual", - { - "Other names": "AMD Radeon HD 8550G + R5 M200 Dual Graphics", - "Videocard First Benchmarked": "2015-07-31", - "G3DMark/Price": "NA", - "Overall Rank": "1377", - "Last Price Change": "NA", - "Score": 619, - "Average G2D Mark": 276, - "Samples": 14 - } - ], - "gpu2996": [ - "Radeon HD 8550G + R5 M230 Dual", - { - "Other names": "AMD Radeon HD 8550G + R5 M230 Dual Graphics", - "Videocard First Benchmarked": "2014-10-28", - "G3DMark/Price": "NA", - "Overall Rank": "1543", - "Last Price Change": "NA", - "Score": 488, - "Average G2D Mark": 211, - "Samples": 4 - } - ], - "gpu3208": [ - "Radeon HD 8550G N HD 8550G + HD 8600M N HD 8600M D", - { - "Other names": "AMD Radeon HD 8550G N HD 8550G + HD 8600M N HD 8600M Dual Graphics", - "Videocard First Benchmarked": "2015-05-20", - "G3DMark/Price": "NA", - "Overall Rank": "1385", - "Last Price Change": "NA", - "Score": 612, - "Average G2D Mark": 116, - "Samples": 1 - } - ], - "gpu2620": [ - "Radeon HD 8570", - { - "Bus Interface": "PCIe 3.0 x8", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "730 MHz", - "Memory Clock(s)": "900,1150 MHz", - "DirectX": "11.1", - "OpenGL": "4.4", - "Max TDP": "66 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon HD 8570, AMD Radeon(TM) HD8570, AMD Radeon HD 8570 Graphics, ASUS HD8570 Series", - "Videocard First Benchmarked": "2013-08-13", - "G3DMark/Price": "9.74", - "Overall Rank": "1075", - "Last Price Change": "$98.68 USD (2020-03-13)", - "Score": 961, - "Average G2D Mark": 290, - "Samples": 347 - } - ], - "gpu2722": [ - "Radeon HD 8570 + 8670D Dual", - { - "Other names": "AMD Radeon HD 8570 + 8670D Dual Graphics", - "Videocard First Benchmarked": "2013-11-10", - "G3DMark/Price": "NA", - "Overall Rank": "1375", - "Last Price Change": "NA", - "Score": 620, - "Average G2D Mark": 496, - "Samples": 3 - } - ], - "gpu2740": [ - "Radeon HD 8570 + HD 7660D Dual", - { - "Other names": "AMD Radeon HD 8570 + HD 7660D Dual Graphics", - "Videocard First Benchmarked": "2013-11-28", - "G3DMark/Price": "NA", - "Overall Rank": "1079", - "Last Price Change": "NA", - "Score": 949, - "Average G2D Mark": 467, - "Samples": 1 - } - ], - "gpu2553": [ - "Radeon HD 8570D", - { - "Other names": "AMD Radeon HD 8570D", - "Videocard First Benchmarked": "2013-06-21", - "G3DMark/Price": "NA", - "Overall Rank": "1599", - "Last Price Change": "NA", - "Score": 440, - "Average G2D Mark": 159, - "Samples": 897 - } - ], - "gpu2969": [ - "Radeon HD 8570D + 6570 Dual", - { - "Other names": "AMD Radeon HD 8570D + 6570 Dual Graphics", - "Videocard First Benchmarked": "2014-10-05", - "G3DMark/Price": "NA", - "Overall Rank": "940", - "Last Price Change": "NA", - "Score": 1239, - "Average G2D Mark": 459, - "Samples": 2 - } - ], - "gpu2961": [ - "Radeon HD 8570D + 6670 Dual", - { - "Other names": "AMD Radeon HD 8570D + 6670 Dual Graphics", - "Videocard First Benchmarked": "2014-09-26", - "G3DMark/Price": "NA", - "Overall Rank": "1032", - "Last Price Change": "NA", - "Score": 1040, - "Average G2D Mark": 505, - "Samples": 1 - } - ], - "gpu2965": [ - "Radeon HD 8570D + HD 6570 Dual", - { - "Other names": "AMD Radeon HD 8570D + HD 6570 Dual Graphics", - "Videocard First Benchmarked": "2014-10-03", - "G3DMark/Price": "NA", - "Overall Rank": "1137", - "Last Price Change": "NA", - "Score": 868, - "Average G2D Mark": 506, - "Samples": 2 - } - ], - "gpu2975": [ - "Radeon HD 8570D + HD 6670 Dual", - { - "Other names": "AMD Radeon HD 8570D + HD 6670 Dual Graphics", - "Videocard First Benchmarked": "2014-10-14", - "G3DMark/Price": "NA", - "Overall Rank": "934", - "Last Price Change": "NA", - "Score": 1261, - "Average G2D Mark": 537, - "Samples": 4 - } - ], - "gpu3222": [ - "Radeon HD 8570D + HD 7000 Dual", - { - "Other names": "AMD Radeon HD 8570D + HD 7000 Dual Graphics", - "Videocard First Benchmarked": "2015-06-13", - "G3DMark/Price": "NA", - "Overall Rank": "1238", - "Last Price Change": "NA", - "Score": 753, - "Average G2D Mark": 465, - "Samples": 2 - } - ], - "gpu3084": [ - "Radeon HD 8570D + HD 7700 Dual", - { - "Other names": "AMD Radeon HD 8570D + HD 7700 Dual Graphics", - "Videocard First Benchmarked": "2014-12-18", - "G3DMark/Price": "NA", - "Overall Rank": "762", - "Last Price Change": "NA", - "Score": 1835, - "Average G2D Mark": 466, - "Samples": 3 - } - ], - "gpu3624": [ - "Radeon HD 8570D + HD 8470 Dual", - { - "Other names": "AMD Radeon HD 8570D + HD 8470 Dual Graphics", - "Videocard First Benchmarked": "2016-12-20", - "G3DMark/Price": "NA", - "Overall Rank": "1683", - "Last Price Change": "NA", - "Score": 338, - "Average G2D Mark": 416, - "Samples": 1 - } - ], - "gpu3484": [ - "Radeon HD 8570D + HD 8570 Dual", - { - "Other names": "AMD Radeon HD 8570D + HD 8570 Dual Graphics", - "Videocard First Benchmarked": "2016-04-25", - "G3DMark/Price": "NA", - "Overall Rank": "1033", - "Last Price Change": "NA", - "Score": 1033, - "Average G2D Mark": 520, - "Samples": 3 - } - ], - "gpu3406": [ - "Radeon HD 8570D + HD8490 Dual", - { - "Other names": "AMD Radeon HD 8570D + HD8490 Dual Graphics", - "Videocard First Benchmarked": "2016-01-01", - "G3DMark/Price": "NA", - "Overall Rank": "1654", - "Last Price Change": "NA", - "Score": 374, - "Average G2D Mark": 380, - "Samples": 1 - } - ], - "gpu3380": [ - "Radeon HD 8570D + R5 235 Dual", - { - "Other names": "AMD Radeon HD 8570D + R5 235 Dual Graphics", - "Videocard First Benchmarked": "2015-12-06", - "G3DMark/Price": "NA", - "Overall Rank": "1563", - "Last Price Change": "NA", - "Score": 471, - "Average G2D Mark": 470, - "Samples": 1 - } - ], - "gpu2869": [ - "Radeon HD 8570D + R7 200 Dual", - { - "Other names": "AMD Radeon HD 8570D + R7 200 Dual Graphics", - "Videocard First Benchmarked": "2014-05-08", - "G3DMark/Price": "NA", - "Overall Rank": "1051", - "Last Price Change": "NA", - "Score": 999, - "Average G2D Mark": 401, - "Samples": 5 - } - ], - "gpu3086": [ - "Radeon HD 8570D + R7 240 Dual", - { - "Other names": "AMD Radeon HD 8570D + R7 240 Dual Graphics", - "Videocard First Benchmarked": "2014-12-19", - "G3DMark/Price": "NA", - "Overall Rank": "1074", - "Last Price Change": "NA", - "Score": 964, - "Average G2D Mark": 489, - "Samples": 5 - } - ], - "gpu3009": [ - "Radeon HD 8570M", - { - "Other names": "AMD Radeon HD 8570M", - "Videocard First Benchmarked": "2015-02-02", - "G3DMark/Price": "NA", - "Overall Rank": "1606", - "Last Price Change": "NA", - "Score": 428, - "Average G2D Mark": 164, - "Samples": 33 - } - ], - "gpu2998": [ - "Radeon HD 8600/8700M", - { - "Other names": "AMD Radeon HD 8600/8700M", - "Videocard First Benchmarked": "2014-11-30", - "G3DMark/Price": "NA", - "Overall Rank": "1034", - "Last Price Change": "NA", - "Score": 1030, - "Average G2D Mark": 554, - "Samples": 80 - } - ], - "gpu2568": [ - "Radeon HD 8610G", - { - "Other names": "AMD Radeon HD 8610G, AMD Radeon(TM) HD 8610G", - "Videocard First Benchmarked": "2013-07-01", - "G3DMark/Price": "NA", - "Overall Rank": "1607", - "Last Price Change": "NA", - "Score": 428, - "Average G2D Mark": 119, - "Samples": 466 - } - ], - "gpu2585": [ - "Radeon HD 8610G + 8500M Dual", - { - "Other names": "AMD Radeon HD 8610G + 8500M Dual Graphics", - "Videocard First Benchmarked": "2013-09-12", - "G3DMark/Price": "NA", - "Overall Rank": "1389", - "Last Price Change": "NA", - "Score": 610, - "Average G2D Mark": 298, - "Samples": 2 - } - ], - "gpu2723": [ - "Radeon HD 8610G + 8600M Dual", - { - "Other names": "AMD Radeon HD 8610G + 8600M Dual Graphics", - "Videocard First Benchmarked": "2013-11-11", - "G3DMark/Price": "NA", - "Overall Rank": "1419", - "Last Price Change": "NA", - "Score": 589, - "Average G2D Mark": 320, - "Samples": 10 - } - ], - "gpu2778": [ - "Radeon HD 8610G + 8670M Dual", - { - "Other names": "AMD Radeon HD 8610G + 8670M Dual Graphics", - "Videocard First Benchmarked": "2014-01-02", - "G3DMark/Price": "NA", - "Overall Rank": "1402", - "Last Price Change": "NA", - "Score": 600, - "Average G2D Mark": 356, - "Samples": 5 - } - ], - "gpu2929": [ - "Radeon HD 8610G + HD 8500M Dual", - { - "Other names": "AMD Radeon HD 8610G + HD 8500M Dual Graphics", - "Videocard First Benchmarked": "2014-08-11", - "G3DMark/Price": "NA", - "Overall Rank": "1344", - "Last Price Change": "NA", - "Score": 646, - "Average G2D Mark": 274, - "Samples": 4 - } - ], - "gpu3075": [ - "Radeon HD 8610G + HD 8600M Dual", - { - "Other names": "AMD Radeon HD 8610G + HD 8600M Dual Graphics", - "Videocard First Benchmarked": "2014-12-11", - "G3DMark/Price": "NA", - "Overall Rank": "1548", - "Last Price Change": "NA", - "Score": 481, - "Average G2D Mark": 156, - "Samples": 18 - } - ], - "gpu2773": [ - "Radeon HD 8610G + HD 8670M Dual", - { - "Other names": "AMD Radeon HD 8610G + HD 8670M Dual Graphics", - "Videocard First Benchmarked": "2013-12-29", - "G3DMark/Price": "NA", - "Overall Rank": "1433", - "Last Price Change": "NA", - "Score": 578, - "Average G2D Mark": 282, - "Samples": 32 - } - ], - "gpu3530": [ - "Radeon HD 8610G + R5 M200 Dual", - { - "Other names": "AMD Radeon HD 8610G + R5 M200 Dual Graphics", - "Videocard First Benchmarked": "2016-06-22", - "G3DMark/Price": "NA", - "Overall Rank": "1314", - "Last Price Change": "NA", - "Score": 676, - "Average G2D Mark": 291, - "Samples": 4 - } - ], - "gpu2882": [ - "Radeon HD 8650D", - { - "Other names": "AMD Radeon HD 8650D", - "Videocard First Benchmarked": "2014-06-01", - "G3DMark/Price": "NA", - "Overall Rank": "1635", - "Last Price Change": "NA", - "Score": 396, - "Average G2D Mark": 259, - "Samples": 10 - } - ], - "gpu2530": [ - "Radeon HD 8650G", - { - "Other names": "AMD Radeon HD 8650G", - "Videocard First Benchmarked": "2013-05-31", - "G3DMark/Price": "NA", - "Overall Rank": "1487", - "Last Price Change": "NA", - "Score": 539, - "Average G2D Mark": 137, - "Samples": 794 - } - ], - "gpu2721": [ - "Radeon HD 8650G + 7600M Dual", - { - "Other names": "AMD Radeon HD 8650G + 7600M Dual Graphics", - "Videocard First Benchmarked": "2013-11-09", - "G3DMark/Price": "NA", - "Overall Rank": "1254", - "Last Price Change": "NA", - "Score": 742, - "Average G2D Mark": 404, - "Samples": 5 - } - ], - "gpu2609": [ - "Radeon HD 8650G + 7670M Dual", - { - "Other names": "AMD Radeon HD 8650G + 7670M Dual Graphics", - "Videocard First Benchmarked": "2013-08-08", - "G3DMark/Price": "NA", - "Overall Rank": "1129", - "Last Price Change": "NA", - "Score": 884, - "Average G2D Mark": 379, - "Samples": 6 - } - ], - "gpu2578": [ - "Radeon HD 8650G + 7700M Dual", - { - "Other names": "AMD Radeon HD 8650G + 7700M Dual Graphics", - "Videocard First Benchmarked": "2014-07-12", - "G3DMark/Price": "NA", - "Overall Rank": "987", - "Last Price Change": "NA", - "Score": 1126, - "Average G2D Mark": 399, - "Samples": 1 - } - ], - "gpu2685": [ - "Radeon HD 8650G + 8500M Dual", - { - "Other names": "AMD Radeon HD 8650G + 8500M Dual Graphics", - "Videocard First Benchmarked": "2013-10-21", - "G3DMark/Price": "NA", - "Overall Rank": "1369", - "Last Price Change": "NA", - "Score": 627, - "Average G2D Mark": 351, - "Samples": 13 - } - ], - "gpu2711": [ - "Radeon HD 8650G + 8570M Dual", - { - "Other names": "AMD Radeon HD 8650G + 8570M Dual Graphics", - "Videocard First Benchmarked": "2013-11-06", - "G3DMark/Price": "NA", - "Overall Rank": "1332", - "Last Price Change": "NA", - "Score": 654, - "Average G2D Mark": 282, - "Samples": 11 - } - ], - "gpu2600": [ - "Radeon HD 8650G + 8600/8700M Dual", - { - "Other names": "AMD Radeon HD 8650G + 8600/8700M Dual Graphics", - "Videocard First Benchmarked": "2013-07-29", - "G3DMark/Price": "NA", - "Overall Rank": "1168", - "Last Price Change": "NA", - "Score": 832, - "Average G2D Mark": 374, - "Samples": 26 - } - ], - "gpu2696": [ - "Radeon HD 8650G + 8600M Dual", - { - "Other names": "AMD Radeon HD 8650G + 8600M Dual Graphics", - "Videocard First Benchmarked": "2013-10-28", - "G3DMark/Price": "NA", - "Overall Rank": "1384", - "Last Price Change": "NA", - "Score": 613, - "Average G2D Mark": 370, - "Samples": 24 - } - ], - "gpu2630": [ - "Radeon HD 8650G + 8670M Dual", - { - "Other names": "AMD Radeon HD 8650G + 8670M Dual Graphics", - "Videocard First Benchmarked": "2013-08-21", - "G3DMark/Price": "NA", - "Overall Rank": "1352", - "Last Price Change": "NA", - "Score": 635, - "Average G2D Mark": 355, - "Samples": 58 - } - ], - "gpu2602": [ - "Radeon HD 8650G + 8750M Dual", - { - "Other names": "AMD Radeon HD 8650G + 8750M Dual Graphics", - "Videocard First Benchmarked": "2013-07-30", - "G3DMark/Price": "NA", - "Overall Rank": "1203", - "Last Price Change": "NA", - "Score": 787, - "Average G2D Mark": 381, - "Samples": 55 - } - ], - "gpu3165": [ - "Radeon HD 8650G + HD 7600M Dual", - { - "Other names": "AMD Radeon HD 8650G + HD 7600M Dual Graphics", - "Videocard First Benchmarked": "2015-03-22", - "G3DMark/Price": "NA", - "Overall Rank": "1180", - "Last Price Change": "NA", - "Score": 820, - "Average G2D Mark": 346, - "Samples": 4 - } - ], - "gpu3582": [ - "Radeon HD 8650G + HD 7670M Dual", - { - "Other names": "AMD Radeon HD 8650G + HD 7670M Dual Graphics", - "Videocard First Benchmarked": "2016-09-30", - "G3DMark/Price": "NA", - "Overall Rank": "1354", - "Last Price Change": "NA", - "Score": 634, - "Average G2D Mark": 305, - "Samples": 2 - } - ], - "gpu2955": [ - "Radeon HD 8650G + HD 8570M Dual", - { - "Other names": "AMD Radeon HD 8650G + HD 8570M Dual Graphics", - "Videocard First Benchmarked": "2014-09-20", - "G3DMark/Price": "NA", - "Overall Rank": "1283", - "Last Price Change": "NA", - "Score": 716, - "Average G2D Mark": 317, - "Samples": 10 - } - ], - "gpu2836": [ - "Radeon HD 8650G + HD 8600/8700M Dual", - { - "Other names": "AMD Radeon HD 8650G + HD 8600/8700M Dual Graphics", - "Videocard First Benchmarked": "2014-03-12", - "G3DMark/Price": "NA", - "Overall Rank": "1227", - "Last Price Change": "NA", - "Score": 764, - "Average G2D Mark": 356, - "Samples": 32 - } - ], - "gpu2956": [ - "Radeon HD 8650G + HD 8600M Dual", - { - "Other names": "AMD Radeon HD 8650G + HD 8600M Dual Graphics", - "Videocard First Benchmarked": "2014-09-23", - "G3DMark/Price": "NA", - "Overall Rank": "1392", - "Last Price Change": "NA", - "Score": 606, - "Average G2D Mark": 378, - "Samples": 42 - } - ], - "gpu2760": [ - "Radeon HD 8650G + HD 8600M N HD 8600M Dual", - { - "Other names": "AMD Radeon HD 8650G + HD 8600M N HD 8600M Dual Graphics", - "Videocard First Benchmarked": "2013-12-15", - "G3DMark/Price": "NA", - "Overall Rank": "1233", - "Last Price Change": "NA", - "Score": 758, - "Average G2D Mark": 413, - "Samples": 1 - } - ], - "gpu3381": [ - "Radeon HD 8650G + HD 8670M Dual", - { - "Other names": "AMD Radeon HD 8650G + HD 8670M Dual Graphics", - "Videocard First Benchmarked": "2015-12-08", - "G3DMark/Price": "NA", - "Overall Rank": "1427", - "Last Price Change": "NA", - "Score": 585, - "Average G2D Mark": 320, - "Samples": 23 - } - ], - "gpu2876": [ - "Radeon HD 8650G + HD 8750M Dual", - { - "Other names": "AMD Radeon HD 8650G + HD 8750M Dual Graphics", - "Videocard First Benchmarked": "2014-05-25", - "G3DMark/Price": "NA", - "Overall Rank": "1211", - "Last Price Change": "NA", - "Score": 779, - "Average G2D Mark": 345, - "Samples": 59 - } - ], - "gpu3031": [ - "Radeon HD 8650G + HD 8790M Dual", - { - "Other names": "AMD Radeon HD 8650G + HD 8790M Dual Graphics", - "Videocard First Benchmarked": "2014-11-06", - "G3DMark/Price": "NA", - "Overall Rank": "1194", - "Last Price Change": "NA", - "Score": 800, - "Average G2D Mark": 404, - "Samples": 1 - } - ], - "gpu3235": [ - "Radeon HD 8650G + R5 M200 Dual", - { - "Other names": "AMD Radeon HD 8650G + R5 M200 Dual Graphics", - "Videocard First Benchmarked": "2015-07-02", - "G3DMark/Price": "NA", - "Overall Rank": "1273", - "Last Price Change": "NA", - "Score": 723, - "Average G2D Mark": 323, - "Samples": 4 - } - ], - "gpu2895": [ - "Radeon HD 8650G + R5 M230 Dual", - { - "Other names": "AMD Radeon HD 8650G + R5 M230 Dual Graphics", - "Videocard First Benchmarked": "2014-06-26", - "G3DMark/Price": "NA", - "Overall Rank": "1303", - "Last Price Change": "NA", - "Score": 686, - "Average G2D Mark": 374, - "Samples": 13 - } - ], - "gpu2936": [ - "Radeon HD 8650G N HD 8650G + HD 8570M Dual", - { - "Other names": "AMD Radeon HD 8650G N HD 8650G + HD 8570M Dual Graphics", - "Videocard First Benchmarked": "2014-08-26", - "G3DMark/Price": "NA", - "Overall Rank": "1216", - "Last Price Change": "NA", - "Score": 773, - "Average G2D Mark": 368, - "Samples": 4 - } - ], - "gpu2758": [ - "Radeon HD 8650G N HD 8650G + HD 8600/8700M Dual", - { - "Other names": "AMD Radeon HD 8650G N HD 8650G + HD 8600/8700M Dual Graphics", - "Videocard First Benchmarked": "2013-12-15", - "G3DMark/Price": "NA", - "Overall Rank": "1199", - "Last Price Change": "NA", - "Score": 796, - "Average G2D Mark": 322, - "Samples": 1 - } - ], - "gpu2755": [ - "Radeon HD 8650G N HD 8650G + HD 8600M N HD 8600M D", - { - "Other names": "AMD Radeon HD 8650G N HD 8650G + HD 8600M N HD 8600M Dual Graphics", - "Videocard First Benchmarked": "2013-12-11", - "G3DMark/Price": "NA", - "Overall Rank": "1308", - "Last Price Change": "NA", - "Score": 680, - "Average G2D Mark": 347, - "Samples": 2 - } - ], - "gpu2543": [ - "Radeon HD 8670D", - { - "Other names": "AMD Radeon HD 8670D", - "Videocard First Benchmarked": "2013-06-15", - "G3DMark/Price": "NA", - "Overall Rank": "1493", - "Last Price Change": "NA", - "Score": 533, - "Average G2D Mark": 185, - "Samples": 993 - } - ], - "gpu2556": [ - "Radeon HD 8670D + 6670 Dual", - { - "Other names": "AMD Radeon HD 8670D + 6670 Dual Graphics", - "Videocard First Benchmarked": "2013-06-25", - "G3DMark/Price": "NA", - "Overall Rank": "906", - "Last Price Change": "NA", - "Score": 1361, - "Average G2D Mark": 568, - "Samples": 12 - } - ], - "gpu3852": [ - "Radeon HD 8670D + 7000 Dual", - { - "Other names": "AMD Radeon HD 8670D + 7000 Dual Graphics", - "Videocard First Benchmarked": "2017-11-26", - "G3DMark/Price": "NA", - "Overall Rank": "1186", - "Last Price Change": "NA", - "Score": 812, - "Average G2D Mark": 488, - "Samples": 1 - } - ], - "gpu2572": [ - "Radeon HD 8670D + 7700 Dual", - { - "Other names": "AMD Radeon HD 8670D + 7700 Dual Graphics", - "Videocard First Benchmarked": "2013-07-06", - "G3DMark/Price": "NA", - "Overall Rank": "776", - "Last Price Change": "NA", - "Score": 1789, - "Average G2D Mark": 572, - "Samples": 6 - } - ], - "gpu2831": [ - "Radeon HD 8670D + 8570 Dual", - { - "Other names": "AMD Radeon HD 8670D + 8570 Dual Graphics", - "Videocard First Benchmarked": "2014-03-07", - "G3DMark/Price": "NA", - "Overall Rank": "1066", - "Last Price Change": "NA", - "Score": 974, - "Average G2D Mark": 419, - "Samples": 1 - } - ], - "gpu2881": [ - "Radeon HD 8670D + HD 6670 Dual", - { - "Other names": "AMD Radeon HD 8670D + HD 6670 Dual Graphics", - "Videocard First Benchmarked": "2014-05-31", - "G3DMark/Price": "NA", - "Overall Rank": "954", - "Last Price Change": "NA", - "Score": 1222, - "Average G2D Mark": 541, - "Samples": 5 - } - ], - "gpu3157": [ - "Radeon HD 8670D + HD 7000 Dual", - { - "Other names": "AMD Radeon HD 8670D + HD 7000 Dual Graphics", - "Videocard First Benchmarked": "2015-03-14", - "G3DMark/Price": "NA", - "Overall Rank": "1279", - "Last Price Change": "NA", - "Score": 719, - "Average G2D Mark": 403, - "Samples": 3 - } - ], - "gpu3835": [ - "Radeon HD 8670D + HD 7600 Dual", - { - "Other names": "AMD Radeon HD 8670D + HD 7600 Dual Graphics", - "Videocard First Benchmarked": "2017-10-18", - "G3DMark/Price": "NA", - "Overall Rank": "916", - "Last Price Change": "NA", - "Score": 1318, - "Average G2D Mark": 472, - "Samples": 1 - } - ], - "gpu3740": [ - "Radeon HD 8670D + HD 7700 Dual", - { - "Other names": "AMD Radeon HD 8670D + HD 7700 Dual Graphics", - "Videocard First Benchmarked": "2017-04-25", - "G3DMark/Price": "NA", - "Overall Rank": "742", - "Last Price Change": "NA", - "Score": 1892, - "Average G2D Mark": 446, - "Samples": 1 - } - ], - "gpu2984": [ - "Radeon HD 8670D + R5 235 Dual", - { - "Other names": "AMD Radeon HD 8670D + R5 235 Dual Graphics", - "Videocard First Benchmarked": "2014-10-20", - "G3DMark/Price": "NA", - "Overall Rank": "1158", - "Last Price Change": "NA", - "Score": 837, - "Average G2D Mark": 518, - "Samples": 5 - } - ], - "gpu3704": [ - "Radeon HD 8670D + R5 330 Dual", - { - "Other names": "AMD Radeon HD 8670D + R5 330 Dual Graphics", - "Videocard First Benchmarked": "2017-03-17", - "G3DMark/Price": "NA", - "Overall Rank": "1247", - "Last Price Change": "NA", - "Score": 746, - "Average G2D Mark": 494, - "Samples": 1 - } - ], - "gpu3093": [ - "Radeon HD 8670D + R7 200 Dual", - { - "Other names": "AMD Radeon HD 8670D + R7 200 Dual Graphics", - "Videocard First Benchmarked": "2014-12-26", - "G3DMark/Price": "NA", - "Overall Rank": "1078", - "Last Price Change": "NA", - "Score": 950, - "Average G2D Mark": 506, - "Samples": 10 - } - ], - "gpu3003": [ - "Radeon HD 8670D + R7 240 Dual", - { - "Other names": "AMD Radeon HD 8670D + R7 240 Dual Graphics", - "Videocard First Benchmarked": "2014-10-28", - "G3DMark/Price": "NA", - "Overall Rank": "1038", - "Last Price Change": "NA", - "Score": 1020, - "Average G2D Mark": 525, - "Samples": 3 - } - ], - "gpu2754": [ - "Radeon HD 8670D N HD 8670D + HD 8670D Dual", - { - "Other names": "AMD Radeon HD 8670D N HD 8670D + HD 8670D Dual Graphics", - "Videocard First Benchmarked": "2013-12-11", - "G3DMark/Price": "NA", - "Overall Rank": "1542", - "Last Price Change": "NA", - "Score": 489, - "Average G2D Mark": 526, - "Samples": 1 - } - ], - "gpu3002": [ - "Radeon HD 8670M", - { - "Bus Interface": "PCIe 3.0 x8", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "775 MHz", - "Memory Clock(s)": "900 MHz", - "DirectX": "11.1", - "OpenGL": "4.4", - "Videocard Category": "Mobile", - "Other names": "AMD Radeon HD 8670M, AMD Radeon (TM) HD 8670M, Radeon (TM) HD 8670M", - "Videocard First Benchmarked": "2014-12-31", - "G3DMark/Price": "NA", - "Overall Rank": "1509", - "Last Price Change": "NA", - "Score": 520, - "Average G2D Mark": 488, - "Samples": 20 - } - ], - "gpu3026": [ - "Radeon HD 8690A", - { - "Other names": "AMD Radeon HD 8690A", - "Videocard First Benchmarked": "2015-05-23", - "G3DMark/Price": "NA", - "Overall Rank": "1541", - "Last Price Change": "NA", - "Score": 490, - "Average G2D Mark": 128, - "Samples": 961 - } - ], - "gpu3141": [ - "Radeon HD 8690M", - { - "Other names": "AMD Radeon HD 8690M", - "Videocard First Benchmarked": "2015-02-23", - "G3DMark/Price": "NA", - "Overall Rank": "1059", - "Last Price Change": "NA", - "Score": 984, - "Average G2D Mark": 768, - "Samples": 9 - } - ], - "gpu3020": [ - "Radeon HD 8730M", - { - "Bus Interface": "PCIe 3.0 x8", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "650 MHz", - "Memory Clock(s)": "1000 MHz", - "DirectX": "11.1", - "OpenGL": "4.4", - "Videocard Category": "Mobile", - "Other names": "AMD Radeon HD 8730M", - "Videocard First Benchmarked": "2015-01-30", - "G3DMark/Price": "NA", - "Overall Rank": "1244", - "Last Price Change": "NA", - "Score": 749, - "Average G2D Mark": 182, - "Samples": 236 - } - ], - "gpu2909": [ - "Radeon HD 8750M", - { - "Bus Interface": "PCIe 3.0 x8", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "620,775 MHz", - "Memory Clock(s)": "1000 MHz", - "DirectX": "11.1", - "OpenGL": "4.4", - "Videocard Category": "Mobile", - "Other names": "AMD Radeon HD 8750M, AMD Radeon (TM) HD 8750M, Radeon (TM) HD 8750M", - "Videocard First Benchmarked": "2014-07-19", - "G3DMark/Price": "NA", - "Overall Rank": "1070", - "Last Price Change": "NA", - "Score": 968, - "Average G2D Mark": 205, - "Samples": 416 - } - ], - "gpu2993": [ - "Radeon HD 8790M", - { - "Bus Interface": "PCIe 3.0 x8", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "850 MHz", - "Memory Clock(s)": "1125 MHz", - "DirectX": "11.1", - "OpenGL": "4.4", - "Videocard Category": "Mobile", - "Other names": "AMD Radeon HD 8790M", - "Videocard First Benchmarked": "2014-12-01", - "G3DMark/Price": "NA", - "Overall Rank": "924", - "Last Price Change": "NA", - "Score": 1306, - "Average G2D Mark": 751, - "Samples": 70 - } - ], - "gpu3271": [ - "Radeon HD 8790M / R9 M290X", - { - "Other names": "AMD Radeon HD 8790M / R9 M290X", - "Videocard First Benchmarked": "2015-08-11", - "G3DMark/Price": "NA", - "Overall Rank": "955", - "Last Price Change": "NA", - "Score": 1211, - "Average G2D Mark": 694, - "Samples": 8 - } - ], - "gpu3037": [ - "Radeon HD 8850M", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "575,725 MHz", - "Memory Clock(s)": "1000,1125 MHz", - "DirectX": "11.1", - "OpenGL": "4.4", - "Videocard Category": "Mobile", - "Other names": "AMD Radeon HD 8850M", - "Videocard First Benchmarked": "2015-04-24", - "G3DMark/Price": "NA", - "Overall Rank": "1067", - "Last Price Change": "NA", - "Score": 973, - "Average G2D Mark": 502, - "Samples": 14 - } - ], - "gpu3420": [ - "Radeon HD 8850M / R9 M265X", - { - "Other names": "AMD Radeon HD 8850M / R9 M265X", - "Videocard First Benchmarked": "2016-02-27", - "G3DMark/Price": "NA", - "Overall Rank": "982", - "Last Price Change": "NA", - "Score": 1140, - "Average G2D Mark": 741, - "Samples": 3 - } - ], - "gpu2838": [ - "Radeon HD 8870M", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "725 MHz", - "Memory Clock(s)": "1000,1125 MHz", - "DirectX": "11.1", - "OpenGL": "4.4", - "Videocard Category": "Mobile", - "Other names": "AMD Radeon HD 8870M", - "Videocard First Benchmarked": "2014-03-14", - "G3DMark/Price": "NA", - "Overall Rank": "816", - "Last Price Change": "NA", - "Score": 1638, - "Average G2D Mark": 629, - "Samples": 15 - } - ], - "gpu2926": [ - "Radeon HD 8870M / R9 M270X / M370X", - { - "Other names": "AMD Radeon HD 8870M / R9 M270X, AMD Radeon HD 8870M / R9 M270X / M370X", - "Videocard First Benchmarked": "2014-08-08", - "G3DMark/Price": "NA", - "Overall Rank": "774", - "Last Price Change": "NA", - "Score": 1800, - "Average G2D Mark": 679, - "Samples": 88 - } - ], - "gpu2927": [ - "Radeon HD 8950", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "3072 MB", - "Core Clock(s)": "850 MHz", - "Memory Clock(s)": "1250 MHz", - "DirectX": "11.1", - "OpenGL": "4.4", - "Max TDP": "225 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon HD 8950", - "Videocard First Benchmarked": "2014-08-09", - "G3DMark/Price": "NA", - "Overall Rank": "563", - "Last Price Change": "NA", - "Score": 2696, - "Average G2D Mark": 370, - "Samples": 124 - } - ], - "gpu2865": [ - "Radeon HD 8970M", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "850 MHz", - "Memory Clock(s)": "1200 MHz", - "DirectX": "11.1", - "OpenGL": "4.4", - "Max TDP": "100 W", - "Videocard Category": "Mobile", - "Other names": "AMD Radeon HD 8970M", - "Videocard First Benchmarked": "2014-04-28", - "G3DMark/Price": "27.69", - "Overall Rank": "440", - "Last Price Change": "$139.99 USD (2019-11-13)", - "Score": 3876, - "Average G2D Mark": 807, - "Samples": 51 - } - ], - "gpu2727": [ - "Radeon HD 8990", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "3072 MB", - "Core Clock(s)": "950 MHz", - "Memory Clock(s)": "1500 MHz", - "DirectX": "11.1", - "OpenGL": "4.4", - "Max TDP": "375 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon HD 8990", - "Videocard First Benchmarked": "2013-11-12", - "G3DMark/Price": "NA", - "Overall Rank": "348", - "Last Price Change": "NA", - "Score": 5214, - "Average G2D Mark": 658, - "Samples": 26 - } - ], - "gpu3212": [ - "Radeon HD HD7850M", - { - "Other names": "AMD Radeon HD HD7850M", - "Videocard First Benchmarked": "2015-05-22", - "G3DMark/Price": "NA", - "Overall Rank": "811", - "Last Price Change": "NA", - "Score": 1652, - "Average G2D Mark": 686, - "Samples": 1 - } - ], - "gpu605": [ - "Radeon HD4650", - { - "Other names": "ATI Radeon HD4650", - "Videocard First Benchmarked": "2012-03-11", - "G3DMark/Price": "1.57", - "Overall Rank": "1773", - "Last Price Change": "$152.9 USD (2022-03-30)", - "Score": 240, - "Average G2D Mark": 99, - "Samples": 1 - } - ], - "gpu79": [ - "Radeon HD4670", - { - "Other names": "ATI Radeon HD4670", - "Videocard First Benchmarked": "2012-08-19", - "G3DMark/Price": "NA", - "Overall Rank": "1659", - "Last Price Change": "NA", - "Score": 366, - "Average G2D Mark": 585, - "Samples": 1 - } - ], - "gpu327": [ - "RADEON HD6370D", - { - "Other names": "AMD RADEON HD6370D Graphics", - "Videocard First Benchmarked": "2011-12-25", - "G3DMark/Price": "NA", - "Overall Rank": "1701", - "Last Price Change": "NA", - "Score": 320, - "Average G2D Mark": 312, - "Samples": 9 - } - ], - "gpu328": [ - "RADEON HD6410D", - { - "Other names": "AMD RADEON HD6410D Graphics", - "Videocard First Benchmarked": "2012-02-29", - "G3DMark/Price": "NA", - "Overall Rank": "1613", - "Last Price Change": "NA", - "Score": 423, - "Average G2D Mark": 296, - "Samples": 3 - } - ], - "gpu329": [ - "RADEON HD6530D", - { - "Other names": "AMD RADEON HD6530D Graphics", - "Videocard First Benchmarked": "2012-08-11", - "G3DMark/Price": "NA", - "Overall Rank": "1499", - "Last Price Change": "NA", - "Score": 532, - "Average G2D Mark": 327, - "Samples": 2 - } - ], - "gpu2790": [ - "RADEON HD7450", - { - "Other names": "AMD RADEON HD7450", - "Videocard First Benchmarked": "2014-01-13", - "G3DMark/Price": "8.95", - "Overall Rank": "1822", - "Last Price Change": "$22.25 USD (2020-03-13)", - "Score": 199, - "Average G2D Mark": 215, - "Samples": 1 - } - ], - "gpu3059": [ - "Radeon HD8530M", - { - "Other names": "AMD Radeon (TM) HD8530M, AMD Radeon(TM) HD8530M", - "Videocard First Benchmarked": "2016-11-26", - "G3DMark/Price": "NA", - "Overall Rank": "1540", - "Last Price Change": "NA", - "Score": 490, - "Average G2D Mark": 438, - "Samples": 3 - } - ], - "gpu3023": [ - "Radeon HD8970M", - { - "Other names": "AMD Radeon(TM) HD8970M", - "Videocard First Benchmarked": "2014-12-08", - "G3DMark/Price": "NA", - "Overall Rank": "490", - "Last Price Change": "NA", - "Score": 3369, - "Average G2D Mark": 663, - "Samples": 16 - } - ], - "gpu3277": [ - "Radeon HDG 4670", - { - "Other names": "ATI Radeon HDG 4670", - "Videocard First Benchmarked": "2015-08-03", - "G3DMark/Price": "NA", - "Overall Rank": "1853", - "Last Price Change": "NA", - "Score": 170, - "Average G2D Mark": 197, - "Samples": 1 - } - ], - "gpu2618": [ - "RADEON IGP 320", - { - "Other names": "RADEON IGP 320", - "Videocard First Benchmarked": "2013-08-12", - "G3DMark/Price": "NA", - "Overall Rank": "2423", - "Last Price Change": "NA", - "Score": 4, - "Average G2D Mark": 44, - "Samples": 1 - } - ], - "gpu607": [ - "Radeon IGP 320M", - { - "Other names": "ATI Radeon IGP 320M, RADEON IGP 320M", - "Videocard First Benchmarked": "2009-09-26", - "G3DMark/Price": "NA", - "Overall Rank": "2430", - "Last Price Change": "NA", - "Score": 4, - "Average G2D Mark": 101, - "Samples": 11 - } - ], - "gpu1739": [ - "Radeon IGP 340M", - { - "Other names": "IGP 340M, Radeon IGP 340M", - "Videocard First Benchmarked": "2009-04-26", - "G3DMark/Price": "NA", - "Overall Rank": "2468", - "Last Price Change": "NA", - "Score": 3, - "Average G2D Mark": 102, - "Samples": 4 - } - ], - "gpu1741": [ - "RADEON IGP 345M", - { - "Other names": "RADEON IGP 345M", - "Videocard First Benchmarked": "2009-06-23", - "G3DMark/Price": "NA", - "Overall Rank": "2457", - "Last Price Change": "NA", - "Score": 3, - "Average G2D Mark": 82, - "Samples": 21 - } - ], - "gpu1742": [ - "RADEON IGP 34xM", - { - "Other names": "RADEON IGP 34xM (Omega 2.6.25a), RADEON IGP 34xM (Omega 3.8.205), RADEON IGP 34xM (Omega 3.8.252)", - "Videocard First Benchmarked": "2010-12-17", - "G3DMark/Price": "NA", - "Overall Rank": "2480", - "Last Price Change": "NA", - "Score": 2, - "Average G2D Mark": 89, - "Samples": 1 - } - ], - "gpu1744": [ - "RADEON IGP 350M", - { - "Other names": "RADEON IGP 350M", - "Videocard First Benchmarked": "2009-08-18", - "G3DMark/Price": "NA", - "Overall Rank": "2361", - "Last Price Change": "NA", - "Score": 6, - "Average G2D Mark": 136, - "Samples": 2 - } - ], - "gpu3753": [ - "Radeon Infoshock 3000", - { - "Other names": "ATI Radeon Infoshock 3000 Graphics", - "Videocard First Benchmarked": "2017-05-16", - "G3DMark/Price": "NA", - "Overall Rank": "1998", - "Last Price Change": "NA", - "Score": 107, - "Average G2D Mark": 475, - "Samples": 2 - } - ], - "gpu4181": [ - "Radeon Instinct MI25 MxGPU", - { - "Other names": "Radeon Instinct MI25 MxGPU", - "Videocard First Benchmarked": "2020-01-15", - "G3DMark/Price": "NA", - "Overall Rank": "368", - "Last Price Change": "NA", - "Score": 4979, - "Average G2D Mark": 371, - "Samples": 6 - } - ], - "gpu3830": [ - "Radeon M535DX", - { - "Other names": "AMD Radeon(TM) M535DX, AMD Radeon (TM) M535DX", - "Videocard First Benchmarked": "2019-07-15", - "G3DMark/Price": "NA", - "Overall Rank": "1242", - "Last Price Change": "NA", - "Score": 750, - "Average G2D Mark": 288, - "Samples": 1 - } - ], - "gpu4441": [ - "Radeon Pro", - { - "Other names": "AMD Radeon(TM) Pro Graphics, AMD Radeon PRO Graphics", - "Videocard First Benchmarked": "2021-07-28", - "G3DMark/Price": "4.01", - "Overall Rank": "633", - "Last Price Change": "$579.99 USD (2023-11-30)", - "Score": 2325, - "Average G2D Mark": 618, - "Samples": 14 - } - ], - "gpu3683": [ - "Radeon Pro 450", - { - "Other names": "AMD Radeon Pro 450, AMD Radeon Pro 450 (Bootcamp XG edition by bootcampdrivers.com)", - "Videocard First Benchmarked": "2017-02-20", - "G3DMark/Price": "NA", - "Overall Rank": "556", - "Last Price Change": "NA", - "Score": 2723, - "Average G2D Mark": 619, - "Samples": 3 - } - ], - "gpu4024": [ - "Radeon Pro 455", - { - "Other names": "AMD Radeon Pro 455", - "Videocard First Benchmarked": "2018-12-12", - "G3DMark/Price": "6.93", - "Overall Rank": "515", - "Last Price Change": "$449 USD (2020-03-16)", - "Score": 3113, - "Average G2D Mark": 705, - "Samples": 2 - } - ], - "gpu3747": [ - "Radeon Pro 460", - { - "Other names": "AMD Radeon Pro 460", - "Videocard First Benchmarked": "2017-05-05", - "G3DMark/Price": "NA", - "Overall Rank": "481", - "Last Price Change": "NA", - "Score": 3453, - "Average G2D Mark": 679, - "Samples": 3 - } - ], - "gpu4134": [ - "Radeon Pro 465", - { - "Other names": "AMD Radeon Pro 465", - "Videocard First Benchmarked": "2019-08-25", - "G3DMark/Price": "NA", - "Overall Rank": "398", - "Last Price Change": "NA", - "Score": 4538, - "Average G2D Mark": 562, - "Samples": 1 - } - ], - "gpu4315": [ - "Radeon Pro 5300", - { - "Other names": "AMD Radeon Pro 5300", - "Videocard First Benchmarked": "2020-11-27", - "G3DMark/Price": "NA", - "Overall Rank": "263", - "Last Price Change": "NA", - "Score": 7230, - "Average G2D Mark": 634, - "Samples": 11 - } - ], - "gpu4172": [ - "Radeon Pro 5300M", - { - "Bus Interface": "PCIe 4.0 x8", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "1000 MHz", - "Memory Clock(s)": "12000 MHz", - "DirectX": "12", - "OpenGL": "4.6", - "Max TDP": "85 W", - "Other names": "AMD Radeon Pro 5300M", - "Videocard First Benchmarked": "2019-12-12", - "G3DMark/Price": "NA", - "Overall Rank": "306", - "Last Price Change": "NA", - "Score": 6003, - "Average G2D Mark": 622, - "Samples": 44 - } - ], - "gpu4264": [ - "Radeon Pro 5500 XT", - { - "Other names": "AMD Radeon Pro 5500 XT", - "Videocard First Benchmarked": "2020-09-07", - "G3DMark/Price": "NA", - "Overall Rank": "227", - "Last Price Change": "NA", - "Score": 8330, - "Average G2D Mark": 606, - "Samples": 10 - } - ], - "gpu4165": [ - "Radeon Pro 5500M", - { - "Bus Interface": "PCIe 4.0 x8", - "Max Memory Size": "8192 MB", - "Core Clock(s)": "1000 MHz", - "Memory Clock(s)": "12000 MHz", - "DirectX": "12.0", - "OpenGL": "4.6", - "Max TDP": "85 W", - "Other names": "AMD Radeon Pro 5500M", - "Videocard First Benchmarked": "2019-11-23", - "G3DMark/Price": "NA", - "Overall Rank": "277", - "Last Price Change": "NA", - "Score": 6816, - "Average G2D Mark": 676, - "Samples": 131 - } - ], - "gpu3763": [ - "Radeon Pro 555", - { - "Other names": "Radeon Pro 555", - "Videocard First Benchmarked": "2017-06-08", - "G3DMark/Price": "2.99", - "Overall Rank": "514", - "Last Price Change": "$1049 USD (2021-05-20)", - "Score": 3141, - "Average G2D Mark": 659, - "Samples": 2 - } - ], - "gpu3820": [ - "Radeon Pro 560", - { - "Other names": "AMD Radeon Pro 560 (Bootcamp XG edition by bootcampdrivers.com), Radeon Pro 560", - "Videocard First Benchmarked": "2017-09-21", - "G3DMark/Price": "NA", - "Overall Rank": "480", - "Last Price Change": "NA", - "Score": 3475, - "Average G2D Mark": 724, - "Samples": 4 - } - ], - "gpu4225": [ - "Radeon Pro 5600M", - { - "Bus Interface": "PCIe 4.0 x16", - "Max Memory Size": "8192 MB", - "Core Clock(s)": "1000 MHz", - "Memory Clock(s)": "1540 MHz", - "DirectX": "12", - "OpenGL": "4.6", - "Max TDP": "50 W", - "Videocard Category": "Mobile", - "Other names": "AMD Radeon Pro 5600M", - "Videocard First Benchmarked": "2020-08-01", - "G3DMark/Price": "NA", - "Overall Rank": "197", - "Last Price Change": "NA", - "Score": 9416, - "Average G2D Mark": 689, - "Samples": 17 - } - ], - "gpu4021": [ - "Radeon Pro 560X", - { - "Other names": "Radeon Pro 560X", - "Videocard First Benchmarked": "2018-12-04", - "G3DMark/Price": "NA", - "Overall Rank": "462", - "Last Price Change": "NA", - "Score": 3678, - "Average G2D Mark": 711, - "Samples": 2 - } - ], - "gpu4099": [ - "Radeon Pro 570", - { - "Other names": "Radeon Pro 570", - "Videocard First Benchmarked": "2019-05-28", - "G3DMark/Price": "NA", - "Overall Rank": "290", - "Last Price Change": "NA", - "Score": 6337, - "Average G2D Mark": 697, - "Samples": 2 - } - ], - "gpu4252": [ - "Radeon Pro 5700", - { - "Bus Interface": "PCIe 4.0 x16", - "Max Memory Size": "8192 MB", - "Core Clock(s)": "1243 MHz", - "Memory Clock(s)": "12000 MHz", - "DirectX": "12", - "OpenGL": "4.6", - "Max TDP": "130 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon Pro 5700", - "Videocard First Benchmarked": "2020-08-20", - "G3DMark/Price": "NA", - "Overall Rank": "154", - "Last Price Change": "NA", - "Score": 11844, - "Average G2D Mark": 829, - "Samples": 3 - } - ], - "gpu4250": [ - "Radeon Pro 5700 XT", - { - "Bus Interface": "PCIe 4.0 x16", - "Max Memory Size": "16384 MB", - "Core Clock(s)": "1243 MHz", - "Memory Clock(s)": "12000 MHz", - "DirectX": "12", - "OpenGL": "4.6", - "Max TDP": "130 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon Pro 5700 XT", - "Videocard First Benchmarked": "2020-08-19", - "G3DMark/Price": "NA", - "Overall Rank": "139", - "Last Price Change": "NA", - "Score": 12708, - "Average G2D Mark": 827, - "Samples": 24 - } - ], - "gpu3933": [ - "Radeon Pro 580", - { - "Other names": "Radeon Pro 580", - "Videocard First Benchmarked": "2018-05-02", - "G3DMark/Price": "NA", - "Overall Rank": "247", - "Last Price Change": "NA", - "Score": 7753, - "Average G2D Mark": 943, - "Samples": 2 - } - ], - "gpu4138": [ - "Radeon Pro 580X", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "8192 MB", - "Core Clock(s)": "1100 MHz", - "Memory Clock(s)": "1695 MHz", - "DirectX": "12.0", - "OpenGL": "4.6", - "Max TDP": "150 W", - "Videocard Category": "Desktop", - "Other names": "Radeon Pro 580X", - "Videocard First Benchmarked": "2019-09-03", - "G3DMark/Price": "NA", - "Overall Rank": "254", - "Last Price Change": "NA", - "Score": 7540, - "Average G2D Mark": 698, - "Samples": 1 - } - ], - "gpu3575": [ - "Radeon Pro Duo", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "8192 MB", - "Core Clock(s)": "1000 MHz", - "Memory Clock(s)": "500 MHz", - "DirectX": "12", - "OpenGL": "4.5", - "Max TDP": "350 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon Pro Duo, AMD Radeon(TM) Pro Duo, Radeon (TM) Pro Duo", - "Videocard First Benchmarked": "2016-09-17", - "G3DMark/Price": "2.09", - "Overall Rank": "228", - "Last Price Change": "$3970.36 USD (2023-06-10)", - "Score": 8296, - "Average G2D Mark": 751, - "Samples": 709 - } - ], - "gpu4656": [ - "Radeon PRO Ryzen 5 PRO 6650U", - { - "Other names": "AMD Radeon PRO Graphics Ryzen 5 PRO 6650U", - "Videocard First Benchmarked": "2022-12-21", - "G3DMark/Price": "NA", - "Overall Rank": "426", - "Last Price Change": "NA", - "Score": 4067, - "Average G2D Mark": 829, - "Samples": 3 - } - ], - "gpu4658": [ - "Radeon PRO Ryzen 7 PRO 6850U", - { - "Other names": "AMD Radeon PRO Graphics Ryzen 7 PRO 6850U", - "Videocard First Benchmarked": "2022-12-21", - "G3DMark/Price": "NA", - "Overall Rank": "314", - "Last Price Change": "NA", - "Score": 5691, - "Average G2D Mark": 738, - "Samples": 49 - } - ], - "gpu3985": [ - "Radeon Pro SSG", - { - "Other names": "Radeon Pro SSG", - "Videocard First Benchmarked": "2018-09-13", - "G3DMark/Price": "4.55", - "Overall Rank": "167", - "Last Price Change": "$2410.15 USD (2022-04-10)", - "Score": 10972, - "Average G2D Mark": 588, - "Samples": 6 - } - ], - "gpu4011": [ - "Radeon Pro V340 MxGPU", - { - "Other names": "Radeon Pro V340 MxGPU", - "Videocard First Benchmarked": "2018-11-09", - "G3DMark/Price": "NA", - "Overall Rank": "536", - "Last Price Change": "NA", - "Score": 2853, - "Average G2D Mark": 118, - "Samples": 1 - } - ], - "gpu4328": [ - "Radeon Pro V520 MxGPU", - { - "Other names": "AMD Radeon Pro V520 MxGPU", - "Videocard First Benchmarked": "2020-12-24", - "G3DMark/Price": "NA", - "Overall Rank": "149", - "Last Price Change": "NA", - "Score": 12258, - "Average G2D Mark": 525, - "Samples": 9 - } - ], - "gpu4098": [ - "Radeon Pro Vega 16", - { - "Other names": "Radeon Pro Vega 16", - "Videocard First Benchmarked": "2019-05-27", - "G3DMark/Price": "NA", - "Overall Rank": "377", - "Last Price Change": "NA", - "Score": 4809, - "Average G2D Mark": 585, - "Samples": 2 - } - ], - "gpu4016": [ - "Radeon Pro Vega 20", - { - "Other names": "Radeon Pro Vega 20", - "Videocard First Benchmarked": "2018-11-21", - "G3DMark/Price": "NA", - "Overall Rank": "341", - "Last Price Change": "NA", - "Score": 5300, - "Average G2D Mark": 558, - "Samples": 37 - } - ], - "gpu4127": [ - "Radeon Pro Vega 48", - { - "Other names": "Radeon Pro Vega 48", - "Videocard First Benchmarked": "2019-08-03", - "G3DMark/Price": "NA", - "Overall Rank": "163", - "Last Price Change": "NA", - "Score": 11300, - "Average G2D Mark": 784, - "Samples": 14 - } - ], - "gpu3912": [ - "Radeon Pro Vega 56", - { - "Max Memory Size": "8192 MB", - "Core Clock(s)": "1247 MHz", - "Memory Clock(s)": "786 MHz", - "DirectX": "12", - "OpenGL": "4.5", - "Videocard Category": "Desktop", - "Other names": "Radeon Pro Vega 56", - "Videocard First Benchmarked": "2018-03-18", - "G3DMark/Price": "NA", - "Overall Rank": "146", - "Last Price Change": "NA", - "Score": 12354, - "Average G2D Mark": 828, - "Samples": 20 - } - ], - "gpu3879": [ - "Radeon Pro Vega 64", - { - "Other names": "Radeon Pro Vega 64", - "Videocard First Benchmarked": "2018-01-12", - "G3DMark/Price": "NA", - "Overall Rank": "132", - "Last Price Change": "NA", - "Score": 12984, - "Average G2D Mark": 805, - "Samples": 21 - } - ], - "gpu4189": [ - "Radeon Pro Vega II", - { - "Other names": "AMD Radeon Pro Vega II", - "Videocard First Benchmarked": "2020-02-02", - "G3DMark/Price": "NA", - "Overall Rank": "86", - "Last Price Change": "NA", - "Score": 15668, - "Average G2D Mark": 795, - "Samples": 4 - } - ], - "gpu4306": [ - "Radeon Pro VII", - { - "Other names": "AMD Radeon Pro VII", - "Videocard First Benchmarked": "2020-11-06", - "G3DMark/Price": "NA", - "Overall Rank": "95", - "Last Price Change": "NA", - "Score": 15333, - "Average G2D Mark": 717, - "Samples": 11 - } - ], - "gpu4192": [ - "Radeon Pro W5500", - { - "Bus Interface": "PCIe 4.0 x8", - "Max Memory Size": "8192 MB", - "Core Clock(s)": "1187 MHz", - "Memory Clock(s)": "14000 MHz", - "DirectX": "12", - "OpenGL": "4.6", - "Max TDP": "125 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon Pro W5500", - "Videocard First Benchmarked": "2020-02-13", - "G3DMark/Price": "22.28", - "Overall Rank": "204", - "Last Price Change": "$409.99 USD (2022-12-14)", - "Score": 9134, - "Average G2D Mark": 836, - "Samples": 153 - } - ], - "gpu4180": [ - "Radeon Pro W5500M", - { - "Bus Interface": "PCIe 4.0 x8", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "1000 MHz", - "Memory Clock(s)": "12000 MHz", - "DirectX": "12", - "OpenGL": "4.6", - "Max TDP": "85 W", - "Videocard Category": "Mobile", - "Other names": "AMD Radeon(TM) Pro W5500M Graphics, AMD Radeon(TM) Pro W5500M, AMD Radeon Pro W5500M", - "Videocard First Benchmarked": "2020-01-12", - "G3DMark/Price": "NA", - "Overall Rank": "704", - "Last Price Change": "NA", - "Score": 2010, - "Average G2D Mark": 533, - "Samples": 3 - } - ], - "gpu4182": [ - "Radeon Pro W5700", - { - "Bus Interface": "PCIe 4.0 x16", - "Max Memory Size": "8192 MB", - "Core Clock(s)": "1243 MHz", - "Memory Clock(s)": "14000 MHz", - "DirectX": "12", - "OpenGL": "4.6", - "Max TDP": "205 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon Pro W5700", - "Videocard First Benchmarked": "2020-01-17", - "G3DMark/Price": "23.75", - "Overall Rank": "94", - "Last Price Change": "$649.99 USD (2023-03-17)", - "Score": 15438, - "Average G2D Mark": 913, - "Samples": 146 - } - ], - "gpu4530": [ - "Radeon PRO W6400", - { - "Other names": "AMD Radeon PRO W6400", - "Videocard First Benchmarked": "2022-04-07", - "G3DMark/Price": "NA", - "Overall Rank": "236", - "Last Price Change": "NA", - "Score": 7945, - "Average G2D Mark": 806, - "Samples": 27 - } - ], - "gpu4445": [ - "Radeon PRO W6600", - { - "Other names": "AMD Radeon PRO W6600", - "Videocard First Benchmarked": "2021-08-12", - "G3DMark/Price": "NA", - "Overall Rank": "82", - "Last Price Change": "NA", - "Score": 16075, - "Average G2D Mark": 1036, - "Samples": 75 - } - ], - "gpu4609": [ - "Radeon PRO W6600X", - { - "Other names": "AMD Radeon PRO W6600X", - "Videocard First Benchmarked": "2022-10-21", - "G3DMark/Price": "NA", - "Overall Rank": "130", - "Last Price Change": "NA", - "Score": 13113, - "Average G2D Mark": 856, - "Samples": 2 - } - ], - "gpu4411": [ - "Radeon PRO W6800", - { - "Other names": "AMD Radeon PRO W6800", - "Videocard First Benchmarked": "2021-06-09", - "G3DMark/Price": "10.80", - "Overall Rank": "46", - "Last Price Change": "$1849.99 USD (2023-02-22)", - "Score": 19978, - "Average G2D Mark": 937, - "Samples": 86 - } - ], - "gpu4889": [ - "Radeon PRO W7600", - { - "Other names": "AMD Radeon PRO W7600", - "Videocard First Benchmarked": "2023-08-04", - "G3DMark/Price": "NA", - "Overall Rank": "68", - "Last Price Change": "NA", - "Score": 17632, - "Average G2D Mark": 1181, - "Samples": 4 - } - ], - "gpu4836": [ - "Radeon PRO W7800", - { - "Other names": "AMD Radeon PRO W7800", - "Videocard First Benchmarked": "2023-06-06", - "G3DMark/Price": "NA", - "Overall Rank": "7", - "Last Price Change": "NA", - "Score": 29140, - "Average G2D Mark": 1149, - "Samples": 11 - } - ], - "gpu4833": [ - "Radeon PRO W7900", - { - "Other names": "AMD Radeon PRO W7900", - "Videocard First Benchmarked": "2023-05-30", - "G3DMark/Price": "NA", - "Overall Rank": "6", - "Last Price Change": "NA", - "Score": 29771, - "Average G2D Mark": 1173, - "Samples": 15 - } - ], - "gpu3794": [ - "Radeon Pro WX 2100", - { - "Bus Interface": "PCIe 3.0 x8", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "925 MHz", - "Memory Clock(s)": "6000 MHz", - "DirectX": "12", - "OpenGL": "4.6", - "Max TDP": "35 W", - "Videocard Category": "Mobile", - "Other names": "AMD Radeon Pro WX 2100, AMD Radeon Pro WX 2100 Graphics", - "Videocard First Benchmarked": "2017-08-11", - "G3DMark/Price": "NA", - "Overall Rank": "767", - "Last Price Change": "NA", - "Score": 1821, - "Average G2D Mark": 401, - "Samples": 135 - } - ], - "gpu3783": [ - "Radeon Pro WX 3100", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "1219 MHz", - "Memory Clock(s)": "1500 MHz", - "DirectX": "12", - "OpenGL": "4.5", - "Max TDP": "50 W", - "Videocard Category": "Workstation", - "Other names": "AMD Radeon Pro WX 3100, Radeon Pro WX 3100", - "Videocard First Benchmarked": "2017-07-13", - "G3DMark/Price": "NA", - "Overall Rank": "598", - "Last Price Change": "NA", - "Score": 2500, - "Average G2D Mark": 419, - "Samples": 199 - } - ], - "gpu4065": [ - "Radeon Pro WX 3200", - { - "Bus Interface": "PCIe 3.0 x8", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "1295 MHz", - "Memory Clock(s)": "4000 MHz", - "DirectX": "12", - "OpenGL": "4.6", - "Max TDP": "65 W", - "Videocard Category": "Mobile", - "Other names": "AMD Radeon Pro WX3200 Graphics, AMD Radeon (TM) Pro WX 3200 Graphics, AMD Radeon Pro WX 3200 Series", - "Videocard First Benchmarked": "2019-11-25", - "G3DMark/Price": "9.58", - "Overall Rank": "607", - "Last Price Change": "$252.71 USD (2023-12-18)", - "Score": 2422, - "Average G2D Mark": 446, - "Samples": 29 - } - ], - "gpu3694": [ - "Radeon Pro WX 4100", - { - "Bus Interface": "PCIe 3.0 x8", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "1125 MHz", - "Memory Clock(s)": "6000 MHz", - "DirectX": "12", - "OpenGL": "4.6", - "Max TDP": "50 W", - "Videocard Category": "Desktop", - "Other names": "Radeon Pro WX4100 Graphics, Radeon Pro WX 4100, Radeon (TM) Pro WX 4100", - "Videocard First Benchmarked": "2017-03-04", - "G3DMark/Price": "7.54", - "Overall Rank": "450", - "Last Price Change": "$499.99 USD (2021-11-20)", - "Score": 3772, - "Average G2D Mark": 664, - "Samples": 163 - } - ], - "gpu3798": [ - "Radeon Pro WX 4130", - { - "Bus Interface": "PCIe 3.0 x8", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "1002 MHz", - "Memory Clock(s)": "6000 MHz", - "DirectX": "12", - "OpenGL": "4.6", - "Max TDP": "50 W", - "Videocard Category": "Mobile", - "Other names": "Radeon (TM) Pro WX 4130 Graphics", - "Videocard First Benchmarked": "2017-08-15", - "G3DMark/Price": "NA", - "Overall Rank": "732", - "Last Price Change": "NA", - "Score": 1928, - "Average G2D Mark": 355, - "Samples": 20 - } - ], - "gpu3787": [ - "Radeon Pro WX 4150", - { - "Bus Interface": "PCIe 3.0 x8", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "1002 MHz", - "Memory Clock(s)": "1500 MHz", - "DirectX": "12", - "OpenGL": "4.5", - "Max TDP": "50 W", - "Videocard Category": "Mobile", - "Other names": "Radeon (TM) Pro WX 4150 Graphics, Radeon(TM) Pro WX 4150 Graphics, AMD Radeon Pro WX4150, Radeon Pro WX 4150", - "Videocard First Benchmarked": "2017-07-20", - "G3DMark/Price": "3.90", - "Overall Rank": "618", - "Last Price Change": "$610.04 USD (2022-06-01)", - "Score": 2381, - "Average G2D Mark": 428, - "Samples": 37 - } - ], - "gpu4169": [ - "Radeon Pro WX 4170", - { - "Bus Interface": "PCIe 3.0 x8", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "1002 MHz", - "Memory Clock(s)": "7000 MHz", - "DirectX": "12", - "OpenGL": "4.6", - "Max TDP": "50 W", - "Videocard Category": "Mobile", - "Other names": "Radeon(TM) Pro WX 4170 Graphics", - "Videocard First Benchmarked": "2019-12-02", - "G3DMark/Price": "NA", - "Overall Rank": "895", - "Last Price Change": "NA", - "Score": 1409, - "Average G2D Mark": 427, - "Samples": 1 - } - ], - "gpu3619": [ - "Radeon Pro WX 5100", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "8096 MB", - "Core Clock(s)": "926-1090 MHz", - "Memory Clock(s)": "1650 MHz", - "DirectX": "12", - "OpenGL": "4.5", - "Max TDP": "75 W", - "Videocard Category": "Workstation", - "Other names": "Radeon (TM) Pro WX 5100 Graphics, Radeon Pro WX 5100", - "Videocard First Benchmarked": "2016-12-13", - "G3DMark/Price": "15.61", - "Overall Rank": "315", - "Last Price Change": "$359.99 USD (2022-12-30)", - "Score": 5620, - "Average G2D Mark": 789, - "Samples": 262 - } - ], - "gpu3611": [ - "Radeon Pro WX 7100", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "8192 MB", - "Core Clock(s)": "1188 MHz", - "DirectX": "12", - "OpenGL": "4.5", - "Max TDP": "130 W", - "Videocard Category": "Workstation", - "Other names": "Radeon (TM) Pro WX 7100 Graphics, AMD Radeon (TM) Pro WX 7100 Graphics, Radeon Pro WX 7100", - "Videocard First Benchmarked": "2016-11-29", - "G3DMark/Price": "7.53", - "Overall Rank": "239", - "Last Price Change": "$1047.99 USD (2022-03-30)", - "Score": 7894, - "Average G2D Mark": 815, - "Samples": 303 - } - ], - "gpu4129": [ - "Radeon Pro WX 7130", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "8192 MB", - "Core Clock(s)": "1188 MHz", - "Memory Clock(s)": "5000 MHz", - "DirectX": "12", - "OpenGL": "4.6", - "Max TDP": "130 W", - "Videocard Category": "Mobile", - "Other names": "AMD Radeon (TM) Pro WX 7130 Graphics", - "Videocard First Benchmarked": "2020-01-17", - "G3DMark/Price": "NA", - "Overall Rank": "284", - "Last Price Change": "NA", - "Score": 6578, - "Average G2D Mark": 555, - "Samples": 7 - } - ], - "gpu3976": [ - "Radeon Pro WX 8200", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "8192 MB", - "Core Clock(s)": "1200 MHz", - "Memory Clock(s)": "2000 MHz", - "DirectX": "12", - "OpenGL": "4.6", - "Max TDP": "230 W", - "Videocard Category": "Desktop", - "Other names": "Radeon (TM) PRO WX 8200", - "Videocard First Benchmarked": "2018-08-30", - "G3DMark/Price": "8.71", - "Overall Rank": "109", - "Last Price Change": "$1599.39 USD (2022-04-15)", - "Score": 13932, - "Average G2D Mark": 815, - "Samples": 76 - } - ], - "gpu3833": [ - "Radeon Pro WX 9100", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "16384 MB", - "Core Clock(s)": "1200 MHz", - "Memory Clock(s)": "1890 MHz", - "DirectX": "12", - "OpenGL": "4.6", - "Max TDP": "230 W", - "Videocard Category": "Desktop", - "Other names": "Radeon (TM) Pro WX 9100, Radeon Pro WX 9100, Radeon (TM) Pro WX 9100 Graphics", - "Videocard First Benchmarked": "2017-10-16", - "G3DMark/Price": "NA", - "Overall Rank": "134", - "Last Price Change": "NA", - "Score": 12960, - "Average G2D Mark": 746, - "Samples": 91 - } - ], - "gpu4019": [ - "Radeon Pro WX Vega M GL", - { - "Bus Interface": "Integrated", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "931 MHz", - "Memory Clock(s)": "1400 MHz", - "DirectX": "12", - "OpenGL": "4.6", - "Max TDP": "65 W", - "Videocard Category": "Mobile", - "Other names": "Radeon Pro WX Vega M GL Graphics", - "Videocard First Benchmarked": "2019-06-22", - "G3DMark/Price": "NA", - "Overall Rank": "388", - "Last Price Change": "NA", - "Score": 4643, - "Average G2D Mark": 405, - "Samples": 4 - } - ], - "gpu3701": [ - "Radeon R1E", - { - "Other names": "AMD Radeon(TM) R1E Graphics, AMD Radeon R1E Graphics", - "Videocard First Benchmarked": "2017-03-13", - "G3DMark/Price": "NA", - "Overall Rank": "1716", - "Last Price Change": "NA", - "Score": 301, - "Average G2D Mark": 179, - "Samples": 7 - } - ], - "gpu2915": [ - "Radeon R2", - { - "Other names": "AMD Radeon(TM) R2 Graphics, AMD NVIDIA(TM) R2 Graphics, AMD Radeon R2", - "Videocard First Benchmarked": "2014-07-26", - "G3DMark/Price": "NA", - "Overall Rank": "1772", - "Last Price Change": "NA", - "Score": 241, - "Average G2D Mark": 68, - "Samples": 1078 - } - ], - "gpu2900": [ - "Radeon R2E", - { - "Other names": "AMD Radeon(TM) R2E Graphics", - "Videocard First Benchmarked": "2014-07-04", - "G3DMark/Price": "NA", - "Overall Rank": "1804", - "Last Price Change": "NA", - "Score": 212, - "Average G2D Mark": 90, - "Samples": 13 - } - ], - "gpu2914": [ - "Radeon R3", - { - "Other names": "AMD Radeon(TM) R3 Graphics, AMD Radeon R3, AMD Radeon R3 Graphics", - "Videocard First Benchmarked": "2014-07-24", - "G3DMark/Price": "NA", - "Overall Rank": "1714", - "Last Price Change": "NA", - "Score": 303, - "Average G2D Mark": 96, - "Samples": 731 - } - ], - "gpu3118": [ - "Radeon R3E", - { - "Other names": "AMD Radeon(TM) R3E Graphics", - "Videocard First Benchmarked": "2015-01-26", - "G3DMark/Price": "NA", - "Overall Rank": "1814", - "Last Price Change": "NA", - "Score": 206, - "Average G2D Mark": 90, - "Samples": 8 - } - ], - "gpu2902": [ - "Radeon R4", - { - "Other names": "AMD Radeon(TM) R4 Graphics, AMD Radeon R4, AMD Radeon R4 Graphics", - "Videocard First Benchmarked": "2014-07-05", - "G3DMark/Price": "0.84", - "Overall Rank": "1688", - "Last Price Change": "$396.99 USD (2021-05-13)", - "Score": 333, - "Average G2D Mark": 99, - "Samples": 1804 - } - ], - "gpu3846": [ - "Radeon R4E", - { - "Other names": "AMD Radeon(TM) R4E Graphics", - "Videocard First Benchmarked": "2017-11-14", - "G3DMark/Price": "NA", - "Overall Rank": "1544", - "Last Price Change": "NA", - "Score": 487, - "Average G2D Mark": 366, - "Samples": 1 - } - ], - "gpu3123": [ - "Radeon R5 220", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "650 MHz", - "Memory Clock(s)": "533 MHz", - "DirectX": "11", - "OpenGL": "3.2", - "Max TDP": "19 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon R5 220", - "Videocard First Benchmarked": "2015-02-02", - "G3DMark/Price": "1.56", - "Overall Rank": "1919", - "Last Price Change": "$85.26 USD (2020-03-14)", - "Score": 133, - "Average G2D Mark": 112, - "Samples": 2825 - } - ], - "gpu3885": [ - "Radeon R5 230", - { - "Other names": "AMD Radeon R5 230, AMD RADEON(TM) R5 230", - "Videocard First Benchmarked": "2018-01-19", - "G3DMark/Price": "2.74", - "Overall Rank": "1791", - "Last Price Change": "$81.1 USD (2021-05-13)", - "Score": 222, - "Average G2D Mark": 255, - "Samples": 6 - } - ], - "gpu2826": [ - "Radeon R5 235", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "775 MHz", - "Memory Clock(s)": "1800 MHz", - "DirectX": "11", - "OpenGL": "4.4", - "Max TDP": "35 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon R5 235", - "Videocard First Benchmarked": "2014-02-27", - "G3DMark/Price": "5.68", - "Overall Rank": "1678", - "Last Price Change": "$60.13 USD (2020-03-13)", - "Score": 342, - "Average G2D Mark": 168, - "Samples": 69 - } - ], - "gpu2871": [ - "Radeon R5 235 + HD 7560D Dual", - { - "Other names": "AMD Radeon R5 235 + HD 7560D Dual Graphics", - "Videocard First Benchmarked": "2014-05-12", - "G3DMark/Price": "NA", - "Overall Rank": "1250", - "Last Price Change": "NA", - "Score": 744, - "Average G2D Mark": 441, - "Samples": 4 - } - ], - "gpu3269": [ - "Radeon R5 235 + HD 8570D Dual", - { - "Other names": "AMD Radeon R5 235 + HD 8570D Dual Graphics", - "Videocard First Benchmarked": "2015-07-30", - "G3DMark/Price": "NA", - "Overall Rank": "1260", - "Last Price Change": "NA", - "Score": 738, - "Average G2D Mark": 486, - "Samples": 1 - } - ], - "gpu3080": [ - "Radeon R5 235X", - { - "Bus Interface": "PCIe 2.1 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "875 MHz", - "Memory Clock(s)": "1800 MHz", - "DirectX": "11", - "OpenGL": "4.4", - "Max TDP": "18 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon(TM) R5 235X", - "Videocard First Benchmarked": "2014-12-14", - "G3DMark/Price": "NA", - "Overall Rank": "1739", - "Last Price Change": "NA", - "Score": 277, - "Average G2D Mark": 202, - "Samples": 11 - } - ], - "gpu2948": [ - "Radeon R5 240", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "730 MHz", - "Memory Clock(s)": "1800 MHz", - "DirectX": "11.2", - "OpenGL": "4.4", - "Max TDP": "50 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon(TM) R5 240, AMD Radeon R5 240", - "Videocard First Benchmarked": "2014-09-15", - "G3DMark/Price": "6.25", - "Overall Rank": "1497", - "Last Price Change": "$85 USD (2021-05-13)", - "Score": 532, - "Average G2D Mark": 193, - "Samples": 335 - } - ], - "gpu3391": [ - "Radeon R5 310", - { - "Other names": "AMD Radeon R5 310, AMD Radeon(TM) R5 310", - "Videocard First Benchmarked": "2015-12-16", - "G3DMark/Price": "0.66", - "Overall Rank": "1689", - "Last Price Change": "$499 USD (2019-02-25)", - "Score": 332, - "Average G2D Mark": 545, - "Samples": 18 - } - ], - "gpu3270": [ - "Radeon R5 330", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "2048 MB", - "DirectX": "12.0", - "OpenGL": "4.4", - "Max TDP": "30 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon R5 330", - "Videocard First Benchmarked": "2017-05-03", - "G3DMark/Price": "1.51", - "Overall Rank": "1516", - "Last Price Change": "$339.99 USD (2020-03-14)", - "Score": 513, - "Average G2D Mark": 195, - "Samples": 13 - } - ], - "gpu3590": [ - "Radeon R5 340", - { - "Other names": "AMD Radeon R5 340", - "Videocard First Benchmarked": "2016-10-12", - "G3DMark/Price": "NA", - "Overall Rank": "1061", - "Last Price Change": "NA", - "Score": 984, - "Average G2D Mark": 360, - "Samples": 16 - } - ], - "gpu3837": [ - "Radeon R5 420", - { - "Other names": "AMD Radeon R5 420", - "Videocard First Benchmarked": "2017-10-25", - "G3DMark/Price": "14.39", - "Overall Rank": "1442", - "Last Price Change": "$39.95 USD (2020-03-15)", - "Score": 575, - "Average G2D Mark": 230, - "Samples": 5 - } - ], - "gpu3801": [ - "Radeon R5 430", - { - "Other names": "AMD Radeon R5 430, AMD RadeonT R5 430", - "Videocard First Benchmarked": "2017-08-25", - "G3DMark/Price": "15.88", - "Overall Rank": "1090", - "Last Price Change": "$59 USD (2021-05-13)", - "Score": 937, - "Average G2D Mark": 311, - "Samples": 165 - } - ], - "gpu3601": [ - "Radeon R5 435", - { - "Other names": "AMD Radeon R5 435", - "Videocard First Benchmarked": "2020-07-06", - "G3DMark/Price": "NA", - "Overall Rank": "1154", - "Last Price Change": "NA", - "Score": 841, - "Average G2D Mark": 235, - "Samples": 2 - } - ], - "gpu3616": [ - "Radeon R5 A10-9600P 4C+6G", - { - "Other names": "AMD Radeon(TM) R5 Graphics A10-9600P RADEON R5, 10 COMPUTE CORES 4C+6G, AMD Radeon R5 Graphics A10-9600P RADEON R5, 10 COMPUTE CORES 4C+6G", - "Videocard First Benchmarked": "2016-12-09", - "G3DMark/Price": "NA", - "Overall Rank": "1378", - "Last Price Change": "NA", - "Score": 619, - "Average G2D Mark": 146, - "Samples": 329 - } - ], - "gpu4291": [ - "Radeon R5 A10-9600P RADEON R5, 10 COMPUTE CORES 4C", - { - "Other names": "AMD Radeon(TM) R5 Graphics A10-9600P RADEON R5, 10 COMPUTE CORES 4C+6G, AMD Radeon R5 Graphics A10-9600P RADEON R5, 10 COMPUTE CORES 4C+6G", - "Videocard First Benchmarked": "2020-09-29", - "G3DMark/Price": "NA", - "Overall Rank": "1282", - "Last Price Change": "NA", - "Score": 717, - "Average G2D Mark": 150, - "Samples": 35 - } - ], - "gpu3793": [ - "Radeon R5 A10-9620P 4C+6G", - { - "Other names": "AMD Radeon R5 Graphics A10-9620P RADEON R5, 10 COMPUTE CORES 4C+6G, AMD Radeon (TM) R5 Graphics A10-9620P RADEON R5, 10 COMPUTE CORES 4C+6G, AMD Radeon(TM) R5 Graphics A10-9620P RADEON R5, 10 COMPUTE CORES 4C+6G", - "Videocard First Benchmarked": "2017-08-11", - "G3DMark/Price": "NA", - "Overall Rank": "1264", - "Last Price Change": "NA", - "Score": 732, - "Average G2D Mark": 196, - "Samples": 98 - } - ], - "gpu4294": [ - "Radeon R5 A10-9620P RADEON R5, 10 COMPUTE CORES 4C", - { - "Other names": "AMD Radeon R5 Graphics A10-9620P RADEON R5, 10 COMPUTE CORES 4C+6G, AMD Radeon(TM) R5 Graphics A10-9620P RADEON R5, 10 COMPUTE CORES 4C+6G", - "Videocard First Benchmarked": "2020-09-29", - "G3DMark/Price": "NA", - "Overall Rank": "1312", - "Last Price Change": "NA", - "Score": 678, - "Average G2D Mark": 172, - "Samples": 24 - } - ], - "gpu3785": [ - "Radeon R5 A10-9630P 4C+6G", - { - "Other names": "AMD Radeon R5 Graphics A10-9630P RADEON R5, 10 COMPUTE CORES 4C+6G", - "Videocard First Benchmarked": "2017-07-15", - "G3DMark/Price": "NA", - "Overall Rank": "1064", - "Last Price Change": "NA", - "Score": 977, - "Average G2D Mark": 270, - "Samples": 13 - } - ], - "gpu4475": [ - "Radeon R5 A10-9630P RADEON R5, 10 COMPUTE CORES 4C", - { - "Other names": "AMD Radeon R5 Graphics A10-9630P RADEON R5, 10 COMPUTE CORES 4C+6G, AMD Radeon(TM) R5 Graphics A10-9630P RADEON R5, 10 COMPUTE CORES 4C+6G", - "Videocard First Benchmarked": "2021-11-29", - "G3DMark/Price": "NA", - "Overall Rank": "1173", - "Last Price Change": "NA", - "Score": 825, - "Average G2D Mark": 189, - "Samples": 2 - } - ], - "gpu3497": [ - "Radeon R5 A240", - { - "Other names": "AMD Radeon R5 A240", - "Videocard First Benchmarked": "2016-08-30", - "G3DMark/Price": "NA", - "Overall Rank": "1438", - "Last Price Change": "NA", - "Score": 576, - "Average G2D Mark": 802, - "Samples": 1 - } - ], - "gpu4075": [ - "Radeon R5 A6-7480", - { - "Other names": "AMD Radeon R5 Graphics A6-7480", - "Videocard First Benchmarked": "2019-04-25", - "G3DMark/Price": "NA", - "Overall Rank": "1297", - "Last Price Change": "NA", - "Score": 694, - "Average G2D Mark": 184, - "Samples": 34 - } - ], - "gpu3984": [ - "Radeon R5 A6-8500P", - { - "Other names": "AMD Radeon R5 Graphics A6-8500P , AMD Radeon (TM) R5 Graphics A6-8500P", - "Videocard First Benchmarked": "2018-09-13", - "G3DMark/Price": "NA", - "Overall Rank": "1425", - "Last Price Change": "NA", - "Score": 587, - "Average G2D Mark": 190, - "Samples": 6 - } - ], - "gpu4183": [ - "Radeon R5 A6-9400 RADEON R5, 6 COMPUTE CORES 2C+4G", - { - "Other names": "AMD Radeon R5 Graphics A6-9400 RADEON R5, 6 COMPUTE CORES 2C+4G", - "Videocard First Benchmarked": "2020-01-19", - "G3DMark/Price": "NA", - "Overall Rank": "1395", - "Last Price Change": "NA", - "Score": 605, - "Average G2D Mark": 271, - "Samples": 4 - } - ], - "gpu3834": [ - "Radeon R5 A6-9500 2C+6G", - { - "Other names": "AMD Radeon R5 Graphics A6-9500 RADEON R5, 8 COMPUTE CORES 2C+6G", - "Videocard First Benchmarked": "2017-10-17", - "G3DMark/Price": "NA", - "Overall Rank": "1145", - "Last Price Change": "NA", - "Score": 853, - "Average G2D Mark": 249, - "Samples": 24 - } - ], - "gpu4317": [ - "Radeon R5 A6-9500 RADEON R5, 8 COMPUTE CORES 2C+6G", - { - "Other names": "AMD Radeon R5 Graphics A6-9500 RADEON R5, 8 COMPUTE CORES 2C+6G", - "Videocard First Benchmarked": "2020-11-28", - "G3DMark/Price": "NA", - "Overall Rank": "1098", - "Last Price Change": "NA", - "Score": 926, - "Average G2D Mark": 211, - "Samples": 18 - } - ], - "gpu3997": [ - "Radeon R5 A6-9500E 2C+4G", - { - "Other names": "AMD Radeon R5 Graphics A6-9500E RADEON R5, 6 COMPUTE CORES 2C+4G", - "Videocard First Benchmarked": "2018-10-06", - "G3DMark/Price": "NA", - "Overall Rank": "1043", - "Last Price Change": "NA", - "Score": 1015, - "Average G2D Mark": 438, - "Samples": 1 - } - ], - "gpu4635": [ - "Radeon R5 A6-9500E RADEON R5, 6 COMPUTE CORES 2C+4", - { - "Other names": "AMD Radeon R5 Graphics A6-9500E RADEON R5, 6 COMPUTE CORES 2C+4G", - "Videocard First Benchmarked": "2022-12-02", - "G3DMark/Price": "NA", - "Overall Rank": "1269", - "Last Price Change": "NA", - "Score": 727, - "Average G2D Mark": 223, - "Samples": 4 - } - ], - "gpu3025": [ - "Radeon R5 M230", - { - "Bus Interface": "PCIe 3.0 x8", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "780 MHz", - "Memory Clock(s)": "1000 MHz", - "DirectX": "11.2", - "OpenGL": "4.3", - "Videocard Category": "Mobile", - "Other names": "AMD Radeon R5 M230 Series, AMD Radeon R5 M230, AMD Radeon (TM) R5 M230, AMD Radeon(TM) R5 M230", - "Videocard First Benchmarked": "2014-12-03", - "G3DMark/Price": "NA", - "Overall Rank": "1618", - "Last Price Change": "NA", - "Score": 414, - "Average G2D Mark": 131, - "Samples": 108 - } - ], - "gpu3060": [ - "Radeon R5 M240", - { - "Other names": "AMD Radeon(TM) R5 M240, AMD Radeon R5 M240, AMD Radeon R5 M240 Series", - "Videocard First Benchmarked": "2015-08-08", - "G3DMark/Price": "NA", - "Overall Rank": "1609", - "Last Price Change": "NA", - "Score": 425, - "Average G2D Mark": 190, - "Samples": 11 - } - ], - "gpu3041": [ - "Radeon R5 M255", - { - "Bus Interface": "PCIe 3.0 x8", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "Unknown MHz", - "Memory Clock(s)": "1000 MHz", - "DirectX": "11.2", - "OpenGL": "4.3", - "Videocard Category": "Mobile", - "Other names": "AMD Radeon R5 M255", - "Videocard First Benchmarked": "2014-12-01", - "G3DMark/Price": "NA", - "Overall Rank": "1495", - "Last Price Change": "NA", - "Score": 532, - "Average G2D Mark": 138, - "Samples": 110 - } - ], - "gpu3487": [ - "Radeon R5 M315", - { - "Other names": "AMD Radeon R5 M315, AMD Radeon (TM) R5 M315", - "Videocard First Benchmarked": "2016-07-05", - "G3DMark/Price": "NA", - "Overall Rank": "1560", - "Last Price Change": "NA", - "Score": 474, - "Average G2D Mark": 166, - "Samples": 15 - } - ], - "gpu3313": [ - "Radeon R5 M320", - { - "Other names": "AMD Radeon (TM) R5 M320, AMD Radeon(TM) R5 M320, AMD Radeon R5 M320", - "Videocard First Benchmarked": "2015-09-17", - "G3DMark/Price": "NA", - "Overall Rank": "1598", - "Last Price Change": "NA", - "Score": 440, - "Average G2D Mark": 138, - "Samples": 35 - } - ], - "gpu3207": [ - "Radeon R5 M330", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "4096 MB", - "Memory Clock(s)": "1000 MHz", - "DirectX": "12.0", - "OpenGL": "4.3", - "Max TDP": "18 W", - "Videocard Category": "Mobile", - "Other names": "AMD Radeon R5 M330, AMD Radeon (TM) R5 M330, AMD Radeon(TM) R5 M330, AMD Radeon(TM) R5 M330", - "Videocard First Benchmarked": "2015-08-23", - "G3DMark/Price": "NA", - "Overall Rank": "1406", - "Last Price Change": "NA", - "Score": 596, - "Average G2D Mark": 519, - "Samples": 133 - } - ], - "gpu3332": [ - "Radeon R5 M335", - { - "Bus Interface": "PCIe 3.0 x6", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "1070 MHz", - "Memory Clock(s)": "1100 MHz", - "DirectX": "12.0", - "OpenGL": "4.3", - "Videocard Category": "Mobile", - "Other names": "AMD Radeon R5 M335, AMD Radeon (TM) R5 M335, AMD Radeon(TM) R5 M335", - "Videocard First Benchmarked": "2015-11-30", - "G3DMark/Price": "NA", - "Overall Rank": "1471", - "Last Price Change": "NA", - "Score": 549, - "Average G2D Mark": 577, - "Samples": 33 - } - ], - "gpu3585": [ - "Radeon R5 M420", - { - "Other names": "AMD Radeon(TM) R5 M420, Radeon (TM) R5 M420, AMD Radeon R5 M420", - "Videocard First Benchmarked": "2017-11-11", - "G3DMark/Price": "NA", - "Overall Rank": "1529", - "Last Price Change": "NA", - "Score": 500, - "Average G2D Mark": 158, - "Samples": 28 - } - ], - "gpu3552": [ - "Radeon R5 M430", - { - "Other names": "AMD Radeon (TM) R5 M430, AMD Radeon(TM) R5 M430, Radeon (TM) R5 M430, AMD Radeon R5 M430", - "Videocard First Benchmarked": "2016-08-16", - "G3DMark/Price": "NA", - "Overall Rank": "1340", - "Last Price Change": "NA", - "Score": 649, - "Average G2D Mark": 516, - "Samples": 49 - } - ], - "gpu3956": [ - "Radeon R5 M435", - { - "Other names": "AMD Radeon R5 M435", - "Videocard First Benchmarked": "2018-07-10", - "G3DMark/Price": "NA", - "Overall Rank": "1192", - "Last Price Change": "NA", - "Score": 802, - "Average G2D Mark": 181, - "Samples": 28 - } - ], - "gpu3804": [ - "Radeon R5 Opteron X3216", - { - "Other names": "AMD Radeon R5 Graphics Opteron X3216", - "Videocard First Benchmarked": "2017-08-28", - "G3DMark/Price": "NA", - "Overall Rank": "1636", - "Last Price Change": "NA", - "Score": 394, - "Average G2D Mark": 182, - "Samples": 13 - } - ], - "gpu3646": [ - "Radeon R5 PRO A10-8730B 4C+6G", - { - "Other names": "AMD Radeon R5 Graphics PRO A10-8730B R5, 10 COMPUTE CORES 4C+6G, AMD Radeon(TM) R5 Graphics PRO A10-8730B R5, 10 COMPUTE CORES 4C+6G", - "Videocard First Benchmarked": "2017-01-11", - "G3DMark/Price": "NA", - "Overall Rank": "1296", - "Last Price Change": "NA", - "Score": 695, - "Average G2D Mark": 201, - "Samples": 23 - } - ], - "gpu4305": [ - "Radeon R5 PRO A10-8730B R5, 10 COMPUTE CORES 4C+6G", - { - "Other names": "AMD Radeon(TM) R5 Graphics PRO A10-8730B R5, 10 COMPUTE CORES 4C+6G, AMD Radeon R5 Graphics PRO A10-8730B R5, 10 COMPUTE CORES 4C+6G", - "Videocard First Benchmarked": "2020-11-05", - "G3DMark/Price": "NA", - "Overall Rank": "1358", - "Last Price Change": "NA", - "Score": 631, - "Average G2D Mark": 150, - "Samples": 16 - } - ], - "gpu3722": [ - "Radeon R5 PRO A6-8500B 2C+4G", - { - "Other names": "AMD Radeon(TM) R5 Graphics PRO A6-8500B R5, 6 Compute Cores 2C+4G", - "Videocard First Benchmarked": "2017-04-05", - "G3DMark/Price": "NA", - "Overall Rank": "1521", - "Last Price Change": "NA", - "Score": 508, - "Average G2D Mark": 416, - "Samples": 1 - } - ], - "gpu4645": [ - "Radeon R5 PRO A6-8500B R5, 6 Compute Cores 2C+4G", - { - "Other names": "AMD Radeon (TM) R5 Graphics PRO A6-8500B R5, 6 Compute Cores 2C+4G, AMD Radeon R5 Graphics PRO A6-8500B R5, 6 Compute Cores 2C+4G", - "Videocard First Benchmarked": "2022-12-19", - "G3DMark/Price": "NA", - "Overall Rank": "1561", - "Last Price Change": "NA", - "Score": 472, - "Average G2D Mark": 139, - "Samples": 2 - } - ], - "gpu3666": [ - "Radeon R5 PRO A6-8530B 2C+4G", - { - "Other names": "AMD Radeon(TM) R5 Graphics PRO A6-8530B R5, 6 COMPUTE CORES 2C+4G, AMD Radeon R5 Graphics PRO A6-8530B R5, 6 COMPUTE CORES 2C+4G", - "Videocard First Benchmarked": "2017-01-30", - "G3DMark/Price": "NA", - "Overall Rank": "1301", - "Last Price Change": "NA", - "Score": 690, - "Average G2D Mark": 354, - "Samples": 3 - } - ], - "gpu3667": [ - "Radeon R5 PRO A6-8570 2C+6G", - { - "Other names": "AMD Radeon R5 Graphics PRO A6-8570 R5, 8 COMPUTE CORES 2C+6G", - "Videocard First Benchmarked": "2017-01-31", - "G3DMark/Price": "NA", - "Overall Rank": "1151", - "Last Price Change": "NA", - "Score": 847, - "Average G2D Mark": 292, - "Samples": 5 - } - ], - "gpu4377": [ - "Radeon R5 PRO A6-8570 R5, 8 COMPUTE CORES 2C+6G", - { - "Other names": "AMD Radeon R5 Graphics PRO A6-8570 R5, 8 COMPUTE CORES 2C+6G", - "Videocard First Benchmarked": "2021-03-31", - "G3DMark/Price": "NA", - "Overall Rank": "1058", - "Last Price Change": "NA", - "Score": 985, - "Average G2D Mark": 240, - "Samples": 9 - } - ], - "gpu3649": [ - "Radeon R5 PRO A6-8570E 2C+4G", - { - "Other names": "AMD Radeon R5 Graphics PRO A6-8570E R5, 6 COMPUTE CORES 2C+4G", - "Videocard First Benchmarked": "2017-01-13", - "G3DMark/Price": "NA", - "Overall Rank": "1348", - "Last Price Change": "NA", - "Score": 638, - "Average G2D Mark": 268, - "Samples": 3 - } - ], - "gpu4339": [ - "Radeon R5 PRO A6-8570E R5, 6 COMPUTE CORES 2C+4G", - { - "Other names": "AMD Radeon R5 Graphics PRO A6-8570E R5, 6 COMPUTE CORES 2C+4G", - "Videocard First Benchmarked": "2021-01-28", - "G3DMark/Price": "NA", - "Overall Rank": "1193", - "Last Price Change": "NA", - "Score": 800, - "Average G2D Mark": 215, - "Samples": 4 - } - ], - "gpu3668": [ - "Radeon R5 PRO A6-9500 2C+6G", - { - "Other names": "AMD Radeon R5 Graphics PRO A6-9500 R5, 8 COMPUTE CORES 2C+6G", - "Videocard First Benchmarked": "2017-01-31", - "G3DMark/Price": "NA", - "Overall Rank": "1004", - "Last Price Change": "NA", - "Score": 1096, - "Average G2D Mark": 353, - "Samples": 9 - } - ], - "gpu4412": [ - "Radeon R5 PRO A6-9500 R5, 8 COMPUTE CORES 2C+6G", - { - "Other names": "AMD Radeon R5 Graphics PRO A6-9500 R5, 8 COMPUTE CORES 2C+6G", - "Videocard First Benchmarked": "2021-06-11", - "G3DMark/Price": "NA", - "Overall Rank": "1165", - "Last Price Change": "NA", - "Score": 833, - "Average G2D Mark": 180, - "Samples": 7 - } - ], - "gpu3715": [ - "Radeon R5 PRO A6-9500B 2C+4G", - { - "Other names": "AMD Radeon R5 Graphics PRO A6-9500B R5, 6 COMPUTE CORES 2C+4G", - "Videocard First Benchmarked": "2017-03-29", - "G3DMark/Price": "NA", - "Overall Rank": "1298", - "Last Price Change": "NA", - "Score": 693, - "Average G2D Mark": 323, - "Samples": 2 - } - ], - "gpu4326": [ - "Radeon R5 PRO A6-9500B R5, 6 COMPUTE CORES 2C+4G", - { - "Other names": "AMD Radeon R5 Graphics PRO A6-9500B R5, 6 COMPUTE CORES 2C+4G", - "Videocard First Benchmarked": "2020-12-22", - "G3DMark/Price": "NA", - "Overall Rank": "1623", - "Last Price Change": "NA", - "Score": 408, - "Average G2D Mark": 120, - "Samples": 16 - } - ], - "gpu3669": [ - "Radeon R5 PRO A6-9500E 2C+4G", - { - "Other names": "AMD Radeon R5 Graphics PRO A6-9500E R5, 6 COMPUTE CORES 2C+4G", - "Videocard First Benchmarked": "2017-01-31", - "G3DMark/Price": "NA", - "Overall Rank": "1221", - "Last Price Change": "NA", - "Score": 771, - "Average G2D Mark": 288, - "Samples": 8 - } - ], - "gpu3660": [ - "Radeon R5 PRO A8-9600B 4C+6G", - { - "Other names": "AMD Radeon(TM) R5 Graphics PRO A8-9600B R5, 10 COMPUTE CORES 4C+6G, AMD Radeon R5 Graphics PRO A8-9600B R5, 10 COMPUTE CORES 4C+6G", - "Videocard First Benchmarked": "2017-01-28", - "G3DMark/Price": "NA", - "Overall Rank": "1328", - "Last Price Change": "NA", - "Score": 659, - "Average G2D Mark": 224, - "Samples": 48 - } - ], - "gpu4346": [ - "Radeon R5 PRO A8-9600B R5, 10 COMPUTE CORES 4C+6G", - { - "Other names": "AMD Radeon R5 Graphics PRO A8-9600B R5, 10 COMPUTE CORES 4C+6G, AMD Radeon(TM) R5 Graphics PRO A8-9600B R5, 10 COMPUTE CORES 4C+6G", - "Videocard First Benchmarked": "2021-02-27", - "G3DMark/Price": "NA", - "Overall Rank": "1457", - "Last Price Change": "NA", - "Score": 562, - "Average G2D Mark": 161, - "Samples": 7 - } - ], - "gpu2904": [ - "Radeon R5E", - { - "Other names": "AMD Radeon(TM) R5E Graphics", - "Videocard First Benchmarked": "2014-07-07", - "G3DMark/Price": "NA", - "Overall Rank": "1720", - "Last Price Change": "NA", - "Score": 296, - "Average G2D Mark": 102, - "Samples": 55 - } - ], - "gpu2899": [ - "Radeon R6", - { - "Bus Interface": "Integrated", - "Core Clock(s)": "533 MHz", - "Memory Clock(s)": "800 MHz", - "DirectX": "12", - "OpenGL": "4.1", - "Max TDP": "15 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon(TM) R6 Graphics, AMD Radeon R6 Graphics, AMD Radeon(TM) R6, AMD Radeon R6, AMD Radeon (TM) R6 Graphics", - "Videocard First Benchmarked": "2014-07-03", - "G3DMark/Price": "NA", - "Overall Rank": "1380", - "Last Price Change": "NA", - "Score": 617, - "Average G2D Mark": 138, - "Samples": 1291 - } - ], - "gpu3156": [ - "Radeon R6 + R7 M265DX Dual", - { - "Other names": "AMD Radeon R6 Graphics + R7 M265DX Dual Graphics", - "Videocard First Benchmarked": "2015-03-11", - "G3DMark/Price": "NA", - "Overall Rank": "1449", - "Last Price Change": "NA", - "Score": 571, - "Average G2D Mark": 328, - "Samples": 2 - } - ], - "gpu3615": [ - "Radeon R6 A10-8700P", - { - "Other names": "AMD Radeon R6 Graphics A10-8700P , AMD Radeon(TM) R6 A10-8700P , AMD Radeon(TM) R6 Graphics A10-8700P , AMD Radeon R6 A10-8700P , AMD Radeon (TM) R6 Graphics A10-8700P , A10-8700P", - "Videocard First Benchmarked": "2016-12-09", - "G3DMark/Price": "NA", - "Overall Rank": "1496", - "Last Price Change": "NA", - "Score": 532, - "Average G2D Mark": 136, - "Samples": 293 - } - ], - "gpu4020": [ - "Radeon R6 A10-9600P 4C+6G", - { - "Other names": "AMD Radeon(TM) R6 Graphics A10-9600P RADEON R5, 10 COMPUTE CORES 4C+6G", - "Videocard First Benchmarked": "2018-12-02", - "G3DMark/Price": "NA", - "Overall Rank": "1069", - "Last Price Change": "NA", - "Score": 970, - "Average G2D Mark": 336, - "Samples": 1 - } - ], - "gpu3689": [ - "Radeon R6 A8-8600P", - { - "Other names": "AMD Radeon(TM) R6 A8-8600P , AMD Radeon R6 Graphics A8-8600P , AMD Radeon (TM) R6 Graphics A8-8600P", - "Videocard First Benchmarked": "2017-02-27", - "G3DMark/Price": "NA", - "Overall Rank": "1556", - "Last Price Change": "NA", - "Score": 475, - "Average G2D Mark": 151, - "Samples": 7 - } - ], - "gpu3134": [ - "Radeon R6 M255DX", - { - "Other names": "AMD Radeon R6 M255DX, AMD Radeon(TM) R6 M255DX", - "Videocard First Benchmarked": "2019-09-02", - "G3DMark/Price": "NA", - "Overall Rank": "1394", - "Last Price Change": "NA", - "Score": 605, - "Average G2D Mark": 116, - "Samples": 11 - } - ], - "gpu4067": [ - "Radeon R6 Opteron X3418", - { - "Other names": "AMD Radeon R6 Graphics Opteron X3418", - "Videocard First Benchmarked": "2019-04-09", - "G3DMark/Price": "NA", - "Overall Rank": "1077", - "Last Price Change": "NA", - "Score": 955, - "Average G2D Mark": 399, - "Samples": 3 - } - ], - "gpu3626": [ - "Radeon R6 PRO A10-8700B 4C+6G", - { - "Other names": "AMD Radeon R6 Graphics PRO A10-8700B R6, 10 Compute Cores 4C+6G, AMD Radeon (TM) R6 Graphics PRO A10-8700B R6, 10 Compute Cores 4C+6G", - "Videocard First Benchmarked": "2016-12-22", - "G3DMark/Price": "NA", - "Overall Rank": "1489", - "Last Price Change": "NA", - "Score": 538, - "Average G2D Mark": 146, - "Samples": 53 - } - ], - "gpu4280": [ - "Radeon R6 PRO A10-8700B R6, 10 Compute Cores 4C+6G", - { - "Other names": "AMD Radeon R6 Graphics PRO A10-8700B R6, 10 Compute Cores 4C+6G, AMD Radeon (TM) R6 Graphics PRO A10-8700B R6, 10 Compute Cores 4C+6G", - "Videocard First Benchmarked": "2020-09-14", - "G3DMark/Price": "NA", - "Overall Rank": "1485", - "Last Price Change": "NA", - "Score": 541, - "Average G2D Mark": 136, - "Samples": 24 - } - ], - "gpu3635": [ - "Radeon R6 PRO A8-8600B 4C+6G", - { - "Other names": "AMD Radeon (TM) R6 Graphics PRO A8-8600B R6, 10 Compute Cores 4C+6G, AMD Radeon R6 Graphics PRO A8-8600B R6, 10 Compute Cores 4C+6G, AMD Radeon(TM) R6 Graphics PRO A8-8600B R6, 10 Compute Cores 4C+6G", - "Videocard First Benchmarked": "2016-12-28", - "G3DMark/Price": "NA", - "Overall Rank": "1498", - "Last Price Change": "NA", - "Score": 532, - "Average G2D Mark": 158, - "Samples": 46 - } - ], - "gpu4303": [ - "Radeon R6 PRO A8-8600B R6, 10 Compute Cores 4C+6G", - { - "Other names": "AMD Radeon (TM) R6 Graphics PRO A8-8600B R6, 10 Compute Cores 4C+6G, AMD Radeon R6 Graphics PRO A8-8600B R6, 10 Compute Cores 4C+6G, AMD Radeon(TM) R6 Graphics PRO A8-8600B R6, 10 Compute Cores 4C+6G", - "Videocard First Benchmarked": "2020-10-31", - "G3DMark/Price": "NA", - "Overall Rank": "1415", - "Last Price Change": "NA", - "Score": 590, - "Average G2D Mark": 153, - "Samples": 15 - } - ], - "gpu3073": [ - "Radeon R7 + HD 7700 Dual", - { - "Other names": "AMD Radeon R7 Graphics + HD 7700 Dual Graphics", - "Videocard First Benchmarked": "2014-12-11", - "G3DMark/Price": "NA", - "Overall Rank": "722", - "Last Price Change": "NA", - "Score": 1962, - "Average G2D Mark": 498, - "Samples": 6 - } - ], - "gpu3443": [ - "Radeon R7 + R5 330 Dual", - { - "Other names": "AMD Radeon R7 Graphics + R5 330 Dual Graphics", - "Videocard First Benchmarked": "2016-03-06", - "G3DMark/Price": "NA", - "Overall Rank": "1035", - "Last Price Change": "NA", - "Score": 1028, - "Average G2D Mark": 531, - "Samples": 4 - } - ], - "gpu3756": [ - "Radeon R7 + R5 340 Dual", - { - "Other names": "AMD Radeon R7 Graphics + R5 340 Dual Graphics", - "Videocard First Benchmarked": "2017-05-24", - "G3DMark/Price": "NA", - "Overall Rank": "945", - "Last Price Change": "NA", - "Score": 1235, - "Average G2D Mark": 471, - "Samples": 1 - } - ], - "gpu3702": [ - "Radeon R7 + R5 435 Dual A10-9700 RADEON", - { - "Other names": "AMD Radeon R7 Graphics + R5 435 Dual Graphics A10-9700 RADEON", - "Videocard First Benchmarked": "2017-03-13", - "G3DMark/Price": "NA", - "Overall Rank": "1128", - "Last Price Change": "NA", - "Score": 886, - "Average G2D Mark": 480, - "Samples": 5 - } - ], - "gpu3725": [ - "Radeon R7 + R5 Dual", - { - "Other names": "AMD Radeon R7 Graphics + (TM) R5 Dual Graphics", - "Videocard First Benchmarked": "2017-04-07", - "G3DMark/Price": "NA", - "Overall Rank": "1118", - "Last Price Change": "NA", - "Score": 898, - "Average G2D Mark": 496, - "Samples": 1 - } - ], - "gpu3056": [ - "Radeon R7 + R7 200 Dual", - { - "Other names": "AMD Radeon R7 Graphics + R7 200 Dual Graphics", - "Videocard First Benchmarked": "2014-11-25", - "G3DMark/Price": "NA", - "Overall Rank": "1016", - "Last Price Change": "NA", - "Score": 1077, - "Average G2D Mark": 282, - "Samples": 128 - } - ], - "gpu3200": [ - "Radeon R7 + R7 240 Dual", - { - "Other names": "AMD Radeon R7 Graphics + R7 240 Dual Graphics, AMD Radeon R7 Series + R7 240 Dual Graphics", - "Videocard First Benchmarked": "2015-04-27", - "G3DMark/Price": "NA", - "Overall Rank": "1028", - "Last Price Change": "NA", - "Score": 1045, - "Average G2D Mark": 374, - "Samples": 9 - } - ], - "gpu3526": [ - "Radeon R7 + R7 250 Dual", - { - "Other names": "AMD Radeon R7 Graphics + R7 250 Dual Graphics", - "Videocard First Benchmarked": "2016-06-16", - "G3DMark/Price": "NA", - "Overall Rank": "946", - "Last Price Change": "NA", - "Score": 1232, - "Average G2D Mark": 576, - "Samples": 1 - } - ], - "gpu3618": [ - "Radeon R7 + R7 350 Dual", - { - "Other names": "AMD Radeon R7 Graphics + R7 350 Dual Graphics", - "Videocard First Benchmarked": "2016-12-13", - "G3DMark/Price": "NA", - "Overall Rank": "717", - "Last Price Change": "NA", - "Score": 1982, - "Average G2D Mark": 552, - "Samples": 2 - } - ], - "gpu3603": [ - "Radeon R7 +8G", - { - "Other names": "AMD Radeon R7 +8G", - "Videocard First Benchmarked": "2016-11-15", - "G3DMark/Price": "NA", - "Overall Rank": "964", - "Last Price Change": "NA", - "Score": 1191, - "Average G2D Mark": 460, - "Samples": 1 - } - ], - "gpu2713": [ - "Radeon R7 240", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "730 MHz", - "Memory Clock(s)": "1800,4500 MHz", - "DirectX": "12", - "OpenGL": "4.4", - "Max TDP": "30 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon R7 200 Series, AMD Radeon R7 240, ASUS R7 240 Series, AMD Radeon R7 240", - "Videocard First Benchmarked": "2013-10-26", - "G3DMark/Price": "8.09", - "Overall Rank": "1126", - "Last Price Change": "$109.99 USD (2021-11-20)", - "Score": 890, - "Average G2D Mark": 270, - "Samples": 3417 - } - ], - "gpu2949": [ - "Radeon R7 240 + HD 8570D Dual", - { - "Other names": "AMD Radeon R7 240 + HD 8570D Dual Graphics", - "Videocard First Benchmarked": "2014-09-16", - "G3DMark/Price": "NA", - "Overall Rank": "1103", - "Last Price Change": "NA", - "Score": 918, - "Average G2D Mark": 352, - "Samples": 3 - } - ], - "gpu2814": [ - "Radeon R7 240 + HD 8670D Dual", - { - "Other names": "AMD Radeon R7 240 + HD 8670D Dual Graphics", - "Videocard First Benchmarked": "2014-02-12", - "G3DMark/Price": "NA", - "Overall Rank": "1094", - "Last Price Change": "NA", - "Score": 930, - "Average G2D Mark": 471, - "Samples": 4 - } - ], - "gpu2768": [ - "Radeon R7 250", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "1000 MHz", - "Memory Clock(s)": "1800,4600 MHz", - "DirectX": "12", - "OpenGL": "4.4", - "Max TDP": "75 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon R7 200 Series, ASUS R7 250 Series, AMD Radeon R7 250, AMD Radeon(TM) R7 250", - "Videocard First Benchmarked": "2013-11-18", - "G3DMark/Price": "5.70", - "Overall Rank": "1010", - "Last Price Change": "$189.97 USD (2021-12-17)", - "Score": 1084, - "Average G2D Mark": 290, - "Samples": 2810 - } - ], - "gpu3286": [ - "Radeon R7 250X", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "1000 MHz", - "Memory Clock(s)": "1800 MHz", - "DirectX": "12", - "OpenGL": "4.3", - "Max TDP": "95 W", - "Videocard Category": "Desktop", - "Other names": "ASUS R7 250X Series", - "Videocard First Benchmarked": "2015-08-15", - "G3DMark/Price": "11.70", - "Overall Rank": "650", - "Last Price Change": "$194 USD (2021-11-20)", - "Score": 2269, - "Average G2D Mark": 637, - "Samples": 2 - } - ], - "gpu2903": [ - "Radeon R7 260", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "1024 MB", - "Core Clock(s)": "1000 MHz", - "Memory Clock(s)": "6000 MHz", - "DirectX": "12", - "OpenGL": "4.4", - "Max TDP": "95 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon R7 260", - "Videocard First Benchmarked": "2014-07-06", - "G3DMark/Price": "32.13", - "Overall Rank": "533", - "Last Price Change": "$89.99 USD (2015-01-03)", - "Score": 2892, - "Average G2D Mark": 559, - "Samples": 107 - } - ], - "gpu2701": [ - "Radeon R7 260X", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "1100 MHz", - "Memory Clock(s)": "6500 MHz", - "DirectX": "12", - "OpenGL": "4.4", - "Max TDP": "115 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon R7 200 Series, AMD Radeon R7 260X, ASUS R7 260X Series", - "Videocard First Benchmarked": "2013-10-28", - "G3DMark/Price": "22.68", - "Overall Rank": "511", - "Last Price Change": "$139.99 USD (2021-05-16)", - "Score": 3175, - "Average G2D Mark": 521, - "Samples": 4909 - } - ], - "gpu3543": [ - "Radeon R7 340", - { - "Other names": "AMD Radeon (TM) R7 340, AMD Radeon R7 340, AMD Radeon(TM) R7 340", - "Videocard First Benchmarked": "2016-07-11", - "G3DMark/Price": "NA", - "Overall Rank": "1036", - "Last Price Change": "NA", - "Score": 1027, - "Average G2D Mark": 364, - "Samples": 15 - } - ], - "gpu3233": [ - "Radeon R7 360", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "1050 MHz", - "Memory Clock(s)": "1425 MHz", - "DirectX": "12", - "OpenGL": "4.5", - "Max TDP": "100 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon (TM) R7 360 Series, AMD Radeon(TM) R7 360 Graphics, ASUS R7 360 Series, AMD Radeon(TM) R7 360 Series, AMD Radeon R7 360", - "Videocard First Benchmarked": "2015-06-30", - "G3DMark/Price": "21.02", - "Overall Rank": "520", - "Last Price Change": "$145.99 USD (2021-11-20)", - "Score": 3069, - "Average G2D Mark": 512, - "Samples": 1834 - } - ], - "gpu3471": [ - "Radeon R7 370", - { - "Bus Interface": "PCIe 3.0 x16", - "DirectX": "12", - "OpenGL": "4.4", - "Max TDP": "150 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon (TM) R7 370 Series Graphics, AMD Radeon (TM) R7 370 Series, AMD Radeon R7 370", - "Videocard First Benchmarked": "2016-04-09", - "G3DMark/Price": "NA", - "Overall Rank": "401", - "Last Price Change": "NA", - "Score": 4514, - "Average G2D Mark": 604, - "Samples": 3682 - } - ], - "gpu3751": [ - "Radeon R7 430", - { - "Other names": "AMD Radeon(TM) R7 430, AMD Radeon R7 430", - "Videocard First Benchmarked": "2017-05-12", - "G3DMark/Price": "7.44", - "Overall Rank": "992", - "Last Price Change": "$150.58 USD (2023-08-27)", - "Score": 1120, - "Average G2D Mark": 399, - "Samples": 100 - } - ], - "gpu3588": [ - "Radeon R7 450", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "1050 MHz", - "Memory Clock(s)": "1125 MHz", - "DirectX": "12", - "OpenGL": "4.3", - "Max TDP": "65 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon R7 450, AMD RadeonT R7 450, AMD Radeon (TM) R7 450", - "Videocard First Benchmarked": "2016-10-09", - "G3DMark/Price": "6.49", - "Overall Rank": "729", - "Last Price Change": "$299 USD (2022-03-30)", - "Score": 1939, - "Average G2D Mark": 541, - "Samples": 122 - } - ], - "gpu4054": [ - "Radeon R7 7850A10-7850K", - { - "Other names": "AMD Radeon R7 7850A10-7850K", - "Videocard First Benchmarked": "2019-02-22", - "G3DMark/Price": "NA", - "Overall Rank": "1469", - "Last Price Change": "NA", - "Score": 551, - "Average G2D Mark": 506, - "Samples": 1 - } - ], - "gpu3617": [ - "Radeon R7 A10 Extreme Edition", - { - "Other names": "AMD Radeon R7 Graphics A10 Extreme Edition , AMD Radeon(TM) R7 Graphics A10 Extreme Edition", - "Videocard First Benchmarked": "2016-12-13", - "G3DMark/Price": "NA", - "Overall Rank": "1184", - "Last Price Change": "NA", - "Score": 816, - "Average G2D Mark": 286, - "Samples": 14 - } - ], - "gpu3013": [ - "Radeon R7 A10 PRO-7800B", - { - "Other names": "AMD Radeon R7 A10 PRO-7800B R7, 12 Compute Cores 4C+8G, AMD Radeon R7 A10 PRO-7800B", - "Videocard First Benchmarked": "2014-10-30", - "G3DMark/Price": "NA", - "Overall Rank": "1161", - "Last Price Change": "NA", - "Score": 835, - "Average G2D Mark": 259, - "Samples": 30 - } - ], - "gpu3032": [ - "Radeon R7 A10 PRO-7850B", - { - "Other names": "AMD Radeon R7 A10 PRO-7850B R7, 12 Compute Cores 4C+8G, AMD Radeon R7 A10 PRO-7850B", - "Videocard First Benchmarked": "2014-11-06", - "G3DMark/Price": "NA", - "Overall Rank": "1130", - "Last Price Change": "NA", - "Score": 882, - "Average G2D Mark": 322, - "Samples": 15 - } - ], - "gpu3052": [ - "Radeon R7 A10-7700K", - { - "Other names": "AMD Radeon R7 A10-7700K Radeon R7, 10 Compute Cores 4C+6G, AMD Radeon R7 A10-7700K", - "Videocard First Benchmarked": "2014-11-21", - "G3DMark/Price": "NA", - "Overall Rank": "1205", - "Last Price Change": "NA", - "Score": 784, - "Average G2D Mark": 234, - "Samples": 289 - } - ], - "gpu3029": [ - "Radeon R7 A10-7800", - { - "Other names": "AMD Radeon R7 A10-7800 Radeon R7, 12 Compute Cores 4C+8G, AMD Radeon R7 A10-7800", - "Videocard First Benchmarked": "2014-11-04", - "G3DMark/Price": "NA", - "Overall Rank": "1278", - "Last Price Change": "NA", - "Score": 719, - "Average G2D Mark": 191, - "Samples": 366 - } - ], - "gpu2972": [ - "Radeon R7 A10-7850K", - { - "Bus Interface": "On-Die", - "Max Memory Size": "16384 MB", - "Core Clock(s)": "720 MHz", - "Memory Clock(s)": "1033-2133 MHz", - "DirectX": "11.2", - "OpenGL": "4.3", - "Max TDP": "95 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon R7 A10-7850K , AMD Radeon R7 A10-7850K Radeon R7, 12 Compute Cores 4C+8G", - "Videocard First Benchmarked": "2014-10-08", - "G3DMark/Price": "NA", - "Overall Rank": "1063", - "Last Price Change": "NA", - "Score": 981, - "Average G2D Mark": 287, - "Samples": 714 - } - ], - "gpu3447": [ - "Radeon R7 A10-7860K", - { - "Other names": "AMD Radeon R7 A10-7860K Radeon R7, 12 Compute Cores 4C+8G, AMD Radeon R7 A10-7860K", - "Videocard First Benchmarked": "2016-03-13", - "G3DMark/Price": "NA", - "Overall Rank": "1095", - "Last Price Change": "NA", - "Score": 929, - "Average G2D Mark": 229, - "Samples": 274 - } - ], - "gpu3220": [ - "Radeon R7 A10-7870K", - { - "Other names": "AMD Radeon R7 A10-7870K Radeon R7, 12 Compute Cores 4C+8G, AMD Radeon R7 A10-7870K", - "Videocard First Benchmarked": "2015-06-03", - "G3DMark/Price": "NA", - "Overall Rank": "991", - "Last Price Change": "NA", - "Score": 1121, - "Average G2D Mark": 265, - "Samples": 450 - } - ], - "gpu3468": [ - "Radeon R7 A10-7890K", - { - "Other names": "AMD Radeon R7 A10-7890K Radeon R7, 12 Compute Cores 4C+8G, AMD Radeon R7 A10-7890K", - "Videocard First Benchmarked": "2016-04-06", - "G3DMark/Price": "NA", - "Overall Rank": "1148", - "Last Price Change": "NA", - "Score": 850, - "Average G2D Mark": 240, - "Samples": 147 - } - ], - "gpu3316": [ - "Radeon R7 A10-8750", - { - "Other names": "AMD Radeon R7 A10-8750 Radeon R7, 12 Compute Cores 4C+8G, AMD Radeon R7 A10-8750", - "Videocard First Benchmarked": "2015-09-20", - "G3DMark/Price": "NA", - "Overall Rank": "1152", - "Last Price Change": "NA", - "Score": 844, - "Average G2D Mark": 206, - "Samples": 53 - } - ], - "gpu3504": [ - "Radeon R7 A10-8850", - { - "Other names": "AMD Radeon R7 A10-8850 Radeon R7, 12 Compute Cores 4C+8G, AMD Radeon R7 A10-8850", - "Videocard First Benchmarked": "2017-01-20", - "G3DMark/Price": "NA", - "Overall Rank": "1218", - "Last Price Change": "NA", - "Score": 773, - "Average G2D Mark": 277, - "Samples": 5 - } - ], - "gpu3711": [ - "Radeon R7 A10-9700 RADEON", - { - "Other names": "AMD Radeon R7 Graphics A10-9700 RADEON", - "Videocard First Benchmarked": "2017-03-24", - "G3DMark/Price": "NA", - "Overall Rank": "1102", - "Last Price Change": "NA", - "Score": 921, - "Average G2D Mark": 226, - "Samples": 161 - } - ], - "gpu3877": [ - "Radeon R7 A10-9700E RADEON", - { - "Other names": "AMD Radeon R7 Graphics A10-9700E RADEON", - "Videocard First Benchmarked": "2018-01-08", - "G3DMark/Price": "NA", - "Overall Rank": "997", - "Last Price Change": "NA", - "Score": 1109, - "Average G2D Mark": 300, - "Samples": 9 - } - ], - "gpu3614": [ - "Radeon R7 A12-9700P RADEON", - { - "Other names": "AMD Radeon R7 Graphics A12-9700P RADEON , AMD Radeon(TM) R7 Graphics A12-9700P RADEON", - "Videocard First Benchmarked": "2016-12-08", - "G3DMark/Price": "1.70", - "Overall Rank": "1255", - "Last Price Change": "$435.92 USD (2020-03-16)", - "Score": 741, - "Average G2D Mark": 173, - "Samples": 203 - } - ], - "gpu3781": [ - "Radeon R7 A12-9720P RADEON", - { - "Other names": "AMD Radeon R7 Graphics A12-9720P RADEON , AMD Radeon(TM) R7 Graphics A12-9720P RADEON", - "Videocard First Benchmarked": "2017-07-06", - "G3DMark/Price": "2.01", - "Overall Rank": "1261", - "Last Price Change": "$365.48 USD (2020-03-16)", - "Score": 734, - "Average G2D Mark": 182, - "Samples": 353 - } - ], - "gpu3777": [ - "Radeon R7 A12-9730P RADEON", - { - "Other names": "AMD Radeon(TM) R7 Graphics A12-9730P RADEON , AMD Radeon R7 Graphics A12-9730P RADEON", - "Videocard First Benchmarked": "2017-07-02", - "G3DMark/Price": "NA", - "Overall Rank": "1027", - "Last Price Change": "NA", - "Score": 1047, - "Average G2D Mark": 283, - "Samples": 12 - } - ], - "gpu3680": [ - "Radeon R7 A12-9800 RADEON", - { - "Other names": "AMD Radeon R7 Graphics A12-9800 RADEON", - "Videocard First Benchmarked": "2017-02-14", - "G3DMark/Price": "NA", - "Overall Rank": "995", - "Last Price Change": "NA", - "Score": 1118, - "Average G2D Mark": 294, - "Samples": 72 - } - ], - "gpu3816": [ - "Radeon R7 A12-9800E RADEON", - { - "Other names": "AMD Radeon R7 Graphics A12-9800E RADEON", - "Videocard First Benchmarked": "2017-09-11", - "G3DMark/Price": "6.56", - "Overall Rank": "1106", - "Last Price Change": "$139.19 USD (2020-03-16)", - "Score": 913, - "Average G2D Mark": 246, - "Samples": 20 - } - ], - "gpu3069": [ - "Radeon R7 A265", - { - "Other names": "AMD Radeon R7 A265", - "Videocard First Benchmarked": "2015-06-03", - "G3DMark/Price": "NA", - "Overall Rank": "1055", - "Last Price Change": "NA", - "Score": 994, - "Average G2D Mark": 468, - "Samples": 5 - } - ], - "gpu3248": [ - "Radeon R7 A360", - { - "Other names": "AMD Radeon R7 A360, AMD Radeon(TM) R7 A360", - "Videocard First Benchmarked": "2017-03-24", - "G3DMark/Price": "NA", - "Overall Rank": "1376", - "Last Price Change": "NA", - "Score": 620, - "Average G2D Mark": 235, - "Samples": 6 - } - ], - "gpu3438": [ - "Radeon R7 A365", - { - "Other names": "AMD Radeon R7 A365", - "Videocard First Benchmarked": "2016-02-27", - "G3DMark/Price": "NA", - "Overall Rank": "1210", - "Last Price Change": "NA", - "Score": 781, - "Average G2D Mark": 763, - "Samples": 1 - } - ], - "gpu3482": [ - "Radeon R7 A370", - { - "Other names": "AMD Radeon R7 A370", - "Videocard First Benchmarked": "2016-06-01", - "G3DMark/Price": "NA", - "Overall Rank": "930", - "Last Price Change": "NA", - "Score": 1281, - "Average G2D Mark": 742, - "Samples": 2 - } - ], - "gpu3048": [ - "Radeon R7 A8 PRO-7600B", - { - "Other names": "AMD Radeon R7 A8 PRO-7600B R7, 10 Compute Cores 4C+6G, AMD Radeon R7 A8 PRO-7600B", - "Videocard First Benchmarked": "2014-11-17", - "G3DMark/Price": "NA", - "Overall Rank": "1320", - "Last Price Change": "NA", - "Score": 666, - "Average G2D Mark": 179, - "Samples": 94 - } - ], - "gpu3681": [ - "Radeon R7 A8-7500", - { - "Other names": "AMD Radeon R7 A8-7500", - "Videocard First Benchmarked": "2017-02-17", - "G3DMark/Price": "NA", - "Overall Rank": "1111", - "Last Price Change": "NA", - "Score": 908, - "Average G2D Mark": 316, - "Samples": 5 - } - ], - "gpu3745": [ - "Radeon R7 A8-7500 4C+6G", - { - "Other names": "AMD Radeon R7 A8-7500 Radeon R7, 10 Compute Cores 4C+6G", - "Videocard First Benchmarked": "2017-04-30", - "G3DMark/Price": "NA", - "Overall Rank": "1146", - "Last Price Change": "NA", - "Score": 853, - "Average G2D Mark": 390, - "Samples": 3 - } - ], - "gpu3007": [ - "Radeon R7 A8-7600", - { - "Other names": "AMD Radeon R7 A8-7600 Radeon R7, 10 Compute Cores 4C+6G, AMD Radeon R7 A8-7600", - "Videocard First Benchmarked": "2014-10-29", - "G3DMark/Price": "NA", - "Overall Rank": "1204", - "Last Price Change": "NA", - "Score": 785, - "Average G2D Mark": 214, - "Samples": 963 - } - ], - "gpu3159": [ - "Radeon R7 A8-7650K", - { - "Other names": "AMD Radeon R7 A8-7650K Radeon R7, 10 Compute Cores 4C+6G, AMD Radeon R7 A8-7650K", - "Videocard First Benchmarked": "2015-03-17", - "G3DMark/Price": "NA", - "Overall Rank": "1263", - "Last Price Change": "NA", - "Score": 732, - "Average G2D Mark": 219, - "Samples": 284 - } - ], - "gpu3302": [ - "Radeon R7 A8-7670K", - { - "Other names": "AMD Radeon R7 A8-7670K Radeon R7, 10 Compute Cores 4C+6G, AMD Radeon R7 A8-7670K", - "Videocard First Benchmarked": "2015-09-03", - "G3DMark/Price": "NA", - "Overall Rank": "1150", - "Last Price Change": "NA", - "Score": 849, - "Average G2D Mark": 297, - "Samples": 68 - } - ], - "gpu4060": [ - "Radeon R7 A8-7680", - { - "Other names": "AMD Radeon R7 Graphics A8-7680", - "Videocard First Benchmarked": "2019-03-11", - "G3DMark/Price": "NA", - "Overall Rank": "1178", - "Last Price Change": "NA", - "Score": 821, - "Average G2D Mark": 188, - "Samples": 32 - } - ], - "gpu3410": [ - "Radeon R7 A8-8650", - { - "Other names": "AMD Radeon R7 A8-8650 Radeon R7, 10 Compute Cores 4C+6G, AMD Radeon R7 A8-8650", - "Videocard First Benchmarked": "2016-01-06", - "G3DMark/Price": "NA", - "Overall Rank": "1107", - "Last Price Change": "NA", - "Score": 913, - "Average G2D Mark": 499, - "Samples": 52 - } - ], - "gpu3733": [ - "Radeon R7 A8-9600 RADEON", - { - "Other names": "AMD Radeon R7 Graphics A8-9600 RADEON", - "Videocard First Benchmarked": "2017-04-21", - "G3DMark/Price": "NA", - "Overall Rank": "1164", - "Last Price Change": "NA", - "Score": 833, - "Average G2D Mark": 197, - "Samples": 172 - } - ], - "gpu3631": [ - "Radeon R7 FX-8800P", - { - "Other names": "AMD Radeon(TM) R7 Graphics FX-8800P , AMD Radeon R7 Graphics FX-8800P , AMD Radeon(TM) R7 FX-8800P , AMD Radeon R7 FX-8800P", - "Videocard First Benchmarked": "2016-12-27", - "G3DMark/Price": "NA", - "Overall Rank": "1155", - "Last Price Change": "NA", - "Score": 840, - "Average G2D Mark": 193, - "Samples": 125 - } - ], - "gpu3623": [ - "Radeon R7 FX-9800P RADEON", - { - "Other names": "AMD Radeon R7 Graphics FX-9800P RADEON , AMD Radeon(TM) R7 Graphics FX-9800P RADEON", - "Videocard First Benchmarked": "2016-12-19", - "G3DMark/Price": "1.40", - "Overall Rank": "1256", - "Last Price Change": "$530 USD (2018-12-02)", - "Score": 740, - "Average G2D Mark": 193, - "Samples": 93 - } - ], - "gpu3632": [ - "Radeon R7 FX-9830P RADEON", - { - "Other names": "AMD Radeon R7 Graphics FX-9830P RADEON , AMD Radeon(TM) R7 Graphics FX-9830P RADEON", - "Videocard First Benchmarked": "2016-12-27", - "G3DMark/Price": "NA", - "Overall Rank": "878", - "Last Price Change": "NA", - "Score": 1476, - "Average G2D Mark": 228, - "Samples": 94 - } - ], - "gpu3254": [ - "Radeon R7 G", - { - "Other names": "AMD Radeon R7 G", - "Videocard First Benchmarked": "2015-09-05", - "G3DMark/Price": "NA", - "Overall Rank": "1136", - "Last Price Change": "NA", - "Score": 870, - "Average G2D Mark": 532, - "Samples": 1 - } - ], - "gpu3030": [ - "Radeon R7 M260", - { - "Bus Interface": "PCIe 3.0 x8", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "Unknown MHz", - "Memory Clock(s)": "1000 MHz", - "DirectX": "11.2", - "OpenGL": "4.3", - "Videocard Category": "Mobile", - "Other names": "AMD Radeon (TM) R7 M260, AMD Radeon R7 M260, AMD Radeon R7 M260 Series, AMD Radeon. R7 M260, AMD Radeon R7 M260 (Engineering Sample - WDDM v2.0)", - "Videocard First Benchmarked": "2014-11-25", - "G3DMark/Price": "0.62", - "Overall Rank": "1538", - "Last Price Change": "$799 USD (2016-05-31)", - "Score": 493, - "Average G2D Mark": 120, - "Samples": 266 - } - ], - "gpu3042": [ - "Radeon R7 M260DX", - { - "Other names": "AMD Radeon R7 M260DX, AMD Radeon(TM) R7 M260DX", - "Videocard First Benchmarked": "2019-05-07", - "G3DMark/Price": "NA", - "Overall Rank": "1182", - "Last Price Change": "NA", - "Score": 817, - "Average G2D Mark": 195, - "Samples": 11 - } - ], - "gpu3149": [ - "Radeon R7 M260X", - { - "Bus Interface": "PCIe 3.0 x8", - "Max Memory Size": "4096 MB", - "Memory Clock(s)": "1000 MHz", - "DirectX": "11.2", - "OpenGL": "4.3", - "Videocard Category": "Mobile", - "Other names": "AMD Radeon R7 M260X", - "Videocard First Benchmarked": "2015-03-03", - "G3DMark/Price": "NA", - "Overall Rank": "1048", - "Last Price Change": "NA", - "Score": 1009, - "Average G2D Mark": 170, - "Samples": 44 - } - ], - "gpu2994": [ - "Radeon R7 M265", - { - "Bus Interface": "PCIe 3.0 x8", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "725 MHz", - "Memory Clock(s)": "1000 MHz", - "DirectX": "11.2", - "OpenGL": "4.3", - "Videocard Category": "Mobile", - "Other names": "AMD Radeon R7 M265, AMD Radeon R7 M265 Series, AMD Radeon(TM) R7 M265", - "Videocard First Benchmarked": "2014-11-24", - "G3DMark/Price": "NA", - "Overall Rank": "1480", - "Last Price Change": "NA", - "Score": 543, - "Average G2D Mark": 141, - "Samples": 101 - } - ], - "gpu3057": [ - "Radeon R7 M265DX", - { - "Other names": "AMD Radeon(TM) R7 M265DX, AMD Radeon R7 M265DX", - "Videocard First Benchmarked": "2020-05-08", - "G3DMark/Price": "NA", - "Overall Rank": "1531", - "Last Price Change": "NA", - "Score": 499, - "Average G2D Mark": 138, - "Samples": 3 - } - ], - "gpu3074": [ - "Radeon R7 M270", - { - "Other names": "AMD Radeon R7 M270", - "Videocard First Benchmarked": "2015-01-22", - "G3DMark/Price": "NA", - "Overall Rank": "1226", - "Last Price Change": "NA", - "Score": 767, - "Average G2D Mark": 153, - "Samples": 35 - } - ], - "gpu3376": [ - "Radeon R7 M340", - { - "Videocard Category": "Mobile", - "Other names": "AMD Radeon R7 M340, AMD Radeon (TM) R7 M340", - "Videocard First Benchmarked": "2016-04-21", - "G3DMark/Price": "NA", - "Overall Rank": "1325", - "Last Price Change": "NA", - "Score": 663, - "Average G2D Mark": 155, - "Samples": 267 - } - ], - "gpu3567": [ - "Radeon R7 M350", - { - "Other names": "AMD Radeon (TM) R7 M350", - "Videocard First Benchmarked": "2016-08-25", - "G3DMark/Price": "NA", - "Overall Rank": "1009", - "Last Price Change": "NA", - "Score": 1085, - "Average G2D Mark": 225, - "Samples": 24 - } - ], - "gpu3228": [ - "Radeon R7 M360", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "4096 MB", - "Memory Clock(s)": "1000 MHz", - "DirectX": "12.0", - "OpenGL": "4.3", - "Videocard Category": "Mobile", - "Other names": "AMD Radeon (TM) R7 M360, AMD Radeon R7 M360, AMD Radeon(TM) R7 M360", - "Videocard First Benchmarked": "2015-09-11", - "G3DMark/Price": "NA", - "Overall Rank": "1446", - "Last Price Change": "NA", - "Score": 571, - "Average G2D Mark": 148, - "Samples": 191 - } - ], - "gpu3493": [ - "Radeon R7 M365X", - { - "Other names": "AMD Radeon R7 M365X", - "Videocard First Benchmarked": "2016-12-31", - "G3DMark/Price": "NA", - "Overall Rank": "1224", - "Last Price Change": "NA", - "Score": 768, - "Average G2D Mark": 177, - "Samples": 20 - } - ], - "gpu3416": [ - "Radeon R7 M370", - { - "Videocard Category": "Mobile", - "Other names": "AMD Radeon (TM) R7 M370, AMD Radeon R7 M370", - "Videocard First Benchmarked": "2016-01-15", - "G3DMark/Price": "NA", - "Overall Rank": "893", - "Last Price Change": "NA", - "Score": 1418, - "Average G2D Mark": 676, - "Samples": 15 - } - ], - "gpu3620": [ - "Radeon R7 M380", - { - "Other names": "AMD Radeon (TM) R7 M380, AMD Radeon R7 M380", - "Videocard First Benchmarked": "2017-05-11", - "G3DMark/Price": "NA", - "Overall Rank": "806", - "Last Price Change": "NA", - "Score": 1669, - "Average G2D Mark": 534, - "Samples": 2 - } - ], - "gpu3562": [ - "Radeon R7 M440", - { - "Other names": "AMD Radeon(TM) R7 M440, AMD Radeon R7 M440, Radeon (TM) R7 M440", - "Videocard First Benchmarked": "2016-08-24", - "G3DMark/Price": "NA", - "Overall Rank": "1117", - "Last Price Change": "NA", - "Score": 899, - "Average G2D Mark": 175, - "Samples": 226 - } - ], - "gpu3598": [ - "Radeon R7 M445", - { - "Other names": "Radeon (TM) R7 M445, Radeon(TM) R7 M445", - "Videocard First Benchmarked": "2017-01-01", - "G3DMark/Price": "1.27", - "Overall Rank": "1086", - "Last Price Change": "$744 USD (2020-03-10)", - "Score": 944, - "Average G2D Mark": 176, - "Samples": 87 - } - ], - "gpu3551": [ - "Radeon R7 M460", - { - "Other names": "AMD Radeon (TM) R7 M460, AMD Radeon R7 M460", - "Videocard First Benchmarked": "2016-12-21", - "G3DMark/Price": "NA", - "Overall Rank": "993", - "Last Price Change": "NA", - "Score": 1120, - "Average G2D Mark": 207, - "Samples": 72 - } - ], - "gpu3671": [ - "Radeon R7 M465", - { - "Other names": "Radeon(TM) R7 M465, AMD Radeon(TM) R7 M465", - "Videocard First Benchmarked": "2017-05-10", - "G3DMark/Price": "NA", - "Overall Rank": "980", - "Last Price Change": "NA", - "Score": 1157, - "Average G2D Mark": 232, - "Samples": 12 - } - ], - "gpu3760": [ - "Radeon R7 M465X", - { - "Other names": "AMD Radeon(TM) R7 M465X", - "Videocard First Benchmarked": "2018-05-19", - "G3DMark/Price": "NA", - "Overall Rank": "822", - "Last Price Change": "NA", - "Score": 1624, - "Average G2D Mark": 440, - "Samples": 6 - } - ], - "gpu3823": [ - "Radeon R7 Opteron X3421", - { - "Other names": "AMD Radeon R7 Graphics Opteron X3421", - "Videocard First Benchmarked": "2017-09-23", - "G3DMark/Price": "NA", - "Overall Rank": "973", - "Last Price Change": "NA", - "Score": 1169, - "Average G2D Mark": 328, - "Samples": 16 - } - ], - "gpu3362": [ - "Radeon R7 PRO A10-8750B", - { - "Other names": "AMD Radeon R7 PRO A10-8750B R7, 12 Compute Cores 4C+8G, AMD Radeon R7 PRO A10-8750B", - "Videocard First Benchmarked": "2015-11-15", - "G3DMark/Price": "NA", - "Overall Rank": "1225", - "Last Price Change": "NA", - "Score": 768, - "Average G2D Mark": 207, - "Samples": 27 - } - ], - "gpu3664": [ - "Radeon R7 PRO A10-8770", - { - "Other names": "AMD Radeon R7 Graphics PRO A10-8770", - "Videocard First Benchmarked": "2017-01-30", - "G3DMark/Price": "NA", - "Overall Rank": "1116", - "Last Price Change": "NA", - "Score": 900, - "Average G2D Mark": 233, - "Samples": 21 - } - ], - "gpu3665": [ - "Radeon R7 PRO A10-8770E", - { - "Other names": "AMD Radeon R7 Graphics PRO A10-8770E", - "Videocard First Benchmarked": "2017-01-30", - "G3DMark/Price": "NA", - "Overall Rank": "1172", - "Last Price Change": "NA", - "Score": 827, - "Average G2D Mark": 205, - "Samples": 64 - } - ], - "gpu3529": [ - "Radeon R7 PRO A10-8850B", - { - "Other names": "AMD Radeon R7 PRO A10-8850B R7, 12 Compute Cores 4C+8G, AMD Radeon R7 PRO A10-8850B", - "Videocard First Benchmarked": "2016-06-21", - "G3DMark/Price": "NA", - "Overall Rank": "1085", - "Last Price Change": "NA", - "Score": 945, - "Average G2D Mark": 552, - "Samples": 23 - } - ], - "gpu3678": [ - "Radeon R7 PRO A10-9700", - { - "Other names": "AMD Radeon R7 Graphics PRO A10-9700", - "Videocard First Benchmarked": "2017-02-14", - "G3DMark/Price": "NA", - "Overall Rank": "1190", - "Last Price Change": "NA", - "Score": 806, - "Average G2D Mark": 198, - "Samples": 27 - } - ], - "gpu3882": [ - "Radeon R7 PRO A10-9700B", - { - "Other names": "AMD Radeon(TM) R7 Graphics PRO A10-9700B , AMD Radeon R7 Graphics PRO A10-9700B", - "Videocard First Benchmarked": "2018-01-17", - "G3DMark/Price": "NA", - "Overall Rank": "1318", - "Last Price Change": "NA", - "Score": 670, - "Average G2D Mark": 205, - "Samples": 26 - } - ], - "gpu3679": [ - "Radeon R7 PRO A10-9700E", - { - "Other names": "AMD Radeon R7 Graphics PRO A10-9700E", - "Videocard First Benchmarked": "2017-02-14", - "G3DMark/Price": "1.83", - "Overall Rank": "1071", - "Last Price Change": "$529 USD (2020-03-14)", - "Score": 967, - "Average G2D Mark": 228, - "Samples": 41 - } - ], - "gpu3622": [ - "Radeon R7 PRO A12-8800B", - { - "Other names": "AMD Radeon (TM) R7 Graphics PRO A12-8800B , AMD Radeon R7 Graphics PRO A12-8800B , AMD Radeon(TM) R7 Graphics PRO A12-8800B", - "Videocard First Benchmarked": "2016-12-15", - "G3DMark/Price": "NA", - "Overall Rank": "1403", - "Last Price Change": "NA", - "Score": 597, - "Average G2D Mark": 187, - "Samples": 22 - } - ], - "gpu3819": [ - "Radeon R7 PRO A12-8830B", - { - "Other names": "AMD Radeon(TM) R7 Graphics PRO A12-8830B , AMD Radeon R7 Graphics PRO A12-8830B", - "Videocard First Benchmarked": "2017-09-17", - "G3DMark/Price": "NA", - "Overall Rank": "1409", - "Last Price Change": "NA", - "Score": 594, - "Average G2D Mark": 165, - "Samples": 25 - } - ], - "gpu3657": [ - "Radeon R7 PRO A12-8870", - { - "Other names": "AMD Radeon R7 Graphics PRO A12-8870", - "Videocard First Benchmarked": "2017-01-26", - "G3DMark/Price": "NA", - "Overall Rank": "1112", - "Last Price Change": "NA", - "Score": 905, - "Average G2D Mark": 253, - "Samples": 21 - } - ], - "gpu3627": [ - "Radeon R7 PRO A12-8870E", - { - "Other names": "AMD Radeon R7 Graphics PRO A12-8870E", - "Videocard First Benchmarked": "2016-12-22", - "G3DMark/Price": "NA", - "Overall Rank": "1082", - "Last Price Change": "NA", - "Score": 946, - "Average G2D Mark": 243, - "Samples": 24 - } - ], - "gpu3662": [ - "Radeon R7 PRO A12-9800", - { - "Other names": "AMD Radeon R7 Graphics PRO A12-9800", - "Videocard First Benchmarked": "2017-01-29", - "G3DMark/Price": "NA", - "Overall Rank": "1132", - "Last Price Change": "NA", - "Score": 877, - "Average G2D Mark": 246, - "Samples": 21 - } - ], - "gpu3645": [ - "Radeon R7 PRO A12-9800B", - { - "Other names": "AMD Radeon(TM) R7 Graphics PRO A12-9800B , AMD Radeon R7 Graphics PRO A12-9800B", - "Videocard First Benchmarked": "2017-01-11", - "G3DMark/Price": "NA", - "Overall Rank": "1293", - "Last Price Change": "NA", - "Score": 702, - "Average G2D Mark": 189, - "Samples": 52 - } - ], - "gpu3663": [ - "Radeon R7 PRO A12-9800E", - { - "Other names": "AMD Radeon R7 Graphics PRO A12-9800E", - "Videocard First Benchmarked": "2017-01-30", - "G3DMark/Price": "NA", - "Overall Rank": "1087", - "Last Price Change": "NA", - "Score": 943, - "Average G2D Mark": 245, - "Samples": 27 - } - ], - "gpu4072": [ - "Radeon R7 PRO A6-9500 2C+6G", - { - "Other names": "AMD Radeon R7 Graphics PRO A6-9500 R5, 8 COMPUTE CORES 2C+6G", - "Videocard First Benchmarked": "2019-04-21", - "G3DMark/Price": "NA", - "Overall Rank": "1209", - "Last Price Change": "NA", - "Score": 781, - "Average G2D Mark": 439, - "Samples": 6 - } - ], - "gpu3382": [ - "Radeon R7 PRO A8-8650B", - { - "Other names": "AMD Radeon R7 PRO A8-8650B R7, 10 Compute Cores 4C+6G, AMD Radeon R7 PRO A8-8650B", - "Videocard First Benchmarked": "2015-12-08", - "G3DMark/Price": "NA", - "Overall Rank": "1266", - "Last Price Change": "NA", - "Score": 729, - "Average G2D Mark": 201, - "Samples": 71 - } - ], - "gpu3806": [ - "Radeon R7 PRO A8-8670E", - { - "Other names": "AMD Radeon R7 Graphics PRO A8-8670E", - "Videocard First Benchmarked": "2017-08-29", - "G3DMark/Price": "NA", - "Overall Rank": "919", - "Last Price Change": "NA", - "Score": 1310, - "Average G2D Mark": 442, - "Samples": 1 - } - ], - "gpu3613": [ - "Radeon R7 PRO A8-9600", - { - "Other names": "AMD Radeon R7 Graphics PRO A8-9600", - "Videocard First Benchmarked": "2016-12-08", - "G3DMark/Price": "NA", - "Overall Rank": "1134", - "Last Price Change": "NA", - "Score": 874, - "Average G2D Mark": 257, - "Samples": 18 - } - ], - "gpu3988": [ - "Radeon R7E", - { - "Other names": "AMD Radeon R7E Graphics", - "Videocard First Benchmarked": "2018-09-18", - "G3DMark/Price": "NA", - "Overall Rank": "1455", - "Last Price Change": "NA", - "Score": 565, - "Average G2D Mark": 159, - "Samples": 2 - } - ], - "gpu3238": [ - "Radeon R8 M365DX", - { - "Other names": "AMD Radeon R8 M365DX, AMD Radeon(TM) R8 M365DX", - "Videocard First Benchmarked": "2019-06-22", - "G3DMark/Price": "NA", - "Overall Rank": "1416", - "Last Price Change": "NA", - "Score": 590, - "Average G2D Mark": 211, - "Samples": 4 - } - ], - "gpu3516": [ - "Radeon R8 M445DX", - { - "Other names": "AMD Radeon(TM) R8 M445DX, AMD Radeon (TM) R8 M445DX, AMD Radeon(TM) R8 M445DX Graphics", - "Videocard First Benchmarked": "2019-04-21", - "G3DMark/Price": "NA", - "Overall Rank": "1201", - "Last Price Change": "NA", - "Score": 796, - "Average G2D Mark": 178, - "Samples": 29 - } - ], - "gpu3814": [ - "Radeon R8 M535DX", - { - "Other names": "AMD Radeon R8 M535DX, AMD Radeon(TM) R8 M535DX", - "Videocard First Benchmarked": "2019-04-10", - "G3DMark/Price": "NA", - "Overall Rank": "1317", - "Last Price Change": "NA", - "Score": 670, - "Average G2D Mark": 182, - "Samples": 9 - } - ], - "gpu2888": [ - "Radeon R9 255", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "900 MHz", - "DirectX": "12.0", - "OpenGL": "4.4", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon R9 255, AMD Radeon (TM) R9 255", - "Videocard First Benchmarked": "2014-06-14", - "G3DMark/Price": "4.23", - "Overall Rank": "879", - "Last Price Change": "$344.16 USD (2019-04-04)", - "Score": 1457, - "Average G2D Mark": 394, - "Samples": 97 - } - ], - "gpu3496": [ - "Radeon R9 260", - { - "Other names": "AMD Radeon R9 260", - "Videocard First Benchmarked": "2016-05-07", - "G3DMark/Price": "NA", - "Overall Rank": "509", - "Last Price Change": "NA", - "Score": 3182, - "Average G2D Mark": 586, - "Samples": 6 - } - ], - "gpu3550": [ - "Radeon R9 270", - { - "Other names": "AMD Radeon(TM) R9 270, AMD Radeon R9 270", - "Videocard First Benchmarked": "2018-11-12", - "G3DMark/Price": "NA", - "Overall Rank": "416", - "Last Price Change": "NA", - "Score": 4306, - "Average G2D Mark": 567, - "Samples": 11 - } - ], - "gpu2766": [ - "Radeon R9 270 / R7 370", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "900,975 MHz", - "Memory Clock(s)": "1400 MHz", - "DirectX": "12", - "OpenGL": "4.4", - "Max TDP": "150 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon R9 200 Series, ASUS R9 270 Series, AMD Radeon R9 270, AMD Radeon(TM) R9 270, AMD Radeon R9 270 / R7 370", - "Videocard First Benchmarked": "2013-12-02", - "G3DMark/Price": "19.98", - "Overall Rank": "419", - "Last Price Change": "$213.16 USD (2022-04-10)", - "Score": 4260, - "Average G2D Mark": 645, - "Samples": 4752 - } - ], - "gpu2702": [ - "Radeon R9 270X", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "1000 MHz", - "Memory Clock(s)": "5600 MHz", - "DirectX": "12", - "OpenGL": "4.4", - "Max TDP": "180 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon R9 200 Series, ASUS R9 270X Series, AMD Radeon R9 270X", - "Videocard First Benchmarked": "2013-10-17", - "G3DMark/Price": "15.03", - "Overall Rank": "372", - "Last Price Change": "$326.5 USD (2022-04-15)", - "Score": 4908, - "Average G2D Mark": 608, - "Samples": 10563 - } - ], - "gpu3465": [ - "Radeon R9 280", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "3072 MB", - "Core Clock(s)": "827 MHz", - "Memory Clock(s)": "1250 MHz", - "DirectX": "12.0", - "OpenGL": "4.5", - "Max TDP": "250 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon R9 280", - "Videocard First Benchmarked": "2016-04-01", - "G3DMark/Price": "NA", - "Overall Rank": "318", - "Last Price Change": "NA", - "Score": 5580, - "Average G2D Mark": 666, - "Samples": 3466 - } - ], - "gpu3466": [ - "Radeon R9 280X", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "3072 MB", - "Core Clock(s)": "850 MHz", - "Memory Clock(s)": "1500 MHz", - "DirectX": "12.0", - "OpenGL": "4.5", - "Max TDP": "250 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon R9 280X", - "Videocard First Benchmarked": "2016-04-02", - "G3DMark/Price": "NA", - "Overall Rank": "296", - "Last Price Change": "NA", - "Score": 6228, - "Average G2D Mark": 692, - "Samples": 5000 - } - ], - "gpu3116": [ - "Radeon R9 285 / 380", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "918 MHz", - "DirectX": "12.0", - "OpenGL": "4.4", - "Max TDP": "190 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon R9 285, AMD Radeon R9 285 / 380, AMD Radeon (TM) R9 380 Series", - "Videocard First Benchmarked": "2015-01-24", - "G3DMark/Price": "11.44", - "Overall Rank": "322", - "Last Price Change": "$485 USD (2022-04-10)", - "Score": 5550, - "Average G2D Mark": 655, - "Samples": 1841 - } - ], - "gpu4259": [ - "Radeon R9 290", - { - "Other names": "AMD Radeon R9 290", - "Videocard First Benchmarked": "2020-09-03", - "G3DMark/Price": "NA", - "Overall Rank": "226", - "Last Price Change": "NA", - "Score": 8353, - "Average G2D Mark": 781, - "Samples": 495 - } - ], - "gpu2719": [ - "Radeon R9 290 / 390", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "947 MHz", - "Memory Clock(s)": "5000 MHz", - "DirectX": "12", - "OpenGL": "4.4", - "Max TDP": "275 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon R9 290 Series, ASUS R9 290 Series, AMD Radeon R9 200 Series, AMD Radeon R9 290, AMD Radeon R9 290 / 390, ASUS R9 390 Series, AMD Radeon (TM) R9 390 Series", - "Videocard First Benchmarked": "2013-11-09", - "G3DMark/Price": "21.45", - "Overall Rank": "231", - "Last Price Change": "$380 USD (2022-03-30)", - "Score": 8150, - "Average G2D Mark": 695, - "Samples": 8447 - } - ], - "gpu4263": [ - "Radeon R9 290X", - { - "Other names": "AMD Radeon R9 290X", - "Videocard First Benchmarked": "2020-09-05", - "G3DMark/Price": "NA", - "Overall Rank": "217", - "Last Price Change": "NA", - "Score": 8659, - "Average G2D Mark": 771, - "Samples": 342 - } - ], - "gpu2697": [ - "Radeon R9 290X / 390X", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "1000 MHz", - "Memory Clock(s)": "5000 MHz", - "DirectX": "12", - "OpenGL": "4.4", - "Max TDP": "290 W", - "Videocard Category": "Desktop", - "Other names": "ASUS R9 290X Series, AMD Radeon R9 200 Series, AMD Radeon R9 290X, AMD Radeon R9 290X / 390X, AMD Radeon (TM) R9 390 Series", - "Videocard First Benchmarked": "2013-10-25", - "G3DMark/Price": "26.22", - "Overall Rank": "223", - "Last Price Change": "$319.99 USD (2022-03-30)", - "Score": 8389, - "Average G2D Mark": 699, - "Samples": 4607 - } - ], - "gpu2878": [ - "Radeon R9 295X2", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "8192 MB", - "Core Clock(s)": "1018 MHz", - "Memory Clock(s)": "5000 MHz", - "DirectX": "12", - "OpenGL": "4.4", - "Max TDP": "500 W", - "Videocard Category": "Desktop", - "Other names": "ASUS R9 295X2 Series, AMD Radeon R9 295X2", - "Videocard First Benchmarked": "2014-05-25", - "G3DMark/Price": "17.31", - "Overall Rank": "219", - "Last Price Change": "$499.1 USD (2020-03-10)", - "Score": 8638, - "Average G2D Mark": 785, - "Samples": 531 - } - ], - "gpu3589": [ - "Radeon R9 350", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "925 MHz", - "Memory Clock(s)": "1125 MHz", - "DirectX": "12", - "OpenGL": "4.3", - "Max TDP": "60 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon (TM) R9 350", - "Videocard First Benchmarked": "2016-10-11", - "G3DMark/Price": "6.75", - "Overall Rank": "702", - "Last Price Change": "$299 USD (2021-05-13)", - "Score": 2019, - "Average G2D Mark": 539, - "Samples": 26 - } - ], - "gpu3327": [ - "Radeon R9 360", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "2048 MB", - "Core Clock(s)": "1000 MHz", - "DirectX": "12.0", - "OpenGL": "4.4", - "Max TDP": "85 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon R9 360, AMD Radeon (TM) R9 360", - "Videocard First Benchmarked": "2015-10-07", - "G3DMark/Price": "22.64", - "Overall Rank": "522", - "Last Price Change": "$133.89 USD (2021-09-09)", - "Score": 3032, - "Average G2D Mark": 460, - "Samples": 23 - } - ], - "gpu3469": [ - "Radeon R9 370", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "950 MHz", - "Memory Clock(s)": "1150 MHz", - "DirectX": "12.0", - "OpenGL": "4.5", - "Max TDP": "150 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon (TM) R9 370", - "Videocard First Benchmarked": "2016-04-08", - "G3DMark/Price": "29.51", - "Overall Rank": "386", - "Last Price Change": "$159.99 USD (2021-12-24)", - "Score": 4722, - "Average G2D Mark": 781, - "Samples": 3 - } - ], - "gpu3460": [ - "Radeon R9 380", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "970 MHz", - "Memory Clock(s)": "1375 MHz", - "DirectX": "12.0", - "OpenGL": "4.6", - "Max TDP": "190 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon R9 380, AMD Radeon (TM) R9 380, ASUS R9 380 Series", - "Videocard First Benchmarked": "2016-03-30", - "G3DMark/Price": "68.81", - "Overall Rank": "298", - "Last Price Change": "$89.99 USD (2020-03-16)", - "Score": 6192, - "Average G2D Mark": 658, - "Samples": 3553 - } - ], - "gpu3266": [ - "Radeon R9 380X", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "970 MHz", - "DirectX": "12.0", - "OpenGL": "4.5", - "Max TDP": "190 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon (TM) R9 380 Series, AMD Radeon R9 380X, ASUS R9 380X Series", - "Videocard First Benchmarked": "2015-07-24", - "G3DMark/Price": "17.80", - "Overall Rank": "295", - "Last Price Change": "$349.99 USD (2021-12-24)", - "Score": 6229, - "Average G2D Mark": 665, - "Samples": 1109 - } - ], - "gpu3464": [ - "Radeon R9 390", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "8192 MB", - "Core Clock(s)": "1000 MHz", - "Memory Clock(s)": "1250 MHz", - "DirectX": "12.0", - "OpenGL": "4.5", - "Max TDP": "275 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon R9 390", - "Videocard First Benchmarked": "2016-03-31", - "G3DMark/Price": "NA", - "Overall Rank": "211", - "Last Price Change": "NA", - "Score": 8983, - "Average G2D Mark": 801, - "Samples": 3061 - } - ], - "gpu3467": [ - "Radeon R9 390X", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "8192 MB", - "Core Clock(s)": "1050 MHz", - "Memory Clock(s)": "1500 MHz", - "DirectX": "12.0", - "OpenGL": "4.5", - "Max TDP": "275 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon R9 390X, ASUS R9 390X Series", - "Videocard First Benchmarked": "2016-04-05", - "G3DMark/Price": "NA", - "Overall Rank": "196", - "Last Price Change": "NA", - "Score": 9441, - "Average G2D Mark": 816, - "Samples": 1236 - } - ], - "gpu3256": [ - "Radeon R9 Fury", - { - "Other names": "AMD Radeon R9 Fury", - "Videocard First Benchmarked": "2015-07-15", - "G3DMark/Price": "21.68", - "Overall Rank": "191", - "Last Price Change": "$443.1 USD (2020-03-14)", - "Score": 9605, - "Average G2D Mark": 798, - "Samples": 426 - } - ], - "gpu3245": [ - "Radeon R9 Fury + Fury X", - { - "Bus Interface": "PCIe 3.0x16", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "1050 MHz", - "DirectX": "12", - "OpenGL": "4.58", - "Max TDP": "275 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon R9 Fury X, AMD Radeon (TM) R9 Fury Series", - "Videocard First Benchmarked": "2015-07-10", - "G3DMark/Price": "21.65", - "Overall Rank": "187", - "Last Price Change": "$449.99 USD (2021-11-20)", - "Score": 9741, - "Average G2D Mark": 811, - "Samples": 705 - } - ], - "gpu3634": [ - "Radeon R9 Fury X", - { - "Other names": "AMD Radeon R9 Fury X", - "Videocard First Benchmarked": "2020-09-18", - "G3DMark/Price": "NA", - "Overall Rank": "181", - "Last Price Change": "NA", - "Score": 10018, - "Average G2D Mark": 843, - "Samples": 113 - } - ], - "gpu2999": [ - "Radeon R9 M265X", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "575 MHz", - "Memory Clock(s)": "1125 MHz", - "DirectX": "11.2", - "OpenGL": "4.3", - "Videocard Category": "Mobile", - "Other names": "AMD Radeon R9 M265X", - "Videocard First Benchmarked": "2014-11-08", - "G3DMark/Price": "NA", - "Overall Rank": "986", - "Last Price Change": "NA", - "Score": 1127, - "Average G2D Mark": 207, - "Samples": 123 - } - ], - "gpu3085": [ - "Radeon R9 M270X", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "725 MHz", - "Memory Clock(s)": "1125 MHz", - "DirectX": "11.2", - "OpenGL": "4.3", - "Videocard Category": "Mobile", - "Other names": "AMD Radeon R9 M270X", - "Videocard First Benchmarked": "2015-02-07", - "G3DMark/Price": "NA", - "Overall Rank": "961", - "Last Price Change": "NA", - "Score": 1204, - "Average G2D Mark": 306, - "Samples": 18 - } - ], - "gpu3010": [ - "Radeon R9 M275", - { - "Videocard Category": "Mobile", - "Other names": "AMD Radeon R9 M275", - "Videocard First Benchmarked": "2014-10-30", - "G3DMark/Price": "1.59", - "Overall Rank": "996", - "Last Price Change": "$699.99 USD (2018-02-17)", - "Score": 1115, - "Average G2D Mark": 569, - "Samples": 18 - } - ], - "gpu4329": [ - "Radeon R9 M275X", - { - "Other names": "AMD Radeon R9 M275X", - "Videocard First Benchmarked": "2021-01-04", - "G3DMark/Price": "NA", - "Overall Rank": "855", - "Last Price Change": "NA", - "Score": 1537, - "Average G2D Mark": 307, - "Samples": 6 - } - ], - "gpu3035": [ - "Radeon R9 M275X / M375", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "900 MHz", - "Memory Clock(s)": "1125 MHz", - "DirectX": "11.2", - "OpenGL": "4.3", - "Max TDP": "50 W", - "Videocard Category": "Mobile", - "Other names": "AMD Radeon R9 M275X, AMD Radeon R9 M275X / M375", - "Videocard First Benchmarked": "2014-12-11", - "G3DMark/Price": "NA", - "Overall Rank": "841", - "Last Price Change": "NA", - "Score": 1575, - "Average G2D Mark": 467, - "Samples": 57 - } - ], - "gpu3096": [ - "Radeon R9 M280X", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "1000 MHz", - "Memory Clock(s)": "1500 MHz", - "DirectX": "11.2", - "OpenGL": "4.3", - "Max TDP": "75 W", - "Videocard Category": "Mobile", - "Other names": "AMD Radeon R9 M280X", - "Videocard First Benchmarked": "2020-01-11", - "G3DMark/Price": "NA", - "Overall Rank": "1185", - "Last Price Change": "NA", - "Score": 814, - "Average G2D Mark": 247, - "Samples": 5 - } - ], - "gpu2918": [ - "Radeon R9 M290X", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "850 MHz", - "Memory Clock(s)": "1200 MHz", - "DirectX": "11.2", - "OpenGL": "4.3", - "Max TDP": "100 W", - "Videocard Category": "Mobile", - "Other names": "AMD Radeon R9 M290X, AMD Radeon(TM) R9 M290X, AMD Radeon R9 M290X (Bootcamp XG edition by bootcampdrivers.com)", - "Videocard First Benchmarked": "2014-07-31", - "G3DMark/Price": "NA", - "Overall Rank": "504", - "Last Price Change": "NA", - "Score": 3226, - "Average G2D Mark": 420, - "Samples": 110 - } - ], - "gpu2985": [ - "Radeon R9 M295X", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "750 MHz", - "Memory Clock(s)": "1375 MHz", - "DirectX": "11.2", - "OpenGL": "4.3", - "Max TDP": "125 W", - "Videocard Category": "Mobile", - "Other names": "AMD RADEON R9 M295X, AMD Radeon R9 M295X (Bootcamp XG edition by bootcampdrivers.com)", - "Videocard First Benchmarked": "2014-10-21", - "G3DMark/Price": "3.55", - "Overall Rank": "357", - "Last Price Change": "$1449 USD (2021-05-22)", - "Score": 5150, - "Average G2D Mark": 832, - "Samples": 28 - } - ], - "gpu3479": [ - "Radeon R9 M360", - { - "Other names": "AMD Radeon (TM) R9 M360, AMD Radeon (TM) R9 M360 (Engineering Sample - WDDM v2.0)", - "Videocard First Benchmarked": "2016-04-15", - "G3DMark/Price": "NA", - "Overall Rank": "761", - "Last Price Change": "NA", - "Score": 1838, - "Average G2D Mark": 460, - "Samples": 106 - } - ], - "gpu3463": [ - "Radeon R9 M365X", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "4096 MB", - "Memory Clock(s)": "1125 MHz", - "DirectX": "12.0", - "OpenGL": "4.3", - "Max TDP": "50 W", - "Videocard Category": "Mobile", - "Other names": "AMD Radeon (TM) R9 M365X", - "Videocard First Benchmarked": "2017-06-27", - "G3DMark/Price": "NA", - "Overall Rank": "874", - "Last Price Change": "NA", - "Score": 1482, - "Average G2D Mark": 446, - "Samples": 1 - } - ], - "gpu3299": [ - "Radeon R9 M370X", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "800 MHz", - "Memory Clock(s)": "1125 MHz", - "DirectX": "12.0", - "OpenGL": "4.3", - "Max TDP": "50 W", - "Videocard Category": "Mobile", - "Other names": "AMD Radeon R9 M370X", - "Videocard First Benchmarked": "2015-08-30", - "G3DMark/Price": "1.72", - "Overall Rank": "856", - "Last Price Change": "$889 USD (2021-05-25)", - "Score": 1529, - "Average G2D Mark": 352, - "Samples": 335 - } - ], - "gpu3263": [ - "Radeon R9 M375", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "4096 MB", - "Memory Clock(s)": "1100 MHz", - "DirectX": "12.0", - "OpenGL": "4.3", - "Videocard Category": "Mobile", - "Other names": "AMD Radeon(TM) R9 M375, AMD Radeon (TM) R9 M375", - "Videocard First Benchmarked": "2015-08-02", - "G3DMark/Price": "NA", - "Overall Rank": "1076", - "Last Price Change": "NA", - "Score": 957, - "Average G2D Mark": 163, - "Samples": 76 - } - ], - "gpu3337": [ - "Radeon R9 M375X", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "4096 MB", - "Memory Clock(s)": "1125 MHz", - "DirectX": "12.0", - "OpenGL": "4.3", - "Videocard Category": "Mobile", - "Other names": "AMD Radeon (TM) R9 M375X", - "Videocard First Benchmarked": "2016-06-28", - "G3DMark/Price": "NA", - "Overall Rank": "798", - "Last Price Change": "NA", - "Score": 1721, - "Average G2D Mark": 314, - "Samples": 47 - } - ], - "gpu3339": [ - "Radeon R9 M380", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "4096 MB", - "Memory Clock(s)": "1500 MHz", - "DirectX": "12.0", - "OpenGL": "4.3", - "Videocard Category": "Mobile", - "Other names": "AMD Radeon (TM) R9 M380, AMD Radeon R9 M380", - "Videocard First Benchmarked": "2015-10-22", - "G3DMark/Price": "NA", - "Overall Rank": "549", - "Last Price Change": "NA", - "Score": 2770, - "Average G2D Mark": 576, - "Samples": 23 - } - ], - "gpu3383": [ - "Radeon R9 M385", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "900 MHz", - "Memory Clock(s)": "1500 MHz", - "DirectX": "12.0", - "OpenGL": "4.5", - "Max TDP": "70 W", - "Videocard Category": "Mobile", - "Other names": "AMD Radeon (TM) R9 M385", - "Videocard First Benchmarked": "2020-07-28", - "G3DMark/Price": "NA", - "Overall Rank": "691", - "Last Price Change": "NA", - "Score": 2061, - "Average G2D Mark": 244, - "Samples": 7 - } - ], - "gpu3378": [ - "Radeon R9 M385X", - { - "Bus Interface": "PCIe 3.0 x16", - "Memory Clock(s)": "1500 MHz", - "DirectX": "12.0", - "OpenGL": "4.3", - "Max TDP": "75 W", - "Videocard Category": "Mobile", - "Other names": "AMD Radeon (TM) R9 M385X", - "Videocard First Benchmarked": "2019-04-11", - "G3DMark/Price": "NA", - "Overall Rank": "711", - "Last Price Change": "NA", - "Score": 1994, - "Average G2D Mark": 267, - "Samples": 9 - } - ], - "gpu3405": [ - "Radeon R9 M390X", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "723 MHz", - "Memory Clock(s)": "1250 MHz", - "DirectX": "12.0", - "OpenGL": "4.3", - "Max TDP": "100 W", - "Videocard Category": "Mobile", - "Other names": "AMD Radeon (TM) R9 M390X, AMD RADEON R9 M390X", - "Videocard First Benchmarked": "2016-01-11", - "G3DMark/Price": "NA", - "Overall Rank": "494", - "Last Price Change": "NA", - "Score": 3346, - "Average G2D Mark": 458, - "Samples": 25 - } - ], - "gpu3346": [ - "Radeon R9 M395", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "2048 MB", - "Memory Clock(s)": "1365 MHz", - "DirectX": "12", - "OpenGL": "4.3", - "Max TDP": "125 W", - "Videocard Category": "Mobile", - "Other names": "AMD RADEON R9 M395, AMD Radeon R9 M395 (Bootcamp XG edition by bootcampdrivers.com)", - "Videocard First Benchmarked": "2015-10-26", - "G3DMark/Price": "NA", - "Overall Rank": "365", - "Last Price Change": "NA", - "Score": 5024, - "Average G2D Mark": 745, - "Samples": 39 - } - ], - "gpu3340": [ - "Radeon R9 M395X", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "4096 MB", - "Memory Clock(s)": "1365 MHz", - "DirectX": "12.0", - "OpenGL": "4.3", - "Max TDP": "125 W", - "Videocard Category": "Mobile", - "Other names": "AMD RADEON R9 M395X, AMD Radeon R9 M395X (Bootcamp edition by bootcampdrivers.com)", - "Videocard First Benchmarked": "2015-10-23", - "G3DMark/Price": "NA", - "Overall Rank": "351", - "Last Price Change": "NA", - "Score": 5195, - "Average G2D Mark": 733, - "Samples": 33 - } - ], - "gpu3606": [ - "Radeon R9 M470", - { - "Bus Interface": "PCIe 3.0 \u00c3\u201416", - "Max Memory Size": "4096 MB", - "Memory Clock(s)": "1500 MHz", - "DirectX": "12", - "OpenGL": "4.5", - "Max TDP": "75 W", - "Videocard Category": "Mobile", - "Other names": "AMD Radeon(TM) R9 M470", - "Videocard First Benchmarked": "2016-11-22", - "G3DMark/Price": "NA", - "Overall Rank": "631", - "Last Price Change": "NA", - "Score": 2331, - "Average G2D Mark": 307, - "Samples": 7 - } - ], - "gpu3574": [ - "Radeon R9 M470X", - { - "Bus Interface": "PCI-E 3.0 x16", - "Max Memory Size": "4096 MB", - "Memory Clock(s)": "1500 MHz", - "DirectX": "12", - "OpenGL": "4.5", - "Max TDP": "75 W", - "Videocard Category": "Mobile", - "Other names": "AMD Radeon (TM) R9 M470X, Radeon (TM) R9 M470X", - "Videocard First Benchmarked": "2016-09-15", - "G3DMark/Price": "NA", - "Overall Rank": "502", - "Last Price Change": "NA", - "Score": 3244, - "Average G2D Mark": 426, - "Samples": 11 - } - ], - "gpu3726": [ - "Radeon R9 M485X", - { - "Other names": "AMD Radeon (TM) R9 M485X", - "Videocard First Benchmarked": "2017-04-07", - "G3DMark/Price": "NA", - "Overall Rank": "464", - "Last Price Change": "NA", - "Score": 3661, - "Average G2D Mark": 417, - "Samples": 3 - } - ], - "gpu3557": [ - "Radeon RX 460", - { - "Bus Interface": "PCIe 3.0 x8", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "1090 MHz", - "Memory Clock(s)": "1750 MHz", - "DirectX": "12.0", - "OpenGL": "4.5", - "Max TDP": "75 W", - "Videocard Category": "Desktop", - "Other names": "Radeon(TM) RX 460 Graphics, Radeon (TM) RX 460 Graphics, AMD Radeon RX 460, ASUS Radeon (TM) RX 460 Series, AMD Radeon (TM) RX 460 Graphics, Radeon(TM) RX 460, AMD Radeon (TM) RX 460, AMD Radeon(TM) RX460, Radeon (TM) RX 460", - "Videocard First Benchmarked": "2016-08-09", - "G3DMark/Price": "24.65", - "Overall Rank": "424", - "Last Price Change": "$166.81 USD (2022-04-15)", - "Score": 4112, - "Average G2D Mark": 575, - "Samples": 3502 - } - ], - "gpu3558": [ - "Radeon RX 470/570", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "8192 MB", - "Core Clock(s)": "926 MHz", - "Memory Clock(s)": "1650 MHz", - "DirectX": "12.0", - "OpenGL": "4.5", - "Max TDP": "120 W", - "Videocard Category": "Desktop", - "Other names": "Radeon (TM) RX 470 Graphics, AMD Radeon RX 470, Radeon (TM) RX 470 Series, Radeon RX 570 Series, ASUS Radeon (TM) RX 470 Series, AMD Radeon (TM) RX 570, Radeon (TM) RX 570, Radeon RX 570, ASUS Radeon RX 570 Series, ASUS Radeon RX 470 Series, Radeon (TM) RX 570 Graphics, AMD Radeon RX 570", - "Videocard First Benchmarked": "2016-08-10", - "G3DMark/Price": "20.67", - "Overall Rank": "233", - "Last Price Change": "$388.99 USD (2022-04-15)", - "Score": 8041, - "Average G2D Mark": 729, - "Samples": 16409 - } - ], - "gpu3533": [ - "Radeon RX 480", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "8192 MB", - "Core Clock(s)": "1266 MHz", - "Memory Clock(s)": "2000 MHz", - "DirectX": "12.0", - "OpenGL": "4.5", - "Max TDP": "150 W", - "Videocard Category": "Desktop", - "Other names": "Radeon (TM) RX 480 Graphics, AMD Radeon (TM) RX 480, ASUS Radeon (TM) RX 480 Series, AMD Radeon RX 480, Radeon(TM) RX 480, Radeon RX480", - "Videocard First Benchmarked": "2016-06-28", - "G3DMark/Price": "25.44", - "Overall Rank": "218", - "Last Price Change": "$339.99 USD (2022-04-15)", - "Score": 8649, - "Average G2D Mark": 779, - "Samples": 11246 - } - ], - "gpu4420": [ - "Radeon RX 5300", - { - "Bus Interface": "PCIe 4.0 x8", - "Max Memory Size": "3072 MB", - "Core Clock(s)": "1327 MHz", - "Memory Clock(s)": "14000 MHz", - "DirectX": "12.1", - "OpenGL": "4.6", - "Max TDP": "100 W", - "Videocard Category": "Desktop", - "Other names": "AMD RadeonT RX 5300, AMD Radeon RX 5300", - "Videocard First Benchmarked": "2021-07-12", - "G3DMark/Price": "NA", - "Overall Rank": "251", - "Last Price Change": "NA", - "Score": 7661, - "Average G2D Mark": 772, - "Samples": 20 - } - ], - "gpu4325": [ - "Radeon RX 5300M", - { - "Bus Interface": "PCIe 4.0 x8", - "Max Memory Size": "3072 MB", - "Core Clock(s)": "1000 MHz", - "Memory Clock(s)": "14000 MHz", - "DirectX": "12", - "OpenGL": "4.6", - "Max TDP": "85 W", - "Videocard Category": "Mobile", - "Other names": "Radeon RX 5300M", - "Videocard First Benchmarked": "2020-12-20", - "G3DMark/Price": "NA", - "Overall Rank": "415", - "Last Price Change": "NA", - "Score": 4307, - "Average G2D Mark": 367, - "Samples": 14 - } - ], - "gpu3854": [ - "Radeon RX 540", - { - "Bus Interface": "PCIe 3.0 x8", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "1219 MHz", - "Memory Clock(s)": "1500 MHz", - "DirectX": "12", - "OpenGL": "4.5", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon(TM) RX540, Radeon RX 540 Series, Radeon RX 540, AMD Radeon(TM) RX 540", - "Videocard First Benchmarked": "2017-12-27", - "G3DMark/Price": "NA", - "Overall Rank": "745", - "Last Price Change": "NA", - "Score": 1878, - "Average G2D Mark": 381, - "Samples": 36 - } - ], - "gpu3761": [ - "Radeon RX 550", - { - "Bus Interface": "PCIe 3.0 x8", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "1100 MHz", - "Memory Clock(s)": "1750 MHz", - "DirectX": "12.0", - "OpenGL": "4.5", - "Max TDP": "50 W", - "Videocard Category": "Desktop", - "Other names": "Radeon RX 550 Series, ASUS Radeon RX 550 Series, Radeon(TM) RX 550, Radeon (TM) RX 550, AMD Radeon(TM) RX550, AMD Radeon RX 550, Radeon RX 550, Radeon RX550/550 Series, AMD Radeon RX550 series", - "Videocard First Benchmarked": "2017-06-17", - "G3DMark/Price": "13.53", - "Overall Rank": "561", - "Last Price Change": "$199.99 USD (2023-12-22)", - "Score": 2705, - "Average G2D Mark": 488, - "Samples": 1061 - } - ], - "gpu4164": [ - "Radeon RX 5500", - { - "Bus Interface": "PCIe 4.0 x8", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "1670 MHz", - "Memory Clock(s)": "14000 MHz", - "Max TDP": "150 W", - "Videocard Category": "Desktop", - "Other names": "Radeon RX 5500, AMD Radeon RX 5500", - "Videocard First Benchmarked": "2019-11-22", - "G3DMark/Price": "NA", - "Overall Rank": "214", - "Last Price Change": "NA", - "Score": 8850, - "Average G2D Mark": 773, - "Samples": 157 - } - ], - "gpu4174": [ - "Radeon RX 5500 XT", - { - "Bus Interface": "PCIe 4.0 x8", - "Max Memory Size": "8192 MB", - "Core Clock(s)": "1607 MHz", - "Memory Clock(s)": "1750 MHz", - "DirectX": "12", - "OpenGL": "4.6", - "Max TDP": "130 W", - "Videocard Category": "Desktop", - "Other names": "Radeon RX 5500 XT, ASUS Radeon RX 5500 XT", - "Videocard First Benchmarked": "2019-12-12", - "G3DMark/Price": "49.62", - "Overall Rank": "203", - "Last Price Change": "$184.99 USD (2022-05-26)", - "Score": 9179, - "Average G2D Mark": 791, - "Samples": 2075 - } - ], - "gpu4193": [ - "Radeon RX 5500M", - { - "Bus Interface": "PCIe 4.0 x8", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "1375 MHz", - "Memory Clock(s)": "14000 MHz", - "DirectX": "12", - "OpenGL": "4.6", - "Max TDP": "85 W", - "Videocard Category": "Mobile", - "Other names": "AMD RadeonT RX 5500M, Radeon RX 5500M, AMD Radeon RX 5500M Series", - "Videocard First Benchmarked": "2020-03-21", - "G3DMark/Price": "NA", - "Overall Rank": "328", - "Last Price Change": "NA", - "Score": 5425, - "Average G2D Mark": 411, - "Samples": 226 - } - ], - "gpu4069": [ - "Radeon RX 550X", - { - "Bus Interface": "PCIe 3.0 x8", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "1100 MHz", - "Memory Clock(s)": "1500 MHz", - "DirectX": "12.0", - "OpenGL": "4.6", - "Max TDP": "50 W", - "Videocard Category": "Desktop", - "Other names": "Radeon (TM) RX 550X, Radeon RX 550X", - "Videocard First Benchmarked": "2019-04-14", - "G3DMark/Price": "NA", - "Overall Rank": "644", - "Last Price Change": "NA", - "Score": 2281, - "Average G2D Mark": 433, - "Samples": 120 - } - ], - "gpu3708": [ - "Radeon RX 560", - { - "Bus Interface": "PCIe 3.0 x8", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "1175 MHz", - "Memory Clock(s)": "1750 MHz", - "DirectX": "12.0", - "OpenGL": "4.5", - "Max TDP": "80 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon (TM) RX 560, Radeon RX 560 Series, Radeon(TM) RX 560 Graphics, AMD Radeon RX 560, Radeon (TM) RX 560, AMD Radeon(TM) RX 560", - "Videocard First Benchmarked": "2017-03-20", - "G3DMark/Price": "21.10", - "Overall Rank": "465", - "Last Price Change": "$172.79 USD (2023-12-23)", - "Score": 3646, - "Average G2D Mark": 497, - "Samples": 3872 - } - ], - "gpu4205": [ - "Radeon RX 5600", - { - "Bus Interface": "PCIe 4.0 x16", - "Max Memory Size": "6144 MB", - "Core Clock(s)": "1130 MHz", - "Memory Clock(s)": "12000 MHz", - "DirectX": "12", - "OpenGL": "4.6", - "Max TDP": "150 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon RX5600", - "Videocard First Benchmarked": "2020-04-30", - "G3DMark/Price": "NA", - "Overall Rank": "160", - "Last Price Change": "NA", - "Score": 11507, - "Average G2D Mark": 889, - "Samples": 37 - } - ], - "gpu4640": [ - "Radeon RX 5600 OEM", - { - "Other names": "AMD Radeon RX 5600 OEM", - "Videocard First Benchmarked": "2022-12-10", - "G3DMark/Price": "NA", - "Overall Rank": "150", - "Last Price Change": "NA", - "Score": 12229, - "Average G2D Mark": 719, - "Samples": 5 - } - ], - "gpu4186": [ - "Radeon RX 5600 XT", - { - "Bus Interface": "PCIe 4.0 x16", - "Max Memory Size": "6144 MB", - "Core Clock(s)": "1130 MHz", - "Memory Clock(s)": "12000 MHz", - "DirectX": "12", - "OpenGL": "4.6", - "Max TDP": "150 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon RX 5600 XT, ASUS Radeon RX 5600 XT", - "Videocard First Benchmarked": "2020-01-24", - "G3DMark/Price": "25.25", - "Overall Rank": "116", - "Last Price Change": "$545 USD (2022-04-10)", - "Score": 13759, - "Average G2D Mark": 887, - "Samples": 2589 - } - ], - "gpu4217": [ - "Radeon RX 5600M", - { - "Bus Interface": "PCIe 4.0 x16", - "Max Memory Size": "6144 MB", - "Core Clock(s)": "1035 MHz", - "Memory Clock(s)": "12000 MHz", - "DirectX": "12", - "OpenGL": "4.6", - "Max TDP": "150 W", - "Videocard Category": "Mobile", - "Other names": "AMD Radeon(TM) RX 5600M Series, AMD Radeon RX 5600M", - "Videocard First Benchmarked": "2020-06-18", - "G3DMark/Price": "NA", - "Overall Rank": "224", - "Last Price Change": "NA", - "Score": 8373, - "Average G2D Mark": 494, - "Samples": 130 - } - ], - "gpu3955": [ - "Radeon RX 560X", - { - "Bus Interface": "PCIe 3.0 x8", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "1175 MHz", - "Memory Clock(s)": "1750 MHz", - "DirectX": "12.0", - "OpenGL": "4.6", - "Max TDP": "75 W", - "Videocard Category": "Desktop", - "Other names": "Radeon RX 560X Series, RX 560X, RadeonT RX 560X, AMD Radeon (TM) RX 560X, Radeon (TM) RX 560X", - "Videocard First Benchmarked": "2018-08-20", - "G3DMark/Price": "NA", - "Overall Rank": "507", - "Last Price Change": "NA", - "Score": 3195, - "Average G2D Mark": 452, - "Samples": 30 - } - ], - "gpu4107": [ - "Radeon RX 5700", - { - "Bus Interface": "PCIe 4.0 x16", - "Max Memory Size": "8192 MB", - "Core Clock(s)": "1465 MHz", - "Memory Clock(s)": "14000 MHz", - "DirectX": "12", - "Max TDP": "180 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon RX 5700, ASUS Radeon RX 5700, Radeon RX 5700", - "Videocard First Benchmarked": "2019-07-01", - "G3DMark/Price": "47.05", - "Overall Rank": "105", - "Last Price Change": "$309.99 USD (2020-12-19)", - "Score": 14586, - "Average G2D Mark": 897, - "Samples": 1947 - } - ], - "gpu4111": [ - "Radeon RX 5700 XT", - { - "Bus Interface": "PCIe 4.0 x16", - "Max Memory Size": "8192 MB", - "Core Clock(s)": "1605 MHz", - "Memory Clock(s)": "14000 MHz", - "DirectX": "12", - "Max TDP": "225 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon RX 5700 XT, ASUS Radeon RX 5700 XT, Radeon RX 5700XT, AMD Radeon RX 5700 XT Series", - "Videocard First Benchmarked": "2019-07-08", - "G3DMark/Price": "32.36", - "Overall Rank": "74", - "Last Price Change": "$517.94 USD (2023-12-09)", - "Score": 16763, - "Average G2D Mark": 933, - "Samples": 11014 - } - ], - "gpu4114": [ - "Radeon RX 5700 XT 50th Anniversary", - { - "Bus Interface": "PCIe 4.0 x16", - "Max Memory Size": "8192 MB", - "Core Clock(s)": "1680 MHz", - "Memory Clock(s)": "14000 MHz", - "Max TDP": "235 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon RX 5700 XT 50th Anniversary", - "Videocard First Benchmarked": "2019-07-10", - "G3DMark/Price": "NA", - "Overall Rank": "76", - "Last Price Change": "NA", - "Score": 16618, - "Average G2D Mark": 961, - "Samples": 173 - } - ], - "gpu4179": [ - "Radeon RX 570X", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "8192 MB", - "Core Clock(s)": "1168 MHz", - "Memory Clock(s)": "7000 MHz", - "DirectX": "12", - "OpenGL": "4.6", - "Max TDP": "120 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon (TM) RX 570X", - "Videocard First Benchmarked": "2020-01-11", - "G3DMark/Price": "7.73", - "Overall Rank": "736", - "Last Price Change": "$248.96 USD (2023-12-26)", - "Score": 1923, - "Average G2D Mark": 750, - "Samples": 1 - } - ], - "gpu3736": [ - "Radeon RX 580", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "8192 MB", - "Core Clock(s)": "1257 MHz", - "Memory Clock(s)": "2000 MHz", - "DirectX": "12.0", - "OpenGL": "4.5", - "Max TDP": "185 W", - "Videocard Category": "Desktop", - "Other names": "Radeon RX 580 Series, ASUS Radeon RX 580 Series, Radeon(TM) RX 580, AMD Radeon RX 580, AMD Radeon (TM) RX 580, Radeon(TM) RX580, Radeon (TM) RX 580 Graphics", - "Videocard First Benchmarked": "2017-04-23", - "G3DMark/Price": "49.42", - "Overall Rank": "213", - "Last Price Change": "$179.99 USD (2023-01-19)", - "Score": 8894, - "Average G2D Mark": 773, - "Samples": 22193 - } - ], - "gpu4049": [ - "Radeon RX 580 2048SP", - { - "Other names": "AMD Radeon RX 580 2048SP", - "Videocard First Benchmarked": "2019-02-12", - "G3DMark/Price": "NA", - "Overall Rank": "248", - "Last Price Change": "NA", - "Score": 7743, - "Average G2D Mark": 662, - "Samples": 1380 - } - ], - "gpu4055": [ - "Radeon RX 580X", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "8192 MB", - "Core Clock(s)": "1257 MHz", - "Memory Clock(s)": "2000 MHz", - "DirectX": "12.0", - "OpenGL": "4.6", - "Max TDP": "185 W", - "Videocard Category": "Desktop", - "Other names": "Radeon(TM) RX 580X", - "Videocard First Benchmarked": "2019-02-26", - "G3DMark/Price": "NA", - "Overall Rank": "245", - "Last Price Change": "NA", - "Score": 7798, - "Average G2D Mark": 885, - "Samples": 1 - } - ], - "gpu4025": [ - "Radeon RX 590", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "8192 MB", - "Core Clock(s)": "1545 MHz", - "Memory Clock(s)": "2000 MHz", - "DirectX": "12.0", - "OpenGL": "4.5", - "Max TDP": "175 W", - "Videocard Category": "Desktop", - "Other names": "Radeon RX 590 Series, AMD Radeon RX 590, AMD Radeon RX 590 Series", - "Videocard First Benchmarked": "2018-11-27", - "G3DMark/Price": "17.25", - "Overall Rank": "195", - "Last Price Change": "$549.99 USD (2022-03-30)", - "Score": 9487, - "Average G2D Mark": 798, - "Samples": 2956 - } - ], - "gpu4939": [ - "Radeon RX 6300", - { - "Other names": "AMD Radeon RX 6300", - "Videocard First Benchmarked": "2023-10-24", - "G3DMark/Price": "NA", - "Overall Rank": "287", - "Last Price Change": "NA", - "Score": 6545, - "Average G2D Mark": 881, - "Samples": 2 - } - ], - "gpu4168": [ - "Radeon RX 640", - { - "Bus Interface": "PCIe 3.0 x8", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "1082 MHz", - "Memory Clock(s)": "7000 MHz", - "DirectX": "12.0", - "OpenGL": "4.6", - "Max TDP": "50 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon (TM) RX 640, AMD Radeon RX 640 Series, AMD Radeon RX 640, AMD RadeonT RX 640", - "Videocard First Benchmarked": "2020-02-06", - "G3DMark/Price": "NA", - "Overall Rank": "726", - "Last Price Change": "NA", - "Score": 1952, - "Average G2D Mark": 341, - "Samples": 115 - } - ], - "gpu4536": [ - "Radeon RX 6400", - { - "Bus Interface": "PCIe 4.0 x4", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "1923 MHz", - "Memory Clock(s)": "2000 MHz", - "DirectX": "12_2", - "OpenGL": "4.6", - "Max TDP": "53 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon RX 6400", - "Videocard First Benchmarked": "2022-04-23", - "G3DMark/Price": "41.49", - "Overall Rank": "257", - "Last Price Change": "$179.99 USD (2023-12-26)", - "Score": 7468, - "Average G2D Mark": 691, - "Samples": 556 - } - ], - "gpu4843": [ - "Radeon RX 6500", - { - "Other names": "AMD Radeon RX 6500", - "Videocard First Benchmarked": "2023-06-15", - "G3DMark/Price": "NA", - "Overall Rank": "249", - "Last Price Change": "NA", - "Score": 7714, - "Average G2D Mark": 849, - "Samples": 7 - } - ], - "gpu4488": [ - "Radeon RX 6500 XT", - { - "Bus Interface": "PCIe 4.0 x4", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "2310 MHz", - "Memory Clock(s)": "2248 MHz", - "DirectX": "12_2", - "OpenGL": "4.6", - "Max TDP": "107 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon RX 6500 XT, AMD Radeon RX 6500 XT Series", - "Videocard First Benchmarked": "2022-01-21", - "G3DMark/Price": "49.94", - "Overall Rank": "194", - "Last Price Change": "$189.99 USD (2023-11-15)", - "Score": 9488, - "Average G2D Mark": 826, - "Samples": 1124 - } - ], - "gpu4599": [ - "Radeon RX 6500M", - { - "Other names": "AMD Radeon RX 6500M, AMD Radeon(TM) RX 6500M", - "Videocard First Benchmarked": "2022-09-20", - "G3DMark/Price": "NA", - "Overall Rank": "243", - "Last Price Change": "NA", - "Score": 7862, - "Average G2D Mark": 410, - "Samples": 108 - } - ], - "gpu4941": [ - "Radeon RX 6550M", - { - "Other names": "AMD Radeon RX 6550M", - "Videocard First Benchmarked": "2023-10-25", - "G3DMark/Price": "NA", - "Overall Rank": "189", - "Last Price Change": "NA", - "Score": 9669, - "Average G2D Mark": 448, - "Samples": 2 - } - ], - "gpu4465": [ - "Radeon RX 6600", - { - "Bus Interface": "PCIe 4.0 x8", - "Max Memory Size": "8192 MB", - "Core Clock(s)": "1626 MHz", - "Memory Clock(s)": "1750 MHz", - "DirectX": "12", - "OpenGL": "4.6", - "Max TDP": "132 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon RX 6600", - "Videocard First Benchmarked": "2021-10-16", - "G3DMark/Price": "45.97", - "Overall Rank": "96", - "Last Price Change": "$329 USD (2021-10-13)", - "Score": 15125, - "Average G2D Mark": 879, - "Samples": 4281 - } - ], - "gpu4444": [ - "Radeon RX 6600 XT", - { - "Bus Interface": "PCIe 4.0 x8", - "Max Memory Size": "8192 MB", - "Core Clock(s)": "1968 MHz", - "Memory Clock(s)": "16000 MHz", - "DirectX": "12_2", - "OpenGL": "4.6", - "Max TDP": "160 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon RX 6600 XT", - "Videocard First Benchmarked": "2021-08-12", - "G3DMark/Price": "62.61", - "Overall Rank": "79", - "Last Price Change": "$262.99 USD (2023-12-07)", - "Score": 16465, - "Average G2D Mark": 922, - "Samples": 3174 - } - ], - "gpu4449": [ - "Radeon RX 6600M", - { - "Bus Interface": "PCIe 4.0 x8", - "Max Memory Size": "8192 MB", - "Core Clock(s)": "2068 MHz", - "Memory Clock(s)": "1750 MHz", - "DirectX": "12_2", - "OpenGL": "4.6", - "Max TDP": "100 W", - "Videocard Category": "Mobile", - "Other names": "AMD Radeon RX 6600M, AMD Radeon(TM) RX 6600M", - "Videocard First Benchmarked": "2021-09-10", - "G3DMark/Price": "68.04", - "Overall Rank": "120", - "Last Price Change": "$199.99 USD (2023-12-11)", - "Score": 13608, - "Average G2D Mark": 703, - "Samples": 408 - } - ], - "gpu4755": [ - "Radeon RX 6600S", - { - "Bus Interface": "PCIe 4.0 x8", - "Max Memory Size": "4096 MB", - "Core Clock(s)": "1700 MHz", - "Memory Clock(s)": "1750 MHz", - "DirectX": "12_2", - "OpenGL": "4.6", - "Max TDP": "80 W", - "Videocard Category": "Mobile", - "Other names": "AMD Radeon RX 6600S", - "Videocard First Benchmarked": "2023-02-25", - "G3DMark/Price": "NA", - "Overall Rank": "101", - "Last Price Change": "NA", - "Score": 14897, - "Average G2D Mark": 643, - "Samples": 2 - } - ], - "gpu4541": [ - "Radeon RX 6650 XT", - { - "Bus Interface": "PCIe 4.0 x8", - "Max Memory Size": "8192 MB", - "Core Clock(s)": "2055 MHz", - "Memory Clock(s)": "2190 MHz", - "DirectX": "12", - "OpenGL": "4.6", - "Max TDP": "176 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon RX 6650 XT, AMD Radeon RX 6650 XT Series", - "Videocard First Benchmarked": "2022-05-13", - "G3DMark/Price": "58.07", - "Overall Rank": "71", - "Last Price Change": "$299.99 USD (2023-12-24)", - "Score": 17419, - "Average G2D Mark": 916, - "Samples": 1685 - } - ], - "gpu4557": [ - "Radeon RX 6650M", - { - "Other names": "AMD Radeon(TM) RX 6650M, AMD Radeon RX 6650M", - "Videocard First Benchmarked": "2022-06-21", - "G3DMark/Price": "NA", - "Overall Rank": "117", - "Last Price Change": "NA", - "Score": 13676, - "Average G2D Mark": 646, - "Samples": 17 - } - ], - "gpu4564": [ - "Radeon RX 6700", - { - "Bus Interface": "PCIe 4.0 x16", - "Max Memory Size": "10240 MB", - "Core Clock(s)": "1941 MHz", - "Memory Clock(s)": "2000 MHz", - "DirectX": "12_2", - "OpenGL": "4.6", - "Max TDP": "175 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon RX 6700, AMD Radeon 6700, AMD Radeon RX 6700 Series", - "Videocard First Benchmarked": "2022-07-13", - "G3DMark/Price": "NA", - "Overall Rank": "58", - "Last Price Change": "NA", - "Score": 18756, - "Average G2D Mark": 904, - "Samples": 668 - } - ], - "gpu4369": [ - "Radeon RX 6700 XT", - { - "Bus Interface": "PCIe 4.0 x16", - "Max Memory Size": "12288 MB", - "Core Clock(s)": "2321 MHz", - "DirectX": "12", - "OpenGL": "4.6", - "Max TDP": "230 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon RX 6700 XT, AMD Radeon RX 6700 XT Series", - "Videocard First Benchmarked": "2021-03-16", - "G3DMark/Price": "66.24", - "Overall Rank": "48", - "Last Price Change": "$299.99 USD (2023-12-24)", - "Score": 19871, - "Average G2D Mark": 946, - "Samples": 5953 - } - ], - "gpu4458": [ - "Radeon RX 6700M", - { - "Bus Interface": "PCIe 4.0 x16", - "Max Memory Size": "10240 MB", - "Core Clock(s)": "1489 MHz", - "Memory Clock(s)": "2000 MHz", - "DirectX": "12_2", - "OpenGL": "4.6", - "Max TDP": "135 W", - "Videocard Category": "Mobile", - "Other names": "AMD Radeon RX 6700M", - "Videocard First Benchmarked": "2021-09-30", - "G3DMark/Price": "49.20", - "Overall Rank": "127", - "Last Price Change": "$269.99 USD (2023-12-24)", - "Score": 13283, - "Average G2D Mark": 581, - "Samples": 105 - } - ], - "gpu4510": [ - "Radeon RX 6700S", - { - "Bus Interface": "PCIe 4.0 x8", - "Max Memory Size": "8192 MB", - "Core Clock(s)": "1700 MHz", - "Memory Clock(s)": "1750 MHz", - "DirectX": "12_2", - "OpenGL": "4.6", - "Max TDP": "80 W", - "Videocard Category": "Mobile", - "Other names": "AMD Radeon RX 6700S", - "Videocard First Benchmarked": "2022-02-28", - "G3DMark/Price": "NA", - "Overall Rank": "100", - "Last Price Change": "NA", - "Score": 14902, - "Average G2D Mark": 740, - "Samples": 240 - } - ], - "gpu4543": [ - "Radeon RX 6750 XT", - { - "Bus Interface": "PCIe 4.0 x16", - "Max Memory Size": "12288 MB", - "Core Clock(s)": "2150 MHz", - "Memory Clock(s)": "2250 MHz", - "DirectX": "12_2", - "OpenGL": "4.6", - "Max TDP": "250 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon RX 6750 XT, AMD Radeon RX 6750 XT Series", - "Videocard First Benchmarked": "2022-05-13", - "G3DMark/Price": "59.71", - "Overall Rank": "40", - "Last Price Change": "$349.99 USD (2023-12-24)", - "Score": 20899, - "Average G2D Mark": 950, - "Samples": 1647 - } - ], - "gpu4314": [ - "Radeon RX 6800", - { - "Bus Interface": "PCIe 4.0 x16", - "Max Memory Size": "16384 MB", - "Core Clock(s)": "1815 MHz", - "Memory Clock(s)": "16000 MHz", - "DirectX": "12", - "OpenGL": "4.6", - "Max TDP": "250 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon RX 6800", - "Videocard First Benchmarked": "2020-11-20", - "G3DMark/Price": "57.24", - "Overall Rank": "32", - "Last Price Change": "$389.99 USD (2023-12-20)", - "Score": 22322, - "Average G2D Mark": 977, - "Samples": 1833 - } - ], - "gpu4312": [ - "Radeon RX 6800 XT", - { - "Bus Interface": "PCIe 4.0 x16", - "Max Memory Size": "16384 MB", - "Core Clock(s)": "2015 MHz", - "Memory Clock(s)": "16000 MHz", - "DirectX": "12", - "OpenGL": "4.6", - "Max TDP": "300 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon RX 6800 XT, RX6800 XT, RX 6800 XT, AMD Radeon RX 6800 XT Series", - "Videocard First Benchmarked": "2020-11-18", - "G3DMark/Price": "35.86", - "Overall Rank": "19", - "Last Price Change": "$699.99 USD (2023-12-25)", - "Score": 25102, - "Average G2D Mark": 1026, - "Samples": 3736 - } - ], - "gpu4415": [ - "Radeon RX 6800M", - { - "Max Memory Size": "12288 MB", - "Core Clock(s)": "2300 MHz", - "Memory Clock(s)": "16000 MHz", - "DirectX": "12", - "OpenGL": "4.6", - "Max TDP": "145 W", - "Videocard Category": "Mobile", - "Other names": "AMD Radeon RX 6800M", - "Videocard First Benchmarked": "2021-06-17", - "G3DMark/Price": "NA", - "Overall Rank": "129", - "Last Price Change": "NA", - "Score": 13136, - "Average G2D Mark": 554, - "Samples": 413 - } - ], - "gpu4542": [ - "Radeon RX 6800S", - { - "Bus Interface": "PCIe 4.0 x8", - "Max Memory Size": "8192 MB", - "Core Clock(s)": "1800 MHz", - "Memory Clock(s)": "2000 MHz", - "DirectX": "12", - "OpenGL": "4.6", - "Max TDP": "100 W", - "Videocard Category": "Mobile", - "Other names": "AMD Radeon RX 6800S", - "Videocard First Benchmarked": "2022-05-13", - "G3DMark/Price": "NA", - "Overall Rank": "89", - "Last Price Change": "NA", - "Score": 15536, - "Average G2D Mark": 711, - "Samples": 82 - } - ], - "gpu4511": [ - "Radeon RX 6850M", - { - "Other names": "AMD RadeonT RX 6850M", - "Videocard First Benchmarked": "2022-03-01", - "G3DMark/Price": "NA", - "Overall Rank": "148", - "Last Price Change": "NA", - "Score": 12274, - "Average G2D Mark": 714, - "Samples": 3 - } - ], - "gpu4574": [ - "Radeon RX 6850M XT", - { - "Other names": "AMD Radeon RX 6850M XT, AMD Radeon(TM) RX 6850M XT", - "Videocard First Benchmarked": "2022-08-16", - "G3DMark/Price": "NA", - "Overall Rank": "62", - "Last Price Change": "NA", - "Score": 18330, - "Average G2D Mark": 616, - "Samples": 27 - } - ], - "gpu4322": [ - "Radeon RX 6900 XT", - { - "Bus Interface": "PCIe 4.0 x16", - "Max Memory Size": "16384 MB", - "Core Clock(s)": "1825 MHz", - "Memory Clock(s)": "16000 MHz", - "DirectX": "12", - "OpenGL": "4.6", - "Max TDP": "300 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon RX 6900 XT, AMD Radeon RX 6900 XT Series", - "Videocard First Benchmarked": "2020-12-08", - "G3DMark/Price": "36.33", - "Overall Rank": "12", - "Last Price Change": "$742.04 USD (2023-12-25)", - "Score": 26962, - "Average G2D Mark": 1053, - "Samples": 4477 - } - ], - "gpu4540": [ - "Radeon RX 6950 XT", - { - "Bus Interface": "PCIe 4.0 x16", - "Max Memory Size": "16384 MB", - "Core Clock(s)": "1925 MHz", - "Memory Clock(s)": "2250 MHz", - "DirectX": "12_2", - "OpenGL": "4.6", - "Max TDP": "335 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon RX 6950 XT, AMD Radeon RX 6950 XT Series", - "Videocard First Benchmarked": "2022-05-10", - "G3DMark/Price": "21.91", - "Overall Rank": "10", - "Last Price Change": "$1299.99 USD (2023-12-20)", - "Score": 28484, - "Average G2D Mark": 1043, - "Samples": 1581 - } - ], - "gpu4832": [ - "Radeon RX 7600", - { - "Bus Interface": "PCIe 4.0 x8", - "Max Memory Size": "8192 MB", - "Core Clock(s)": "1720 MHz", - "Memory Clock(s)": "2250 MHz", - "DirectX": "12_2", - "OpenGL": "4.6", - "Max TDP": "165 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon RX 7600", - "Videocard First Benchmarked": "2023-05-27", - "G3DMark/Price": "59.68", - "Overall Rank": "81", - "Last Price Change": "$269.99 USD (2023-12-24)", - "Score": 16114, - "Average G2D Mark": 963, - "Samples": 334 - } - ], - "gpu4964": [ - "Radeon RX 7600M", - { - "Other names": "AMD Radeon(TM) RX 7600M", - "Videocard First Benchmarked": "2023-12-22", - "G3DMark/Price": "NA", - "Overall Rank": "434", - "Last Price Change": "NA", - "Score": 3940, - "Average G2D Mark": 478, - "Samples": 1 - } - ], - "gpu4844": [ - "Radeon RX 7600M XT", - { - "Bus Interface": "PCIe 4.0 x16", - "Max Memory Size": "8192 MB", - "Core Clock(s)": "1437 MHz", - "Memory Clock(s)": "2250 MHz", - "DirectX": "12_2", - "OpenGL": "4.6", - "Max TDP": "120 W", - "Videocard Category": "Mobile", - "Other names": "AMD Radeon RX 7600M XT, AMD Radeon(TM) RX 7600M XT", - "Videocard First Benchmarked": "2023-06-19", - "G3DMark/Price": "NA", - "Overall Rank": "174", - "Last Price Change": "NA", - "Score": 10439, - "Average G2D Mark": 529, - "Samples": 14 - } - ], - "gpu4835": [ - "Radeon RX 7600S", - { - "Bus Interface": "PCIe 4.0 x16", - "Max Memory Size": "8192 MB", - "Core Clock(s)": "1500 MHz", - "Memory Clock(s)": "2000 MHz", - "DirectX": "12_2", - "OpenGL": "4.6", - "Max TDP": "75 W", - "Videocard Category": "Mobile", - "Other names": "AMD Radeon RX 7600S", - "Videocard First Benchmarked": "2023-06-04", - "G3DMark/Price": "NA", - "Overall Rank": "113", - "Last Price Change": "NA", - "Score": 13815, - "Average G2D Mark": 690, - "Samples": 33 - } - ], - "gpu4919": [ - "Radeon RX 7700 XT", - { - "Bus Interface": "PCIe 4.0 x16", - "Max Memory Size": "12288 MB", - "Core Clock(s)": "1700 MHz", - "Memory Clock(s)": "2250 MHz", - "DirectX": "12_2", - "OpenGL": "4.6", - "Max TDP": "245 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon RX 7700 XT", - "Videocard First Benchmarked": "2023-09-08", - "G3DMark/Price": "49.13", - "Overall Rank": "38", - "Last Price Change": "$439.99 USD (2023-12-21)", - "Score": 21615, - "Average G2D Mark": 1067, - "Samples": 60 - } - ], - "gpu4887": [ - "Radeon RX 7700S", - { - "Other names": "AMD Radeon RX 7700S", - "Videocard First Benchmarked": "2023-08-02", - "G3DMark/Price": "NA", - "Overall Rank": "98", - "Last Price Change": "NA", - "Score": 15028, - "Average G2D Mark": 840, - "Samples": 7 - } - ], - "gpu4917": [ - "Radeon RX 7800 XT", - { - "Bus Interface": "PCIe 4.0 x16", - "Max Memory Size": "16384 MB", - "Core Clock(s)": "1295 MHz", - "Memory Clock(s)": "2425 MHz", - "DirectX": "12_2", - "OpenGL": "4.6", - "Max TDP": "263 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon RX 7800 XT, AMD Radeon RX 7800 XT", - "Videocard First Benchmarked": "2023-06-02", - "G3DMark/Price": "45.85", - "Overall Rank": "22", - "Last Price Change": "$519.99 USD (2023-12-23)", - "Score": 23840, - "Average G2D Mark": 1135, - "Samples": 614 - } - ], - "gpu4906": [ - "Radeon RX 7900 GRE", - { - "Other names": "AMD Radeon RX 7900 GRE", - "Videocard First Benchmarked": "2023-08-24", - "G3DMark/Price": "NA", - "Overall Rank": "20", - "Last Price Change": "NA", - "Score": 24853, - "Average G2D Mark": 1241, - "Samples": 10 - } - ], - "gpu4646": [ - "Radeon RX 7900 XT", - { - "Bus Interface": "PCIe 4.0 x16", - "Max Memory Size": "20480 MB", - "Core Clock(s)": "2000 MHz", - "Memory Clock(s)": "2500 MHz", - "DirectX": "12_2", - "OpenGL": "4.6", - "Max TDP": "315 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon RX 7900 XT, AMD Radeon RX 7900 XT Series", - "Videocard First Benchmarked": "2022-12-19", - "G3DMark/Price": "36.07", - "Overall Rank": "8", - "Last Price Change": "$799.99 USD (2023-12-19)", - "Score": 28859, - "Average G2D Mark": 1199, - "Samples": 1294 - } - ], - "gpu4644": [ - "Radeon RX 7900 XTX", - { - "Bus Interface": "PCIe 4.0 x16", - "Max Memory Size": "24576 MB", - "Core Clock(s)": "1855 MHz", - "Memory Clock(s)": "2500 MHz", - "DirectX": "12_2", - "OpenGL": "4.6", - "Max TDP": "355 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon RX 7900 XTX", - "Videocard First Benchmarked": "2022-12-18", - "G3DMark/Price": "32.30", - "Overall Rank": "4", - "Last Price Change": "$959.99 USD (2023-12-24)", - "Score": 31003, - "Average G2D Mark": 1246, - "Samples": 2200 - } - ], - "gpu4946": [ - "Radeon RX 7900M", - { - "Other names": "AMD Radeon(TM) RX 7900M", - "Videocard First Benchmarked": "2023-11-01", - "G3DMark/Price": "NA", - "Overall Rank": "29", - "Last Price Change": "NA", - "Score": 22761, - "Average G2D Mark": 1007, - "Samples": 8 - } - ], - "gpu4066": [ - "Radeon RX Vega 10", - { - "Other names": "AMD Radeon(TM) RX Vega 10 Graphics, AMD Radeon RX Vega 10 Graphics", - "Videocard First Benchmarked": "2019-04-07", - "G3DMark/Price": "NA", - "Overall Rank": "813", - "Last Price Change": "NA", - "Score": 1646, - "Average G2D Mark": 379, - "Samples": 1066 - } - ], - "gpu4669": [ - "Radeon RX Vega 10 Ryzen 7 3700U", - { - "Other names": "AMD Radeon(TM) RX Vega 10 Graphics Ryzen 7 3700U", - "Videocard First Benchmarked": "2022-12-22", - "G3DMark/Price": "NA", - "Overall Rank": "859", - "Last Price Change": "NA", - "Score": 1518, - "Average G2D Mark": 331, - "Samples": 156 - } - ], - "gpu4672": [ - "Radeon RX Vega 10 Ryzen 7 3750H", - { - "Other names": "AMD Radeon(TM) RX Vega 10 Graphics Ryzen 7 3750H", - "Videocard First Benchmarked": "2022-12-23", - "G3DMark/Price": "NA", - "Overall Rank": "764", - "Last Price Change": "NA", - "Score": 1827, - "Average G2D Mark": 384, - "Samples": 54 - } - ], - "gpu4747": [ - "Radeon RX Vega 10 Ryzen 7 PRO 3700U w/", - { - "Other names": "AMD Radeon(TM) RX Vega 10 Graphics Ryzen 7 PRO 3700U w/", - "Videocard First Benchmarked": "2023-02-17", - "G3DMark/Price": "NA", - "Overall Rank": "837", - "Last Price Change": "NA", - "Score": 1585, - "Average G2D Mark": 356, - "Samples": 12 - } - ], - "gpu3893": [ - "Radeon RX Vega 11", - { - "Bus Interface": "Integrated", - "Core Clock(s)": "1250 MHz", - "DirectX": "12.1", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon(TM) RX Vega 11 Graphics, AMD Radeon(TM) Vega 11 Graphics, AMD Radeon(TM) Vega 11 Mobile Graphics, AMD Radeon(TM) RX Vega 11 Processor Graphics, AMD Radeon RX Vega 11 Graphics", - "Videocard First Benchmarked": "2018-02-05", - "G3DMark/Price": "2.12", - "Overall Rank": "676", - "Last Price Change": "$1002 USD (2021-05-22)", - "Score": 2120, - "Average G2D Mark": 528, - "Samples": 3686 - } - ], - "gpu4131": [ - "Radeon RX Vega 11 PRD", - { - "Other names": "AMD Radeon(TM) RX Vega 11 Graphics PRD", - "Videocard First Benchmarked": "2019-08-19", - "G3DMark/Price": "NA", - "Overall Rank": "615", - "Last Price Change": "NA", - "Score": 2402, - "Average G2D Mark": 601, - "Samples": 1 - } - ], - "gpu4338": [ - "Radeon RX Vega 11 Processor", - { - "Other names": "AMD Radeon(TM) RX Vega 11 Processor Graphics", - "Videocard First Benchmarked": "2021-01-28", - "G3DMark/Price": "NA", - "Overall Rank": "763", - "Last Price Change": "NA", - "Score": 1829, - "Average G2D Mark": 465, - "Samples": 19 - } - ], - "gpu4745": [ - "Radeon RX Vega 11 Ryzen 5 3350G", - { - "Other names": "AMD Radeon(TM) RX Vega 11 Graphics Ryzen 5 3350G", - "Videocard First Benchmarked": "2023-02-14", - "G3DMark/Price": "NA", - "Overall Rank": "843", - "Last Price Change": "NA", - "Score": 1572, - "Average G2D Mark": 446, - "Samples": 4 - } - ], - "gpu4671": [ - "Radeon RX Vega 11 Ryzen 5 3400G", - { - "Other names": "AMD Radeon(TM) RX Vega 11 Graphics Ryzen 5 3400G", - "Videocard First Benchmarked": "2022-12-23", - "G3DMark/Price": "NA", - "Overall Rank": "672", - "Last Price Change": "NA", - "Score": 2163, - "Average G2D Mark": 496, - "Samples": 174 - } - ], - "gpu4754": [ - "Radeon RX Vega 11 Ryzen 5 3400GE", - { - "Other names": "AMD Radeon(TM) RX Vega 11 Graphics Ryzen 5 3400GE", - "Videocard First Benchmarked": "2023-02-25", - "G3DMark/Price": "NA", - "Overall Rank": "693", - "Last Price Change": "NA", - "Score": 2057, - "Average G2D Mark": 557, - "Samples": 2 - } - ], - "gpu3821": [ - "Radeon RX Vega 56", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "8192 MB", - "Core Clock(s)": "1471 MHz", - "Memory Clock(s)": "1600 MHz", - "DirectX": "12", - "OpenGL": "4.5", - "Max TDP": "210 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon RX Vega 56, Radeon RX Vega 56 Series", - "Videocard First Benchmarked": "2017-09-23", - "G3DMark/Price": "17.78", - "Overall Rank": "124", - "Last Price Change": "$752.99 USD (2022-03-30)", - "Score": 13389, - "Average G2D Mark": 779, - "Samples": 2781 - } - ], - "gpu3808": [ - "Radeon RX Vega 64", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "8192 MB", - "Core Clock(s)": "1247 MHz", - "Memory Clock(s)": "1890 MHz", - "DirectX": "12", - "OpenGL": "4.5", - "Max TDP": "295 W", - "Videocard Category": "Desktop", - "Other names": "Radeon(TM) RX Vega, Radeon RX Vega, AMD Radeon RX Vega 64", - "Videocard First Benchmarked": "2017-09-01", - "G3DMark/Price": "19.30", - "Overall Rank": "107", - "Last Price Change": "$749.99 USD (2022-09-28)", - "Score": 14475, - "Average G2D Mark": 805, - "Samples": 2794 - } - ], - "gpu4012": [ - "Radeon RX Vega 8", - { - "Other names": "Radeon RX Vega 8 Graphics, AMD Radeon RX Vega 8 Graphics", - "Videocard First Benchmarked": "2018-11-11", - "G3DMark/Price": "NA", - "Overall Rank": "870", - "Last Price Change": "NA", - "Score": 1487, - "Average G2D Mark": 391, - "Samples": 21 - } - ], - "gpu3915": [ - "Radeon RX Vega M GH", - { - "Other names": "Radeon RX Vega M GH Graphics", - "Videocard First Benchmarked": "2018-03-20", - "G3DMark/Price": "NA", - "Overall Rank": "283", - "Last Price Change": "NA", - "Score": 6580, - "Average G2D Mark": 789, - "Samples": 330 - } - ], - "gpu3903": [ - "Radeon RX Vega M GL", - { - "Other names": "Radeon RX Vega M GL Graphics", - "Videocard First Benchmarked": "2018-02-26", - "G3DMark/Price": "NA", - "Overall Rank": "467", - "Last Price Change": "NA", - "Score": 3607, - "Average G2D Mark": 486, - "Samples": 201 - } - ], - "gpu4157": [ - "Radeon RX Vega11", - { - "Other names": "AMD Radeon(TM) RX Vega11 Graphics", - "Videocard First Benchmarked": "2019-10-24", - "G3DMark/Price": "NA", - "Overall Rank": "829", - "Last Price Change": "NA", - "Score": 1605, - "Average G2D Mark": 405, - "Samples": 17 - } - ], - "gpu4965": [ - "Radeon RX Vega11 Ryzen 7 3750H", - { - "Other names": "AMD Radeon(TM) RX Vega11 Graphics Ryzen 7 3750H", - "Videocard First Benchmarked": "2023-12-23", - "G3DMark/Price": "NA", - "Overall Rank": "800", - "Last Price Change": "NA", - "Score": 1714, - "Average G2D Mark": 367, - "Samples": 1 - } - ], - "gpu4730": [ - "Radeon RX Vega11 Ryzen 7 Microsoft Surface Edition", - { - "Other names": "AMD Radeon(TM) RX Vega11 Graphics Ryzen 7 Microsoft Surface Edition", - "Videocard First Benchmarked": "2023-01-30", - "G3DMark/Price": "NA", - "Overall Rank": "907", - "Last Price Change": "NA", - "Score": 1357, - "Average G2D Mark": 288, - "Samples": 12 - } - ], - "gpu4290": [ - "Radeon RX590 GME", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "8192 MB", - "Core Clock(s)": "1257 MHz", - "Memory Clock(s)": "8000 MHz", - "DirectX": "12", - "OpenGL": "4.6", - "Max TDP": "175 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon RX590 GME", - "Videocard First Benchmarked": "2020-09-24", - "G3DMark/Price": "NA", - "Overall Rank": "220", - "Last Price Change": "NA", - "Score": 8538, - "Average G2D Mark": 646, - "Samples": 97 - } - ], - "gpu4688": [ - "Radeon Ryzen 3 3250U", - { - "Other names": "AMD Radeon(TM) Graphics Ryzen 3 3250U", - "Videocard First Benchmarked": "2022-12-29", - "G3DMark/Price": "NA", - "Overall Rank": "1188", - "Last Price Change": "NA", - "Score": 807, - "Average G2D Mark": 234, - "Samples": 63 - } - ], - "gpu4654": [ - "Radeon Ryzen 3 5300U", - { - "Other names": "AMD Radeon(TM) Graphics Ryzen 3 5300U", - "Videocard First Benchmarked": "2022-12-21", - "G3DMark/Price": "NA", - "Overall Rank": "839", - "Last Price Change": "NA", - "Score": 1577, - "Average G2D Mark": 461, - "Samples": 173 - } - ], - "gpu4698": [ - "Radeon Ryzen 3 5425U", - { - "Other names": "AMD Radeon (TM) Graphics Ryzen 3 5425U", - "Videocard First Benchmarked": "2023-01-05", - "G3DMark/Price": "NA", - "Overall Rank": "834", - "Last Price Change": "NA", - "Score": 1597, - "Average G2D Mark": 537, - "Samples": 38 - } - ], - "gpu4816": [ - "Radeon Ryzen 3 7330U", - { - "Other names": "AMD Radeon (TM) Graphics Ryzen 3 7330U", - "Videocard First Benchmarked": "2023-05-10", - "G3DMark/Price": "NA", - "Overall Rank": "795", - "Last Price Change": "NA", - "Score": 1724, - "Average G2D Mark": 526, - "Samples": 9 - } - ], - "gpu4811": [ - "Radeon Ryzen 3 PRO 4355GE", - { - "Other names": "Radeon Graphics Ryzen 3 PRO 4355GE", - "Videocard First Benchmarked": "2023-05-03", - "G3DMark/Price": "NA", - "Overall Rank": "889", - "Last Price Change": "NA", - "Score": 1432, - "Average G2D Mark": 523, - "Samples": 5 - } - ], - "gpu4517": [ - "Radeon Ryzen 3 PRO 5450U", - { - "Other names": "AMD Radeon(TM) Graphics Ryzen 3 PRO 5450U", - "Videocard First Benchmarked": "2022-03-06", - "G3DMark/Price": "NA", - "Overall Rank": "777", - "Last Price Change": "NA", - "Score": 1782, - "Average G2D Mark": 540, - "Samples": 58 - } - ], - "gpu4779": [ - "Radeon Ryzen 3 PRO 7330U", - { - "Other names": "AMD Radeon (TM) Graphics Ryzen 3 PRO 7330U", - "Videocard First Benchmarked": "2023-03-15", - "G3DMark/Price": "NA", - "Overall Rank": "674", - "Last Price Change": "NA", - "Score": 2126, - "Average G2D Mark": 671, - "Samples": 6 - } - ], - "gpu4686": [ - "Radeon Ryzen 5 3450U", - { - "Other names": "AMD Radeon(TM) Graphics Ryzen 5 3450U", - "Videocard First Benchmarked": "2022-12-28", - "G3DMark/Price": "NA", - "Overall Rank": "1023", - "Last Price Change": "NA", - "Score": 1057, - "Average G2D Mark": 266, - "Samples": 13 - } - ], - "gpu4494": [ - "Radeon Ryzen 5 4600GE with Radeon Graphics", - { - "Other names": "Radeon Graphics Ryzen 5 4600GE", - "Videocard First Benchmarked": "2022-01-27", - "G3DMark/Price": "NA", - "Overall Rank": "775", - "Last Price Change": "NA", - "Score": 1793, - "Average G2D Mark": 612, - "Samples": 2 - } - ], - "gpu4660": [ - "Radeon Ryzen 5 5500U", - { - "Other names": "AMD Radeon(TM) Graphics Ryzen 5 5500U , AMD Radeon (TM) Graphics Ryzen 5 5500U", - "Videocard First Benchmarked": "2022-12-21", - "G3DMark/Price": "NA", - "Overall Rank": "675", - "Last Price Change": "NA", - "Score": 2125, - "Average G2D Mark": 509, - "Samples": 720 - } - ], - "gpu4555": [ - "Radeon Ryzen 5 5560U", - { - "Other names": "AMD Radeon(TM) Graphics Ryzen 5 5560U", - "Videocard First Benchmarked": "2022-06-13", - "G3DMark/Price": "NA", - "Overall Rank": "707", - "Last Price Change": "NA", - "Score": 2008, - "Average G2D Mark": 603, - "Samples": 127 - } - ], - "gpu4744": [ - "Radeon Ryzen 5 5600GE", - { - "Other names": "AMD Radeon(TM) Graphics Ryzen 5 5600GE", - "Videocard First Benchmarked": "2023-02-14", - "G3DMark/Price": "NA", - "Overall Rank": "594", - "Last Price Change": "NA", - "Score": 2520, - "Average G2D Mark": 725, - "Samples": 18 - } - ], - "gpu4459": [ - "Radeon Ryzen 5 5600H", - { - "Other names": "AMD Radeon(TM) Graphics Ryzen 5 5600H , AMD Radeon (TM) Graphics Ryzen 5 5600H", - "Videocard First Benchmarked": "2021-10-01", - "G3DMark/Price": "NA", - "Overall Rank": "609", - "Last Price Change": "NA", - "Score": 2418, - "Average G2D Mark": 649, - "Samples": 299 - } - ], - "gpu4453": [ - "Radeon Ryzen 5 5600U", - { - "Other names": "AMD Radeon(TM) Graphics Ryzen 5 5600U , AMD Radeon (TM) Graphics Ryzen 5 5600U", - "Videocard First Benchmarked": "2021-09-29", - "G3DMark/Price": "NA", - "Overall Rank": "686", - "Last Price Change": "NA", - "Score": 2092, - "Average G2D Mark": 619, - "Samples": 368 - } - ], - "gpu4666": [ - "Radeon Ryzen 5 5625U", - { - "Other names": "AMD Radeon (TM) Graphics Ryzen 5 5625U", - "Videocard First Benchmarked": "2022-12-22", - "G3DMark/Price": "NA", - "Overall Rank": "670", - "Last Price Change": "NA", - "Score": 2168, - "Average G2D Mark": 577, - "Samples": 372 - } - ], - "gpu4674": [ - "Radeon Ryzen 5 6600H", - { - "Other names": "AMD Radeon(TM) Graphics Ryzen 5 6600H", - "Videocard First Benchmarked": "2022-12-24", - "G3DMark/Price": "NA", - "Overall Rank": "430", - "Last Price Change": "NA", - "Score": 4014, - "Average G2D Mark": 769, - "Samples": 28 - } - ], - "gpu4681": [ - "Radeon Ryzen 5 6600HS Creator Edition", - { - "Other names": "AMD Radeon(TM) Graphics Ryzen 5 6600HS Creator Edition", - "Videocard First Benchmarked": "2022-12-27", - "G3DMark/Price": "NA", - "Overall Rank": "443", - "Last Price Change": "NA", - "Score": 3851, - "Average G2D Mark": 764, - "Samples": 9 - } - ], - "gpu4675": [ - "Radeon Ryzen 5 6600U", - { - "Other names": "AMD Radeon(TM) Graphics Ryzen 5 6600U", - "Videocard First Benchmarked": "2022-12-24", - "G3DMark/Price": "NA", - "Overall Rank": "472", - "Last Price Change": "NA", - "Score": 3565, - "Average G2D Mark": 719, - "Samples": 16 - } - ], - "gpu4728": [ - "Radeon Ryzen 5 7530U", - { - "Other names": "AMD Radeon (TM) Graphics Ryzen 5 7530U", - "Videocard First Benchmarked": "2023-01-28", - "G3DMark/Price": "NA", - "Overall Rank": "659", - "Last Price Change": "NA", - "Score": 2240, - "Average G2D Mark": 654, - "Samples": 302 - } - ], - "gpu4808": [ - "Radeon Ryzen 5 7535HS", - { - "Other names": "AMD Radeon(TM) Graphics Ryzen 5 7535HS", - "Videocard First Benchmarked": "2023-04-28", - "G3DMark/Price": "NA", - "Overall Rank": "422", - "Last Price Change": "NA", - "Score": 4156, - "Average G2D Mark": 812, - "Samples": 5 - } - ], - "gpu4837": [ - "Radeon Ryzen 5 7535U", - { - "Other names": "AMD Radeon(TM) Graphics Ryzen 5 7535U", - "Videocard First Benchmarked": "2023-06-07", - "G3DMark/Price": "NA", - "Overall Rank": "446", - "Last Price Change": "NA", - "Score": 3833, - "Average G2D Mark": 685, - "Samples": 11 - } - ], - "gpu4714": [ - "Radeon Ryzen 5 7600 6-Core", - { - "Other names": "AMD Radeon(TM) Graphics Ryzen 5 7600 6-Core", - "Videocard First Benchmarked": "2023-01-14", - "G3DMark/Price": "NA", - "Overall Rank": "714", - "Last Price Change": "NA", - "Score": 1988, - "Average G2D Mark": 571, - "Samples": 82 - } - ], - "gpu4647": [ - "Radeon Ryzen 5 7600X 6-Core", - { - "Other names": "AMD Radeon(TM) Graphics Ryzen 5 7600X 6-Core", - "Videocard First Benchmarked": "2022-12-20", - "G3DMark/Price": "NA", - "Overall Rank": "789", - "Last Price Change": "NA", - "Score": 1733, - "Average G2D Mark": 558, - "Samples": 65 - } - ], - "gpu4382": [ - "Radeon Ryzen 5 Microsoft Surface Edition", - { - "Other names": "Radeon Graphics Ryzen 5 Microsoft Surface Edition", - "Videocard First Benchmarked": "2021-04-16", - "G3DMark/Price": "NA", - "Overall Rank": "687", - "Last Price Change": "NA", - "Score": 2091, - "Average G2D Mark": 521, - "Samples": 78 - } - ], - "gpu4815": [ - "Radeon Ryzen 5 PRO 4655G", - { - "Other names": "Radeon Graphics Ryzen 5 PRO 4655G", - "Videocard First Benchmarked": "2023-05-08", - "G3DMark/Price": "NA", - "Overall Rank": "619", - "Last Price Change": "NA", - "Score": 2376, - "Average G2D Mark": 710, - "Samples": 6 - } - ], - "gpu4904": [ - "Radeon Ryzen 5 PRO 4655GE", - { - "Other names": "Radeon Graphics Ryzen 5 PRO 4655GE", - "Videocard First Benchmarked": "2023-08-23", - "G3DMark/Price": "NA", - "Overall Rank": "622", - "Last Price Change": "NA", - "Score": 2362, - "Average G2D Mark": 639, - "Samples": 13 - } - ], - "gpu4485": [ - "Radeon Ryzen 5 PRO 5650G", - { - "Other names": "AMD Radeon(TM) Graphics Ryzen 5 PRO 5650G", - "Videocard First Benchmarked": "2021-12-22", - "G3DMark/Price": "NA", - "Overall Rank": "640", - "Last Price Change": "NA", - "Score": 2296, - "Average G2D Mark": 753, - "Samples": 91 - } - ], - "gpu4463": [ - "Radeon Ryzen 5 PRO 5650GE", - { - "Other names": "AMD Radeon(TM) Graphics Ryzen 5 PRO 5650GE", - "Videocard First Benchmarked": "2021-10-12", - "G3DMark/Price": "NA", - "Overall Rank": "643", - "Last Price Change": "NA", - "Score": 2287, - "Average G2D Mark": 765, - "Samples": 67 - } - ], - "gpu4743": [ - "Radeon Ryzen 5 PRO 5675U", - { - "Other names": "AMD Radeon (TM) Graphics Ryzen 5 PRO 5675U", - "Videocard First Benchmarked": "2023-02-13", - "G3DMark/Price": "NA", - "Overall Rank": "772", - "Last Price Change": "NA", - "Score": 1811, - "Average G2D Mark": 575, - "Samples": 45 - } - ], - "gpu4677": [ - "Radeon Ryzen 5 PRO 6650U", - { - "Other names": "AMD Radeon(TM) Graphics Ryzen 5 PRO 6650U", - "Videocard First Benchmarked": "2022-12-25", - "G3DMark/Price": "NA", - "Overall Rank": "463", - "Last Price Change": "NA", - "Score": 3674, - "Average G2D Mark": 723, - "Samples": 54 - } - ], - "gpu4670": [ - "Radeon Ryzen 7 3700U", - { - "Other names": "AMD Radeon(TM) Graphics Ryzen 7 3700U", - "Videocard First Benchmarked": "2022-12-22", - "G3DMark/Price": "NA", - "Overall Rank": "886", - "Last Price Change": "NA", - "Score": 1434, - "Average G2D Mark": 352, - "Samples": 6 - } - ], - "gpu4357": [ - "Radeon Ryzen 7 4700G", - { - "Other names": "Radeon Graphics Ryzen 7 4700G", - "Videocard First Benchmarked": "2021-03-04", - "G3DMark/Price": "NA", - "Overall Rank": "582", - "Last Price Change": "NA", - "Score": 2595, - "Average G2D Mark": 705, - "Samples": 43 - } - ], - "gpu4387": [ - "Radeon Ryzen 7 4700GE", - { - "Other names": "Radeon Graphics Ryzen 7 4700GE", - "Videocard First Benchmarked": "2021-04-24", - "G3DMark/Price": "NA", - "Overall Rank": "576", - "Last Price Change": "NA", - "Score": 2610, - "Average G2D Mark": 661, - "Samples": 11 - } - ], - "gpu4349": [ - "Radeon Ryzen 7 4700U", - { - "Other names": "Radeon Graphics Ryzen 7 4700U", - "Videocard First Benchmarked": "2021-03-02", - "G3DMark/Price": "NA", - "Overall Rank": "695", - "Last Price Change": "NA", - "Score": 2053, - "Average G2D Mark": 542, - "Samples": 690 - } - ], - "gpu4348": [ - "Radeon Ryzen 7 4800H", - { - "Other names": "Radeon Graphics Ryzen 7 4800H", - "Videocard First Benchmarked": "2021-03-02", - "G3DMark/Price": "NA", - "Overall Rank": "451", - "Last Price Change": "NA", - "Score": 3759, - "Average G2D Mark": 518, - "Samples": 185 - } - ], - "gpu4362": [ - "Radeon Ryzen 7 4800HS", - { - "Other names": "Radeon Graphics Ryzen 7 4800HS", - "Videocard First Benchmarked": "2021-03-20", - "G3DMark/Price": "NA", - "Overall Rank": "410", - "Last Price Change": "NA", - "Score": 4394, - "Average G2D Mark": 526, - "Samples": 19 - } - ], - "gpu4356": [ - "Radeon Ryzen 7 4800U", - { - "Other names": "Radeon Graphics Ryzen 7 4800U", - "Videocard First Benchmarked": "2021-03-04", - "G3DMark/Price": "NA", - "Overall Rank": "639", - "Last Price Change": "NA", - "Score": 2300, - "Average G2D Mark": 566, - "Samples": 221 - } - ], - "gpu4650": [ - "Radeon Ryzen 7 5700U", - { - "Other names": "AMD Radeon(TM) Graphics Ryzen 7 5700U", - "Videocard First Benchmarked": "2022-12-20", - "G3DMark/Price": "NA", - "Overall Rank": "642", - "Last Price Change": "NA", - "Score": 2290, - "Average G2D Mark": 519, - "Samples": 470 - } - ], - "gpu4452": [ - "Radeon Ryzen 7 5800H", - { - "Other names": "AMD Radeon(TM) Graphics Ryzen 7 5800H", - "Videocard First Benchmarked": "2021-09-30", - "G3DMark/Price": "NA", - "Overall Rank": "547", - "Last Price Change": "NA", - "Score": 2772, - "Average G2D Mark": 712, - "Samples": 538 - } - ], - "gpu4462": [ - "Radeon Ryzen 7 5800HS", - { - "Other names": "AMD Radeon(TM) Graphics Ryzen 7 5800HS", - "Videocard First Benchmarked": "2022-10-09", - "G3DMark/Price": "NA", - "Overall Rank": "566", - "Last Price Change": "NA", - "Score": 2687, - "Average G2D Mark": 641, - "Samples": 33 - } - ], - "gpu4464": [ - "Radeon Ryzen 7 5800U", - { - "Other names": "AMD Radeon(TM) Graphics Ryzen 7 5800U", - "Videocard First Benchmarked": "2021-10-13", - "G3DMark/Price": "NA", - "Overall Rank": "614", - "Last Price Change": "NA", - "Score": 2404, - "Average G2D Mark": 663, - "Samples": 328 - } - ], - "gpu4668": [ - "Radeon Ryzen 7 5825U", - { - "Other names": "AMD Radeon (TM) Graphics Ryzen 7 5825U", - "Videocard First Benchmarked": "2022-12-22", - "G3DMark/Price": "NA", - "Overall Rank": "617", - "Last Price Change": "NA", - "Score": 2396, - "Average G2D Mark": 615, - "Samples": 298 - } - ], - "gpu4657": [ - "Radeon Ryzen 7 6800H", - { - "Other names": "AMD Radeon(TM) Graphics Ryzen 7 6800H", - "Videocard First Benchmarked": "2022-12-21", - "G3DMark/Price": "NA", - "Overall Rank": "326", - "Last Price Change": "NA", - "Score": 5432, - "Average G2D Mark": 795, - "Samples": 100 - } - ], - "gpu4661": [ - "Radeon Ryzen 7 6800HS", - { - "Other names": "AMD Radeon(TM) Graphics Ryzen 7 6800HS", - "Videocard First Benchmarked": "2022-12-22", - "G3DMark/Price": "NA", - "Overall Rank": "285", - "Last Price Change": "NA", - "Score": 6567, - "Average G2D Mark": 736, - "Samples": 11 - } - ], - "gpu4697": [ - "Radeon Ryzen 7 6800HS Creator Edition", - { - "Other names": "AMD Radeon(TM) Graphics Ryzen 7 6800HS Creator Edition", - "Videocard First Benchmarked": "2023-01-20", - "G3DMark/Price": "NA", - "Overall Rank": "331", - "Last Price Change": "NA", - "Score": 5386, - "Average G2D Mark": 806, - "Samples": 19 - } - ], - "gpu4648": [ - "Radeon Ryzen 7 6800U", - { - "Other names": "AMD Radeon(TM) Graphics Ryzen 7 6800U", - "Videocard First Benchmarked": "2022-12-20", - "G3DMark/Price": "NA", - "Overall Rank": "397", - "Last Price Change": "NA", - "Score": 4546, - "Average G2D Mark": 591, - "Samples": 105 - } - ], - "gpu4717": [ - "Radeon Ryzen 7 7700 8-Core", - { - "Other names": "AMD Radeon(TM) Graphics Ryzen 7 7700 8-Core", - "Videocard First Benchmarked": "2023-01-20", - "G3DMark/Price": "NA", - "Overall Rank": "796", - "Last Price Change": "NA", - "Score": 1723, - "Average G2D Mark": 552, - "Samples": 40 - } - ], - "gpu4651": [ - "Radeon Ryzen 7 7700X 8-Core", - { - "Other names": "AMD Radeon(TM) Graphics Ryzen 7 7700X 8-Core", - "Videocard First Benchmarked": "2022-12-21", - "G3DMark/Price": "NA", - "Overall Rank": "632", - "Last Price Change": "NA", - "Score": 2325, - "Average G2D Mark": 605, - "Samples": 66 - } - ], - "gpu4771": [ - "Radeon Ryzen 7 7730U", - { - "Other names": "AMD Radeon (TM) Graphics Ryzen 7 7730U", - "Videocard First Benchmarked": "2023-03-11", - "G3DMark/Price": "NA", - "Overall Rank": "599", - "Last Price Change": "NA", - "Score": 2499, - "Average G2D Mark": 630, - "Samples": 122 - } - ], - "gpu4764": [ - "Radeon Ryzen 7 7735H", - { - "Other names": "AMD Radeon(TM) Graphics Ryzen 7 7735H", - "Videocard First Benchmarked": "2023-03-07", - "G3DMark/Price": "NA", - "Overall Rank": "316", - "Last Price Change": "NA", - "Score": 5609, - "Average G2D Mark": 822, - "Samples": 3 - } - ], - "gpu4692": [ - "Radeon Ryzen 7 7735HS", - { - "Other names": "AMD Radeon(TM) Graphics Ryzen 7 7735HS", - "Videocard First Benchmarked": "2023-01-01", - "G3DMark/Price": "NA", - "Overall Rank": "333", - "Last Price Change": "NA", - "Score": 5379, - "Average G2D Mark": 834, - "Samples": 293 - } - ], - "gpu4803": [ - "Radeon Ryzen 7 7735U", - { - "Other names": "AMD Radeon(TM) Graphics Ryzen 7 7735U , AMD Radeon (TM) Graphics Ryzen 7 7735U", - "Videocard First Benchmarked": "2023-04-23", - "G3DMark/Price": "NA", - "Overall Rank": "353", - "Last Price Change": "NA", - "Score": 5184, - "Average G2D Mark": 729, - "Samples": 66 - } - ], - "gpu4722": [ - "Radeon Ryzen 7 7736U", - { - "Other names": "AMD Radeon(TM) Graphics Ryzen 7 7736U", - "Videocard First Benchmarked": "2023-01-24", - "G3DMark/Price": "NA", - "Overall Rank": "310", - "Last Price Change": "NA", - "Score": 5790, - "Average G2D Mark": 714, - "Samples": 3 - } - ], - "gpu4790": [ - "Radeon Ryzen 7 7800X3D 8-Core", - { - "Other names": "AMD Radeon(TM) Graphics Ryzen 7 7800X3D 8-Core", - "Videocard First Benchmarked": "2023-04-10", - "G3DMark/Price": "NA", - "Overall Rank": "788", - "Last Price Change": "NA", - "Score": 1738, - "Average G2D Mark": 556, - "Samples": 35 - } - ], - "gpu4386": [ - "Radeon Ryzen 7 Microsoft Surface Edition", - { - "Other names": "Radeon Graphics Ryzen 7 Microsoft Surface Edition", - "Videocard First Benchmarked": "2021-04-18", - "G3DMark/Price": "NA", - "Overall Rank": "647", - "Last Price Change": "NA", - "Score": 2277, - "Average G2D Mark": 519, - "Samples": 61 - } - ], - "gpu4347": [ - "Radeon Ryzen 7 PRO 4750G", - { - "Other names": "Radeon Graphics Ryzen 7 PRO 4750G", - "Videocard First Benchmarked": "2021-03-02", - "G3DMark/Price": "NA", - "Overall Rank": "579", - "Last Price Change": "NA", - "Score": 2602, - "Average G2D Mark": 691, - "Samples": 182 - } - ], - "gpu4371": [ - "Radeon Ryzen 7 PRO 4750GE", - { - "Other names": "Radeon Graphics Ryzen 7 PRO 4750GE", - "Videocard First Benchmarked": "2021-03-19", - "G3DMark/Price": "NA", - "Overall Rank": "641", - "Last Price Change": "NA", - "Score": 2294, - "Average G2D Mark": 625, - "Samples": 50 - } - ], - "gpu4354": [ - "Radeon Ryzen 7 PRO 4750U", - { - "Other names": "Radeon Graphics Ryzen 7 PRO 4750U", - "Videocard First Benchmarked": "2021-03-03", - "G3DMark/Price": "NA", - "Overall Rank": "696", - "Last Price Change": "NA", - "Score": 2048, - "Average G2D Mark": 543, - "Samples": 274 - } - ], - "gpu4725": [ - "Radeon Ryzen 7 PRO 5875U", - { - "Other names": "AMD Radeon (TM) Graphics Ryzen 7 PRO 5875U", - "Videocard First Benchmarked": "2023-01-26", - "G3DMark/Price": "NA", - "Overall Rank": "721", - "Last Price Change": "NA", - "Score": 1967, - "Average G2D Mark": 578, - "Samples": 25 - } - ], - "gpu4685": [ - "Radeon Ryzen 7 PRO 6850H", - { - "Other names": "AMD Radeon(TM) Graphics Ryzen 7 PRO 6850H", - "Videocard First Benchmarked": "2022-12-28", - "G3DMark/Price": "NA", - "Overall Rank": "312", - "Last Price Change": "NA", - "Score": 5757, - "Average G2D Mark": 755, - "Samples": 20 - } - ], - "gpu4691": [ - "Radeon Ryzen 7 PRO 6850HS", - { - "Other names": "AMD Radeon(TM) Graphics Ryzen 7 PRO 6850HS", - "Videocard First Benchmarked": "2022-12-31", - "G3DMark/Price": "NA", - "Overall Rank": "349", - "Last Price Change": "NA", - "Score": 5212, - "Average G2D Mark": 861, - "Samples": 9 - } - ], - "gpu4662": [ - "Radeon Ryzen 7 PRO 6850U", - { - "Other names": "AMD Radeon(TM) Graphics Ryzen 7 PRO 6850U", - "Videocard First Benchmarked": "2022-12-21", - "G3DMark/Price": "NA", - "Overall Rank": "354", - "Last Price Change": "NA", - "Score": 5174, - "Average G2D Mark": 760, - "Samples": 144 - } - ], - "gpu4708": [ - "Radeon Ryzen 7 PRO 6860Z", - { - "Other names": "AMD Radeon(TM) Graphics Ryzen 7 PRO 6860Z", - "Videocard First Benchmarked": "2023-01-10", - "G3DMark/Price": "NA", - "Overall Rank": "390", - "Last Price Change": "NA", - "Score": 4637, - "Average G2D Mark": 705, - "Samples": 13 - } - ], - "gpu4778": [ - "Radeon Ryzen 7 PRO 7730U", - { - "Other names": "AMD Radeon (TM) Graphics Ryzen 7 PRO 7730U", - "Videocard First Benchmarked": "2023-03-23", - "G3DMark/Price": "NA", - "Overall Rank": "596", - "Last Price Change": "NA", - "Score": 2517, - "Average G2D Mark": 623, - "Samples": 26 - } - ], - "gpu4825": [ - "Radeon Ryzen 7 PRO 7745 8-Core", - { - "Other names": "AMD Radeon(TM) Graphics Ryzen 7 PRO 7745 8-Core", - "Videocard First Benchmarked": "2023-05-31", - "G3DMark/Price": "NA", - "Overall Rank": "871", - "Last Price Change": "NA", - "Score": 1487, - "Average G2D Mark": 486, - "Samples": 2 - } - ], - "gpu4361": [ - "Radeon Ryzen 9 4900H", - { - "Other names": "Radeon Graphics Ryzen 9 4900H", - "Videocard First Benchmarked": "2021-06-08", - "G3DMark/Price": "NA", - "Overall Rank": "586", - "Last Price Change": "NA", - "Score": 2561, - "Average G2D Mark": 663, - "Samples": 50 - } - ], - "gpu4359": [ - "Radeon Ryzen 9 4900HS", - { - "Other names": "Radeon Graphics Ryzen 9 4900HS", - "Videocard First Benchmarked": "2021-05-05", - "G3DMark/Price": "NA", - "Overall Rank": "259", - "Last Price Change": "NA", - "Score": 7419, - "Average G2D Mark": 366, - "Samples": 11 - } - ], - "gpu4680": [ - "Radeon Ryzen 9 6900HS", - { - "Other names": "AMD Radeon(TM) Graphics Ryzen 9 6900HS", - "Videocard First Benchmarked": "2022-12-27", - "G3DMark/Price": "NA", - "Overall Rank": "255", - "Last Price Change": "NA", - "Score": 7515, - "Average G2D Mark": 671, - "Samples": 16 - } - ], - "gpu4653": [ - "Radeon Ryzen 9 6900HX", - { - "Other names": "AMD Radeon(TM) Graphics Ryzen 9 6900HX", - "Videocard First Benchmarked": "2022-12-21", - "G3DMark/Price": "NA", - "Overall Rank": "343", - "Last Price Change": "NA", - "Score": 5293, - "Average G2D Mark": 831, - "Samples": 215 - } - ], - "gpu4716": [ - "Radeon Ryzen 9 7900 12-Core", - { - "Other names": "AMD Radeon(TM) Graphics Ryzen 9 7900 12-Core", - "Videocard First Benchmarked": "2023-01-20", - "G3DMark/Price": "NA", - "Overall Rank": "559", - "Last Price Change": "NA", - "Score": 2711, - "Average G2D Mark": 592, - "Samples": 65 - } - ], - "gpu4659": [ - "Radeon Ryzen 9 7900X 12-Core", - { - "Other names": "AMD Radeon(TM) Graphics Ryzen 9 7900X 12-Core", - "Videocard First Benchmarked": "2022-12-21", - "G3DMark/Price": "NA", - "Overall Rank": "516", - "Last Price Change": "NA", - "Score": 3094, - "Average G2D Mark": 601, - "Samples": 81 - } - ], - "gpu4652": [ - "Radeon Ryzen 9 7950X 16-Core", - { - "Other names": "AMD Radeon(TM) Graphics Ryzen 9 7950X 16-Core", - "Videocard First Benchmarked": "2022-12-21", - "G3DMark/Price": "NA", - "Overall Rank": "340", - "Last Price Change": "NA", - "Score": 5305, - "Average G2D Mark": 625, - "Samples": 113 - } - ], - "gpu4761": [ - "Radeon Ryzen 9 7950X3D 16-Core", - { - "Other names": "AMD Radeon(TM) Graphics Ryzen 9 7950X3D 16-Core", - "Videocard First Benchmarked": "2023-03-03", - "G3DMark/Price": "NA", - "Overall Rank": "812", - "Last Price Change": "NA", - "Score": 1647, - "Average G2D Mark": 537, - "Samples": 32 - } - ], - "gpu4729": [ - "Radeon Ryzen 9 PRO 6950HS", - { - "Other names": "AMD Radeon(TM) Graphics Ryzen 9 PRO 6950HS", - "Videocard First Benchmarked": "2023-01-30", - "G3DMark/Price": "NA", - "Overall Rank": "394", - "Last Price Change": "NA", - "Score": 4558, - "Average G2D Mark": 807, - "Samples": 7 - } - ], - "gpu4826": [ - "Radeon Ryzen 9 PRO 7945 12-Core", - { - "Other names": "AMD Radeon(TM) Graphics Ryzen 9 PRO 7945 12-Core", - "Videocard First Benchmarked": "2023-05-25", - "G3DMark/Price": "NA", - "Overall Rank": "791", - "Last Price Change": "NA", - "Score": 1731, - "Average G2D Mark": 586, - "Samples": 6 - } - ], - "gpu4901": [ - "Radeon Ryzen Embedded R2514", - { - "Other names": "AMD Radeon(TM) Graphics Ryzen Embedded R2514", - "Videocard First Benchmarked": "2023-08-16", - "G3DMark/Price": "NA", - "Overall Rank": "873", - "Last Price Change": "NA", - "Score": 1482, - "Average G2D Mark": 396, - "Samples": 4 - } - ], - "gpu4907": [ - "Radeon Ryzen Embedded R2544", - { - "Other names": "AMD Radeon(TM) Graphics Ryzen Embedded R2544", - "Videocard First Benchmarked": "2023-08-24", - "G3DMark/Price": "NA", - "Overall Rank": "750", - "Last Price Change": "NA", - "Score": 1865, - "Average G2D Mark": 443, - "Samples": 5 - } - ], - "gpu4544": [ - "Radeon Ryzen Embedded V2516", - { - "Other names": "Radeon Graphics Ryzen Embedded V2516", - "Videocard First Benchmarked": "2022-05-15", - "G3DMark/Price": "NA", - "Overall Rank": "857", - "Last Price Change": "NA", - "Score": 1528, - "Average G2D Mark": 532, - "Samples": 3 - } - ], - "gpu4375": [ - "Radeon Ryzen Embedded V2718", - { - "Other names": "Radeon Graphics Ryzen Embedded V2718", - "Videocard First Benchmarked": "2021-03-30", - "G3DMark/Price": "NA", - "Overall Rank": "710", - "Last Price Change": "NA", - "Score": 1999, - "Average G2D Mark": 554, - "Samples": 11 - } - ], - "gpu4389": [ - "Radeon Ryzen Embedded V2748", - { - "Other names": "Radeon Graphics Ryzen Embedded V2748", - "Videocard First Benchmarked": "2021-05-03", - "G3DMark/Price": "NA", - "Overall Rank": "757", - "Last Price Change": "NA", - "Score": 1842, - "Average G2D Mark": 600, - "Samples": 2 - } - ], - "gpu4071": [ - "Radeon Sky 500", - { - "Other names": "Radeon Sky 500", - "Videocard First Benchmarked": "2019-04-19", - "G3DMark/Price": "NA", - "Overall Rank": "383", - "Last Price Change": "NA", - "Score": 4764, - "Average G2D Mark": 551, - "Samples": 10 - } - ], - "gpu3473": [ - "Radeon TM R9 A360", - { - "Other names": "AMD Radeon TM R9 A360", - "Videocard First Benchmarked": "2016-04-10", - "G3DMark/Price": "NA", - "Overall Rank": "683", - "Last Price Change": "NA", - "Score": 2105, - "Average G2D Mark": 718, - "Samples": 3 - } - ], - "gpu1751": [ - "Radeon VE", - { - "Other names": "Radeon VE", - "Videocard First Benchmarked": "2009-04-11", - "G3DMark/Price": "NA", - "Overall Rank": "2473", - "Last Price Change": "NA", - "Score": 2, - "Average G2D Mark": 36, - "Samples": 1 - } - ], - "gpu4074": [ - "Radeon Vega 10", - { - "Other names": "AMD Radeon(TM) Vega 10 Graphics", - "Videocard First Benchmarked": "2019-04-25", - "G3DMark/Price": "NA", - "Overall Rank": "846", - "Last Price Change": "NA", - "Score": 1568, - "Average G2D Mark": 371, - "Samples": 221 - } - ], - "gpu3857": [ - "Radeon Vega 10 Mobile", - { - "Other names": "AMD Radeon(TM) Vega 10 Mobile Graphics, AMD Radeon(TM) RX Vega 10 Graphics, Radeon RX Vega, AMD Radeon(TM) Vega 10 Graphics", - "Videocard First Benchmarked": "2017-12-07", - "G3DMark/Price": "NA", - "Overall Rank": "875", - "Last Price Change": "NA", - "Score": 1481, - "Average G2D Mark": 340, - "Samples": 427 - } - ], - "gpu4727": [ - "Radeon Vega 10 Ryzen 7 PRO 3700U w/", - { - "Other names": "AMD Radeon(TM) Vega 10 Graphics Ryzen 7 PRO 3700U w/", - "Videocard First Benchmarked": "2023-01-27", - "G3DMark/Price": "NA", - "Overall Rank": "824", - "Last Price Change": "NA", - "Score": 1621, - "Average G2D Mark": 360, - "Samples": 19 - } - ], - "gpu4136": [ - "Radeon Vega 11", - { - "Other names": "AMD Radeon(TM) Vega 11 Graphics", - "Videocard First Benchmarked": "2019-09-01", - "G3DMark/Price": "NA", - "Overall Rank": "766", - "Last Price Change": "NA", - "Score": 1821, - "Average G2D Mark": 494, - "Samples": 443 - } - ], - "gpu4770": [ - "Radeon Vega 11 Ryzen 5 PRO 3350G", - { - "Other names": "AMD Radeon(TM) Vega 11 Graphics Ryzen 5 PRO 3350G", - "Videocard First Benchmarked": "2023-03-11", - "G3DMark/Price": "NA", - "Overall Rank": "701", - "Last Price Change": "NA", - "Score": 2023, - "Average G2D Mark": 531, - "Samples": 3 - } - ], - "gpu4724": [ - "Radeon Vega 11 Ryzen 5 PRO 3400G", - { - "Other names": "AMD Radeon(TM) Vega 11 Graphics Ryzen 5 PRO 3400G", - "Videocard First Benchmarked": "2023-01-26", - "G3DMark/Price": "NA", - "Overall Rank": "723", - "Last Price Change": "NA", - "Score": 1960, - "Average G2D Mark": 453, - "Samples": 20 - } - ], - "gpu4703": [ - "Radeon Vega 11 Ryzen 5 PRO 3400GE w/", - { - "Other names": "AMD Radeon(TM) Vega 11 Graphics Ryzen 5 PRO 3400GE w/", - "Videocard First Benchmarked": "2023-01-09", - "G3DMark/Price": "NA", - "Overall Rank": "755", - "Last Price Change": "NA", - "Score": 1854, - "Average G2D Mark": 463, - "Samples": 26 - } - ], - "gpu4260": [ - "Radeon Vega 2", - { - "Other names": "AMD Radeon(TM) Vega 2 Graphics", - "Videocard First Benchmarked": "2020-09-03", - "G3DMark/Price": "NA", - "Overall Rank": "1524", - "Last Price Change": "NA", - "Score": 506, - "Average G2D Mark": 244, - "Samples": 11 - } - ], - "gpu3926": [ - "Radeon Vega 3", - { - "Other names": "AMD Radeon(TM) Vega 3 Graphics, Radeon(TM) Vega 3 Graphics, AMDRadeonT Vega 3 Graphics", - "Videocard First Benchmarked": "2018-04-18", - "G3DMark/Price": "0.33", - "Overall Rank": "1125", - "Last Price Change": "$2677.99 USD (2021-09-09)", - "Score": 892, - "Average G2D Mark": 308, - "Samples": 2507 - } - ], - "gpu4690": [ - "Radeon Vega 3 3020e", - { - "Other names": "AMD Radeon(TM) Vega 3 Graphics 3020e", - "Videocard First Benchmarked": "2022-12-29", - "G3DMark/Price": "NA", - "Overall Rank": "1397", - "Last Price Change": "NA", - "Score": 605, - "Average G2D Mark": 184, - "Samples": 10 - } - ], - "gpu4700": [ - "Radeon Vega 3 Athlon 3000G", - { - "Other names": "AMD Radeon(TM) Vega 3 Graphics Athlon 3000G", - "Videocard First Benchmarked": "2023-01-05", - "G3DMark/Price": "NA", - "Overall Rank": "1039", - "Last Price Change": "NA", - "Score": 1020, - "Average G2D Mark": 328, - "Samples": 51 - } - ], - "gpu4664": [ - "Radeon Vega 3 Athlon 300GE", - { - "Other names": "AMD Radeon(TM) Vega 3 Graphics Athlon 300GE", - "Videocard First Benchmarked": "2022-12-22", - "G3DMark/Price": "NA", - "Overall Rank": "1029", - "Last Price Change": "NA", - "Score": 1044, - "Average G2D Mark": 349, - "Samples": 2 - } - ], - "gpu4734": [ - "Radeon Vega 3 Athlon 300U", - { - "Other names": "AMD Radeon(TM) Vega 3 Graphics Athlon 300U", - "Videocard First Benchmarked": "2023-02-02", - "G3DMark/Price": "NA", - "Overall Rank": "1124", - "Last Price Change": "NA", - "Score": 892, - "Average G2D Mark": 217, - "Samples": 16 - } - ], - "gpu4812": [ - "Radeon Vega 3 Athlon 320GE", - { - "Other names": "AMD Radeon(TM) Vega 3 Graphics Athlon 320GE", - "Videocard First Benchmarked": "2023-05-03", - "G3DMark/Price": "NA", - "Overall Rank": "1284", - "Last Price Change": "NA", - "Score": 715, - "Average G2D Mark": 286, - "Samples": 6 - } - ], - "gpu4694": [ - "Radeon Vega 3 Athlon Gold 3150U", - { - "Other names": "AMD Radeon(TM) Vega 3 Graphics Athlon Gold 3150U", - "Videocard First Benchmarked": "2023-01-02", - "G3DMark/Price": "NA", - "Overall Rank": "1408", - "Last Price Change": "NA", - "Score": 594, - "Average G2D Mark": 214, - "Samples": 4 - } - ], - "gpu4701": [ - "Radeon Vega 3 Athlon Silver 3050e", - { - "Other names": "AMD Radeon(TM) Vega 3 Graphics Athlon Silver 3050e", - "Videocard First Benchmarked": "2023-01-06", - "G3DMark/Price": "NA", - "Overall Rank": "1468", - "Last Price Change": "NA", - "Score": 552, - "Average G2D Mark": 187, - "Samples": 7 - } - ], - "gpu4707": [ - "Radeon Vega 3 Athlon Silver 3050U", - { - "Other names": "AMD Radeon(TM) Vega 3 Graphics Athlon Silver 3050U", - "Videocard First Benchmarked": "2023-01-10", - "G3DMark/Price": "NA", - "Overall Rank": "1142", - "Last Price Change": "NA", - "Score": 856, - "Average G2D Mark": 235, - "Samples": 5 - } - ], - "gpu3871": [ - "Radeon Vega 3 Mobile", - { - "Other names": "AMD Radeon(TM) Vega 3 Mobile Graphics", - "Videocard First Benchmarked": "2017-12-25", - "G3DMark/Price": "NA", - "Overall Rank": "1037", - "Last Price Change": "NA", - "Score": 1025, - "Average G2D Mark": 316, - "Samples": 43 - } - ], - "gpu4693": [ - "Radeon Vega 3 Ryzen 3 3200U", - { - "Other names": "AMD Radeon(TM) Vega 3 Graphics Ryzen 3 3200U", - "Videocard First Benchmarked": "2023-01-01", - "G3DMark/Price": "NA", - "Overall Rank": "1153", - "Last Price Change": "NA", - "Score": 844, - "Average G2D Mark": 258, - "Samples": 70 - } - ], - "gpu4696": [ - "Radeon Vega 3 Ryzen 3 3250U", - { - "Other names": "AMD Radeon(TM) Vega 3 Graphics Ryzen 3 3250U", - "Videocard First Benchmarked": "2023-01-03", - "G3DMark/Price": "NA", - "Overall Rank": "1175", - "Last Price Change": "NA", - "Score": 823, - "Average G2D Mark": 245, - "Samples": 32 - } - ], - "gpu4777": [ - "Radeon Vega 3 Ryzen Embedded R1305G", - { - "Other names": "AMD Radeon(TM) Vega 3 Graphics Ryzen Embedded R1305G", - "Videocard First Benchmarked": "2023-02-16", - "G3DMark/Price": "NA", - "Overall Rank": "1668", - "Last Price Change": "NA", - "Score": 359, - "Average G2D Mark": 151, - "Samples": 3 - } - ], - "gpu4687": [ - "Radeon Vega 3 Ryzen Embedded R1505G", - { - "Other names": "AMD Radeon(TM) Vega 3 Graphics Ryzen Embedded R1505G", - "Videocard First Benchmarked": "2022-12-28", - "G3DMark/Price": "NA", - "Overall Rank": "1220", - "Last Price Change": "NA", - "Score": 772, - "Average G2D Mark": 282, - "Samples": 9 - } - ], - "gpu3937": [ - "Radeon Vega 6", - { - "Other names": "AMD Radeon(TM) Vega 6 Graphics, Radeon(TM) Vega 6 Graphics", - "Videocard First Benchmarked": "2018-05-15", - "G3DMark/Price": "0.73", - "Overall Rank": "922", - "Last Price Change": "$1799.99 USD (2019-09-23)", - "Score": 1309, - "Average G2D Mark": 345, - "Samples": 375 - } - ], - "gpu4746": [ - "Radeon Vega 6 Ryzen 3 3300U", - { - "Other names": "AMD Radeon(TM) Vega 6 Graphics Ryzen 3 3300U", - "Videocard First Benchmarked": "2023-02-16", - "G3DMark/Price": "NA", - "Overall Rank": "925", - "Last Price Change": "NA", - "Score": 1301, - "Average G2D Mark": 331, - "Samples": 12 - } - ], - "gpu4678": [ - "Radeon Vega 6 Ryzen 3 3350U", - { - "Other names": "AMD Radeon(TM) Vega 6 Graphics Ryzen 3 3350U", - "Videocard First Benchmarked": "2022-12-26", - "G3DMark/Price": "NA", - "Overall Rank": "858", - "Last Price Change": "NA", - "Score": 1527, - "Average G2D Mark": 334, - "Samples": 9 - } - ], - "gpu4715": [ - "Radeon Vega 6 Ryzen 3 PRO 3300U w/", - { - "Other names": "AMD Radeon(TM) Vega 6 Graphics Ryzen 3 PRO 3300U w/", - "Videocard First Benchmarked": "2023-01-16", - "G3DMark/Price": "NA", - "Overall Rank": "897", - "Last Price Change": "NA", - "Score": 1404, - "Average G2D Mark": 316, - "Samples": 11 - } - ], - "gpu3895": [ - "Radeon Vega 8", - { - "Bus Interface": "Integrated", - "Core Clock(s)": "1100 MHz", - "DirectX": "12.1", - "OpenGL": "4.6", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon(TM) Vega 8 Graphics, Radeon(TM) Vega 8 Graphics", - "Videocard First Benchmarked": "2018-02-07", - "G3DMark/Price": "12.50", - "Overall Rank": "836", - "Last Price Change": "$126.86 USD (2020-03-16)", - "Score": 1586, - "Average G2D Mark": 415, - "Samples": 8167 - } - ], - "gpu3845": [ - "Radeon Vega 8 Mobile", - { - "Other names": "AMD Radeon(TM) Vega 8 Mobile Graphics", - "Videocard First Benchmarked": "2017-11-12", - "G3DMark/Price": "NA", - "Overall Rank": "894", - "Last Price Change": "NA", - "Score": 1414, - "Average G2D Mark": 343, - "Samples": 429 - } - ], - "gpu4673": [ - "Radeon Vega 8 Ryzen 3 3200G", - { - "Other names": "AMD Radeon(TM) Vega 8 Graphics Ryzen 3 3200G", - "Videocard First Benchmarked": "2022-12-23", - "G3DMark/Price": "NA", - "Overall Rank": "730", - "Last Price Change": "NA", - "Score": 1938, - "Average G2D Mark": 463, - "Samples": 144 - } - ], - "gpu4753": [ - "Radeon Vega 8 Ryzen 3 PRO 3200G", - { - "Other names": "AMD Radeon(TM) Vega 8 Graphics Ryzen 3 PRO 3200G", - "Videocard First Benchmarked": "2023-02-24", - "G3DMark/Price": "NA", - "Overall Rank": "787", - "Last Price Change": "NA", - "Score": 1741, - "Average G2D Mark": 407, - "Samples": 6 - } - ], - "gpu4842": [ - "Radeon Vega 8 Ryzen 3 PRO 3200GE w/", - { - "Other names": "AMD Radeon(TM) Vega 8 Graphics Ryzen 3 PRO 3200GE w/", - "Videocard First Benchmarked": "2023-06-13", - "G3DMark/Price": "NA", - "Overall Rank": "823", - "Last Price Change": "NA", - "Score": 1622, - "Average G2D Mark": 461, - "Samples": 2 - } - ], - "gpu4709": [ - "Radeon Vega 8 Ryzen 5 3450U", - { - "Other names": "AMD Radeon(TM) Vega 8 Graphics Ryzen 5 3450U", - "Videocard First Benchmarked": "2023-01-10", - "G3DMark/Price": "NA", - "Overall Rank": "943", - "Last Price Change": "NA", - "Score": 1236, - "Average G2D Mark": 316, - "Samples": 44 - } - ], - "gpu4667": [ - "Radeon Vega 8 Ryzen 5 3500U", - { - "Other names": "AMD Radeon(TM) Vega 8 Graphics Ryzen 5 3500U", - "Videocard First Benchmarked": "2022-12-22", - "G3DMark/Price": "NA", - "Overall Rank": "899", - "Last Price Change": "NA", - "Score": 1397, - "Average G2D Mark": 333, - "Samples": 360 - } - ], - "gpu4663": [ - "Radeon Vega 8 Ryzen 5 3550H", - { - "Other names": "AMD Radeon(TM) Vega 8 Graphics Ryzen 5 3550H", - "Videocard First Benchmarked": "2022-12-22", - "G3DMark/Price": "NA", - "Overall Rank": "809", - "Last Price Change": "NA", - "Score": 1662, - "Average G2D Mark": 352, - "Samples": 34 - } - ], - "gpu4695": [ - "Radeon Vega 8 Ryzen 5 PRO 3500U w/", - { - "Other names": "AMD Radeon(TM) Vega 8 Graphics Ryzen 5 PRO 3500U w/", - "Videocard First Benchmarked": "2023-01-02", - "G3DMark/Price": "NA", - "Overall Rank": "896", - "Last Price Change": "NA", - "Score": 1405, - "Average G2D Mark": 341, - "Samples": 35 - } - ], - "gpu4156": [ - "Radeon Vega 9", - { - "Other names": "AMD Radeon(TM) Vega 9 Graphics", - "Videocard First Benchmarked": "2019-10-14", - "G3DMark/Price": "NA", - "Overall Rank": "838", - "Last Price Change": "NA", - "Score": 1582, - "Average G2D Mark": 408, - "Samples": 53 - } - ], - "gpu4805": [ - "Radeon Vega 9 Ryzen 5 3550H", - { - "Other names": "AMD Radeon(TM) Vega 9 Graphics Ryzen 5 3550H", - "Videocard First Benchmarked": "2023-04-24", - "G3DMark/Price": "NA", - "Overall Rank": "929", - "Last Price Change": "NA", - "Score": 1287, - "Average G2D Mark": 370, - "Samples": 3 - } - ], - "gpu4742": [ - "Radeon Vega 9 Ryzen 5 Microsoft Surface Edition", - { - "Other names": "AMD Radeon(TM) Vega 9 Graphics Ryzen 5 Microsoft Surface Edition", - "Videocard First Benchmarked": "2023-02-12", - "G3DMark/Price": "NA", - "Overall Rank": "869", - "Last Price Change": "NA", - "Score": 1492, - "Average G2D Mark": 358, - "Samples": 10 - } - ], - "gpu3775": [ - "Radeon Vega Frontier Edition", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "16384 MB", - "Core Clock(s)": "1382 MHz", - "Memory Clock(s)": "945 MHz", - "DirectX": "12", - "OpenGL": "4.5", - "Max TDP": "350 W", - "Videocard Category": "Desktop", - "Other names": "Radeon Vega Frontier Edition", - "Videocard First Benchmarked": "2017-06-28", - "G3DMark/Price": "7.97", - "Overall Rank": "125", - "Last Price Change": "$1679.99 USD (2022-04-10)", - "Score": 13389, - "Average G2D Mark": 758, - "Samples": 157 - } - ], - "gpu4050": [ - "Radeon VII", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "16384 MB", - "Core Clock(s)": "1400 MHz", - "DirectX": "12", - "OpenGL": "4.6", - "Max TDP": "300 W", - "Videocard Category": "Desktop", - "Other names": "AMD Radeon VII", - "Videocard First Benchmarked": "2019-02-13", - "G3DMark/Price": "8.81", - "Overall Rank": "75", - "Last Price Change": "$1899.95 USD (2022-03-30)", - "Score": 16737, - "Average G2D Mark": 788, - "Samples": 730 - } - ], - "gpu609": [ - "Radeon X1050", - { - "Bus Interface": "PCI-E x16", - "Max Memory Size": "256 MB", - "Core Clock(s)": "400 MHz", - "Memory Clock(s)": "666 MHz", - "DirectX": "9", - "OpenGL": "2", - "Videocard Category": "Desktop", - "Other names": "ATI Radeon X1050, Diamond Radeon X1050, GigaByte Radeon X1050, Radeon X1050, Sapphire Radeon X1050, VisionTek Radeon X1050, ATI Radeon X1050 Secondary, ASUS X1050 Series, ATI Radeon X1050 Series, ATI Radeon X1050 Series Secondary, Radeon X1050 Secondary, ASUS X1050 Series Secondary, Radeon X1050 Series (Omega 3.8.442), Radeon X1050 Series Secondary (Omega 3.8.442)", - "Videocard First Benchmarked": "2009-04-19", - "G3DMark/Price": "NA", - "Overall Rank": "2175", - "Last Price Change": "NA", - "Score": 49, - "Average G2D Mark": 245, - "Samples": 49 - } - ], - "gpu610": [ - "Radeon X1200", - { - "Other names": "ATI Radeon X1200", - "Videocard First Benchmarked": "2010-10-02", - "G3DMark/Price": "NA", - "Overall Rank": "2253", - "Last Price Change": "NA", - "Score": 33, - "Average G2D Mark": 169, - "Samples": 77 - } - ], - "gpu611": [ - "Radeon X1250", - { - "Other names": "ATI Radeon X1250", - "Videocard First Benchmarked": "2009-05-07", - "G3DMark/Price": "NA", - "Overall Rank": "2226", - "Last Price Change": "NA", - "Score": 37, - "Average G2D Mark": 199, - "Samples": 108 - } - ], - "gpu612": [ - "Radeon X1270", - { - "Other names": "ATI Radeon X1270", - "Videocard First Benchmarked": "2010-10-23", - "G3DMark/Price": "NA", - "Overall Rank": "2259", - "Last Price Change": "NA", - "Score": 31, - "Average G2D Mark": 169, - "Samples": 63 - } - ], - "gpu154": [ - "Radeon X1300", - { - "Bus Interface": "AGP 8x, PCI, PCI-E x16", - "Max Memory Size": "256 MB", - "Core Clock(s)": "450 MHz", - "Memory Clock(s)": "250 MHz", - "DirectX": "9.0c", - "OpenGL": "2", - "Videocard Category": "Desktop", - "Other names": "128MB ATI Radeon X1300, ASUS X1300, VisionTek Radeon X1300, VisionTek Radeon X1300 Secondary, 128MB ATI Radeon X1300 Secondary, Radeon X1300 Series, ASUS X1300 Series, 3DP Edition v10.04 (Radeon X1300 Series)", - "Videocard First Benchmarked": "2009-07-13", - "G3DMark/Price": "0.61", - "Overall Rank": "2147", - "Last Price Change": "$95.78 USD (2022-04-15)", - "Score": 58, - "Average G2D Mark": 237, - "Samples": 18 - } - ], - "gpu159": [ - "Radeon X1300 PRO", - { - "Other names": "256MB ATI Radeon X1300PRO, 256MB ATI Radeon X1300PRO Secondary, GIGABYTE Radeon X1300 Pro", - "Videocard First Benchmarked": "2009-11-07", - "G3DMark/Price": "NA", - "Overall Rank": "2064", - "Last Price Change": "NA", - "Score": 84, - "Average G2D Mark": 313, - "Samples": 54 - } - ], - "gpu613": [ - "Radeon X1550", - { - "Bus Interface": "AGP 8x, PCI, PCI-E x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "550 MHz", - "Memory Clock(s)": "400 MHz", - "DirectX": "9.0c", - "OpenGL": "2", - "Max TDP": "27 W", - "Videocard Category": "Desktop", - "Other names": "ASUS Radeon X1550, ATI Radeon X1550, Connect3D Radeon X1550, Diamond Radeon X1550, GeCube Radeon X1550, GIGABYTE Radeon X1550, HIS Radeon X1550, MSI Radeon X1550, Radeon X1550 (support up to 512MB HM), ASUS X1550 Series, ATI Radeon X1550 Secondary, Radeon X1300 / X1550 Series", - "Videocard First Benchmarked": "2009-07-11", - "G3DMark/Price": "0.43", - "Overall Rank": "2127", - "Last Price Change": "$155 USD (2021-06-17)", - "Score": 67, - "Average G2D Mark": 253, - "Samples": 31 - } - ], - "gpu1752": [ - "Radeon X1550 64-bit", - { - "Other names": "Radeon X1550 64-bit, Radeon X1550 64-bit Secondary", - "Videocard First Benchmarked": "2009-12-17", - "G3DMark/Price": "NA", - "Overall Rank": "2181", - "Last Price Change": "NA", - "Score": 48, - "Average G2D Mark": 257, - "Samples": 41 - } - ], - "gpu1753": [ - "Radeon X1600", - { - "Other names": "Radeon X1600", - "Videocard First Benchmarked": "2009-05-24", - "G3DMark/Price": "NA", - "Overall Rank": "2172", - "Last Price Change": "NA", - "Score": 49, - "Average G2D Mark": 209, - "Samples": 5 - } - ], - "gpu2494": [ - "Radeon X1600 Pro", - { - "Bus Interface": "AGP 8x,PCI-E x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "500 MHz", - "Memory Clock(s)": "390 MHz", - "DirectX": "9.0c", - "OpenGL": "2", - "Max TDP": "41 W", - "Videocard Category": "Desktop", - "Other names": "ASUS X1600Pro, Diamond X1600 PRO 512MB AGP, Diamond X1600 PRO 512MB PCI-E, GIGABYTE Radeon X1600 PRO, Sapphire RADEON X1600 PRO, VisionTek Radeon X1600 Pro, Radeon X1600/X1650 Series, Sapphire RADEON X1600 PRO Secondary, Radeon X1600 Series, ASUS X1600 Series, Radeon X1600 Series (Omega 3.8.421), GIGABYTE Radeon X1600 PRO Secondary, GIGABYTE Radeon X1600 Series, GIGABYTE Radeon X1600 Series Secondary", - "Videocard First Benchmarked": "2012-10-22", - "G3DMark/Price": "NA", - "Overall Rank": "2022", - "Last Price Change": "NA", - "Score": 99, - "Average G2D Mark": 273, - "Samples": 116 - } - ], - "gpu1755": [ - "Radeon X1600 Pro / X1300XT", - { - "Other names": "Radeon X1600 Pro / X1300XT", - "Videocard First Benchmarked": "2010-01-05", - "G3DMark/Price": "NA", - "Overall Rank": "2113", - "Last Price Change": "NA", - "Score": 69, - "Average G2D Mark": 285, - "Samples": 2 - } - ], - "gpu2493": [ - "Radeon X1600 XT", - { - "Bus Interface": "AGP 8x,PCI-E x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "590 MHz", - "Memory Clock(s)": "780 MHz", - "DirectX": "9.0c", - "OpenGL": "2", - "Max TDP": "42 W", - "Videocard Category": "Desktop", - "Other names": "Sapphire RADEON X1600 XT, VisionTek Radeon X1600 XT, VisionTek Radeon X1600XT XGE, Radeon X1600 Series", - "Videocard First Benchmarked": "2012-12-02", - "G3DMark/Price": "NA", - "Overall Rank": "1966", - "Last Price Change": "NA", - "Score": 116, - "Average G2D Mark": 356, - "Samples": 32 - } - ], - "gpu1756": [ - "Radeon X1650 GTO", - { - "Other names": "Radeon X1650 GTO (Omega 3.8.330), Radeon X1650 GTO", - "Videocard First Benchmarked": "2009-10-04", - "G3DMark/Price": "NA", - "Overall Rank": "2091", - "Last Price Change": "NA", - "Score": 75, - "Average G2D Mark": 384, - "Samples": 2 - } - ], - "gpu614": [ - "Radeon X1650 Pro", - { - "Bus Interface": "AGP 8x,PCI-E x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "600 MHz", - "Memory Clock(s)": "700 MHz", - "DirectX": "9.0c", - "OpenGL": "2", - "Max TDP": "44 W", - "Videocard Category": "Desktop", - "Other names": "ATI Radeon X1650 Pro, VisionTek Radeon X1650 Pro, Radeon X1650 Series, ASUS X1650 Series", - "Videocard First Benchmarked": "2010-01-16", - "G3DMark/Price": "0.53", - "Overall Rank": "2061", - "Last Price Change": "$160.89 USD (2012-08-24)", - "Score": 85, - "Average G2D Mark": 241, - "Samples": 52 - } - ], - "gpu1757": [ - "Radeon X1650 SE", - { - "Other names": "Radeon X1650 SE", - "Videocard First Benchmarked": "2009-04-02", - "G3DMark/Price": "NA", - "Overall Rank": "2103", - "Last Price Change": "NA", - "Score": 71, - "Average G2D Mark": 358, - "Samples": 2 - } - ], - "gpu2206": [ - "Radeon X1700 Targa Edition", - { - "Other names": "Radeon X1700 Targa Edition", - "Videocard First Benchmarked": "2012-10-22", - "G3DMark/Price": "NA", - "Overall Rank": "1964", - "Last Price Change": "NA", - "Score": 117, - "Average G2D Mark": 255, - "Samples": 2 - } - ], - "gpu1760": [ - "Radeon X1800 GTO", - { - "Bus Interface": "PCI-E x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "500 MHz", - "Memory Clock(s)": "495 MHz", - "DirectX": "9.0c", - "OpenGL": "2", - "Max TDP": "48 W", - "Videocard Category": "Desktop", - "Other names": "Radeon X1800 GTO, Radeon X1800 GTO Secondary", - "Videocard First Benchmarked": "2009-07-10", - "G3DMark/Price": "NA", - "Overall Rank": "1896", - "Last Price Change": "NA", - "Score": 141, - "Average G2D Mark": 415, - "Samples": 13 - } - ], - "gpu1761": [ - "Radeon X1900 CrossFire Edition", - { - "Bus Interface": "PCI-E x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "625 MHz", - "Memory Clock(s)": "725 MHz", - "DirectX": "9.0c", - "OpenGL": "2", - "Max TDP": "100 W", - "Videocard Category": "Desktop", - "Other names": "Radeon X1900 CrossFire Edition, Radeon X1900 CrossFire Edition Secondary", - "Videocard First Benchmarked": "2011-03-19", - "G3DMark/Price": "NA", - "Overall Rank": "1910", - "Last Price Change": "NA", - "Score": 137, - "Average G2D Mark": 507, - "Samples": 4 - } - ], - "gpu1762": [ - "Radeon X1900 GT", - { - "Bus Interface": "PCI-E x16", - "Max Memory Size": "256 MB", - "Core Clock(s)": "575 MHz", - "Memory Clock(s)": "600 MHz", - "DirectX": "9.0c", - "OpenGL": "2", - "Max TDP": "75 W", - "Videocard Category": "Desktop", - "Other names": "Radeon X1900 GT, Radeon X1900 GT Secondary", - "Videocard First Benchmarked": "2009-07-31", - "G3DMark/Price": "NA", - "Overall Rank": "1889", - "Last Price Change": "NA", - "Score": 146, - "Average G2D Mark": 409, - "Samples": 14 - } - ], - "gpu1763": [ - "Radeon X1950 CrossFire Edition", - { - "Bus Interface": "PCI-E x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "650 MHz", - "Memory Clock(s)": "1000 MHz", - "DirectX": "9.0c", - "OpenGL": "2", - "Videocard Category": "Desktop", - "Other names": "Radeon X1950 CrossFire Edition, Radeon X1950 CrossFire Edition Secondary", - "Videocard First Benchmarked": "2009-05-22", - "G3DMark/Price": "NA", - "Overall Rank": "1876", - "Last Price Change": "NA", - "Score": 151, - "Average G2D Mark": 466, - "Samples": 2 - } - ], - "gpu615": [ - "Radeon X1950 GT", - { - "Bus Interface": "AGP 8x,PCI-E x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "500 MHz", - "Memory Clock(s)": "600 MHz", - "DirectX": "9.0c", - "OpenGL": "2", - "Max TDP": "57 W", - "Videocard Category": "Desktop", - "Other names": "ATI Radeon X1950 GT", - "Videocard First Benchmarked": "2010-03-07", - "G3DMark/Price": "NA", - "Overall Rank": "1999", - "Last Price Change": "NA", - "Score": 106, - "Average G2D Mark": 279, - "Samples": 31 - } - ], - "gpu1764": [ - "Radeon X1950 Pro", - { - "Bus Interface": "AGP 8x,PCI-E x16", - "Max Memory Size": "512 MB", - "Core Clock(s)": "575 MHz", - "Memory Clock(s)": "690 MHz", - "DirectX": "9.0c", - "OpenGL": "2", - "Max TDP": "66 W", - "Videocard Category": "Desktop", - "Other names": "Radeon X1950 Pro, Radeon X1950 Pro (Omega 3.8.421), Radeon X1950 Pro (Omega 3.8.442), VisionTek RADEON X1950 Pro XGE, Radeon X1950 Pro Secondary", - "Videocard First Benchmarked": "2009-09-11", - "G3DMark/Price": "NA", - "Overall Rank": "1977", - "Last Price Change": "NA", - "Score": 113, - "Average G2D Mark": 318, - "Samples": 116 - } - ], - "gpu1765": [ - "RADEON X300SE", - { - "Other names": "ASUS EAX300 SE, ASUS Extreme AX300, ASUS Extreme AX300SE/T, Diamond X300SEHM-PCIE 128MB, Diamond X300SEHM-PCIE 256MB, RADEON X300 SE 128MB HyperMemory, SAPPHIRE RADEON X300SE, SAPPHIRE RADEON X300SE PCI-E, Tul Corporation, RADEON X300SE, VisionTek Radeon X300 SE Hypermemory, VisionTek XTASY X300 SE Hypermemory, SAPPHIRE RADEON X300SE 128MB - Secondary, ATI Radeon X300/X550/X1050 Series, RADEON X300 Series, RADEON X300 Series Secondary, Radeon X300/X550/X1050 Series, ASUS Extreme AX300 Series, ASUS Extreme AX300 Series Secondary, SAPPHIRE RADEON X300SE - Secondary, ASUS Extreme AX300 Secondary, ASUS X300 Series, RADEON X300 SE 128MB HyperMemory Secondary, ATI Radeon X300/X550/X1050 Series Secondary, RADEON Radeon X300/X550/X1050 Series", - "Videocard First Benchmarked": "2009-04-06", - "G3DMark/Price": "NA", - "Overall Rank": "2222", - "Last Price Change": "NA", - "Score": 38, - "Average G2D Mark": 242, - "Samples": 287 - } - ], - "gpu1766": [ - "RADEON X550", - { - "Bus Interface": "PCI-E x16", - "Max Memory Size": "256 MB", - "Core Clock(s)": "400 MHz", - "Memory Clock(s)": "500 MHz", - "DirectX": "9", - "OpenGL": "2", - "Videocard Category": "Desktop", - "Other names": "RADEON X550, RADEON X550 Secondary", - "Videocard First Benchmarked": "2009-07-19", - "G3DMark/Price": "NA", - "Overall Rank": "2168", - "Last Price Change": "NA", - "Score": 51, - "Average G2D Mark": 266, - "Samples": 14 - } - ], - "gpu1767": [ - "RADEON X550XT", - { - "Other names": "RADEON X550XT, RADEON X550XT Secondary", - "Videocard First Benchmarked": "2009-07-19", - "G3DMark/Price": "NA", - "Overall Rank": "2155", - "Last Price Change": "NA", - "Score": 56, - "Average G2D Mark": 224, - "Samples": 6 - } - ], - "gpu1768": [ - "Radeon X550XTX", - { - "Other names": "Radeon X550XTX, Radeon X550XTX Secondary", - "Videocard First Benchmarked": "2009-10-05", - "G3DMark/Price": "NA", - "Overall Rank": "2104", - "Last Price Change": "NA", - "Score": 71, - "Average G2D Mark": 240, - "Samples": 5 - } - ], - "gpu1769": [ - "RADEON X600 256MB HyperMemory", - { - "Bus Interface": "PCI-E x16", - "Max Memory Size": "256 MB", - "Core Clock(s)": "400 MHz", - "Memory Clock(s)": "250 MHz", - "DirectX": "9.0", - "OpenGL": "2.0", - "Videocard Category": "Desktop", - "Other names": "RADEON X600 256MB HyperMemory, RADEON X600 256MB HyperMemory Secondary", - "Videocard First Benchmarked": "2009-04-08", - "G3DMark/Price": "NA", - "Overall Rank": "2154", - "Last Price Change": "NA", - "Score": 57, - "Average G2D Mark": 210, - "Samples": 38 - } - ], - "gpu161": [ - "RADEON X600 PRO", - { - "Other names": "256MB ATI RADEON X600, 256MB ATI RADEON X600 Secondary", - "Videocard First Benchmarked": "2009-04-18", - "G3DMark/Price": "0.42", - "Overall Rank": "2123", - "Last Price Change": "$160.49 USD (2022-04-15)", - "Score": 67, - "Average G2D Mark": 252, - "Samples": 5 - } - ], - "gpu155": [ - "RADEON X600 SE", - { - "Other names": "128MB ATI RADEON X600 SE, 128MB ATI RADEON X600 SE Secondary", - "Videocard First Benchmarked": "2009-10-21", - "G3DMark/Price": "0.87", - "Overall Rank": "2176", - "Last Price Change": "$56.18 USD (2021-05-18)", - "Score": 49, - "Average G2D Mark": 229, - "Samples": 6 - } - ], - "gpu1772": [ - "RADEON X600XT", - { - "Other names": "ASUS Extreme AX600XT-TD, RADEON X600XT, ASUS Extreme AX600XT-TD 128M - Secondary", - "Videocard First Benchmarked": "2009-12-26", - "G3DMark/Price": "NA", - "Overall Rank": "2047", - "Last Price Change": "NA", - "Score": 92, - "Average G2D Mark": 258, - "Samples": 2 - } - ], - "gpu1773": [ - "RADEON X700", - { - "Bus Interface": "AGP 8x", - "Max Memory Size": "256 MB", - "Core Clock(s)": "400 MHz", - "Memory Clock(s)": "700 MHz", - "DirectX": "9.0b", - "OpenGL": "2", - "Videocard Category": "Desktop", - "Other names": "CONNECT 3D RADEON X700, Diamond X700-PCIE 256MB, GIGABYTE RADEON X700, Palit RADEON X700, RADEON X700, Sapphire RADEON X700, VisionTek XTASY RADEON X700, RADEON X700 Series, RADEON X700 Series Secondary, ASUS X700 Series, ASUS X700 Series Secondary, HIGHTECH RADEON X700, HIGHTECH RADEON X700 Secondary", - "Videocard First Benchmarked": "2010-03-07", - "G3DMark/Price": "NA", - "Overall Rank": "2098", - "Last Price Change": "NA", - "Score": 73, - "Average G2D Mark": 248, - "Samples": 32 - } - ], - "gpu1774": [ - "RADEON X700 PRO", - { - "Bus Interface": "AGP 8x", - "Max Memory Size": "256 MB", - "Core Clock(s)": "425 MHz", - "Memory Clock(s)": "864 MHz", - "DirectX": "9.0b", - "OpenGL": "2", - "Videocard Category": "Desktop", - "Other names": "ASUS Extreme AX700 Pro, GIGABYTE RADEON X700 PRO, HIGHTECH EXCALIBUR X700 PRO, RADEON X700 PRO, RX700 PRO-128PCIE, Sapphire RADEON X700 PRO, Tul Corporation, RADEON X700 PRO, RADEON X700 Series", - "Videocard First Benchmarked": "2009-05-15", - "G3DMark/Price": "NA", - "Overall Rank": "2089", - "Last Price Change": "NA", - "Score": 76, - "Average G2D Mark": 302, - "Samples": 16 - } - ], - "gpu1775": [ - "RADEON X700 SE", - { - "Bus Interface": "PCI-E x16", - "Max Memory Size": "128 MB", - "Core Clock(s)": "400 MHz", - "Memory Clock(s)": "400,500 MHz", - "DirectX": "9.0b", - "OpenGL": "2", - "Videocard Category": "Desktop", - "Other names": "RADEON X700 SE, RADEON X700 SE Secondary", - "Videocard First Benchmarked": "2009-07-17", - "G3DMark/Price": "NA", - "Overall Rank": "2102", - "Last Price Change": "NA", - "Score": 71, - "Average G2D Mark": 348, - "Samples": 9 - } - ], - "gpu618": [ - "RADEON X800 GT", - { - "Bus Interface": "AGP 8x", - "Max Memory Size": "256 MB", - "Core Clock(s)": "475 MHz", - "Memory Clock(s)": "980 MHz", - "DirectX": "9.0b", - "OpenGL": "2", - "Videocard Category": "Desktop", - "Other names": "ATI RADEON X800 GT, RADEON X800 GT, Radeon X800 GT (Omega 3.8.442)", - "Videocard First Benchmarked": "2009-04-22", - "G3DMark/Price": "NA", - "Overall Rank": "2066", - "Last Price Change": "NA", - "Score": 84, - "Average G2D Mark": 423, - "Samples": 7 - } - ], - "gpu1777": [ - "RADEON X800 GTO", - { - "Bus Interface": "AGP 8x", - "Max Memory Size": "256 MB", - "Core Clock(s)": "400 MHz", - "Memory Clock(s)": "980 MHz", - "DirectX": "9.0b", - "OpenGL": "2", - "Videocard Category": "Desktop", - "Other names": "RADEON X800 GTO, Radeon X800 GTO (Omega 3.8.442), RADEON X800 GTO Secondary, RADEON X800 GTO (Microsoft Corporation - WDDM)", - "Videocard First Benchmarked": "2010-11-23", - "G3DMark/Price": "NA", - "Overall Rank": "1969", - "Last Price Change": "NA", - "Score": 115, - "Average G2D Mark": 162, - "Samples": 31 - } - ], - "gpu1778": [ - "RADEON X800 PRO", - { - "Bus Interface": "AGP 8x", - "Max Memory Size": "256 MB", - "Core Clock(s)": "475 MHz", - "Memory Clock(s)": "900 MHz", - "DirectX": "9.0b", - "OpenGL": "2", - "Videocard Category": "Desktop", - "Other names": "RADEON X800 PRO, RADEON X800 PRO Secondary", - "Videocard First Benchmarked": "2009-06-02", - "G3DMark/Price": "NA", - "Overall Rank": "2130", - "Last Price Change": "NA", - "Score": 65, - "Average G2D Mark": 190, - "Samples": 8 - } - ], - "gpu1779": [ - "RADEON X800 PRO/GTO", - { - "Bus Interface": "AGP 8x", - "Max Memory Size": "256 MB", - "Core Clock(s)": "400 MHz", - "Memory Clock(s)": "980 MHz", - "DirectX": "9.0b", - "OpenGL": "2", - "Videocard Category": "Desktop", - "Other names": "RADEON X800 PRO/GTO, Radeon X800 PRO/GTO (Omega 3.8.442), RADEON X800 PRO/GTO Secondary", - "Videocard First Benchmarked": "2009-11-17", - "G3DMark/Price": "NA", - "Overall Rank": "2095", - "Last Price Change": "NA", - "Score": 73, - "Average G2D Mark": 181, - "Samples": 14 - } - ], - "gpu1780": [ - "RADEON X800 SE", - { - "Bus Interface": "AGP 8x", - "Max Memory Size": "256 MB", - "Core Clock(s)": "425 MHz", - "Memory Clock(s)": "800 MHz", - "DirectX": "9.0b", - "OpenGL": "2", - "Videocard Category": "Desktop", - "Other names": "RADEON X800 SE, RADEON X800 SE Secondary", - "Videocard First Benchmarked": "2009-04-02", - "G3DMark/Price": "NA", - "Overall Rank": "1925", - "Last Price Change": "NA", - "Score": 130, - "Average G2D Mark": 384, - "Samples": 1 - } - ], - "gpu619": [ - "RADEON X800 XL", - { - "Bus Interface": "AGP 8x", - "Max Memory Size": "256 MB", - "Core Clock(s)": "400 MHz", - "Memory Clock(s)": "980 MHz", - "DirectX": "9.0b", - "OpenGL": "2", - "Videocard Category": "Desktop", - "Other names": "ATI RADEON X800 XL, RADEON X800 XL", - "Videocard First Benchmarked": "2011-03-31", - "G3DMark/Price": "NA", - "Overall Rank": "2112", - "Last Price Change": "NA", - "Score": 69, - "Average G2D Mark": 271, - "Samples": 11 - } - ], - "gpu81": [ - "RADEON X800 XT", - { - "Bus Interface": "AGP 8x", - "Max Memory Size": "256 MB", - "Core Clock(s)": "500 MHz", - "Memory Clock(s)": "1000 MHz", - "DirectX": "9.0b", - "OpenGL": "2", - "Videocard Category": "Desktop", - "Other names": "RADEON X800 XT, RADEON X800 XT Secondary", - "Videocard First Benchmarked": "2012-08-19", - "G3DMark/Price": "NA", - "Overall Rank": "2030", - "Last Price Change": "NA", - "Score": 98, - "Average G2D Mark": 271, - "Samples": 9 - } - ], - "gpu1781": [ - "RADEON X800 XT Platinum Edition", - { - "Bus Interface": "PCI-E x16", - "Max Memory Size": "256 MB", - "Core Clock(s)": "520 MHz", - "Memory Clock(s)": "1120 MHz", - "DirectX": "9.0b", - "OpenGL": "2", - "Videocard Category": "Desktop", - "Other names": "RADEON X800 XT Platinum Edition, RADEON X800 XT Platinum Edition Secondary", - "Videocard First Benchmarked": "2012-07-23", - "G3DMark/Price": "NA", - "Overall Rank": "2078", - "Last Price Change": "NA", - "Score": 81, - "Average G2D Mark": 170, - "Samples": 1 - } - ], - "gpu1782": [ - "RADEON X800GT", - { - "Other names": "RADEON X800GT, RADEON X800GT Secondary", - "Videocard First Benchmarked": "2009-04-16", - "G3DMark/Price": "NA", - "Overall Rank": "2084", - "Last Price Change": "NA", - "Score": 80, - "Average G2D Mark": 264, - "Samples": 12 - } - ], - "gpu620": [ - "RADEON X850 PRO", - { - "Bus Interface": "AGP 8x", - "Max Memory Size": "256 MB", - "Core Clock(s)": "507 MHz", - "Memory Clock(s)": "1040 MHz", - "DirectX": "9.0b", - "OpenGL": "2", - "Videocard Category": "Desktop", - "Other names": "ATI RADEON X850 PRO, RADEON X850 PRO", - "Videocard First Benchmarked": "2010-11-03", - "G3DMark/Price": "NA", - "Overall Rank": "2097", - "Last Price Change": "NA", - "Score": 73, - "Average G2D Mark": 157, - "Samples": 3 - } - ], - "gpu1784": [ - "RADEON X850 XT", - { - "Bus Interface": "AGP 8x", - "Max Memory Size": "256 MB", - "Core Clock(s)": "520 MHz", - "Memory Clock(s)": "1080 MHz", - "DirectX": "9.0b", - "OpenGL": "2", - "Videocard Category": "Desktop", - "Other names": "RADEON X850 XT, RADEON X850 XT Secondary, ATI RADEON X850 XT", - "Videocard First Benchmarked": "2009-04-01", - "G3DMark/Price": "NA", - "Overall Rank": "2080", - "Last Price Change": "NA", - "Score": 81, - "Average G2D Mark": 326, - "Samples": 9 - } - ], - "gpu621": [ - "RADEON X850 XT Platinum Edition", - { - "Bus Interface": "PCI-E x16", - "Max Memory Size": "256 MB", - "Core Clock(s)": "540 MHz", - "Memory Clock(s)": "1180 MHz", - "DirectX": "9.0b", - "OpenGL": "2", - "Videocard Category": "Desktop", - "Other names": "ATI RADEON X850 XT Platinum Edition, RADEON X850 XT Platinum Edition, RADEON X850 XT Platinum Edition Secondary", - "Videocard First Benchmarked": "2011-03-30", - "G3DMark/Price": "NA", - "Overall Rank": "2072", - "Last Price Change": "NA", - "Score": 82, - "Average G2D Mark": 261, - "Samples": 9 - } - ], - "gpu622": [ - "Radeon Xpress 1100", - { - "Other names": "ATI Radeon Xpress 1100", - "Videocard First Benchmarked": "2009-04-04", - "G3DMark/Price": "NA", - "Overall Rank": "2243", - "Last Price Change": "NA", - "Score": 34, - "Average G2D Mark": 187, - "Samples": 166 - } - ], - "gpu624": [ - "Radeon Xpress 1150", - { - "Other names": "ATI Radeon Xpress 1150, Radeon Xpress 1150 (Omega 3.8.442), ATI Radeon Xpress 1150 Secondary, AMD Radeon Xpress 1150", - "Videocard First Benchmarked": "2009-08-18", - "G3DMark/Price": "NA", - "Overall Rank": "2264", - "Last Price Change": "NA", - "Score": 30, - "Average G2D Mark": 192, - "Samples": 193 - } - ], - "gpu625": [ - "Radeon Xpress 1200", - { - "Other names": "ATI Radeon Xpress 1200", - "Videocard First Benchmarked": "2009-05-10", - "G3DMark/Price": "NA", - "Overall Rank": "2234", - "Last Price Change": "NA", - "Score": 36, - "Average G2D Mark": 192, - "Samples": 10 - } - ], - "gpu104": [ - "Radeon Xpress 1250", - { - "Other names": "ATI Radeon Xpress 1250, Radeon Xpress 1250", - "Videocard First Benchmarked": "2012-08-21", - "G3DMark/Price": "NA", - "Overall Rank": "2199", - "Last Price Change": "NA", - "Score": 43, - "Average G2D Mark": 197, - "Samples": 75 - } - ], - "gpu626": [ - "Radeon Xpress 1270", - { - "Other names": "ATI Radeon Xpress 1270", - "Videocard First Benchmarked": "2009-11-26", - "G3DMark/Price": "NA", - "Overall Rank": "2275", - "Last Price Change": "NA", - "Score": 27, - "Average G2D Mark": 191, - "Samples": 2 - } - ], - "gpu2830": [ - "Radeon Xpress 1300", - { - "Other names": "Radeon Xpress 1300, Radeon Xpress 1300 (Microsoft Corporation - WDDM)", - "Videocard First Benchmarked": "2014-03-07", - "G3DMark/Price": "NA", - "Overall Rank": "2159", - "Last Price Change": "NA", - "Score": 52, - "Average G2D Mark": 266, - "Samples": 1 - } - ], - "gpu1785": [ - "Radeon Xpress 1300M", - { - "Other names": "Radeon Xpress 1300M", - "Videocard First Benchmarked": "2011-08-04", - "G3DMark/Price": "NA", - "Overall Rank": "2210", - "Last Price Change": "NA", - "Score": 40, - "Average G2D Mark": 195, - "Samples": 1 - } - ], - "gpu627": [ - "RADEON XPRESS 200", - { - "Other names": "ATI RADEON XPRESS 200, MSI RADEON XPRESS 200 Series", - "Videocard First Benchmarked": "2009-10-29", - "G3DMark/Price": "NA", - "Overall Rank": "2266", - "Last Price Change": "NA", - "Score": 30, - "Average G2D Mark": 188, - "Samples": 14 - } - ], - "gpu2875": [ - "RADEON XPRESS 200 CROSSFIRE", - { - "Other names": "ATI RADEON XPRESS 200 CROSSFIRE", - "Videocard First Benchmarked": "2014-05-23", - "G3DMark/Price": "NA", - "Overall Rank": "2306", - "Last Price Change": "NA", - "Score": 18, - "Average G2D Mark": 164, - "Samples": 1 - } - ], - "gpu628": [ - "RADEON XPRESS 200M", - { - "Other names": "ATI RADEON XPRESS 200M", - "Videocard First Benchmarked": "2009-04-19", - "G3DMark/Price": "NA", - "Overall Rank": "2296", - "Last Price Change": "NA", - "Score": 23, - "Average G2D Mark": 176, - "Samples": 25 - } - ], - "gpu4775": [ - "RadeonT 610M", - { - "Other names": "AMD RadeonT 610M", - "Videocard First Benchmarked": "2023-03-17", - "G3DMark/Price": "NA", - "Overall Rank": "951", - "Last Price Change": "NA", - "Score": 1225, - "Average G2D Mark": 307, - "Samples": 3 - } - ], - "gpu4897": [ - "RadeonT 780M", - { - "Other names": "AMD RadeonT 780M", - "Videocard First Benchmarked": "2023-08-05", - "G3DMark/Price": "NA", - "Overall Rank": "273", - "Last Price Change": "NA", - "Score": 6959, - "Average G2D Mark": 789, - "Samples": 27 - } - ], - "gpu4849": [ - "RadeonT RX 6850M XT", - { - "Bus Interface": "PCIe 4.0 x16", - "Max Memory Size": "12288 MB", - "Core Clock(s)": "2321 MHz", - "Memory Clock(s)": "2250 MHz", - "DirectX": "12_2", - "OpenGL": "4.6", - "Max TDP": "165 W", - "Videocard Category": "Mobile", - "Other names": "AMD RadeonT RX 6850M XT", - "Videocard First Benchmarked": "2023-06-25", - "G3DMark/Price": "NA", - "Overall Rank": "111", - "Last Price Change": "NA", - "Score": 13848, - "Average G2D Mark": 702, - "Samples": 5 - } - ], - "gpu1788": [ - "Rage 128 Pro", - { - "Other names": "Rage 128 Pro", - "Videocard First Benchmarked": "2009-04-10", - "G3DMark/Price": "NA", - "Overall Rank": "2482", - "Last Price Change": "NA", - "Score": 1, - "Average G2D Mark": 40, - "Samples": 1 - } - ], - "gpu1790": [ - "RAGE 128 PRO AGP 4X TMDS", - { - "Other names": "RAGE 128 PRO AGP 4X TMDS", - "Videocard First Benchmarked": "2009-04-17", - "G3DMark/Price": "NA", - "Overall Rank": "2484", - "Last Price Change": "NA", - "Score": 1, - "Average G2D Mark": 142, - "Samples": 2 - } - ], - "gpu1797": [ - "Rage Fury Pro/Xpert 2000 Pro", - { - "Other names": "Rage Fury Pro/Xpert 2000 Pro", - "Videocard First Benchmarked": "2009-05-02", - "G3DMark/Price": "NA", - "Overall Rank": "2445", - "Last Price Change": "NA", - "Score": 3, - "Average G2D Mark": 53, - "Samples": 2 - } - ], - "gpu3314": [ - "Red Hat QXL controller", - { - "Other names": "Red Hat QXL controller", - "Videocard First Benchmarked": "2015-09-18", - "G3DMark/Price": "NA", - "Overall Rank": "2257", - "Last Price Change": "NA", - "Score": 32, - "Average G2D Mark": 270, - "Samples": 2 - } - ], - "gpu3577": [ - "RGH Drivers v3", - { - "Other names": "RGH Drivers v3[BETA]", - "Videocard First Benchmarked": "2016-09-19", - "G3DMark/Price": "NA", - "Overall Rank": "2326", - "Last Price Change": "NA", - "Score": 11, - "Average G2D Mark": 312, - "Samples": 2 - } - ], - "gpu1665": [ - "RIVA TNT2 Model 64/Model 64 Pro", - { - "Other names": "NVIDIA RIVA TNT2 Model 64/Model 64 Pro", - "Videocard First Benchmarked": "2009-09-01", - "G3DMark/Price": "NA", - "Overall Rank": "2422", - "Last Price Change": "NA", - "Score": 4, - "Average G2D Mark": 107, - "Samples": 24 - } - ], - "gpu1667": [ - "RIVA TNT2/TNT2 Pro", - { - "Other names": "NVIDIA RIVA TNT2/TNT2 Pro", - "Videocard First Benchmarked": "2009-04-02", - "G3DMark/Price": "NA", - "Overall Rank": "2434", - "Last Price Change": "NA", - "Score": 3, - "Average G2D Mark": 71, - "Samples": 2 - } - ], - "gpu4785": [ - "RTX 2000 Ada Generation Laptop GPU", - { - "Other names": "NVIDIA RTX 2000 Ada Generation Laptop GPU (Mobile)", - "Videocard First Benchmarked": "2023-02-23", - "G3DMark/Price": "NA", - "Overall Rank": "87", - "Last Price Change": "NA", - "Score": 15609, - "Average G2D Mark": 605, - "Samples": 121 - } - ], - "gpu4930": [ - "RTX 3000 Ada Generation Laptop GPU", - { - "Other names": "NVIDIA RTX 3000 Ada Generation Laptop GPU (Mobile)", - "Videocard First Benchmarked": "2023-10-01", - "G3DMark/Price": "NA", - "Overall Rank": "60", - "Last Price Change": "NA", - "Score": 18570, - "Average G2D Mark": 806, - "Samples": 3 - } - ], - "gpu4800": [ - "RTX 3500 Ada Generation Laptop GPU", - { - "Other names": "NVIDIA RTX 3500 Ada Generation Laptop GPU (Mobile)", - "Videocard First Benchmarked": "2023-04-18", - "G3DMark/Price": "NA", - "Overall Rank": "41", - "Last Price Change": "NA", - "Score": 20865, - "Average G2D Mark": 685, - "Samples": 55 - } - ], - "gpu4942": [ - "RTX 4000 Ada Generation", - { - "Other names": "NVIDIA RTX 4000 Ada Generation", - "Videocard First Benchmarked": "2023-10-26", - "G3DMark/Price": "NA", - "Overall Rank": "18", - "Last Price Change": "NA", - "Score": 25226, - "Average G2D Mark": 881, - "Samples": 5 - } - ], - "gpu4819": [ - "RTX 4000 Ada Generation Laptop GPU", - { - "Other names": "NVIDIA RTX 4000 Ada Generation Laptop GPU (Mobile)", - "Videocard First Benchmarked": "2023-05-11", - "G3DMark/Price": "NA", - "Overall Rank": "21", - "Last Price Change": "NA", - "Score": 23871, - "Average G2D Mark": 762, - "Samples": 51 - } - ], - "gpu4801": [ - "RTX 4000 SFF Ada Generation", - { - "Other names": "NVIDIA RTX 4000 SFF Ada Generation", - "Videocard First Benchmarked": "2023-04-21", - "G3DMark/Price": "NA", - "Overall Rank": "43", - "Last Price Change": "NA", - "Score": 20529, - "Average G2D Mark": 1106, - "Samples": 8 - } - ], - "gpu4958": [ - "RTX 4500 Ada Generation", - { - "Other names": "NVIDIA RTX 4500 Ada Generation", - "Videocard First Benchmarked": "2023-11-30", - "G3DMark/Price": "NA", - "Overall Rank": "33", - "Last Price Change": "NA", - "Score": 22293, - "Average G2D Mark": 882, - "Samples": 1 - } - ], - "gpu4935": [ - "RTX 5000 Ada Generation", - { - "Other names": "NVIDIA RTX 5000 Ada Generation", - "Videocard First Benchmarked": "2023-10-10", - "G3DMark/Price": "NA", - "Overall Rank": "67", - "Last Price Change": "NA", - "Score": 17924, - "Average G2D Mark": 645, - "Samples": 6 - } - ], - "gpu4807": [ - "RTX 5000 Ada Generation Laptop GPU", - { - "Other names": "NVIDIA RTX 5000 Ada Generation Laptop GPU (Mobile)", - "Videocard First Benchmarked": "2023-04-26", - "G3DMark/Price": "NA", - "Overall Rank": "24", - "Last Price Change": "NA", - "Score": 23536, - "Average G2D Mark": 701, - "Samples": 41 - } - ], - "gpu4768": [ - "RTX 6000 Ada Generation", - { - "Other names": "NVIDIA RTX 6000 Ada Generation", - "Videocard First Benchmarked": "2023-03-08", - "G3DMark/Price": "NA", - "Overall Rank": "25", - "Last Price Change": "NA", - "Score": 23103, - "Average G2D Mark": 802, - "Samples": 17 - } - ], - "gpu4804": [ - "RTX A1000 6GB Laptop GPU", - { - "Other names": "NVIDIA RTX A1000 6GB Laptop GPU (Mobile)", - "Videocard First Benchmarked": "2023-04-24", - "G3DMark/Price": "NA", - "Overall Rank": "183", - "Last Price Change": "NA", - "Score": 10006, - "Average G2D Mark": 541, - "Samples": 79 - } - ], - "gpu4558": [ - "RTX A1000 Laptop GPU", - { - "Other names": "NVIDIA RTX A1000 Laptop GPU (Mobile)", - "Videocard First Benchmarked": "2022-06-22", - "G3DMark/Price": "NA", - "Overall Rank": "192", - "Last Price Change": "NA", - "Score": 9547, - "Average G2D Mark": 515, - "Samples": 290 - } - ], - "gpu4477": [ - "RTX A2000", - { - "Other names": "NVIDIA RTX A2000", - "Videocard First Benchmarked": "2021-11-29", - "G3DMark/Price": "17.92", - "Overall Rank": "115", - "Last Price Change": "$768.99 USD (2023-11-23)", - "Score": 13777, - "Average G2D Mark": 996, - "Samples": 454 - } - ], - "gpu4533": [ - "RTX A2000 12GB", - { - "Other names": "NVIDIA RTX A2000 12GB", - "Videocard First Benchmarked": "2022-04-17", - "G3DMark/Price": "NA", - "Overall Rank": "119", - "Last Price Change": "NA", - "Score": 13646, - "Average G2D Mark": 1127, - "Samples": 470 - } - ], - "gpu4553": [ - "RTX A2000 8GB Laptop GPU", - { - "Other names": "NVIDIA RTX A2000 8GB Laptop GPU (Mobile)", - "Videocard First Benchmarked": "2022-06-08", - "G3DMark/Price": "NA", - "Overall Rank": "168", - "Last Price Change": "NA", - "Score": 10940, - "Average G2D Mark": 536, - "Samples": 311 - } - ], - "gpu4438": [ - "RTX A2000 Laptop GPU", - { - "Bus Interface": "PCIe 4.0 x16", - "Max Memory Size": "4096 MB", - "Memory Clock(s)": "12000 MHz", - "DirectX": "12_2", - "OpenGL": "4.6", - "Max TDP": "95 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA RTX A2000 Laptop GPU (Mobile)", - "Videocard First Benchmarked": "2021-07-24", - "G3DMark/Price": "NA", - "Overall Rank": "182", - "Last Price Change": "NA", - "Score": 10016, - "Average G2D Mark": 477, - "Samples": 472 - } - ], - "gpu4503": [ - "RTX A3000 12GB Laptop GPU", - { - "Other names": "NVIDIA RTX A3000 12GB Laptop GPU (Mobile)", - "Videocard First Benchmarked": "2022-02-10", - "G3DMark/Price": "NA", - "Overall Rank": "106", - "Last Price Change": "NA", - "Score": 14533, - "Average G2D Mark": 608, - "Samples": 167 - } - ], - "gpu4414": [ - "RTX A3000 Laptop GPU", - { - "Max Memory Size": "6144 MB", - "DirectX": "12_2", - "OpenGL": "4.6", - "Max TDP": "130 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA RTX A3000 Laptop GPU (Mobile)", - "Videocard First Benchmarked": "2021-06-15", - "G3DMark/Price": "NA", - "Overall Rank": "143", - "Last Price Change": "NA", - "Score": 12506, - "Average G2D Mark": 497, - "Samples": 335 - } - ], - "gpu4394": [ - "RTX A4000", - { - "Bus Interface": "PCIe 4.0 x16", - "Max Memory Size": "16384 MB", - "Core Clock(s)": "735 MHz", - "Memory Clock(s)": "1750 MHz", - "DirectX": "12_2", - "OpenGL": "4.6", - "Max TDP": "140 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA RTX A4000", - "Videocard First Benchmarked": "2021-05-23", - "G3DMark/Price": "25.77", - "Overall Rank": "55", - "Last Price Change": "$749.99 USD (2023-03-08)", - "Score": 19330, - "Average G2D Mark": 985, - "Samples": 888 - } - ], - "gpu4421": [ - "RTX A4000 Laptop GPU", - { - "Bus Interface": "PCIe 4.0 x16", - "Max Memory Size": "16384 MB", - "Core Clock(s)": "735 MHz", - "Memory Clock(s)": "14000 MHz", - "DirectX": "12_2", - "OpenGL": "4.6", - "Max TDP": "140 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA RTX A4000 Laptop GPU (Mobile)", - "Videocard First Benchmarked": "2021-07-14", - "G3DMark/Price": "NA", - "Overall Rank": "90", - "Last Price Change": "NA", - "Score": 15531, - "Average G2D Mark": 568, - "Samples": 135 - } - ], - "gpu4514": [ - "RTX A4500", - { - "Other names": "NVIDIA RTX A4500", - "Videocard First Benchmarked": "2022-03-04", - "G3DMark/Price": "20.16", - "Overall Rank": "37", - "Last Price Change": "$1079.99 USD (2023-01-26)", - "Score": 21775, - "Average G2D Mark": 1078, - "Samples": 221 - } - ], - "gpu4565": [ - "RTX A4500 Laptop GPU", - { - "Other names": "NVIDIA RTX A4500 Laptop GPU (Mobile)", - "Videocard First Benchmarked": "2022-07-18", - "G3DMark/Price": "NA", - "Overall Rank": "69", - "Last Price Change": "NA", - "Score": 17603, - "Average G2D Mark": 730, - "Samples": 167 - } - ], - "gpu4649": [ - "RTX A500 Laptop GPU", - { - "Other names": "NVIDIA RTX A500 Laptop GPU (Mobile)", - "Videocard First Benchmarked": "2022-12-20", - "G3DMark/Price": "NA", - "Overall Rank": "271", - "Last Price Change": "NA", - "Score": 6993, - "Average G2D Mark": 452, - "Samples": 119 - } - ], - "gpu4390": [ - "RTX A5000", - { - "Bus Interface": "PCIe 4.0 x16", - "Max Memory Size": "24576 MB", - "Core Clock(s)": "1170 MHz", - "Memory Clock(s)": "16000 MHz", - "DirectX": "12_2", - "OpenGL": "4.6", - "Max TDP": "230 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA RTX A5000", - "Videocard First Benchmarked": "2021-05-07", - "G3DMark/Price": "10.31", - "Overall Rank": "26", - "Last Price Change": "$2229.99 USD (2023-11-21)", - "Score": 22985, - "Average G2D Mark": 1034, - "Samples": 366 - } - ], - "gpu4416": [ - "RTX A5000 Laptop GPU", - { - "Max Memory Size": "16384 MB", - "Memory Clock(s)": "14000 MHz", - "DirectX": "12_2", - "OpenGL": "4.6", - "Max TDP": "165 W", - "Videocard Category": "Mobile", - "Other names": "NVIDIA RTX A5000 Laptop GPU (Mobile)", - "Videocard First Benchmarked": "2021-06-24", - "G3DMark/Price": "NA", - "Overall Rank": "85", - "Last Price Change": "NA", - "Score": 15894, - "Average G2D Mark": 598, - "Samples": 154 - } - ], - "gpu4539": [ - "RTX A5500", - { - "Other names": "NVIDIA RTX A5500", - "Videocard First Benchmarked": "2022-05-04", - "G3DMark/Price": "9.69", - "Overall Rank": "39", - "Last Price Change": "$2169.99 USD (2023-03-01)", - "Score": 21030, - "Average G2D Mark": 765, - "Samples": 20 - } - ], - "gpu4562": [ - "RTX A5500 Laptop GPU", - { - "Other names": "NVIDIA RTX A5500 Laptop GPU (Mobile)", - "Videocard First Benchmarked": "2022-07-08", - "G3DMark/Price": "NA", - "Overall Rank": "70", - "Last Price Change": "NA", - "Score": 17581, - "Average G2D Mark": 721, - "Samples": 147 - } - ], - "gpu4337": [ - "RTX A6000", - { - "Bus Interface": "PCIe 4.0 x16", - "Max Memory Size": "49152 MB", - "Core Clock(s)": "1410 MHz", - "Memory Clock(s)": "16000 MHz", - "DirectX": "12_2", - "OpenGL": "4.6", - "Max TDP": "300 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA RTX A6000", - "Videocard First Benchmarked": "2021-01-28", - "G3DMark/Price": "5.57", - "Overall Rank": "27", - "Last Price Change": "$4109.99 USD (2023-06-17)", - "Score": 22912, - "Average G2D Mark": 895, - "Samples": 185 - } - ], - "gpu1820": [ - "RV530 PRO", - { - "Other names": "RV530 PRO", - "Videocard First Benchmarked": "2009-10-26", - "G3DMark/Price": "NA", - "Overall Rank": "1955", - "Last Price Change": "NA", - "Score": 119, - "Average G2D Mark": 386, - "Samples": 3 - } - ], - "gpu4246": [ - "Ryzen 3 4300G with Radeon Graphics", - { - "Other names": "AMD Ryzen 3 4300G with Radeon Graphics, Radeon Graphics Ryzen 3 4300G with , Radeon Graphics Ryzen 3 4300G", - "Videocard First Benchmarked": "2020-07-28", - "G3DMark/Price": "NA", - "Overall Rank": "697", - "Last Price Change": "NA", - "Score": 2040, - "Average G2D Mark": 619, - "Samples": 83 - } - ], - "gpu4302": [ - "Ryzen 3 4300GE with Radeon Graphics", - { - "Other names": "Radeon Graphics Ryzen 3 4300GE with , Radeon Graphics Ryzen 3 4300GE", - "Videocard First Benchmarked": "2020-10-30", - "G3DMark/Price": "NA", - "Overall Rank": "653", - "Last Price Change": "NA", - "Score": 2257, - "Average G2D Mark": 672, - "Samples": 66 - } - ], - "gpu4232": [ - "Ryzen 3 4300U with Radeon Graphics", - { - "Other names": "AMD Ryzen 3 4300U with Radeon Graphics, Radeon Graphics Ryzen 3 4300U with , Radeon Graphics Ryzen 3 4300U", - "Videocard First Benchmarked": "2020-04-15", - "G3DMark/Price": "NA", - "Overall Rank": "909", - "Last Price Change": "NA", - "Score": 1349, - "Average G2D Mark": 481, - "Samples": 255 - } - ], - "gpu4436": [ - "Ryzen 3 5300G with Radeon Graphics", - { - "Other names": "AMD Ryzen 3 5300G with Radeon Graphics, AMD Radeon(TM) Graphics Ryzen 3 5300G", - "Videocard First Benchmarked": "2021-06-10", - "G3DMark/Price": "NA", - "Overall Rank": "728", - "Last Price Change": "NA", - "Score": 1941, - "Average G2D Mark": 719, - "Samples": 22 - } - ], - "gpu4434": [ - "Ryzen 3 5300GE with Radeon Graphics", - { - "Other names": "AMD Ryzen 3 5300GE with Radeon Graphics, AMD Radeon(TM) Graphics Ryzen 3 5300GE", - "Videocard First Benchmarked": "2021-06-10", - "G3DMark/Price": "NA", - "Overall Rank": "709", - "Last Price Change": "NA", - "Score": 2005, - "Average G2D Mark": 761, - "Samples": 10 - } - ], - "gpu4508": [ - "Ryzen 3 5300U with Radeon Graphics", - { - "Other names": "AMD Ryzen 3 5300U with Radeon Graphics", - "Videocard First Benchmarked": "2021-04-21", - "G3DMark/Price": "NA", - "Overall Rank": "849", - "Last Price Change": "NA", - "Score": 1545, - "Average G2D Mark": 505, - "Samples": 361 - } - ], - "gpu4402": [ - "Ryzen 3 5400U with Radeon Graphics", - { - "Other names": "AMD Ryzen 3 5400U with Radeon Graphics, AMD Radeon(TM) Graphics Ryzen 3 5400U", - "Videocard First Benchmarked": "2021-03-09", - "G3DMark/Price": "NA", - "Overall Rank": "820", - "Last Price Change": "NA", - "Score": 1625, - "Average G2D Mark": 565, - "Samples": 220 - } - ], - "gpu4867": [ - "Ryzen 3 5425U with Radeon Graphics", - { - "Other names": "AMD Ryzen 3 5425U with Radeon Graphics", - "Videocard First Benchmarked": "2022-02-01", - "G3DMark/Price": "NA", - "Overall Rank": "805", - "Last Price Change": "NA", - "Score": 1677, - "Average G2D Mark": 545, - "Samples": 57 - } - ], - "gpu4875": [ - "Ryzen 3 7330U with Radeon Graphics", - { - "Other names": "AMD Ryzen 3 7330U with Radeon Graphics", - "Videocard First Benchmarked": "2023-02-02", - "G3DMark/Price": "NA", - "Overall Rank": "780", - "Last Price Change": "NA", - "Score": 1759, - "Average G2D Mark": 589, - "Samples": 6 - } - ], - "gpu4309": [ - "Ryzen 3 PRO 4200GE with Radeon Graphics", - { - "Other names": "Radeon Graphics Ryzen 3 PRO 4200GE with , Radeon Graphics Ryzen 3 PRO 4200GE", - "Videocard First Benchmarked": "2020-11-11", - "G3DMark/Price": "NA", - "Overall Rank": "783", - "Last Price Change": "NA", - "Score": 1748, - "Average G2D Mark": 593, - "Samples": 4 - } - ], - "gpu4240": [ - "Ryzen 3 PRO 4300U with Radeon Graphics", - { - "Other names": "AMD Ryzen 3 PRO 4300U with Radeon Graphics", - "Videocard First Benchmarked": "2020-05-29", - "G3DMark/Price": "NA", - "Overall Rank": "850", - "Last Price Change": "NA", - "Score": 1543, - "Average G2D Mark": 539, - "Samples": 7 - } - ], - "gpu4230": [ - "Ryzen 3 Pro 4350G with Radeon Graphics", - { - "Other names": "AMD Ryzen 3 Pro 4350G with Radeon Graphics, Radeon Graphics Ryzen 3 PRO 4350G with , Radeon Graphics Ryzen 3 PRO 4350G", - "Videocard First Benchmarked": "2020-04-15", - "G3DMark/Price": "NA", - "Overall Rank": "671", - "Last Price Change": "NA", - "Score": 2164, - "Average G2D Mark": 630, - "Samples": 115 - } - ], - "gpu4244": [ - "Ryzen 3 PRO 4350GE with Radeon Graphics", - { - "Other names": "AMD Ryzen 3 PRO 4350GE with Radeon Graphics, Radeon Graphics Ryzen 3 PRO 4350GE with , Radeon Graphics Ryzen 3 PRO 4350GE", - "Videocard First Benchmarked": "2020-07-22", - "G3DMark/Price": "NA", - "Overall Rank": "743", - "Last Price Change": "NA", - "Score": 1889, - "Average G2D Mark": 600, - "Samples": 37 - } - ], - "gpu4247": [ - "Ryzen 3 PRO 4450U with Radeon Graphics", - { - "Other names": "AMD Ryzen 3 PRO 4450U with Radeon Graphics, Radeon Graphics Ryzen 3 PRO 4450U with , Radeon Graphics Ryzen 3 PRO 4450U", - "Videocard First Benchmarked": "2020-08-05", - "G3DMark/Price": "NA", - "Overall Rank": "851", - "Last Price Change": "NA", - "Score": 1541, - "Average G2D Mark": 547, - "Samples": 64 - } - ], - "gpu4429": [ - "Ryzen 3 PRO 5350G with Radeon Graphics", - { - "Other names": "AMD Ryzen 3 PRO 5350G with Radeon Graphics, AMD Radeon(TM) Graphics Ryzen 3 PRO 5350G", - "Videocard First Benchmarked": "2021-06-08", - "G3DMark/Price": "NA", - "Overall Rank": "630", - "Last Price Change": "NA", - "Score": 2332, - "Average G2D Mark": 779, - "Samples": 142 - } - ], - "gpu4430": [ - "Ryzen 3 PRO 5350GE with Radeon Graphics", - { - "Other names": "AMD Ryzen 3 PRO 5350GE with Radeon Graphics, AMD Radeon(TM) Graphics Ryzen 3 PRO 5350GE", - "Videocard First Benchmarked": "2021-06-09", - "G3DMark/Price": "NA", - "Overall Rank": "660", - "Last Price Change": "NA", - "Score": 2239, - "Average G2D Mark": 777, - "Samples": 36 - } - ], - "gpu4437": [ - "Ryzen 3 PRO 5450U with Radeon Graphics", - { - "Other names": "AMD Ryzen 3 PRO 5450U with Radeon Graphics", - "Videocard First Benchmarked": "2021-06-20", - "G3DMark/Price": "NA", - "Overall Rank": "832", - "Last Price Change": "NA", - "Score": 1601, - "Average G2D Mark": 538, - "Samples": 3 - } - ], - "gpu4872": [ - "Ryzen 3 PRO 5475U with Radeon Graphics", - { - "Other names": "AMD Ryzen 3 PRO 5475U with Radeon Graphics", - "Videocard First Benchmarked": "2022-05-04", - "G3DMark/Price": "NA", - "Overall Rank": "888", - "Last Price Change": "NA", - "Score": 1432, - "Average G2D Mark": 596, - "Samples": 12 - } - ], - "gpu4877": [ - "Ryzen 3 PRO 7330U with Radeon Graphics", - { - "Other names": "AMD Ryzen 3 PRO 7330U with Radeon Graphics", - "Videocard First Benchmarked": "2023-03-23", - "G3DMark/Price": "NA", - "Overall Rank": "715", - "Last Price Change": "NA", - "Score": 1985, - "Average G2D Mark": 626, - "Samples": 4 - } - ], - "gpu3930": [ - "Ryzen 5 2500U with Radeon Vega", - { - "Other names": "AMD Ryzen 5 2500U with Radeon Vega Graphics", - "Videocard First Benchmarked": "2018-04-24", - "G3DMark/Price": "NA", - "Overall Rank": "865", - "Last Price Change": "NA", - "Score": 1503, - "Average G2D Mark": 388, - "Samples": 5 - } - ], - "gpu4235": [ - "Ryzen 5 4500U with Radeon Graphics", - { - "Other names": "AMD Ryzen 5 4500U with Radeon Graphics, Radeon Graphics Ryzen 5 4500U with , Radeon Graphics Ryzen 5 4500U", - "Videocard First Benchmarked": "2020-04-21", - "G3DMark/Price": "NA", - "Overall Rank": "770", - "Last Price Change": "NA", - "Score": 1817, - "Average G2D Mark": 534, - "Samples": 1400 - } - ], - "gpu4245": [ - "Ryzen 5 4600G with Radeon Graphics", - { - "Other names": "AMD Ryzen 5 4600G with Radeon Graphics, Radeon Graphics Ryzen 5 4600G with , Radeon Graphics Ryzen 5 4600G", - "Videocard First Benchmarked": "2020-07-28", - "G3DMark/Price": "NA", - "Overall Rank": "620", - "Last Price Change": "NA", - "Score": 2366, - "Average G2D Mark": 622, - "Samples": 392 - } - ], - "gpu4255": [ - "Ryzen 5 4600H with Radeon Graphics", - { - "Other names": "AMD Ryzen 5 4600H with Radeon Graphics, Radeon Graphics Ryzen 5 4600H with , Radeon Graphics Ryzen 5 4600H", - "Videocard First Benchmarked": "2020-08-26", - "G3DMark/Price": "NA", - "Overall Rank": "654", - "Last Price Change": "NA", - "Score": 2256, - "Average G2D Mark": 563, - "Samples": 228 - } - ], - "gpu4277": [ - "Ryzen 5 4600HS with Radeon Graphics", - { - "Other names": "Radeon Graphics Ryzen 5 4600HS with , Radeon Graphics Ryzen 5 4600HS", - "Videocard First Benchmarked": "2020-09-11", - "G3DMark/Price": "NA", - "Overall Rank": "225", - "Last Price Change": "NA", - "Score": 8371, - "Average G2D Mark": 414, - "Samples": 3 - } - ], - "gpu4237": [ - "Ryzen 5 4600U with Radeon Graphics", - { - "Other names": "AMD Ryzen 5 4600U with Radeon Graphics, Radeon Graphics Ryzen 5 4600U with , Radeon Graphics Ryzen 5 4600U", - "Videocard First Benchmarked": "2020-05-15", - "G3DMark/Price": "NA", - "Overall Rank": "744", - "Last Price Change": "NA", - "Score": 1888, - "Average G2D Mark": 557, - "Samples": 62 - } - ], - "gpu4506": [ - "Ryzen 5 5500U with Radeon Graphics", - { - "Other names": "AMD Ryzen 5 5500U with Radeon Graphics", - "Videocard First Benchmarked": "2021-02-27", - "G3DMark/Price": "NA", - "Overall Rank": "705", - "Last Price Change": "NA", - "Score": 2008, - "Average G2D Mark": 544, - "Samples": 1373 - } - ], - "gpu4578": [ - "Ryzen 5 5560U with Radeon Graphics", - { - "Other names": "AMD Ryzen 5 5560U with Radeon Graphics", - "Videocard First Benchmarked": "2022-03-31", - "G3DMark/Price": "NA", - "Overall Rank": "678", - "Last Price Change": "NA", - "Score": 2114, - "Average G2D Mark": 598, - "Samples": 5 - } - ], - "gpu4406": [ - "Ryzen 5 5600G with Radeon Graphics", - { - "Other names": "AMD Ryzen 5 5600G with Radeon Graphics, AMD Radeon(TM) Graphics Ryzen 5 5600G , AMD Radeon RX Vega Graphics Ryzen 5 5600G", - "Videocard First Benchmarked": "2021-05-10", - "G3DMark/Price": "NA", - "Overall Rank": "585", - "Last Price Change": "NA", - "Score": 2580, - "Average G2D Mark": 776, - "Samples": 3059 - } - ], - "gpu4435": [ - "Ryzen 5 5600GE with Radeon Graphics", - { - "Other names": "AMD Ryzen 5 5600GE with Radeon Graphics", - "Videocard First Benchmarked": "2021-06-10", - "G3DMark/Price": "NA", - "Overall Rank": "578", - "Last Price Change": "NA", - "Score": 2602, - "Average G2D Mark": 886, - "Samples": 18 - } - ], - "gpu4426": [ - "Ryzen 5 5600H with Radeon Graphics", - { - "Other names": "AMD Ryzen 5 5600H with Radeon Graphics", - "Videocard First Benchmarked": "2021-06-08", - "G3DMark/Price": "NA", - "Overall Rank": "613", - "Last Price Change": "NA", - "Score": 2411, - "Average G2D Mark": 631, - "Samples": 22 - } - ], - "gpu4404": [ - "Ryzen 5 5600U with Radeon Graphics", - { - "Other names": "AMD Ryzen 5 5600U with Radeon Graphics", - "Videocard First Benchmarked": "2021-04-18", - "G3DMark/Price": "NA", - "Overall Rank": "668", - "Last Price Change": "NA", - "Score": 2182, - "Average G2D Mark": 639, - "Samples": 60 - } - ], - "gpu4868": [ - "Ryzen 5 5625U with Radeon Graphics", - { - "Other names": "AMD Ryzen 5 5625U with Radeon Graphics", - "Videocard First Benchmarked": "2022-03-04", - "G3DMark/Price": "NA", - "Overall Rank": "713", - "Last Price Change": "NA", - "Score": 1991, - "Average G2D Mark": 587, - "Samples": 195 - } - ], - "gpu4628": [ - "Ryzen 5 6600HS Creator Edition", - { - "Other names": "Ryzen 5 6600HS Creator Edition", - "Videocard First Benchmarked": "2022-11-30", - "G3DMark/Price": "NA", - "Overall Rank": "461", - "Last Price Change": "NA", - "Score": 3686, - "Average G2D Mark": 767, - "Samples": 4 - } - ], - "gpu4589": [ - "Ryzen 5 6600U with Radeon Graphics", - { - "Other names": "AMD Ryzen 5 6600U with Radeon Graphics", - "Videocard First Benchmarked": "2022-07-29", - "G3DMark/Price": "NA", - "Overall Rank": "503", - "Last Price Change": "NA", - "Score": 3233, - "Average G2D Mark": 754, - "Samples": 2 - } - ], - "gpu4874": [ - "Ryzen 5 7530U with Radeon Graphics", - { - "Other names": "AMD Ryzen 5 7530U with Radeon Graphics", - "Videocard First Benchmarked": "2022-12-12", - "G3DMark/Price": "NA", - "Overall Rank": "626", - "Last Price Change": "NA", - "Score": 2356, - "Average G2D Mark": 636, - "Samples": 6 - } - ], - "gpu4865": [ - "Ryzen 5 7535U with Radeon Graphics", - { - "Other names": "AMD Ryzen 5 7535U with Radeon Graphics", - "Videocard First Benchmarked": "2022-02-01", - "G3DMark/Price": "NA", - "Overall Rank": "475", - "Last Price Change": "NA", - "Score": 3529, - "Average G2D Mark": 681, - "Samples": 2 - } - ], - "gpu4254": [ - "Ryzen 5 PRO 4400G with Radeon Graphics", - { - "Other names": "AMD Ryzen 5 PRO 4400G with Radeon Graphics, Radeon Graphics Ryzen 5 PRO 4400G with", - "Videocard First Benchmarked": "2020-08-25", - "G3DMark/Price": "NA", - "Overall Rank": "637", - "Last Price Change": "NA", - "Score": 2306, - "Average G2D Mark": 599, - "Samples": 3 - } - ], - "gpu4308": [ - "Ryzen 5 PRO 4400GE with Radeon Graphics", - { - "Other names": "Radeon Graphics Ryzen 5 PRO 4400GE with", - "Videocard First Benchmarked": "2020-11-10", - "G3DMark/Price": "NA", - "Overall Rank": "882", - "Last Price Change": "NA", - "Score": 1442, - "Average G2D Mark": 563, - "Samples": 2 - } - ], - "gpu4239": [ - "Ryzen 5 PRO 4500U with Radeon Graphics", - { - "Other names": "AMD Ryzen 5 PRO 4500U with Radeon Graphics", - "Videocard First Benchmarked": "2020-05-28", - "G3DMark/Price": "NA", - "Overall Rank": "706", - "Last Price Change": "NA", - "Score": 2008, - "Average G2D Mark": 564, - "Samples": 4 - } - ], - "gpu4229": [ - "Ryzen 5 Pro 4650G with Radeon Graphics", - { - "Other names": "AMD Ryzen 5 Pro 4650G with Radeon Graphics, Radeon Graphics Ryzen 5 PRO 4650G with , Radeon Graphics Ryzen 5 PRO 4650G", - "Videocard First Benchmarked": "2020-07-21", - "G3DMark/Price": "NA", - "Overall Rank": "611", - "Last Price Change": "NA", - "Score": 2415, - "Average G2D Mark": 677, - "Samples": 519 - } - ], - "gpu4289": [ - "Ryzen 5 PRO 4650GE with Radeon Graphics", - { - "Other names": "Radeon Graphics Ryzen 5 PRO 4650GE with , Radeon Graphics Ryzen 5 PRO 4650GE", - "Videocard First Benchmarked": "2020-09-22", - "G3DMark/Price": "NA", - "Overall Rank": "685", - "Last Price Change": "NA", - "Score": 2102, - "Average G2D Mark": 627, - "Samples": 122 - } - ], - "gpu4242": [ - "Ryzen 5 PRO 4650U with Radeon Graphics", - { - "Other names": "AMD Ryzen 5 PRO 4650U with Radeon Graphics, Radeon Graphics Ryzen 5 PRO 4650U with , Radeon Graphics Ryzen 5 PRO 4650U", - "Videocard First Benchmarked": "2020-07-01", - "G3DMark/Price": "NA", - "Overall Rank": "797", - "Last Price Change": "NA", - "Score": 1721, - "Average G2D Mark": 521, - "Samples": 280 - } - ], - "gpu4428": [ - "Ryzen 5 PRO 5650G with Radeon Graphics", - { - "Other names": "AMD Ryzen 5 PRO 5650G with Radeon Graphics", - "Videocard First Benchmarked": "2021-06-08", - "G3DMark/Price": "NA", - "Overall Rank": "597", - "Last Price Change": "NA", - "Score": 2501, - "Average G2D Mark": 856, - "Samples": 27 - } - ], - "gpu4431": [ - "Ryzen 5 PRO 5650GE with Radeon Graphics", - { - "Other names": "AMD Ryzen 5 PRO 5650GE with Radeon Graphics", - "Videocard First Benchmarked": "2021-06-09", - "G3DMark/Price": "NA", - "Overall Rank": "604", - "Last Price Change": "NA", - "Score": 2459, - "Average G2D Mark": 831, - "Samples": 33 - } - ], - "gpu4407": [ - "Ryzen 5 PRO 5650U with Radeon Graphics", - { - "Other names": "AMD Ryzen 5 PRO 5650U with Radeon Graphics, AMD Radeon(TM) Graphics Ryzen 5 PRO 5650U , AMD Radeon(TM) Pro Graphics Ryzen 5 PRO 5650U", - "Videocard First Benchmarked": "2021-05-20", - "G3DMark/Price": "NA", - "Overall Rank": "694", - "Last Price Change": "NA", - "Score": 2054, - "Average G2D Mark": 644, - "Samples": 186 - } - ], - "gpu4871": [ - "Ryzen 5 PRO 5675U with Radeon Graphics", - { - "Other names": "AMD Ryzen 5 PRO 5675U with Radeon Graphics", - "Videocard First Benchmarked": "2022-04-21", - "G3DMark/Price": "NA", - "Overall Rank": "790", - "Last Price Change": "NA", - "Score": 1733, - "Average G2D Mark": 587, - "Samples": 24 - } - ], - "gpu4638": [ - "Ryzen 5 PRO 6650U", - { - "Other names": "Ryzen 5 PRO 6650U", - "Videocard First Benchmarked": "2022-12-05", - "G3DMark/Price": "NA", - "Overall Rank": "476", - "Last Price Change": "NA", - "Score": 3519, - "Average G2D Mark": 766, - "Samples": 11 - } - ], - "gpu4581": [ - "Ryzen 5 PRO 6650U with Radeon Graphics", - { - "Other names": "AMD Ryzen 5 PRO 6650U with Radeon Graphics", - "Videocard First Benchmarked": "2022-04-19", - "G3DMark/Price": "NA", - "Overall Rank": "469", - "Last Price Change": "NA", - "Score": 3575, - "Average G2D Mark": 718, - "Samples": 18 - } - ], - "gpu4878": [ - "Ryzen 5 PRO 7530U with Radeon Graphics", - { - "Other names": "AMD Radeon (TM) Graphics Ryzen 5 PRO 7530U , AMD Ryzen 5 PRO 7530U with Radeon Graphics", - "Videocard First Benchmarked": "2023-05-17", - "G3DMark/Price": "NA", - "Overall Rank": "662", - "Last Price Change": "NA", - "Score": 2228, - "Average G2D Mark": 599, - "Samples": 20 - } - ], - "gpu3925": [ - "Ryzen 7 2700U with Radeon Vega", - { - "Other names": "AMD Ryzen 7 2700U with Radeon Vega Graphics", - "Videocard First Benchmarked": "2018-04-15", - "G3DMark/Price": "NA", - "Overall Rank": "825", - "Last Price Change": "NA", - "Score": 1617, - "Average G2D Mark": 442, - "Samples": 8 - } - ], - "gpu4307": [ - "Ryzen 7 4700G with Radeon Graphics", - { - "Other names": "Radeon Graphics Ryzen 7 4700G with", - "Videocard First Benchmarked": "2020-11-09", - "G3DMark/Price": "NA", - "Overall Rank": "667", - "Last Price Change": "NA", - "Score": 2187, - "Average G2D Mark": 671, - "Samples": 35 - } - ], - "gpu4292": [ - "Ryzen 7 4700GE with Radeon Graphics", - { - "Other names": "Radeon Graphics Ryzen 7 4700GE with", - "Videocard First Benchmarked": "2020-09-26", - "G3DMark/Price": "NA", - "Overall Rank": "600", - "Last Price Change": "NA", - "Score": 2496, - "Average G2D Mark": 761, - "Samples": 2 - } - ], - "gpu4234": [ - "Ryzen 7 4700U with Radeon Graphics", - { - "Other names": "AMD Ryzen 7 4700U with Radeon Graphics, Radeon Graphics Ryzen 7 4700U with", - "Videocard First Benchmarked": "2020-04-15", - "G3DMark/Price": "NA", - "Overall Rank": "698", - "Last Price Change": "NA", - "Score": 2034, - "Average G2D Mark": 553, - "Samples": 532 - } - ], - "gpu4233": [ - "Ryzen 7 4800H with Radeon Graphics", - { - "Other names": "AMD Ryzen 7 4800H with Radeon Graphics, Radeon Graphics Ryzen 7 4800H with", - "Videocard First Benchmarked": "2020-04-15", - "G3DMark/Price": "NA", - "Overall Rank": "679", - "Last Price Change": "NA", - "Score": 2113, - "Average G2D Mark": 585, - "Samples": 39 - } - ], - "gpu4236": [ - "Ryzen 7 4800U with Radeon Graphics", - { - "Other names": "AMD Ryzen 7 4800U with Radeon Graphics, Radeon Graphics Ryzen 7 4800U with", - "Videocard First Benchmarked": "2020-05-09", - "G3DMark/Price": "NA", - "Overall Rank": "627", - "Last Price Change": "NA", - "Score": 2344, - "Average G2D Mark": 570, - "Samples": 121 - } - ], - "gpu4405": [ - "Ryzen 7 5700G with Radeon Graphics", - { - "Other names": "AMD Ryzen 7 5700G with Radeon Graphics, AMD Radeon(TM) Graphics Ryzen 7 5700G , AMD Radeon RX Vega Graphics Ryzen 7 5700G", - "Videocard First Benchmarked": "2021-05-05", - "G3DMark/Price": "NA", - "Overall Rank": "544", - "Last Price Change": "NA", - "Score": 2806, - "Average G2D Mark": 812, - "Samples": 1708 - } - ], - "gpu4433": [ - "Ryzen 7 5700GE with Radeon Graphics", - { - "Other names": "AMD Ryzen 7 5700GE with Radeon Graphics, AMD Radeon(TM) Graphics Ryzen 7 5700GE", - "Videocard First Benchmarked": "2021-06-09", - "G3DMark/Price": "NA", - "Overall Rank": "570", - "Last Price Change": "NA", - "Score": 2656, - "Average G2D Mark": 858, - "Samples": 8 - } - ], - "gpu4507": [ - "Ryzen 7 5700U with Radeon Graphics", - { - "Other names": "AMD Ryzen 7 5700U with Radeon Graphics", - "Videocard First Benchmarked": "2021-02-27", - "G3DMark/Price": "NA", - "Overall Rank": "656", - "Last Price Change": "NA", - "Score": 2247, - "Average G2D Mark": 567, - "Samples": 1127 - } - ], - "gpu4398": [ - "Ryzen 7 5800H with Radeon Graphics", - { - "Other names": "AMD Ryzen 7 5800H with Radeon Graphics", - "Videocard First Benchmarked": "2021-02-15", - "G3DMark/Price": "NA", - "Overall Rank": "551", - "Last Price Change": "NA", - "Score": 2748, - "Average G2D Mark": 758, - "Samples": 54 - } - ], - "gpu4401": [ - "Ryzen 7 5800HS with Radeon Graphics", - { - "Other names": "AMD Ryzen 7 5800HS with Radeon Graphics", - "Videocard First Benchmarked": "2021-03-09", - "G3DMark/Price": "NA", - "Overall Rank": "506", - "Last Price Change": "NA", - "Score": 3214, - "Average G2D Mark": 583, - "Samples": 6 - } - ], - "gpu4399": [ - "Ryzen 7 5800U with Radeon Graphics", - { - "Other names": "AMD Ryzen 7 5800U with Radeon Graphics", - "Videocard First Benchmarked": "2021-02-15", - "G3DMark/Price": "NA", - "Overall Rank": "625", - "Last Price Change": "NA", - "Score": 2358, - "Average G2D Mark": 687, - "Samples": 55 - } - ], - "gpu4869": [ - "Ryzen 7 5825U with Radeon Graphics", - { - "Other names": "AMD Ryzen 7 5825U with Radeon Graphics", - "Videocard First Benchmarked": "2022-03-22", - "G3DMark/Price": "NA", - "Overall Rank": "634", - "Last Price Change": "NA", - "Score": 2319, - "Average G2D Mark": 646, - "Samples": 197 - } - ], - "gpu4611": [ - "Ryzen 7 6800H", - { - "Other names": "Ryzen 7 6800H", - "Videocard First Benchmarked": "2022-10-24", - "G3DMark/Price": "NA", - "Overall Rank": "345", - "Last Price Change": "NA", - "Score": 5248, - "Average G2D Mark": 808, - "Samples": 10 - } - ], - "gpu4584": [ - "Ryzen 7 6800H with Radeon Graphics", - { - "Other names": "AMD Ryzen 7 6800H with Radeon Graphics", - "Videocard First Benchmarked": "2022-05-31", - "G3DMark/Price": "NA", - "Overall Rank": "370", - "Last Price Change": "NA", - "Score": 4922, - "Average G2D Mark": 774, - "Samples": 25 - } - ], - "gpu4629": [ - "Ryzen 7 6800HS", - { - "Other names": "Ryzen 7 6800HS", - "Videocard First Benchmarked": "2022-11-20", - "G3DMark/Price": "NA", - "Overall Rank": "346", - "Last Price Change": "NA", - "Score": 5237, - "Average G2D Mark": 867, - "Samples": 3 - } - ], - "gpu4590": [ - "Ryzen 7 6800HS Creator Edition", - { - "Other names": "AMD Ryzen 7 6800HS Creator Edition, Ryzen 7 6800HS Creator Edition", - "Videocard First Benchmarked": "2022-08-08", - "G3DMark/Price": "NA", - "Overall Rank": "335", - "Last Price Change": "NA", - "Score": 5345, - "Average G2D Mark": 840, - "Samples": 7 - } - ], - "gpu4582": [ - "Ryzen 7 6800HS with Radeon Graphics", - { - "Other names": "AMD Ryzen 7 6800HS with Radeon Graphics", - "Videocard First Benchmarked": "2022-05-07", - "G3DMark/Price": "NA", - "Overall Rank": "276", - "Last Price Change": "NA", - "Score": 6867, - "Average G2D Mark": 704, - "Samples": 3 - } - ], - "gpu4625": [ - "Ryzen 7 6800U", - { - "Other names": "Ryzen 7 6800U", - "Videocard First Benchmarked": "2022-11-17", - "G3DMark/Price": "NA", - "Overall Rank": "367", - "Last Price Change": "NA", - "Score": 5006, - "Average G2D Mark": 784, - "Samples": 17 - } - ], - "gpu4588": [ - "Ryzen 7 6800U with Radeon Graphics", - { - "Other names": "AMD Ryzen 7 6800U with Radeon Graphics", - "Videocard First Benchmarked": "2022-07-07", - "G3DMark/Price": "NA", - "Overall Rank": "374", - "Last Price Change": "NA", - "Score": 4845, - "Average G2D Mark": 779, - "Samples": 33 - } - ], - "gpu4876": [ - "Ryzen 7 7730U with Radeon Graphics", - { - "Other names": "AMD Ryzen 7 7730U with Radeon Graphics", - "Videocard First Benchmarked": "2023-02-13", - "G3DMark/Price": "NA", - "Overall Rank": "616", - "Last Price Change": "NA", - "Score": 2400, - "Average G2D Mark": 647, - "Samples": 5 - } - ], - "gpu4864": [ - "Ryzen 7 7735HS with Radeon Graphics", - { - "Other names": "AMD Ryzen 7 7735HS with Radeon Graphics", - "Videocard First Benchmarked": "2022-02-01", - "G3DMark/Price": "NA", - "Overall Rank": "339", - "Last Price Change": "NA", - "Score": 5307, - "Average G2D Mark": 755, - "Samples": 14 - } - ], - "gpu4243": [ - "Ryzen 7 Extreme Edition", - { - "Other names": "AMD Ryzen 7 Extreme Edition, Radeon Graphics Ryzen 7 Extreme Edition", - "Videocard First Benchmarked": "2020-07-22", - "G3DMark/Price": "NA", - "Overall Rank": "663", - "Last Price Change": "NA", - "Score": 2227, - "Average G2D Mark": 527, - "Samples": 10 - } - ], - "gpu4231": [ - "Ryzen 7 Pro 4750G with Radeon Graphics", - { - "Other names": "AMD Ryzen 7 Pro 4750G with Radeon Graphics, Radeon Graphics Ryzen 7 PRO 4750G with", - "Videocard First Benchmarked": "2020-04-15", - "G3DMark/Price": "NA", - "Overall Rank": "567", - "Last Price Change": "NA", - "Score": 2682, - "Average G2D Mark": 703, - "Samples": 91 - } - ], - "gpu4288": [ - "Ryzen 7 PRO 4750GE with Radeon Graphics", - { - "Other names": "Radeon Graphics Ryzen 7 PRO 4750GE with", - "Videocard First Benchmarked": "2020-09-21", - "G3DMark/Price": "NA", - "Overall Rank": "587", - "Last Price Change": "NA", - "Score": 2550, - "Average G2D Mark": 683, - "Samples": 7 - } - ], - "gpu4238": [ - "Ryzen 7 PRO 4750U with Radeon Graphics", - { - "Other names": "AMD Ryzen 7 PRO 4750U with Radeon Graphics, Radeon Graphics Ryzen 7 PRO 4750U with", - "Videocard First Benchmarked": "2020-05-27", - "G3DMark/Price": "NA", - "Overall Rank": "699", - "Last Price Change": "NA", - "Score": 2030, - "Average G2D Mark": 548, - "Samples": 252 - } - ], - "gpu4427": [ - "Ryzen 7 PRO 5750G with Radeon Graphics", - { - "Other names": "AMD Ryzen 7 PRO 5750G with Radeon Graphics, AMD Radeon(TM) Graphics Ryzen 7 PRO 5750G", - "Videocard First Benchmarked": "2021-06-08", - "G3DMark/Price": "NA", - "Overall Rank": "608", - "Last Price Change": "NA", - "Score": 2421, - "Average G2D Mark": 823, - "Samples": 65 - } - ], - "gpu4432": [ - "Ryzen 7 PRO 5750GE with Radeon Graphics", - { - "Other names": "AMD Ryzen 7 PRO 5750GE with Radeon Graphics, AMD Radeon(TM) Graphics Ryzen 7 PRO 5750GE", - "Videocard First Benchmarked": "2021-06-09", - "G3DMark/Price": "NA", - "Overall Rank": "588", - "Last Price Change": "NA", - "Score": 2546, - "Average G2D Mark": 805, - "Samples": 73 - } - ], - "gpu4403": [ - "Ryzen 7 PRO 5850U with Radeon Graphics", - { - "Other names": "AMD Ryzen 7 PRO 5850U with Radeon Graphics, AMD Radeon(TM) Graphics Ryzen 7 PRO 5850U , AMD Radeon(TM) Pro Graphics Ryzen 7 PRO 5850U , AMD Radeon PRO Graphics Ryzen 7 PRO 5850U", - "Videocard First Benchmarked": "2021-03-17", - "G3DMark/Price": "NA", - "Overall Rank": "651", - "Last Price Change": "NA", - "Score": 2266, - "Average G2D Mark": 655, - "Samples": 299 - } - ], - "gpu4870": [ - "Ryzen 7 PRO 5875U with Radeon Graphics", - { - "Other names": "AMD Ryzen 7 PRO 5875U with Radeon Graphics", - "Videocard First Benchmarked": "2022-03-23", - "G3DMark/Price": "NA", - "Overall Rank": "690", - "Last Price Change": "NA", - "Score": 2067, - "Average G2D Mark": 650, - "Samples": 24 - } - ], - "gpu4585": [ - "Ryzen 7 PRO 6850HS with Radeon Graphics", - { - "Other names": "AMD Ryzen 7 PRO 6850HS with Radeon Graphics", - "Videocard First Benchmarked": "2022-06-08", - "G3DMark/Price": "NA", - "Overall Rank": "455", - "Last Price Change": "NA", - "Score": 3736, - "Average G2D Mark": 758, - "Samples": 5 - } - ], - "gpu4626": [ - "Ryzen 7 PRO 6850U", - { - "Other names": "Ryzen 7 PRO 6850U", - "Videocard First Benchmarked": "2022-11-18", - "G3DMark/Price": "NA", - "Overall Rank": "317", - "Last Price Change": "NA", - "Score": 5581, - "Average G2D Mark": 741, - "Samples": 25 - } - ], - "gpu4579": [ - "Ryzen 7 PRO 6850U with Radeon Graphics", - { - "Other names": "AMD Ryzen 7 PRO 6850U with Radeon Graphics", - "Videocard First Benchmarked": "2022-03-31", - "G3DMark/Price": "NA", - "Overall Rank": "364", - "Last Price Change": "NA", - "Score": 5043, - "Average G2D Mark": 806, - "Samples": 58 - } - ], - "gpu4630": [ - "Ryzen 7 PRO 6860Z", - { - "Other names": "Ryzen 7 PRO 6860Z", - "Videocard First Benchmarked": "2022-11-22", - "G3DMark/Price": "NA", - "Overall Rank": "359", - "Last Price Change": "NA", - "Score": 5077, - "Average G2D Mark": 837, - "Samples": 2 - } - ], - "gpu4587": [ - "Ryzen 7 PRO 6860Z with Radeon Graphics", - { - "Other names": "AMD Ryzen 7 PRO 6860Z with Radeon Graphics", - "Videocard First Benchmarked": "2022-07-05", - "G3DMark/Price": "NA", - "Overall Rank": "378", - "Last Price Change": "NA", - "Score": 4789, - "Average G2D Mark": 795, - "Samples": 14 - } - ], - "gpu4873": [ - "Ryzen 7 PRO 7730U with Radeon Graphics", - { - "Other names": "AMD Ryzen 7 PRO 7730U with Radeon Graphics", - "Videocard First Benchmarked": "2022-11-02", - "G3DMark/Price": "NA", - "Overall Rank": "574", - "Last Price Change": "NA", - "Score": 2634, - "Average G2D Mark": 676, - "Samples": 11 - } - ], - "gpu4397": [ - "Ryzen 9 5900HS with Radeon Graphics", - { - "Other names": "AMD Ryzen 9 5900HS with Radeon Graphics, AMD Radeon(TM) Graphics Ryzen 9 5900HS", - "Videocard First Benchmarked": "2021-02-15", - "G3DMark/Price": "NA", - "Overall Rank": "320", - "Last Price Change": "NA", - "Score": 5570, - "Average G2D Mark": 536, - "Samples": 35 - } - ], - "gpu4396": [ - "Ryzen 9 5900HX with Radeon Graphics", - { - "Other names": "AMD Ryzen 9 5900HX with Radeon Graphics, AMD Radeon(TM) Graphics Ryzen 9 5900HX", - "Videocard First Benchmarked": "2021-01-27", - "G3DMark/Price": "NA", - "Overall Rank": "532", - "Last Price Change": "NA", - "Score": 2901, - "Average G2D Mark": 745, - "Samples": 408 - } - ], - "gpu4623": [ - "Ryzen 9 6900HS", - { - "Other names": "Ryzen 9 6900HS", - "Videocard First Benchmarked": "2022-11-17", - "G3DMark/Price": "NA", - "Overall Rank": "235", - "Last Price Change": "NA", - "Score": 8005, - "Average G2D Mark": 836, - "Samples": 3 - } - ], - "gpu4583": [ - "Ryzen 9 6900HS with Radeon Graphics", - { - "Other names": "AMD Ryzen 9 6900HS with Radeon Graphics", - "Videocard First Benchmarked": "2022-05-30", - "G3DMark/Price": "NA", - "Overall Rank": "291", - "Last Price Change": "NA", - "Score": 6331, - "Average G2D Mark": 707, - "Samples": 6 - } - ], - "gpu4624": [ - "Ryzen 9 6900HX", - { - "Other names": "Ryzen 9 6900HX", - "Videocard First Benchmarked": "2022-11-22", - "G3DMark/Price": "NA", - "Overall Rank": "329", - "Last Price Change": "NA", - "Score": 5416, - "Average G2D Mark": 837, - "Samples": 16 - } - ], - "gpu4607": [ - "Ryzen 9 6900HX with Radeon Graphics", - { - "Other names": "AMD Ryzen 9 6900HX with Radeon Graphics", - "Videocard First Benchmarked": "2022-10-11", - "G3DMark/Price": "NA", - "Overall Rank": "387", - "Last Price Change": "NA", - "Score": 4680, - "Average G2D Mark": 797, - "Samples": 10 - } - ], - "gpu4636": [ - "Ryzen 9 PRO 6950H", - { - "Other names": "Ryzen 9 PRO 6950H", - "Videocard First Benchmarked": "2022-12-03", - "G3DMark/Price": "NA", - "Overall Rank": "311", - "Last Price Change": "NA", - "Score": 5759, - "Average G2D Mark": 950, - "Samples": 9 - } - ], - "gpu4586": [ - "Ryzen 9 PRO 6950HS with Radeon Graphics", - { - "Other names": "AMD Ryzen 9 PRO 6950HS with Radeon Graphics", - "Videocard First Benchmarked": "2022-06-25", - "G3DMark/Price": "NA", - "Overall Rank": "360", - "Last Price Change": "NA", - "Score": 5068, - "Average G2D Mark": 868, - "Samples": 3 - } - ], - "gpu4423": [ - "S3 5400EW", - { - "Other names": "S3 Graphics 5400EW", - "Videocard First Benchmarked": "2021-07-14", - "G3DMark/Price": "NA", - "Overall Rank": "1887", - "Last Price Change": "NA", - "Score": 146, - "Average G2D Mark": 9, - "Samples": 13 - } - ], - "gpu1828": [ - "S3 Chrome 430 ULP", - { - "Other names": "S3 Graphics Chrome 430 ULP", - "Videocard First Benchmarked": "2009-06-29", - "G3DMark/Price": "NA", - "Overall Rank": "2216", - "Last Price Change": "NA", - "Score": 40, - "Average G2D Mark": 310, - "Samples": 2 - } - ], - "gpu1831": [ - "S3 Chrome S25 DDR2", - { - "Other names": "S3 Graphics Chrome S25 DDR2", - "Videocard First Benchmarked": "2011-10-19", - "G3DMark/Price": "NA", - "Overall Rank": "2303", - "Last Price Change": "NA", - "Score": 18, - "Average G2D Mark": 252, - "Samples": 2 - } - ], - "gpu4535": [ - "S3 Chrome S27 DDR3", - { - "Other names": "S3 Graphics Chrome S27 DDR3", - "Videocard First Benchmarked": "2022-04-18", - "G3DMark/Price": "NA", - "Overall Rank": "2246", - "Last Price Change": "NA", - "Score": 33, - "Average G2D Mark": 7, - "Samples": 2 - } - ], - "gpu1832": [ - "S3 Inc. Savage4", - { - "Other names": "S3 Graphics Inc. Savage4, S3 Inc. Savage4", - "Videocard First Benchmarked": "2011-08-18", - "G3DMark/Price": "NA", - "Overall Rank": "2443", - "Last Price Change": "NA", - "Score": 3, - "Average G2D Mark": 21, - "Samples": 1 - } - ], - "gpu1835": [ - "S3 ProSavageDDR", - { - "Other names": "S3 Graphics ProSavageDDR", - "Videocard First Benchmarked": "2009-04-05", - "G3DMark/Price": "NA", - "Overall Rank": "2481", - "Last Price Change": "NA", - "Score": 1, - "Average G2D Mark": 41, - "Samples": 9 - } - ], - "gpu1840": [ - "S3 SuperSavage/IXC 1014", - { - "Other names": "S3 Graphics SuperSavage/IXC 1014", - "Videocard First Benchmarked": "2009-04-03", - "G3DMark/Price": "NA", - "Overall Rank": "2475", - "Last Price Change": "NA", - "Score": 2, - "Average G2D Mark": 147, - "Samples": 1 - } - ], - "gpu1853": [ - "SAPPHIRE RADEON 9000 ATLANTIS PRO", - { - "Other names": "SAPPHIRE RADEON 9000 ATLANTIS PRO", - "Videocard First Benchmarked": "2009-11-03", - "G3DMark/Price": "NA", - "Overall Rank": "2379", - "Last Price Change": "NA", - "Score": 5, - "Average G2D Mark": 158, - "Samples": 1 - } - ], - "gpu1859": [ - "SAPPHIRE RADEON 9600 ATLANTIS", - { - "Other names": "SAPPHIRE RADEON 9600 ATLANTIS", - "Videocard First Benchmarked": "2009-05-11", - "G3DMark/Price": "NA", - "Overall Rank": "2183", - "Last Price Change": "NA", - "Score": 47, - "Average G2D Mark": 149, - "Samples": 9 - } - ], - "gpu1864": [ - "SAPPHIRE Radeon X1550", - { - "Other names": "SAPPHIRE Radeon X1550, SAPPHIRE Radeon X1550 Secondary", - "Videocard First Benchmarked": "2010-02-03", - "G3DMark/Price": "NA", - "Overall Rank": "2138", - "Last Price Change": "NA", - "Score": 61, - "Average G2D Mark": 285, - "Samples": 5 - } - ], - "gpu1874": [ - "Sapphire RADEON X800 GT", - { - "Other names": "Sapphire RADEON X800 GT, Sapphire RADEON X800 GT Secondary", - "Videocard First Benchmarked": "2009-05-03", - "G3DMark/Price": "NA", - "Overall Rank": "1980", - "Last Price Change": "NA", - "Score": 113, - "Average G2D Mark": 274, - "Samples": 2 - } - ], - "gpu2720": [ - "Seria Mobility Radeon HD 3400", - { - "Other names": "Seria ATI Mobility Radeon HD 3400", - "Videocard First Benchmarked": "2013-11-09", - "G3DMark/Price": "NA", - "Overall Rank": "1935", - "Last Price Change": "NA", - "Score": 125, - "Average G2D Mark": 148, - "Samples": 1 - } - ], - "gpu3262": [ - "Seria Radeon HD 7700", - { - "Other names": "Seria AMD Radeon HD 7700", - "Videocard First Benchmarked": "2015-07-19", - "G3DMark/Price": "NA", - "Overall Rank": "830", - "Last Price Change": "NA", - "Score": 1604, - "Average G2D Mark": 201, - "Samples": 1 - } - ], - "gpu1919": [ - "SUMO 9640", - { - "Other names": "SUMO 9640", - "Videocard First Benchmarked": "2011-10-26", - "G3DMark/Price": "NA", - "Overall Rank": "1338", - "Last Price Change": "NA", - "Score": 650, - "Average G2D Mark": 398, - "Samples": 6 - } - ], - "gpu1920": [ - "SUMO 9644", - { - "Other names": "SUMO 9644", - "Videocard First Benchmarked": "2011-10-14", - "G3DMark/Price": "NA", - "Overall Rank": "1566", - "Last Price Change": "NA", - "Score": 466, - "Average G2D Mark": 386, - "Samples": 1 - } - ], - "gpu1922": [ - "SUMO 964A", - { - "Other names": "SUMO 964A", - "Videocard First Benchmarked": "2011-08-24", - "G3DMark/Price": "NA", - "Overall Rank": "1533", - "Last Price Change": "NA", - "Score": 498, - "Average G2D Mark": 403, - "Samples": 2 - } - ], - "gpu4576": [ - "Surface Duo Adreno 640 GPU", - { - "Other names": "Surface Duo Adreno 640 GPU", - "Videocard First Benchmarked": "2022-08-19", - "G3DMark/Price": "NA", - "Overall Rank": "1411", - "Last Price Change": "NA", - "Score": 592, - "Average G2D Mark": 194, - "Samples": 4 - } - ], - "gpu4442": [ - "T1000", - { - "Other names": "NVIDIA T1000", - "Videocard First Benchmarked": "2021-07-30", - "G3DMark/Price": "18.93", - "Overall Rank": "250", - "Last Price Change": "$404.74 USD (2023-12-07)", - "Score": 7663, - "Average G2D Mark": 865, - "Samples": 310 - } - ], - "gpu4513": [ - "T1000 8GB", - { - "Other names": "NVIDIA T1000 8GB", - "Videocard First Benchmarked": "2022-03-03", - "G3DMark/Price": "NA", - "Overall Rank": "252", - "Last Price Change": "NA", - "Score": 7619, - "Average G2D Mark": 858, - "Samples": 190 - } - ], - "gpu4422": [ - "T1200 Laptop GPU", - { - "Other names": "NVIDIA T1200 Laptop GPU (Mobile)", - "Videocard First Benchmarked": "2021-07-14", - "G3DMark/Price": "NA", - "Overall Rank": "244", - "Last Price Change": "NA", - "Score": 7818, - "Average G2D Mark": 458, - "Samples": 340 - } - ], - "gpu4446": [ - "T400", - { - "Other names": "NVIDIA T400", - "Videocard First Benchmarked": "2021-08-19", - "G3DMark/Price": "20.14", - "Overall Rank": "466", - "Last Price Change": "$179.99 USD (2023-01-31)", - "Score": 3625, - "Average G2D Mark": 592, - "Samples": 155 - } - ], - "gpu4512": [ - "T400 4GB", - { - "Other names": "NVIDIA T400 4GB", - "Videocard First Benchmarked": "2022-03-03", - "G3DMark/Price": "NA", - "Overall Rank": "459", - "Last Price Change": "NA", - "Score": 3693, - "Average G2D Mark": 643, - "Samples": 136 - } - ], - "gpu4335": [ - "T500", - { - "Other names": "NVIDIA T500 (Mobile)", - "Videocard First Benchmarked": "2021-01-27", - "G3DMark/Price": "NA", - "Overall Rank": "457", - "Last Price Change": "NA", - "Score": 3708, - "Average G2D Mark": 303, - "Samples": 355 - } - ], - "gpu4520": [ - "T550 Laptop GPU", - { - "Other names": "NVIDIA T550 Laptop GPU (Mobile)", - "Videocard First Benchmarked": "2022-03-20", - "G3DMark/Price": "NA", - "Overall Rank": "376", - "Last Price Change": "NA", - "Score": 4823, - "Average G2D Mark": 406, - "Samples": 171 - } - ], - "gpu4439": [ - "T600", - { - "Other names": "NVIDIA T600", - "Videocard First Benchmarked": "2021-07-24", - "G3DMark/Price": "26.91", - "Overall Rank": "288", - "Last Price Change": "$239.99 USD (2023-03-09)", - "Score": 6458, - "Average G2D Mark": 738, - "Samples": 319 - } - ], - "gpu4424": [ - "T600 Laptop GPU", - { - "Other names": "NVIDIA T600 Laptop GPU (Mobile)", - "Videocard First Benchmarked": "2021-07-15", - "G3DMark/Price": "NA", - "Overall Rank": "267", - "Last Price Change": "NA", - "Score": 7101, - "Average G2D Mark": 440, - "Samples": 199 - } - ], - "gpu4077": [ - "TENSOR 1.0 Driver Intel HD 630", - { - "Other names": "TENSOR 1.0 Driver Intel(R) HD Graphics 630", - "Videocard First Benchmarked": "2019-04-27", - "G3DMark/Price": "NA", - "Overall Rank": "926", - "Last Price Change": "NA", - "Score": 1300, - "Average G2D Mark": 873, - "Samples": 1 - } - ], - "gpu1669": [ - "Tesla C2050", - { - "Other names": "NVIDIA Tesla C2050", - "Videocard First Benchmarked": "2010-09-13", - "G3DMark/Price": "11.76", - "Overall Rank": "510", - "Last Price Change": "$269.99 USD (2020-02-05)", - "Score": 3176, - "Average G2D Mark": 362, - "Samples": 12 - } - ], - "gpu2515": [ - "Tesla C2050 / C2070", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "6144 MB", - "Memory Clock(s)": "1500 MHz", - "Max TDP": "238 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Tesla C2050 / C2070", - "Videocard First Benchmarked": "2013-05-17", - "G3DMark/Price": "NA", - "Overall Rank": "487", - "Last Price Change": "NA", - "Score": 3428, - "Average G2D Mark": 568, - "Samples": 5 - } - ], - "gpu1670": [ - "Tesla C2070", - { - "Bus Interface": "PCIe 2.0 x16", - "Max Memory Size": "6144 MB", - "Core Clock(s)": "575 MHz", - "Memory Clock(s)": "3000 MHz", - "DirectX": "12", - "OpenGL": "4.5", - "Max TDP": "247 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA Tesla C2070", - "Videocard First Benchmarked": "2011-02-09", - "G3DMark/Price": "4.70", - "Overall Rank": "538", - "Last Price Change": "$604 USD (2021-12-17)", - "Score": 2840, - "Average G2D Mark": 471, - "Samples": 12 - } - ], - "gpu1671": [ - "Tesla C2075", - { - "Other names": "NVIDIA Tesla C2075", - "Videocard First Benchmarked": "2012-01-05", - "G3DMark/Price": "4.67", - "Overall Rank": "524", - "Last Price Change": "$646 USD (2021-08-28)", - "Score": 3017, - "Average G2D Mark": 428, - "Samples": 12 - } - ], - "gpu4496": [ - "Tesla K20m", - { - "Other names": "NVIDIA Tesla K20m", - "Videocard First Benchmarked": "2022-01-30", - "G3DMark/Price": "NA", - "Overall Rank": "413", - "Last Price Change": "NA", - "Score": 4331, - "Average G2D Mark": 205, - "Samples": 3 - } - ], - "gpu4498": [ - "Tesla K20Xm", - { - "Other names": "NVIDIA Tesla K20Xm", - "Videocard First Benchmarked": "2022-02-04", - "G3DMark/Price": "NA", - "Overall Rank": "530", - "Last Price Change": "NA", - "Score": 2918, - "Average G2D Mark": 172, - "Samples": 2 - } - ], - "gpu4545": [ - "Tesla K40c", - { - "Other names": "NVIDIA Tesla K40c", - "Videocard First Benchmarked": "2022-05-16", - "G3DMark/Price": "NA", - "Overall Rank": "402", - "Last Price Change": "NA", - "Score": 4495, - "Average G2D Mark": 325, - "Samples": 3 - } - ], - "gpu4476": [ - "Tesla K40m", - { - "Other names": "NVIDIA Tesla K40m", - "Videocard First Benchmarked": "2021-11-24", - "G3DMark/Price": "NA", - "Overall Rank": "497", - "Last Price Change": "NA", - "Score": 3281, - "Average G2D Mark": 111, - "Samples": 3 - } - ], - "gpu4448": [ - "Tesla K80", - { - "Other names": "NVIDIA Tesla K80", - "Videocard First Benchmarked": "2022-05-10", - "G3DMark/Price": "10.46", - "Overall Rank": "297", - "Last Price Change": "$593.95 USD (2022-04-15)", - "Score": 6210, - "Average G2D Mark": 409, - "Samples": 4 - } - ], - "gpu4095": [ - "Tesla M10", - { - "Other names": "NVIDIA Tesla M10", - "Videocard First Benchmarked": "2019-05-19", - "G3DMark/Price": "1.30", - "Overall Rank": "479", - "Last Price Change": "$2695 USD (2021-11-20)", - "Score": 3490, - "Average G2D Mark": 522, - "Samples": 2 - } - ], - "gpu2800": [ - "Tesla M2070-Q", - { - "Other names": "NVIDIA Tesla M2070-Q", - "Videocard First Benchmarked": "2014-01-23", - "G3DMark/Price": "NA", - "Overall Rank": "923", - "Last Price Change": "NA", - "Score": 1306, - "Average G2D Mark": 444, - "Samples": 1 - } - ], - "gpu4395": [ - "Tesla M40", - { - "Other names": "NVIDIA Tesla M40", - "Videocard First Benchmarked": "2021-05-26", - "G3DMark/Price": "16.97", - "Overall Rank": "176", - "Last Price Change": "$600 USD (2021-12-17)", - "Score": 10183, - "Average G2D Mark": 467, - "Samples": 14 - } - ], - "gpu4450": [ - "Tesla M40 24GB", - { - "Other names": "NVIDIA Tesla M40 24GB", - "Videocard First Benchmarked": "2021-09-13", - "G3DMark/Price": "NA", - "Overall Rank": "171", - "Last Price Change": "NA", - "Score": 10475, - "Average G2D Mark": 333, - "Samples": 3 - } - ], - "gpu3875": [ - "Tesla M6", - { - "Other names": "NVIDIA Tesla M6", - "Videocard First Benchmarked": "2018-01-02", - "G3DMark/Price": "37.73", - "Overall Rank": "256", - "Last Price Change": "$199 USD (2022-04-10)", - "Score": 7509, - "Average G2D Mark": 441, - "Samples": 2 - } - ], - "gpu3774": [ - "Tesla M60", - { - "Other names": "NVIDIA Tesla M60", - "Videocard First Benchmarked": "2017-06-27", - "G3DMark/Price": "9.86", - "Overall Rank": "246", - "Last Price Change": "$787.9 USD (2022-04-10)", - "Score": 7771, - "Average G2D Mark": 563, - "Samples": 17 - } - ], - "gpu4039": [ - "Tesla P100-PCIE-16GB", - { - "Other names": "NVIDIA Tesla P100-PCIE-16GB", - "Videocard First Benchmarked": "2019-01-21", - "G3DMark/Price": "NA", - "Overall Rank": "264", - "Last Price Change": "NA", - "Score": 7225, - "Average G2D Mark": 572, - "Samples": 2 - } - ], - "gpu4631": [ - "Tesla P4", - { - "Other names": "NVIDIA Tesla P4", - "Videocard First Benchmarked": "2022-11-24", - "G3DMark/Price": "NA", - "Overall Rank": "215", - "Last Price Change": "NA", - "Score": 8719, - "Average G2D Mark": 380, - "Samples": 27 - } - ], - "gpu4548": [ - "Tesla P40", - { - "Other names": "NVIDIA Tesla P40", - "Videocard First Benchmarked": "2022-05-27", - "G3DMark/Price": "NA", - "Overall Rank": "161", - "Last Price Change": "NA", - "Score": 11395, - "Average G2D Mark": 393, - "Samples": 8 - } - ], - "gpu4222": [ - "Tesla T10", - { - "Other names": "NVIDIA Tesla T10", - "Videocard First Benchmarked": "2020-07-14", - "G3DMark/Price": "NA", - "Overall Rank": "140", - "Last Price Change": "NA", - "Score": 12650, - "Average G2D Mark": 595, - "Samples": 2 - } - ], - "gpu4211": [ - "Tesla T4", - { - "Other names": "NVIDIA Tesla T4", - "Videocard First Benchmarked": "2020-06-03", - "G3DMark/Price": "2.44", - "Overall Rank": "169", - "Last Price Change": "$4419.82 USD (2023-12-26)", - "Score": 10762, - "Average G2D Mark": 579, - "Samples": 49 - } - ], - "gpu4226": [ - "Tesla V100-PCIE-16GB", - { - "Other names": "NVIDIA Tesla V100-PCIE-16GB", - "Videocard First Benchmarked": "2020-08-06", - "G3DMark/Price": "NA", - "Overall Rank": "133", - "Last Price Change": "NA", - "Score": 12983, - "Average G2D Mark": 508, - "Samples": 3 - } - ], - "gpu4029": [ - "TITAN RTX", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "24576 MB", - "Core Clock(s)": "1350 MHz", - "Memory Clock(s)": "14000 (1750x8) MHz", - "DirectX": "12.1", - "OpenGL": "4.6", - "Max TDP": "280 W", - "Videocard Category": "Workstation", - "Other names": "NVIDIA TITAN RTX", - "Videocard First Benchmarked": "2018-12-20", - "G3DMark/Price": "8.28", - "Overall Rank": "47", - "Last Price Change": "$2409.2 USD (2023-10-16)", - "Score": 19948, - "Average G2D Mark": 830, - "Samples": 193 - } - ], - "gpu3859": [ - "TITAN V", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "12288 MB", - "Core Clock(s)": "1200 MHz", - "Memory Clock(s)": "850 MHz", - "DirectX": "12", - "OpenGL": "4.6", - "Max TDP": "250 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA TITAN V", - "Videocard First Benchmarked": "2017-12-10", - "G3DMark/Price": "9.89", - "Overall Rank": "49", - "Last Price Change": "$1999.99 USD (2021-11-20)", - "Score": 19784, - "Average G2D Mark": 860, - "Samples": 90 - } - ], - "gpu4005": [ - "TITAN V CEO Edition", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "32000 MB", - "Core Clock(s)": "1200 MHz", - "Memory Clock(s)": "1700 MHz", - "DirectX": "12", - "Max TDP": "250 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA TITAN V JHH Special Edition", - "Videocard First Benchmarked": "2018-10-23", - "G3DMark/Price": "NA", - "Overall Rank": "73", - "Last Price Change": "NA", - "Score": 16988, - "Average G2D Mark": 1086, - "Samples": 1 - } - ], - "gpu3863": [ - "TITAN Xp COLLECTORS EDITION", - { - "Bus Interface": "PCIe 3.0 x16", - "Max Memory Size": "12288 MB", - "Core Clock(s)": "1405 MHz", - "Memory Clock(s)": "1426 MHz", - "DirectX": "12.1", - "OpenGL": "4.5", - "Max TDP": "250 W", - "Videocard Category": "Desktop", - "Other names": "NVIDIA TITAN Xp COLLECTORS EDITION", - "Videocard First Benchmarked": "2017-12-12", - "G3DMark/Price": "NA", - "Overall Rank": "54", - "Last Price Change": "NA", - "Score": 19356, - "Average G2D Mark": 935, - "Samples": 190 - } - ], - "gpu3578": [ - "TRINITY DEVASTATOR MOBILE", - { - "Other names": "TRINITY DEVASTATOR MOBILE", - "Videocard First Benchmarked": "2016-09-21", - "G3DMark/Price": "NA", - "Overall Rank": "1294", - "Last Price Change": "NA", - "Score": 699, - "Average G2D Mark": 335, - "Samples": 4 - } - ], - "gpu3505": [ - "TRINITY SCRAPPER MOBILE", - { - "Other names": "TRINITY SCRAPPER MOBILE", - "Videocard First Benchmarked": "2016-05-16", - "G3DMark/Price": "NA", - "Overall Rank": "1532", - "Last Price Change": "NA", - "Score": 498, - "Average G2D Mark": 280, - "Samples": 5 - } - ], - "gpu3421": [ - "V9560XT", - { - "Other names": "ASUS V9560XT V62.11", - "Videocard First Benchmarked": "2016-01-24", - "G3DMark/Price": "NA", - "Overall Rank": "2355", - "Last Price Change": "NA", - "Score": 6, - "Average G2D Mark": 86, - "Samples": 1 - } - ], - "gpu1674": [ - "Vanta/Vanta LT", - { - "Other names": "NVIDIA Vanta/Vanta LT", - "Videocard First Benchmarked": "2009-04-02", - "G3DMark/Price": "NA", - "Overall Rank": "2447", - "Last Price Change": "NA", - "Score": 3, - "Average G2D Mark": 91, - "Samples": 7 - } - ], - "gpu1949": [ - "VIA Chrome9 HC IGP", - { - "Other names": "VIA Chrome9 HC IGP", - "Videocard First Benchmarked": "2009-04-02", - "G3DMark/Price": "NA", - "Overall Rank": "2408", - "Last Price Change": "NA", - "Score": 4, - "Average G2D Mark": 167, - "Samples": 57 - } - ], - "gpu1950": [ - "VIA Chrome9 HC IGP Family", - { - "Other names": "VIA Chrome9 HC IGP Family", - "Videocard First Benchmarked": "2009-04-02", - "G3DMark/Price": "NA", - "Overall Rank": "2420", - "Last Price Change": "NA", - "Score": 4, - "Average G2D Mark": 178, - "Samples": 64 - } - ], - "gpu1951": [ - "VIA Chrome9 HC IGP Family WDDM", - { - "Other names": "VIA Chrome9 HC IGP Family WDDM", - "Videocard First Benchmarked": "2009-04-10", - "G3DMark/Price": "NA", - "Overall Rank": "2432", - "Last Price Change": "NA", - "Score": 4, - "Average G2D Mark": 165, - "Samples": 35 - } - ], - "gpu1952": [ - "VIA Chrome9 HC IGP Prerelease WDDM 1.1", - { - "Other names": "VIA Chrome9 HC IGP Prerelease WDDM 1.1", - "Videocard First Benchmarked": "2009-09-30", - "G3DMark/Price": "NA", - "Overall Rank": "2471", - "Last Price Change": "NA", - "Score": 2, - "Average G2D Mark": 100, - "Samples": 3 - } - ], - "gpu1953": [ - "VIA Chrome9 HC IGP WDDM", - { - "Other names": "VIA Chrome9 HC IGP WDDM", - "Videocard First Benchmarked": "2009-06-08", - "G3DMark/Price": "NA", - "Overall Rank": "2455", - "Last Price Change": "NA", - "Score": 3, - "Average G2D Mark": 144, - "Samples": 10 - } - ], - "gpu1954": [ - "VIA Chrome9 HC IGP WDDM 1.1", - { - "Other names": "VIA Chrome9 HC IGP WDDM 1.1", - "Videocard First Benchmarked": "2009-11-17", - "G3DMark/Price": "NA", - "Overall Rank": "2436", - "Last Price Change": "NA", - "Score": 3, - "Average G2D Mark": 75, - "Samples": 39 - } - ], - "gpu1955": [ - "VIA Chrome9 HC3 IGP", - { - "Other names": "VIA Chrome9 HC3 IGP", - "Videocard First Benchmarked": "2009-04-08", - "G3DMark/Price": "NA", - "Overall Rank": "2459", - "Last Price Change": "NA", - "Score": 3, - "Average G2D Mark": 157, - "Samples": 1 - } - ], - "gpu1957": [ - "VIA Chrome9 HCM IGP", - { - "Other names": "VIA Chrome9 HCM IGP", - "Videocard First Benchmarked": "2009-10-26", - "G3DMark/Price": "NA", - "Overall Rank": "2479", - "Last Price Change": "NA", - "Score": 2, - "Average G2D Mark": 94, - "Samples": 2 - } - ], - "gpu1960": [ - "VIA Chrome9 HD IGP", - { - "Other names": "VIA Chrome9 HD IGP", - "Videocard First Benchmarked": "2010-07-08", - "G3DMark/Price": "NA", - "Overall Rank": "2331", - "Last Price Change": "NA", - "Score": 9, - "Average G2D Mark": 40, - "Samples": 22 - } - ], - "gpu4155": [ - "VIA/S3G C-645/640 GPU", - { - "Other names": "VIA/S3G C-645/640 GPU", - "Videocard First Benchmarked": "2019-10-14", - "G3DMark/Price": "NA", - "Overall Rank": "1921", - "Last Price Change": "NA", - "Score": 132, - "Average G2D Mark": 83, - "Samples": 3 - } - ], - "gpu1962": [ - "VIA/S3G Chrome 645/640 GPU", - { - "Other names": "VIA/S3G Chrome 645/640 GPU", - "Videocard First Benchmarked": "2012-03-22", - "G3DMark/Price": "NA", - "Overall Rank": "1992", - "Last Price Change": "NA", - "Score": 110, - "Average G2D Mark": 161, - "Samples": 9 - } - ], - "gpu1965": [ - "VIA/S3G DeltaChrome IGP", - { - "Other names": "VIA/S3G DeltaChrome IGP", - "Videocard First Benchmarked": "2009-04-13", - "G3DMark/Price": "NA", - "Overall Rank": "2438", - "Last Price Change": "NA", - "Score": 3, - "Average G2D Mark": 125, - "Samples": 7 - } - ], - "gpu1968": [ - "VIA/S3G KM400/KN400", - { - "Other names": "VIA/S3G KM400/KN400", - "Videocard First Benchmarked": "2009-04-16", - "G3DMark/Price": "NA", - "Overall Rank": "2414", - "Last Price Change": "NA", - "Score": 4, - "Average G2D Mark": 124, - "Samples": 4 - } - ], - "gpu1970": [ - "VIA/S3G UniChrome IGP", - { - "Other names": "VIA/S3G UniChrome IGP", - "Videocard First Benchmarked": "2009-04-03", - "G3DMark/Price": "NA", - "Overall Rank": "2409", - "Last Price Change": "NA", - "Score": 4, - "Average G2D Mark": 164, - "Samples": 33 - } - ], - "gpu1971": [ - "VIA/S3G UniChrome Pro IGP", - { - "Other names": "VIA/S3G UniChrome Pro IGP", - "Videocard First Benchmarked": "2009-04-01", - "G3DMark/Price": "NA", - "Overall Rank": "2394", - "Last Price Change": "NA", - "Score": 5, - "Average G2D Mark": 164, - "Samples": 213 - } - ], - "gpu1973": [ - "VIA/S3G UniChromeII", - { - "Other names": "VIA/S3G UniChromeII Graphics", - "Videocard First Benchmarked": "2009-12-06", - "G3DMark/Price": "NA", - "Overall Rank": "2363", - "Last Price Change": "NA", - "Score": 6, - "Average G2D Mark": 225, - "Samples": 2 - } - ], - "gpu1977": [ - "VisionTek Radeon 7000", - { - "Other names": "VisionTek Radeon 7000", - "Videocard First Benchmarked": "2010-03-10", - "G3DMark/Price": "NA", - "Overall Rank": "2476", - "Last Price Change": "NA", - "Score": 2, - "Average G2D Mark": 117, - "Samples": 1 - } - ], - "gpu2821": [ - "WinFast A250 LE", - { - "Other names": "WinFast A250 LE", - "Videocard First Benchmarked": "2014-02-25", - "G3DMark/Price": "NA", - "Overall Rank": "2389", - "Last Price Change": "NA", - "Score": 5, - "Average G2D Mark": 197, - "Samples": 1 - } - ], - "gpu2098": [ - "Xabre", - { - "Other names": "Xabre", - "Videocard First Benchmarked": "2012-01-05", - "G3DMark/Price": "NA", - "Overall Rank": "2380", - "Last Price Change": "NA", - "Score": 5, - "Average G2D Mark": 28, - "Samples": 2 - } - ], - "gpu2101": [ - "XGI Volari Family v1.13.23.D_V", - { - "Other names": "XGI Volari Family v1.13.23.D_V", - "Videocard First Benchmarked": "2009-06-27", - "G3DMark/Price": "NA", - "Overall Rank": "2399", - "Last Price Change": "NA", - "Score": 5, - "Average G2D Mark": 34, - "Samples": 1 - } - ], - "gpu3697": [ - "ZX Chrome 645/640 GPU", - { - "Other names": "ZX Chrome 645/640 GPU", - "Videocard First Benchmarked": "2017-03-09", - "G3DMark/Price": "NA", - "Overall Rank": "1886", - "Last Price Change": "NA", - "Score": 147, - "Average G2D Mark": 220, - "Samples": 1 - } - ] -} diff --git a/PCData/gpt.py b/PCData/gpt.py deleted file mode 100644 index 260ed93..0000000 --- a/PCData/gpt.py +++ /dev/null @@ -1,66 +0,0 @@ -from pathlib import Path - -import openai -import pandas as pd -from hypy_utils.logging_utils import setup_logger - -log = setup_logger() - - -def obtain_info_from_name(name: str): - eg_info = """MSI Modern 15 Consumer Laptop 15.6"" FHD 144Hz Intel i7-1255U Intel Iris Xe 16GB 512GB SSD Windows 11 Home FLLR229YY (Open Box)""" - eg_resp = """ -Brand: MSI -Model: Modern 15 -Model Code: FLLR229YY -CPU: Intel i7-1255U -GPU: Intel Iris Xe -RAM: 16GB -Storage: 512GB SSD -OS: Windows 11 Home -Screen: 15.6" -Resolution: FHD -Refresh Rate: 144Hz - """ - openai_prompt = "Please extract product specifications from the following product name:\n\n" - - print(f"\n\n> {name}") - complete = openai.ChatCompletion.create( - model="gpt-3.5-turbo", - messages=[ - {"role": "system", - "content": "You are a computer science student examining laptops on sale."}, - {"role": "user", - "content": f"{openai_prompt}{eg_info}"}, - {"role": "assistant", - "content": f'"{eg_resp}"'}, - {"role": "user", - "content": f"{openai_prompt}{name}"}, - ] - ) - - m = complete.choices[0].message.content.strip().strip('"').strip() - print(f"{m}") - return {k: v for k, v in [line.split(": ", 1) for line in m.splitlines()]} - - -if __name__ == '__main__': - # Read from canada_computers_laptops.csv - csv = pd.read_csv("data/canada_computers_laptops.csv") - new_csv_f = Path("data/canada_computers_laptops_gpt.csv") - new_csv = [] if not new_csv_f.exists() else pd.read_csv(new_csv_f).to_dict(orient="records") - - # Extract specs from name - for i, row in csv.iterrows(): - if i < len(new_csv): - continue - name = row["name"] - specs = obtain_info_from_name(name) - for k in specs: - if k not in {'Brand', 'Model', 'Model Code', 'CPU', 'GPU', 'RAM', 'Storage', 'OS', 'Screen', 'Resolution', - 'Refresh Rate'}: - log.warning(f"Unknown key: {k}") - new_csv.append({**row, "gpt_specs": specs}) - - # Save to csv - pd.DataFrame(new_csv).to_csv(new_csv_f, index=False) diff --git a/PCData/laptops.ipynb b/PCData/laptops.ipynb deleted file mode 100644 index f69f908..0000000 --- a/PCData/laptops.ipynb +++ /dev/null @@ -1,548 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": 72, - "id": "initial_id", - "metadata": { - "collapsed": true, - "ExecuteTime": { - "end_time": "2023-12-27T10:01:41.059498Z", - "start_time": "2023-12-27T10:01:40.954874Z" - } - }, - "outputs": [ - { - "data": { - "text/plain": " id item_id name \\\n0 234878 LPASU00715 ASUS TUF F15 Gaming Laptop 15.6\" FHD Intel i9-... \n1 239821 LPACE00967 Acer Nitro 5 Gaming Laptop 15.6\" FHD Intel i9-... \n2 241721 LPLEN03469 Lenovo Legion Pro 5i Gaming Laptop 16\" QHD+ In... \n3 245321 LPHEW02100 HP 15-fd0030ca Consumer Laptop 15.6\" FHD Intel... \n4 245308 LPGIG00162 GIGABYTE G5 KF Gaming Laptop 15.6\" FHD 144Hz I... \n5 230569 LPHEW01946 HP ProBook 450 G9 15.6\" Business Notebook Inte... \n6 241145 LPMSI00572 MSI Thin GF63 Gaming Laptop 15.6\" FHD Intel i5... \n7 243411 LPLEN03502 LENOVO IdeaPad Slim 3 Consumer Laptop 15.6\" AM... \n8 243633 LPACE00980 ACER Nitro 5 Gaming Laptop 15.6\" 144Hz AMD Ryz... \n9 240323 LPHEW02049 HP EliteBook 840 G2 Business Notebook 14\" Touc... \n\n brand categories price \\\n0 ASUS ['Laptops, Tablet', None, None, None] 1499.0 \n1 ACER ['Laptops, Tablet', None, None, None] 1299.0 \n2 LENOVO ['Laptops, Tablet', None, None, None] 1499.0 \n3 HP ['Laptops, Tablet', None, None, None] 699.0 \n4 GIGABYTE ['Laptops, Tablet', None, None, None] 1099.0 \n5 HP ['Laptops, Tablet', None, None, None] 899.0 \n6 MSI ['Laptops, Tablet', None, None, None] 699.0 \n7 LENOVO ['Laptops, Tablet', None, None, None] 699.0 \n8 ACER ['Laptops, Tablet', None, None, None] 999.0 \n9 HP ['Laptops, Tablet', None, None, None] 269.0 \n\n specs \\\n0 {'Refresh Rate': '144Hz', 'GPU': 'GeForce RTX ... \n1 {'GPU': 'GeForce RTX 4060', 'Maximum Resolutio... \n2 {'GPU': 'GeForce RTX 4060', 'Maximum Resolutio... \n3 {'GPU': 'Intel Iris Xe', 'Maximum Resolution':... \n4 {'GPU': 'GeForce RTX 4060', 'Maximum Resolutio... \n5 {'General InformationManufacturer': 'HP... \n6 {'GPU': 'GeForce RTX 2050', 'Maximum Resolutio... \n7 {'GPU': 'AMD Radeon 610M', 'Maximum Resolution... \n8 {'GPU': 'GeForce RTX 3060', 'Maximum Resolutio... \n9 {'Memory': '16GB', 'Storage Type': 'SSD', 'CPU... \n\n gpt_specs GPU \\\n0 {'Brand': 'ASUS', 'Model': 'TUF F15', 'Model C... GeForce RTX 4060 \n1 {'Brand': 'Acer', 'Model': 'Nitro 5', 'Model C... GeForce RTX 4060 \n2 {'Brand': 'Lenovo', 'Model': 'Legion Pro 5i', ... GeForce RTX 4060 \n3 {'Brand': 'HP', 'Model': '15-fd0030ca', 'Model... None \n4 {'Brand': 'GIGABYTE', 'Model': 'G5 KF', 'Model... GeForce RTX 4060 \n5 {'Brand': 'HP', 'Model': 'ProBook 450 G9', 'CP... None \n6 {'Brand': 'MSI', 'Model': 'Thin GF63', 'CPU': ... GeForce RTX 2050 \n7 {'Brand': 'LENOVO', 'Model': 'IdeaPad Slim 3',... None \n8 {'Brand': 'ACER', 'Model': 'Nitro 5', 'CPU': '... GeForce RTX 3060 \n9 {'Brand': 'HP', 'Model': 'EliteBook 840 G2', '... None \n\n CPU \n0 Intel i9-13900H \n1 Intel i9-12900H \n2 Intel i7-13700HX \n3 Intel i5-1340P \n4 Intel i7-12650H \n5 Intel i5-1235U \n6 Intel i5-12450H \n7 AMD Ryzen 5 7520U \n8 AMD Ryzen 7 5800H \n9 Core i5-5300U ", - "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
iditem_idnamebrandcategoriespricespecsgpt_specsGPUCPU
0234878LPASU00715ASUS TUF F15 Gaming Laptop 15.6\" FHD Intel i9-...ASUS['Laptops, Tablet', None, None, None]1499.0{'Refresh Rate': '144Hz', 'GPU': 'GeForce RTX ...{'Brand': 'ASUS', 'Model': 'TUF F15', 'Model C...GeForce RTX 4060Intel i9-13900H
1239821LPACE00967Acer Nitro 5 Gaming Laptop 15.6\" FHD Intel i9-...ACER['Laptops, Tablet', None, None, None]1299.0{'GPU': 'GeForce RTX 4060', 'Maximum Resolutio...{'Brand': 'Acer', 'Model': 'Nitro 5', 'Model C...GeForce RTX 4060Intel i9-12900H
2241721LPLEN03469Lenovo Legion Pro 5i Gaming Laptop 16\" QHD+ In...LENOVO['Laptops, Tablet', None, None, None]1499.0{'GPU': 'GeForce RTX 4060', 'Maximum Resolutio...{'Brand': 'Lenovo', 'Model': 'Legion Pro 5i', ...GeForce RTX 4060Intel i7-13700HX
3245321LPHEW02100HP 15-fd0030ca Consumer Laptop 15.6\" FHD Intel...HP['Laptops, Tablet', None, None, None]699.0{'GPU': 'Intel Iris Xe', 'Maximum Resolution':...{'Brand': 'HP', 'Model': '15-fd0030ca', 'Model...NoneIntel i5-1340P
4245308LPGIG00162GIGABYTE G5 KF Gaming Laptop 15.6\" FHD 144Hz I...GIGABYTE['Laptops, Tablet', None, None, None]1099.0{'GPU': 'GeForce RTX 4060', 'Maximum Resolutio...{'Brand': 'GIGABYTE', 'Model': 'G5 KF', 'Model...GeForce RTX 4060Intel i7-12650H
5230569LPHEW01946HP ProBook 450 G9 15.6\" Business Notebook Inte...HP['Laptops, Tablet', None, None, None]899.0{'General Information<HDRBR>Manufacturer': 'HP...{'Brand': 'HP', 'Model': 'ProBook 450 G9', 'CP...NoneIntel i5-1235U
6241145LPMSI00572MSI Thin GF63 Gaming Laptop 15.6\" FHD Intel i5...MSI['Laptops, Tablet', None, None, None]699.0{'GPU': 'GeForce RTX 2050', 'Maximum Resolutio...{'Brand': 'MSI', 'Model': 'Thin GF63', 'CPU': ...GeForce RTX 2050Intel i5-12450H
7243411LPLEN03502LENOVO IdeaPad Slim 3 Consumer Laptop 15.6\" AM...LENOVO['Laptops, Tablet', None, None, None]699.0{'GPU': 'AMD Radeon 610M', 'Maximum Resolution...{'Brand': 'LENOVO', 'Model': 'IdeaPad Slim 3',...NoneAMD Ryzen 5 7520U
8243633LPACE00980ACER Nitro 5 Gaming Laptop 15.6\" 144Hz AMD Ryz...ACER['Laptops, Tablet', None, None, None]999.0{'GPU': 'GeForce RTX 3060', 'Maximum Resolutio...{'Brand': 'ACER', 'Model': 'Nitro 5', 'CPU': '...GeForce RTX 3060AMD Ryzen 7 5800H
9240323LPHEW02049HP EliteBook 840 G2 Business Notebook 14\" Touc...HP['Laptops, Tablet', None, None, None]269.0{'Memory': '16GB', 'Storage Type': 'SSD', 'CPU...{'Brand': 'HP', 'Model': 'EliteBook 840 G2', '...NoneCore i5-5300U
\n
" - }, - "execution_count": 72, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "import json\n", - "import re\n", - "from typing import NamedTuple\n", - "\n", - "import pandas as pd\n", - "\n", - "laptops = pd.read_csv('data/canada_computers_laptops_gpt.csv')\n", - "\n", - "# Assign \"gpu\" column based on specs['GPU']\n", - "laptops['specs'] = laptops['specs'].apply(lambda x: eval(x))\n", - "laptops['gpt_specs'] = laptops['gpt_specs'].apply(lambda x: eval(x))\n", - "laptops['GPU'] = laptops['gpt_specs'].apply(lambda x: x['GPU'] if 'GPU' in x else None)\n", - "laptops['CPU'] = laptops['gpt_specs'].apply(lambda x: x['CPU'] if 'CPU' in x else None)\n", - "laptops.head(10)" - ] - }, - { - "cell_type": "code", - "execution_count": 73, - "outputs": [ - { - "data": { - "text/plain": "12012" - }, - "execution_count": 73, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "import csv\n", - "\n", - "# cpu_records = list(csv.DictReader(open('data/notebookcheck/mobile-cpu.csv', 'r', encoding='utf-8')))\n", - "# cpu_bench = {k['Model']: k['Perf. Rating'].replace(\"~\", \"\") for k in cpu_records}\n", - "\n", - "cpu_bench = pd.read_csv('data/passmark/cpu.csv')\n", - "cpu_bench = {k['name']: k['passmark'] for k in cpu_bench.to_dict('records')}\n", - "\n", - "def norm_name_cpu(name: str) -> str:\n", - " return (name.lower().strip().replace(\"_\", \"-\").replace(\"-\", \" \")\n", - " .replace(\"intel core\", \"intel\")\n", - " .replace(\"amd ryzen\", \"ryzen\")\n", - " )\n", - "\n", - "cpu_bench = {norm_name_cpu(k.split(\"@\", 1)[0]): v for k, v in cpu_bench.items()}\n", - "cpu_bench['intel i7 10750h']" - ], - "metadata": { - "collapsed": false, - "ExecuteTime": { - "end_time": "2023-12-27T10:01:41.080539Z", - "start_time": "2023-12-27T10:01:41.053141Z" - } - }, - "id": "5a1179b36ed2adbb" - }, - { - "cell_type": "code", - "execution_count": 74, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "CPU not found\n", - "CPU intel pentium silver not found\n", - "CPU ryzen 3 3720u not found\n", - "CPU intel i7 1335u not found\n", - "CPU intel i5 13th gen not found\n", - "CPU mediatek kompanio 520 not found\n", - "CPU intel ci3 1115g4 not found\n", - "CPU core not found\n", - "CPU intel pentium silver not found\n", - "CPU intel i7 12th gen not found\n", - "CPU intel i7 11th gen not found\n", - "CPU intel i5 10th gen, not found\n", - "CPU intel pentium gold 4425y not found\n" - ] - }, - { - "data": { - "text/plain": " id item_id name \\\n0 234878 LPASU00715 ASUS TUF F15 Gaming Laptop 15.6\" FHD Intel i9-... \n1 239821 LPACE00967 Acer Nitro 5 Gaming Laptop 15.6\" FHD Intel i9-... \n2 241721 LPLEN03469 Lenovo Legion Pro 5i Gaming Laptop 16\" QHD+ In... \n3 245321 LPHEW02100 HP 15-fd0030ca Consumer Laptop 15.6\" FHD Intel... \n4 245308 LPGIG00162 GIGABYTE G5 KF Gaming Laptop 15.6\" FHD 144Hz I... \n\n brand categories price \\\n0 ASUS ['Laptops, Tablet', None, None, None] 1499.0 \n1 ACER ['Laptops, Tablet', None, None, None] 1299.0 \n2 LENOVO ['Laptops, Tablet', None, None, None] 1499.0 \n3 HP ['Laptops, Tablet', None, None, None] 699.0 \n4 GIGABYTE ['Laptops, Tablet', None, None, None] 1099.0 \n\n specs \\\n0 {'Refresh Rate': '144Hz', 'GPU': 'GeForce RTX ... \n1 {'GPU': 'GeForce RTX 4060', 'Maximum Resolutio... \n2 {'GPU': 'GeForce RTX 4060', 'Maximum Resolutio... \n3 {'GPU': 'Intel Iris Xe', 'Maximum Resolution':... \n4 {'GPU': 'GeForce RTX 4060', 'Maximum Resolutio... \n\n gpt_specs GPU \\\n0 {'Brand': 'ASUS', 'Model': 'TUF F15', 'Model C... GeForce RTX 4060 \n1 {'Brand': 'Acer', 'Model': 'Nitro 5', 'Model C... GeForce RTX 4060 \n2 {'Brand': 'Lenovo', 'Model': 'Legion Pro 5i', ... GeForce RTX 4060 \n3 {'Brand': 'HP', 'Model': '15-fd0030ca', 'Model... None \n4 {'Brand': 'GIGABYTE', 'Model': 'G5 KF', 'Model... GeForce RTX 4060 \n\n CPU cpu_bench \n0 Intel i9-13900H 29687.0 \n1 Intel i9-12900H 28524.0 \n2 Intel i7-13700HX 34110.0 \n3 Intel i5-1340P 20204.0 \n4 Intel i7-12650H 23281.0 ", - "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
iditem_idnamebrandcategoriespricespecsgpt_specsGPUCPUcpu_bench
0234878LPASU00715ASUS TUF F15 Gaming Laptop 15.6\" FHD Intel i9-...ASUS['Laptops, Tablet', None, None, None]1499.0{'Refresh Rate': '144Hz', 'GPU': 'GeForce RTX ...{'Brand': 'ASUS', 'Model': 'TUF F15', 'Model C...GeForce RTX 4060Intel i9-13900H29687.0
1239821LPACE00967Acer Nitro 5 Gaming Laptop 15.6\" FHD Intel i9-...ACER['Laptops, Tablet', None, None, None]1299.0{'GPU': 'GeForce RTX 4060', 'Maximum Resolutio...{'Brand': 'Acer', 'Model': 'Nitro 5', 'Model C...GeForce RTX 4060Intel i9-12900H28524.0
2241721LPLEN03469Lenovo Legion Pro 5i Gaming Laptop 16\" QHD+ In...LENOVO['Laptops, Tablet', None, None, None]1499.0{'GPU': 'GeForce RTX 4060', 'Maximum Resolutio...{'Brand': 'Lenovo', 'Model': 'Legion Pro 5i', ...GeForce RTX 4060Intel i7-13700HX34110.0
3245321LPHEW02100HP 15-fd0030ca Consumer Laptop 15.6\" FHD Intel...HP['Laptops, Tablet', None, None, None]699.0{'GPU': 'Intel Iris Xe', 'Maximum Resolution':...{'Brand': 'HP', 'Model': '15-fd0030ca', 'Model...NoneIntel i5-1340P20204.0
4245308LPGIG00162GIGABYTE G5 KF Gaming Laptop 15.6\" FHD 144Hz I...GIGABYTE['Laptops, Tablet', None, None, None]1099.0{'GPU': 'GeForce RTX 4060', 'Maximum Resolutio...{'Brand': 'GIGABYTE', 'Model': 'G5 KF', 'Model...GeForce RTX 4060Intel i7-12650H23281.0
\n
" - }, - "execution_count": 74, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "# Match laptop cpu with cpu benchmark entries\n", - "def match_cpu(cpu: str, cpu_bench=cpu_bench):\n", - " if cpu is None:\n", - " return None\n", - " cpu = norm_name_cpu(cpu.split(\"@\", 1)[0])\n", - " cpu = (cpu\n", - " .replace(\"core i\", \"intel i\")\n", - " .replace(\"amd 7\", \"ryzen 3 \")\n", - " .replace(\"processor\", \"\")\n", - " .replace(\"evo\", \"\")\n", - " .replace(\"ryzen r\", \"ryzen \")\n", - " )\n", - " while \" \" in cpu:\n", - " cpu = cpu.replace(\" \", \" \")\n", - " if any(x in cpu for x in [\"i3\", \"i5\", \"i7\", \"i9\"]) and \"intel\" not in cpu:\n", - " cpu = \"intel \" + cpu\n", - " if cpu.startswith('mt'):\n", - " cpu = \"mediatek \" + cpu\n", - " # Strip ()\n", - " cpu = re.sub(r'\\([^)]*\\)', '', cpu).strip()\n", - " while \" \" in cpu:\n", - " cpu = cpu.replace(\" \", \" \")\n", - " # Remove duplicate words\n", - " for dup in ['i3', 'i5', 'i7', 'i9']:\n", - " if f\"{dup} {dup}\" in cpu:\n", - " cpu = cpu.replace(f\"{dup} {dup}\", dup)\n", - " # Max 4 words\n", - " cpu = \" \".join(cpu.split(\" \")[:4])\n", - " for remove in ['octa', 'hexa', 'quad', 'arm', 'cortex']:\n", - " cpu = cpu.replace(remove, \"\")\n", - " cpu = cpu.strip()\n", - " \n", - " if cpu in cpu_bench:\n", - " return cpu_bench[cpu]\n", - " elif cpu + \"u\" in cpu_bench:\n", - " return cpu_bench[cpu + 'u']\n", - " else:\n", - " print(f\"CPU {cpu} not found\")\n", - " return None\n", - " \n", - "laptops['cpu_bench'] = laptops['CPU'].apply(match_cpu)\n", - "laptops.head()" - ], - "metadata": { - "collapsed": false, - "ExecuteTime": { - "end_time": "2023-12-27T10:01:41.178865Z", - "start_time": "2023-12-27T10:01:41.095428Z" - } - }, - "id": "80eb0743d22520e6" - }, - { - "cell_type": "code", - "execution_count": 75, - "outputs": [], - "source": [ - "# from pathlib import Path\n", - "# import json\n", - "# \n", - "# gpu_dicts = pd.read_csv('data/gpu.csv').to_dict('records')\n", - "# print(gpu_dicts[0])\n", - "# \n", - "# # Exclude non-mobile GPUs from meta\n", - "# gpu_info = json.loads(Path('data/gpu_info.json').read_text())\n", - "# gpu_info = {id: v[1] for id, v in gpu_info.items()}\n", - "# gpu_cat = {id: v.get(\"Videocard Category\") for id, v in gpu_info.items()}\n", - "# print(set(gpu_cat.values()))\n", - "# gpu_dicts = [k for k in gpu_dicts if gpu_cat[k['id']] not in {\"Workstation\", \"Desktop\"}]\n", - "# \n", - "# # Parse gpu_bench\n", - "# gpu_bench = {k['name']: k['passmark'] for k in gpu_dicts}\n", - "# \n", - "# # Exclude dual\n", - "# gpu_bench = {k: v for k, v in gpu_bench.items() if \"dual\" not in k.lower()}\n", - "# \n", - "# def norm_name_gpu(name: str) -> str:\n", - "# return (name.lower().strip().replace(\"_\", \"-\").replace(\"-\", \" \")\n", - "# .replace(\"geforce\", \"nvidia\")\n", - "# .replace(\"nvidia nvidia\", \"nvidia\")\n", - "# .replace(\"rtx\", \"nvidia rtx\")\n", - "# .replace(\"gtx\", \"nvidia gtx\")\n", - "# .replace(\"nvidia nvidia\", \"nvidia\")\n", - "# .replace(\" laptop gpu\", \" (mobile)\")\n", - "# .replace(\" \", \" \")\n", - "# .replace(\" graphics\", \"\")\n", - "# )\n", - "# \n", - "# gpu_bench = {norm_name_gpu(k): v for k, v in gpu_bench.items()}\n", - "# # Exclude non-mobile GPUs for Nvidia\n", - "# gpu_bench = {k: v for k, v in gpu_bench.items() if not k.startswith('nvidia') or 'm' in k or 'laptop' in k or '2050' in k}\n", - "# gpu_bench\n" - ], - "metadata": { - "collapsed": false, - "ExecuteTime": { - "end_time": "2023-12-27T10:01:41.179185Z", - "start_time": "2023-12-27T10:01:41.107014Z" - } - }, - "id": "6a6a1826c823c7df" - }, - { - "cell_type": "code", - "execution_count": 76, - "outputs": [ - { - "data": { - "text/plain": "{'amd firepro m2000': 4.3,\n 'amd firepro m3900': 4.3,\n 'amd firepro m4000': 6.6,\n 'amd firepro m4100': 4.0,\n 'amd firepro m5100': 8.3,\n 'amd firepro m5950': 6.3,\n 'amd firepro m6000': 10.2,\n 'amd firepro m6100': 12.0,\n 'amd firepro m8900': 24.6,\n 'amd firepro w4170m': 6.7,\n 'amd firepro w4190m': 5.7,\n 'amd firepro w5130m': 7.0,\n 'amd firepro w5170m': 8.1,\n 'amd firepro w7170m': 16.5,\n 'amd 520': 3.8,\n 'amd 530': 4.6,\n 'amd 540x': 6.6,\n 'amd 610m': 4.6,\n 'amd 620': 3.3,\n 'amd 660m': 13.6,\n 'amd 680m': 18.8,\n 'amd 760m': 17.2,\n 'amd 780m': 20.1,\n 'amd hd 6250': 1.5,\n 'amd hd 6290': 0.8,\n 'amd hd 6310': 3.0,\n 'amd hd 6320': 1.4,\n 'amd hd 6370m': 9.5,\n 'amd hd 6380g': 3.1,\n 'amd hd 6450m': 2.5,\n 'amd hd 6470m': 9.0,\n 'amd hd 6480g': 1.8,\n 'amd hd 6490m': 10.9,\n 'amd hd 6520g': 2.1,\n 'amd hd 6530m': 6.7,\n 'amd hd 6550m': 11.0,\n 'amd hd 6570m': 4.8,\n 'amd hd 6620g': 5.6,\n 'amd hd 6630m': 4.2,\n 'amd hd 6650m': 13.6,\n 'amd hd 6730m': 5.0,\n 'amd hd 6750m': 15.2,\n 'amd hd 6770m': 16.5,\n 'amd hd 6850m': 14.3,\n 'amd hd 6870m': 21.2,\n 'amd hd 6950m': 9.4,\n 'amd hd 6970m': 10.3,\n 'amd hd 6990m': 24.7,\n 'amd hd 7290': 0.8,\n 'amd hd 7310': 1.6,\n 'amd hd 7340': 2.1,\n 'amd hd 7400g': 1.5,\n 'amd hd 7420g': 1.5,\n 'amd hd 7450m': 2.6,\n 'amd hd 7470m': 1.8,\n 'amd hd 7500g': 2.0,\n 'amd hd 7520g': 2.3,\n 'amd hd 7550m': 4.6,\n 'amd hd 7570m': 3.1,\n 'amd hd 7600g': 2.3,\n 'amd hd 7610m': 3.5,\n 'amd hd 7620g': 2.7,\n 'amd hd 7640g': 6.7,\n 'amd hd 7650m': 4.6,\n 'amd hd 7660g': 5.6,\n 'amd hd 7670m': 5.4,\n 'amd hd 7690m': 5.8,\n 'amd hd 7690m xt': 6.2,\n 'amd hd 7730m': 5.9,\n 'amd hd 7750m': 3.8,\n 'amd hd 7770m': 5.6,\n 'amd hd 7850m': 10.1,\n 'amd hd 7870m': 7.1,\n 'amd hd 7970m': 14.2,\n 'amd hd 8180': 0.7,\n 'amd hd 8210': 1.0,\n 'amd hd 8240': 1.1,\n 'amd hd 8250': 1.1,\n 'amd hd 8280': 1.0,\n 'amd hd 8330': 1.3,\n 'amd hd 8350g': 2.3,\n 'amd hd 8400': 1.8,\n 'amd hd 8450g': 2.1,\n 'amd hd 8510g': 2.2,\n 'amd hd 8550g': 3.3,\n 'amd hd 8550m': 3.6,\n 'amd hd 8570m': 3.0,\n 'amd hd 8610g': 1.8,\n 'amd hd 8650g': 3.5,\n 'amd hd 8650m': 3.2,\n 'amd hd 8670m': 3.2,\n 'amd hd 8690m': 4.7,\n 'amd hd 8730m': 4.8,\n 'amd hd 8750m': 4.4,\n 'amd hd 8770m': 7.6,\n 'amd hd 8790m': 7.2,\n 'amd hd 8850m': 5.8,\n 'amd hd 8870m': 8.2,\n 'amd hd 8970m': 13.5,\n 'amd pro 450': 10.9,\n 'amd pro 455': 11.0,\n 'amd pro 460': 11.4,\n 'amd pro 5500m': 27.0,\n 'amd pro 555': 11.7,\n 'amd pro 560': 10.4,\n 'amd pro 560x': 13.4,\n 'amd pro vega 16': 17.4,\n 'amd pro vega 20': 17.8,\n 'amd pro wx 3100': 8.7,\n 'amd pro wx 3200': 8.2,\n 'amd pro wx vega m gl': 12.2,\n 'amd r2': 1.7,\n 'amd r3': 1.6,\n 'amd r4': 1.9,\n 'amd r5': 2.4,\n 'amd r5 m230': 3.0,\n 'amd r5 m240': 3.1,\n 'amd r5 m255': 3.6,\n 'amd r5 m315': 2.2,\n 'amd r5 m320': 3.7,\n 'amd r5 m330': 3.3,\n 'amd r5 m335': 3.4,\n 'amd r5 m430': 3.1,\n 'amd r6': 1.6,\n 'amd r7': 3.6,\n 'amd r7 m260': 3.8,\n 'amd r7 m260x': 5.1,\n 'amd r7 m265': 4.6,\n 'amd r7 m270': 4.0,\n 'amd r7 m340': 3.9,\n 'amd r7 m360': 4.0,\n 'amd r7 m370': 5.9,\n 'amd r7 m440': 4.0,\n 'amd r7 m445': 6.0,\n 'amd r7 m460': 4.5,\n 'amd r7 m465': 4.8,\n 'amd r9 m265x': 6.8,\n 'amd r9 m275': 7.6,\n 'amd r9 m280x': 7.0,\n 'amd r9 m290x': 15.2,\n 'amd r9 m295x': 17.2,\n 'amd r9 m370x': 8.4,\n 'amd r9 m375': 5.3,\n 'amd r9 m385x': 8.5,\n 'amd r9 m390': 12.9,\n 'amd r9 m390x': 15.5,\n 'amd r9 m395': 15.4,\n 'amd r9 m395x': 15.6,\n 'amd r9 m470': 10.0,\n 'amd 460': 9.7,\n 'amd 470': 20.5,\n 'amd 480': 11.9,\n 'amd 5300m': 23.7,\n 'amd 540': 8.6,\n 'amd 550': 11.5,\n 'amd 5500m': 21.8,\n 'amd 550x': 9.0,\n 'amd 560': 12.3,\n 'amd 5600m': 26.9,\n 'amd 560x': 12.1,\n 'amd 580': 21.0,\n 'amd 640': 7.7,\n 'amd 6500m': 31.7,\n 'amd 6550m': 22.4,\n 'amd 6600m': 42.1,\n 'amd 6650m': 40.8,\n 'amd 6700m': 44.7,\n 'amd 6700s': 44.0,\n 'amd 6800m': 54.6,\n 'amd 6800s': 49.2,\n 'amd 6850m xt': 57.6,\n 'amd 7600m xt': 49.0,\n 'amd 7600s': 48.9,\n 'amd 7900m': 68.0,\n 'amd vega 10': 6.3,\n 'amd vega 11': 10.3,\n 'amd vega 3': 3.7,\n 'amd vega 5': 6.9,\n 'amd vega 6': 7.6,\n 'amd vega 7': 11.6,\n 'amd vega 8': 13.2,\n 'amd vega 9': 7.3,\n 'amd vega m gh': 22.2,\n 'amd vega m gl / 870': 13.6,\n 'ati firepro m5800': 7.0,\n 'ati firepro m7740': 19.7,\n 'ati firepro m7820': 18.4,\n 'amd 128 m3': 0.6,\n 'amd firegl 9000': 12.1,\n 'amd firegl t2': 12.8,\n 'amd firegl v3200': 17.0,\n 'amd firegl v5000': 23.8,\n 'amd firegl v5200': 1.8,\n 'amd firegl v5250': 2.5,\n 'amd firegl v5700': 11.5,\n 'amd amd 7000 igp': 2.3,\n 'amd amd 7500': 5.5,\n 'amd amd 9000': 8.0,\n 'amd amd 9000 igp': 10.7,\n 'amd amd 9100 igp': 3.9,\n 'amd amd 9200': 11.1,\n 'amd amd 9600': 12.2,\n 'amd amd 9700': 7.5,\n 'amd amd 9800': 13.5,\n 'amd amd hd 2300': 7.1,\n 'amd amd hd 2400': 6.0,\n 'amd amd hd 2400 xt': 6.2,\n 'amd amd hd 2600': 9.5,\n 'amd amd hd 2600 xt': 11.2,\n 'amd amd hd 2700': 18.7,\n 'amd amd hd 3410': 2.1,\n 'amd amd hd 3430': 7.2,\n 'amd amd hd 3450': 5.9,\n 'amd amd hd 3470': 7.4,\n 'amd amd hd 3470 hybrid x2': 6.8,\n 'amd amd hd 3650': 10.3,\n 'amd amd hd 3670': 11.5,\n 'amd amd hd 3850': 4.2,\n 'amd amd hd 3870': 12.3,\n 'amd amd hd 4330': 6.8,\n 'amd amd hd 4350': 9.6,\n 'amd amd hd 4530': 2.4,\n 'amd amd hd 4550': 8.8,\n 'amd amd hd 4570': 8.4,\n 'amd amd hd 4650': 13.4,\n 'amd amd hd 4670': 13.0,\n 'amd amd hd 4830': 5.7,\n 'amd amd hd 4850': 20.9,\n 'amd amd hd 4870': 8.4,\n 'amd amd hd 5145': 9.0,\n 'amd amd hd 5165': 11.3,\n 'amd amd hd 530v': 4.3,\n 'amd amd hd 540v': 9.0,\n 'amd amd hd 5430': 2.7,\n 'amd amd hd 5450': 5.6,\n 'amd amd hd 545v': 9.3,\n 'amd amd hd 5470': 9.8,\n 'amd amd hd 550v': 4.4,\n 'amd amd hd 560v': 5.7,\n 'amd amd hd 5650': 6.5,\n 'amd amd hd 5730': 13.0,\n 'amd amd hd 5830': 8.0,\n 'amd amd hd 5850': 18.5,\n 'amd amd hd 5870': 21.0,\n 'amd amd m6': 3.7,\n 'amd amd m7': 5.0,\n 'amd amd x1300': 7.0,\n 'amd amd x1350': 9.6,\n 'amd amd x1400': 11.2,\n 'amd amd x1450': 7.9,\n 'amd amd x1600': 13.2,\n 'amd amd x1700': 15.9,\n 'amd amd x1800': 15.7,\n 'amd amd x1900': 21.2,\n 'amd amd x2300': 4.9,\n 'amd amd x2500': 11.6,\n 'amd amd x300': 6.4,\n 'amd amd x600': 7.5,\n 'amd amd x700': 11.8,\n 'amd amd x800': 14.7,\n 'ati amd hd 3100': 1.7,\n 'ati amd hd 3200': 2.8,\n 'ati amd hd 4200': 3.6,\n 'ati amd hd 4225': 3.1,\n 'ati amd hd 4250': 4.1,\n 'ati amd hd 4270': 1.3,\n 'ati amd igp 320m': 2.2,\n 'ati amd igp 340m': 1.8,\n 'ati amd xpress 1100': 3.0,\n 'ati amd xpress 1150': 3.6,\n 'ati amd xpress 1250': 2.6,\n 'ati amd xpress 200m': 2.3,\n 'ati amd xpress x1200': 3.0,\n 'ati amd xpress x1250': 3.7,\n 'ati amd xpress x1270': 2.8,\n 'apple m1 7 core gpu': 9.3,\n 'apple m1 8 core gpu': 14.7,\n 'apple m1 max 24 core gpu': 25.9,\n 'apple m1 max 32 core gpu': 28.7,\n 'apple m1 pro 14 core gpu': 18.8,\n 'apple m1 pro 16 core gpu': 20.0,\n 'apple m2 10 core gpu': 13.4,\n 'apple m2 8 core gpu': 12.3,\n 'apple m2 max 30 core gpu': 8.5,\n 'apple m2 max 38 core gpu': 40.3,\n 'apple m2 pro 16 core gpu': 24.0,\n 'apple m2 pro 19 core gpu': 26.5,\n 'apple m3 10 core gpu': 13.9,\n 'apple m3 max 40 core gpu': 37.1,\n 'apple m3 pro 14 core gpu': 19.4,\n 'apple m3 pro 18 core gpu': 26.9,\n 'intel arc 8 cores igpu': 18.2,\n 'intel arc a350m': 16.4,\n 'intel arc a370m': 18.5,\n 'intel arc a550m': 27.7,\n 'intel arc a730m': 38.5,\n 'intel arc a770m': 47.9,\n 'intel extreme 2': 3.5,\n 'intel media accelerator 3150': 1.3,\n 'intel media accelerator 3600': 2.0,\n 'intel media accelerator 3650': 1.9,\n 'intel media accelerator 4500m': 2.3,\n 'intel media accelerator 4500mhd': 1.5,\n 'intel media accelerator 500': 0.5,\n 'intel media accelerator 600': 0.8,\n 'intel media accelerator 900': 2.0,\n 'intel media accelerator 950': 1.6,\n 'intel media accelerator hd': 3.9,\n 'intel media accelerator x3100': 2.3,\n 'intel hd': 4.2,\n 'intel hd 2000': 6.9,\n 'intel hd 2500': 4.1,\n 'intel hd 3000': 5.1,\n 'intel hd 400': 1.1,\n 'intel hd 4000': 3.4,\n 'intel hd 405': 1.3,\n 'intel hd 4200': 2.0,\n 'intel hd 4400': 4.1,\n 'intel hd 4600': 6.6,\n 'intel hd 500': 1.4,\n 'intel hd 5000': 3.2,\n 'intel hd 505': 1.6,\n 'intel hd 510': 3.0,\n 'intel hd 515': 4.5,\n 'intel hd 520': 5.1,\n 'intel hd 530': 4.7,\n 'intel hd 5300': 2.4,\n 'intel hd 5500': 3.0,\n 'intel hd 5600': 3.6,\n 'intel hd 6000': 3.4,\n 'intel hd 610': 2.5,\n 'intel hd 615': 13.5,\n 'intel hd 620': 9.6,\n 'intel hd 630': 4.8,\n 'intel hd p630': 4.4,\n 'intel iris 5100': 3.6,\n 'intel iris 540': 5.8,\n 'intel iris 550': 6.5,\n 'intel iris 6100': 4.1,\n 'intel iris plus 640': 5.4,\n 'intel iris plus 645': 3.6,\n 'intel iris plus 650': 7.1,\n 'intel iris plus 655': 12.4,\n 'intel iris plus g4': 6.4,\n 'intel iris plus g7': 7.6,\n 'intel iris pro 5200': 9.6,\n 'intel iris pro 580': 7.8,\n 'intel iris pro 6200': 6.5,\n 'intel iris xe g7 80eus': 10.6,\n 'intel iris xe g7 96eus': 12.1,\n 'intel iris xe max': 14.2,\n 'intel uhd': 3.4,\n 'intel uhd 24eus': 4.0,\n 'intel uhd 600': 1.5,\n 'intel uhd 605': 1.7,\n 'intel uhd 610': 2.4,\n 'intel uhd 615': 3.0,\n 'intel uhd 617': 4.2,\n 'intel uhd 620': 6.4,\n 'intel uhd 630': 5.5,\n 'intel uhd 64eus': 9.9,\n 'intel uhd 770': 9.1,\n 'intel uhd g1': 5.1,\n 'intel uhd g7': 3.6,\n 'intel uhd xe 16eus': 4.4,\n 'intel uhd xe 32eus': 8.4,\n 'intel uhd xe 750 32eus': 6.7,\n 'intel uhd xe g4 48eus': 6.2,\n 'nvidia 2 go': 3.6,\n 'nvidia 305m': 4.6,\n 'nvidia 310m': 7.6,\n 'nvidia 315m': 7.4,\n 'nvidia 320m': 6.9,\n 'nvidia 4 420 go': 6.2,\n 'nvidia 4 440 go': 7.2,\n 'nvidia 4 460 go': 7.9,\n 'nvidia 4 488 go': 7.8,\n 'nvidia 410m': 6.9,\n 'nvidia 610m': 2.8,\n 'nvidia 7000m': 3.7,\n 'nvidia 710m': 5.4,\n 'nvidia 7150m': 3.5,\n 'nvidia 8200m g': 6.1,\n 'nvidia 820m': 3.4,\n 'nvidia 825m': 4.7,\n 'nvidia 830m': 4.6,\n 'nvidia 8400m g': 4.4,\n 'nvidia 8400m gs': 7.2,\n 'nvidia 8400m gt': 1.5,\n 'nvidia 840m': 5.6,\n 'nvidia 845m': 5.2,\n 'nvidia 8600m gs': 10.0,\n 'nvidia 8600m gt': 10.0,\n 'nvidia 8700m gt': 11.9,\n 'nvidia 8800m gts': 14.4,\n 'nvidia 8800m nvidia gtx': 17.6,\n 'nvidia 9100m g': 1.8,\n 'nvidia 910m': 3.0,\n 'nvidia 9200m gs': 6.3,\n 'nvidia 920m': 3.9,\n 'nvidia 920mx': 4.7,\n 'nvidia 9300m g': 8.2,\n 'nvidia 9300m gs': 5.9,\n 'nvidia 930m': 4.7,\n 'nvidia 930mx': 5.3,\n 'nvidia 9400m / ion': 3.3,\n 'nvidia 9400m nvidiaboost': 7.1,\n 'nvidia 940m': 5.5,\n 'nvidia 940mx': 7.6,\n 'nvidia 945m': 9.3,\n 'nvidia 9500m g': 8.9,\n 'nvidia 9500m gs': 9.6,\n 'nvidia 9600m gs': 11.0,\n 'nvidia 9600m gt': 12.5,\n 'nvidia 9650m gs': 10.0,\n 'nvidia 9650m gt': 11.1,\n 'nvidia 9700m gt': 15.6,\n 'nvidia 9700m gts': 14.6,\n 'nvidia 9800m gs': 14.8,\n 'nvidia 9800m gt': 17.8,\n 'nvidia 9800m gts': 23.6,\n 'nvidia 9800m nvidia gtx': 18.4,\n 'nvidia fx go 5200': 9.8,\n 'nvidia fx go 5600 / 5650': 13.1,\n 'nvidia fx go 5700': 15.9,\n 'nvidia g 102m': 6.5,\n 'nvidia g 103m': 6.1,\n 'nvidia g 105m': 6.3,\n 'nvidia g 110m': 3.6,\n 'nvidia g 205m': 2.3,\n 'nvidia g210m': 5.1,\n 'nvidia gt 120m': 14.3,\n 'nvidia gt 130m': 12.2,\n 'nvidia gt 220m': 9.1,\n 'nvidia gt 230m': 10.9,\n 'nvidia gt 240m': 11.5,\n 'nvidia gt 320m': 4.0,\n 'nvidia gt 325m': 4.2,\n 'nvidia gt 330m': 12.9,\n 'nvidia gt 335m': 10.5,\n 'nvidia gt 415m': 2.6,\n 'nvidia gt 420m': 7.3,\n 'nvidia gt 425m': 10.4,\n 'nvidia gt 435m': 11.9,\n 'nvidia gt 445m': 5.4,\n 'nvidia gt 520m': 7.4,\n 'nvidia gt 520mx': 3.1,\n 'nvidia gt 525m': 9.5,\n 'nvidia gt 540m': 11.7,\n 'nvidia gt 550m': 11.9,\n 'nvidia gt 555m': 8.3,\n 'nvidia gt 620m': 3.3,\n 'nvidia gt 625m': 1.7,\n 'nvidia gt 630m': 4.9,\n 'nvidia gt 635m': 5.0,\n 'nvidia gt 640m': 5.9,\n 'nvidia gt 640m le': 5.4,\n 'nvidia gt 645m': 5.6,\n 'nvidia gt 650m': 10.4,\n 'nvidia gt 650m sli': 10.7,\n 'nvidia gt 720m': 4.6,\n 'nvidia gt 730m': 4.8,\n 'nvidia gt 735m': 4.1,\n 'nvidia gt 740m': 4.2,\n 'nvidia gt 745m': 5.8,\n 'nvidia gt 750m': 6.8,\n 'nvidia gt 755m': 8.6,\n 'nvidia gts 160m': 15.7,\n 'nvidia gts 250m': 16.0,\n 'nvidia gts 350m': 12.2,\n 'nvidia gts 360m': 7.3,\n 'nvidia gtx 1050 max q': 14.0,\n 'nvidia gtx 1050 mobile': 14.9,\n 'nvidia gtx 1050 ti max q': 16.5,\n 'nvidia gtx 1050 ti mobile': 18.4,\n 'nvidia gtx 1060 max q': 22.8,\n 'nvidia gtx 1060 mobile': 23.4,\n 'nvidia gtx 1070 max q': 28.3,\n 'nvidia gtx 1070 mobile': 28.8,\n 'nvidia gtx 1080 max q': 34.1,\n 'nvidia gtx 1080 mobile': 38.5,\n 'nvidia gtx 1650 max q': 20.2,\n 'nvidia gtx 1650 mobile': 20.8,\n 'nvidia gtx 1650 ti max q': 25.3,\n 'nvidia gtx 1650 ti mobile': 27.5,\n 'nvidia gtx 1660 ti max q': 23.1,\n 'nvidia gtx 1660 ti mobile': 31.5,\n 'nvidia gtx 260m': 17.8,\n 'nvidia gtx 280m': 21.0,\n 'nvidia gtx 285m': 9.5,\n 'nvidia gtx 460m': 14.3,\n 'nvidia gtx 470m': 8.8,\n 'nvidia gtx 480m': 16.5,\n 'nvidia gtx 485m': 11.0,\n 'nvidia gtx 560m': 16.8,\n 'nvidia gtx 570m': 9.4,\n 'nvidia gtx 580m': 16.3,\n 'nvidia gtx 660m': 12.4,\n 'nvidia gtx 670m': 9.1,\n 'nvidia gtx 670mx': 10.9,\n 'nvidia gtx 675m': 10.3,\n 'nvidia gtx 675mx': 12.8,\n 'nvidia gtx 680m': 13.5,\n 'nvidia gtx 680mx': 15.1,\n 'nvidia gtx 760m': 8.9,\n 'nvidia gtx 765m': 8.5,\n 'nvidia gtx 770m': 11.5,\n 'nvidia gtx 775m': 10.2,\n 'nvidia gtx 780m': 15.2,\n 'nvidia gtx 850m': 9.5,\n 'nvidia gtx 860m': 12.3,\n 'nvidia gtx 870m': 15.4,\n 'nvidia gtx 880m': 16.8,\n 'nvidia gtx 950m': 9.4,\n 'nvidia gtx 960m': 12.4,\n 'nvidia gtx 965m': 13.8,\n 'nvidia gtx 970m': 19.6,\n 'nvidia gtx 980': 26.6,\n 'nvidia gtx 980m': 19.6,\n 'nvidia go 6100': 3.8,\n 'nvidia go 6150': 2.2,\n 'nvidia go 6200': 13.0,\n 'nvidia go 6400': 14.1,\n 'nvidia go 6600': 11.7,\n 'nvidia go 6800': 18.6,\n 'nvidia go 6800 ultra': 19.0,\n 'nvidia go 7200': 5.9,\n 'nvidia go 7300': 8.7,\n 'nvidia go 7400': 9.8,\n 'nvidia go 7600': 14.5,\n 'nvidia go 7600 gt': 17.1,\n 'nvidia go 7700': 18.0,\n 'nvidia go 7800': 15.7,\n 'nvidia go 7800 nvidia gtx': 20.8,\n 'nvidia go 7900 gs': 19.6,\n 'nvidia go 7900 nvidia gtx': 24.6,\n 'nvidia go 7950 nvidia gtx': 27.2,\n 'nvidia mx110': 5.5,\n 'nvidia mx130': 7.2,\n 'nvidia mx150': 10.8,\n 'nvidia mx230': 7.5,\n 'nvidia mx250': 10.3,\n 'nvidia mx330': 9.8,\n 'nvidia mx350': 12.7,\n 'nvidia mx450': 12.6,\n 'nvidia mx550': 19.2,\n 'nvidia mx570': 16.0,\n 'nvidia rtx 2050 mobile': 21.2,\n 'nvidia rtx 2060 max q': 27.7,\n 'nvidia rtx 2060 mobile': 33.4,\n 'nvidia rtx 2070 max q': 33.5,\n 'nvidia rtx 2070 mobile': 39.2,\n 'nvidia rtx 2070 super max q': 41.0,\n 'nvidia rtx 2070 super mobile': 45.5,\n 'nvidia rtx 2080 max q': 36.8,\n 'nvidia rtx 2080 mobile': 45.0,\n 'nvidia rtx 2080 super max q': 41.6,\n 'nvidia rtx 2080 super mobile': 48.6,\n 'nvidia rtx 3050 4gb (mobile)': 27.5,\n 'nvidia rtx 3050 6gb (mobile)': 20.5,\n 'nvidia rtx 3050 ti (mobile)': 28.2,\n 'nvidia rtx 3060 (mobile)': 42.0,\n 'nvidia rtx 3070 (mobile)': 48.0,\n 'nvidia rtx 3070 ti (mobile)': 52.2,\n 'nvidia rtx 3080 (mobile)': 47.4,\n 'nvidia rtx 3080 ti (mobile)': 53.7,\n 'nvidia rtx 4050 (mobile)': 41.9,\n 'nvidia rtx 4060 (mobile)': 46.3,\n 'nvidia rtx 4070 (mobile)': 51.7,\n 'nvidia rtx 4080 (mobile)': 64.9,\n 'nvidia rtx 4090 (mobile)': 72.6,\n 'nvidia4 4200 go': 13.7,\n 'nvidia ion 2': 3.1,\n 'nvidia maxwell gpu surface book': 7.1,\n 'nvidia nvs 2100m': 9.1,\n 'nvidia nvs 3100m': 10.5,\n 'nvidia nvs 4200m': 3.0,\n 'nvidia nvs 5200m': 3.3,\n 'nvidia nvs 5400m': 5.3,\n 'nvidia quadro 1000m': 13.9,\n 'nvidia quadro 2000m': 6.3,\n 'nvidia quadro 3000m': 7.6,\n 'nvidia quadro 4000m': 9.6,\n 'nvidia quadro 5000m': 13.0,\n 'nvidia quadro 5010m': 10.8,\n 'nvidia quadro fx 1500m': 21.9,\n 'nvidia quadro fx 1600m': 20.5,\n 'nvidia quadro fx 1700m': 21.7,\n 'nvidia quadro fx 1800m': 7.1,\n 'nvidia quadro fx 2500m': 23.4,\n 'nvidia quadro fx 2700m': 17.3,\n 'nvidia quadro fx 2800m': 24.0,\n 'nvidia quadro fx 3500m': 7.7,\n 'nvidia quadro fx 350m': 1.0,\n 'nvidia quadro fx 3600m': 25.4,\n 'nvidia quadro fx 360m': 8.7,\n 'nvidia quadro fx 3700m': 7.9,\n 'nvidia quadro fx 370m': 8.0,\n 'nvidia quadro fx 3800m': 19.7,\n 'nvidia quadro fx 380m': 5.4,\n 'nvidia quadro fx 570m': 15.9,\n 'nvidia quadro fx 770m': 20.8,\n 'nvidia quadro fx 880m': 15.8,\n 'nvidia quadro fx go 1400': 1.9,\n 'nvidia quadro k1000m': 5.1,\n 'nvidia quadro k1100m': 5.4,\n 'nvidia quadro k2000m': 5.4,\n 'nvidia quadro k2100m': 6.5,\n 'nvidia quadro k3000m': 9.8,\n 'nvidia quadro k3100m': 9.9,\n 'nvidia quadro k4000m': 9.7,\n 'nvidia quadro k4100m': 12.3,\n 'nvidia quadro k5000m': 12.2,\n 'nvidia quadro k5100m': 12.7,\n 'nvidia quadro k610m': 3.8,\n 'nvidia quadro k620m': 5.2,\n 'nvidia quadro m1000m': 10.7,\n 'nvidia quadro m1200': 12.6,\n 'nvidia quadro m2000m': 11.0,\n 'nvidia quadro m2200': 14.2,\n 'nvidia quadro m3000m': 16.8,\n 'nvidia quadro m4000m': 15.5,\n 'nvidia quadro m5000m': 22.6,\n 'nvidia quadro m500m': 5.5,\n 'nvidia quadro m520': 6.9,\n 'nvidia quadro m5500': 17.4,\n 'nvidia quadro m600m': 7.3,\n 'nvidia quadro m620': 8.4,\n 'nvidia quadro nvs 110m': 8.4,\n 'nvidia quadro nvs 120m': 1.0,\n 'nvidia quadro nvs 130m': 1.6,\n 'nvidia quadro nvs 135m': 8.0,\n 'nvidia quadro nvs 140m': 7.5,\n 'nvidia quadro nvs 150m': 8.2,\n 'nvidia quadro nvs 160m': 8.2,\n 'nvidia quadro nvs 320m': 24.8,\n 'nvidia quadro nvs 5100m': 12.5,\n 'nvidia quadro p1000': 11.9,\n 'nvidia quadro p2000': 19.0,\n 'nvidia quadro p2000 max q': 17.8,\n 'nvidia quadro p3000': 19.6,\n 'nvidia quadro p3200': 27.5,\n 'nvidia quadro p4000': 21.4,\n 'nvidia quadro p4000 max q': 24.8,\n 'nvidia quadro p4200': 28.9,\n 'nvidia quadro p500': 5.2,\n 'nvidia quadro p5000': 26.7,\n 'nvidia quadro p520': 9.2,\n 'nvidia quadro p5200': 36.3,\n 'nvidia quadro p600': 12.4,\n 'nvidia quadro p620': 16.1,\n 'nvidia quadro nvidia rtx 3000': 27.0,\n 'nvidia quadro nvidia rtx 3000 max q': 24.2,\n 'nvidia quadro nvidia rtx 4000': 32.8,\n 'nvidia quadro nvidia rtx 4000 max q': 28.3,\n 'nvidia quadro nvidia rtx 5000': 42.5,\n 'nvidia quadro nvidia rtx 5000 max q': 34.6,\n 'nvidia quadro nvidia rtx 6000': 50.3,\n 'nvidia quadro t1000': 20.6,\n 'nvidia quadro t2000': 18.9,\n 'nvidia quadro t2000 max q': 17.6,\n 'nvidia rtx 2000 ada generation (mobile)': 30.3,\n 'nvidia rtx 3000 ada generation (mobile)': 38.1,\n 'nvidia rtx 5000 ada generation (mobile)': 58.1,\n 'nvidia rtx a1000 (mobile)': 25.5,\n 'nvidia rtx a2000 (mobile)': 29.7,\n 'nvidia rtx a3000 (mobile)': 32.1,\n 'nvidia rtx a5000 (mobile)': 38.5,\n 'nvidia rtx a5500 (mobile)': 47.7,\n 'nvidia t1200 (mobile)': 24.0,\n 'nvidia t500 (mobile)': 12.4,\n 'nvidia t550 (mobile)': 14.0,\n 'nvidia t600 (mobile)': 21.5,\n 'qualcomm adreno 630': 3.1,\n 'qualcomm adreno 680': 2.3,\n 'qualcomm adreno 685': 2.4,\n 'qualcomm adreno 690': 5.0,\n 'sis mirage 2 m760': 2.2,\n 'sis mirage 3 671mx': 1.5,\n 'sis mirage 3+ 672mx': 1.1,\n 'sis mirage m661fx': 1.9,\n 'via chrome9 hc': 1.1,\n 'via chrome9hd': 3.1,\n 'via s3 prosavage8': 0.9,\n 'via s3g unichrome pro': 2.9,\n 'via s3g unichrome pro ii': 1.5,\n 'unknown': 1.6}" - }, - "execution_count": 76, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "import csv\n", - "\n", - "gpu_bench = list(csv.DictReader(open('data/notebookcheck/mobile-gpu.csv', 'r', encoding='utf-8')))\n", - "gpu_bench = {k['Model']: float(k['Perf. Rating'].replace(\"~\", \"\")) for k in gpu_bench if k['Perf. Rating']}\n", - "cpu_data = list(csv.DictReader(open('data/notebookcheck/mobile-cpu.csv', 'r', encoding='utf-8')))\n", - "cpu_data = {k['Model']: k for k in cpu_data}\n", - "\n", - "def norm_name_gpu(name: str) -> str:\n", - " # Remove parenthesis\n", - " name = re.sub(r'\\([^)]*\\)', '', name).strip()\n", - " return (name.lower().strip().replace(\"_\", \"-\").replace(\"-\", \" \")\n", - " .replace(\"geforce\", \"nvidia\")\n", - " .replace(\"nvidia nvidia\", \"nvidia\")\n", - " .replace(\"rtx\", \"nvidia rtx\")\n", - " .replace(\"gtx\", \"nvidia gtx\")\n", - " .replace(\"nvidia nvidia\", \"nvidia\")\n", - " .replace(\"radeon\", \"amd\")\n", - " .replace(\"amd rx\", \"amd\")\n", - " .replace(\"amd amd\", \"amd\")\n", - " .replace(\"ati mobility\", \"amd\")\n", - " .replace(\" laptop gpu\", \" (mobile)\")\n", - " .replace(\" \", \" \")\n", - " .replace(\" graphics\", \"\")\n", - " .strip()\n", - " )\n", - "\n", - "gpu_bench = {norm_name_gpu(k): v for k, v in sorted(gpu_bench.items(), key=lambda x: x[0])}\n", - "cpu_data = {norm_name_cpu(k): v for k, v in cpu_data.items()}\n", - "gpu_bench" - ], - "metadata": { - "collapsed": false, - "ExecuteTime": { - "end_time": "2023-12-27T10:01:41.215431Z", - "start_time": "2023-12-27T10:01:41.119654Z" - } - }, - "id": "81a4b6a0959e037a" - }, - { - "cell_type": "code", - "execution_count": 77, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "CPU intel i5 5300u not found\n", - "GPU intel arc not found\n", - "GPU not found\n", - "CPU intel i5 6300u not found\n", - "CPU intel pentium silver not found\n", - "CPU ryzen 3 3720u not found\n", - "GPU amd 740m not found\n", - "GPU intel arc™ not found\n", - "CPU intel i5 6300u not found\n", - "CPU intel i7 1335u not found\n", - "CPU intel i5 13th gen not found\n", - "GPU arm mali g52 2ee mc2 not found\n", - "CPU intel ci3 1115g4 not found\n", - "CPU core not found\n", - "CPU intel pentium silver not found\n", - "CPU intel i5 7300 not found\n", - "CPU intel i5 6300u not found\n", - "CPU intel i5 6300u not found\n", - "CPU intel i7 12th gen not found\n", - "CPU intel i7 6500u not found\n", - "CPU intel i5 4300u not found\n", - "CPU intel i7 11th gen not found\n", - "CPU intel i5 10th gen, not found\n", - "GPU nvidia rtx a4000 not found\n", - "CPU mediatek mt8167b not found\n", - "GPU img powervr ge8300 not found\n", - "CPU mediatek mt8167b not found\n", - "GPU img powervr ge8300 not found\n", - "Found: 577 (94.90%)\n" - ] - } - ], - "source": [ - "def match_gpu(cpu: str, gpu: str):\n", - " cpu = match_cpu(cpu, cpu_data)\n", - " if gpu is not None:\n", - " gpu = gpu.lower()\n", - " if gpu is None or any(x in gpu for x in [\"iris\", \"uhd\", \"integrated\", 'n/a']) or norm_name_gpu(gpu) == 'amd':\n", - " # Check mobile integrated GPU\n", - " if cpu is None:\n", - " return None\n", - " gpu = cpu['Graphics Card']\n", - " gpu = norm_name_gpu(gpu)\n", - " if gpu.startswith(\"rtx\"):\n", - " gpu = gpu.replace(\"rtx\", \"nvidia rtx\")\n", - " # If there are no space after rtx, add space\n", - " if 'rtx' in gpu and 'rtx ' not in gpu:\n", - " gpu = gpu.replace('rtx', 'rtx ')\n", - " # If there are no space before \"ti\", add space\n", - " if 'ti' in gpu and ' ti' not in gpu:\n", - " gpu = gpu.replace('ti', ' ti')\n", - " # Remove \"\\dgb\"\n", - " gpu = re.sub(r'\\dgb', '', gpu).strip()\n", - " if gpu.startswith(\"mx\"):\n", - " gpu = gpu.replace(\"mx\", \"nvidia mx\")\n", - " if gpu.startswith(\"iris\"):\n", - " gpu = gpu.replace(\"iris\", \"intel iris\")\n", - " if gpu.startswith(\"uhd\"):\n", - " gpu = gpu.replace(\"uhd\", \"intel uhd\")\n", - " if gpu.startswith(\"vega\"):\n", - " gpu = gpu.replace(\"vega\", \"amd vega\")\n", - " gpu = gpu.strip()\n", - " \n", - " if gpu.endswith(\"3050\"):\n", - " gpu = gpu.replace(\"3050\", \"3050 4gb\")\n", - " \n", - " for keyword in ['', ' m', ' (mobile)', ' mobile']:\n", - " if gpu + keyword in gpu_bench:\n", - " return gpu_bench[gpu + keyword]\n", - " \n", - " print(f\"GPU {gpu} not found\")\n", - " return None\n", - "\n", - "laptops['gpu_bench'] = laptops.apply(lambda x: match_gpu(x['CPU'], x['GPU']), axis=1)\n", - "print(f\"Found: {len(laptops['gpu_bench'].dropna())} ({len(laptops['gpu_bench'].dropna()) / len(laptops) * 100:.2f}%)\")" - ], - "metadata": { - "collapsed": false, - "ExecuteTime": { - "end_time": "2023-12-27T10:01:41.279696Z", - "start_time": "2023-12-27T10:01:41.164372Z" - } - }, - "id": "bae042e4cf11d30a" - }, - { - "cell_type": "code", - "execution_count": 78, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Dropping 5.43%\n", - "Dropping 0.00%\n" - ] - }, - { - "data": { - "text/plain": " id item_id name \\\n0 234878 LPASU00715 ASUS TUF F15 Gaming Laptop 15.6\" FHD Intel i9-... \n1 239821 LPACE00967 Acer Nitro 5 Gaming Laptop 15.6\" FHD Intel i9-... \n2 241721 LPLEN03469 Lenovo Legion Pro 5i Gaming Laptop 16\" QHD+ In... \n3 245321 LPHEW02100 HP 15-fd0030ca Consumer Laptop 15.6\" FHD Intel... \n4 245308 LPGIG00162 GIGABYTE G5 KF Gaming Laptop 15.6\" FHD 144Hz I... \n\n brand categories price \\\n0 ASUS ['Laptops, Tablet', None, None, None] 1499.0 \n1 ACER ['Laptops, Tablet', None, None, None] 1299.0 \n2 LENOVO ['Laptops, Tablet', None, None, None] 1499.0 \n3 HP ['Laptops, Tablet', None, None, None] 699.0 \n4 GIGABYTE ['Laptops, Tablet', None, None, None] 1099.0 \n\n specs \\\n0 {'Refresh Rate': '144Hz', 'GPU': 'GeForce RTX ... \n1 {'GPU': 'GeForce RTX 4060', 'Maximum Resolutio... \n2 {'GPU': 'GeForce RTX 4060', 'Maximum Resolutio... \n3 {'GPU': 'Intel Iris Xe', 'Maximum Resolution':... \n4 {'GPU': 'GeForce RTX 4060', 'Maximum Resolutio... \n\n gpt_specs GPU \\\n0 {'Brand': 'ASUS', 'Model': 'TUF F15', 'Model C... GeForce RTX 4060 \n1 {'Brand': 'Acer', 'Model': 'Nitro 5', 'Model C... GeForce RTX 4060 \n2 {'Brand': 'Lenovo', 'Model': 'Legion Pro 5i', ... GeForce RTX 4060 \n3 {'Brand': 'HP', 'Model': '15-fd0030ca', 'Model... None \n4 {'Brand': 'GIGABYTE', 'Model': 'G5 KF', 'Model... GeForce RTX 4060 \n\n CPU cpu_bench gpu_bench gpu_bench_norm cpu_bench_norm \\\n0 Intel i9-13900H 29687.0 46.3 0.637741 0.534872 \n1 Intel i9-12900H 28524.0 46.3 0.637741 0.513918 \n2 Intel i7-13700HX 34110.0 46.3 0.637741 0.614561 \n3 Intel i5-1340P 20204.0 10.6 0.146006 0.364016 \n4 Intel i7-12650H 23281.0 46.3 0.637741 0.419455 \n\n bench value \n0 0.606880 404.856791 \n1 0.600594 462.351180 \n2 0.630787 420.805300 \n3 0.211409 302.444585 \n4 0.572255 520.705345 ", - "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
iditem_idnamebrandcategoriespricespecsgpt_specsGPUCPUcpu_benchgpu_benchgpu_bench_normcpu_bench_normbenchvalue
0234878LPASU00715ASUS TUF F15 Gaming Laptop 15.6\" FHD Intel i9-...ASUS['Laptops, Tablet', None, None, None]1499.0{'Refresh Rate': '144Hz', 'GPU': 'GeForce RTX ...{'Brand': 'ASUS', 'Model': 'TUF F15', 'Model C...GeForce RTX 4060Intel i9-13900H29687.046.30.6377410.5348720.606880404.856791
1239821LPACE00967Acer Nitro 5 Gaming Laptop 15.6\" FHD Intel i9-...ACER['Laptops, Tablet', None, None, None]1299.0{'GPU': 'GeForce RTX 4060', 'Maximum Resolutio...{'Brand': 'Acer', 'Model': 'Nitro 5', 'Model C...GeForce RTX 4060Intel i9-12900H28524.046.30.6377410.5139180.600594462.351180
2241721LPLEN03469Lenovo Legion Pro 5i Gaming Laptop 16\" QHD+ In...LENOVO['Laptops, Tablet', None, None, None]1499.0{'GPU': 'GeForce RTX 4060', 'Maximum Resolutio...{'Brand': 'Lenovo', 'Model': 'Legion Pro 5i', ...GeForce RTX 4060Intel i7-13700HX34110.046.30.6377410.6145610.630787420.805300
3245321LPHEW02100HP 15-fd0030ca Consumer Laptop 15.6\" FHD Intel...HP['Laptops, Tablet', None, None, None]699.0{'GPU': 'Intel Iris Xe', 'Maximum Resolution':...{'Brand': 'HP', 'Model': '15-fd0030ca', 'Model...NoneIntel i5-1340P20204.010.60.1460060.3640160.211409302.444585
4245308LPGIG00162GIGABYTE G5 KF Gaming Laptop 15.6\" FHD 144Hz I...GIGABYTE['Laptops, Tablet', None, None, None]1099.0{'GPU': 'GeForce RTX 4060', 'Maximum Resolutio...{'Brand': 'GIGABYTE', 'Model': 'G5 KF', 'Model...GeForce RTX 4060Intel i7-12650H23281.046.30.6377410.4194550.572255520.705345
\n
" - }, - "execution_count": 78, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "def calc_bench(cpu_weight: float) -> pd.DataFrame:\n", - " # Clone laptops\n", - " df = laptops.copy()\n", - " \n", - " # Normalize gpu_bench and cpu_bench to float between 0 and 1 (divide by max)\n", - " gpu_max = max(df['gpu_bench'].dropna())\n", - " cpu_max = max(df['cpu_bench'].dropna())\n", - " df['gpu_bench_norm'] = df['gpu_bench'].apply(lambda x: x / gpu_max if x is not None else None)\n", - " df['cpu_bench_norm'] = df['cpu_bench'].apply(lambda x: x / cpu_max if x is not None else None)\n", - " \n", - " # Drop rows with no gpu_bench or cpu_bench\n", - " print(f\"Dropping {len(df[df['gpu_bench'].isna() | df['cpu_bench'].isna()]) / len(df) * 100:.2f}%\")\n", - " df = df.dropna(subset=['gpu_bench', 'cpu_bench'])\n", - " \n", - " # Calculate weighted bench\n", - " df['bench'] = df['gpu_bench_norm'] * (1 - cpu_weight) + df['cpu_bench_norm'] * cpu_weight\n", - " \n", - " # Drop rows with no price\n", - " print(f\"Dropping {len(df[df['price'].isna()]) / len(df) * 100:.2f}%\")\n", - " df = df.dropna(subset=['price'])\n", - " \n", - " # Calculate value\n", - " df['value'] = df['bench'] / df['price'] * 1000_000\n", - " df.sort_values('value', ascending=False).head(10)\n", - " \n", - " return df\n", - "\n", - "calc_bench(0.3).head()" - ], - "metadata": { - "collapsed": false, - "ExecuteTime": { - "end_time": "2023-12-27T10:01:41.284497Z", - "start_time": "2023-12-27T10:01:41.187107Z" - } - }, - "id": "52603d1bdfbc53ae" - }, - { - "cell_type": "code", - "execution_count": 90, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Dropping 5.43%\n", - "Dropping 0.00%\n", - "Dropping 5.43%\n", - "Dropping 0.00%\n", - "Dropping 5.43%\n", - "Dropping 0.00%\n", - "Dropping 5.43%\n", - "Dropping 0.00%\n", - "Dropping 5.43%\n", - "Dropping 0.00%\n" - ] - } - ], - "source": [ - "from pathlib import Path\n", - "from hypy_utils import write\n", - "\n", - "\n", - "# Export\n", - "def export(cpu_weight: float):\n", - " laptops = calc_bench(cpu_weight)\n", - " laptops['Model'] = laptops['gpt_specs'].apply(lambda x: x['Model'] if 'Model' in x else None)\n", - " laptops['RAM'] = laptops['gpt_specs'].apply(lambda x: int(x['RAM'].split(\"GB\", 1)[0].strip()) if 'RAM' in x else None)\n", - " laptops['Storage'] = laptops['gpt_specs'].apply(lambda x: x['Storage'].replace(\"SSD\", \"\").replace(\"NVMe\", \"\").strip() if 'Storage' in x else None)\n", - " laptops['GPU'] = laptops['GPU'].apply(lambda x: x.replace(\"Graphics\", \"\") if x is not None else None)\n", - " df = laptops[['item_id', 'Model', 'CPU', 'GPU', 'RAM', 'Storage', 'price', 'bench', 'cpu_bench', 'gpu_bench', 'value']]\n", - " df = df.sort_values('value', ascending=False)\n", - " df['bench'] = df['bench'] * 100\n", - " Path(f'data/computed').mkdir(exist_ok=True, parents=True)\n", - " df.to_csv(f'data/computed/canada_computers_laptops_bench_{cpu_weight}.csv', index=False)\n", - "\n", - " html_template = '''\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " {{table}}\n", - " \n", - " \n", - " '''\n", - " \n", - " # Color bars for price, bench, value, cpu_bench, gpu_bench\n", - " df = (df.style.bar(subset=['price'], color='#d65f5f', vmax=1500)\n", - " .bar(subset=['bench'], color='#5fba7d')\n", - " .bar(subset=['value'], color='#5fba7d')\n", - " .bar(subset=['cpu_bench'], color='#5fba7d')\n", - " .bar(subset=['gpu_bench'], color='#5fba7d')\n", - " .bar(subset=['RAM'], color='#5fba7d', vmax=32)\n", - " )\n", - " \n", - " \n", - " # Format price\n", - " df = df.format({'price': '$ {:,.0f}', 'bench': '{:.0f}%', 'cpu_bench': '{:,.0f}', 'gpu_bench': '{:.1f}', 'value': '{:,.0f}', \n", - " 'RAM': '{:,.0f}'})\n", - " \n", - " # Justify numbers to right, non-numbers to left\n", - " df = df.set_properties(**{'text-align': 'right'}, subset=pd.IndexSlice[:, ['price', 'bench', 'cpu_bench', 'gpu_bench', 'value']])\n", - " \n", - " # df = df.set_table_styles([{\"selector\":\"tbody tr:nth-child(even)\",\"props\":[(\"background-color\",\"lightgrey\")]}])\n", - " \n", - " write(f'data/computed/canada_computers_laptops_bench_{cpu_weight}.html', html_template.replace('{{table}}', df.to_html()))\n", - " \n", - "\n", - "for i in [0.1, 0.3, 0.5, 0.7, 0.9]:\n", - " export(i)" - ], - "metadata": { - "collapsed": false, - "ExecuteTime": { - "end_time": "2023-12-27T10:07:29.710145Z", - "start_time": "2023-12-27T10:07:28.387904Z" - } - }, - "id": "43d85baf223a62cb" - }, - { - "cell_type": "code", - "execution_count": 79, - "outputs": [], - "source": [], - "metadata": { - "collapsed": false, - "ExecuteTime": { - "end_time": "2023-12-27T10:01:42.153071Z", - "start_time": "2023-12-27T10:01:42.144938Z" - } - }, - "id": "cf1b6349b3b852b9" - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 2 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython2", - "version": "2.7.6" - } - }, - "nbformat": 4, - "nbformat_minor": 5 -} diff --git a/PCData/notebookcheck.py b/PCData/notebookcheck.py deleted file mode 100644 index 436adcf..0000000 --- a/PCData/notebookcheck.py +++ /dev/null @@ -1,66 +0,0 @@ -""" -This file is used to crawl notebookcheck data and store it as a csv -""" -from pathlib import Path - -import pandas as pd -import requests -from bs4 import BeautifulSoup -from hypy_utils import write - -def crawl_gpu(name: str, url: str): - """ - Crawl gpu benchmark data - """ - file = Path(f"data/notebookcheck/{name}.csv") - - if file.exists(): - return pd.read_csv(file) - - html = Path(f"data/notebookcheck/{name}.html") - if html.exists(): - page = html.read_text() - else: - page = requests.get(url).text - write(html, page) - bs = BeautifulSoup(page, "html.parser") - - table = bs.find("table", {"id": "sortierbare_tabelle"}) - rows = table.findAll("tr") - - # Find header - header = table.find("tr", {"class": "header"}) - names = [v.text.strip().replace("\u00a0", " ") for v in header.findAll("td")[1:]] - - gpu_list = [] - for row in rows: - # Skip headers - if row.get("class") == ["header"]: - continue - - cols = row.findAll("td") - if len(cols) == 0: - continue - - # Remove tags - for sup in row.findAll("sup"): - sup.decompose() - - # Map values to names - values = [v.text.strip().replace("\u00a0", " ") for v in cols[1:]] - gpu_list.append(dict(zip(names, values))) - - file.parent.mkdir(parents=True, exist_ok=True) - df = pd.DataFrame(gpu_list) - df.to_csv(file, index=False) - - file.write_text(file.read_text().replace("\u00a0", " ")) - - return df - - -if __name__ == '__main__': - crawl_gpu("mobile-gpu", "https://www.notebookcheck.net/Mobile-Graphics-Cards-Benchmark-List.844.0.html?type=&sort=&professional=0&multiplegpus=1&perfrating=1&or=0&3dmark13_ice_gpu=1&3dmark13_cloud=1&3dmark13_cloud_gpu=1&3dmark11=1&3dmark11_gpu=1&3dmark13_fire=1&3dmark13_fire_gpu=1&3dmark13_time_spy=1&3dmark13_time_spy_gpu=1&vantage3dmark=1&3dmark06=1&3dmark01=1&glbenchmark=1&gfxbench30=1&gfxbench31=1&bmg12_vul_med_off=1&basemarkx11_med=1&basemarkx11_high=1&heaven3_dx=1&valley_dx=1&cb15_ogl=1&cinebench10_ogl=1&computemark_result=1&luxmark_sala=1&gpu_fullname=1&codename=1&architecture=1&corespeed=1&boostspeed=1&memoryspeed=1&memorybus=1&memorytype=1&maxmemory=1&directx=1&opengl=1&technology=1&daysold=1") - crawl_gpu("all-gpu", "https://www.notebookcheck.net/Mobile-Graphics-Cards-Benchmark-List.844.0.html?type=&sort=&professional=0&multiplegpus=1&deskornote=2&perfrating=1&or=0&3dmark13_ice_gpu=1&3dmark13_cloud=1&3dmark13_cloud_gpu=1&3dmark11=1&3dmark11_gpu=1&3dmark13_fire=1&3dmark13_fire_gpu=1&3dmark13_time_spy=1&3dmark13_time_spy_gpu=1&vantage3dmark=1&3dmark06=1&3dmark01=1&glbenchmark=1&gfxbench30=1&gfxbench31=1&bmg12_vul_med_off=1&basemarkx11_med=1&basemarkx11_high=1&heaven3_dx=1&valley_dx=1&cb15_ogl=1&cinebench10_ogl=1&computemark_result=1&luxmark_sala=1&gpu_fullname=1&codename=1&architecture=1&corespeed=1&boostspeed=1&memoryspeed=1&memorybus=1&memorytype=1&maxmemory=1&directx=1&opengl=1&technology=1&daysold=1") - crawl_gpu("mobile-cpu", "https://www.notebookcheck.net/Mobile-Processors-Benchmark-List.2436.0.html?type=&sort=&archive=1&perfrating=1&or=0&3dmark06cpu=1&cinebench10_s=1&cinebench10_m=1&cb11_single=1&cb11=1&cinebench_r15_single=1&cinebench_r15_multi=1&cinebench_r20_single=1&cinebench_r20_multi=1&cinebench_r23_single=1&cinebench_r23_multi=1&superpi1m=1&superpi32m=1&wprime_32=1&wprime_1024=1&winrar=1&x264_pass1=1&x264_pass2=1&x265=1&truecrypt_aes=1&truecrypt_twofish=1&truecrypt_serpent=1&blender=1&blender3_cpu=1&7-zip_single=1&7-zip_multiple=1&geekbench2=1&geekbench3_single=1&geekbench3_multi=1&geekbench4_1_single=1&geekbench4_1_multi=1&geekbench5_single=1&geekbench5_multi=1&geekbench5_1_single=1&geekbench5_1_multi=1&geekbench6_2_single=1&geekbench6_2_multi=1&passmark_cpu=1&sunspider=1&octane2=1&jetstream2=1&speedometer=1&webxprt3=1&webxprt4=1&cpu_fullname=1&codename=1&series=1&l2cache=1&l3cache=1&fsb=1&tdp=1&mhz=1&turbo_mhz=1&cores=1&threads=1&technology=1&architecture=1&64bit=1&daysold=1&gpu_name=1") - crawl_gpu("all-cpu", "https://www.notebookcheck.net/Mobile-Processors-Benchmark-List.2436.0.html?type=&sort=&deskornote=2&archive=1&perfrating=1&or=0&3dmark06cpu=1&cinebench10_s=1&cinebench10_m=1&cb11_single=1&cb11=1&cinebench_r15_single=1&cinebench_r15_multi=1&cinebench_r20_single=1&cinebench_r20_multi=1&cinebench_r23_single=1&cinebench_r23_multi=1&superpi1m=1&superpi32m=1&wprime_32=1&wprime_1024=1&winrar=1&x264_pass1=1&x264_pass2=1&x265=1&truecrypt_aes=1&truecrypt_twofish=1&truecrypt_serpent=1&blender=1&blender3_cpu=1&7-zip_single=1&7-zip_multiple=1&geekbench2=1&geekbench3_single=1&geekbench3_multi=1&geekbench4_1_single=1&geekbench4_1_multi=1&geekbench5_single=1&geekbench5_multi=1&geekbench5_1_single=1&geekbench5_1_multi=1&geekbench6_2_single=1&geekbench6_2_multi=1&passmark_cpu=1&sunspider=1&octane2=1&jetstream2=1&speedometer=1&webxprt3=1&webxprt4=1&cpu_fullname=1&codename=1&series=1&l2cache=1&l3cache=1&fsb=1&tdp=1&mhz=1&turbo_mhz=1&cores=1&threads=1&technology=1&architecture=1&64bit=1&daysold=1&gpu_name=1") diff --git a/PCData/passmark.py b/PCData/passmark.py deleted file mode 100644 index 7d71e3a..0000000 --- a/PCData/passmark.py +++ /dev/null @@ -1,118 +0,0 @@ -""" -This file is used to crawl passmark data and store it as a csv -""" -import json -from pathlib import Path -from typing import NamedTuple - -import pandas as pd -import requests -from bs4 import BeautifulSoup -from hypy_utils.logging_utils import setup_logger -from hypy_utils.tqdm_utils import tmap -from orjson import orjson - - -log = setup_logger() - -class Processor(NamedTuple): - id: str - name: str - passmark: int - - -def crawl_cpu_gpu(cpu: bool) -> pd.DataFrame: - """ - Crawl cpu/gpu benchmark data - - :param cpu: True if cpu, False if gpu - """ - file = Path("data/passmark/cpu.csv" if cpu else "data/passmark/gpu.csv") - - if file.exists(): - return pd.read_csv(file) - - url = "https://www.cpubenchmark.net/cpu_list.php" if cpu else "https://www.videocardbenchmark.net/gpu_list.php" - page = requests.get(url) - bs = BeautifulSoup(page.content, "html.parser") - - table = bs.find("table", {"id": "cputable"}) - rows = table.findAll("tr") - - cpu_list = [] - for row in rows: - cols = row.findAll("td") - if len(cols) == 0: - continue - id = row["id"] - name = cols[0].text.strip() - passmark = int(cols[1].text.strip().replace(",", "")) - cpu_list.append(Processor(id=id, name=name, passmark=passmark)) - - file.parent.mkdir(parents=True, exist_ok=True) - df = pd.DataFrame(cpu_list) - df.to_csv(file, index=False) - - return df - - -def crawl_id(id: str): - """ - Crawl cpu/gpu benchmark data - - :param id: id of cpu/gpu - """ - cpu = id.startswith("cpu") - id = id[3:] - url = f"https://www.cpubenchmark.net/cpu.php" if cpu else f"https://www.videocardbenchmark.net/gpu.php" - page = requests.get(url, params={"id": id}) - bs = BeautifulSoup(page.content, "html5lib") - - desc = bs.find("div", {"class": "desc"}) - name = desc.find("span", {"class": "cpuname"}).text.strip() - specs = {} - spec_nodes = (list(desc.find("em", {"class": "left-desc-cpu"}).findAll("p")) + - list(desc.find("div", {"class": "desc-foot"}).findAll("p"))) - for spec in spec_nodes: - key = spec.find("strong") - if not key: - continue - key = key.text.strip() - value = spec.text.strip().replace(key, "").strip().replace("\u00a0", "") - specs[key.strip(":").replace("\u00a0", "")] = value - - # Parse score - score_lines = desc.find("div", {"class": "right-desc"}).text.strip().splitlines()[1:] - score = int(score_lines.pop(0).strip().strip("\t")) - specs["Score"] = score - for line in score_lines: - if ':' not in line: - continue - key, value = line.split(":") - key = key.strip() - value = int(value.strip()) - specs[key] = value - - return name, specs - - -def crawl_gpuinfo_batch(): - gpu_info_f = Path("data/passmark/gpu_info.json") - gpu_info = {} if not gpu_info_f.exists() else json.loads(gpu_info_f.read_text()) - left = [gpu for gpu in crawl_cpu_gpu(False)["id"] if gpu not in gpu_info] - - # Batch - bs = 100 - while len(left) > 0: - log.info(f"Crawling batch of {bs}, {len(left)} left") - batch = left[:bs] - left = left[bs:] - info = tmap(lambda id: crawl_id(id), batch, max_workers=20) - gpu_info.update({id: info for id, info in zip(batch, info)}) - gpu_info_f.write_text(json.dumps(gpu_info, indent=4)) - - -if __name__ == '__main__': - # crawl_cpu_gpu(True) - # crawl_cpu_gpu(False) - crawl_gpuinfo_batch() diff --git a/README.md b/README.md index 19e9cb5..a9ce4f7 100644 --- a/README.md +++ b/README.md @@ -2,10 +2,12 @@ 在这里会放一些开源硬件的实验作品(还在学习中... qwq +每个作品都有自己的文件夹和说明文档和 license,请看下面的索引: + ## Index / 索引 * [Coyote-Pikachu](./Coyote-Pikachu/) 让某电击小盒子变成一只皮卡丘的外壳 ⚡️ * [TaikoStick](./TaikoStick/) 一对可以在任何表面上打太鼓达人的鼓槌 🥁 * [CardReader](./CardReader/) 一个为 SEGA/Bemani 街机音游设计的读卡器固件 💳 -* [PCData](./PCData/) 用来选购最佳性价比笔记本的爬虫脚本和数据集 💻 -* [IO4](./IO4/) SEGA 街机 io4 控制板的替代品(施工中 🚧) +* [Sxm2Fan](./Sxm2Fan/) 3D 打印的 V100 SXM2 散热风扇固定器 ❄️ +* [YurucampLicensePlate](./YurucampLicensePlate/) 摇曳露营主题车牌框 🏕️